403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/junkdata/backup12042024/20240416/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/junkdata/backup12042024/20240416/ashoktravel_db.sql
-- MySQL dump 10.13  Distrib 8.0.27, for Linux (x86_64)
--
-- Host: localhost    Database: ashoktravel_db
-- ------------------------------------------------------
-- Server version	8.0.27

/*!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 */;
/*!50503 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 */;

--
-- Current Database: `ashoktravel_db`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `ashoktravel_db` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;

USE `ashoktravel_db`;

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_user` (
  `user_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `firstname` varchar(32) NOT NULL DEFAULT '',
  `lastname` varchar(32) NOT NULL DEFAULT '',
  `email` varchar(128) NOT NULL DEFAULT '',
  `username` varchar(40) NOT NULL DEFAULT '',
  `password` varchar(40) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime DEFAULT NULL,
  `logdate` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `role` enum('admin','superadmin') NOT NULL,
  PRIMARY KEY (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user`
--

LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Travnet','','ashok@ashoktravelworld.com','admin','80acf37b06124e09327633b8d9b50645','2010-10-30 22:51:18','2010-10-30 22:51:18','2010-10-30 23:39:32',1,'admin'),(2,'baibhav','kumar','baibhav@catpl.co.in','admin123','03810ff365fbdd67751b5148d76b51ed','2021-07-29 00:00:00','2021-07-29 00:00:00','2021-07-29 00:00:00',1,'admin');
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_agency_cancellation_charges`
--

DROP TABLE IF EXISTS `tb_agency_cancellation_charges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_cancellation_charges` (
  `SupplierType` smallint NOT NULL DEFAULT '0',
  `ServiceType` smallint NOT NULL,
  `AgencySysId` bigint NOT NULL,
  `ItemSourceType` smallint NOT NULL,
  `MPType` smallint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL,
  `MarkUp` decimal(18,2) NOT NULL,
  `CreateDate` datetime(3) NOT NULL,
  `UpdateDate` datetime(3) NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`ServiceType`,`MPType`,`ItemSourceType`,`SupplierType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_cancellation_charges`
--

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

--
-- Table structure for table `tb_agency_credit`
--

DROP TABLE IF EXISTS `tb_agency_credit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_credit` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `CreditAmount` decimal(18,2) NOT NULL,
  `CreditDays` int NOT NULL,
  `BalanceAmount` decimal(18,2) NOT NULL,
  `CreateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_credit`
--

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

--
-- Table structure for table `tb_agency_credit_history`
--

DROP TABLE IF EXISTS `tb_agency_credit_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_credit_history` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `CreditSysId` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `BalanceAmount` decimal(18,2) NOT NULL,
  `CreditDays` int NOT NULL,
  `CreditDate` date NOT NULL,
  `UserSysId` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `IsMarkForDel` int NOT NULL,
  `IsActive` int NOT NULL,
  `CreditAmount` decimal(18,2) NOT NULL,
  `historyUpdateDate` datetime NOT NULL,
  `Remark` varchar(200) NOT NULL,
  `TrxType` int NOT NULL,
  `Amount` decimal(18,2) NOT NULL,
  `historyCreditAmount` decimal(18,2) NOT NULL,
  `historyBalanceAmount` decimal(18,2) NOT NULL,
  `IsCredit` int NOT NULL,
  `HistoryCreditSysId` int NOT NULL,
  `RefrenceNo` varchar(150) NOT NULL,
  `PlanType` int NOT NULL,
  `PaymentMode` varchar(100) NOT NULL,
  `Agencyname` varchar(200) NOT NULL,
  `IsOneTime` varchar(100) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_credit_history`
--

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

--
-- Table structure for table `tb_agency_userrole_mapping`
--

DROP TABLE IF EXISTS `tb_agency_userrole_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_userrole_mapping` (
  `MapSysId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `AgentSysId` int NOT NULL,
  `IsPermission` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDelete` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`MapSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_userrole_mapping`
--

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

--
-- Table structure for table `tb_agency_userrole_permission`
--

DROP TABLE IF EXISTS `tb_agency_userrole_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_userrole_permission` (
  `PermissionSysId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `AgentSysId` int NOT NULL,
  `Parent_Id` int DEFAULT NULL,
  `Title` varchar(256) DEFAULT NULL,
  `val` varchar(256) DEFAULT NULL,
  `url` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime DEFAULT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `IsActive` enum('0','1') DEFAULT '1',
  `IsMarkForDelete` enum('0','1') DEFAULT '0',
  `IsOrder` int DEFAULT NULL,
  `IsDisplayLeftNev` enum('0','1') DEFAULT '0',
  `ModuleName` varchar(256) DEFAULT NULL,
  `ModuleType` int DEFAULT NULL,
  `ParentCode` varchar(256) DEFAULT NULL,
  `ControllerName` varchar(256) DEFAULT NULL,
  PRIMARY KEY (`PermissionSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_userrole_permission`
--

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

--
-- Table structure for table `tb_b2b_homebanner_detail`
--

DROP TABLE IF EXISTS `tb_b2b_homebanner_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_b2b_homebanner_detail` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(256) NOT NULL,
  `image` varchar(256) NOT NULL,
  `description` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `isDisplayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_b2b_homebanner_detail`
--

LOCK TABLES `tb_b2b_homebanner_detail` WRITE;
/*!40000 ALTER TABLE `tb_b2b_homebanner_detail` DISABLE KEYS */;
INSERT INTO `tb_b2b_homebanner_detail` VALUES (4,'Heading 1edit','4_1578132922.jpg','','Url (with http or https) 1edit',0,'0','1','0'),(5,'sdcdsfsd','5_1578132982.jpg','','dssddsds',0,'1','1','0');
/*!40000 ALTER TABLE `tb_b2b_homebanner_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_deposit_payment`
--

DROP TABLE IF EXISTS `tb_deposit_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_deposit_payment` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `MasterAgencySysId` int NOT NULL,
  `PaymentMode` varchar(100) NOT NULL,
  `TransactionId` varchar(250) DEFAULT NULL,
  `Amount` float NOT NULL,
  `RefrenceNo` varchar(100) DEFAULT NULL,
  `CreditDate` date NOT NULL,
  `Remark` varchar(200) DEFAULT NULL,
  `PlanType` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `UserSysId` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  `IsActive` tinyint NOT NULL DEFAULT '0',
  `error_Message` varchar(200) DEFAULT NULL,
  `error` varchar(200) DEFAULT NULL,
  `paymentStatus` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_deposit_payment`
--

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

--
-- Table structure for table `tb_flight_modification`
--

DROP TABLE IF EXISTS `tb_flight_modification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_flight_modification` (
  `ModificationId` int NOT NULL AUTO_INCREMENT,
  `apiTraceId` varchar(200) NOT NULL,
  `ChangeRequestId` varchar(150) NOT NULL,
  `ChangeRequestStatus` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `MasterTPSysId` int NOT NULL DEFAULT '0',
  `BookingId` varchar(150) NOT NULL,
  `RequestType` varchar(150) NOT NULL,
  `Remarks` varchar(300) NOT NULL,
  `RequestData` text NOT NULL,
  `APIResponseData` text NOT NULL,
  `RefundMode` varchar(150) DEFAULT NULL,
  `status` int DEFAULT NULL,
  `servicefee` decimal(18,2) NOT NULL DEFAULT '0.00',
  `refundedamount` decimal(18,2) NOT NULL DEFAULT '0.00',
  `nameData` varchar(500) DEFAULT NULL,
  `sectors` varchar(300) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`ModificationId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_flight_modification`
--

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

--
-- Table structure for table `tb_happycustomer`
--

DROP TABLE IF EXISTS `tb_happycustomer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_happycustomer` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `status` enum('0','1') NOT NULL,
  `isDisplayOnHome` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_happycustomer`
--

LOCK TABLES `tb_happycustomer` WRITE;
/*!40000 ALTER TABLE `tb_happycustomer` DISABLE KEYS */;
INSERT INTO `tb_happycustomer` VALUES (4,'Happy Clients Testimonials','https://www.youtube.com/watch?v=e6nJJ-qaK2Q&t=56s','4_1693977744.jpeg','1','1','0');
/*!40000 ALTER TABLE `tb_happycustomer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_homebanner_detail`
--

DROP TABLE IF EXISTS `tb_homebanner_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_homebanner_detail` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `image` varchar(100) DEFAULT NULL,
  `heading` varchar(80) DEFAULT NULL,
  `description` varchar(150) DEFAULT NULL,
  `url` varchar(250) DEFAULT NULL,
  `opt` tinyint NOT NULL DEFAULT '0',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `isDisplayOnHome` tinyint NOT NULL DEFAULT '0',
  `isDisplayOnBanner` enum('0','1') NOT NULL DEFAULT '0',
  `bannerType` int NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_homebanner_detail`
--

LOCK TABLES `tb_homebanner_detail` WRITE;
/*!40000 ALTER TABLE `tb_homebanner_detail` DISABLE KEYS */;
INSERT INTO `tb_homebanner_detail` VALUES (2,'2_1613655182.jpg','Hands off!','The journey with your lean, clean flying machine is completely contactless.','http://ineedtrip.com/',0,'0',0,'0',0,1,0),(5,'5_1691044621.jpg','Majestic DUBAI','Discover this Emirate and its Dazzling Treasures','https://www.ineedtrip.com/tour-destination/dubai/',1,'0',0,'0',0,1,0),(13,'13_1691043846.jpg','Soulful MALDIVES','Sky above, Sand below, Peace within','http://ineedtrip.com/tour-destination/maldives/',0,'0',0,'0',0,1,0),(14,'14_1621498102.webp','Weekend in GOA','Pamper yourself To a Long Weekend Holiday in Goa','https://www.ineedtrip.com/tour-destination/goa/',0,'0',0,'0',0,1,0),(15,'15_1621497608.webp','Amazing ANDAMAN','Early Bird Offer, Enjoy upto 20% discount','http://ineedtrip.com/tour-destination/andaman-and-nicobar-islands/',0,'0',0,'0',0,1,0),(25,'25_1625743650.jpg','','','',0,'1',0,'0',0,1,0),(26,'26_1625743664.jpg','','','',0,'1',1,'0',0,1,0),(27,'27_1625753028.jpg','','','',0,'1',1,'0',0,1,0),(28,'28_1625753000.jpg','','','',0,'1',1,'0',0,1,0),(37,'37_1635336970.jpg','Fly at Lowest AIRFARE!','Paradise Now A Flight Away! Lowest Airfare Guaranteed!','https://www.ineedtrip.com/flight',0,'0',0,'0',0,1,0),(38,'38_1647949671.jpg','Refundable Bookings','Guess What? No questions asked','https://www.ineedtrip.com/',0,'0',0,'0',0,0,0),(39,'39_1691046600.png','EMI OFFER','Travel Now Pay Later','https://www.ineedtrip.com/contact-us',0,'0',0,'0',0,1,0),(40,'40_1691055571.jpg','Versatile VIETNAM','Fixed Group Departure 2023','https://www.ineedtrip.com/detail/tour-package-for-group%20tours-vietnam/vietnam-group-tour-2023-322-5-58377-1-0.html',0,'0',0,'0',0,1,0),(41,'41_1691048682.png','TURKISH Delight','Fixed Group Departure 2023','https://www.ineedtrip.com/detail/tour-package-for-group%20tours-turkey/turkey-group-tour-2023-321-5-58349-1-0.html',0,'0',0,'0',0,1,0),(42,'42_1691220364.jpg','Exotic Australia','DUSSEHRA SPECIAL GROUP TOUR','https://www.ineedtrip.com/detail/tour-package-for-australia-australia/australia-tour--dussehra-special-324-5-58565-1-0.html',1,'0',0,'0',0,1,0),(43,'43_1691989923.png','Independence Day 2023','','',0,'0',0,'0',0,0,0),(44,'44_1692616669.jpg','RAKHI TRAVEL OFFER','','',0,'0',0,'0',0,0,0),(45,'45_1692615237.jpg','RAKHI WISHES','','',0,'0',0,'0',0,0,0),(49,'49_1693897776.png','Janmashtami Wishes','','',0,'0',0,'0',0,0,0),(52,'52_1693998853.webp','','','',0,'0',0,'0',0,1,0),(53,'53_1694000661.webp','','','',0,'0',0,'0',0,1,0),(54,'54_1694000672.webp','','','',0,'0',0,'0',0,1,0),(56,'56_1695011246.webp','Japan Fixed Departure Package','','https://www.ineedtrip.com/tour-destination/japan/',1,'0',0,'0',0,1,0),(57,'57_1694866057.webp','','','',0,'0',0,'0',0,1,0),(58,'58_1710393155.jpg','','','',0,'0',0,'0',0,1,0),(59,'59_1710393062.jpg','','','',0,'0',1,'0',0,1,0);
/*!40000 ALTER TABLE `tb_homebanner_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_itinerary_description`
--

DROP TABLE IF EXISTS `tb_itinerary_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_itinerary_description` (
  `ItineraryDesId` int NOT NULL AUTO_INCREMENT,
  `GtxRefId` int NOT NULL,
  `StartCity` int NOT NULL,
  `DestinationCity` int NOT NULL,
  `Title` varchar(100) NOT NULL,
  `Description` text NOT NULL,
  `StartCityName` varchar(100) NOT NULL,
  `DestinationCityName` varchar(100) NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`ItineraryDesId`),
  KEY `GtxRefId` (`GtxRefId`),
  KEY `ItineraryDesId` (`ItineraryDesId`),
  KEY `DestinationCity` (`DestinationCity`),
  KEY `IsActive` (`IsActive`),
  KEY `IsMarkForDel` (`IsMarkForDel`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_itinerary_description`
--

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

--
-- Table structure for table `tb_master_geo_city`
--

DROP TABLE IF EXISTS `tb_master_geo_city`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_master_geo_city` (
  `CityId` bigint NOT NULL AUTO_INCREMENT,
  `TBBCityId` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `Title` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `Alias` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `Code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `StateOrZone` char(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `Country` char(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `SeoTitle` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `StateSysId` bigint DEFAULT '0',
  `ZoneSysId` bigint NOT NULL DEFAULT '0',
  `ContSysId` bigint NOT NULL DEFAULT '0',
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `IsApproved` tinyint(1) NOT NULL DEFAULT '0',
  `IsMarkForDel` tinyint(1) NOT NULL DEFAULT '0',
  `IsActive` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`CityId`)
) ENGINE=InnoDB AUTO_INCREMENT=25309 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_master_geo_city`
--

LOCK TABLES `tb_master_geo_city` WRITE;
/*!40000 ALTER TABLE `tb_master_geo_city` DISABLE KEYS */;
INSERT INTO `tb_master_geo_city` VALUES (1,'10379','Shimla','SHIMLA',NULL,'','India','Shimla',1,0,101,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(2,'16951','Thai Muang','THAI MUANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(3,'4105','Indre-et-loire','INDRE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(4,'25378','Manning Provincial Park','MANNING PROVINCIAL PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(5,'25379','100 Mile House','100 MILE HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(6,'25381','108 Mile Ranch','108 MILE RANCH',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(7,'37544','6Th Of October City','6TH OF OCTOBER CITY',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(8,'25382','70 Mile House','70 MILE HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(9,'41940','A Arnoia','A ARNOIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(10,'42995','A Capela','A CAPELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(11,'1724','A Coruna','A CORUNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(12,'1258','A Coruña','A CORUÑA',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(13,'41498','A Estrada','A ESTRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(14,'41488','A Fonsagrada','A FONSAGRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(15,'39423','A Mezquita','A MEZQUITA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(16,'38684','A Pobra De Trives','A POBRA DE TRIVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(17,'2109','Aabenraa','AABENRAA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(18,'2110','Aabybro','AABYBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','2018-01-23 05:09:29',1,0,1),(19,'27318','Aachen','AACHEN','','','Germany','',0,0,83,'2016-10-17 10:38:27','2018-02-03 06:11:20',1,0,1),(20,'2351','Aalbaek','AALBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(21,'2350','Aalborg','AALBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(22,'22471','Aalen','AALEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(23,'2111','Aalestrup','AALESTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(24,'1131','Aalesund','AALESUND',NULL,'','NORWAY','',0,0,164,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,0),(25,'14617','Aalsmeer','AALSMEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(26,'24574','Aalst','AALST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(27,'24714','Aalter','AALTER',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(28,'23466','Aarau','AARAU','','','Switzerland','',0,0,210,'2016-10-17 10:38:28','2017-05-12 01:39:43',1,0,1),(29,'23426','Aarburg','AARBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(30,'22990','Aare River','AARE RIVER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(31,'36111','Aarhus','AARHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(32,'29792','Aaronsburg','AARONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(33,'43845','Aars','AARS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(34,'24603','Aartselaar','AARTSELAAR',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(35,'42244','Abaco Island','ABACO ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(36,'13455','Abaiang','ABAIANG',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(37,'16241','Abakan','ABAKAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(38,'14126','Abala','ABALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(39,'5792','Abancourt','ABANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(40,'11513','Abano Terme','ABANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(41,'42218','Abant','ABANT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(42,'43181','Abashiri','ABASHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(43,'13981','Abasolo','ABASOLO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(44,'11514','Abbadia San Salvatore','ABBADIA SAN SALVATORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(45,'11515','Abbasanta','ABBASANTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(46,'7441','Abberley','ABBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(47,'6278','Abbeville','ABBEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(48,'17821','Abbeville','ABBEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(49,'6860','Abbeyhill','ABBEYHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(50,'43705','Abbeyleix','ABBEYLEIX',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(51,'11092','Abbiadori','ABBIADORI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(52,'11516','Abbiategrasso','ABBIATEGRASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(53,'7442','Abbots Ripton','ABBOTS RIPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(54,'25383','Abbotsford','ABBOTSFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(55,'31677','Abbotsford','ABBOTSFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(56,'15290','Abbottabad','ABBOTTABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(57,'29793','Abbottstown','ABBOTTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(58,'14674','Abcoude','ABCOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(59,'3427','Abejar','ABEJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(60,'43037','Abel Tasman National Park','ABEL TASMAN NATIONAL PARK',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(61,'44167','Abeliona','ABELIONA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(62,'13456','Abemama','ABEMAMA',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(63,'13115','Abeno','ABENO',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(64,'9253','Aberaeron','ABERAERON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(65,'30426','Abercrombie','ABERCROMBIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(66,'7443','Aberdare','ABERDARE',NULL,'','United Kingdom','Aberdare',0,0,229,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(67,'35772','Aberdare National Park','Aberdare National Park',NULL,'','Kenya','',0,0,113,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(68,'29225','Aberdeen','ABERDEEN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(69,'7444','Aberdeen','ABERDEEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(70,'9897','Aberdeen','ABERDEEN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(71,'6864','Aberdeenshire','ABERDEENSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(72,'7445','Aberdour','ABERDOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(73,'6865','Aberdovey','ABERDOVEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(74,'7446','Aberfeldy','ABERFELDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(75,'9300','Aberfoyle','ABERFOYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(76,'7447','Abergavenny','ABERGAVENNY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(77,'7448','Abergele','ABERGELE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(78,'7449','Aberlady','ABERLADY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(79,'7450','Aberlour','ABERLOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(80,'7451','Aberporth','ABERPORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(81,'42234','Abersee','ABERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(82,'7452','Abersoch','ABERSOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(83,'7453','Abertillery','ABERTILLERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(84,'7454','Aberystwyth','ABERYSTWYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(85,'11517','Abetone','ABETONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(86,'16506','Abha','ABHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(87,'30427','Abilene','ABILENE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(88,'7455','Abingdon','ABINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(89,'31024','Abingdon','ABINGDON','','','United States','rtyrt',0,0,231,'2016-10-17 10:38:32','2018-02-05 01:38:48',1,0,1),(90,'7456','Abington','ABINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(91,'21287','Abington','ABINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(92,'28482','Abiquiu','ABIQUIU',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(93,'21159','Abita Springs','ABITA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(94,'37228','Ablitas','ABLITAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(95,'7457','Aboyne','ABOYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(96,'16363','Abramtsevo','ABRAMTSEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(97,'16040','Abrantes','ABRANTES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(98,'11093','Abruzzo','ABRUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(99,'39897','Absam','ABSAM',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(100,'28181','Absecon','ABSECON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(101,'27151','Abtenau','ABTENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(102,'23110','Abtwil','ABTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(103,'13214','Abu','ABU',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(105,'25906','Abu Dhabi','ABU DHABI',NULL,'','United Arab Emirates','Abu Dhabi',0,0,228,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(106,'2413','Abu Simbel','ABU SIMBEL',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(107,'1741','Abuja','ABUJA',NULL,'','Nigeria','',0,0,160,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(108,'13215','Abuta','ABUTA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(109,'21819','Acadia','ACADIA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(110,'42157','Acadie','ACADIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(111,'16575','Acajutla','ACAJUTLA',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(112,'24106','Acandi','ACANDI',NULL,'','Colombia','',0,0,49,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(113,'13787','Acapulco','ACAPULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(114,'32209','Acarigua','ACARIGUA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(115,'11518','Acate','ACATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(116,'11094','Acaya','ACAYA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(117,'11519','Acciaroli','ACCIAROLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(118,'21288','Accord','ACCORD',NULL,'','United States','',0,0,231,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(119,'9350','Accra','ACCRA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(120,'7458','Accrington','ACCRINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(121,'3653','Acebeiro','ACEBEIRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(122,'9397','Achaea','ACHAEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(123,'9398','Acharavi','ACHARAVI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(124,'38943','Achau','ACHAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(125,'24443','Achenkirch','ACHENKIRCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(126,'24444','Achensee','ACHENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(127,'22472','Achern','ACHERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(128,'35385','Achill Island','ACHILL ISLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(129,'7459','Achiltibuie','ACHILTIBUIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(130,'495','Achim','ACHIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(131,'38492','Achlada','ACHLADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(132,'7460','Achnasheen','ACHNASHEEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(133,'14452','Achterhoek','ACHTERHOEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:38','1900-01-01 00:00:00',1,0,1),(134,'11520','Aci Castello','ACI CASTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:38','1900-01-01 00:00:00',1,0,1),(135,'11521','Acireale','ACIREALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(136,'11095','Acitrezza','ACITREZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(137,'7461','Acle','ACLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(138,'21961','Acme','ACME',NULL,'','United States','',0,0,231,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(139,'28483','Acoma','ACOMA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(140,'38436','Acornhoek','ACORNHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(141,'15784','Acoteias','ACOTEIAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(142,'11522','Acquafredda','ACQUAFREDDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(143,'11523','Acqualagna','ACQUALAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(144,'11524','Acquapendente','ACQUAPENDENTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(145,'11525','Acquappesa','ACQUAPPESA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(146,'11526','Acquasparta','ACQUASPARTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(147,'11527','Acquaviva','ACQUAVIVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(148,'43050','Acquedolci','ACQUEDOLCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(149,'11079','Acqui Terme','ACQUI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(150,'28594','Acra','ACRA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(151,'35408','Acre','ACRE',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(152,'7462','Acton','ACTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(153,'21289','Acton','ACTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(154,'40484','Acton','ACTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(155,'14001','Actopan','ACTOPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(156,'14054','Acuna','ACUNA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(157,'19688','Acworth','ACWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(158,'22297','Ada','ADA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(159,'20144','Adair','ADAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(160,'19689','Adairsville','ADAIRSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(161,'17543','Adak Island','ADAK ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(162,'9808','Adamas','ADAMAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(163,'21290','Adams','ADAMS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(164,'34077','Adamstown','ADAMSTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(165,'29795','Adamstown','ADAMSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(166,'15364','Adamstown','ADAMSTOWN',NULL,'','Pitcairn','',0,0,487,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(167,'17822','Adamsville','ADAMSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(168,'17374','Adana','ADANA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(169,'10894','Adare','ADARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(170,'7463','Adderbury','ADDERBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(171,'15178','Addington','ADDINGTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(172,'3836','Addis Ababa','ADDIS ABABA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(173,'20421','Addison','ADDISON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(174,'32430','Addo','ADDO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(175,'38831','Addu Atoll','ADDU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(176,'29227','Addyston','ADDYSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(177,'3800','Adeje','ADEJE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(178,'19690','Adel','ADEL',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(179,'26790','Adelaide','ADELAIDE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(180,'35933','Adelaide-gepps Cross','ADELAIDE-GEPPS CROSS',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(181,'34831','Adelaide-glenelg','ADELAIDE-GLENELG',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(182,'34806','Adelaide-oakbank','ADELAIDE-OAKBANK',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(183,'18243','Adelanto','ADELANTO',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(184,'23111','Adelboden','ADELBODEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(185,'43687','Adelong','ADELONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(186,'21628','Adelphi','ADELPHI',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(187,'22683','Adelsdorf','ADELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(188,'22473','Adelshofen','ADELSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(189,'32343','Aden','ADEN',NULL,'','Yemen','',0,0,240,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(190,'599','Adenau','ADENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(191,'496','Adendorf','ADENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(192,'18244','Adin','ADIN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(193,'28596','Adirondack','ADIRONDACK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(194,'17236','Adiyaman','ADIYAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(195,'15730','Adjuntas','ADJUNTAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(196,'16348','Adler','ADLER',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(197,'1993','Adlershof','ADLERSHOF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(198,'23112','Adliswil','ADLISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(199,'27152','Adnet','ADNET',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(200,'3158','Adra','ADRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(201,'39935','Adrar','ADRAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(202,'42681','Adrasan','ADRASAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(203,'21962','Adrian','ADRIAN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(204,'16620','Adriatic Coast - Karst','ADRIATIC COAST - KARST',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(205,'3728','Adsubia','ADSUBIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(206,'14781','Adventure Road','ADVENTURE ROAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(207,'9831','Aegina','AEGINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(208,'11096','Aeolian Islands','AEOLIAN ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(209,'2184','Aeroskobing','AEROSKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(210,'497','Aerzen','AERZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(211,'23113','Aeschi','AESCHI',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(212,'22991','Aeschlen Ob Gunten','AESCHLEN OB GUNTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(213,'9401','Afandou','AFANDOU',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(214,'16152','Afareaitu','AFAREAITU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(215,'11529','Affi','AFFI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(216,'27569','Affton','AFFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(217,'38799','Afik','AFIK',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(218,'40156','Afissos','AFISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(219,'11530','Afragola','AFRAGOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(220,'13693','Afroud','AFROUD',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(221,'32869','Afton','AFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(222,'17238','Afyon','AFYON',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(223,'43158','Afyssos','AFYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(224,'9402','Afytos','AFYTOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(225,'13687','Agadir','AGADIR',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(226,'3354','Agaete','AGAETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(227,'9888','Agaña','AGAÑA',NULL,'','Guam','',0,0,90,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(228,'23459','Agarn','AGARN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(229,'10677','Agartala','AGARTALA',NULL,'','India','Agartala',45,0,101,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(230,'9889','Agat','AGAT',NULL,'','Guam','',0,0,90,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(232,'21291','Agawam','AGAWAM',NULL,'','United States','',0,0,231,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(233,'6376','Agay','AGAY',NULL,'','France','',0,0,76,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(234,'39574','Agazzano','AGAZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(235,'5876','Agde','AGDE',NULL,'','France','',0,0,76,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(236,'14782','Agder','AGDER',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(237,'37447','Agdz','AGDZ',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(238,'2492','Age','AGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(239,'35448','Agello','AGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(240,'5138','Agen','AGEN',NULL,'','France','',0,0,76,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(241,'11531','Agerola','AGEROLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(242,'2287','Agerskov','AGERSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(243,'3955','Aggelby','AGGELBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(244,'32431','Aggeneys','AGGENEYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(245,'7464','Aghadowey','AGHADOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(246,'10768','Aghamore','AGHAMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(247,'41632','Aghia Marina','AGHIA MARINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(248,'43159','Aghii Apostoloi','AGHII APOSTOLOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(249,'9403','Aghios Constantinos','AGHIOS CONSTANTINOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(250,'17172','Aghir','AGHIR',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(251,'39416','Agia Effimia','AGIA EFFIMIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(252,'9409','Agii Apostoli','AGII APOSTOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(253,'34427','Agincourt','AGINCOURT',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(254,'26610','Agine','AGINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(255,'43160','Agios Andreas','AGIOS ANDREAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(256,'36365','Agistri','AGISTRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(257,'11532','Agliana','AGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(258,'11097','Agliano Terme','AGLIANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(259,'5360','Agneaux','AGNEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(260,'35894','Agnes Water','AGNES WATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(261,'6279','Agnetz','AGNETZ',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(262,'4837','Agnieres En Devoluy','AGNIERES EN DEVOLUY',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(263,'23469','Agno','AGNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(264,'15518','Agoo','AGOO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(265,'18245','Agoura Hills','AGOURA HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(266,'10482','Agra','AGRA',NULL,'','India','Trip to Agra | Travel to Agra | Agra Tour | Holida',6,0,101,'2016-10-17 10:38:51','2017-06-20 09:26:44',1,0,1),(267,'3505','Agramunt','AGRAMUNT',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(268,'11533','Agrate Brianza','AGRATE BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(269,'41079','Agri','AGRI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(270,'12841','Agrigento','AGRIGENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(271,'35545','Agrigento-porto Empe','AGRIGENTO-PORTO EMPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(272,'42532','Agrinio','AGRINIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(273,'43161','Agrinion','AGRINION',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(274,'11534','Agropoli','AGROPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(275,'3159','Agua Amarga','AGUA AMARGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(276,'18246','Agua Caliente','AGUA CALIENTE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(277,'16088','Agua De Pau','AGUA DE PAU',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(278,'44035','Aguada','AGUADA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(279,'15735','Aguadilla','AGUADILLA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(280,'3160','Aguadulce','AGUADULCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(281,'15397','Aguas Calientes','AGUAS CALIENTES',NULL,'','Peru','',0,0,172,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(282,'25192','Aguas De Lindoia','AGUAS DE LINDOIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(283,'16053','Aguas De Moura','AGUAS DE MOURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(284,'42152','Aguas Zarcas','AGUAS ZARCAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(285,'13890','Aguascalientes','AGUASCALIENTES',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(286,'15848','Agueda','AGUEDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(287,'3161','Aguilar','AGUILAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(288,'3026','Aguilas','AGUILAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(289,'40444','Agulhas','AGULHAS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(290,'13116','Aguni','AGUNI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(291,'43690','Agva','AGVA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(292,'26152','Agveran','AGVERAN',NULL,'','Armenia','',0,0,11,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(293,'35842','Ahangama','AHANGAMA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(294,'27319','Ahaus','AHAUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(295,'820','Ahlbeck','AHLBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(296,'10375','Ahmedabad','AHMEDABAD',NULL,'','India','Tour Travel Packages Ahmedabad | Ahmedabad Holiday',16,0,101,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(297,'33753','Ahoskie','AHOSKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(298,'691','Ahrensburg','AHRENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(299,'39968','Ahrensfelde','AHRENSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(300,'4007','Ahtari','AHTARI',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(301,'14008','Ahualulco De Mercado','AHUALULCO DE MERCADO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(302,'5987','Ahun','AHUN',NULL,'','France','',0,0,76,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(303,'13608','Ahungalla','AHUNGALLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(305,'43874','Ahuy','AHUY',NULL,'','France','',0,0,76,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(306,'18247','Ahwahnee','AHWAHNEE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(307,'18096','Ahwatukee','AHWATUKEE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(308,'3044','Aibar','AIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(309,'43183','Aichi','AICHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(310,'11535','Aidone','AIDONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(311,'19974','Aiea','AIEA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(312,'42531','Aigio','AIGIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(313,'23444','Aigle','AIGLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(314,'34980','Aiguablava','AIGUABLAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(315,'43089','Aiguamurcia','AIGUAMURCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(316,'3506','Aiguamúrcia','AIGUAMÚRCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(317,'6562','Aigueblanche','AIGUEBLANCHE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(318,'6064','Aiguefonde','AIGUEFONDE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(319,'37725','Aigueperse','AIGUEPERSE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(320,'41601','Aigues Mortes','AIGUES MORTES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(321,'5877','Aigues-mortes','AIGUES-MORTES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(322,'37948','Aiguines','AIGUINES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(323,'30282','Aiken','AIKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(324,'5430','Aillant-sur-tholon','AILLANT-SUR-THOLON',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(325,'14144','Ailuk','AILUK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(326,'5878','Aimargues','AIMARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(327,'6563','Aime','AIME',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(328,'4106','Ain','AIN',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(329,'17149','Ain Draham','AIN DRAHAM',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(330,'2414','Ain Sokhna','AIN SOKHNA',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(331,'41833','Ain Taya','AIN TAYA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(332,'5139','Ainhoa','AINHOA',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(333,'34981','Ainsa','AINSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(334,'26623','Ainslie','AINSLIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(335,'7465','Ainstable','AINSTABLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(336,'28092','Ainsworth','AINSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(337,'25384','Ainsworth Hot Springs','AINSWORTH HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(338,'15566','Airai','AIRAI',NULL,'','Palau','',0,0,167,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(339,'7466','Aird Of Sleat','AIRD OF SLEAT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(340,'7467','Airdrie','AIRDRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(341,'25268','Airdrie','AIRDRIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(342,'6808','Aire Sur La Lys','AIRE SUR LA LYS',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(343,'31026','Airlie','AIRLIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(344,'26646','Airlie Beach','AIRLIE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(345,'23114','Airolo','AIROLO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(346,'7468','Airth','AIRTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(347,'29796','Airville','AIRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(348,'31428','Airway Heights','AIRWAY HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(349,'4107','Aisne','AISNE',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(350,'37288','Aisonville-et-bernoville','AISONVILLE-ET-BERNOVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(351,'5431','Aisy-sur-armancon','AISY-SUR-ARMANCON',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(352,'38052','Ait Ben Haddou','AIT BEN HADDOU',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(353,'22299','Aitkin','AITKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(354,'24063','Aitutaki','AITUTAKI',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(355,'5988','Aix','AIX',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(356,'40972','Aix-en-provence','AIX-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(357,'4108','Aix-les-bains','AIX-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(358,'9418','Aiyaleo','AIYALEO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(359,'9419','Aiyion','AIYION',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(360,'10701','Aizawl','AIZAWL',NULL,'','India','Aizawl',43,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(361,'43065','Aizuwakamatsu','AIZUWAKAMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(362,'10483','Ajabgarh','AJABGARH',NULL,'','India','',0,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(363,'34690','Ajaccio','AJACCIO',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(364,'34428','Ajax','AJAX',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(365,'14009','Ajijic','AJIJIC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(366,'25907','Ajman','AJMAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(367,'10668','Ajmer','AJMER',NULL,'','India','Ajmer Trip Packages | Ajmer Holiday Packages | Raj',2,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(368,'18097','Ajo','AJO',NULL,'','United States','',0,0,231,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(369,'15985','Ajuda','AJUDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(370,'42861','Akaigawa','AKAIGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(371,'13216','Akakura','AKAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(372,'39296','Akan National Park Area','AKAN NATIONAL PARK AREA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(373,'43012','Akaroa','AKAROA',NULL,'','New Zealand','Akaroa',0,0,157,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(374,'13217','Akashi','AKASHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(375,'3922','Akaslompolo','AKASLOMPOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(376,'4040','Äkäslompolo','ÄKÄSLOMPOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(377,'39998','Akbuk','AKBUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(378,'17271','Akcakoca','AKCAKOCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(379,'16814','Akersberga','AKERSBERGA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(380,'14618','Akersloot','AKERSLOOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(381,'9629','Akharnai','AKHARNAI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(382,'17544','Akhiok','AKHIOK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(383,'40317','Akhisar','AKHISAR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(384,'17506','Akhtyrka','AKHTYRKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(385,'17545','Akiachak','AKIACHAK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(386,'17546','Akiak','AKIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(387,'6836','Akieni','AKIENI',NULL,'','Gabon','',0,0,80,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(388,'2161','Akirkeby','AKIRKEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(389,'13117','Akishima','AKISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(390,'13218','Akita','AKITA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(391,'24065','Akitua Island','AKITUA ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(392,'11027','Akko','AKKO',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(393,'17326','Akkoy','AKKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(394,'14507','Akkrum','AKKRUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(395,'43240','Aklan','AKLAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(396,'25759','Aklavik','AKLAVIK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(397,'37867','Ako','AKO',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(398,'9351','Akosombo','AKOSOMBO',NULL,'','Ghana','',0,0,84,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(399,'28598','Akron','AKRON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(400,'9420','Akrotiri','AKROTIRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(401,'17352','Aksaray','AKSARAY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(402,'14783','Aksdal','AKSDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(403,'23836','Aksu','AKSU',NULL,'','China','',0,0,46,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(404,'13437','Aktau','AKTAU',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(405,'13434','Aktobe','AKTOBE',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(406,'25932','Akulivik','AKULIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(407,'14072','Akumal','AKUMAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(408,'11006','Akureyri','AKUREYRI',NULL,'','Iceland','Akureyri',0,0,100,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(409,'17547','Akutan','AKUTAN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(410,'17336','Akyaka','AKYAKA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(411,'43553','Al Ahsa','AL AHSA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(412,'25908','Al Ain','AL AIN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(413,'35702','Al Aqaba','AL AQABA',NULL,'','Jordan','',0,0,111,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(414,'24818','Al Areen','AL AREEN',NULL,'','Bahrain','',0,0,17,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(415,'2415','Al Arish','AL ARISH',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(416,'32360','Al Ghaydah','AL GHAYDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(417,'13688','Al Hoceima','AL HOCEIMA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(418,'13534','Al Jahra','AL JAHRA',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(419,'42629','Al Khor','AL KHOR',NULL,'','Qatar','',0,0,177,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(420,'15274','Al Qurm','AL QURM',NULL,'','Oman','',0,0,165,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(421,'17823','Alabaster','ALABASTER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(422,'17313','Alacati','ALACATI',NULL,'','Turkey','Alacati',0,0,222,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(423,'19242','Alachua','ALACHUA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(424,'24963','Alagoas','ALAGOAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(425,'24194','Alajuela','ALAJUELA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(426,'17548','Alakanuk','ALAKANUK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(427,'18248','Alameda','ALAMEDA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(428,'32790','Alamo','ALAMO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(429,'28485','Alamogordo','ALAMOGORDO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(430,'13945','Alamos','ALAMOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(431,'34695','Alamosa','ALAMOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(432,'3881','Aland','ALAND',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(433,'11099','Alano Di Piave','ALANO DI PIAVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(434,'21963','Alanson','ALANSON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(435,'17248','Alanya','ALANYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(436,'10381','Alappuzha','ALAPPUZHA',NULL,'','India','',3,0,101,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(437,'16484','Al-aqiq','AL-AQIQ',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(438,'2493','Alaquas','ALAQUAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(439,'3389','Alarcon','ALARCON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(440,'2878','Alaro','ALARO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(441,'11538','Alassio','ALASSIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(442,'2494','Alava','ALAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(443,'2879','Alayor','ALAYOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(444,'11539','Alba','ALBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(445,'30432','Alba','ALBA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(446,'38132','Alba De Tormes','ALBA DE TORMES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(447,'36614','Alba Iulia','ALBA IULIA',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(448,'3390','Albacete','ALBACETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(449,'16485','Al-baha','AL-BAHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(450,'3391','Albalate De Zorita','ALBALATE DE ZORITA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(451,'1378','Albania','ALBANIA',NULL,'','ALBANIA','',0,0,2,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(452,'11540','Albano Laziale','ALBANO LAZIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(453,'29606','Albany','ALBANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(454,'26948','Albany','ALBANY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(455,'38291','Albaret-sainte-marie','ALBARET-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(456,'11100','Albaretto Della Torre','ALBARETTO DELLA TORRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(457,'3307','Albarracin','ALBARRACIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(458,'11101','Albavilla','ALBAVILLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(459,'42398','Albay','ALBAY',NULL,'','Philippines','',0,0,173,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(460,'6751','Albé','ALBÉ',NULL,'','France','',0,0,76,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(461,'43755','Albeck','ALBECK',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(462,'2955','Albelda De Iregua','ALBELDA DE IREGUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(463,'33754','Albemarle','ALBEMARLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(464,'24768','Albena','ALBENA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(465,'11541','Albenga','ALBENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(466,'11542','Alberese','ALBERESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(467,'39122','Albergaria-a-velha','ALBERGARIA-A-VELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(468,'38742','Alberique','ALBERIQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(469,'33755','Albermarle Sound','ALBERMARLE SOUND',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(470,'11080','Alberobello','ALBEROBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(471,'35521','Alberobello-fasano','ALBEROBELLO-FASANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(472,'12871','Alberoni','ALBERONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(473,'5108','Albert','ALBERT',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(474,'22301','Albert Lea','ALBERT LEA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(475,'37542','Albertinia','ALBERTINIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(476,'32548','Alberton','ALBERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(477,'27927','Alberton','ALBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(478,'25811','Alberton','ALBERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(479,'38047','Albertslund','ALBERTSLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(480,'5064','Albertville','ALBERTVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(481,'17824','Albertville','ALBERTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(482,'36612','Albesti','ALBESTI',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(483,'23115','Albeuve','ALBEUVE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(484,'6065','Albi','ALBI',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(485,'20145','Albia','ALBIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(486,'4109','Albiez-montrond','ALBIEZ-MONTROND',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(487,'40072','Albinen','ALBINEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(488,'41223','Albinia','ALBINIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(489,'27928','Albion','ALBION',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(490,'26881','Albion','ALBION',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(491,'43475','Albir','ALBIR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(492,'22992','Albisrieden','ALBISRIEDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(493,'40554','Albissola Marina','ALBISSOLA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(494,'3162','Albolote','ALBOLOTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(495,'6564','Albon','ALBON',NULL,'','France','',0,0,76,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(496,'41057','Alboraia','ALBORAIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(497,'3729','Alboraya','ALBORAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(498,'22474','Albstadt','ALBSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(499,'15915','Albufeira','ALBUFEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(500,'2496','Albufereta','ALBUFERETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(501,'32344','Albuq','ALBUQ',NULL,'','Yemen','',0,0,240,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(502,'28488','Albuquerque','ALBUQUERQUE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(503,'31286','Alburg','ALBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(504,'34079','Albury','ALBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(505,'15986','Alcabideche','ALCABIDECHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(506,'16054','Alcacer Do Sal','ALCACER DO SAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(507,'3355','Alcala','ALCALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(508,'12842','Alcamo','ALCAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(509,'2498','Alcanada','ALCANADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(510,'3507','Alcanar','ALCANAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(511,'16041','Alcanena','ALCANENA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(512,'3308','Alcaniz','ALCANIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(513,'15987','Alcantara','ALCANTARA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(514,'40323','Alcantara','ALCANTARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(515,'15772','Alcantarilha','ALCANTARILHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(516,'3164','Alcaucin','ALCAUCIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(517,'40454','Alcaudete','ALCAUDETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(518,'3392','Alcazar De San Juan','ALCAZAR DE SAN JUAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(519,'41942','Alceda','ALCEDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(520,'7469','Alcester','ALCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(521,'33063','Alcoa','ALCOA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(522,'15973','Alcobaca','ALCOBACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(523,'2970','Alcobendas','ALCOBENDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(524,'3730','Alcoceber','ALCOCEBER',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(525,'3393','Alcolea Del Pinar','ALCOLEA DEL PINAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(526,'6867','Alcombe','ALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(527,'2975','Alcorcon','ALCORCON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(528,'44301','Alcossebre','ALCOSSEBRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(529,'41670','Alcoutim','ALCOUTIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(530,'3731','Alcoy','ALCOY',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(531,'2880','Alcudia','ALCUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(532,'3732','Aldaya','ALDAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(533,'7470','Aldbrough St. John','ALDBROUGH ST. JOHN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(534,'6868','Aldbury','ALDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(535,'7471','Aldeburgh','ALDEBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(536,'24575','Alden Biesen','ALDEN BIESEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(537,'25385','Aldergrove','ALDERGROVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(538,'7472','Alderley Edge','ALDERLEY EDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(539,'7473','Alderminster','ALDERMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(540,'6869','Alderney','ALDERNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(541,'22684','Aldersbach','ALDERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(542,'7474','Aldershot','ALDERSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(543,'7475','Alderton','ALDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(544,'7476','Aldford','ALDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(545,'30433','Aldine','ALDINE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(546,'38319','Aldingbourne','ALDINGBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(547,'37860','Aldrans','ALDRANS',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(548,'7477','Aldridge','ALDRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(549,'7478','Aldwark','ALDWARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(550,'39506','Alegria','ALEGRIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(551,'17549','Aleknagik','ALEKNAGIK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(552,'16452','Aleksandrovskoye','ALEKSANDROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(553,'15642','Aleksandrow','ALEKSANDROW',NULL,'','Poland','',0,0,174,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(554,'3508','Alella','ALELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(555,'5361','Alencon','ALENCON',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(556,'40614','Alenquer','ALENQUER',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(557,'1077','Alentejo','ALENTEJO',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(558,'5879','Alenya','ALENYA',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(559,'16926','Aleppo','ALEPPO',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(560,'5760','Aleria','ALERIA',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(561,'25386','Alert Bay','ALERT BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(562,'5880','Ales','ALES',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(563,'12843','Alessandria','ALESSANDRIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(564,'11543','Alessano','ALESSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(565,'17550','Aleutian Islands','ALEUTIAN ISLANDS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(566,'3073','Alevia','ALEVIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(567,'32432','Alexander Bay','ALEXANDER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(568,'17825','Alexander City','ALEXANDER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(569,'26882','Alexandra','ALEXANDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(570,'32549','Alexandra','ALEXANDRA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(571,'15083','Alexandra','ALEXANDRA',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(572,'22303','Alexandria','ALEXANDRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(573,'6870','Alexandria','ALEXANDRIA',NULL,'','United Kingdom','Alexandria',0,0,229,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(574,'2410','Alexandria','ALEXANDRIA',NULL,'','Egypt','Alexandria',0,0,65,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(575,'1133','Alexandria-mediterranean Coast','ALEXANDRIA-MEDITERRANEAN COAST',NULL,'','EGYPT','',0,0,65,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(576,'42530','Alexandroupoli','ALEXANDROUPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(577,'9752','Alexandroupolis','ALEXANDROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(578,'43139','Aley','ALEY',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(579,'600','Alf','ALF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(580,'39092','Alfacar','ALFACAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(581,'3733','Alfafar','ALFAFAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(582,'3309','Alfajarin','ALFAJARIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(583,'15988','Alfama','ALFAMA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(584,'2956','Alfaro','ALFARO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(585,'42996','Alfas Del Pi','ALFAS DEL PI',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(586,'2499','Alfaz Del Pi','ALFAZ DEL PI',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(587,'22475','Alfdorf','ALFDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(588,'22685','Alfeld','ALFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(589,'3509','Alfes','ALFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(590,'40269','Alfiano Natta','ALFIANO NATTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(591,'4658','Alfortville','ALFORTVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(592,'15989','Alfragide','ALFRAGIDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(593,'28603','Alfred','ALFRED',NULL,'','United States','',0,0,231,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(594,'13946','Alfredo V. Bonfil','ALFREDO V. BONFIL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(595,'7480','Alfreton','ALFRETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(596,'7481','Alfriston','ALFRISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(597,'25918','Al-fujairah','AL-FUJAIRAH',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(598,'42343','Algajola','ALGAJOLA',NULL,'','France','',0,0,76,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(599,'3165','Algar','ALGAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(600,'14964','Algard','ALGARD',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(601,'39794','Algarinejo','ALGARINEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(602,'36003','Algarrobo','ALGARROBO',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(603,'15785','Algarve','ALGARVE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(604,'3166','Algeciras','ALGECIRAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(605,'12811','Alghero','ALGHERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(606,'38252','Algiers','ALGIERS',NULL,'','Algeria','',0,0,3,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(607,'21162','Algiers','ALGIERS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(608,'28491','Algodones','ALGODONES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(609,'31679','Algoma','ALGOMA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(610,'20146','Algona','ALGONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(611,'20422','Algonquin','ALGONQUIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(612,'34429','Algonquin Park','ALGONQUIN PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(613,'39926','Algorfa','ALGORFA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(614,'3696','Algorta','ALGORTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(615,'3310','Alhama De Aragon','ALHAMA DE ARAGON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(616,'18251','Alhambra','ALHAMBRA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(617,'3167','Alhaurin De La Torre','ALHAURIN DE LA TORRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(618,'11102','Ali Terme','ALI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(619,'39819','Alia','ALIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(620,'42608','Alibag','ALIBAG',NULL,'','India','Alibag',5,0,101,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(621,'17303','Alibeykoy','ALIBEYKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(622,'2459','Alicante','ALICANTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(623,'35010','Alicante-ciudad Ques','ALICANTE-CIUDAD QUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(624,'35021','Alicante-el Campello','ALICANTE-EL CAMPELLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(625,'35039','Alicante-elda','ALICANTE-ELDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(626,'36201','Alicante-petrel','ALICANTE-PETREL',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(627,'35052','Alicante-san Juan','ALICANTE-SAN JUAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(628,'30434','Alice','ALICE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(629,'13032','Alice Bel Colle','ALICE BEL COLLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(630,'26637','Alice Springs','ALICE SPRINGS',NULL,'','Australia','Alice Springs',0,0,13,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(631,'24848','Alice Town','ALICE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(632,'32433','Alicedale','ALICEDALE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(633,'17826','Aliceville','ALICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(634,'30435','Alief','ALIEF',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(635,'10484','Aligarh','ALIGARH',NULL,'','India','Aligarh',6,0,101,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(636,'5881','Alignan-du-vent','ALIGNAN-DU-VENT',NULL,'','France','',0,0,76,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(637,'16071','Alijo','ALIJO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(638,'9630','Alikanas','ALIKANAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(639,'39687','Alikes','ALIKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(640,'37538','Aliki','ALIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(641,'39961','Aliko','ALIKO',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(642,'11544','Alimena','ALIMENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(643,'43102','Alimos','ALIMOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(644,'16879','Alingsas','ALINGSAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(645,'10485','Alipur','ALIPUR',NULL,'','India','',0,0,101,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(646,'18252','Aliso Viejo','ALISO VIEJO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(647,'17551','Alitak','ALITAK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(648,'601','Alken','ALKEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(649,'14619','Alkmaar','ALKMAAR',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(650,'10678','Allahabad','ALLAHABAD',NULL,'','India','Allahabad',6,0,101,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(651,'17552','Allakaket','ALLAKAKET',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(652,'28183','Allamuchy','ALLAMUCHY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(653,'5284','Allanche','ALLANCHE',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(654,'3045','Allariz','ALLARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(655,'6377','Allauch','ALLAUCH',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(656,'32550','Alldays','ALLDAYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(657,'21965','Allegan','ALLEGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(658,'28605','Allegany','ALLEGANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(659,'18253','Alleghany','ALLEGHANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(660,'12872','Alleghe','ALLEGHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(661,'43875','Alleins','ALLEINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(662,'6378','Allemagne-en-provence','ALLEMAGNE-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(663,'30436','Allen','ALLEN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(664,'21967','Allendale','ALLENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(665,'6871','Allendale','ALLENDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(666,'22476','Allensbach','ALLENSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(667,'6872','Allensford','ALLENSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(668,'34697','Allenspark','ALLENSPARK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(669,'29798','Allentown','ALLENTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(670,'1767','Alleppey','ALLEPPEY',NULL,'','India','Travel Tour Packages for Alleppey | Trip to Allepp',3,0,101,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(671,'11545','Allerona','ALLERONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(672,'39636','Allersberg','ALLERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(673,'22686','Allershausen','ALLERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(674,'21292','Allerton','ALLERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(675,'7482','Allesley','ALLESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(676,'5140','Alles-sur-dordogne','ALLES-SUR-DORDOGNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(677,'6565','Allevard','ALLEVARD',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(678,'42752','Allevard-les-bains','ALLEVARD-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(679,'5285','Alleyras','ALLEYRAS',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(680,'24361','Allgaeu','ALLGAEU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(681,'28093','Alliance','ALLIANCE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(682,'4110','Allier','ALLIER',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(683,'37794','Allin','ALLIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(684,'2162','Allinge','ALLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(685,'38175','Alliste','ALLISTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(686,'34430','Alliston','ALLISTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(687,'7483','Alloa','ALLOA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(688,'6379','Allos','ALLOS',NULL,'','France','',0,0,76,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(689,'21293','Allston','ALLSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(690,'17977','Alma','ALMA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(691,'25933','Alma','ALMA',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(692,'1572','Almada','ALMADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(693,'3394','Almaden','ALMADEN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(694,'2460','Almagro','ALMAGRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(695,'15916','Almancil','ALMANCIL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(696,'36603','Almancil-vale Do Lob','ALMANCIL-VALE DO LOB',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(697,'3395','Almansa','ALMANSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(698,'13433','Almaty','ALMATY',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(699,'3169','Almayate Bajo','ALMAYATE BAJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(700,'3428','Almazan','ALMAZAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(701,'37957','Almedinilla','ALMEDINILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(702,'15965','Almeida','ALMEIDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(703,'14743','Almelo','ALMELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(704,'14765','Almen','ALMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(705,'3799','Almendralejo','ALMENDRALEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(706,'14453','Almere','ALMERE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(707,'3170','Almeria','ALMERIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(708,'34978','Almeria-adra','ALMERIA-ADRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(709,'34979','Almeria-aguadulce','ALMERIA-AGUADULCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(710,'35040','Almeria-el Ejido','ALMERIA-EL EJIDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(711,'36174','Almeria-mojacar','ALMERIA-MOJACAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(712,'34984','Almeria-retamar','ALMERIA-RETAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(713,'35046','Almeria-roquetas De','ALMERIA-ROQUETAS DE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(714,'35114','Almeria-vera','ALMERIA-VERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(715,'26063','Almirante Brown','ALMIRANTE BROWN',NULL,'','Argentina','',0,0,10,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(716,'1508','Almogordo','ALMOGORDO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(717,'42988','Almonacid','ALMONACID',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(718,'34699','Almont','ALMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(719,'3171','Almonte','ALMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(720,'10679','Almora','ALMORA',NULL,'','India','Almora',9,0,101,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(721,'3397','Almorox','ALMOROX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(722,'3172','Almunecar','ALMUNECAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(723,'2504','Almusafes','ALMUSAFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(724,'41466','Almussafes','ALMUSSAFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(725,'7484','Alne','ALNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(726,'7485','Alnmouth','ALNMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(727,'7486','Alnwick','ALNWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(728,'14451','Alofi','ALOFI',NULL,'','Niue','',0,0,161,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(729,'29607','Aloha','ALOHA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(730,'3173','Alomartes','ALOMARTES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(731,'1728','Alomartes-illora','ALOMARTES-ILLORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(732,'10486','Along','ALONG',NULL,'','India','Along',40,0,101,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(733,'42529','Alonissos','ALONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(734,'9631','Alonnisos','ALONNISOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(735,'9421','Alónnisos Island','ALÓNNISOS ISLAND',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(736,'10137','Alor','ALOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(737,'14353','Alor Setar','ALOR SETAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(738,'3174','Alora','ALORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(739,'15572','Alotau','ALOTAU',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(740,'43693','Alotenango','ALOTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(741,'41433','Alovera','ALOVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(742,'5432','Aloxe-corton','ALOXE-CORTON',NULL,'','France','',0,0,76,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(743,'39547','Alozaina','ALOZAINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(744,'3510','Alp','ALP',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(745,'24445','Alpbach','ALPBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(746,'43306','Alpe D Huez','ALPE D HUEZ',NULL,'','France','',0,0,76,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(747,'11103','Alpe Di Siusi','ALPE DI SIUSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(748,'2976','Alpedrete','ALPEDRETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(749,'21969','Alpena','ALPENA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(750,'41669','Alpendura E Matos','ALPENDURA E MATOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(751,'4111','Alpes De Sud','ALPES DE SUD',NULL,'','France','',0,0,76,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(752,'26378','Alpha','ALPHA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(753,'29232','Alpha','ALPHA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(754,'19694','Alpharetta','ALPHARETTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(755,'41770','Alphaville','ALPHAVILLE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(756,'36452','Alphen Aan De Rijn','ALPHEN AAN DE RIJN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(757,'16912','Alphonse Island','ALPHONSE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(758,'38513','Alpignano','ALPIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(759,'18254','Alpine','ALPINE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(760,'26969','Alpine Foothills','ALPINE FOOTHILLS',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(761,'22477','Alpirsbach','ALPIRSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(762,'40666','Alpnachstad','ALPNACHSTAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(763,'3311','Alquezar','ALQUEZAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(764,'42570','Al-qusair','AL-QUSAIR',NULL,'','Egypt','',0,0,65,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(765,'43565','Alresford','ALRESFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(766,'7487','Alsager','ALSAGER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(767,'3046','Alsasua','ALSASUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(768,'386','Alsfeld','ALSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(769,'20423','Alsip','ALSIP',NULL,'','United States','',0,0,231,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(770,'40799','Alsisar','ALSISAR',NULL,'','India','Alsisar',2,0,101,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(771,'7488','Alston','ALSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(772,'692','Alt Duvenstedt','ALT DUVENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(773,'23116','Alt Sankt Johann','ALT SANKT JOHANN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(774,'33298','Alta','ALTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(775,'14770','Alta','ALTA',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(776,'11104','Alta Badia','ALTA BADIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(777,'25068','Alta Floresta','ALTA FLORESTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(778,'26091','Alta Gracia','ALTA GRACIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(779,'3511','Altafulla','ALTAFULLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(780,'2366','Altagracia','ALTAGRACIA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(781,'32204','Altagracia','ALTAGRACIA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(782,'25099','Altamira','ALTAMIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(783,'13774','Altamira','ALTAMIRA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(784,'33065','Altamont','ALTAMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(785,'19243','Altamonte Springs','ALTAMONTE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(786,'11546','Altamura','ALTAMURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(787,'24408','Altaussee','ALTAUSSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(788,'11547','Altavilla Milicia','ALTAVILLA MILICIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(789,'31028','Altavista','ALTAVISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(790,'23837','Altay','ALTAY',NULL,'','China','',0,0,46,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(791,'23117','Altdorf','ALTDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(792,'22478','Altdorf','ALTDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(793,'11106','Alte Di Montecchio Maggiore','ALTE DI MONTECCHIO MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(794,'3734','Altea','ALTEA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(795,'602','Altenahr','ALTENAHR',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(796,'39581','Altenau','ALTENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(797,'2021','Altenberg','ALTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(798,'22479','Altenburg','ALTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(799,'693','Altenholz','ALTENHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(800,'27153','Altenmarkt Im Pongau','ALTENMARKT IM PONGAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(801,'23118','Altenrhein','ALTENRHEIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(802,'24362','Altensteig','ALTENSTEIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(803,'821','Altentreptow','ALTENTREPTOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(804,'16014','Alter Do Chao','ALTER DO CHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(805,'24964','Alter Do Chao','ALTER DO CHAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(806,'37192','Alterkulz','ALTERKULZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(807,'1994','Altglienicke','ALTGLIENICKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(808,'6803','Altillac','ALTILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(809,'17194','Altinkum','ALTINKUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(810,'36798','Altinoluk','ALTINOLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(811,'24363','Altmark','ALTMARK',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(812,'39958','Altmünster','ALTMÜNSTER',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(813,'15786','Alto De Sao Joao','ALTO DE SAO JOAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(814,'41771','Alto Paraiso','ALTO PARAISO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(815,'20425','Alto Pass','ALTO PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(816,'22687','Altoetting','ALTOETTING',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(817,'11549','Altomonte','ALTOMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(818,'7489','Alton','ALTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(819,'29233','Alton','ALTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(820,'34431','Alton','ALTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(821,'26379','Alton Downs','ALTON DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(822,'26442','Altona','ALTONA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(823,'25578','Altona','ALTONA',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(824,'31680','Altoona','ALTOONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(825,'11550','Altopascio','ALTOPASCIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(826,'7490','Altrincham','ALTRINCHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(827,'22993','Altstetten','ALTSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(828,'15917','Altura','ALTURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(829,'18256','Alturas','ALTURAS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(830,'32870','Altus','ALTUS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(831,'24364','Altwarmbüchen','ALTWARMBÜCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(832,'43162','Alupka','ALUPKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(833,'17514','Alushta','ALUSHTA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(834,'32871','Alva','ALVA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(835,'16055','Alvalade','ALVALADE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(836,'30438','Alvarado','ALVARADO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(837,'13891','Alvarado','ALVARADO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(838,'42216','Alvaro Obregon','ALVARO OBREGON',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(839,'16736','Alvdalen','ALVDALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(840,'15031','Alversund','ALVERSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(841,'16744','Alvesta','ALVESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(842,'7491','Alveston','ALVESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(843,'42313','Alviano','ALVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(844,'6066','Alvignac','ALVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(845,'16747','Alvik','ALVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(846,'30439','Alvin','ALVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(847,'38398','Alvito','ALVITO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(848,'15869','Alvito','ALVITO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(849,'15918','Alvor','ALVOR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(850,'16815','Alvsjo','ALVSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(851,'10487','Alwar','ALWAR',NULL,'','India','Alwar',2,0,101,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(852,'38136','Alyangula','ALYANGULA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(853,'9423','Alykes','ALYKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(854,'40097','Alyth','ALYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(855,'42314','Alzate Brianza','ALZATE BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(856,'22688','Alzenau','ALZENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(857,'603','Alzey','ALZEY',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(858,'2505','Alzira','ALZIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(859,'14010','Amacuzac','AMACUZAC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(860,'18257','Amador City','AMADOR CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(861,'15990','Amadora','AMADORA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(862,'43476','Amadores','AMADORES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(863,'28607','Amagansett','AMAGANSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(864,'13219','Amagasaki','AMAGASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(865,'2112','Amager Island','AMAGER ISLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(866,'2227','Amagerbro','AMAGERBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(867,'5707','Amagne','AMAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(868,'10337','Amahai','AMAHAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(869,'13118','Amakusa','AMAKUSA',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(870,'40421','Amal','AMAL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(871,'11107','Amalfi','AMALFI',NULL,'','Italy','Amalfi',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(872,'35511','Amalfi-conca Marini','AMALFI-CONCA MARINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(873,'42528','Amaliada','AMALIADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(874,'2113','Amalienborg - Nyhavn','AMALIENBORG - NYHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(875,'20149','Amana','AMANA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(876,'31429','Amanda Park','AMANDA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(877,'11552','Amantea','AMANTEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(878,'16023','Amarante','AMARANTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(879,'15877','Amares','AMARES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(880,'32791','Amargosa Valley','AMARGOSA VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(881,'30440','Amarillo','AMARILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(882,'9632','Amarinthos','AMARINTHOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(883,'9633','Amarousion','AMAROUSION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(884,'42516','Amarynthos - Evia','AMARYNTHOS - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(885,'17242','Amasya','AMASYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(886,'2062','Ambach','AMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(887,'43733','Ambala','AMBALA',NULL,'','India','Ambala',20,0,101,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(888,'39335','Ambanja','AMBANJA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(889,'34967','Ambato','AMBATO',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(890,'40123','Ambatomainty','AMBATOMAINTY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(891,'38170','Ambatondrazaka','AMBATONDRAZAKA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(892,'22480','Amberg','AMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(893,'1062','Ambergris Caye','AMBERGRIS CAYE',NULL,'','BELIZE','',0,0,22,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(894,'6566','Amberieux-en-dombes','AMBERIEUX-EN-DOMBES',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(895,'15067','Amberley','AMBERLEY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(896,'7492','Amberley','AMBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(897,'39999','Ambialet','AMBIALET',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(898,'4112','Ambilly','AMBILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(899,'7493','Amble','AMBLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(900,'17553','Ambler','AMBLER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(901,'7494','Ambleside','AMBLESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(902,'39883','Ambleteuse','AMBLETEUSE',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(903,'4944','Amboise','AMBOISE',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(904,'10338','Ambon','AMBON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(905,'35773','Amboseli National Park','Amboseli National Park',NULL,'','Kenya','',0,0,113,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(906,'11553','Ambra','AMBRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(907,'16407','Amderma','AMDERMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(908,'41629','Amealco De Bonfil','AMEALCO DE BONFIL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(909,'37851','Amed','AMED',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(910,'11554','Ameglia','AMEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(911,'43361','Ameland','AMELAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(912,'11555','Amelia','AMELIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(913,'19245','Amelia City','AMELIA CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(914,'5882','Amelie Les Bains Palalda','AMELIE LES BAINS PALALDA',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(915,'41598','Amelie-les-bains-palalda','AMELIE-LES-BAINS-PALALDA',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(916,'11556','Amendolara','AMENDOLARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(917,'11557','Ameno','AMENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(918,'10488','Amer','AMER',NULL,'','India','',0,0,101,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(919,'18258','American Canyon','AMERICAN CANYON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(920,'26443','American River','AMERICAN RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(921,'6826','American Samoa','AMERICAN SAMOA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(922,'975','Americana','AMERICANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(923,'19695','Americus','AMERICUS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(924,'14675','Amersfoort','AMERSFOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(925,'7495','Amersham','AMERSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(926,'31681','Amery','AMERY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(927,'20151','Ames','AMES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(928,'21294','Amesbury','AMESBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(929,'7496','Amesbury','AMESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(930,'42527','Amfilochia','AMFILOCHIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(931,'21295','Amherst','AMHERST',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(932,'25690','Amherst','AMHERST',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(933,'34432','Amherstburg','AMHERSTBURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(934,'43900','Ami','AMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(935,'39163','Amiad','AMIAD',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(936,'19696','Amicalola','AMICALOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(937,'6280','Amiens','AMIENS',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(938,'5615','Amilly','AMILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(939,'37656','Amirim','AMIRIM',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(940,'21163','Amite','AMITE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(941,'26649','Amity Point','AMITY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(942,'40800','Amla','AMLA',NULL,'','India','',0,0,101,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(943,'7497','Amlwch','AMLWCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(944,'13103','Amman','AMMAN',NULL,'','Jordan','Amman',0,0,111,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(945,'44182','Ammanford','AMMANFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(946,'3943','Ammansaari','AMMANSAARI',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(947,'6752','Ammerschwihr','AMMERSCHWIHR',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(948,'22689','Ammerthal','AMMERTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(949,'20326','Ammon','AMMON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(950,'9424','Ammoudara','AMMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(951,'38953','Ammoudia','AMMOUDIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(952,'38055','Amneville','AMNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(953,'9634','Amoliani','AMOLIANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(954,'3697','Amorebieta','AMOREBIETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(955,'15870','Amoreiras','AMOREIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(956,'9635','Amorgos','AMORGOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(957,'27826','Amory','AMORY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(958,'25934','Amos','AMOS',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(959,'36562','Amosanto','AMOSANTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(960,'14998','Amot','AMOT',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(961,'43040','Amoudara','AMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(962,'43411','Amouliani Island','AMOULIANI ISLAND',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(963,'14338','Ampang','AMPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(964,'37797','Ampanihy','AMPANIHY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(965,'39252','Ampfelwang','AMPFELWANG',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(966,'6875','Ampfield','AMPFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(967,'42463','Ampfing','AMPFING',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(968,'1798','Amphur Mueng','AMPHUR MUENG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(969,'3512','Amposta','AMPOSTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(970,'3429','Ampudia','AMPUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(971,'41482','Ampuria Brava','AMPURIA BRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(972,'25935','Amqui','AMQUI',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(973,'10651','Amravati','AMRAVATI',NULL,'','India','Amravati',5,0,101,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(974,'10665','Amritsar','AMRITSAR',NULL,'','India','Amritsar Trip Package | Amritsar Tour & Travel Pac',19,0,101,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(975,'7498','Amroth','AMROTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(976,'40790','Amrum','AMRUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(977,'38053','Amsteg','AMSTEG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(978,'14620','Amstelveen','AMSTELVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(979,'14621','Amsterdam','AMSTERDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(980,'16111','Anaa','ANAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(981,'11558','Anacapri','ANACAPRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(982,'41116','Anaco','ANACO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(983,'27931','Anaconda','ANACONDA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(984,'31430','Anacortes','ANACORTES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(985,'19193','Anacostia','ANACOSTIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(986,'32872','Anadarko','ANADARKO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(987,'15773','Anadia','ANADIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(988,'16316','Anadyr','ANADYR',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(989,'11559','Anagni','ANAGNI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(990,'18259','Anaheim','ANAHEIM',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(991,'25387','Anahim Lake','ANAHIM LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(992,'19975','Anahola','ANAHOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(993,'17554','Anaktuvuk Pass','ANAKTUVUK PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(994,'39434','Analalava','ANALALAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(995,'9425','Analipsi','ANALIPSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(996,'29802','Analomink','ANALOMINK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(997,'20153','Anamosa','ANAMOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(998,'17299','Anamur','ANAMUR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(999,'16242','Anapa','ANAPA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1000,'41976','Anapolis','ANAPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1001,'28492','Anapra','ANAPRA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1002,'38728','Anascaul','ANASCAUL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1003,'15736','Anasco','ANASCO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1004,'32307','Anatom','ANATOM',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1005,'24965','Anavilhanas Archipelago','ANAVILHANAS ARCHIPELAGO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1006,'9636','Anavyssos','ANAVYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1007,'34433','Ancaster','ANCASTER',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1008,'6380','Ancelle','ANCELLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1009,'6209','Ancenis','ANCENIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1010,'5708','Anchamps','ANCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1011,'21970','Anchor Bay Harbor','ANCHOR BAY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1012,'17556','Anchorage','ANCHORAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1013,'25936','Ancienne Lorette','ANCIENNE LORETTE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1014,'12789','Ancona','ANCONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1015,'23477','Ancud','ANCUD',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1016,'38069','Andalo','ANDALO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1017,'14905','Andalsnes','ANDALSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1018,'17827','Andalusia','ANDALUSIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1019,'37713','Andapa','ANDAPA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1020,'39563','Andebu','ANDEBU',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1021,'14912','Andenes','ANDENES',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1022,'24706','Andenne','ANDENNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1023,'23119','Andermatt','ANDERMATT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1024,'37534','Andernos-les-bains','ANDERNOS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1025,'30284','Anderson','ANDERSON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1026,'16717','Anderstorp','ANDERSTORP',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1027,'4659','Andilly','ANDILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1028,'32154','Andizhan','ANDIZHAN',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1029,'39138','Andlau','ANDLAU',NULL,'','France','',0,0,76,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1030,'41887','Andoany','ANDOANY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1031,'35452','Andora','ANDORA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1032,'25871','Andorra','ANDORRA',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1033,'2506','Andorra','ANDORRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1034,'7499','Andover','ANDOVER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1035,'21296','Andover','ANDOVER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1036,'38290','Andraitx','ANDRAITX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1037,'42428','Andratx','ANDRATX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1038,'39300','Andreas','ANDREAS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1039,'21630','Andrews','ANDREWS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1040,'6567','Andrezieux','ANDREZIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1041,'41597','Andrezieux-boutheon','ANDREZIEUX-BOUTHEON',NULL,'','France','',0,0,76,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1042,'37780','Andriamena','ANDRIAMENA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1043,'3074','Andrin','ANDRIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1044,'42674','Andritsena','ANDRITSENA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1045,'9426','Andros','ANDROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1046,'24873','Andros Island','ANDROS ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1047,'3175','Andujar','ANDUJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1048,'5883','Anduze','ANDUZE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1049,'32216','Anegada Island','ANEGADA ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1050,'43734','Angamali','ANGAMALI',NULL,'','India','',0,0,101,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1051,'10','Angaston','ANGASTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1052,'28493','Angel Fire','ANGEL FIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1053,'15438','Angeles','ANGELES',NULL,'','Philippines','',0,0,173,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1054,'16859','Angelholm','ANGELHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1055,'28610','Angelica','ANGELICA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1056,'18261','Angels Camp','ANGELS CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1057,'38561','Anger','ANGER',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1058,'37840','Anger','ANGER',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1059,'11560','Angera','ANGERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1060,'6210','Angers','ANGERS',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1061,'36226','Angers-beaucouze','ANGERS-BEAUCOUZE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1062,'4660','Angerville','ANGERVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1063,'10138','Anggi','ANGGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1064,'11561','Anghiari','ANGHIARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1065,'42533','Angistri','ANGISTRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1066,'38595','Angkhang','ANGKHANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1067,'5286','Anglards-de-saint-flour','ANGLARDS-DE-SAINT-FLOUR',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1068,'40647','Anglès','ANGLÈS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1069,'26480','Anglesea','ANGLESEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1070,'5141','Anglet','ANGLET',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1071,'30443','Angleton','ANGLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1072,'34434','Angling Lake','ANGLING LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1073,'20818','Angola','ANGOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1074,'17558','Angoon','ANGOON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1075,'4876','Angouleme','ANGOULEME',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1076,'4113','Angoulins','ANGOULINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1077,'16089','Angra Do Heroismo','ANGRA DO HEROISMO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1078,'25129','Angra Dos Reis','ANGRA DOS REIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1079,'24365','Angrmuende','ANGRMUENDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1080,'25866','Anguilla','ANGUILLA',NULL,'','Anguilla','',0,0,7,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1081,'11562','Anguillara Sabazia','ANGUILLARA SABAZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1082,'18262','Angwin','ANGWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1083,'24366','Anhalt','ANHALT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1084,'40967','Anhee','ANHEE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1085,'17559','Aniak','ANIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1086,'24544','Anif','ANIF',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1087,'43128','Anissaras','ANISSARAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1088,'32308','Aniwa','ANIWA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1089,'39066','Anjajavy','ANJAJAVY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1090,'3882','Anjalankoski','ANJALANKOSKI',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1091,'23767','Anji','ANJI',NULL,'','China','',0,0,46,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1092,'42862','Anjo','ANJO',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1093,'25937','Anjou','ANJOU',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1094,'24138','Anjouan','ANJOUAN',NULL,'','Comoros','',0,0,50,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1095,'10489','Anjuna','ANJUNA',NULL,'','India','',0,0,101,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1097,'23936','Ankang','ANKANG',NULL,'','China','',0,0,46,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1098,'17371','Ankara','ANKARA',NULL,'','Turkey','Ankara',0,0,222,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1099,'37547','Ankavandra','ANKAVANDRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1100,'38071','Ankazoabo','ANKAZOABO',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1101,'20154','Ankeny','ANKENY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1102,'42609','Ankleshwar','ANKLESHWAR',NULL,'','India','Ankleshwar',16,0,101,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1104,'498','Ankum','ANKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1105,'21971','Ann Arbor','ANN ARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1106,'20427','Anna','ANNA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1107,'35893','Anna Bay','ANNA BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1108,'38450','Annaba','ANNABA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1109,'37821','Annaberg','ANNABERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1110,'22481','Annaberg','ANNABERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1111,'44115','Annaberg-buchholz','ANNABERG-BUCHHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1112,'7500','Annalong','ANNALONG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1113,'7501','Annan','ANNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1114,'31030','Annandale','ANNANDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1115,'27572','Annapolis','ANNAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1116,'25691','Annapolis Royal','ANNAPOLIS ROYAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1117,'20428','Annawan','ANNAWAN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1118,'7502','Annbank','ANNBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1119,'6568','Annecy','ANNECY',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1120,'6569','Annecy-le-vieux','ANNECY-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1121,'5079','Annemasse','ANNEMASSE',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1122,'26650','Annerley','ANNERLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1123,'6876','Annesley Woodhouse','ANNESLEY WOODHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1124,'17828','Anniston','ANNISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1125,'6570','Annonay','ANNONAY',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1126,'40319','Annot','ANNOT',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1127,'11563','Annunziata','ANNUNZIATA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1128,'29803','Annville','ANNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1129,'37908','Anogia','ANOGIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1130,'22306','Anoka','ANOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1131,'19248','Anona','ANONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1132,'23671','Anqing','ANQING',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1133,'2335','Ans','ANS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1134,'41844','Ansalonga','ANSALONGA',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1135,'24367','Ansbach','ANSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1136,'13571','Anse Cochon','ANSE COCHON',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1137,'9359','Anse De Toiny','ANSE DE TOINY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1138,'41885','Anse La Raie','ANSE LA RAIE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1139,'35453','Ansedonia','ANSEDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1140,'37337','Ansfelden','ANSFELDEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1141,'23782','Anshan','ANSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1142,'36013','Anshun','ANSHUN',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1143,'29235','Ansonia','ANSONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1144,'31944','Ansted','ANSTED',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1145,'7503','Anstruther','ANSTRUTHER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1146,'6877','Ansty (Dorset)','ANSTY (DORSET)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1147,'867','Anta','ANTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1148,'13059','Antagnod','ANTAGNOD',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1149,'36800','Antakya','ANTAKYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1150,'37906','Antalaha','ANTALAHA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1151,'17249','Antalya','ANTALYA',NULL,'','Turkey','Antalya',0,0,222,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1152,'37480','Antananarivo','ANTANANARIVO',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1153,'2461','Antequera','ANTEQUERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1154,'12861','Anterselva','ANTERSELVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1155,'18099','Anthem','ANTHEM',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1156,'27155','Anthering','ANTHERING',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1157,'21019','Anthony','ANTHONY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1158,'4843','Antibes','ANTIBES',NULL,'','France','',0,0,76,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1159,'40002','Anticoli Corrado','ANTICOLI CORRADO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1160,'31683','Antigo','ANTIGO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1161,'25692','Antigonish','ANTIGONISH',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1162,'3109','Antigua','ANTIGUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1163,'26161','Antigua','ANTIGUA',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1164,'9869','Antigua Guatemala','ANTIGUA GUATEMALA',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1165,'35855','Antigua-deep Bay','ANTIGUA-DEEP BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1166,'35857','Antigua-five Islands','ANTIGUA-FIVE ISLANDS',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1167,'35858','Antigua-jolly Beach','ANTIGUA-JOLLY BEACH',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1168,'35860','Antigua-momora Bay','ANTIGUA-MOMORA BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1169,'35862','Antigua-soldiers Bay','ANTIGUA-SOLDIERS BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1170,'35863','Antigua-winthrop Bay','ANTIGUA-WINTHROP BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1171,'5433','Antilly','ANTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1172,'33300','Antimony','ANTIMONY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1173,'23902','Anting','ANTING',NULL,'','China','',0,0,46,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1174,'18263','Antioch','ANTIOCH',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1175,'24125','Antioquia','ANTIOQUIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1176,'38274','Antiparos','ANTIPAROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1177,'32873','Antlers','ANTLERS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1178,'23509','Antofagasta','ANTOFAGASTA',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1179,'15351','Anton','ANTON',NULL,'','Panama','',0,0,169,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1180,'14114','Anton Lizardo','ANTON LIZARDO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1181,'34700','Antonito','ANTONITO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1182,'5142','Antonne-et-trigonant','ANTONNE-ET-TRIGONANT',NULL,'','France','',0,0,76,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1183,'4661','Antony','ANTONY',NULL,'','France','',0,0,76,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1184,'9250','Antrim','ANTRIM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1185,'39397','Antsalova','ANTSALOVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1186,'39119','Antsirabe','ANTSIRABE',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1187,'39713','Antsiranana','ANTSIRANANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1188,'40626','Antsohihy','ANTSOHIHY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1189,'24604','Antwerp','ANTWERP',NULL,'','Belgium','Antwerp',0,0,21,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1190,'13604','Anuradhapura','ANURADHAPURA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1191,'17560','Anvik','ANVIK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1192,'6145','Anvin','ANVIN',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1193,'43816','Anyang','ANYANG',NULL,'','China','',0,0,46,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1194,'35349','Anyer','ANYER',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1195,'40578','Anzère','ANZÈRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1196,'6146','Anzin-saint-aubin','ANZIN-SAINT-AUBIN',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1197,'11564','Anzio','ANZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1198,'11565','Anzola Dell\'emilia','ANZOLA DELL\'EMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1199,'16966','Ao Namao','AO NAMAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1200,'43517','Aoa','AOA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1201,'13380','Aomori','AOMORI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1202,'42291','Aore Island','AORE ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1203,'12870','Aosta','AOSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1204,'23951','Aotou','AOTOU',NULL,'','China','',0,0,46,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1205,'6571','Aouste-sur-sye','AOUSTE-SUR-SYE',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1206,'32247','Ap Binh Quooi','AP BINH QUOOI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1207,'18100','Apache Junction','APACHE JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1208,'19249','Apalachicola','APALACHICOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1209,'28611','Apalachin','APALACHIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1210,'10140','Apalapsili','APALAPSILI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1211,'24088','Apartado','APARTADO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1212,'16112','Apataki','APATAKI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1213,'43950','Apazapan','APAZAPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1214,'14525','Apeldoorn','APELDOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1215,'40349','Apelern','APELERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1216,'39662','Aperion','APERION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1217,'33758','Apex','APEX',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1218,'24368','Apfelstaedt','APFELSTAEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1219,'32340','Apia','APIA',NULL,'','Samoa','',0,0,183,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1220,'38363','Apikia','APIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1221,'14064','Apizaco','APIZACO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1222,'14055','Apodaca','APODACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1223,'1957','Apolda','APOLDA',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1224,'29804','Apollo','APOLLO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1225,'26883','Apollo Bay','APOLLO BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1226,'19251','Apopka','APOPKA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1227,'23537','Apoquindo','APOQUINDO',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1228,'43951','Apozol','APOZOL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1229,'31031','Appalachian Plateau','APPALACHIAN PLATEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1230,'23120','Appenzell','APPENZELL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1231,'37972','Appiano Gentile','APPIANO GENTILE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1232,'37759','Appietto','APPIETTO',NULL,'','France','',0,0,76,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1233,'6878','Appin','APPIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1234,'18264','Apple Valley','APPLE VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1235,'7505','Appleby','APPLEBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1236,'6879','Appledore','APPLEDORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1237,'18265','Applegate','APPLEGATE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1238,'31684','Appleton','APPLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1239,'5434','Appoigny','APPOIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1240,'31032','Appomattox','APPOMATTOX',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1241,'11566','Aprica','APRICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1242,'11567','Apricale','APRICALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1243,'11568','Aprilia','APRILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1244,'43876','Apt','APT',NULL,'','France','',0,0,76,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1245,'18266','Aptos','APTOS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1246,'42197','Apucarana','APUCARANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1247,'15878','Apulia','APULIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1248,'25069','Aquidauana','AQUIDAUANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1249,'38750','Aquileia','AQUILEIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1250,'43164','Aquiraz','AQUIRAZ',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1251,'17829','Arab','ARAB',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1252,'11109','Arabba','ARABBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1253,'28495','Arabela','ARABELA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1254,'21164','Arabi','ARABI',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1255,'25226','Aracaju','ARACAJU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1256,'25054','Aracati','ARACATI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1257,'25027','Aracatuba','ARACATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1258,'3176','Aracena','ARACENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1259,'9784','Arachova','ARACHOVA',NULL,'','Greece','Arachova',0,0,86,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1260,'16207','Arad','ARAD',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1261,'11028','Arad','ARAD',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1262,'25061','Araguaina','ARAGUAINA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1263,'42284','Arakabesang','ARAKABESANG',NULL,'','Palau','',0,0,167,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1264,'13220','Arakawa','ARAKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1265,'43735','Araku','ARAKU',NULL,'','India','',0,0,101,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1266,'26380','Aramac','ARAMAC',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1267,'38395','Aranc','ARANC',NULL,'','France','',0,0,76,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1268,'3430','Aranda De Duero','ARANDA DE DUERO',NULL,'','Spain','Aranda de Duero',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1269,'24233','Aranjuez','ARANJUEZ',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1270,'2977','Aranjuez','ARANJUEZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1271,'24950','Aranjuez','ARANJUEZ',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1272,'43569','Arans','ARANS',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1273,'30446','Aransas Pass','ARANSAS PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1274,'2508','Arantzazu','ARANTZAZU',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1275,'13457','Aranuka','ARANUKA',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1276,'34701','Arapaho','ARAPAHO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1277,'962','Arapongas','ARAPONGAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1278,'16486','Arar','ARAR',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1279,'25194','Araraquara','ARARAQUARA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1280,'26481','Ararat','ARARAT',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1281,'24098','Arauca','ARAUCA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1282,'2978','Aravaca','ARAVACA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1283,'25079','Araxa','ARAXA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1284,'3837','Arba Mintch','ARBA MINTCH',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1285,'40981','Arbanasi','ARBANASI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1286,'37385','Arbanija','ARBANIJA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1287,'12812','Arbatax','ARBATAX',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1288,'6572','Arbigny','ARBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1289,'38079','Arboga','ARBOGA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1290,'5762','Arbois','ARBOIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1291,'23121','Arbon','ARBON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1292,'38515','Arbonne','ARBONNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1293,'26813','Arbor','ARBOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1294,'12813','Arborea','ARBOREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1295,'7507','Arbroath','ARBROATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1296,'42786','Arbus','ARBUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1297,'4114','Arc 1800','ARC 1800',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1298,'4116','Arc-1600','ARC-1600',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1299,'4117','Arc-2000','ARC-2000',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1300,'5143','Arcachon','ARCACHON',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1301,'41390','Arcade','ARCADE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1302,'19252','Arcadia','ARCADIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1303,'32434','Arcadia','ARCADIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1304,'5144','Arcangues','ARCANGUES',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1305,'18268','Arcata','ARCATA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1306,'11569','Arce','ARCE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1307,'39469','Arcen','ARCEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1308,'1590','Arc-en-barrois','ARC-EN-BARROIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1309,'29608','Arch Cape','ARCH CAPE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1310,'6573','Archamps','ARCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1311,'9428','Archanes','ARCHANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1312,'9429','Archangelos','ARCHANGELOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1313,'37190','Archbald','ARCHBALD',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1314,'33759','Archdale','ARCHDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1315,'3028','Archena','ARCHENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1316,'5287','Arches','ARCHES',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1317,'3177','Archidona','ARCHIDONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1318,'11570','Arcidosso','ARCIDOSSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1319,'11571','Arco','ARCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1320,'11572','Arcola','ARCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1321,'20430','Arcola','ARCOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1322,'3178','Arcos De La Frontera','ARCOS DE LA FRONTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1323,'40708','Arcos De Valdevez','ARCOS DE VALDEVEZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1324,'9430','Arcoudi','ARCOUDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1325,'25785','Arctic Bay','ARCTIC BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1326,'17561','Arctic Village','ARCTIC VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1327,'4662','Arcueil','ARCUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1328,'11573','Arcugnano','ARCUGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1329,'3179','Ardales','ARDALES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1330,'36467','Ardalstangan','ARDALSTANGAN',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1331,'42403','Ardalstangen','ARDALSTANGEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1332,'41490','Ardara','ARDARA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1333,'11574','Ardea','ARDEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1334,'4118','Ardeche','ARDECHE',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1335,'33760','Arden','ARDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1336,'2234','Arden','ARDEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1337,'6880','Arden','ARDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1338,'4119','Ardennes','ARDENNES',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1339,'39144','Ardersier','ARDERSIER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1340,'11575','Ardesio','ARDESIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1341,'40465','Ardez','ARDEZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1342,'39639','Ardgay','ARDGAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1343,'37355','Ardgour','ARDGOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1344,'7508','Ardley','ARDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1345,'10935','Ardmore','ARDMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1346,'15084','Ardmore','ARDMORE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1347,'32874','Ardmore','ARDMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1348,'5616','Ardon','ARDON',NULL,'','France','',0,0,76,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1349,'7509','Ardrishaig','ARDRISHAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1350,'39266','Ardrossan','ARDROSSAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1351,'7510','Ardsley','ARDSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1352,'28612','Ardsley','ARDSLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1353,'6881','Arduaine','ARDUAINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1354,'6882','Arduanine','ARDUANINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1355,'16708','Are','ARE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1356,'39145','Areatza','AREATZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1357,'15737','Arecibo','ARECIBO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1358,'16090','Areeiro','AREEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1359,'39703','Arembepe','AREMBEPE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1360,'24208','Arenal','ARENAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1361,'42740','Arenal D\'en Castell','ARENAL D\'EN CASTELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1362,'3180','Arenas','ARENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1363,'14856','Arendal','ARENDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1364,'751','Arendsee','ARENDSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1365,'38840','Arenys De Mar','ARENYS DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1366,'11576','Arenzano','ARENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1367,'42526','Areopoli','AREOPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1368,'15432','Arequipa','AREQUIPA',NULL,'','Peru','Arequipa',0,0,172,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1369,'4120','Arès','ARÈS',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1370,'11577','Arese','ARESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1371,'37221','Arette','ARETTE',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1372,'2870','Areu','AREU',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1373,'12852','Arezzo','AREZZO',NULL,'','Italy','Arezzo',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1374,'2979','Arganda','ARGANDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1375,'2509','Arganzuela','ARGANZUELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1376,'9431','Argassi','ARGASSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1377,'11578','Argegno','ARGEGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1378,'4121','Argeles Gazost','ARGELES GAZOST',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1379,'42733','Argeles-gazost','ARGELES-GAZOST',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1380,'5884','Argeles-sur-mer','ARGELES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1381,'5362','Argentan','ARGENTAN',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1382,'11111','Argentario','ARGENTARIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1383,'5989','Argentat','ARGENTAT',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1384,'4663','Argenteuil','ARGENTEUIL',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1385,'6814','Argentiere','ARGENTIERE',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1386,'3513','Argentona','ARGENTONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1387,'5885','Argilliers','ARGILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1388,'37331','Argiroupoli','ARGIROUPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1389,'3698','Argomaniz','ARGOMANIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1390,'39362','Argonay','ARGONAY',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1391,'38289','Argonos','ARGONOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1392,'9789','Argos','ARGOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1393,'43412','Argostoli','ARGOSTOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1394,'9779','Argostolion','ARGOSTOLION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1395,'2510','Arguelles - Moncloa','ARGUELLES - MONCLOA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1396,'2511','Arguineguin','ARGUINEGUIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1397,'3312','Arguis','ARGUIS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1398,'43402','Argyll','ARGYLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1399,'9433','Arhanes','ARHANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1400,'11579','Ariano Irpino','ARIANO IRPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1401,'23478','Arica','ARICA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1402,'35454','Ariccia','ARICCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1403,'25693','Arichat','ARICHAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1404,'35409','Ariel','ARIEL',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1405,'39940','Arilas','ARILAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1406,'16860','Arild','ARILD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1407,'17125','Arima','ARIMA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1408,'13221','Arima Hot Springs','ARIMA HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1409,'25874','Arinsal','ARINSAL',NULL,'','Andorra','',0,0,5,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1410,'25070','Aripuana','ARIPUANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1411,'7511','Arisaig','ARISAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1412,'12814','Aritzo','ARITZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1413,'2512','Arizkun','ARIZKUN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1414,'16783','Arjang','ARJANG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1415,'17978','Arkadelphia','ARKADELPHIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1416,'38489','Arkadi','ARKADI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1417,'21020','Arkansas City','ARKANSAS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1418,'42906','Arkaroola','ARKAROOLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1419,'9798','Arkasa','ARKASA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1420,'31686','Arkdale','ARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1421,'16252','Arkhangelsk','ARKHANGELSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1422,'10955','Arklow','ARKLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1423,'36375','Arkoudi','ARKOUDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1424,'16658','Arlanda','ARLANDA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1425,'41061','Arlandastad','ARLANDASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1426,'6381','Arles','ARLES',NULL,'','France','',0,0,76,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1427,'38612','Arlesheim','ARLESHEIM',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1428,'33067','Arlington','ARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1429,'24691','Arlon','ARLON',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1430,'11580','Arluno','ARLUNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1431,'35455','Arma Di Taggia','ARMA DI TAGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1432,'15919','Armacao De Pera','ARMACAO DE PERA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1433,'36584','Armacao-porches','ARMACAO-PORCHES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1434,'26482','Armadale','ARMADALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1435,'40695','Armagh','ARMAGH',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1436,'7512','Armagh','ARMAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1437,'37545','Armamar','ARMAMAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1438,'6147','Armbouts-cappel','ARMBOUTS-CAPPEL',NULL,'','France','',0,0,76,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1439,'44170','Armeni','ARMENI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1440,'24120','Armenia','ARMENIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1441,'9638','Armenistis','ARMENISTIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1442,'11581','Armeno','ARMENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1443,'40366','Armeria','ARMERIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1444,'34081','Armidale','ARMIDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1445,'3181','Armilla','ARMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1446,'3699','Arminza','ARMINZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1447,'28613','Armonk','ARMONK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1448,'39359','Armuña De Almanzora','ARMUÑA DE ALMANZORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1449,'6211','Arnage','ARNAGE',NULL,'','France','',0,0,76,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1450,'21166','Arnaudville','ARNAUDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1451,'17261','Arnavutkoy','ARNAVUTKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1452,'5435','Arnay-le-duc','ARNAY-LE-DUC',NULL,'','France','',0,0,76,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1453,'37889','Arnaz','ARNAZ',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1454,'34082','Arncliffe','ARNCLIFFE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1455,'6884','Arncott','ARNCOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1456,'43057','Arnea','ARNEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1457,'39494','Arneburg','ARNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1458,'2957','Arnedillo','ARNEDILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1459,'2958','Arnedo','ARNEDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1460,'25579','Arnes','ARNES',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1461,'3514','Arnes','ARNES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1462,'40337','Arnesano','ARNESANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1463,'14526','Arnhem','ARNHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1464,'43686','Arnhem Island','ARNHEM ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1465,'6885','Arniston','ARNISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1466,'14145','Arno','ARNO',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1467,'7513','Arnold','ARNOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1468,'21635','Arnold','ARNOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1469,'20155','Arnolds Park','ARNOLDS PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1470,'34435','Arnprior','ARNPRIOR',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1471,'22690','Arnsberg','ARNSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1472,'1958','Arnstadt','ARNSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1473,'40359','Arnuero','ARNUERO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1474,'23122','Arolla','AROLLA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1475,'12934','Arona','ARONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1476,'3356','Arona','ARONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1477,'13458','Arorae Island','ARORAE ISLAND',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1478,'24074','Arorangi','ARORANGI',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1479,'23123','Arosa','AROSA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1480,'42698','Arouca','AROUCA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1481,'17128','Arouca','AROUCA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1482,'4122','Arpaillargues','ARPAILLARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1483,'5288','Arpajon-sur-cere','ARPAJON-SUR-CERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1484,'11582','Arpino','ARPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1485,'26173','Arrabury','ARRABURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1486,'39392','Arraial Dajuda','ARRAIAL DAJUDA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1487,'15911','Arraiolos','ARRAIOLOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1488,'37218','Arranmore Island','ARRANMORE ISLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1489,'5013','Arras','ARRAS',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1490,'6886','Arrathorne','ARRATHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1491,'11583','Arre','ARRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1492,'5027','Arreau','ARREAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1493,'3357','Arrecife','ARRECIFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1494,'40596','Arriate','ARRIATE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1495,'3075','Arriondas','ARRIONDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1496,'7514','Arrochar','ARROCHAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1497,'5363','Arromanches-les-bains','ARROMANCHES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1498,'3515','Arros','ARROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1499,'15085','Arrowtown','ARROWTOWN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1500,'3431','Arroyo','ARROYO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1501,'18270','Arroyo Grande','ARROYO GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1502,'38068','Arroyo Seco','ARROYO SECO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1503,'6320','Ars-en-re','ARS-EN-RE',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1504,'16735','Arsta','ARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1505,'9854','Arsuk','ARSUK',NULL,'','Greenland','',0,0,87,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1506,'9769','Arta','ARTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1507,'2881','Arta','ARTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1508,'10091','Artand','ARTAND',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1509,'34083','Artarmon','ARTARMON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1510,'13958','Arteaga','ARTEAGA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1511,'2946','Arteixo','ARTEIXO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1512,'42315','Artena','ARTENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1513,'18271','Artesia','ARTESIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1514,'17562','Artesian Village','ARTESIAN VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1515,'20432','Arthur','ARTHUR',NULL,'','United States','',0,0,231,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1516,'15179','Arthur\'s Pass','ARTHUR\'S PASS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1517,'24823','Arthurs Town','ARTHURS TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1518,'10707','Arthurstown','ARTHURSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1519,'3516','Arties','ARTIES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1520,'17526','Artigas','ARTIGAS',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1521,'41588','Artigues','ARTIGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1522,'43877','Artigues-pres-bordeaux','ARTIGUES-PRES-BORDEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1523,'11584','Artimino','ARTIMINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1524,'2513','Arturo Soria - Ciudad Lineal','ARTURO SORIA - CIUDAD LINEAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1525,'43618','Artvin','ARTVIN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1526,'17476','Arua','ARUA',NULL,'','Uganda','',0,0,226,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1527,'1','Aruba','ARUBA',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1528,'34832','Aruba-druif Beach','ARUBA-DRUIF BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1529,'34833','Aruba-eagle Beach','ARUBA-EAGLE BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1530,'16153','Arue','ARUE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1531,'9276','Arundel','ARUNDEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1532,'16968','Arunothai Beach','ARUNOTHAI BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1533,'17453','Arusha','ARUSHA',NULL,'','Tanzania','Arusha',0,0,214,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1534,'24066','Arutanga','ARUTANGA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1535,'16113','Arutua','ARUTUA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1536,'34702','Arvada','ARVADA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1537,'43878','Arveyres','ARVEYRES',NULL,'','France','',0,0,76,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1538,'25786','Arviat','ARVIAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1539,'16748','Arvidsjaur','ARVIDSJAUR',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1540,'6382','Arvieux','ARVIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1541,'16784','Arvika','ARVIKA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1542,'9639','Aryiroupolis','ARYIROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1543,'12759','Arzachena','ARZACHENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1544,'42701','Arzano','ARZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1545,'23124','Arzier','ARZIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1546,'12','Arzl Im Piztal','ARZL IM PIZTAL',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1547,'5511','Arzon','ARZON',NULL,'','France','',0,0,76,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1548,'43781','As','AS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1549,'13222','Asahi','ASAHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1550,'13388','Asahikawa','ASAHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1551,'43901','Asakura','ASAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1552,'35794','Asan','ASAN',NULL,'','South Korea','',0,0,197,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1553,'16709','Asarna','ASARNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1554,'32336','Asau','ASAU',NULL,'','Samoa','',0,0,183,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1555,'25938','Asbestos Hill','ASBESTOS HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1556,'31945','Asbury','ASBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1557,'5145','Ascain','ASCAIN',NULL,'','France','',0,0,76,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1558,'38388','Ascea','ASCEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1559,'22691','Aschaffenburg','ASCHAFFENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1560,'694','Aschau','ASCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1561,'695','Ascheberg','ASCHEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1562,'1921','Aschersleben','ASCHERSLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1563,'22692','Aschheim','ASCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1564,'11112','Asciano','ASCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1565,'26098','Ascochinga','ASCOCHINGA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1566,'12982','Ascoli Piceno','ASCOLI PICENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1567,'23125','Ascona','ASCONA',NULL,'','Switzerland','Ascona',0,0,210,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1568,'26949','Ascot','ASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1569,'7515','Ascot','ASCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1570,'31289','Ascutney','ASCUTNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1571,'3838','Asela','ASELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1572,'499','Asendorf','ASENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1573,'15017','Aseral','ASERAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1574,'24246','Aserri','ASERRI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1575,'14784','Asgardstrand','ASGARDSTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1576,'18101','Ash Fork','ASH FORK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1577,'7517','Ashbourne','ASHBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1578,'10908','Ashbourne','ASHBOURNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1579,'40911','Ashbourne, Co Meath','ASHBOURNE, CO MEATH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1580,'31035','Ashburn','ASHBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1581,'21298','Ashburnham','ASHBURNHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1582,'7518','Ashburton','ASHBURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1583,'15087','Ashburton','ASHBURTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1584,'7519','Ashby De La Zouch','ASHBY DE LA ZOUCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1585,'44183','Ashby-de-la-zouch','ASHBY-DE-LA-ZOUCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1586,'24','Ashcroft','ASHCROFT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1587,'11062','Ashdod','ASHDOD',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1588,'17979','Ashdown','ASHDOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1589,'33761','Asheboro','ASHEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1590,'33762','Asheville','ASHEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1591,'34084','Ashfield','ASHFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1592,'7520','Ashford','ASHFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1593,'31433','Ashford','ASHFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1594,'38360','Ashford','ASHFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1595,'17108','Ashgabat','ASHGABAT',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1596,'26652','Ashgrove','ASHGROVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1597,'38437','Ashigarashimo','ASHIGARASHIMO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1598,'7521','Ashington','ASHINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1599,'13223','Ashiya','ASHIYA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1600,'11029','Ashkelon','ASHKELON',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1601,'17105','Ashkhabad','ASHKHABAD',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1602,'34074','Ashland','ASHLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1603,'26653','Ashmore','ASHMORE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1604,'29237','Ashtabula','ASHTABULA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1605,'20327','Ashton','ASHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1606,'7522','Ashton In Makerfield','ASHTON IN MAKERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1607,'6887','Ashton-under-lyne','ASHTON-UNDER-LYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1608,'32161','Ashtown','ASHTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1609,'39895','Ashville','ASHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1610,'11585','Asiago','ASIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1611,'41400','Asilah','ASILAH',NULL,'','Morocco','',0,0,148,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1612,'14842','Asker','ASKER',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1613,'16758','Askersund','ASKERSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1614,'14959','Askim','ASKIM',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1615,'7523','Askrigg','ASKRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1616,'2458','Asmara','ASMARA',NULL,'','Eritrea','',0,0,68,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1617,'5436','Asnieres','ASNIERES',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1618,'6321','Asnieres-sur-nouere','ASNIERES-SUR-NOUERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1619,'43879','Asnieres-sur-seine','ASNIERES-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1620,'42863','Aso','ASO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1621,'11586','Asolo','ASOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1622,'3839','Asosa','ASOSA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1623,'7524','Aspatria','ASPATRIA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1624,'34703','Aspen','ASPEN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1625,'22482','Asperg','ASPERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1626,'37185','Aspermont','ASPERMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1627,'37870','Aspers','ASPERS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1628,'43307','Aspin En Lavedan','ASPIN EN LAVEDAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1629,'5028','Aspin-en-lavedan','ASPIN-EN-LAVEDAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1630,'7525','Aspley Guise','ASPLEY GUISE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1631,'11114','Aspra','ASPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1632,'39299','Asprangeloi','ASPRANGELOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1633,'37339','Aspres-sur-buech','ASPRES-SUR-BUECH',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1634,'9640','Asprovalta','ASPROVALTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1635,'38777','Assaf Harofeh','ASSAF HAROFEH',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1636,'11115','Assago','ASSAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1637,'12815','Assemini','ASSEMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1638,'14492','Assen','ASSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1639,'2185','Assens','ASSENS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1640,'11116','Assenza Di Brenzone','ASSENZA DI BRENZONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1641,'6281','Assevillers','ASSEVILLERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1642,'22936','Assiniboia','ASSINIBOIA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1643,'11587','Assisi','ASSISI',NULL,'','Italy','Assisi',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1644,'35466','Assisi-bettona','ASSISI-BETTONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1645,'2416','Assiut','ASSIUT',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1646,'24369','Assmannshausen','ASSMANNSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1647,'37734','Assos','ASSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1648,'36801','Assos','ASSOS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1649,'42525','Astakos','ASTAKOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1650,'13435','Astana','ASTANA',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1651,'14588','Asten','ASTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1652,'12798','Asti','ASTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1653,'6888','Aston','ASTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1654,'29805','Aston Mills','ASTON MILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1655,'37216','Astor','ASTOR',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1656,'3432','Astorga','ASTORGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1657,'28615','Astoria','ASTORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1658,'16306','Astrakhan','ASTRAKHAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1659,'43058','Astros','ASTROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1660,'1414','Asturias','ASTURIAS',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1661,'42524','Astypalaia','ASTYPALAIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1662,'43177','Asuncion','ASUNCION',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1663,'16108','Asuncion','ASUNCION',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1664,'2454','Aswan','ASWAN',NULL,'','Egypt','Aswan',0,0,65,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1665,'10348','Atambua','ATAMBUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1666,'13224','Atami','ATAMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1667,'32345','Ataq','ATAQ',NULL,'','Yemen','',0,0,240,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1668,'3182','Atarfe','ATARFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1669,'18273','Atascadero','ATASCADERO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1670,'30448','Atascosa','ATASCOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1671,'36795','Atata Island','ATATA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1672,'17196','Ataturk International Airport (Ist)','ATATURK INTERNATIONAL AIRPORT (IST)',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1673,'21022','Atchison','ATCHISON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1674,'15403','Ate','ATE',NULL,'','Peru','',0,0,172,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1675,'11588','Atena Lucana','ATENA LUCANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1676,'24195','Atenas','ATENAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1677,'25269','Athabasca','ATHABASCA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1678,'40479','Athboy','ATHBOY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1679,'41968','Athenry','ATHENRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1680,'9434','Athens','ATHENS',NULL,'','Greece','Athens',0,0,86,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1681,'28616','Athens','ATHENS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1682,'7527','Atherstone','ATHERSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1683,'18274','Atherton','ATHERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1684,'26654','Atherton','ATHERTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1685,'6889','Atherton','ATHERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1686,'39378','Athirapally','ATHIRAPALLY',NULL,'','India','Athirappilly',3,0,101,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1687,'4664','Athis-mons','ATHIS-MONS',NULL,'','France','',0,0,76,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1688,'10942','Athlone','ATHLONE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1689,'20328','Athol','ATHOL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1690,'34383','Atholville','ATHOLVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1691,'42610','Athoor','ATHOOR',NULL,'','India','',0,0,101,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1692,'44316','Athos','ATHOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1693,'44252','Athuruga','ATHURUGA',NULL,'','Maldives','',0,0,133,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1694,'10886','Athy','ATHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1695,'25195','Atibaia','ATIBAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1696,'34437','Atikokan','ATIKOKAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1697,'41753','Atitlan','ATITLAN',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1698,'24067','Atiu','ATIU',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1699,'14104','Atizapan De Zaragoza','ATIZAPAN DE ZARAGOZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1700,'17563','Atka','ATKA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1701,'31037','Atkins','ATKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1702,'13775','Atlacomulco','ATLACOMULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1703,'37071','Atlandtida','ATLANDTIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1704,'19701','Atlanta','ATLANTA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1705,'36845','Atlanta-hartsfield','ATLANTA-HARTSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1706,'20156','Atlantic','ATLANTIC',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1707,'39079','Atlantida','ATLANTIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1708,'1664','Atlit','ATLIT',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1709,'14065','Atlixco','ATLIXCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1710,'17483','Atman','ATMAN',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1711,'17564','Atmautluak','ATMAUTLUAK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1712,'17833','Atmore','ATMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1713,'16537','Atoifi','ATOIFI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1714,'32876','Atoka','ATOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1715,'14011','Atoyac','ATOYAC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1716,'17565','Atqasuk','ATQASUK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1717,'11117','Atrani','ATRANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1718,'38293','Atri','ATRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1719,'13120','Atsubetsu','ATSUBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1720,'13395','Atsugi','ATSUGI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1721,'17834','Attalla','ATTALLA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1722,'14194','Attard','ATTARD',NULL,'','Malta','',0,0,135,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1723,'34438','Attawapiskat','ATTAWAPISKAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1724,'22693','Attenkirchen','ATTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1725,'27122','Attersee','ATTERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1726,'10490','Attibele','ATTIBELE',NULL,'','India','',0,0,101,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1727,'28617','Attica','ATTICA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1728,'37996','Attigliano','ATTIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1729,'21300','Attleboro','ATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1730,'37476','Attleborough','ATTLEBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1731,'43704','Attwood','ATTWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1732,'16154','Atuona','ATUONA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1733,'13609','Aturuwella','ATURUWELLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1734,'22310','Atwater','ATWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1735,'13436','Atyrau','ATYRAU',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1736,'6383','Aubagne','AUBAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1737,'5886','Aubais','AUBAIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1738,'4123','Aube','AUBE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1739,'6574','Aubenas','AUBENAS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1740,'5709','Auberive','AUBERIVE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1741,'4665','Aubervilliers','AUBERVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1742,'5019','Aubiere','AUBIERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1743,'40141','Aubignan','AUBIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1744,'4124','Aubigné-racan','AUBIGNÉ-RACAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1745,'5617','Aubigny-sur-nere','AUBIGNY-SUR-NERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1746,'17835','Auburn','AUBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1747,'21303','Auburndale','AUBURNDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1748,'5364','Aubusson','AUBUSSON',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1749,'26655','Auchenflower','AUCHENFLOWER',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1750,'7528','Auchterarder','AUCHTERARDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1751,'15180','Auckland','AUCKLAND',NULL,'','New Zealand','Auckland',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1752,'36510','Auckland-manukau','AUCKLAND-MANUKAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1753,'36513','Auckland-takapuna','AUCKLAND-TAKAPUNA',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1754,'9314','Audenshaw','AUDENSHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1755,'5512','Audierne','AUDIERNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1756,'5365','Audrieu','AUDRIEU',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1757,'28189','Audubon','AUDUBON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1758,'22483','Auendorf','AUENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1759,'22484','Auerbach','AUERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1760,'22694','Aufkirchen','AUFKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1761,'5618','Augerville-la-riviere','AUGERVILLE-LA-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1762,'10956','Aughrim','AUGHRIM',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1763,'6016','Augny','AUGNY',NULL,'','France','',0,0,76,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1764,'22695','Augsburg','AUGSBURG',NULL,'','Germany','Augsburg',0,0,83,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1765,'13090','August Town','AUGUST TOWN',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1766,'21976','Augusta','AUGUSTA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1767,'39456','Augusta','AUGUSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1768,'26578','Augusta','AUGUSTA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1769,'2288','Augustenborg','AUGUSTENBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1770,'15681','Augustow','AUGUSTOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1771,'27123','Auhof','AUHOF',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1772,'16538','Auki','AUKI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1773,'25694','Auld Cove','AULD COVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1774,'22485','Aulendorf','AULENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1775,'40506','Auli','AULI',NULL,'','India','Auli',9,0,101,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1776,'11589','Aulla','AULLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1777,'5289','Aulnat','AULNAT',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1778,'43094','Aulnay Sous Bois','AULNAY SOUS BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1779,'4125','Aulnay-sous-bois','AULNAY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1780,'5990','Aulon','AULON',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1781,'38716','Ault','AULT',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1782,'7529','Aultbea','AULTBEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1783,'5793','Aumale','AUMALE',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1784,'5887','Aumont-aubrac','AUMONT-AUBRAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1785,'5619','Aunay-sous-crecy','AUNAY-SOUS-CRECY',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1786,'25939','Aupaluk','AUPALUK',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1787,'6384','Aups','AUPS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1788,'14146','Aur','AUR',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1789,'2072','Aurach','AURACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1790,'10491','Aurangabad','AURANGABAD',NULL,'','India','Aurangabad',5,0,101,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1791,'5513','Auray','AURAY',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1792,'5146','Aureilhan','AUREILHAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1793,'4844','Auribeau-sur-siagne','AURIBEAU-SUR-SIAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1794,'22486','Aurich','AURICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1795,'5290','Aurillac','AURILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1796,'3047','Auritz-burguete','AURITZ-BURGUETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1797,'36469','Aurland','AURLAND',NULL,'','Norway','Aurland',0,0,164,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1798,'6385','Auron','AURON',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1799,'6386','Aurons','AURONS',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1800,'39702','Auronzo Di Cadore','AURONZO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1801,'34705','Aurora','AURORA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1802,'34439','Aurora','AURORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1803,'26176','Aurukun Mission','AURUKUN MISSION',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1804,'23476','Ausserberg','AUSSERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1805,'23126','Aussersihl','AUSSERSIHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1806,'6575','Aussois','AUSSOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1807,'19705','Austell','AUSTELL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1808,'28620','Austerlitz','AUSTERLITZ',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1809,'22311','Austin','AUSTIN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1810,'30454','Austin-bergstrom International Airport (Aus)','AUSTIN-BERGSTROM INTERNATIONAL AIRPORT (AUS)',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1811,'29241','Austinburg','AUSTINBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1812,'29243','Austintown','AUSTINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1813,'41725','Austrian Alps','AUSTRIAN ALPS',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1814,'4949','Autrans','AUTRANS',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1815,'5437','Autun','AUTUN',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1816,'5438','Auxerre','AUXERRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1817,'5888','Auxillac','AUXILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1818,'38548','Auxonne','AUXONNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1819,'5991','Auzances','AUZANCES',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1820,'27576','Ava','AVA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1821,'40089','Availles-en-chatellerault','AVAILLES-EN-CHATELLERAULT',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1822,'14785','Avaldsnes','AVALDSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1823,'4126','Avallon','AVALLON',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1824,'43685','Avalon','AVALON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1825,'18277','Avalon','AVALON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1826,'14029','Avandaro','AVANDARO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1827,'17184','Avanos','AVANOS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1828,'16155','Avatoru','AVATORU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1829,'44310','Avaza','AVAZA',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1830,'38019','Avdira','AVDIRA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1831,'9437','Avdou','AVDOU',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1832,'7530','Avebury','AVEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1833,'15849','Aveiro','AVEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1834,'39561','Avelengo','AVELENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1835,'29807','Avella','AVELLA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1836,'26064','Avellaneda','AVELLANEDA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1837,'11590','Avellino','AVELLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1838,'35659','Avellino-solofra','AVELLINO-SOLOFRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1839,'4127','Avenay-val-d Or','AVENAY-VAL-D OR',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1840,'23127','Avenches','AVENCHES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1841,'28191','Avenel','AVENEL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1842,'37958','Avensan','AVENSAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1843,'19255','Aventura','AVENTURA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1844,'31291','Averill','AVERILL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1845,'5291','Avermes','AVERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1846,'14786','Averoy','AVEROY',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1847,'39041','Aversa','AVERSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1848,'6212','Avessac','AVESSAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1849,'16737','Avesta','AVESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1850,'38591','Avetrana','AVETRANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1851,'4128','Aveyron','AVEYRON',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1852,'40449','Aveze','AVEZE',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1853,'11591','Avezzano','AVEZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1854,'9641','Avgonima','AVGONIMA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1855,'42316','Aviano','AVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1856,'11119','Aviatico','AVIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1857,'7531','Aviemore','AVIEMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1858,'36225','Aviernoz','AVIERNOZ',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1859,'11592','Avigliana','AVIGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1860,'5763','Avignon','AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1861,'2515','Avila','AVILA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1862,'18278','Avila Beach','AVILA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1863,'3076','Aviles','AVILES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1864,'30455','Avinger','AVINGER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1865,'2517','Avinyonet De Puigventos','AVINYONET DE PUIGVENTOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1866,'20436','Aviston','AVISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1867,'2270','Avlum','AVLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1868,'29808','Avoca','AVOCA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1869,'41494','Avoca','AVOCA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1870,'34085','Avoca Beach','AVOCA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1871,'5366','Avoine','AVOINE',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1872,'6213','Avoise','AVOISE',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1873,'40748','Avola','AVOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1874,'33766','Avon','AVON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1875,'5837','Avon','AVON',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1876,'18102','Avondale','AVONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1877,'26177','Avondale Heights','AVONDALE HEIGHTS',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1878,'5620','Avord','AVORD',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1879,'5080','Avoriaz','AVORIAZ',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1880,'4989','Avranches','AVRANCHES',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1881,'41585','Avranches-mont-saint-michel','AVRANCHES-MONT-SAINT-MICHEL',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1882,'6017','Avricourt','AVRICOURT',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1883,'6214','Avrille','AVRILLE',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1884,'22994','Avry-devant-pont','AVRY-DEVANT-PONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1885,'16436','Avtovo','AVTOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1886,'16539','Avu Avu','AVU AVU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1887,'35706','Awaji','AWAJI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1888,'43066','Awajishima','AWAJISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1889,'3840','Awareh','AWAREH',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1890,'2445','Awsim','AWSIM',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1891,'42806','Ax Les Thermes','AX LES THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1892,'37179','Axams','AXAMS',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1893,'9260','Axbridge','AXBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1894,'4855','Ax-les-thermes','AX-LES-THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1895,'7532','Axminster','AXMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1896,'3841','Axum','AXUM',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1897,'15389','Ayacucho','AYACUCHO',NULL,'','Peru','',0,0,172,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1898,'41329','Ayala','AYALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1899,'3183','Ayamonte','AYAMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1900,'14030','Ayapango','AYAPANGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1901,'39893','Ayas','AYAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1902,'10141','Ayawasi','AYAWASI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1903,'17324','Aydin','AYDIN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1904,'3048','Ayegui','AYEGUI',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1905,'38847','Ayen','AYEN',NULL,'','France','',0,0,76,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1906,'21305','Ayer','AYER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1907,'3313','Ayerbe','AYERBE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1908,'25940','Ayers Cliff','AYERS CLIFF',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1909,'35898','Ayers Rock','AYERS ROCK',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1910,'24279','Ayia Marina','AYIA MARINA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1911,'9642','Ayia Varvara','AYIA VARVARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1912,'9643','Ayioi Anaryiroi','AYIOI ANARYIROI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1913,'9644','Ayios Dhimitrios','AYIOS DHIMITRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1914,'7533','Aylesbury','AYLESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1915,'43232','Aylesford','AYLESFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1916,'25941','Aylmer','AYLMER',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1917,'7534','Aylmerton','AYLMERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1918,'37291','Ayna','AYNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1919,'35899','Ayr','AYR',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1920,'7535','Ayr','AYR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1921,'6890','Ayrshire','AYRSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1922,'26656','Ayton','AYTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1923,'39790','Aytre','AYTRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1925,'14012','Ayutla','AYUTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1926,'36726','Ayutthaya','AYUTTHAYA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1927,'17348','Ayvali','AYVALI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1928,'17232','Ayvalik','AYVALIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1929,'38473','Aywaille','AYWAILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1930,'19257','Azalea Park','AZALEA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1931,'15912','Azaruja','AZARUJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1932,'4129','Azay Le Rideau','AZAY LE RIDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1933,'41584','Azay-le-rideau','AZAY-LE-RIDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1934,'13970','Azcapotzalco','AZCAPOTZALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1935,'36563','Azeitao','AZEITAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1936,'6018','Azerailles','AZERAILLES',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1937,'30456','Azle','AZLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1938,'38525','Aznalcázar','AZNALCÁZAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1939,'2959','Azofra','AZOFRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1940,'11069','Azor','AZOR',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1941,'1573','Azores','AZORES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1942,'40087','Azpeitia','AZPEITIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1943,'28498','Aztec','AZTEC',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1944,'41741','Azul','AZUL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1945,'42864','Azumino','AZUMINO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1946,'3398','Azuqueca De Henares','AZUQUECA DE HENARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1947,'16024','Azurara','AZURARA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1948,'18279','Azusa','AZUSA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1949,'11594','Azzate','AZZATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1950,'32277','Ba Queo','BA QUEO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1951,'13719','Baa Atoll','BAA ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1952,'43140','Baalbeck','BAALBECK',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1953,'23128','Baar','BAAR',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1954,'14565','Baarlo','BAARLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1955,'14676','Baarn','BAARN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1956,'16660','Baastad','BAASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1957,'22313','Babbitt','BABBITT',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1958,'42285','Babeldaob','BABELDAOB',NULL,'','Palau','',0,0,167,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1959,'387','Babenhausen','BABENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1960,'10306','Babo','BABO',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1961,'21306','Babson Park','BABSON PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1962,'16311','Babushkin','BABUSHKIN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1963,'28624','Babylon','BABYLON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1964,'34707','Baca Grande','BACA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1965,'39387','Bacalar','BACALAR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1966,'16208','Bacau','BACAU',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1967,'35460','Baccaiano','BACCAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1968,'6019','Baccarat','BACCARAT',NULL,'','France','',0,0,76,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1969,'2044','Bacharach','BACHARACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1970,'6891','Backbarrow','BACKBARROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1971,'39470','Baclayon','BACLAYON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1972,'30457','Bacliff','BACLIFF',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1973,'11595','Bacoli','BACOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1974,'15479','Bacolod','BACOLOD',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1975,'7536','Bacton','BACTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1976,'22696','Bad Aibling','BAD AIBLING',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1977,'24409','Bad Aussee','BAD AUSSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1978,'21977','Bad Axe','BAD AXE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1979,'23129','Bad Ragaz','BAD RAGAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:42','1900-01-01 00:00:00',1,0,1),(1980,'3314','Badaguás','BADAGUÁS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1981,'3631','Badajoz','BADAJOZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1982,'3517','Badalona','BADALONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1983,'42611','Badami','BADAMI',NULL,'','India','Badami',17,0,101,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1984,'42989','Badaran','BADARAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1985,'2960','Badarán','BADARÁN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1986,'25695','Baddeck','BADDECK',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1987,'40555','Baddi','BADDI',NULL,'','India','Baddi',1,0,101,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1988,'10218','Bade','BADE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1989,'24540','Baden','BADEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1990,'39463','Baden','BADEN',NULL,'','France','',0,0,76,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1991,'23427','Baden','BADEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1992,'22502','Baden-baden','BADEN-BADEN',NULL,'','Germany','Baden-Baden',0,0,83,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1993,'22503','Badenweiler','BADENWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1994,'12760','Badesi','BADESI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1995,'35873','Badgastein','BADGASTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1996,'14622','Badhoevedorp','BADHOEVEDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1997,'15439','Badian','BADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1998,'15291','Badin','BADIN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1999,'6892','Badminton','BADMINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2000,'11596','Badolato','BADOLATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2001,'10383','Badrinath','BADRINATH',NULL,'','India','Badrinath',9,0,101,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2002,'7537','Badsworth','BADSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2003,'26178','Badu Island','BADU ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2004,'6020','Baerenthal','BAERENTHAL',NULL,'','France','',0,0,76,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2005,'44020','Baerum','BAERUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2006,'3184','Baeza','BAEZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2007,'24012','Bafoussam','BAFOUSSAM',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2008,'36395','Bagan','BAGAN',NULL,'','Myanmar','',0,0,150,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2009,'42622','Bagani','BAGANI',NULL,'','Namibia','',0,0,151,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2010,'42612','Bagar','BAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2011,'18103','Bagdad','BAGDAD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2012,'10384','Bagdogra','BAGDOGRA',NULL,'','India','Bagdogra',12,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2013,'43242','Bagergue','BAGERGUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2014,'38784','Bageshwar','BAGESHWAR',NULL,'','India','Bageshwar',9,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2015,'3908','Baggholma','BAGGHOLMA',NULL,'','Finland','',0,0,75,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2016,'11597','Baggio','BAGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2017,'42266','Baghdad','BAGHDAD',NULL,'','Iraq','',0,0,104,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2018,'11598','Bagheria','BAGHERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2019,'11599','Bagnacavallo','BAGNACAVALLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2020,'11600','Bagnaia','BAGNAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2021,'11121','Bagnatica','BAGNATICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2022,'6068','Bagneres-de-bigorre','BAGNERES-DE-BIGORRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2023,'43952','Bagneres-de-luchon','BAGNERES-DE-LUCHON',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2024,'4919','Bagnères-de-luchon','BAGNÈRES-DE-LUCHON',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2025,'11601','Bagni Di Lucca','BAGNI DI LUCCA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2026,'11602','Bagno A Ripoli','BAGNO A RIPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2027,'41583','Bagnoles-de-l Orne','BAGNOLES-DE-L ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2028,'5367','Bagnoles-de-l\'orne','BAGNOLES-DE-L\'ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2029,'4666','Bagnolet','BAGNOLET',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2030,'35461','Bagnoli Irpino','BAGNOLI IRPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2031,'5292','Bagnols','BAGNOLS',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2032,'5889','Bagnols-sur-ceze','BAGNOLS-SUR-CEZE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2033,'35462','Bagnore','BAGNORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2034,'11604','Bagnoregio','BAGNOREGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2035,'25942','Bagotville','BAGOTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2036,'7538','Bagshot','BAGSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2037,'15506','Baguio','BAGUIO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2038,'41060','Bagur','BAGUR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2039,'1159','Bahamas - Out Island','BAHAMAS - OUT ISLAND',NULL,'','BAHAMAS','',0,0,16,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2040,'35968','Bahamas-nassau','BAHAMAS-NASSAU',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2041,'3842','Bahar Dar','BAHAR DAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2042,'34972','Baharia Oasis','BAHARIA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2043,'42569','Bahariya Oasis','BAHARIYA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2044,'15292','Bahawalpur','BAHAWALPUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2045,'26065','Bahia Blanca','BAHIA BLANCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2046,'41630','Bahia De Banderas','BAHIA DE BANDERAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2047,'2402','Bahia De Caraquez','BAHIA DE CARAQUEZ',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2048,'37204','Bahia Inglesa','BAHIA INGLESA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2049,'34929','Bahia Salinas','BAHIA SALINAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2050,'24107','Bahia Solano','BAHIA SOLANO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2051,'24819','Bahrain','BAHRAIN',NULL,'','Bahrain','',0,0,17,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2052,'2452','Bahtim','BAHTIM',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2053,'32293','Bai Chay','BAI CHAY',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2054,'16970','Bai Lan','BAI LAN',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2055,'11605','Baia','BAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2056,'16209','Baia Mare','BAIA MARE',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2057,'40587','Baião','BAIÃO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2059,'25943','Baie Comeau','BAIE COMEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2060,'2055','Baiersbronn','BAIERSBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2061,'40956','Baie-sainte-catherine','BAIE-SAINTE-CATHERINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2062,'25946','Baie-saint-paul Area','BAIE-SAINT-PAUL AREA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2063,'25947','Baie-st-paul','BAIE-ST-PAUL',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2064,'4130','Baigts-de-béarn','BAIGTS-DE-BÉARN',NULL,'','France','',0,0,76,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2065,'10492','Baihar','BAIHAR',NULL,'','India','',0,0,101,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2066,'16210','Baile Felix','BAILE FELIX',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2067,'3185','Bailen','BAILEN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2068,'33071','Bailey','BAILEY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2069,'37909','Baileys Bay','BAILEYS BAY',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2070,'31038','Baileys Crossroads','BAILEYS CROSSROADS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2071,'5890','Baillargues','BAILLARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2072,'41582','Baillet En France','BAILLET EN FRANCE',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2073,'5368','Bailleul','BAILLEUL',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2074,'5838','Bailly-romainvilliers','BAILLY-ROMAINVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2075,'14248','Bain Boeuf','BAIN BOEUF',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2076,'9981','Baina','BAINA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2077,'28625','Bainbridge','BAINBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2078,'34993','Baiona','BAIONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2079,'26484','Bairnsdale','BAIRNSDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2080,'15991','Bairro Alto','BAIRRO ALTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2081,'36014','Baishan','BAISHAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2082,'6576','Baix','BAIX',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2083,'43708','Baix Maestrat','BAIX MAESTRAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2084,'15789','Baixa','BAIXA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2085,'23562','Baiyun','BAIYUN',NULL,'','China','',0,0,46,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2086,'23564','Baiyunguan','BAIYUNGUAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2087,'38727','Baja','BAJA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2088,'44237','Baja California','BAJA CALIFORNIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2089,'3358','Bajamar','BAJAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2090,'10349','Bajawa','BAJAWA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2091,'14287','Bakalalan','BAKALALAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2092,'9389','Bakau','BAKAU',NULL,'','Gambia','',0,0,81,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2093,'16523','Bakel','BAKEL',NULL,'','Senegal','',0,0,187,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2094,'21168','Baker','BAKER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2095,'25787','Baker Lake','BAKER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2096,'18281','Bakersfield','BAKERSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2097,'7539','Bakewell','BAKEWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2098,'10967','Bakkafjordur','BAKKAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2099,'24570','Baku','BAKU',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2100,'42260','Bakuriani','BAKURIANI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2101,'7540','Bala','BALA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2102,'14249','Balaclava','BALACLAVA',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2103,'16448','Balakovo','BALAKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2104,'5891','Balaruc-les-bains','BALARUC-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2105,'5892','Balaruc-le-vieux','BALARUC-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2106,'16364','Balashikha','BALASHIKHA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2107,'43317','Balaton','BALATON',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2108,'10116','Balatonalmadi','BALATONALMADI',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2109,'10102','Balatonfoldvar','BALATONFOLDVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2110,'10117','Balatonfured','BALATONFURED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2111,'10123','Balatongyorok','BALATONGYOROK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2112,'10118','Balatonkenese','BALATONKENESE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2113,'40167','Balatonlelle','BALATONLELLE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2114,'42616','Balatonmariafurdo','BALATONMARIAFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2115,'37510','Balatonmáriafurdo','BALATONMÁRIAFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2116,'38610','Balatonszarszo','BALATONSZARSZO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2117,'10119','Balatonvilagos','BALATONVILAGOS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2118,'18283','Balboa','BALBOA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2119,'10826','Balbriggan','BALBRIGGAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2120,'30458','Balch Springs','BALCH SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2121,'24814','Balchik','BALCHIK',NULL,'','Bulgaria','Balchik',0,0,34,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2122,'35215','Balcombe','BALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2123,'42145','Bald Knob','BALD KNOB',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2124,'6753','Baldenheim','BALDENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2125,'40652','Baldersheim','BALDERSHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2126,'22708','Baldham','BALDHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2127,'7541','Baldock','BALDOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2128,'10827','Baldoyle','BALDOYLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2129,'19259','Baldwin','BALDWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2130,'28626','Baldwinsville','BALDWINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2131,'14974','Balestrand','BALESTRAND',NULL,'','Norway','Balestrand',0,0,164,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2132,'40297','Balestrate','BALESTRATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2133,'39056','Balestrino','BALESTRINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2134,'43013','Balfour','BALFOUR',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2135,'32620','Balgowan','BALGOWAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2136,'10142','Bali','BALI',NULL,'','Indonesia','Bali',22,0,102,'2016-10-17 10:40:53','2018-02-05 06:27:03',1,0,1),(2137,'10143','Baliem Valley','BALIEM VALLEY',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2138,'10385','Baliganja','BALIGANJA',NULL,'','India','',0,0,101,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2139,'10386','Balihati','BALIHATI',NULL,'','India','',0,0,101,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2140,'1644','Balikesir','BALIKESIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2141,'10332','Balikpapan','BALIKPAPAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2142,'22504','Balingen','BALINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2143,'35367','Bali-nusa Dua','BALI-NUSA DUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2144,'9438','Balio','BALIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2145,'23941','Balizhuang','BALIZHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2146,'44307','Balkanabat','BALKANABAT',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2147,'10769','Balla','BALLA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2148,'7542','Ballachulish','BALLACHULISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2149,'16540','Ballalae','BALLALAE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2150,'39969','Ballandean','BALLANDEAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2151,'7543','Ballantrae','BALLANTRAE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2152,'26884','Ballarat','BALLARAT',NULL,'','Australia','Ballarat',0,0,13,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2153,'18287','Ballard','BALLARD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2154,'1627','Ballatar','BALLATAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2155,'7544','Ballater','BALLATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2156,'40912','Ballbunion, Co.kerry','BALLBUNION, CO.KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2157,'24234','Ballena','BALLENA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2158,'1924','Ballenstedt','BALLENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2159,'2204','Ballerup','BALLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2160,'38488','Ballesteros De Calatrava','BALLESTEROS DE CALATRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2161,'10901','Ballina','BALLINA',NULL,'','Ireland','Ballina',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2162,'34086','Ballina','BALLINA',NULL,'','Australia','Ballina',0,0,13,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2163,'38677','Ballinamore','BALLINAMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2164,'10861','Ballinasloe','BALLINASLOE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2165,'10796','Ballincollig','BALLINCOLLIG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2166,'41187','Ballindalloch','BALLINDALLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2167,'10797','Ballingeary','BALLINGEARY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2168,'37253','Ballinskelligs','BALLINSKELLIGS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2169,'37842','Ballintogher','BALLINTOGHER',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2170,'32390','Ballito','BALLITO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2171,'43275','Balloch','BALLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2172,'10828','Ballsbridge - Sandymount','BALLSBRIDGE - SANDYMOUNT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2173,'28627','Ballston Spa','BALLSTON SPA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2174,'39698','Ballum','BALLUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2175,'10493','Bally','BALLY',NULL,'','India','',0,0,101,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2176,'10817','Ballybofey','BALLYBOFEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2177,'35386','Ballybunion','BALLYBUNION',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2178,'41523','Ballybunnion','BALLYBUNNION',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2179,'7545','Ballycastle','BALLYCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2180,'7546','Ballyclare','BALLYCLARE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2181,'35407','Ballyconnell','BALLYCONNELL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2182,'10798','Ballycotton','BALLYCOTTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2183,'37646','Ballydavid','BALLYDAVID',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2184,'35216','Ballygalley','BALLYGALLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2185,'9249','Ballygally','BALLYGALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2186,'10924','Ballygawley','BALLYGAWLEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2187,'7547','Ballygawley','BALLYGAWLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2188,'10874','Ballyheige','BALLYHEIGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2189,'41525','Ballyheigue','BALLYHEIGUE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2190,'10708','Ballykisteen','BALLYKISTEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2191,'41526','Ballylickey','BALLYLICKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2192,'7548','Ballymena','BALLYMENA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2193,'37384','Ballymoney','BALLYMONEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2194,'7549','Ballynahinch','BALLYNAHINCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2195,'10928','Ballyvaughan','BALLYVAUGHAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2196,'6069','Balma','BALMA',NULL,'','France','',0,0,76,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2197,'23506','Balmaceda','BALMACEDA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2198,'7550','Balmaha','BALMAHA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2199,'34087','Balmain','BALMAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2200,'24966','Balneario Camboriu','BALNEARIO CAMBORIU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2201,'39742','Balrampur','BALRAMPUR',NULL,'','India','Balrampur',6,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2202,'34088','Balranald','BALRANALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2203,'33768','Balsam','BALSAM',NULL,'','United States','',0,0,231,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2204,'16780','Balsta','BALSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2205,'23130','Balsthal','BALSTHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2206,'41445','Baltezers','BALTEZERS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2207,'44304','Balti City','BALTI CITY',NULL,'','Moldova','',0,0,144,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2208,'1170','Baltic Coast','BALTIC COAST',NULL,'','POLAND','',0,0,174,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2209,'24380','Baltic Sea Coast (Mecklenburg - West Pomerania)','BALTIC SEA COAST (MECKLENBURG - WEST POMERANIA)',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2210,'10799','Baltimore','BALTIMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2211,'21636','Baltimore','BALTIMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2212,'27176','Baltrum','BALTRUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2213,'10494','Balurghat','BALURGHAT',NULL,'','India','',0,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2214,'16200','Balvanyos','BALVANYOS',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2215,'26180','Balwyn','BALWYN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2216,'25270','Balzac','BALZAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2217,'26381','Bamaga','BAMAGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2218,'40910','Bamako','BAMAKO',NULL,'','Mali','',0,0,134,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2219,'10387','Bamangachhi','BAMANGACHHI',NULL,'','India','',0,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2220,'16942','Bambarra','BAMBARRA',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2221,'30287','Bamberg','BAMBERG',NULL,'','United States','',0,0,231,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2222,'22709','Bamberg','BAMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2223,'41297','Bambito','BAMBITO',NULL,'','Panama','',0,0,169,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2224,'35423','Bambora','BAMBORA',NULL,'','India','',0,0,101,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2225,'7551','Bamburgh','BAMBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2226,'43109','Bamburi','BAMBURI',NULL,'','Kenya','',0,0,113,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2227,'24011','Bamenda','BAMENDA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2228,'25388','Bamfield','BAMFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2229,'7552','Bamford','BAMFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2230,'7553','Bampton (Cumbria)','BAMPTON (CUMBRIA)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2231,'17084','Ban Khlong Tan','BAN KHLONG TAN',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2232,'10144','Banaina','BANAINA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2233,'39115','Banamichi','BANAMICHI',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2234,'43684','Banana','BANANA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2235,'15471','Banaue','BANAUE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2236,'23883','Banbidian','BANBIDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2237,'7555','Banbury','BANBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2238,'40185','Banchette','BANCHETTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2239,'7556','Banchory','BANCHORY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2240,'43153','Banciao','BANCIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2241,'34440','Bancroft','BANCROFT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2242,'10273','Banda Aceh','BANDA ACEH',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2243,'10339','Bandanaira','BANDANAIRA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2244,'14288','Bandar Baru Bangi','BANDAR BARU BANGI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2245,'10145','Bandar Lampung','BANDAR LAMPUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2246,'25250','Bandar Seri Begawan','BANDAR SERI BEGAWAN',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2247,'13615','Bandarawela','BANDARAWELA',NULL,'','Sri Lanka','Bandarawela',0,0,200,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2248,'30459','Bandera','BANDERA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2249,'40802','Bandhavgarh','BANDHAVGARH',NULL,'','India','',15,0,101,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2250,'1783','Banding Island','BANDING ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2251,'39230','Bandipur','BANDIPUR',NULL,'','India','',17,0,101,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2252,'43974','Bandipur','BANDIPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2253,'17262','Bandirma','BANDIRMA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2254,'6387','Bandol','BANDOL',NULL,'','France','',0,0,76,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2255,'29614','Bandon','BANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2256,'32622','Bandundu','BANDUNDU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2257,'10219','Bandung','BANDUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2258,'7557','Banff','BANFF',NULL,'','United Kingdom','Banff',0,0,229,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2259,'25271','Banff','BANFF',NULL,'','Canada','Banff',0,0,39,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2260,'26066','Banfield','BANFIELD',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2261,'17033','Bang Kapi','BANG KAPI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2262,'10391','Bangalore(bengaluru)','BANGALORE(BENGALURU)',NULL,'','India','',0,0,101,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2263,'10388','Bangaram Island','BANGARAM ISLAND',NULL,'','India','',0,0,101,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2264,'16973','Bangbao Beach','BANGBAO BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2265,'43043','Bangka','BANGKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2266,'16974','Bangkok','BANGKOK',NULL,'','Thailand','Bangkok Travel | Trip to Bangkok | Bangkok Tour Pa',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2267,'6893','Bangor','BANGOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2268,'21824','Bangor','BANGOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2269,'14289','Bangsar','BANGSAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2270,'7559','Banham','BANHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2271,'24891','Banja Luka','BANJA LUKA',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2272,'10329','Banjarmasin','BANJARMASIN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2273,'9388','Banjul','BANJUL',NULL,'','Gambia','',0,0,81,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2274,'10086','Bank','BANK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2275,'34089','Bankstown','BANKSTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2276,'24801','Bankya','BANKYA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2277,'5515','Bannalec','BANNALEC',NULL,'','France','',0,0,76,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2278,'33769','Banner Elk','BANNER ELK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2279,'18288','Banning','BANNING',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2280,'20437','Bannockburn','BANNOCKBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2281,'15293','Bannu','BANNU',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2282,'2389','Banos','BANOS',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2283,'3186','Banos De La Encina','BANOS DE LA ENCINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2284,'42653','Bansin','BANSIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2285,'42274','Banska Bystrica','BANSKA BYSTRICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2286,'24766','Bansko','BANSKO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2287,'42938','Bantayan Island','BANTAYAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2288,'42788','Banten','BANTEN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2289,'10389','Bantra','BANTRA',NULL,'','India','',0,0,101,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2290,'10800','Bantry','BANTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2291,'32435','Bantry Bay','BANTRY BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2292,'37298','Banyalbufar','BANYALBUFAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2293,'39485','Banyoles','BANYOLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2294,'4132','Banyuls Sur Mer','BANYULS SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2295,'43962','Banyuls-sur-mer','BANYULS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2296,'42339','Banyuwangi','BANYUWANGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2297,'823','Banzkow','BANZKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2298,'36015','Bao\'an','BAO\'AN',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2299,'23942','Baodi','BAODI',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2300,'23801','Baoding','BAODING',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2301,'23672','Baoji','BAOJI',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2302,'42175','Baoruco','BAORUCO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2303,'23903','Baoshan','BAOSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2304,'43817','Baoting','BAOTING',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2305,'23874','Baotou','BAOTOU',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2306,'2952','Baquèira','BAQUÈIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2307,'41478','Baqueira Beret','BAQUEIRA BERET',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2308,'32365','Bar','BAR',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2309,'21826','Bar Harbor','BAR HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2310,'10495','Bara Bazar','BARA BAZAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2311,'31690','Baraboo','BARABOO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2312,'2519','Baracaldo','BARACALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2313,'1168','Baracoa','BARACOA',NULL,'','CUBA','',0,0,56,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2314,'21978','Baraga','BARAGA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2315,'2353','Barahona','BARAHONA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2316,'43205','Barajas','BARAJAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2317,'42430','Barakaldo','BARAKALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2318,'16541','Barakoma','BARAKOMA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2319,'42144','Baralaba','BARALABA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2320,'10685','Baranagar','BARANAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2321,'11123','Barano D Ischia','BARANO D ISCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2322,'4134','Baraqueville','BARAQUEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2323,'42939','Baras','BARAS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2324,'3049','Barasoain','BARASOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2325,'6388','Baratier','BARATIER',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2326,'25230','Barbados','BARBADOS',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2327,'34843','Barbados-maxwell','BARBADOS-MAXWELL',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2328,'34845','Barbados-st Lawrence','BARBADOS-ST LAWRENCE',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2329,'11124','Barbarano Di Salo','BARBARANO DI SALO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2330,'5147','Barbaste','BARBASTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2331,'3315','Barbastro','BARBASTRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2332,'40129','Barbate','BARBATE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2333,'9439','Barbati','BARBATI',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2334,'37504','Barbatre','BARBATRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2335,'38057','Barbentane','BARBENTANE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2336,'2521','Barbera Del Valles','BARBERA DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2337,'2462','Barberà Del Vallès','BARBERÀ DEL VALLÈS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2338,'6577','Barberaz','BARBERAZ',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2339,'5710','Barberey-saint-sulpice','BARBEREY-SAINT-SULPICE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2340,'11607','Barberino Di Mugello','BARBERINO DI MUGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2341,'31436','Barberton','BARBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2342,'32551','Barberton','BARBERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2343,'4135','Barbet','BARBET',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2344,'38924','Barbirey-sur-ouche','BARBIREY-SUR-OUCHE',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2345,'5839','Barbizon','BARBIZON',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2346,'7560','Barbon','BARBON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2347,'4136','Barbotan-les-thermes','BARBOTAN-LES-THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2348,'31946','Barboursville','BARBOURSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2349,'33585','Barbourville','BARBOURVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2350,'26162','Barbuda','BARBUDA',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2351,'26382','Barcaldine','BARCALDINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2352,'3518','Barcelona','BARCELONA',NULL,'','Spain','Barcelona',0,0,199,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2353,'32182','Barcelona','BARCELONA',NULL,'','Venezuela','Barcelona',0,0,235,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2354,'6389','Barcelonnette','BARCELONNETTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2355,'15790','Barcelos','BARCELOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2356,'14527','Barchem','BARCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2357,'2524','Barco De Avila','BARCO DE AVILA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2358,'39672','Barcus','BARCUS',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2359,'40056','Bard','BARD',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2360,'32795','Bard','BARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2361,'37719','Bardejov','BARDEJOV',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2362,'11608','Bardolino','BARDOLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2363,'7561','Bardon Mill','BARDON MILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2364,'12790','Bardonecchia','BARDONECCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2365,'33586','Bardstown','BARDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2366,'41308','Bardu','BARDU',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2367,'14787','Bardufoss','BARDUFOSS',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2368,'37920','Bareges','BAREGES',NULL,'','France','',0,0,76,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2369,'39542','Bareggio','BAREGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2370,'10680','Bareilly','BAREILLY',NULL,'','India','Bareilly',6,0,101,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2371,'14706','Barendrecht','BARENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2372,'5794','Barentin','BARENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2373,'6282','Barenton-bugny','BARENTON-BUGNY',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2374,'7562','Barford','BARFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2375,'35463','Barga','BARGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2376,'26657','Bargara','BARGARA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2377,'11609','Barge','BARGE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2378,'6895','Barham','BARHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2379,'12802','Bari','BARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2380,'35516','Bari-conversano','BARI-CONVERSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2381,'26034','Bariloche','BARILOCHE',NULL,'','Argentina','Bariloche',0,0,10,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2382,'32186','Barinas','BARINAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2383,'34090','Barington Tops','BARINGTON TOPS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2384,'14290','Bario','BARIO',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2385,'4137','Barisey-la-côte','BARISEY-LA-CÔTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2386,'5893','Barjac','BARJAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2387,'21979','Bark River','BARK RIVER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2388,'15281','Barka','BARKA',NULL,'','Oman','Barka',0,0,165,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2389,'16661','Barkarby','BARKARBY',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2390,'25389','Barkerville','BARKERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2391,'29809','Barkeyville','BARKEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2392,'7563','Barking','BARKING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2393,'42394','Barlad','BARLAD',NULL,'','Romania','',0,0,179,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2394,'7564','Barlborough','BARLBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2395,'6896','Barlby','BARLBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2396,'1925','Barleben','BARLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2397,'12803','Barletta','BARLETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2398,'1726','Barlovento','BARLOVENTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2399,'26444','Barmera','BARMERA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2400,'7565','Barmouth','BARMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2401,'10770','Barna','BARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2402,'19194','Barnaby Woods','BARNABY WOODS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2403,'31292','Barnard','BARNARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2404,'7566','Barnard Castle','BARNARD CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2405,'16301','Barnaul','BARNAUL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2406,'5439','Barnay','BARNAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2407,'38926','Barnby In The Willows','BARNBY IN THE WILLOWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2408,'19708','Barnesville','BARNESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2409,'7567','Barnet','BARNET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2410,'6897','Barnetby','BARNETBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2411,'28628','Barneveld','BARNEVELD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2412,'4138','Barneville Carteret','BARNEVILLE CARTERET',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2413,'43963','Barneville-carteret','BARNEVILLE-CARTERET',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2414,'37574','Barneville-la-bertran','BARNEVILLE-LA-BERTRAN',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2415,'37509','Barnham Broom','BARNHAM BROOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2416,'7568','Barningham','BARNINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2417,'7569','Barnsley','BARNSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2418,'21307','Barnstable','BARNSTABLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2419,'7570','Barnstaple','BARNSTAPLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2420,'6898','Barnton','BARNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2421,'30288','Barnwell','BARNWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2422,'6899','Barnwood','BARNWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2423,'10496','Baroda','BARODA',NULL,'','India','',0,0,101,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2424,'38618','Baronissi','BARONISSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2425,'42143','Barooga','BAROOGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2426,'16542','Barora Island','BARORA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2427,'13720','Baros','BAROS',NULL,'','Maldives','',0,0,133,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2428,'42226','Barossa Valey','BAROSSA VALEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2429,'32199','Barquisimeto','BARQUISIMETO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2430,'15850','Barra','BARRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2431,'6900','Barra','BARRA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2432,'24158','Barra Colorado','BARRA COLORADO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2433,'13790','Barra De Navidad','BARRA DE NAVIDAD',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2434,'43783','Barra De Sao Miguel','BARRA DE SAO MIGUEL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2435,'13721','Barrah','BARRAH',NULL,'','Maldives','',0,0,133,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2436,'24123','Barrancabermeja','BARRANCABERMEJA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2437,'23538','Barrancas','BARRANCAS',NULL,'','Chile','',0,0,45,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2438,'845','Barrancas Del Cobre','BARRANCAS DEL COBRE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2439,'15404','Barranco','BARRANCO',NULL,'','Peru','',0,0,172,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2440,'24080','Barranquilla','BARRANQUILLA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2441,'21308','Barre','BARRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2442,'41776','Barreiras','BARREIRAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2443,'953','Barreirinhas','BARREIRINHAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2444,'976','Barretos','BARRETOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2445,'7571','Barrhead','BARRHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2446,'34441','Barrie','BARRIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2447,'25390','Barriere','BARRIERE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2448,'9890','Barrigada','BARRIGADA',NULL,'','Guam','',0,0,90,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2449,'20438','Barrington','BARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2450,'38517','Barrington','BARRINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2451,'39311','Barro','BARRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2452,'31691','Barron','BARRON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2453,'17566','Barrow','BARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2454,'26181','Barrow Island','BARROW ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2455,'6901','Barrow-in-furness','BARROW-IN-FURNESS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2456,'7572','Barry','BARRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2457,'34443','Barrys Bay','BARRYS BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2458,'28629','Barryville','BARRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2459,'27177','Barsinghausen','BARSINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2460,'18289','Barstow','BARSTOW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2461,'39903','Bar-sur-aube','BAR-SUR-AUBE',NULL,'','France','',0,0,76,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2462,'17567','Barter Island','BARTER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2463,'824','Barth','BARTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2464,'4139','Barthenheim','BARTHENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2465,'37278','Bartholomaeberg','BARTHOLOMAEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2466,'32877','Bartlesville','BARTLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2467,'20439','Bartlett','BARTLETT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2468,'7573','Barton','BARTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2469,'26624','Barton','BARTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2470,'38323','Barton-on-sea','BARTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2471,'29810','Bartonsville','BARTONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2472,'6902','Barton-upon-humber','BARTON-UPON-HUMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2473,'44040','Bartoszyce','BARTOSZYCE',NULL,'','Poland','',0,0,174,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2474,'19260','Bartow','BARTOW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2475,'25196','Barueri','BARUERI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2476,'14788','Barum','BARUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2477,'40362','Barumini','BARUMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2478,'26485','Barwon Heads','BARWON HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2479,'39616','Barzano','BARZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2480,'39275','Basaburua','BASABURUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2481,'34708','Basalt','BASALT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2482,'32623','Basankusu','BASANKUSU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2483,'41397','Basauri','BASAURI',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2484,'11610','Baschi','BASCHI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2485,'15484','Basco','BASCO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2486,'23131','Basel','BASEL',NULL,'','Switzerland','Basel',0,0,210,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2487,'25273','Bashaw','BASHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2488,'2446','Bashtil','BASHTIL',NULL,'','Egypt','',0,0,65,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2489,'11126','Basiglio','BASIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2490,'7576','Basildon','BASILDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2491,'11127','Basilicata','BASILICATA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2492,'1173','Basingstoke','BASINGSTOKE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2493,'7577','Basingstoke','BASINGSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2494,'9982','Baska','BASKA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2495,'28194','Basking Ridge','BASKING RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2496,'7578','Baslow','BASLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2497,'4140','Basque Coast','BASQUE COAST',NULL,'','France','',0,0,76,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2498,'4141','Bas-rhin','BAS-RHIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2499,'21828','Bass Harbor','BASS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2500,'34091','Bass Hill','BASS HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2501,'35464','Bassano De Grappa','BASSANO DE GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2502,'26579','Bassendean','BASSENDEAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2503,'6903','Bassenthwaite','BASSENTHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2504,'14234','Basse-pointe','BASSE-POINTE',NULL,'','Martinique','',0,0,137,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2505,'13477','Basseterre','BASSETERRE',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2506,'9376','Basse-terre','BASSE-TERRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2507,'28098','Bassett','BASSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2508,'39860','Bassignac','BASSIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2509,'5148','Bassussarry','BASSUSSARRY',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2510,'16861','Bastad','BASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2511,'700','Basthorst','BASTHORST',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2512,'13031','Bastia','BASTIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2513,'4884','Bastia','BASTIA',NULL,'','France','',0,0,76,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2514,'24692','Bastogne','BASTOGNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2515,'22','Bastos','BASTOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2516,'30461','Bastrop','BASTROP',NULL,'','United States','',0,0,231,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2517,'31039','Basye','BASYE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2518,'11070','Bat Yam','BAT YAM',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2519,'15485','Bataan','BATAAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2520,'39635','Batak','BATAK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2521,'15774','Batalha','BATALHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2522,'43542','Batam Island','BATAM ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2523,'10390','Batanagar','BATANAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2524,'14291','Batang Ai','BATANG AI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2525,'15541','Batangas','BATANGAS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2526,'20440','Batavia','BATAVIA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2527,'26639','Batchelor','BATCHELOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2528,'34092','Bateau Bay','BATEAU BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2529,'34093','Batemans Bay','BATEMANS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2530,'17981','Batesville','BATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2531,'28631','Bath','BATH',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2532,'1353','Bath','BATH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2533,'7580','Bathgate','BATHGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2534,'34094','Bathurst','BATHURST',NULL,'','Australia','Bathurst',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2535,'34384','Bathurst','BATHURST',NULL,'','Canada','Bathurst',0,0,39,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2536,'7581','Batley','BATLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2537,'17359','Batman','BATMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2538,'21170','Baton Rouge','BATON ROUGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2539,'24009','Batouri','BATOURI',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2540,'43141','Batroun','BATROUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2541,'14874','Batsfjord','BATSFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2542,'9440','Batsi','BATSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2543,'13449','Battambang','BATTAMBANG',NULL,'','Cambodia','',0,0,37,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2544,'39964','Battenheim','BATTENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2545,'38763','Battery Point','BATTERY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2546,'11611','Battipaglia','BATTIPAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2547,'11030','Battir','BATTIR',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2548,'7582','Battle','BATTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2549,'21980','Battle Creek','BATTLE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2550,'33770','Battleboro','BATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2551,'22937','Battleford','BATTLEFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2552,'7583','Battlesbridge','BATTLESBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2553,'42789','Batu','BATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2554,'42415','Batu Pahat','BATU PAHAT',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2555,'43880','Batubulan','BATUBULAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2556,'9344','Batumi','BATUMI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2557,'43881','Baturiti','BATURITI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2558,'4973','Batz Sur Mer','BATZ SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2559,'22314','Baudette','BAUDETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2560,'39316','Baulne-en-brie','BAULNE-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2561,'37383','Baumholder','BAUMHOLDER',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2562,'1995','Baumschulenweg','BAUMSCHULENWEG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2563,'24382','Baunatal','BAUNATAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2564,'25197','Bauru','BAURU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2565,'13665','Bauska','BAUSKA',NULL,'','Latvia','',0,0,119,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2566,'1870','Bautzen','BAUTZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2567,'2364','Bavaro','BAVARO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2568,'11612','Baveno','BAVENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2569,'7584','Bawtry','BAWTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2570,'19709','Baxley','BAXLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2571,'22315','Baxter','BAXTER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2572,'923','Bay Islands','BAY ISLANDS',NULL,'','Honduras','',0,0,97,'2016-10-17 10:41:20','1900-01-01 00:00:00',1,0,1),(2573,'15089','Bay Of Islands','BAY OF ISLANDS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2574,'34965','Bayahibe','BAYAHIBE',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2575,'44036','Bayamon','BAYAMON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2576,'23565','Bayan Nur','BAYAN NUR',NULL,'','China','',0,0,46,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2577,'28099','Bayard','BAYARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2578,'17296','Bayburt','BAYBURT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2579,'7585','Baydon','BAYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2580,'22710','Bayerisch Eisenstein','BAYERISCH EISENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2581,'22712','Bayersoien','BAYERSOIEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2582,'4867','Bayeux','BAYEUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2583,'34709','Bayfield','BAYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2584,'34444','Bayfield','BAYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2585,'17244','Bayirkoy','BAYIRKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2586,'3654','Bayona','BAYONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2587,'19264','Bayonet Point','BAYONET POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2588,'5149','Bayonne','BAYONNE',NULL,'','France','',0,0,76,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2589,'28196','Bayonne','BAYONNE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2590,'17838','Bayou La Batre','BAYOU LA BATRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2591,'46','Bayreuth','BAYREUTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2592,'2065','Bayrischzell','BAYRISCHZELL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2593,'25696','Bayside','BAYSIDE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2594,'28633','Bayside','BAYSIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2595,'6906','Bayswater','BAYSWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2596,'26486','Bayswater','BAYSWATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2597,'30465','Baytown','BAYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2598,'25812','Bayview','BAYVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2599,'20330','Bayview','BAYVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2600,'28634','Bayville','BAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2601,'18293','Baywood Park','BAYWOOD PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2602,'41398','Bazaruto','BAZARUTO',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2603,'4924','Bazas','BAZAS',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2604,'5711','Bazeilles','BAZEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2605,'5795','Bazincourt-sur-epte','BAZINCOURT-SUR-EPTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2606,'4142','Bazouges La Perouse','BAZOUGES LA PEROUSE',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2607,'11613','Bazzano','BAZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2608,'35126','Beachcomber Island','BEACHCOMBER ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2609,'29248','Beachwood','BEACHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2610,'21311','Beacon Hill','BEACON HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2611,'6908','Beacon Hill','BEACON HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2612,'7586','Beaconsfield','BEACONSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2613,'25948','Beaconsfield','BEACONSFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2614,'7587','Beadnell','BEADNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2615,'37227','Bealanana','BEALANANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2616,'7588','Beaminster','BEAMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2617,'38651','Beamish','BEAMISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2618,'33073','Bean Station','BEAN STATION',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2619,'19211','Bear','BEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2620,'20442','Beardstown','BEARDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2621,'6909','Beare Green','BEARE GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2622,'40758','Bearsden','BEARSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2623,'34445','Bearskin Lake','BEARSKIN LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2624,'22996','Beatenberg','BEATENBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2625,'28100','Beatrice','BEATRICE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2626,'7589','Beattock','BEATTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2627,'32797','Beatty','BEATTY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2628,'33587','Beattyville','BEATTYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2629,'5293','Beaucaire','BEAUCAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2630,'6578','Beaucroissant','BEAUCROISSANT',NULL,'','France','',0,0,76,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2631,'26658','Beaudesert','BEAUDESERT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2632,'30289','Beaufort','BEAUFORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2633,'10771','Beaufort','BEAUFORT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2634,'38646','Beaufort West','BEAUFORT WEST',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2635,'4981','Beaugency','BEAUGENCY',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2636,'25949','Beauharnois','BEAUHARNOIS',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2637,'4143','Beaujolais','BEAUJOLAIS',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2638,'7590','Beaulieu','BEAULIEU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2639,'1591','Beaulieu Sur Dordogn','BEAULIEU SUR DORDOGN',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2640,'6390','Beaulieu-sur-mer','BEAULIEU-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2641,'7591','Beauly','BEAULY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2642,'40358','Beaumarches','BEAUMARCHES',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2643,'7592','Beaumaris','BEAUMARIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2644,'26184','Beaumaris','BEAUMARIS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2645,'6391','Beaumettes','BEAUMETTES',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2646,'30466','Beaumont','BEAUMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2647,'38982','Beaumont-en-veron','BEAUMONT-EN-VERON',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2648,'5796','Beaumont-le-roger','BEAUMONT-LE-ROGER',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2649,'37182','Beaumont-sur-sarthe','BEAUMONT-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2650,'4891','Beaune','BEAUNE',NULL,'','France','Beaune',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2651,'25950','Beauport','BEAUPORT',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2652,'25951','Beaupre','BEAUPRE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2653,'6392','Beaurecueil','BEAURECUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2654,'25580','Beausejour','BEAUSEJOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2655,'5992','Beausoleil','BEAUSOLEIL',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2656,'43682','Beauty Point','BEAUTY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2657,'4667','Beauvais','BEAUVAIS',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2658,'5369','Beauvoir','BEAUVOIR',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2659,'5294','Beaux','BEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2660,'33301','Beaver','BEAVER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2661,'22974','Beaver Creek','BEAVER CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2662,'29249','Beavercreek','BEAVERCREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2663,'34446','Beaverton','BEAVERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2664,'29616','Beaverton','BEAVERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2665,'43573','Beaworthy','BEAWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2666,'25055','Beberibe','BEBERIBE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2667,'6755','Beblenheim','BEBLENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2668,'402','Bebra','BEBRA',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2669,'25952','Becancour','BECANCOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2670,'7593','Beccles','BECCLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2671,'2980','Becerril De La Sierra','BECERRIL DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2672,'37606','Bechar','BECHAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2673,'40015','Bechyne','BECHYNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2674,'23132','Beckenried','BECKENRIED',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2675,'22316','Becker','BECKER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2676,'7594','Beckington','BECKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2677,'31949','Beckley','BECKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2678,'40059','Beckum','BECKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2679,'7595','Bedale','BEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2680,'26185','Bedarra Island','BEDARRA ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2681,'7596','Beddgelert','BEDDGELERT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2682,'27178','Bederkesa','BEDERKESA',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2683,'29250','Bedford','BEDFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2684,'25697','Bedford','BEDFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2685,'6910','Bedford','BEDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2686,'6911','Bedfordshire','BEDFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2687,'32391','Bedfordview','BEDFORDVIEW',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2688,'25391','Bednesti','BEDNESTI',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2689,'6393','Bedoin','BEDOIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2690,'42317','Bedonia','BEDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2691,'26383','Bedourie','BEDOURIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2692,'43882','Bedugul','BEDUGUL',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2693,'7597','Bedworth','BEDWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2694,'17982','Beebe','BEEBE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2695,'20826','Beech Grove','BEECH GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2696,'37230','Beechmont','BEECHMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2697,'26885','Beechworth','BEECHWORTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2698,'32217','Beef Island','BEEF ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2699,'14566','Beek','BEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2700,'14528','Beekbergen','BEEKBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2701,'26659','Beenleigh','BEENLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2702,'43574','Beer','BEER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2703,'1649','Beer Sheva','BEER SHEVA',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2704,'11031','Beersheba','BEERSHEBA',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2705,'24744','Beerzel','BEERZEL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2706,'7598','Beeston','BEESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2707,'14508','Beetsterzwaag','BEETSTERZWAAG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2708,'754','Beetz','BEETZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2709,'99','Beetzsee','BEETZSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2710,'30470','Beeville','BEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2711,'34095','Bega','BEGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2712,'7599','Begelly','BEGELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2713,'5150','Begles','BEGLES',NULL,'','France','',0,0,76,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2714,'2525','Begues','BEGUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2715,'37618','Begunje Na Gorenjskem','BEGUNJE NA GORENJSKEM',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2716,'2526','Begur','BEGUR',NULL,'','Spain','Begur',0,0,199,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2717,'10686','Behala','BEHALA',NULL,'','India','',0,0,101,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2718,'825','Behnkendorf','BEHNKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2719,'38698','Behror','BEHROR',NULL,'','India','',0,0,101,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2720,'3843','Beica','BEICA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2721,'13558','Beida','BEIDA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2722,'32346','Beidah','BEIDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2723,'39727','Beignon','BEIGNON',NULL,'','France','',0,0,76,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2724,'23854','Beihai','BEIHAI',NULL,'','China','',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2725,'32347','Beihan','BEIHAN',NULL,'','Yemen','',0,0,240,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2726,'23884','Beijing','BEIJING',NULL,'','China','Beijing',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2727,'22713','Beilngries','BEILNGRIES',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2728,'610','Beilstein','BEILSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2729,'38401','Beinasco','BEINASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2730,'14220','Beira','BEIRA',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2731,'44311','Beiras','BEIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2732,'13551','Beirut','BEIRUT',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2733,'11032','Beit Israel','BEIT ISRAEL',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2734,'43097','Beit Mery','BEIT MERY',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2735,'32654','Beitbridge','BEITBRIDGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2736,'43142','Beiteddin','BEITEDDIN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2737,'41185','Beith','BEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2738,'14789','Beitostolen','BEITOSTOLEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2739,'36815','Beitou','BEITOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2740,'23885','Beiyuan','BEIYUAN',NULL,'','China','',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2741,'15871','Beja','BEJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2742,'37397','Bejaia','BEJAIA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2743,'39472','Bejuco','BEJUCO',NULL,'','Panama','',0,0,169,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2744,'38165','Bekal','BEKAL',NULL,'','India','Bekal',3,0,101,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2745,'4045','Bekana Island','BEKANA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2746,'10280','Bekasi','BEKASI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2747,'43698','Bekes','BEKES',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2748,'10083','Bekescsaba','BEKESCSABA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2749,'38549','Bekily','BEKILY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2750,'14261','Bel Ombre','BEL OMBRE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2751,'40718','Bela','BELA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2752,'25071','Bela Vista','BELA VISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2753,'14373','Belaga','BELAGA',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2754,'40267','Belapur','BELAPUR',NULL,'','India','',0,0,101,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2755,'38570','Belcaire','BELCAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2756,'21640','Belcamp','BELCAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2757,'26625','Belconnen','BELCONNEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2758,'27829','Belden','BELDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2759,'17250','Beldibi','BELDIBI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2760,'21984','Belding','BELDING',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2761,'17251','Belek','BELEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2762,'25170','Belem','BELEM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2763,'28499','Belen','BELEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2764,'14421','Belep','BELEP',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2765,'31438','Belfair','BELFAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2766,'1181','Belfast','BELFAST',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2767,'21830','Belfast','BELFAST',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2768,'64762','Belfast International Airport','BELFAST INTERNATIONAL AIRPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2769,'35213','Belfast-int\'l Apt','BELFAST-INT\'L APT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2770,'7600','Belford','BELFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2771,'24967','Belford Roxo','BELFORD ROXO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2772,'5764','Belfort','BELFORT',NULL,'','France','',0,0,76,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2773,'11614','Belforte Del Chienti','BELFORTE DEL CHIENTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2774,'10655','Belgaum','BELGAUM',NULL,'','India','Belgaum',17,0,101,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2775,'39354','Belgern','BELGERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2776,'24577','Belgian Coast','BELGIAN COAST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2777,'11615','Belgirate','BELGIRATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2778,'31694','Belgium','BELGIUM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2779,'4145','Belgodère','BELGODÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2780,'16309','Belgorod','BELGOROD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2781,'36642','Belgrade','BELGRADE',NULL,'','Serbia','',0,0,468,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2782,'32362','Belgrade','BELGRADE',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2783,'27934','Belgrade','BELGRADE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2784,'26116','Belgrano','BELGRANO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2785,'6915','Belgravia','BELGRAVIA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2786,'32436','Belhar','BELHAR',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2787,'33773','Belhaven','BELHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2788,'37939','Belimbing','BELIMBING',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2789,'31951','Belington','BELINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2790,'42790','Belitung','BELITUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2791,'24903','Belize','BELIZE',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2792,'18298','Bell','BELL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2793,'25392','Bella Bella','BELLA BELLA',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2794,'26106','Bella Vista','BELLA VISTA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2795,'17983','Bella Vista','BELLA VISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2796,'36611','Bella Vista','BELLA VISTA',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2797,'5993','Bellac','BELLAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2798,'11616','Bellagio','BELLAGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2799,'21985','Bellaire','BELLAIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2800,'12713','Bellaria','BELLARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2801,'41795','Bellariva Di Rimini','BELLARIVA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2802,'10656','Bellary','BELLARY',NULL,'','India','Bellary',17,0,101,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2803,'2527','Bellaterra','BELLATERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2804,'15391','Bellavista','BELLAVISTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2805,'23482','Bellavista','BELLAVISTA',NULL,'','Chile','',0,0,45,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2806,'21172','Belle Chasse','BELLE CHASSE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2807,'37455','Belle Ile En Mer','BELLE ILE EN MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2808,'14250','Belle Mare','BELLE MARE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2809,'19268','Belleair','BELLEAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2810,'6283','Belle-eglise','BELLE-EGLISE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2811,'35212','Belleek','BELLEEK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2812,'29252','Bellefontaine','BELLEFONTAINE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2813,'39486','Bellefontaine','BELLEFONTAINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2814,'29816','Bellefonte','BELLEFONTE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2815,'5894','Bellegarde','BELLEGARDE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2816,'43964','Bellegarde-sur-valserine','BELLEGARDE-SUR-VALSERINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2817,'5370','Belleme','BELLEME',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2818,'33589','Bellemeade','BELLEMEADE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2819,'18104','Bellemont','BELLEMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2820,'5295','Bellenaves','BELLENAVES',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2821,'6579','Bellentre','BELLENTRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2822,'5296','Bellerive-sur-allier','BELLERIVE-SUR-ALLIER',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2823,'39365','Bellevaux','BELLEVAUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2824,'19270','Belleview','BELLEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2825,'29817','Belleville','BELLEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2826,'34447','Belleville','BELLEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2827,'4668','Belleville','BELLEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2828,'29254','Bellevue','BELLEVUE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2829,'4669','Bellevue','BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2830,'23133','Bellevue','BELLEVUE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2831,'25274','Bellevue','BELLEVUE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2832,'5712','Belley','BELLEY',NULL,'','France','',0,0,76,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2833,'18300','Bellflower','BELLFLOWER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2834,'6580','Bellignat','BELLIGNAT',NULL,'','France','',0,0,76,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2835,'34096','Bellingen','BELLINGEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2836,'7601','Bellingham','BELLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2837,'31441','Bellingham','BELLINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2838,'40766','Bellingwolde','BELLINGWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2839,'23134','Bellinzona','BELLINZONA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2840,'28198','Bellmawr','BELLMAWR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2841,'30472','Bellmead','BELLMEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2842,'37934','Bellona','BELLONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2843,'16543','Bellona Island','BELLONA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2844,'11617','Bellosguardo','BELLOSGUARDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2845,'5371','Bellou-en-houlme','BELLOU-EN-HOULME',NULL,'','France','',0,0,76,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2846,'31294','Bellows Falls','BELLOWS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2847,'40225','Bellport','BELLPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2848,'33077','Bells','BELLS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2849,'7602','Bellshill','BELLSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2850,'34097','Belltrees','BELLTREES',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2851,'11129','Belluno','BELLUNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2852,'2528','Bellver De Cerdanya','BELLVER DE CERDANYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2853,'29255','Bellville','BELLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2854,'34711','Bellvue','BELLVUE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2855,'28199','Belmar','BELMAR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2856,'18301','Belmont','BELMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2857,'15893','Belmonte','BELMONTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2858,'24917','Belmopan','BELMOPAN',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2859,'25019','Belo Horizonte','BELO HORIZONTE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2860,'40613','Belo Tsiribihina','BELO TSIRIBIHINA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2861,'25953','Beloeil','BELOEIL',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2862,'31696','Beloit','BELOIT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2863,'16253','Beloreck','BELORECK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2864,'44205','Belparao','BELPARAO',NULL,'','India','',0,0,101,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2865,'11618','Belpasso','BELPASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2866,'7603','Belper','BELPER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2867,'30473','Belton','BELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2868,'7604','Belton (Leicestershire)','BELTON (LEICESTERSHIRE)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2869,'21641','Beltsville','BELTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2870,'13717','Beltsy','BELTSY',NULL,'','Moldova, Republic Of','',0,0,144,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2871,'3700','Belunza','BELUNZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2872,'11619','Belvedere','BELVEDERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2873,'19711','Belvedere','BELVEDERE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2874,'41581','Belves','BELVES',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2875,'5297','Belvezet','BELVEZET',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2876,'28200','Belvidere','BELVIDERE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2877,'32392','Belville','BELVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2878,'3399','Belvis De La Jara','BELVIS DE LA JARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2879,'40120','Belz','BELZ',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2880,'7606','Bembridge','BEMBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2881,'22318','Bemidji','BEMIDJI',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2882,'15792','Bemposta','BEMPOSTA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2883,'28636','Bemus Point','BEMUS POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2884,'19712','Ben Hill','BEN HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2885,'3187','Benacazon','BENACAZON',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2886,'3188','Benahavis','BENAHAVIS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2887,'26487','Benalla','BENALLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2888,'3189','Benalmadena','BENALMADENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2889,'3190','Benalup De Sidonia','BENALUP DE SIDONIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2890,'39517','Benaoján','BENAOJÁN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2891,'3316','Benasque','BENASQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2892,'10497','Benaulim','BENAULIM',NULL,'','India','',0,0,101,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2893,'3434','Benavente','BENAVENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2894,'6916','Benbecula','BENBECULA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2895,'30474','Benbrook','BENBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2896,'29617','Bend','BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2897,'27179','Bendestorf','BENDESTORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2898,'26887','Bendigo','BENDIGO',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2899,'39208','Bendorf','BENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2900,'11071','Bene Beraq','BENE BERAQ',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2901,'11621','Bene Vagienna','BENE VAGIENNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2902,'22714','Benediktbeuern','BENEDIKTBEUERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2903,'24304','Benesov','BENESOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2904,'11622','Benevello','BENEVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2905,'12710','Benevento','BENEVENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2906,'15992','Benfica','BENFICA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2907,'23673','Bengbu','BENGBU',NULL,'','China','',0,0,46,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2908,'13559','Benghazi','BENGHAZI',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2909,'10278','Bengkulu','BENGKULU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2910,'22938','Bengough','BENGOUGH',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2911,'25844','Benguela','BENGUELA',NULL,'','Angola','',0,0,6,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2912,'5621','Bengy-sur-crao','BENGY-SUR-CRAO',NULL,'','France','',0,0,76,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2913,'32624','Beni','BENI',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2914,'36383','Beni Mellal','BENI MELLAL',NULL,'','Morocco','',0,0,148,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2915,'3735','Benicarlo','BENICARLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2916,'3736','Benicasim','BENICASIM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2917,'41417','Benicassim','BENICASSIM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2918,'18303','Benicia','BENICIA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2919,'3737','Benidorm','BENIDORM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2920,'3738','Benimaurell','BENIMAURELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2921,'41956','Benisano','BENISANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2922,'2873','Benissa','BENISSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2923,'13892','Benito Juarez','BENITO JUAREZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2924,'9441','Benitses','BENITSES',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2925,'32380','Benmore Gardens','BENMORE GARDENS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2926,'1926','Benneckenstein','BENNECKENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2927,'24850','Bennett\'s Harbour','BENNETT\'S HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2928,'30291','Bennettsville','BENNETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2929,'31295','Bennington','BENNINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2930,'5516','Benodet','BENODET',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2931,'41580','Benodet-port','BENODET-PORT',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2932,'6322','Benon','BENON',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2933,'32552','Benoni','BENONI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2934,'37879','Bénouville','BÉNOUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2935,'29818','Bensalem','BENSALEM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2936,'27331','Bensberg','BENSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2937,'20447','Bensenville','BENSENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2938,'403','Bensheim','BENSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2939,'22320','Benson','BENSON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2940,'11623','Bentivoglio','BENTIVOGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2941,'26186','Bentleigh','BENTLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2942,'7607','Bentley','BENTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2943,'29820','Bentleyville','BENTLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2944,'25155','Bento Goncalves','BENTO GONCALVES',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2945,'17984','Benton','BENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2946,'43170','Bentong','BENTONG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2947,'20160','Bentonsport','BENTONSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2948,'17985','Bentonville','BENTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2949,'13610','Bentota','BENTOTA',NULL,'','Sri Lanka','Bentota',0,0,200,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2950,'23866','Benxi','BENXI',NULL,'','China','',0,0,46,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2951,'13225','Beppu','BEPPU',NULL,'','Japan','',0,0,110,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2952,'4046','Beqa Island','BEQA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2953,'42626','Beqaa','BEQAA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2954,'32162','Bequia Island','BEQUIA ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2955,'42340','Berastagi','BERASTAGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2956,'42223','Berat','BERAT',NULL,'','Albania','',0,0,2,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2957,'10147','Berau','BERAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2958,'26067','Berazategui','BERAZATEGUI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2959,'5151','Berbiguieres','BERBIGUIERES',NULL,'','France','',0,0,76,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2960,'24737','Berchem','BERCHEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2961,'4909','Bercheres Sur Vesgre','BERCHERES SUR VESGRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2962,'57538','Berching','BERCHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2963,'22715','Berchtesgaden','BERCHTESGADEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2964,'3191','Berchules','BERCHULES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2965,'4146','Berck','BERCK',NULL,'','France','',0,0,76,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2966,'7608','Bere Regis','BERE REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2967,'33592','Berea','BEREA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2968,'25581','Berens River','BERENS RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2969,'41437','Berenty','BERENTY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2970,'32992','Beresford','BERESFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2971,'34386','Beresford','BERESFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2972,'22717','Berg, 823','BERG, 823',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2973,'3519','Berga','BERGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2974,'17314','Bergama','BERGAMA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2975,'14707','Bergambacht','BERGAMBACHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2976,'12782','Bergamo','BERGAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2977,'35530','Bergamo-fuipiano Ima','BERGAMO-FUIPIANO IMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2978,'755','Berge','BERGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2979,'27180','Bergedorf','BERGEDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2980,'14790','Bergen','BERGEN',NULL,'','Norway','Bergen',0,0,164,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2981,'680','Bergen','BERGEN',NULL,'','Germany','Bergen',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2982,'36483','Bergen-os','BERGEN-OS',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2983,'4901','Bergerac','BERGERAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2984,'36285','Bergerac-laveyssiere','BERGERAC-LAVEYSSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2985,'3956','Berghall','BERGHALL',NULL,'','Finland','',0,0,75,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2986,'5045','Bergheim','BERGHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2987,'27158','Bergheim','BERGHEIM',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2988,'27332','Bergisch Gladbach','BERGISCH GLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2989,'101','Bergisches Land','BERGISCHES LAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2990,'23135','Bergun','BERGUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2991,'16816','Bergvik','BERGVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2992,'32512','Bergville','BERGVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2993,'42180','Berhampur','BERHAMPUR',NULL,'','India','',0,0,101,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2994,'41430','Beriain','BERIAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2995,'14292','Berjaya Hills','BERJAYA HILLS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2996,'41819','Berkane','BERKANE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2997,'42838','Berkel Enschot','BERKEL ENSCHOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2998,'27578','Berkeley','BERKELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2999,'7609','Berkeley','BERKELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3000,'37645','Berkhamsted','BERKHAMSTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3001,'6917','Berkshire','BERKSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3002,'7610','Berkswell','BERKSWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3003,'14875','Berlevag','BERLEVAG',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3004,'14771','Berlevåg','BERLEVÅG',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3005,'1996','Berlin','BERLIN',NULL,'','Germany','Berlin',0,0,83,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3006,'19051','Berlin','BERLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3007,'40209','Bermeo','BERMEO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3008,'1871','Bermsgrun','BERMSGRUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3009,'24926','Bermuda','BERMUDA',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3010,'18306','Bermuda Dunes','BERMUDA DUNES',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3011,'24900','Bermudian Landing','BERMUDIAN LANDING',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3012,'23432','Bern','BERN',NULL,'','Switzerland','Bern',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3013,'37416','Bernalda','BERNALDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3014,'28501','Bernalillo','BERNALILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3015,'28202','Bernardsville','BERNARDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3016,'37432','Bernate Ticino','BERNATE TICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3017,'22506','Bernau','BERNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3018,'5440','Bernay','BERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3019,'1927','Bernburg','BERNBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3021,'22998','Bernese Alps','BERNESE ALPS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3022,'23433','Bernex','BERNEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3023,'6581','Bernin','BERNIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3024,'1702','Bernkastel','BERNKASTEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3025,'36040','Bernkastel-kaus','BERNKASTEL-KAUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3026,'2043','Bernkastel-kues','BERNKASTEL-KUES',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3027,'1965','Bernshausen','BERNSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3028,'37604','Beroroha','BEROROHA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3029,'24352','Beroun','BEROUN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3030,'4147','Berrias-et-casteljau','BERRIAS-ET-CASTELJAU',NULL,'','France','',0,0,76,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3031,'26826','Berriedale','BERRIEDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3032,'21989','Berrien Springs','BERRIEN SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3033,'37497','Berrimah','BERRIMAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3034,'3050','Berrioplano','BERRIOPLANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3035,'2531','Berrón','BERRÓN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3036,'34099','Berry','BERRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3037,'18307','Berry Creek','BERRY CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3038,'37680','Berry-au-bac','BERRY-AU-BAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3039,'31041','Berryville','BERRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3040,'44124','Bersteland','BERSTELAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3041,'25954','Berthierville','BERTHIERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3042,'34712','Berthoud','BERTHOUD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3043,'12714','Bertinoro','BERTINORO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3044,'980','Bertioga','BERTIOGA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3045,'24010','Bertoua','BERTOUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3046,'6021','Bertrichamps','BERTRICHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3047,'2089','Bertsdorf-hornitz','BERTSDORF-HORNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3048,'13459','Beru','BERU',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3049,'3051','Beruete','BERUETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3050,'13590','Beruwela','BERUWELA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3051,'24446','Berwang','BERWANG',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3052,'37586','Berwick','BERWICK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3053,'7611','Berwick-upon-tweed','BERWICK-UPON-TWEED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3054,'29821','Berwyn','BERWYN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3055,'4148','Berze La Ville','BERZE LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3056,'38189','Besalampy','BESALAMPY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3057,'3520','Besalu','BESALU',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3058,'5765','Besancon','BESANCON',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3059,'16461','Besedy','BESEDY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3060,'4149','Besle-sur-vilaine','BESLE-SUR-VILAINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3061,'37857','Besse','BESSE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3062,'5298','Besse-et-saint-anastaise','BESSE-ET-SAINT-ANASTAISE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3063,'21990','Bessemer','BESSEMER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3064,'6582','Bessenay','BESSENAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3065,'13122','Bessho Hot Springs','BESSHO HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3066,'41579','Bessoncourt','BESSONCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3067,'41578','Bessonies','BESSONIES',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3068,'14590','Best','BEST',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3069,'42783','Besut','BESUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3070,'4150','Bétaille','BÉTAILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3071,'40803','Betalghat','BETALGHAT',NULL,'','India','',0,0,101,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3072,'37387','Betanzos','BETANZOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3073,'7612','Betchworth','BETCHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3074,'3739','Betera','BETERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3075,'20450','Bethalto','BETHALTO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3076,'27579','Bethany','BETHANY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3077,'21831','Bethel','BETHEL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3078,'21643','Bethesda','BETHESDA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3079,'29824','Bethlehem','BETHLEHEM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3080,'35411','Bethlehem','BETHLEHEM',NULL,'','Israel','Bethlehem',0,0,106,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3081,'28638','Bethpage','BETHPAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3082,'6148','Bethune','BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3083,'38083','Betioky','BETIOKY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3084,'3521','Betren','BETREN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3085,'43966','Bettancourt-la-ferree','BETTANCOURT-LA-FERREE',NULL,'','France','',0,0,76,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3086,'13654','Bettembourg','BETTEMBOURG',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3087,'20451','Bettendorf','BETTENDORF',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3088,'17570','Bettles','BETTLES',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3089,'23460','Bettmeralp','BETTMERALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3090,'35467','Bettolle','BETTOLLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3091,'10909','Bettystown','BETTYSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3092,'44206','Betul','BETUL',NULL,'','India','',0,0,101,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3093,'14456','Betuwe - Lower Rhine','BETUWE - LOWER RHINE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3094,'40238','Betws Garmon','BETWS GARMON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3095,'6918','Betws-y-coed','BETWS-Y-COED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3096,'27181','Betzendorf','BETZENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3097,'21991','Beulah','BEULAH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3098,'6149','Beuvry','BEUVRY',NULL,'','France','',0,0,76,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3099,'11625','Bevagna','BEVAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3100,'40088','Bevaix','BEVAIX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3101,'24715','Beveren','BEVEREN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3102,'27333','Bevergern','BEVERGERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3103,'7613','Beverley','BEVERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3104,'21314','Beverly','BEVERLY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3105,'23136','Bevers','BEVERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3106,'27334','Beverungen','BEVERUNGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3107,'40783','Bevilacqua','BEVILACQUA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3108,'7614','Bewdley','BEWDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3109,'23137','Bex','BEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3110,'7615','Bexhill','BEXHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3111,'29258','Bexley','BEXLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3112,'7616','Bexley','BEXLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3113,'7617','Bexleyheath','BEXLEYHEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3114,'17282','Beylerbeyi','BEYLERBEYI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3115,'37469','Beylikduzu','BEYLIKDUZU',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3116,'43967','Beynat','BEYNAT',NULL,'','France','',0,0,76,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3117,'6583','Beynost','BEYNOST',NULL,'','France','',0,0,76,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3118,'17198','Beyoglu - Taksim','BEYOGLU - TAKSIM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3119,'10498','Beypore','BEYPORE',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3120,'5797','Bezancourt','BEZANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3121,'24512','Bezau','BEZAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3122,'4933','Beziers','BEZIERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3123,'4670','Bezons','BEZONS',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3124,'15047','Bhadrapur','BHADRAPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3125,'15048','Bhairahawa','BHAIRAHAWA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3126,'15049','Bhaktapur','BHAKTAPUR',NULL,'','Nepal','Bhaktapur',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3127,'13552','Bhamdoun','BHAMDOUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3128,'42067','Bhamo','BHAMO',NULL,'','Myanmar','',0,0,150,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3129,'15050','Bharatpur','BHARATPUR',NULL,'','Nepal','Travel Packages to Bharatpur | Bharatpur Tour Pack',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3130,'10499','Bharatpur','BHARATPUR',NULL,'','India','Travel Packages to Bharatpur | Bharatpur Tour Pack',2,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3131,'40804','Bharuch','BHARUCH',NULL,'','India','Bharuch',16,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3132,'10500','Bhatinda','BHATINDA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3133,'10632','Bhavnagar','BHAVNAGAR',NULL,'','India','Bhavnagar',16,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3134,'39614','Bhedaghat','BHEDAGHAT',NULL,'','India','Bhedaghat',15,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3135,'40682','Bheeramballi','BHEERAMBALLI',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3136,'42613','Bhenswara','BHENSWARA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3137,'37655','Bhijhariya','BHIJHARIYA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3138,'37615','Bhimtal','BHIMTAL',NULL,'','India','Bhimtal',9,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3139,'10648','Bhopal','BHOPAL',NULL,'','India','Bhopal',15,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3141,'10392','Bhubaneswar','BHUBANESWAR',NULL,'','India','',8,0,101,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3142,'10633','Bhuj','BHUJ',NULL,'','India','Bhuj',16,0,101,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3143,'15294','Bhurban','BHURBAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3144,'25254','Bhutan city','BHUTAN',NULL,'','Bhutan','',0,0,25,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3145,'10307','Biak','BIAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3146,'39922','Biala Piska','BIALA PISKA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3147,'26099','Bialet Masse','BIALET MASSE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3148,'15690','Bialobrzegi','BIALOBRZEGI',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3149,'15606','Bialowieza','BIALOWIEZA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3150,'15719','Bialystok','BIALYSTOK',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3151,'11626','Biandronno','BIANDRONNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3152,'3740','Biar','BIAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3153,'5152','Biarritz','BIARRITZ',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3154,'6071','Biars-sur-cere','BIARS-SUR-CERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3155,'5153','Bias','BIAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3156,'23138','Biasca','BIASCA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3157,'37678','Biatorbagy','BIATORBAGY',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3158,'11627','Bibbiena','BIBBIENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3159,'11628','Bibbona','BIBBONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3160,'103','Biberach An Der Riss','BIBERACH AN DER RISS',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3161,'24447','Biberwier','BIBERWIER',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3162,'12874','Bibione','BIBIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3163,'42142','Biboohra','BIBOOHRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3164,'7618','Bibury','BIBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3165,'7619','Bicester','BICESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3166,'26827','Bicheno','BICHENO',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3167,'6919','Bicker Bar','BICKER BAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3168,'26187','Bickerton Island','BICKERTON ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3169,'33303','Bicknell','BICKNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3170,'39047','Bidadi','BIDADI',NULL,'','India','',0,0,101,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3171,'5154','Bidarray','BIDARRAY',NULL,'','France','',0,0,76,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3172,'5155','Bidart','BIDART',NULL,'','France','',0,0,76,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3173,'21832','Biddeford','BIDDEFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3174,'7620','Biddenden','BIDDENDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3175,'7621','Bideford','BIDEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3176,'37750','Bidegoyan','BIDEGOYAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3177,'404','Biedenkopf','BIEDENKOPF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3178,'40507','Biederbach','BIEDERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3179,'23448','Biel','BIEL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3180,'39584','Bielawa','BIELAWA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3181,'7622','Bieldside','BIELDSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3182,'27335','Bielefeld','BIELEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3183,'11629','Biella','BIELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3184,'3317','Bielsa','BIELSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3185,'15608','Bielsko-biala','BIELSKO-BIALA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3186,'44287','Bien Hoa','BIEN HOA',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3187,'11630','Bientina','BIENTINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3188,'24411','Bierbaum','BIERBAUM',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3189,'3318','Bierge','BIERGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3190,'105','Bierhuette','BIERHUETTE',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3191,'611','Biersdorf','BIERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3192,'3319','Biescas','BIESCAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3193,'612','Biesdorf','BIESDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3194,'4671','Bievres','BIEVRES',NULL,'','France','',0,0,76,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3195,'21994','Big Bay','BIG BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3196,'34449','Big Trout Lake','BIG TROUT LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:07','1900-01-01 00:00:00',1,0,1),(3197,'5156','Biganos','BIGANOS',NULL,'','France','',0,0,76,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3198,'27938','Bigfork','BIGFORK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3199,'22939','Biggar','BIGGAR',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3200,'7623','Biggar','BIGGAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3201,'26660','Biggera Waters','BIGGERA WATERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3202,'7624','Biggin Hill','BIGGIN HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3203,'7625','Biggleswade','BIGGLESWADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3204,'29619','Biggs Junction','BIGGS JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3205,'44207','Bigha','BIGHA',NULL,'','India','',0,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3206,'42345','Biguglia','BIGUGLIA',NULL,'','France','',0,0,76,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3207,'40073','Bihac','BIHAC',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3208,'42607','Bijapur','BIJAPUR',NULL,'','India','Bijapur',17,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3209,'10669','Bikaner','BIKANER',NULL,'','India','Bikaner',2,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3210,'14147','Bikini Atoll','BIKINI ATOLL',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3211,'37229','Bílá Tremesná','BÍLÁ TREMESNÁ',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3212,'10501','Bilaspur','BILASPUR',NULL,'','India','',0,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3213,'3701','Bilbao','BILBAO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3214,'35036','Bilbao-baracaldo','BILBAO-BARACALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3215,'35080','Bilbao-santurce','BILBAO-SANTURCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3216,'7626','Bilbrough','BILBROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3217,'11019','Bildudalur','BILDUDALUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3218,'17264','Bilecik','BILECIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3219,'5157','Billere','BILLERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3220,'21315','Billerica','BILLERICA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3221,'9255','Billesley','BILLESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3222,'5517','Billiers','BILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3223,'27939','Billings','BILLINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3224,'7627','Billingshurst','BILLINGSHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3225,'7628','Billington','BILLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3226,'378','Billstedt','BILLSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3227,'2115','Billum','BILLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3228,'2256','Billund','BILLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3229,'26384','Biloela','BILOELA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3230,'27830','Biloxi','BILOXI',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3231,'34100','Bilpin','BILPIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3232,'10347','Bima','BIMA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3233,'24849','Bimini','BIMINI',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3234,'15529','Binangonan','BINANGONAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3235,'11631','Binasco','BINASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3236,'106','Bindlach','BINDLACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3237,'2116','Bindslev','BINDSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3238,'38247','Bine El Ouidane','BINE EL OUIDANE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3239,'7629','Binfield','BINFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3240,'107','Bingen','BINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3241,'7630','Bingham','BINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3242,'21833','Bingham','BINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3243,'28639','Binghamton','BINGHAMTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3244,'7631','Bingley','BINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3245,'17265','Bingol','BINGOL',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3246,'38419','Binic','BINIC',NULL,'','France','',0,0,76,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3247,'2534','Binissaida','BINISSAIDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3248,'2535','Binissalem','BINISSALEM',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3249,'108','Binnenland','BINNENLAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3250,'23139','Binningen','BINNINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3251,'37249','Binsar','BINSAR',NULL,'','India','',0,0,101,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3252,'1761','Bintan','BINTAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3253,'14374','Bintulu','BINTULU',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3254,'36041','Binz','BINZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3255,'32637','Binza','BINZA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3256,'39948','Binzen','BINZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3257,'43818','Binzhou','BINZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3258,'10008','Biograd Na Moru','BIOGRAD NA MORU',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3259,'6394','Biot','BIOT',NULL,'','France','',0,0,76,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3260,'17150','Bir El Bey','BIR EL BEY',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3261,'15051','Biratnagar','BIRATNAGAR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3262,'7632','Birch','BIRCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3263,'17571','Birch Creek','BIRCH CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3264,'31698','Birchwood','BIRCHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3265,'29825','Bird In Hand','BIRD IN HAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3266,'16913','Bird Island','BIRD ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3267,'7633','Birdlip','BIRDLIP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3268,'25582','Birds Hill','BIRDS HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3269,'29826','Birdsboro','BIRDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3270,'26385','Birdsville','BIRDSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3271,'38109','Birgitz','BIRGITZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3272,'42637','Birigui','BIRIGUI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3273,'2271','Birk','BIRK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3274,'7634','Birkenhead','BIRKENHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3275,'15090','Birkenhead','BIRKENHEAD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3276,'756','Birkenwerder','BIRKENWERDER',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3277,'2168','Birkerod','BIRKEROD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3278,'23140','Birmensdorf','BIRMENSDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3279,'7635','Birmingham','BIRMINGHAM',NULL,'','United Kingdom','Birmingham ',0,0,229,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3280,'17840','Birmingham','BIRMINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3281,'10919','Birr','BIRR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3282,'24227','Birri','BIRRI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3283,'23141','Birsfelden','BIRSFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3284,'40628','Birstonas','BIRSTONAS',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3285,'7636','Birtley','BIRTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3286,'16387','Biryulevo','BIRYULEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3287,'18106','Bisbee','BISBEE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3288,'4963','Biscarrosse','BISCARROSSE',NULL,'','France','',0,0,76,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3289,'11632','Bisceglie','BISCEGLIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3290,'39666','Bischofsgrun','BISCHOFSGRUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3291,'37590','Bischwihr','BISCHWIHR',NULL,'','France','',0,0,76,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3292,'33778','Biscoe','BISCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3293,'16487','Bisha','BISHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3294,'13446','Bishkek','BISHKEK',NULL,'','Kyrgyzstan','',0,0,117,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3295,'32437','Bisho','BISHO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3296,'18315','Bishop','BISHOP',NULL,'','United States','',0,0,231,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3297,'7637','Bishop Auckland','BISHOP AUCKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3298,'15091','Bishopdale','BISHOPDALE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3299,'40377','Bishops Castle','BISHOPS CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3300,'6922','Bishop\'s Stortford','BISHOP\'S STORTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3301,'32438','Bishopscourt','BISHOPSCOURT',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3302,'7638','Bishopsteignton','BISHOPSTEIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3303,'37932','Bishopston','BISHOPSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3304,'7639','Bishopstone','BISHOPSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3305,'7640','Bishopton','BISHOPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3306,'30293','Bishopville','BISHOPVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3307,'38778','Biskra','BISKRA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3308,'15499','Bislig','BISLIG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3309,'17988','Bismarck','BISMARCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3310,'40187','Bispingen','BISPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3311,'9392','Bissau','BISSAU',NULL,'','Guinea-Bissau','',0,0,93,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3312,'27182','Bissendorf','BISSENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3313,'23142','Bissone','BISSONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3314,'36616','Bistrita','BISTRITA',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3315,'6837','Bitam','BITAM',NULL,'','Gabon','',0,0,80,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3316,'613','Bitburg','BITBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3317,'40071','Bitche','BITCHE',NULL,'','France','',0,0,76,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3318,'17268','Bitlis','BITLIS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3319,'38412','Bitonto','BITONTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3320,'1872','Bitterfeld','BITTERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3321,'109','Bitterfeld-wolfen','BITTERFELD-WOLFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3322,'11633','Bitti','BITTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3323,'11634','Bivigliano','BIVIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3324,'23143','Bivio','BIVIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3325,'22321','Biwabik','BIWABIK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3326,'32879','Bixby','BIXBY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3327,'5895','Bize-minervois','BIZE-MINERVOIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3328,'17166','Bizerte','BIZERTE',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3329,'14791','Bjerke','BJERKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3330,'14792','Bjerkvik','BJERKVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3331,'2336','Bjerringbro','BJERRINGBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3332,'40736','Bjuv','BJUV',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3333,'7641','Blaby','BLABY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3334,'6923','Black Bourton','BLACK BOURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3335,'29620','Black Butte Ranch','BLACK BUTTE RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3336,'1351','Black Forest','BLACK FOREST',NULL,'','GERMANY','',38,0,83,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3337,'25698','Black Point','BLACK POINT',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3338,'43644','Black River','BLACK RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3339,'17134','Black Rock','BLACK ROCK',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3340,'25248','Black Rock','BLACK ROCK',NULL,'','Barbados','',0,0,19,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3341,'1188','Black Sea Coast','BLACK SEA COAST',NULL,'','ROMANIA','',0,0,179,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3342,'26386','Blackall','BLACKALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3343,'7642','Blackawton','BLACKAWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3344,'6924','Blackbeck','BLACKBECK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3345,'7643','Blackburn','BLACKBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3346,'26188','Blackburn','BLACKBURN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3347,'26661','Blackbutt','BLACKBUTT',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3348,'25395','Blackcomb - Upper Village','BLACKCOMB - UPPER VILLAGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3349,'22322','Blackduck','BLACKDUCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3350,'20331','Blackfoot','BLACKFOOT',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3351,'32993','Blackhawk','BLACKHAWK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3352,'34101','Blackheath','BLACKHEATH',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3353,'32553','Blackheath','BLACKHEATH',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3354,'7644','Blackpool','BLACKPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3355,'1187','Blackpool','BLACKPOOL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3356,'26662','Blacks Beach','BLACKS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3357,'31044','Blacksburg','BLACKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3358,'38635','Blackshear','BLACKSHEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3359,'31046','Blackstone','BLACKSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3360,'34102','Blacktown','BLACKTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3361,'7645','Blackwater','BLACKWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3362,'26387','Blackwater','BLACKWATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3363,'7646','Blackwaterfoot','BLACKWATERFOOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3364,'32880','Blackwell','BLACKWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3365,'19713','Blackwells','BLACKWELLS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3366,'28203','Blackwood','BLACKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3367,'37626','Blackwood','BLACKWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3368,'42369','Bladel','BLADEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3369,'21644','Bladensburg','BLADENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3370,'4151','Blagnac','BLAGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3371,'34856','Blagoevgrad','BLAGOEVGRAD',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3372,'16254','Blagoveschensk','BLAGOVESCHENSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3373,'22323','Blaine','BLAINE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3374,'25955','Blainville','BLAINVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3375,'39857','Blainville-sur-mer','BLAINVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3376,'28103','Blair','BLAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3377,'26361','Blair Athol','BLAIR ATHOL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3378,'7647','Blair Atholl','BLAIR ATHOLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3379,'7648','Blairgowrie','BLAIRGOWRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3380,'25275','Blairmore','BLAIRMORE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3381,'18316','Blairsden','BLAIRSDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3382,'18317','Blairsden-graeagle','BLAIRSDEN-GRAEAGLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3383,'28204','Blairstown','BLAIRSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3384,'19714','Blairsville','BLAIRSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3385,'5441','Blaisy-bas','BLAISY-BAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3386,'16211','Blaj','BLAJ',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3387,'34103','Blakehurst','BLAKEHURST',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3388,'34714','Blakeland','BLAKELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3389,'19715','Blakely','BLAKELY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3390,'7649','Blakeney','BLAKENEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3391,'29829','Blakeslee','BLAKESLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3392,'25956','Blanc Sablon','BLANC SABLON',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3393,'20332','Blanchard','BLANCHARD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3394,'10829','Blanchardstown','BLANCHARDSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3395,'26445','Blanche Town','BLANCHE TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3396,'42907','Blanchetown','BLANCHETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3397,'7650','Blanchland','BLANCHLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3398,'31047','Bland','BLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3399,'21316','Blandford','BLANDFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3400,'7651','Blandford Forum','BLANDFORD FORUM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3401,'33304','Blanding','BLANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3402,'33780','Blands','BLANDS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3403,'2463','Blanes','BLANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3404,'24721','Blankenberge','BLANKENBERGE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3405,'757','Blankenfelde','BLANKENFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3406,'5158','Blanquefort','BLANQUEFORT',NULL,'','France','',0,0,76,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3407,'17989','Blanton','BLANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3408,'14274','Blantyre','BLANTYRE',NULL,'','Malawi','',0,0,131,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3409,'10801','Blarney','BLARNEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3410,'28641','Blasdell','BLASDELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3411,'23144','Blatten','BLATTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3412,'22507','Blaubeuren','BLAUBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3413,'111','Blaustein','BLAUSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3414,'28643','Blauvelt','BLAUVELT',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3415,'7652','Blaydon On Tyne','BLAYDON ON TYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3416,'40495','Blaye','BLAYE',NULL,'','France','',0,0,76,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3417,'16627','Bled','BLED',NULL,'','Slovenia','Bled',0,0,192,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3418,'40405','Bledington','BLEDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3419,'22508','Bleibach','BLEIBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3420,'43756','Bleiburg','BLEIBURG',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3421,'16662','Blekinge','BLEKINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3422,'15068','Blenheim','BLENHEIM',NULL,'','New Zealand','Blenheim',0,0,157,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3423,'34450','Blenheim','BLENHEIM',NULL,'','Canada','Blenheim',0,0,39,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3424,'10709','Blessington','BLESSINGTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3425,'43795','Blind Bay','BLIND BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3426,'20333','Bliss','BLISS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3427,'21998','Blissfield','BLISSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3428,'35351','Blitar','BLITAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3429,'30241','Block Island','BLOCK ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3430,'7653','Blockley','BLOCKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3431,'32543','Bloemfontein','BLOEMFONTEIN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3432,'5622','Blois','BLOIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3433,'39232','Blokzijl','BLOKZIJL',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3434,'39438','Blomberg','BLOMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3435,'2186','Blommenslyst','BLOMMENSLYST',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3436,'5994','Blond','BLOND',NULL,'','France','',0,0,76,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3437,'11004','Blonduos','BLONDUOS',NULL,'','Iceland','Blonduos',0,0,100,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3438,'25583','Bloodvein','BLOODVEIN',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3439,'31700','Bloomer','BLOOMER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3440,'26663','Bloomfield','BLOOMFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3441,'28205','Bloomfield','BLOOMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3442,'34452','Bloomfield','BLOOMFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3443,'20452','Bloomingdale','BLOOMINGDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3444,'20453','Bloomington','BLOOMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3445,'29830','Bloomsburg','BLOOMSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3446,'7654','Bloomsbury','BLOOMSBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3447,'43808','Blossom Village','BLOSSOM VILLAGE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3448,'5046','Blotzheim','BLOTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3449,'32393','Bloubergstrand','BLOUBERGSTRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3450,'36713','Bloudan','BLOUDAN',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3451,'826','Blowatz','BLOWATZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3452,'25861','Blowing Point','BLOWING POINT',NULL,'','Anguilla','',0,0,7,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3453,'33781','Blowing Rock','BLOWING ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3454,'24513','Bludenz','BLUDENZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3455,'7655','Blue Anchor','BLUE ANCHOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3456,'29259','Blue Ash','BLUE ASH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3457,'14251','Blue Bay','BLUE BAY',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3458,'16943','Blue Hills','BLUE HILLS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:42:26','1900-01-01 00:00:00',1,0,1),(3459,'34104','Blue Mountains','BLUE MOUNTAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:26','1900-01-01 00:00:00',1,0,1),(3460,'25396','Blue River','BLUE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3461,'31048','Bluefield','BLUEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3462,'32439','Bluewater Bay','BLUEWATER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3463,'43631','Bluff','BLUFF',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3464,'33305','Bluff','BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3465,'29261','Bluffton','BLUFFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3466,'22509','Blumberg','BLUMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3467,'25176','Blumenau','BLUMENAU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3468,'7656','Blunsdon','BLUNSDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3469,'42962','Blyth','BLYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3470,'18320','Blythe','BLYTHE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3471,'17990','Blytheville','BLYTHEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3472,'30296','Blythewood','BLYTHEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3473,'43965','Bmbk','BMBK',NULL,'','France','',0,0,76,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3474,'14793','Bo','BO',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3475,'41205','Bo Phut','BO PHUT',NULL,'','Thailand','',0,0,215,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3476,'25173','Boa Vista','BOA VISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3477,'24141','Boa Vista','BOA VISTA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3478,'2982','Boadilla Del Monte','BOADILLA DEL MONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3479,'29832','Boalsburg','BOALSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3480,'42896','Boao','BOAO',NULL,'','China','',0,0,46,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3481,'23985','Bo\'ao','BO\'AO',NULL,'','China','',0,0,46,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3482,'29262','Boardman','BOARDMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3483,'11635','Boario Terme','BOARIO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3484,'26828','Boat Harbour','BOAT HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3485,'7657','Boat Of Garten','BOAT OF GARTEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3486,'15950','Boaventura','BOAVENTURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3487,'17843','Boaz','BOAZ',NULL,'','United States','',0,0,231,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3488,'4672','Bobigny','BOBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3489,'22719','Bobingen','BOBINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3490,'2054','Böblingen','BÖBLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3491,'24748','Bobo Dioulasso','BOBO DIOULASSO',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3492,'3655','Boboras','BOBORAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3493,'26134','Boca','BOCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3494,'2363','Boca Chica','BOCA CHICA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3495,'3435','Boca De Huergano','BOCA DE HUERGANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3496,'43982','Boca De Sabalos','BOCA DE SABALOS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3497,'13791','Boca Del Rio','BOCA DEL RIO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3498,'19273','Boca Grande','BOCA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3499,'43206','Bocairent','BOCAIRENT',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3500,'3741','Bocairente','BOCAIRENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3501,'15346','Bocas Del Toro','BOCAS DEL TORO',NULL,'','Panama','',0,0,169,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3502,'11131','Bocca Di Magra','BOCCA DI MAGRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3503,'35471','Boccheggiano','BOCCHEGGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3504,'11636','Bocenago','BOCENAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3505,'15685','Bochnia','BOCHNIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3506,'38766','Bocholt','BOCHOLT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3507,'2034','Bochum','BOCHUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3508,'27183','Bockenem','BOCKENEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3509,'22720','Bockhorn','BOCKHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3510,'1823','Bodega','BODEGA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3511,'14708','Bodegraven','BODEGRAVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3512,'7658','Bodelwyddan','BODELWYDDAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3513,'16749','Boden','BODEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3514,'22721','Bodenmais','BODENMAIS',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3515,'27069','Bodensdorf','BODENSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3517,'40840','Bodhgaya','BODHGAYA',NULL,'','India','',0,0,101,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3518,'27336','Bodingen','BODINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3519,'7659','Bodmin','BODMIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3520,'14913','Bodo','BODO',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3521,'17337','Bodrum','BODRUM',NULL,'','Turkey','Bodrum',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3522,'36805','Bodrum-gumbet','BODRUM-GUMBET',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3523,'36803','Bodrum-ortakent','BODRUM-ORTAKENT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3524,'36812','Bodrum-turgutreis','BODRUM-TURGUTREIS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3525,'36813','Bodrum-yaliciftlik','BODRUM-YALICIFTLIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3526,'13722','Boduhuraa','BODUHURAA',NULL,'','Maldives','',0,0,133,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3527,'37915','Bodyke','BODYKE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3528,'5159','Boe','BOE',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3529,'39792','Boebingen','BOEBINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3530,'112','Boeblingen','BOEBLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3531,'5160','Boeil-bezing','BOEIL-BEZING',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3532,'14744','Boekelo','BOEKELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3533,'4153','Boën','BOËN',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3534,'32625','Boende','BOENDE',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3535,'30479','Boerne','BOERNE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3536,'39811','Boffalora Sopra Ticino','BOFFALORA SOPRA TICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3537,'16710','Bofors','BOFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3538,'19718','Bogart','BOGART',NULL,'','United States','',0,0,231,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3539,'40111','Bogazici','BOGAZICI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3540,'22722','Bogen','BOGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3541,'2187','Bogense','BOGENSE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3542,'37334','Bogliasco','BOGLIASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3543,'39691','Bogno','BOGNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3544,'7660','Bognor Regis','BOGNOR REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3545,'10281','Bogor','BOGOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3546,'35369','Bogor-puncak','BOGOR-PUNCAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3547,'24078','Bogota','BOGOTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3548,'28647','Bohemia','BOHEMIA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3549,'43347','Bohinj','BOHINJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3550,'16628','Bohinjska Bela','BOHINJSKA BELA',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3551,'16621','Bohinjsko Jezero','BOHINJSKO JEZERO',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3552,'27337','Bohlen','BOHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3553,'38650','Bohmstedt','BOHMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3554,'1997','Bohnsdorf','BOHNSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3555,'36547','Bohol','BOHOL',NULL,'','Philippines','Bohol',0,0,173,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3556,'40627','Bohoyo','BOHOYO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3557,'41387','Boi','BOI',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3558,'28648','Boiceville','BOICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3559,'26189','Boigu Island','BOIGU ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3560,'29833','Boiling Springs','BOILING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3561,'41979','Boipeba','BOIPEBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3562,'22001','Bois Blanc Island','BOIS BLANC ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3563,'43143','Bois De Boulogne','BOIS DE BOULOGNE',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3564,'25957','Bois-chatel','BOIS-CHATEL',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3565,'4673','Bois-colombes','BOIS-COLOMBES',NULL,'','France','',0,0,76,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3566,'20334','Boise','BOISE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3567,'5798','Bois-guillaume','BOIS-GUILLAUME',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3568,'5623','Boismorand','BOISMORAND',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3569,'5624','Boisseaux','BOISSEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3570,'38306','Boisset','BOISSET',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3571,'43969','Boissy-saint-leger','BOISSY-SAINT-LEGER',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3572,'4154','Boissy-saint-léger','BOISSY-SAINT-LÉGER',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3573,'27184','Bokel','BOKEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3574,'42292','Bokissa Island','BOKISSA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3575,'10220','Bokondini','BOKONDINI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3576,'37776','Bokong','BOKONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3577,'32381','Boksburg','BOKSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3578,'9983','Bol','BOL',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3579,'26168','Bolans','BOLANS',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3580,'5799','Bolbec','BOLBEC',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3581,'7661','Boldon','BOLDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3582,'4008','Bole','BOLE',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3583,'15630','Boleslawiec','BOLESLAWIEC',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3584,'35473','Bolgheri','BOLGHERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3585,'44253','Bolifushi Island','BOLIFUSHI ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3586,'42940','Bolinao','BOLINAO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3587,'18322','Bolinas','BOLINAS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3588,'20456','Bolingbrook','BOLINGBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3589,'15920','Boliqueime','BOLIQUEIME',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3590,'27585','Bolivar','BOLIVAR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3591,'24939','Bolivia','BOLIVIA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3592,'11637','Bollate','BOLLATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3593,'614','Bollendorf','BOLLENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3594,'6395','Bollene','BOLLENE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3595,'6150','Bollezeele','BOLLEZEELE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3596,'16696','Bollnas','BOLLNAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3597,'3192','Bollullos De La Mitacion','BOLLULLOS DE LA MITACION',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3598,'6756','Bollwiller','BOLLWILLER',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3599,'7662','Bolney','BOLNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3600,'12715','Bologna','BOLOGNA',NULL,'','Italy','Bologna',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3601,'35444','Bologna-castel Maggi','BOLOGNA-CASTEL MAGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3602,'39238','Bolognetta','BOLOGNETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3603,'43737','Bolpur','BOLPUR',NULL,'','India','',0,0,101,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3604,'5896','Bolquere','BOLQUERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3605,'11638','Bolsena','BOLSENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3606,'3320','Boltana','BOLTANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3607,'827','Boltenhagen','BOLTENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3608,'40044','Boltiere','BOLTIERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3609,'23145','Boltigen','BOLTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3610,'7663','Bolton','BOLTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3611,'1193','Bolton','BOLTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3612,'28649','Bolton Landing','BOLTON LANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3613,'17272','Bolu','BOLU',NULL,'','Turkey','Bolu',0,0,222,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3614,'3522','Bolvir','BOLVIR',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3615,'12862','Bolzano','BOLZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3616,'15793','Bom Jesus Do Monte','BOM JESUS DO MONTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3617,'32626','Boma','BOMA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3618,'34105','Bomaderry','BOMADERRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3619,'41667','Bombarral','BOMBARRAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3620,'972','Bombinhas','BOMBINHAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3621,'31299','Bomoseen','BOMOSEEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3622,'14999','Bon','BON',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3623,'25276','Bon Accord','BON ACCORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3624,'23146','Bonaduz','BONADUZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3625,'25886','Bonaire','BONAIRE',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3626,'405','Bonames','BONAMES',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3627,'40171','Bonassola','BONASSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3628,'39715','Bonate Sopra','BONATE SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3629,'19275','Bonaventure','BONAVENTURE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3630,'25958','Bonaventure','BONAVENTURE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3631,'24669','Boncelles','BONCELLES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3632,'6216','Bonchamp-les-laval','BONCHAMP-LES-LAVAL',NULL,'','France','',0,0,76,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3633,'7665','Bonchurch','BONCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3634,'26640','Bond Springs','BOND SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3635,'34106','Bondi','BONDI',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3636,'6151','Bondues','BONDUES',NULL,'','France','',0,0,76,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3637,'31300','Bondville','BONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3638,'37818','Bonefro','BONEFRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3639,'25020','Bonfim','BONFIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3640,'30480','Bonham','BONHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3641,'24605','Bonheiden','BONHEIDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3642,'5761','Bonifacio','BONIFACIO',NULL,'','France','',0,0,76,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3643,'11639','Bonifati','BONIFATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3644,'19276','Bonifay','BONIFAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3645,'23147','Bonigen','BONIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3646,'18323','Bonita','BONITA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3647,'25072','Bonito','BONITO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3648,'27338','Bonn','BONN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3649,'5995','Bonnat','BONNAT',NULL,'','France','',0,0,76,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3650,'22510','Bonndorf','BONNDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3651,'27586','Bonne Terre','BONNE TERRE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3652,'113','Bonneberg','BONNEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3653,'21030','Bonner Springs','BONNER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3654,'20337','Bonners Ferry','BONNERS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3655,'5135','Bonneuil Sur Marne','BONNEUIL SUR MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3656,'43971','Bonneuil-en-france','BONNEUIL-EN-FRANCE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3657,'41577','Bonneuil-sur-marne','BONNEUIL-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3658,'5766','Bonnevaux-le-prieure','BONNEVAUX-LE-PRIEURE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3659,'5372','Bonneville-la-louvet','BONNEVILLE-LA-LOUVET',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3660,'6396','Bonnieux','BONNIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3661,'39020','Bonnya','BONNYA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3662,'7666','Bonnyrigg','BONNYRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3663,'25277','Bonnyville','BONNYVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3664,'5625','Bono','BONO',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3665,'7667','Bonsall','BONSALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3666,'18324','Bonsall','BONSALL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3667,'5800','Bonsecours','BONSECOURS',NULL,'','France','',0,0,76,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3668,'24969','Bonsucesso','BONSUCESSO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3669,'42791','Bontang','BONTANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3670,'6931','Bontddu','BONTDDU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3671,'7668','Bontnewydd','BONTNEWYDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3672,'34107','Bonville','BONVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3673,'10111','Bonyhad','BONYHAD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3674,'3119','Boo','BOO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3675,'7669','Bookham','BOOKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3676,'33783','Boone','BOONE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3677,'27832','Booneville','BOONEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3678,'28650','Boonville','BOONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3679,'10830','Booterstown','BOOTERSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3680,'21835','Boothbay','BOOTHBAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3681,'39847','Boothville','BOOTHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3682,'7670','Bootle','BOOTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3683,'114','Boppard','BOPPARD',NULL,'','Germany','Boppard',54,0,83,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3684,'15738','Boqueron','BOQUERON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3685,'15347','Boquete','BOQUETE',NULL,'','Panama','',0,0,169,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3686,'16114','Bora Bora','BORA BORA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3687,'15441','Boracay','BORACAY',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3688,'16880','Boras','BORAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3689,'25028','Borba','BORBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3690,'12875','Borca Di Cadore','BORCA DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3691,'28206','Bordentown','BORDENTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3692,'7671','Bordesley','BORDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3693,'11640','Bordighera','BORDIGHERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3694,'39246','Bordj Badji Mokhtar','BORDJ BADJI MOKHTAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3695,'6323','Bords','BORDS',NULL,'','France','',0,0,76,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3696,'7672','Borehamwood','BOREHAMWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3697,'2417','Borg El Arab','BORG EL ARAB',NULL,'','Egypt','',0,0,65,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3698,'10968','Borgarfjordur Eystri','BORGARFJORDUR EYSTRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3699,'11010','Borgarnes','BORGARNES',NULL,'','Iceland','Borgarnes',0,0,100,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3700,'1557','Borgaro','BORGARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3701,'30481','Borger','BORGER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3702,'14493','Borger','BORGER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3703,'828','Borgerende-rethwisch','BORGERENDE-RETHWISCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3704,'16727','Borgholm','BORGHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3705,'38724','Borgia','BORGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3706,'38032','Borglum','BORGLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3707,'4674','Borgo','BORGO',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3708,'41017','Borgo S Lorenzo','BORGO S LORENZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3709,'11643','Borgomale','BORGOMALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3710,'40442','Borgomanero','BORGOMANERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3711,'39297','Borispol','BORISPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3712,'17141','Borj Cedria','BORJ CEDRIA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3713,'27185','Borkum','BORKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3714,'16738','Borlange','BORLANGE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3715,'1601','Bormes Les Mimosas','BORMES LES MIMOSAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3716,'6397','Bormes-les-mimosas','BORMES-LES-MIMOSAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3717,'11644','Bormio','BORMIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3718,'3193','Bormujos','BORMUJOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3719,'14567','Born','BORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3720,'1787','Borneo Highlands','BORNEO HIGHLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3721,'406','Bornheim','BORNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3722,'2117','Bornholm','BORNHOLM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3723,'10294','Borobudur','BOROBUDUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3724,'26388','Bororen','BOROREN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3725,'7673','Boroughbridge','BOROUGHBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3726,'24811','Borovets','BOROVETS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3727,'2257','Borre','BORRE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3728,'18326','Borrego Springs','BORREGO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3729,'11645','Borrello','BORRELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3730,'11646','Borro','BORRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3731,'26373','Borroloola','BORROLOOLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3732,'36615','Bors','BORS',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3733,'4157','Bort-l Etang','BORT-L ETANG',NULL,'','France','',0,0,76,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3734,'5996','Bort-les-orgues','BORT-LES-ORGUES',NULL,'','France','',0,0,76,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3735,'3957','Bortre Tolo','BORTRE TOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3736,'42770','Borxbourne','BORXBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3737,'11647','Borzonasca','BORZONASCA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3738,'14624','Bos En Lommer','BOS EN LOMMER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3739,'11648','Bosa','BOSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3740,'24131','Bosa','BOSA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3741,'7674','Boscastle','BOSCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3742,'39899','Boscawen','BOSCAWEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3743,'14677','Bosch En Duin','BOSCH EN DUIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3744,'11649','Bosco','BOSCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3745,'22999','Bosco Luganese','BOSCO LUGANESE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3746,'31701','Boscobel','BOSCOBEL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3747,'13094','Boscobel','BOSCOBEL',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3748,'7675','Boscombe','BOSCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3749,'40408','Boscotrecase','BOSCOTRECASE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3750,'27186','Bosen','BOSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3751,'39102','Bosham','BOSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3752,'32513','Boshoek','BOSHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3753,'36714','Bosra','BOSRA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3754,'14591','Bosschenhoofd','BOSSCHENHOOFD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3755,'38769','Bossico','BOSSICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3756,'21173','Bossier City','BOSSIER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3757,'2536','Bossost','BOSSOST',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3758,'17259','Bostanci','BOSTANCI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3759,'31049','Boston','BOSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3760,'9320','Boston','BOSTON',NULL,'','United Kingdom','Boston',0,0,229,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3761,'25015','Botafogo','BOTAFOGO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3762,'34108','Botany','BOTANY',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3763,'3523','Botarell','BOTARELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3764,'3958','Botby','BOTBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3765,'31445','Bothell','BOTHELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3766,'40753','Bothwell','BOTHWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3767,'29265','Botkins','BOTKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3768,'7676','Botley','BOTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3769,'36617','Botosani','BOTOSANI',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3770,'25267','Botswana','BOTSWANA',NULL,'','Botswana','',0,0,28,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3771,'28047','Bottineau','BOTTINEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3772,'16944','Bottle Creek','BOTTLE CREEK',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3773,'27339','Bottrop','BOTTROP',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3774,'42638','Botucatu','BOTUCATU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3775,'43566','Bou Saada','BOU SAADA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3776,'4974','Bouaye','BOUAYE',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3777,'43095','Bouc Bel Air','BOUC BEL AIR',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3778,'25959','Boucherville','BOUCHERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3779,'4158','Bouches Du Rhône','BOUCHES DU RHÔNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3780,'42694','Bouctouche','BOUCTOUCHE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3781,'23148','Boudevilliers','BOUDEVILLIERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3782,'15033','Boudha','BOUDHA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3783,'37501','Boufflers','BOUFFLERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3784,'7677','Boughton','BOUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3785,'4675','Bougival','BOUGIVAL',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3786,'4975','Bouguenais','BOUGUENAIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3787,'5442','Bouilland','BOUILLAND',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3788,'9377','Bouillante','BOUILLANTE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3789,'24693','Bouillon','BOUILLON',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3790,'9442','Boukari','BOUKARI',NULL,'','Greece','',0,0,86,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3791,'24042','Boukiero','BOUKIERO',NULL,'','Congo','',0,0,51,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3792,'4902','Boulazac','BOULAZAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3793,'6398','Boulbon','BOULBON',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3794,'27941','Boulder','BOULDER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3795,'38487','Boulder','BOULDER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3796,'18329','Boulevard','BOULEVARD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3797,'26389','Boulia','BOULIA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3798,'5161','Bouliac','BOULIAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3799,'4676','Boulogne-billancourt','BOULOGNE-BILLANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3800,'4159','Boulogne-sur-mer','BOULOGNE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3801,'41901','Bouloupari','BOULOUPARI',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3802,'6399','Boulouris-sur-mer','BOULOURIS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3803,'40549','Boumalne Dades','BOUMALNE DADES',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3804,'17572','Boundary','BOUNDARY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3805,'24043','Boundji','BOUNDJI',NULL,'','Congo','',0,0,51,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3806,'33307','Bountiful','BOUNTIFUL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3807,'42656','Bourail','BOURAIL',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3808,'4160','Bourbon Lancy','BOURBON LANCY',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3809,'43975','Bourbon-lancy','BOURBON-LANCY',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3810,'39960','Bourbon-larchambault','BOURBON-LARCHAMBAULT',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3811,'20457','Bourbonnais','BOURBONNAIS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3812,'5713','Bourbonne-les-bains','BOURBONNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3813,'5162','Bourdeilles','BOURDEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3814,'21174','Bourg','BOURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3815,'4161','Bourg Achard','BOURG ACHARD',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3816,'5997','Bourganeuf','BOURGANEUF',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3817,'24769','Bourgas','BOURGAS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3818,'6584','Bourg-de-peage','BOURG-DE-PEAGE',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3819,'38108','Bourg-doueil','BOURG-DOUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3820,'4831','Bourg-en-bresse','BOURG-EN-BRESSE',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3821,'5626','Bourges','BOURGES',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3822,'41575','Bourg-les-valence','BOURG-LES-VALENCE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3823,'5714','Bourgogne','BOURGOGNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3824,'4950','Bourgoin-jallieu','BOURGOIN-JALLIEU',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3825,'5163','Bourgougnague','BOURGOUGNAGUE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3826,'38767','Bourg-saint-andeol','BOURG-SAINT-ANDEOL',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3827,'5065','Bourg-saint-maurice','BOURG-SAINT-MAURICE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3828,'38256','Bourg-saint-pierre','BOURG-SAINT-PIERRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3829,'36232','Bourg-st Maurice','BOURG-ST MAURICE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3830,'5627','Bourgueil','BOURGUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3831,'34109','Bourke','BOURKE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3832,'21319','Bourne','BOURNE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3833,'1195','Bournemouth','BOURNEMOUTH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3834,'9238','Bournemouth','BOURNEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3835,'6217','Bournezeau','BOURNEZEAU',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3836,'13645','Bourscheid','BOURSCHEID',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3837,'5801','Bourth','BOURTH',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3838,'36295','Bourton-on-the-water','BOURTON-ON-THE-WATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3839,'6932','Bourton-on-water','BOURTON-ON-WATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3840,'40069','Boussaada','BOUSSAADA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3841,'5628','Boussay','BOUSSAY',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3842,'6072','Boussens','BOUSSENS',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3843,'4677','Boutigny-sur-essonne','BOUTIGNY-SUR-ESSONNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3844,'6073','Bouzies','BOUZIES',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3845,'40684','Bouznika','BOUZNIKA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3846,'38754','Bovalino','BOVALINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3847,'39876','Bovec','BOVEC',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3848,'14794','Boverbru','BOVERBRU',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3849,'6284','Boves','BOVES',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3850,'7680','Bovey Tracey','BOVEY TRACEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3851,'7681','Bovingdon','BOVINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3852,'11651','Bovisio Masciago','BOVISIO MASCIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3853,'37745','Bovolenta','BOVOLENTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3854,'32671','Bow','BOW',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3855,'41184','Bow Street','BOW STREET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3856,'6933','Bowburn','BOWBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3857,'7682','Bowdon','BOWDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3858,'26390','Bowen','BOWEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3859,'21645','Bowie','BOWIE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3860,'31703','Bowler','BOWLER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3861,'27588','Bowling Green','BOWLING GREEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3862,'28048','Bowman','BOWMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3863,'28651','Bowmansville','BOWMANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3864,'34453','Bowmanville','BOWMANVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3865,'42024','Bowmore','BOWMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3866,'25278','Bowness','BOWNESS',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3867,'43577','Bowness On Windermere','BOWNESS ON WINDERMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3868,'1530','Bowness-on-windermer','BOWNESS-ON-WINDERMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3869,'34110','Bowral','BOWRAL',NULL,'','Australia','Bowral',0,0,13,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3870,'25397','Bowser','BOWSER',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3871,'26488','Box Hill','BOX HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3872,'21320','Boxborough','BOXBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3873,'22723','Boxdorf','BOXDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3874,'31050','Boyce','BOYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3875,'29834','Boyertown','BOYERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3876,'18330','Boyes Hot Springs','BOYES HOT SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3877,'22002','Boyne City','BOYNE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3878,'19279','Boynton Beach','BOYNTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3879,'28104','Boys Town','BOYS TOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3880,'27942','Bozeman','BOZEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3881,'24804','Bozhentsi','BOZHENTSI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3882,'23674','Bozhou','BOZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3883,'24305','Bozi Dar','BOZI DAR',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3884,'19055','Bozrah','BOZRAH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3885,'1568','Bq','BQ',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3886,'2144','Brabrand','BRABRAND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3887,'9984','Brac','BRAC',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3888,'11653','Bracciano','BRACCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3889,'34454','Bracebridge','BRACEBRIDGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3890,'31051','Bracey','BRACEY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3891,'6285','Braches','BRACHES',NULL,'','France','',0,0,76,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3892,'5629','Bracieux','BRACIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3893,'32800','Bracken','BRACKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3894,'25398','Brackendale','BRACKENDALE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3895,'32440','Brackenfell','BRACKENFELL',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3896,'22511','Brackenheim','BRACKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3897,'30483','Brackettville','BRACKETTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3898,'7684','Brackley','BRACKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3899,'7685','Bracknell','BRACKNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3900,'26626','Braddon','BRADDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3901,'19281','Bradenton','BRADENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3902,'31301','Bradford','BRADFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3903,'7686','Bradford','BRADFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3904,'7687','Bradford-on-avon','BRADFORD-ON-AVON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3905,'33597','Bradfordsville','BRADFORDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3906,'20459','Bradley','BRADLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3907,'7688','Bradworthy','BRADWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3908,'30484','Brady','BRADY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3909,'7689','Brae','BRAE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3910,'2315','Braedstrup','BRAEDSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3911,'7690','Braemar','BRAEMAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3912,'15879','Braga','BRAGA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3913,'15887','Braganca','BRAGANCA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3914,'25279','Bragg Creek','BRAGG CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3915,'20460','Braidwood','BRAIDWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3916,'36618','Braila','BRAILA',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3917,'22327','Brainerd','BRAINERD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3918,'39440','Brain-sur-allonnes','BRAIN-SUR-ALLONNES',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3919,'7691','Braintree','BRAINTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3920,'21321','Braintree','BRAINTREE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3921,'7692','Braithwaite','BRAITHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3922,'32554','Brakpan','BRAKPAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3923,'5897','Bram','BRAM',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3924,'34455','Bramalea','BRAMALEA',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3925,'38875','Bramans','BRAMANS',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3926,'42768','Bramber','BRAMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3927,'7693','Bramhall','BRAMHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3928,'7694','Bramhope','BRAMHOPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3929,'37304','Bramhult','BRAMHULT',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3930,'39938','Bramley','BRAMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3931,'34456','Brampton','BRAMPTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3932,'27187','Bramsche','BRAMSCHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3933,'16212','Bran','BRAN',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3934,'28207','Branchburg','BRANCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3935,'25035','Branco','BRANCO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3936,'24514','Brand','BRAND',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3937,'2272','Brande','BRANDE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3938,'22512','Brandenburg','BRANDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3939,'33598','Brandenburg','BRANDENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3940,'758','Brandis','BRANDIS',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3941,'4678','Brando','BRANDO',NULL,'','France','',0,0,76,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3942,'3909','Brando','BRANDO',NULL,'','Finland','',0,0,75,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3943,'7696','Brandon','BRANDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3944,'27833','Brandon','BRANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3945,'25584','Brandon','BRANDON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3946,'6935','Brands Hatch','BRANDS HATCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3947,'43700','Brandsen','BRANDSEN',NULL,'','Argentina','',0,0,10,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3948,'32441','Brandwag','BRANDWAG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3949,'19056','Branford','BRANFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3950,'40094','Brannenburg','BRANNENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3951,'7697','Bransford','BRANSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3952,'27589','Branson','BRANSON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3953,'34457','Brantford','BRANTFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3954,'5164','Brantome','BRANTOME',NULL,'','France','',0,0,76,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3955,'5373','Branville','BRANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3956,'26489','Branxholme','BRANXHOLME',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3957,'2983','Braojos','BRAOJOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3958,'6400','Bras','BRAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3959,'41058','Bras De Alportel','BRAS DE ALPORTEL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3960,'19719','Braselton','BRASELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3961,'25152','Brasilia','BRASILIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3962,'24150','Brasilito','BRASILITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3963,'16213','Brasov','BRASOV',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3964,'40593','Brasparts','BRASPARTS',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3965,'5299','Brassac-les-mines','BRASSAC-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3966,'24606','Brasschaat','BRASSCHAAT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3967,'35353','Brastagi','BRASTAGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3968,'36697','Bratislava','BRATISLAVA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3969,'16320','Bratsk','BRATSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3970,'31303','Brattleboro','BRATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3971,'7698','Bratton Fleming','BRATTON FLEMING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3972,'615','Braubach','BRAUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3973,'27188','Braunlage','BRAUNLAGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3974,'38026','Braunsbach','BRAUNSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3975,'27189','Braunschweig','BRAUNSCHWEIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3976,'115','Braunschweiger Land','BRAUNSCHWEIGER LAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3977,'7699','Braunton','BRAUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3978,'23149','Braunwald','BRAUNWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3979,'4163','Bravone','BRAVONE',NULL,'','France','',0,0,76,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3980,'18331','Brawley','BRAWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3981,'10957','Bray','BRAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3982,'7700','Bray','BRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3983,'26888','Braybrook','BRAYBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3984,'38280','Bray-et-lû','BRAY-ET-LÛ',NULL,'','France','',0,0,76,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3985,'20830','Brazil','BRAZIL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3986,'24041','Brazzaville','BRAZZAVILLE',NULL,'','Congo','',0,0,51,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3987,'38008','Brcko','BRCKO',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3988,'18332','Brea','BREA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3989,'21175','Breaux Bridge','BREAUX BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3990,'11654','Brebbia','BREBBIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3991,'41183','Brechin','BRECHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3992,'22329','Breckenridge','BRECKENRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3993,'29267','Brecksville','BRECKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3994,'24339','Breclav','BRECLAV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3995,'7701','Brecon','BRECON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3996,'14592','Breda','BREDA',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3997,'2316','Bredal','BREDAL',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3998,'24722','Bredene','BREDENE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3999,'2317','Bredsten','BREDSTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4000,'20461','Breese','BREESE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4001,'29836','Breezewood','BREEZEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4002,'22330','Breezy Point','BREEZY POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4003,'24515','Bregenz','BREGENZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4004,'11655','Breguzzo','BREGUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4005,'1928','Brehna','BREHNA',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4006,'10969','Breiddalsvik','BREIDDALSVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4007,'43156','Breierley Hill','BREIERLEY HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4008,'37450','Breil','BREIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4009,'29837','Breinigsville','BREINIGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4010,'22513','Breisach','BREISACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4011,'116','Breitnau','BREITNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4012,'39545','Brekhovo','BREKHOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4013,'14887','Brekke','BREKKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4014,'40363','Brela','BRELA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4015,'40497','Brelidy','BRELIDY',NULL,'','France','',0,0,76,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4016,'38746','Brembate','BREMBATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4017,'20831','Bremen','BREMEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4018,'22514','Bremen','BREMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4019,'1714','Bremen-wehye','BREMEN-WEHYE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4020,'42714','Bremer Bay','BREMER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4021,'377','Bremerhaven','BREMERHAVEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4022,'31448','Bremerton','BREMERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4023,'15367','Brena','BRENA',NULL,'','Peru','',0,0,172,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4024,'39262','Brena Alta','BRENA ALTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4025,'30486','Brenham','BRENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4026,'7702','Brent','BRENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4027,'17844','Brent','BRENT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4028,'35476','Brenta River Area','BRENTA RIVER AREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4029,'11656','Brentonico','BRENTONICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4030,'33079','Brentwood','BRENTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4031,'7704','Brentwood','BRENTWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4032,'25399','Brentwood Bay','BRENTWOOD BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4033,'11657','Brescello','BRESCELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4034,'12783','Brescia','BRESCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4035,'11658','Bressanone','BRESSANONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4036,'43069','Bresso','BRESSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4037,'38376','Bresson','BRESSON',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4038,'6324','Bressuire','BRESSUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4039,'4911','Brest','BREST',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4040,'24899','Brest','BREST',NULL,'','Belarus','',0,0,20,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4041,'5518','Breteil','BRETEIL',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4042,'6218','Bretignolles-sur-mer','BRETIGNOLLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4043,'4679','Bretigny-sur-orge','BRETIGNY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4044,'5374','Bretoncelles','BRETONCELLES',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4045,'22515','Bretten','BRETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4046,'5375','Bretteville-sur-odon','BRETTEVILLE-SUR-ODON',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4047,'32673','Bretton Woods','BRETTON WOODS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4048,'1966','Breuberg','BREUBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4049,'41502','Breuil-cervinia','BREUIL-CERVINIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4050,'14678','Breukelen','BREUKELEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4051,'407','Breuna','BREUNA',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4052,'4164','Bréval','BRÉVAL',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4053,'33785','Brevard','BREVARD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4054,'5715','Breviandes','BREVIANDES',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4055,'17573','Brevig Mission','BREVIG MISSION',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4056,'5376','Breville-les-monts','BREVILLE-LES-MONTS',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4057,'5377','Breville-sur-mer','BREVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4058,'22004','Brevort','BREVORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4059,'34111','Brewarrina','BREWARRINA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4060,'21838','Brewer','BREWER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4061,'28654','Brewerton','BREWERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4062,'28655','Brewster','BREWSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4063,'17845','Brewton','BREWTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4064,'16595','Brezno','BREZNO',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4065,'33308','Brian Head','BRIAN HEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4066,'5630','Briancon','BRIANCON',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4067,'6401','Brianconnet','BRIANCONNET',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4068,'16255','Briansk','BRIANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4069,'28656','Briarcliff Manor','BRIARCLIFF MANOR',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4070,'38240','Briare','BRIARE',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4071,'11659','Briatico','BRIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4072,'28208','Brick','BRICK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4073,'5378','Bricquebec','BRICQUEBEC',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4074,'29622','Bridal Veil','BRIDAL VEIL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4075,'1608','Brides Les Bains','BRIDES LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4076,'6815','Brides-les-bains','BRIDES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4077,'7705','Bridestowe','BRIDESTOWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4078,'28657','Bridgehampton','BRIDGEHAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4079,'7707','Bridgend','BRIDGEND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4080,'31955','Bridgeport','BRIDGEPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4081,'27594','Bridgeton','BRIDGETON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4082,'25699','Bridgetown','BRIDGETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4083,'29268','Bridgetown','BRIDGETOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4084,'43638','Bridgetown','BRIDGETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4085,'25228','Bridgetown','BRIDGETOWN',NULL,'','Barbados','',0,0,19,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4086,'20463','Bridgeview','BRIDGEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4087,'19213','Bridgeville','BRIDGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4088,'32674','Bridgewater','BRIDGEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4089,'25700','Bridgewater','BRIDGEWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4090,'7708','Bridgnorth','BRIDGNORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4091,'7709','Bridgwater','BRIDGWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4092,'7710','Bridlington','BRIDLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4093,'7711','Bridport','BRIDPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4094,'43641','Bridport','BRIDPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4095,'41573','Brie-comte-robert','BRIE-COMTE-ROBERT',NULL,'','France','',0,0,76,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4096,'40654','Briedern','BRIEDERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4097,'14709','Brielle','BRIELLE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4098,'759','Brielow','BRIELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4099,'23150','Brienz','BRIENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4100,'43336','Brienzer Rothorn','BRIENZER ROTHORN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4101,'37423','Brierfield','BRIERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4102,'7712','Brierley Hill','BRIERLEY HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4103,'27190','Brietlingen','BRIETLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4104,'6022','Briey','BRIEY',NULL,'','France','',0,0,76,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4105,'23461','Brig','BRIG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4106,'28212','Brigantine','BRIGANTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4107,'7713','Brigg','BRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4108,'33309','Brigham City','BRIGHAM CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4109,'7714','Brighouse','BRIGHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4110,'26446','Bright','BRIGHT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4111,'34718','Brighton','BRIGHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4112,'7715','Brighton','BRIGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4113,'38647','Brightwood','BRIGHTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4114,'26977','Brigittenau','BRIGITTENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4115,'6585','Brignais','BRIGNAIS',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4116,'6402','Brignoles','BRIGNOLES',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4117,'27340','Brilon','BRILON',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4118,'21324','Brimfield','BRIMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4119,'22007','Brimley','BRIMLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4120,'14293','Brinchang','BRINCHANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4121,'6586','Brindas','BRINDAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4122,'12985','Brindisi','BRINDISI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4123,'21646','Brinkleigh','BRINKLEIGH',NULL,'','United States','',0,0,231,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4124,'17993','Brinkley','BRINKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4125,'27191','Brinkum','BRINKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4126,'26665','Brinsmead','BRINSMEAD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4127,'6219','Briollay','BRIOLLAY',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4128,'5300','Brion','BRION',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4129,'3656','Brion','BRION',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4130,'23151','Brione','BRIONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4131,'12791','Brione','BRIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4132,'11138','Brione, Piedmont','BRIONE, PIEDMONT',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4133,'39444','Brionne','BRIONNE',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4134,'40255','Brioude','BRIOUDE',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4135,'26666','Brisbane','BRISBANE',NULL,'','Australia','Brisbane',0,0,13,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4136,'18335','Brisbane','BRISBANE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4137,'35902','Brisbane-ascot','BRISBANE-ASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4138,'35903','Brisbane-boondall','BRISBANE-BOONDALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4139,'35904','Brisbane-hamilton','BRISBANE-HAMILTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4140,'35906','Brisbane-mt Ommaney','BRISBANE-MT OMMANEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4141,'35907','Brisbane-rocklea','BRISBANE-ROCKLEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4142,'35905','Brisbane-windsor','BRISBANE-WINDSOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4143,'30489','Briscoe','BRISCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4144,'11660','Brisighella','BRISIGHELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4145,'23152','Brissago','BRISSAGO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4146,'11661','Brissogne','BRISSOGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4147,'7716','Bristol','BRISTOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4148,'43794','British Columbia','BRITISH COLUMBIA',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4149,'32218','British Virgin Islands','BRITISH VIRGIN ISLANDS',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4150,'760','Britz','BRITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4151,'5998','Brive-la-gaillarde','BRIVE-LA-GAILLARDE',NULL,'','France','',0,0,76,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4152,'3436','Briviesca','BRIVIESCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4153,'39950','Brixen Im Thale','BRIXEN IM THALE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4154,'7717','Brixham','BRIXHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4155,'7718','Brixton','BRIXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4156,'7719','Brize Norton','BRIZE NORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4157,'24340','Brno','BRNO',NULL,'','Czech Republic','Brno',0,0,58,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4158,'16817','Bro','BRO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4159,'7720','Broad Chalke','BROAD CHALKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4160,'26668','Broadbeach','BROADBEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4161,'7721','Broadford','BROADFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4162,'26362','Broadmeadows','BROADMEADOWS',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4163,'7722','Broadstairs','BROADSTAIRS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4164,'27944','Broadus','BROADUS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4165,'20464','Broadview','BROADVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4166,'7723','Broadway','BROADWAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4167,'7724','Broadwell','BROADWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4168,'39225','Broadwindsor','BROADWINDSOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4169,'43846','Broby','BROBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4170,'2188','Brobyvaerk','BROBYVAERK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4171,'38186','Brocas','BROCAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4172,'25585','Brochet','BROCHET',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4173,'7725','Brockenhurst','BROCKENHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4174,'28663','Brockport','BROCKPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4175,'21325','Brockton','BROCKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4176,'34459','Brockville','BROCKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4177,'18336','Brockway','BROCKWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4178,'7726','Brockworth','BROCKWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4179,'31704','Brodhead','BRODHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4180,'29840','Brodheadsville','BRODHEADSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4181,'7727','Brodick','BRODICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4182,'31055','Brodnax','BRODNAX',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4183,'39363','Broekhuizen','BROEKHUIZEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4184,'32882','Broken Arrow','BROKEN ARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4185,'34114','Broken Hill','BROKEN HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4186,'11662','Brolo','BROLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4187,'7728','Bromborough','BROMBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4188,'9259','Bromley','BROMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4189,'33599','Bromley','BROMLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4190,'16862','Bromma','BROMMA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4191,'25960','Bromont','BROMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4192,'7730','Brompton Regis','BROMPTON REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4193,'7731','Bromsgrove','BROMSGROVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4194,'7732','Bromyard','BROMYARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4195,'6220','Bron','BRON',NULL,'','France','',0,0,76,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4196,'3321','Bronchales','BRONCHALES',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4197,'2118','Brondby','BRONDBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4198,'2205','Brondbyoster','BRONDBYOSTER',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4199,'38795','Bronderslev','BRONDERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4200,'11663','Broni','BRONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4201,'14914','Bronnoysund','BRONNOYSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4202,'15644','Bronowice','BRONOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4203,'2228','Bronshoj','BRONSHOJ',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4204,'39942','Bronte','BRONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4205,'43683','Bronte Park','BRONTE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4206,'28664','Bronx','BRONX',NULL,'','United States','',0,0,231,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4207,'28665','Bronxville','BRONXVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4208,'30490','Brookeland','BROOKELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4209,'31305','Brookfield','BROOKFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4210,'19721','Brookhaven','BROOKHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4211,'32995','Brookings','BROOKINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4212,'19197','Brookland','BROOKLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4213,'25586','Brooklands','BROOKLANDS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4214,'21647','Brooklandville','BROOKLANDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4215,'28213','Brooklawn','BROOKLAWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4216,'42140','Brooklet','BROOKLET',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4217,'21840','Brooklin','BROOKLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4218,'21326','Brookline','BROOKLINE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4219,'22008','Brooklyn','BROOKLYN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4220,'26793','Brooklyn Park','BROOKLYN PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4221,'31056','Brookneal','BROOKNEAL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4222,'25280','Brooks','BROOKS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4223,'33600','Brooks','BROOKS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4224,'30491','Brookshire','BROOKSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4225,'30492','Brookside Village','BROOKSIDE VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4226,'21841','Brooksville','BROOKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4227,'34115','Brookvale','BROOKVALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4228,'29842','Brookville','BROOKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4229,'29843','Broomall','BROOMALL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4230,'26951','Broome','BROOME',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4231,'34719','Broomfield','BROOMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4232,'7733','Broompark','BROOMPARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4233,'9327','Broomsgrove','BROOMSGROVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4234,'7734','Brora','BRORA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4235,'38538','Brorup','BRORUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4236,'7735','Broseley','BROSELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4237,'25961','Brossard','BROSSARD',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4238,'41780','Brotas','BROTAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4239,'3322','Broto','BROTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4240,'42461','Brotterode','BROTTERODE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4241,'7736','Brotton','BROTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4242,'40913','Broughton','BROUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4243,'25789','Broughton Island','BROUGHTON ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4244,'7739','Broughty Ferry','BROUGHTY FERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4245,'43709','Broulee','BROULEE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4246,'41818','Broumana','BROUMANA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4247,'21177','Broussard','BROUSSARD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4248,'2235','Brovst','BROVST',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4249,'30493','Brownfield','BROWNFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4250,'20833','Brownsburg','BROWNSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4251,'25962','Brownsburg-chatham','BROWNSBURG-CHATHAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4252,'20834','Brownstown','BROWNSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4253,'30496','Brownwood','BROWNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4254,'7740','Broxbourne','BROXBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4255,'37671','Broxburn','BROXBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4256,'7741','Broxted','BROXTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4257,'7742','Broxton','BROXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4258,'3632','Brozas','BROZAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4259,'5014','Bruay La Buissiere','BRUAY LA BUISSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4260,'41810','Bruay-la-buissiere','BRUAY-LA-BUISSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4261,'6152','Bruay-sur-l\'escaut','BRUAY-SUR-L\'ESCAUT',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4262,'27835','Bruce','BRUCE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4263,'15182','Bruce Bay','BRUCE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4264,'22516','Bruchsal','BRUCHSAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4265,'853','Bruck An Der Glockne','BRUCK AN DER GLOCKNE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4266,'11664','Brucoli','BRUCOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4267,'117','Brueggen','BRUEGGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4268,'118','Bruehl','BRUEHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4269,'6940','Bruera','BRUERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4270,'11665','Brufa','BRUFA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4271,'41600','Brufut','BRUFUT',NULL,'','Gambia','',0,0,81,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4272,'24723','Bruges','BRUGES',NULL,'','Belgium','Bruges',0,0,21,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4273,'42305','Brugg','BRUGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4274,'44128','Bruggen','BRUGGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4275,'12739','Brugnera','BRUGNERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4276,'41026','Bruhl','BRUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4277,'11666','Bruino','BRUINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4278,'42021','Bruma','BRUMA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4279,'11667','Brumano','BRUMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4280,'38935','Brummen','BRUMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4281,'3959','Brunakarr','BRUNAKARR',NULL,'','Finland','',0,0,75,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4282,'11668','Brunate','BRUNATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4283,'25253','Brunei','BRUNEI',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4284,'14387','Brunei','BRUNEI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4285,'6403','Brunet','BRUNET',NULL,'','France','',0,0,76,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4286,'2984','Brunete','BRUNETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4287,'11669','Brunico','BRUNICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4288,'22517','Brunlisbach','BRUNLISBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4289,'27098','Brunn Am Gebirge','BRUNN AM GEBIRGE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4290,'23153','Brunnen','BRUNNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4291,'16663','Brunnsviken','BRUNNSVIKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4292,'40068','Brunnthal','BRUNNTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4293,'6941','Brunstane','BRUNSTANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4294,'26490','Brunswick','BRUNSWICK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4295,'29275','Brunswick','BRUNSWICK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4296,'43653','Bruny Island','BRUNY ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4297,'2537','Brunyola','BRUNYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4298,'13018','Brusaporto','BRUSAPORTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4299,'616','Bruschied','BRUSCHIED',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4300,'34720','Brush','BRUSH',NULL,'','United States','',0,0,231,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4301,'13019','Brusimpiano','BRUSIMPIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4302,'970','Brusque','BRUSQUE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4303,'39448','Brusque','BRUSQUE',NULL,'','France','',0,0,76,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4304,'24602','Brussels','BRUSSELS',NULL,'','Belgium','Brussels',0,0,21,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4305,'38034','Brusson','BRUSSON',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4306,'4165','Bruyères','BRUYÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4307,'5519','Bruz','BRUZ',NULL,'','France','',0,0,76,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4308,'30498','Bryan','BRYAN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4309,'27596','Bryant','BRYANT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4310,'21651','Bryantown','BRYANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4311,'33311','Bryce Canyon','BRYCE CANYON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4312,'14952','Bryn','BRYN',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4313,'14965','Bryne','BRYNE',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4314,'41181','Brynsiencyn','BRYNSIENCYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4315,'33788','Bryson City','BRYSON CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4316,'4680','Bry-sur-marne','BRY-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4317,'43174','Bsalim','BSALIM',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4318,'40622','Bsharri','BSHARRI',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4319,'9393','Bubaque','BUBAQUE',NULL,'','Guinea-Bissau','',0,0,93,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4320,'22518','Bubenbach','BUBENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4321,'3194','Bubion','BUBION',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4322,'4681','Buc','BUC',NULL,'','France','',0,0,76,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4323,'36564','Bucaco','BUCACO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4324,'24124','Bucaramanga','BUCARAMANGA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4325,'26392','Bucasia','BUCASIA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4326,'40496','Buccleuch','BUCCLEUCH',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4327,'14052','Bucerias','BUCERIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4328,'33083','Buchanan','BUCHANAN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4329,'16201','Bucharest','BUCHAREST',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4330,'36632','Bucharest-otopeni','BUCHAREST-OTOPENI',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4331,'22520','Buchen','BUCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4332,'22724','Buchenberg','BUCHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4333,'13482','Bucheon','BUCHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4334,'41571','Bucheres','BUCHERES',NULL,'','France','',0,0,76,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4335,'11670','Bucine','BUCINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4336,'7743','Buckden','BUCKDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4337,'27192','Buckeburg','BUCKEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4338,'18107','Buckeye','BUCKEYE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4339,'21652','Buckeystown','BUCKEYSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4340,'7744','Buckfastleigh','BUCKFASTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4341,'31958','Buckhannon','BUCKHANNON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4342,'19724','Buckhead','BUCKHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4343,'33602','Buckhorn','BUCKHORN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4344,'34460','Buckhorn','BUCKHORN',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4345,'7745','Buckhurst Hill','BUCKHURST HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4346,'7746','Buckie','BUCKIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4347,'7747','Buckingham','BUCKINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4348,'29844','Buckingham','BUCKINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4349,'6942','Buckinghamshire','BUCKINGHAMSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4350,'6943','Buckland','BUCKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4351,'17574','Buckland','BUCKLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4352,'31450','Buckley','BUCKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4353,'761','Buckow','BUCKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4354,'7748','Bucksburn','BUCKSBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4355,'33084','Bucksnort','BUCKSNORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4356,'21843','Bucksport','BUCKSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4357,'29279','Bucyrus','BUCYRUS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4358,'30500','Buda','BUDA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4359,'40196','Budakeszi','BUDAKESZI',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4360,'10098','Budaors','BUDAORS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4361,'10085','Budapest','BUDAPEST',NULL,'','Hungary','Budapest',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4362,'10970','Budardalur','BUDARDALUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4363,'28215','Budd Lake','BUDD LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4364,'2206','Buddinge','BUDDINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4365,'38634','Buddusò','BUDDUSÒ',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4366,'7749','Bude','BUDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4367,'15921','Budens','BUDENS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4368,'26393','Buderim','BUDERIM',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4369,'34116','Budgewoi','BUDGEWOI',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4370,'10971','Budir','BUDIR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4371,'7750','Budleigh Salterton','BUDLEIGH SALTERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4372,'12740','Budoia','BUDOIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4373,'13030','Budoni','BUDONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4374,'40070','Budrio','BUDRIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4375,'32366','Budva','BUDVA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4376,'39478','Buechenbeuren','BUECHENBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4377,'40165','Buechlberg','BUECHLBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4378,'22522','Buehl','BUEHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4379,'2077','Buehlertal','BUEHLERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4380,'23001','Buelach','BUELACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4381,'18338','Buellton','BUELLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4382,'28217','Buena','BUENA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4383,'24128','Buenaventura','BUENAVENTURA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4384,'13883','Buenavista','BUENAVISTA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4385,'37947','Buenavista Del Norte','BUENAVISTA DEL NORTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4386,'26113','Buenos Aires','BUENOS AIRES',NULL,'','Argentina','Buenos Aires',0,0,10,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4387,'27341','Bueren','BUEREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4388,'44130','Buesum','BUESUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4389,'42662','Bueu','BUEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4390,'22333','Buffalo','BUFFALO',NULL,'','United States','',0,0,231,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4391,'22940','Buffalo Narrows','BUFFALO NARROWS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:44','1900-01-01 00:00:00',1,0,1),(4392,'32655','Buffalo Range','BUFFALO RANGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4393,'19727','Buford','BUFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4394,'904','Buga','BUGA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4395,'39997','Buggiano','BUGGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4396,'14195','Bugibba','BUGIBBA',NULL,'','Malta','',0,0,135,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4397,'16256','Bugulma','BUGULMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4398,'6757','Buhl','BUHL',NULL,'','France','',0,0,76,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4399,'36043','Buhl','BUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4400,'33789','Buies Creek','BUIES CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4401,'14625','Buiksloot','BUIKSLOOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4402,'7751','Builth Wells','BUILTH WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4403,'14626','Buitenveldert','BUITENVELDERT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4404,'37327','Buje','BUJE',NULL,'','Croatia','',0,0,55,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4405,'24572','Bujumbura','BUJUMBURA',NULL,'','Burundi','',0,0,36,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4406,'35336','Buk','BUK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4407,'32627','Bukavu','BUKAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4408,'40712','Bukayriah','BUKAYRIAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4409,'10113','Bukfurdo','BUKFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4410,'32152','Bukhara','BUKHARA',NULL,'','Uzbekistan','Bukhara',0,0,232,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4411,'41790','Bukiskis','BUKISKIS',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4412,'14361','Bukit Fraser','BUKIT FRASER',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4413,'10371','Bukittinggi','BUKITTINGGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4414,'17454','Bukoba','BUKOBA',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4415,'42716','Bulahdelah','BULAHDELAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4416,'41737','Bulandshahar','BULANDSHAHAR',NULL,'','India','',0,0,101,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4417,'2447','Bulaq Ad Dakrur','BULAQ AD DAKRUR',NULL,'','Egypt','',0,0,65,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4418,'32668','Bulawayo','BULAWAYO',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4419,'7752','Bulkington','BULKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4420,'17995','Bull Shoals','BULL SHOALS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4421,'23154','Bulle','BULLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4422,'33313','Bullfrog','BULLFROG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4423,'18108','Bullhead City','BULLHEAD CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4424,'33085','Bulls Gap','BULLS GAP',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4425,'30502','Bulverde','BULVERDE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4426,'32628','Bumba','BUMBA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4427,'39027','Bunbeg','BUNBEG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4428,'26580','Bunbury','BUNBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4429,'10945','Bunclody','BUNCLODY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4430,'41596','Buncrana','BUNCRANA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4431,'26669','Bundaberg','BUNDABERG',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4432,'26671','Bundall','BUNDALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4433,'34117','Bundanoon','BUNDANOON',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4434,'40841','Bundi','BUNDI',NULL,'','India','Bundi',2,0,101,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4435,'26191','Bundoora','BUNDOORA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4436,'10818','Bundoran','BUNDORAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4437,'34118','Bungendore','BUNGENDORE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4438,'32629','Bunia','BUNIA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4439,'3437','Buniel','BUNIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4440,'26192','Bunker Bay','BUNKER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4441,'30503','Bunker Hill Village','BUNKER HILL VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4442,'21178','Bunkie','BUNKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4443,'19285','Bunnell','BUNNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4444,'14679','Bunnik','BUNNIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4445,'10781','Bunratty','BUNRATTY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4446,'7753','Buntingford','BUNTINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4447,'39045','Bunyola','BUNYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4448,'23155','Buochs','BUOCHS',NULL,'','Switzerland','Buochs',0,0,210,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4449,'10221','Buol','BUOL',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4450,'32276','Buon Ma Thuot','BUON MA THUOT',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4451,'38739','Buonconvento','BUONCONVENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4452,'15993','Buraca','BURACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4453,'11139','Burago Di Molgora','BURAGO DI MOLGORA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4454,'42543','Buraidah','BURAIDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4455,'15276','Buraimi','BURAIMI',NULL,'','Oman','',0,0,165,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4456,'12876','Burano','BURANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4457,'21179','Buras','BURAS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4458,'14295','Burau Bay','BURAU BAY',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4459,'16507','Buraydah','BURAYDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4460,'29280','Burbank','BURBANK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4461,'40137','Burcei','BURCEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4462,'34','Burchen','BURCHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4463,'28670','Burdett','BURDETT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4464,'17273','Burdur','BURDUR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4465,'4682','Bures-sur-yvette','BURES-SUR-YVETTE',NULL,'','France','',0,0,76,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4466,'4047','Bureta','BURETA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4467,'7754','Burford','BURFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4468,'34857','Burgas','BURGAS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4469,'15922','Burgau','BURGAU',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4470,'40189','Burgau','BURGAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4471,'27193','Burgdorf','BURGDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4472,'23156','Burgdorf','BURGDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4473,'23002','Burgenstock','BURGENSTOCK',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4474,'7755','Burgess Hill','BURGESS HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4475,'29845','Burgettstown','BURGETTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4476,'38354','Burghaslach','BURGHASLACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4477,'22725','Burghausen','BURGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4478,'7756','Burghfield','BURGHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4479,'41432','Burgo De Osma','BURGO DE OSMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4480,'3438','Burgohondo','BURGOHONDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4481,'3439','Burgos','BURGOS',NULL,'','Spain','Burgos',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4482,'36167','Burgos-medina Del Po','BURGOS-MEDINA DEL PO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4483,'22726','Burgstadt','BURGSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4484,'120','Burgstädt','BURGSTÄDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4485,'3195','Burguillos','BURGUILLOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4486,'15052','Burhanilkantha','BURHANILKANTHA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4487,'17263','Burhaniye','BURHANIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4488,'40842','Burhanpur','BURHANPUR',NULL,'','India','Burhanpur',15,0,101,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4490,'31451','Burien','BURIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4491,'42258','Burirum','BURIRUM',NULL,'','Thailand','',0,0,215,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4492,'3742','Burjasot','BURJASOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4493,'41366','Burjassot','BURJASSOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4494,'30504','Burkburnett','BURKBURNETT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4495,'33603','Burkesville','BURKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4496,'26394','Burketown','BURKETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4497,'31059','Burkeville','BURKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4498,'3052','Burlada','BURLADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4499,'34998','Burlanda','BURLANDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4500,'26672','Burleigh Heads','BURLEIGH HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4501,'30505','Burleson','BURLESON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4502,'7757','Burley','BURLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4503,'20338','Burley','BURLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4504,'18341','Burlingame','BURLINGAME',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4505,'31707','Burlington','BURLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4506,'34461','Burlington','BURLINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4507,'25401','Burnaby','BURNABY',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:56','1900-01-01 00:00:00',1,0,1),(4508,'7758','Burnham','BURNHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:56','1900-01-01 00:00:00',1,0,1),(4509,'34462','Burnham Thorpe','BURNHAM THORPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4510,'44184','Burnham-on-sea','BURNHAM-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4511,'6944','Burnhouse','BURNHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4512,'26829','Burnie','BURNIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4513,'7760','Burnley','BURNLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4514,'29624','Burns','BURNS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4515,'25402','Burns Lake','BURNS LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4516,'7761','Burnsall','BURNSALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4517,'15183','Burnside','BURNSIDE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4518,'22334','Burnsville','BURNSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4519,'26193','Burnt Pine','BURNT PINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4520,'14436','Burnt Pine','BURNT PINE',NULL,'','Norfolk Island','',0,0,162,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4521,'7762','Burntisland','BURNTISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4522,'37670','Burpham','BURPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4523,'20468','Burr Ridge','BURR RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4524,'37792','Burrell Boom','BURRELL BOOM',NULL,'','Belize','',0,0,22,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4525,'7763','Burrington','BURRINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4526,'7764','Burry Port','BURRY PORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4527,'17274','Bursa','BURSA',NULL,'','Turkey','Bursa',0,0,222,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4528,'7765','Burscough','BURSCOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4529,'7766','Burslem','BURSLEM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4530,'408','Burstadt','BURSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4531,'37224','Burswood','BURSWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4532,'37255','Burt Plain','BURT PLAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4533,'22009','Burton','BURTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4534,'6946','Burwardsley','BURWARDSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4535,'43237','Burwash Landing','BURWASH LANDING',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4536,'28106','Burwell','BURWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4537,'34119','Burwood','BURWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4538,'13483','Busan','BUSAN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4539,'35814','Busan (Pusan)','BUSAN (PUSAN)',NULL,'','South Korea','',0,0,197,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4540,'39319','Busana','BUSANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4541,'7769','Busby','BUSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4542,'11671','Buscate','BUSCATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4543,'11140','Buseto Palizzolo','BUSETO PALIZZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4544,'7770','Bushey','BUSHEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4545,'29847','Bushkill','BUSHKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4546,'7771','Bushmills','BUSHMILLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4547,'19286','Bushnell','BUSHNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4548,'6153','Busigny','BUSIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4549,'14862','Buskerud','BUSKERUD',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4550,'3196','Busquistar','BUSQUISTAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4551,'38963','Bussang','BUSSANG',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4552,'26581','Busselton','BUSSELTON',NULL,'','Australia','Busselton',0,0,13,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4553,'5301','Busset','BUSSET',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4554,'4166','Bussière-galant','BUSSIÈRE-GALANT',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4555,'23157','Bussigny','BUSSIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4557,'11672','Bussolengo','BUSSOLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4558,'14627','Bussum','BUSSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4559,'43360','Bussy Saint Georges','BUSSY SAINT GEORGES',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4560,'5095','Bussy-saint-georges','BUSSY-SAINT-GEORGES',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4561,'2985','Bustarviejo','BUSTARVIEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4562,'11673','Busto Arsizio','BUSTO ARSIZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4563,'40429','Busua','BUSUA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4564,'42400','Busuanga','BUSUANGA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4565,'703','Busum','BUSUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4566,'32630','Buta','BUTA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4567,'13460','Butaritari','BUTARITARI',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4568,'11674','Butera','BUTERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4569,'121','Butjadingen','BUTJADINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4570,'29848','Butler','BUTLER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4571,'10149','Buton Babau','BUTON BABAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4572,'18342','Buttonwillow','BUTTONWILLOW',NULL,'','United States','',0,0,231,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4573,'15482','Butuan','BUTUAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4574,'42382','Buxted','BUXTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4575,'27194','Buxtehude','BUXTEHUDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4576,'6948','Buxton','BUXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4577,'33792','Buxton','BUXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4578,'5443','Buxy','BUXY',NULL,'','France','',0,0,76,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4579,'38590','Buyukada','BUYUKADA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4580,'38540','Buyukeceli','BUYUKECELI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4581,'4167','Buzançais','BUZANÇAIS',NULL,'','France','',0,0,76,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4582,'36619','Buzau','BUZAU',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4583,'25130','Buzios','BUZIOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4584,'21329','Buzzards Bay','BUZZARDS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4585,'43344','Byala','BYALA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4586,'43077','Byblos','BYBLOS',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4587,'15712','Bydgoszcz','BYDGOSZCZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4588,'34724','Byers','BYERS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4589,'14953','Bygdoy','BYGDOY',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4590,'14857','Byglandsfjord','BYGLANDSFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4591,'27836','Byram','BYRAM',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4592,'33088','Byrdstown','BYRDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4593,'22010','Byron','BYRON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4594,'34120','Byron Bay','BYRON BAY',NULL,'','Australia','Byron Bay',0,0,13,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4595,'37277','Byxelkrok','BYXELKROK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4596,'43078','Bzommar','BZOMMAR',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4597,'43207','Cabana De Bergantinos','CABANA DE BERGANTINOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4598,'15385','Cabanaconde','CABANACONDE',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4599,'15923','Cabanas','CABANAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4600,'38024','Cabanatuan','CABANATUAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4601,'5165','Cabannes','CABANNES',NULL,'','France','',0,0,76,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4602,'25963','Cabano','CABANO',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4603,'2371','Cabarete','CABARETE',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4604,'34121','Cabarita Beach','CABARITA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4605,'18343','Cabazon','CABAZON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4606,'37393','Cabeca Gorda','CABECA GORDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4607,'40322','Cabeceiras De Basto','CABECEIRAS DE BASTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4608,'5898','Cabestany','CABESTANY',NULL,'','France','',0,0,76,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4609,'41957','Cabezuela Del Valle','CABEZUELA DEL VALLE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4610,'41875','Cabimas','CABIMAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4611,'25846','Cabinda','CABINDA',NULL,'','Angola','',0,0,6,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4612,'10831','Cabinteely','CABINTEELY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4613,'31708','Cable','CABLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4614,'44013','Cable Bay','CABLE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4615,'24864','Cable Beach','CABLE BEACH',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4616,'26952','Cable Beach','CABLE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4617,'43477','Cabo Blanco','CABO BLANCO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4618,'15739','Cabo Rojo','CABO ROJO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4619,'14139','Cabo San Lucas','CABO SAN LUCAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4620,'27599','Cabool','CABOOL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4621,'17996','Cabot','CABOT',NULL,'','United States','',0,0,231,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4622,'5379','Cabourg','CABOURG',NULL,'','France','',0,0,76,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4623,'39143','Cabras','CABRAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4624,'2368','Cabrera','CABRERA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4625,'2539','Cabrera De Mar','CABRERA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4626,'5899','Cabrieres','CABRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4627,'6404','Cabries','CABRIES',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4628,'3524','Cabrils','CABRILS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4629,'6405','Cabris','CABRIS',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4630,'2100','Cabrits','CABRITS',NULL,'','Dominica','',0,0,500,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4631,'3077','Cabuenes','CABUENES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4632,'40716','Cabuerniga','CABUERNIGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4633,'37822','Cacak','CACAK',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4634,'11141','Cacchiamo','CACCHIAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4635,'3633','Caceres','CACERES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4636,'4683','Cachan','CACHAN',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4637,'25403','Cache Creek','CACHE CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4638,'41742','Cachi','CACHI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4639,'41779','Cachoeiro De Itapemirim','CACHOEIRO DE ITAPEMIRIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4640,'41960','Cadalso','CADALSO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4641,'3525','Cadaques','CADAQUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4642,'17997','Caddo Valley','CADDO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4643,'38458','Cadelbosco Di Sopra','CADELBOSCO DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4644,'23003','Cademario','CADEMARIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4645,'23158','Cadempino','CADEMPINO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4646,'11142','Cadenabbia','CADENABBIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4647,'37314','Cadenet','CADENET',NULL,'','France','',0,0,76,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4648,'38991','Cadeo','CADEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4649,'14056','Cadereyta Jimenez','CADEREYTA JIMENEZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4650,'13473','Cades Bay','CADES BAY',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4651,'39405','Cádiar','CÁDIAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4652,'22012','Cadillac','CADILLAC',NULL,'','United States','',0,0,231,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4653,'5166','Cadillac','CADILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4654,'3198','Cadiz','CADIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4655,'33604','Cadiz','CADIZ',NULL,'','United States','',0,0,231,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4656,'6949','Cadmore End','CADMORE END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4657,'7772','Cadnam','CADNAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4658,'6406','Cadolive','CADOLIVE',NULL,'','France','',0,0,76,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4659,'38351','Cadoneghe','CADONEGHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4660,'23159','Cadro','CADRO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4661,'4868','Caen','CAEN',NULL,'','France','',0,0,76,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4662,'7773','Caernarfon','CAERNARFON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4663,'38382','Caerphilly','CAERPHILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4664,'7774','Caersws','CAERSWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4665,'11033','Caesarea','CAESAREA',NULL,'','Israel','',0,0,106,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4666,'26138','Cafayate','CAFAYATE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4667,'15542','Cagayan De Oro','CAGAYAN DE ORO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4668,'11675','Cagli','CAGLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4669,'12784','Cagliari','CAGLIARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4670,'35625','Cagliari-quartu Sant','CAGLIARI-QUARTU SANT',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4671,'37341','Cagnano','CAGNANO',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4672,'38298','Cagnano Varano','CAGNANO VARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4673,'40974','Cagnes Sur Mer','CAGNES SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4674,'6407','Cagnes-sur-mer','CAGNES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4675,'39718','Cagraray Island','CAGRARAY ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4676,'15740','Caguas','CAGUAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4677,'5380','Cahagnes','CAHAGNES',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4678,'10875','Caherdaniel','CAHERDANIEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4679,'10876','Cahersiveen','CAHERSIVEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4680,'10716','Cahir','CAHIR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4681,'41594','Cahirsiveen','CAHIRSIVEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4682,'20469','Cahokia','CAHOKIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4683,'6074','Cahors','CAHORS',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4684,'24229','Cahuita','CAHUITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4685,'44306','Cahul','CAHUL',NULL,'','Moldova','',0,0,144,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4686,'6075','Cahuzac-sur-vere','CAHUZAC-SUR-VERE',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4687,'2882','Caimari','CAIMARI',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4688,'41964','Cain','CAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4689,'38659','Caineville','CAINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4690,'7775','Cairnbaan','CAIRNBAAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4691,'41180','Cairndow','CAIRNDOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4692,'7776','Cairnryan','CAIRNRYAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4693,'26673','Cairns','CAIRNS',NULL,'','Australia','Cairns',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4694,'1118','Cairns- Tropical North Coast','CAIRNS- TROPICAL NORTH COAST',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4695,'35917','Cairns-ellis Beach','CAIRNS-ELLIS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4696,'35914','Cairns-holloways Bea','CAIRNS-HOLLOWAYS BEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4697,'35915','Cairns-kewarra Beach','CAIRNS-KEWARRA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4698,'34786','Cairns-kuranda','CAIRNS-KURANDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4699,'35918','Cairns-trinity Beach','CAIRNS-TRINITY BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4700,'19729','Cairo','CAIRO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4701,'2418','Cairo','CAIRO',NULL,'','Egypt','Cairo',0,0,65,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4702,'5900','Caissargues','CAISSARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4703,'9278','Caistor St Edmund','CAISTOR ST EDMUND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4704,'15390','Cajamarca','CAJAMARCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4705,'2542','Cajar','CAJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4706,'6076','Cajarc','CAJARC',NULL,'','France','',0,0,76,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4707,'11143','Cala Di Volpe','CALA DI VOLPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4708,'39686','Calabar','CALABAR',NULL,'','Nigeria','',0,0,160,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4709,'18344','Calabasas','CALABASAS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4710,'33793','Calabash','CALABASH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4711,'3078','Calabaza','CALABAZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4712,'1678','Calabogie','CALABOGIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4713,'43042','Calabozo','CALABOZO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4714,'41018','Calabria','CALABRIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4715,'2401','Calabria','CALABRIA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4716,'24951','Calacoto','CALACOTO',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4717,'43688','Calafat','CALAFAT',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4718,'35867','Calafate','CALAFATE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4719,'3526','Calafell','CALAFELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4720,'2961','Calahorra','CALAHORRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4721,'21844','Calais','CALAIS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4722,'5015','Calais','CALAIS',NULL,'','France','Calais',0,0,76,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4723,'38491','Calalzo Di Cadore','CALALZO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4724,'23510','Calama','CALAMA',NULL,'','Chile','Calama ',0,0,45,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4725,'2564','Calamayor','CALAMAYOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4726,'15515','Calamba','CALAMBA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4727,'11677','Calambrone','CALAMBRONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4728,'42680','Calamocha','CALAMOCHA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4729,'40632','Calamonte','CALAMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4730,'41745','Calamuchita - Valle','CALAMUCHITA - VALLE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4731,'41350','Cala\'n Blanes','CALA\'N BLANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4732,'15523','Calapan','CALAPAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4733,'36613','Calarasi','CALARASI',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4734,'2566','Calas De Mallorca','CALAS DE MALLORCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4735,'37592','Calascibetta','CALASCIBETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4736,'11678','Calasetta','CALASETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4737,'13002','Calatabiano','CALATABIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4738,'11679','Calatafimi','CALATAFIMI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4739,'15486','Calatagan','CALATAGAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4740,'3323','Calatayud','CALATAYUD',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4741,'38134','Calatorao','CALATORAO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4742,'11680','Calavino','CALAVINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4743,'15543','Calbayog','CALBAYOG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4744,'15393','Calca','CALCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4745,'11681','Calci','CALCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4746,'11682','Calcinaia','CALCINAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4747,'28671','Calcium','CALCIUM',NULL,'','United States','',0,0,231,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4748,'11146','Calco','CALCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4749,'37158','Calcutta','CALCUTTA',NULL,'','India','',0,0,101,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4750,'11683','Caldana','CALDANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4751,'42099','Caldas','CALDAS',NULL,'','Colombia','',0,0,49,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4752,'2567','Caldas D Estrac','CALDAS D ESTRAC',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4753,'41665','Caldas Da Felgueira','CALDAS DA FELGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4754,'25062','Caldas Novas','CALDAS NOVAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4755,'15880','Caldelas','CALDELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4756,'38078','Caldera','CALDERA',NULL,'','Chile','',0,0,45,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4757,'24235','Caldera','CALDERA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4758,'12954','Calderara Di Reno','CALDERARA DI RENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4759,'3528','Calders','CALDERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4760,'2568','Caldes De Boi','CALDES DE BOI',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4761,'11147','Caldiero','CALDIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4762,'11684','Caldogno','CALDOGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4763,'30507','Caldwell','CALDWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4764,'34463','Caledon','CALEDON',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4765,'32442','Caledon','CALEDON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4766,'22335','Caledonia','CALEDONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4767,'3079','Calella','CALELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4768,'11685','Calenzano','CALENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4769,'17846','Calera','CALERA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4770,'40193','Calera De Leon','CALERA DE LEON',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4771,'2571','Cales Piques','CALES PIQUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4772,'3110','Caleta De Fuste','CALETA DE FUSTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4773,'24160','Caletas','CALETAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4774,'18345','Calexico','CALEXICO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4775,'25281','Calgary','CALGARY',NULL,'','Canada','Calgary',0,0,39,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4776,'34725','Calhan','CALHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4777,'16056','Calhariz','CALHARIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4778,'15951','Calheta','CALHETA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4779,'19730','Calhoun','CALHOUN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4780,'24129','Cali','CALI',NULL,'','Colombia','',0,0,49,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4781,'2101','Calibishie','CALIBISHIE',NULL,'','Dominica','',0,0,500,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4782,'1764','Calicut','CALICUT',NULL,'','India','',0,0,101,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4783,'29850','California','CALIFORNIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4784,'18347','Calimesa','CALIMESA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4785,'18348','Calipatria','CALIPATRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4786,'18349','Calistoga','CALISTOGA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4787,'11686','Calitri','CALITRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4788,'17252','Calkaya','CALKAYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4789,'19287','Callahan','CALLAHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4790,'7777','Callaly','CALLALY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4791,'7778','Callander','CALLANDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4792,'14628','Callantsoog','CALLANTSOOG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4793,'15392','Callao','CALLAO',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4794,'2572','Callao Salvaje','CALLAO SALVAJE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4795,'29851','Callapoose','CALLAPOOSE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4796,'6408','Callas','CALLAS',NULL,'','France','',0,0,76,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4797,'38216','Callian','CALLIAN',NULL,'','France','',0,0,76,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4798,'28672','Callicoon','CALLICOON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4799,'36296','Callington','CALLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4800,'7779','Calne','CALNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4801,'38331','Calolziocorte','CALOLZIOCORTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4802,'3529','Calonge','CALONGE',NULL,'','Spain','Calonge',0,0,199,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4803,'15487','Caloocan','CALOOCAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4804,'26674','Caloundra','CALOUNDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4805,'16091','Caloura','CALOURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4806,'3743','Calpe','CALPE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4807,'7780','Calstock','CALSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4808,'12844','Caltagirone','CALTAGIRONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4809,'13043','Caltanissetta','CALTANISSETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4810,'6587','Caluire-et-cuire','CALUIRE-ET-CUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4811,'22013','Calumet','CALUMET',NULL,'','United States','',0,0,231,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4812,'11687','Caluso','CALUSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4813,'4168','Calvados','CALVADOS',NULL,'','France','',0,0,76,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4814,'15851','Calvao','CALVAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4815,'15092','Calversham','CALVERSHAM',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4816,'30508','Calvert','CALVERT',NULL,'','United States','',0,0,231,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4817,'21654','Calverton','CALVERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4818,'4885','Calvi','CALVI',NULL,'','France','',0,0,76,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4819,'2888','Calvia','CALVIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4820,'5901','Calvisson','CALVISSON',NULL,'','France','',0,0,76,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4821,'39453','Calw','CALW',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4822,'3634','Calzadilla De Los Barros','CALZADILLA DE LOS BARROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4823,'37083','Cam Rahn','CAM RAHN',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4824,'25036','Camacari','CAMACARI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4825,'43199','Camacha','CAMACHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4826,'1116','Camaguey','CAMAGUEY',NULL,'','CUBA','',0,0,56,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4827,'11688','Camaiore','CAMAIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4828,'2573','Camango','CAMANGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4829,'31453','Camano Island','CAMANO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4830,'15952','Camara De Lobos','CAMARA DE LOBOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4831,'39852','Camargo','CAMARGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4832,'18350','Camarillo','CAMARILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4833,'26093','Camarones','CAMARONES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4834,'43976','Camarsac','CAMARSAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4835,'3200','Camas','CAMAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4836,'39268','Camas','CAMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4837,'3440','Camasobres','CAMASOBRES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4838,'3657','Cambados','CAMBADOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4839,'41980','Cambara Do Sul','CAMBARA DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4840,'7781','Camberley','CAMBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4841,'6950','Camberwell','CAMBERWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4842,'26363','Camberwell','CAMBERWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4843,'11689','Cambiago','CAMBIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4844,'11690','Cambiano','CAMBIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4845,'7782','Camborne','CAMBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4846,'6154','Cambrai','CAMBRAI',NULL,'','France','',0,0,76,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4847,'5381','Cambremer','CAMBREMER',NULL,'','France','',0,0,76,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4848,'18351','Cambria','CAMBRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4849,'15093','Cambridge','CAMBRIDGE',NULL,'','New Zealand','Cambridge',0,0,157,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4850,'29282','Cambridge','CAMBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4851,'34464','Cambridge','CAMBRIDGE',NULL,'','Canada','Cambridge',0,0,39,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4852,'9279','Cambridge','CAMBRIDGE',NULL,'','United Kingdom','Cambridge',0,0,229,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4853,'26830','Cambridge','CAMBRIDGE',NULL,'','Australia','Cambridge',0,0,13,'2016-10-17 10:44:31','1900-01-01 00:00:00',1,0,1),(4854,'3530','Cambrils','CAMBRILS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:31','1900-01-01 00:00:00',1,0,1),(4855,'829','Cambs','CAMBS',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4856,'25080','Cambuquira','CAMBUQUIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4857,'33090','Camden','CAMDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4858,'6952','Camden','CAMDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4859,'26794','Camden Park','CAMDEN PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4860,'27600','Camdenton','CAMDENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4861,'7783','Camelford','CAMELFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4862,'11691','Camerano','CAMERANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4863,'11692','Camerino','CAMERINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4864,'30509','Cameron','CAMERON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:34','1900-01-01 00:00:00',1,0,1),(4865,'14362','Cameron Highlands','CAMERON HIGHLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4866,'37293','Camerota','CAMEROTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4867,'6155','Camiers','CAMIERS',NULL,'','France','',0,0,76,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4868,'11693','Camigliano','CAMIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4869,'11148','Camigliatello','CAMIGLIATELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4870,'15442','Camiguin','CAMIGUIN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4871,'19731','Camilla','CAMILLA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4872,'28674','Camillus','CAMILLUS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4873,'16066','Caminha','CAMINHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4874,'3324','Caminreal','CAMINREAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4875,'24956','Camiri','CAMIRI',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4876,'6077','Camjac','CAMJAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4877,'34122','Cammeray','CAMMERAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4878,'41981','Camocim','CAMOCIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:37','1900-01-01 00:00:00',1,0,1),(4879,'11694','Camogli','CAMOGLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:37','1900-01-01 00:00:00',1,0,1),(4880,'37628','Campagna','CAMPAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4881,'11695','Campagnano Di Roma','CAMPAGNANO DI ROMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4882,'11696','Campagnatico','CAMPAGNATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4883,'12877','Campalto','CAMPALTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4884,'26068','Campana','CAMPANA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4885,'2889','Campanet','CAMPANET',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4886,'43224','Campania','CAMPANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4887,'2575','Campanillas','CAMPANILLAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4888,'18353','Campbell','CAMPBELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4889,'25404','Campbell River','CAMPBELL RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4890,'26831','Campbell Town','CAMPBELL TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4891,'26491','Campbellfield','CAMPBELLFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4892,'39560','Campbellsburg','CAMPBELLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4893,'33606','Campbellsville','CAMPBELLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4894,'34387','Campbellton','CAMPBELLTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4895,'34123','Campbelltown','CAMPBELLTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4896,'29854','Campbelltown','CAMPBELLTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4897,'34465','Campbellville','CAMPBELLVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4898,'7784','Campbeltown','CAMPBELTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4899,'13792','Campeche','CAMPECHE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4900,'11697','Campegine','CAMPEGINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4901,'39063','Campelles','CAMPELLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4902,'11698','Campello Sul Clitunno','CAMPELLO SUL CLITUNNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4903,'34124','Camperdown','CAMPERDOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4904,'41587','Campertogno','CAMPERTOGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4905,'11149','Campertongo','CAMPERTONGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4906,'12962','Campi Bisenzio','CAMPI BISENZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4907,'35486','Campiglia','CAMPIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4908,'41339','Campillo De Arenas','CAMPILLO DE ARENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4909,'25107','Campina Grande','CAMPINA GRANDE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4910,'24958','Campinas','CAMPINAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4911,'42955','Campione','CAMPIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4912,'11150','Campitello Di Fassa','CAMPITELLO DI FASSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4913,'25156','Campo Bom','CAMPO BOM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4914,'15794','Campo De Ourique','CAMPO DE OURIQUE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4915,'38067','Campo Nellelba','CAMPO NELLELBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4916,'12794','Campobasso','CAMPOBASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4917,'34389','Campobello Island','CAMPOBELLO ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4918,'11701','Campodarsego','CAMPODARSEGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4919,'11702','Campofelice Di Roccella','CAMPOFELICE DI ROCCELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4920,'11703','Campogalliano','CAMPOGALLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4921,'15995','Campolide','CAMPOLIDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4922,'11704','Campomarino','CAMPOMARINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4923,'43048','Campos','CAMPOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4924,'25198','Campos Do Jordao','CAMPOS DO JORDAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4925,'11705','Camposampiero','CAMPOSAMPIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4926,'2576','Camposeiras','CAMPOSEIRAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4927,'3531','Camprodon','CAMPRODON',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4928,'32428','Camps Bay','CAMPS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4929,'5167','Campsegret','CAMPSEGRET',NULL,'','France','',0,0,76,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4930,'6954','Campsie','CAMPSIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4931,'34125','Campsie','CAMPSIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4932,'32675','Campton','CAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4933,'42395','Campulung Moldovenesc','CAMPULUNG MOLDOVENESC',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4934,'25285','Camrose','CAMROSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4935,'34126','Cams Wharf','CAMS WHARF',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4936,'15741','Camuy','CAMUY',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4937,'17365','Camyuva','CAMYUVA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4938,'43600','Can Tho','CAN THO',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4939,'37346','Cana Fistula','CANA FISTULA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4940,'28675','Canaan','CANAAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4941,'13649','Canach','CANACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4942,'42211','Canacona','CANACONA',NULL,'','India','',0,0,101,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4943,'3111','Cañada Del Río','CAÑADA DEL RÍO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4944,'29855','Canadensis','CANADENSIS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4945,'32885','Canadian','CANADIAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4946,'1180','Canadian Rockies','CANADIAN ROCKIES',NULL,'','CANADA','',0,0,39,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4947,'28676','Canajoharie','CANAJOHARIE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4948,'17276','Canakkale','CANAKKALE',NULL,'','Turkey','Canakkale',0,0,222,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4949,'29283','Canal Winchester','CANAL WINCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4950,'38249','Canale','CANALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4951,'11151','Canalicchio Di Collazzone','CANALICCHIO DI COLLAZZONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4952,'41402','Canamares','CANAMARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4953,'28677','Canandaigua','CANANDAIGUA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4954,'6955','Canary Wharf - Docklands','CANARY WHARF - DOCKLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4955,'24209','Canas','CANAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4956,'41664','Canas De Senhorim','CANAS DE SENHORIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4957,'28678','Canastota','CANASTOTA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4958,'11152','Canavese Region','CANAVESE REGION',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4959,'26627','Canberra','CANBERRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4960,'34771','Canberra-greenway','CANBERRA-GREENWAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4961,'29628','Canby','CANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4962,'5520','Cancale','CANCALE',NULL,'','France','',0,0,76,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4963,'14073','Cancun','CANCUN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4964,'41379','Candanchu','CANDANCHU',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4965,'38771','Candanchú','CANDANCHÚ',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4966,'3080','Candas','CANDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4967,'3801','Candelaria','CANDELARIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4968,'3441','Candelario','CANDELARIO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4969,'3442','Candeleda','CANDELEDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4970,'41019','Candeli','CANDELI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4971,'5631','Cande-sur-beuvron','CANDE-SUR-BEUVRON',NULL,'','France','',0,0,76,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4972,'10150','Candi Dasa','CANDI DASA',NULL,'','Indonesia','Candi Dasa',0,0,102,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4973,'38133','Candia','CANDIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4974,'25964','Candiac','CANDIAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4975,'43518','Candidasa','CANDIDASA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4976,'11706','Candiolo','CANDIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4977,'17575','Candle','CANDLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4978,'33794','Candler','CANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4979,'10502','Candolim','CANDOLIM',NULL,'','India','',0,0,101,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4980,'28679','Candor','CANDOR',NULL,'','United States','',0,0,231,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4981,'25119','Canela','CANELA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4982,'40535','Canelli','CANELLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4983,'41965','Canena','CANENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4984,'36237','Canet','CANET',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4985,'3744','Canet De Berenguer','CANET DE BERENGUER',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4986,'41567','Canet-en-rousillon','CANET-EN-ROUSILLON',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4987,'5902','Canet-plage','CANET-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4988,'12741','Caneva','CANEVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4989,'29284','Canfield','CANFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4990,'3325','Canfranc','CANFRANC',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4991,'3658','Cangas','CANGAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4992,'5632','Cangey','CANGEY',NULL,'','France','',0,0,76,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4993,'10151','Canggu','CANGGU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4994,'10222','Cangkringan','CANGKRINGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4995,'36019','Cangzhou','CANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4996,'15881','Canicada','CANICADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4997,'15953','Canico','CANICO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4998,'25873','Canillo','CANILLO',NULL,'','Andorra','',0,0,5,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4999,'42103','Caninde De Sao Francisco','CANINDE DE SAO FRANCISCO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5000,'32997','Canistota','CANISTOTA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5001,'17279','Cankiri','CANKIRI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5002,'25286','Canmore','CANMORE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5003,'11707','Cannara','CANNARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5004,'13033','Cannero Riviera','CANNERO RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5005,'4169','Cannes','CANNES',NULL,'','France','Cannes',0,0,76,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5006,'41916','Cannes-ecluse','CANNES-ECLUSE',NULL,'','France','',0,0,76,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5007,'11153','Canneto','CANNETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5008,'12761','Cannigione','CANNIGIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5009,'25701','Canning','CANNING',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5010,'26582','Cannington','CANNINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5011,'12996','Cannizzaro - Palermo','CANNIZZARO - PALERMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5012,'11708','Cannobio','CANNOBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5013,'7785','Cannock','CANNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5014,'29629','Cannon Beach','CANNON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5015,'26395','Cannonvale','CANNONVALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5016,'40007','Canoa Quebrada','CANOA QUEBRADA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5017,'42199','Canoas','CANOAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5018,'18355','Canoga Park','CANOGA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5019,'34726','Canon City','CANON CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5020,'7786','Canonbie','CANONBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5021,'29856','Canonsburg','CANONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5022,'3745','Canor','CANOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5023,'22941','Canora','CANORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5024,'37281','Canosa Di Puglia','CANOSA DI PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5025,'890','Canouan Island','CANOUAN ISLAND',NULL,'','Saint Vincent And The Grenadines','',0,0,204,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5026,'32163','Canouan Island','CANOUAN ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5027,'39492','Canoves','CANOVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5028,'37143','Cantabria','CANTABRIA',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5029,'2578','Cantabrian Coast','CANTABRIAN COAST',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5030,'4172','Cantal','CANTAL',NULL,'','France','',0,0,76,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5031,'3443','Cantalapiedra','CANTALAPIEDRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5032,'3533','Cantallops','CANTALLOPS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5033,'15900','Cantanhede','CANTANHEDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5034,'38524','Cantarana','CANTARANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5035,'13020','Cantello','CANTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5036,'34127','Canterbury','CANTERBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5037,'7787','Canterbury','CANTERBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5038,'29285','Canton','CANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5039,'39740','Cantu','CANTU',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5040,'17576','Cantwell','CANTWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5041,'38596','Canungra','CANUNGRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5042,'6956','Canvey Island','CANVEY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5043,'2893','Canyamel','CANYAMEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5044,'37969','Canyonleigh','CANYONLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5045,'29630','Canyonville','CANYONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5046,'12878','Caorle','CAORLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5047,'25965','Cap Aux Meules','CAP AUX MEULES',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5048,'13580','Cap Estate','CAP ESTATE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5049,'42549','Cap Malheureux','CAP MALHEUREUX',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5050,'1143','Cap Skiring','CAP SKIRING',NULL,'','SENEGAL','',0,0,187,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5051,'11155','Capaccio','CAPACCIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5052,'37507','Capafonts','CAPAFONTS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5053,'26675','Capalaba','CAPALABA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5054,'11709','Capalbio','CAPALBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5055,'11710','Capannoli','CAPANNOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5056,'11711','Capannori','CAPANNORI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5057,'3201','Caparacena','CAPARACENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5058,'5168','Capbreton','CAPBRETON',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5059,'40160','Capcanes','CAPCANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5060,'4174','Cap-d\'antibes','CAP-D\'ANTIBES',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5061,'4175','Cap-de-croix','CAP-DE-CROIX',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5062,'4176','Capdenac','CAPDENAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5063,'2464','Capdepera','CAPDEPERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5064,'9352','Cape Coast','CAPE COAST',NULL,'','Ghana','',0,0,84,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5065,'25791','Cape Dorset','CAPE DORSET',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5066,'26196','Cape Gantheaume','CAPE GANTHEAUME',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5067,'15568','Cape Gloucester','CAPE GLOUCESTER',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5068,'41065','Cape Panwa','CAPE PANWA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:44:57','1900-01-01 00:00:00',1,0,1),(5069,'32443','Cape Town','CAPE TOWN',NULL,'','South Africa','Cape Town',0,0,195,'2016-10-17 10:44:57','1900-01-01 00:00:00',1,0,1),(5070,'13123','Cape Zanpa','CAPE ZANPA',NULL,'','Japan','',0,0,110,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5071,'6957','Capel St. Mary','CAPEL ST. MARY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5072,'40576','Capelas','CAPELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5073,'2935','Capellades','CAPELLADES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5074,'42414','Capelle','CAPELLE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5075,'6958','Capel-le-ferne','CAPEL-LE-FERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5076,'39983','Capena','CAPENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5077,'4177','Cap-ferrat','CAP-FERRAT',NULL,'','France','',0,0,76,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5078,'3202','Capileira','CAPILEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5079,'39113','Capilla Del Monte','CAPILLA DEL MONTE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5080,'18357','Capistrano Beach','CAPISTRANO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5081,'28503','Capitan','CAPITAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5082,'12817','Capitana','CAPITANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5083,'36882','Capitol','CAPITOL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5084,'18358','Capitola','CAPITOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5085,'41982','Capitolio','CAPITOLIO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5086,'34834','Capljina','CAPLJINA',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5087,'11156','Capo Caccia','CAPO CACCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5088,'41671','Capodrise','CAPODRISE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5089,'12975','Capoliveri','CAPOLIVERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5090,'12969','Capolona','CAPOLONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5091,'31961','Capon Bridge','CAPON BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5092,'40458','Caponago','CAPONAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5093,'44229','Caposele','CAPOSELE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5094,'1206','Cappadocia','CAPPADOCIA',NULL,'','TURKEY','Cappadocia',0,0,222,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5095,'12879','Cappella Maggiore','CAPPELLA MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5096,'38337','Capracotta','CAPRACOTTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5097,'40476','Capraia E Limite','CAPRAIA E LIMITE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5098,'35480','Capranica','CAPRANICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5099,'43612','Capreol','CAPREOL',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5100,'11714','Caprese Michelangelo','CAPRESE MICHELANGELO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5101,'40491','Caprino Veronese','CAPRINO VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5102,'25967','Cap-rouge','CAP-ROUGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5103,'19977','Captain Cook','CAPTAIN COOK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5104,'19291','Captiva','CAPTIVA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5105,'11716','Capua','CAPUA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5106,'762','Caputh','CAPUTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5107,'5029','Capvern','CAPVERN',NULL,'','France','',0,0,76,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5108,'10394','Car Nicobar','CAR NICOBAR',NULL,'','India','',0,0,101,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5109,'4178','Carabacel','CARABACEL',NULL,'','France','',0,0,76,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5110,'13795','Carabalin','CARABALIN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5111,'32192','Caraballeda','CARABALLEDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5112,'2583','Carabanchel','CARABANCHEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5113,'19292','Carabelle','CARABELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5114,'42990','Carabias','CARABIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5115,'32193','Caracas','CARACAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5116,'977','Caraguatatuba','CARAGUATATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5117,'25100','Carajas','CARAJAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5118,'11717','Caramanico Terme','CARAMANICO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5119,'16081','Caramulo','CARAMULO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5120,'37342','Caranceja','CARANCEJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5121,'13054','Carano','CARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5122,'16214','Caransebes','CARANSEBES',NULL,'','Romania','',0,0,179,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5123,'5521','Carantec','CARANTEC',NULL,'','France','',0,0,76,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5124,'34391','Caraquet','CARAQUET',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5125,'24247','Carara','CARARA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5126,'43836','Carate','CARATE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5127,'25029','Carauari','CARAUARI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5128,'39856','Caravaca De La Cruz','CARAVACA DE LA CRUZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5129,'35945','Caravelas','CARAVELAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5130,'3635','Carbajo','CARBAJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5131,'37637','Carballo','CARBALLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5132,'7788','Carbis Bay','CARBIS BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5133,'20475','Carbondale','CARBONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5134,'3203','Carboneras','CARBONERAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5135,'5169','Carcans','CARCANS',NULL,'','France','',0,0,76,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5136,'4856','Carcassonne','CARCASSONNE',NULL,'','France','',0,0,76,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5137,'15852','Carcavelos','CARCAVELOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5138,'2584','Carchuna','CARCHUNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5139,'6959','Carcoft','CARCOFT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5140,'22975','Carcross','CARCROSS',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5141,'41996','Cardales','CARDALES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5142,'12928','Cardano Al Campo','CARDANO AL CAMPO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5143,'3534','Cardedeu','CARDEDEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5144,'12818','Cardedu','CARDEDU',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5145,'6960','Cardiff','CARDIFF',NULL,'','United Kingdom','Cardiff',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5146,'7789','Cardigan','CARDIGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5147,'25813','Cardigan','CARDIGAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5148,'3535','Cardona','CARDONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5149,'7790','Cardrona','CARDRONA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5150,'25287','Cardston','CARDSTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5151,'37653','Cardwell','CARDWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5152,'20835','Carefree','CAREFREE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5153,'21180','Carencro','CARENCRO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5154,'5382','Carentan','CARENTAN',NULL,'','France','',0,0,76,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5155,'5522','Carhaix-plouguer','CARHAIX-PLOUGUER',NULL,'','France','',0,0,76,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5156,'42318','Cariati','CARIATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5157,'24161','Caribbean Coast','CARIBBEAN COAST',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5158,'21848','Caribou','CARIBOU',NULL,'','United States','',0,0,231,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5159,'943','Carilo','CARILO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5160,'11718','Carimate','CARIMATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5161,'26677','Carindale','CARINDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5162,'41966','Carinena','CARINENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5163,'39342','Cariñena','CARIÑENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5164,'42956','Carini','CARINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5165,'41938','Carisio','CARISIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5166,'11719','Carisolo','CARISOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5167,'10223','Carita','CARITA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5168,'37254','Cark','CARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5169,'28681','Carle Place','CARLE PLACE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5170,'25968','Carleton','CARLETON',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5171,'32802','Carlin','CARLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5172,'37798','Carlingford','CARLINGFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5173,'20477','Carlinville','CARLINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5174,'20836','Carlisle','CARLISLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5175,'7791','Carlisle','CARLISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5176,'1207','Carlisle','CARLISLE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5177,'12819','Carloforte','CARLOFORTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5178,'10710','Carlow','CARLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5179,'24286','Carlsbad','CARLSBAD',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5180,'18360','Carlsbad','CARLSBAD',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5181,'28225','Carlstadt','CARLSTADT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5182,'22338','Carlton','CARLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5183,'26891','Carlton','CARLTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5184,'44185','Carluke','CARLUKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5185,'20478','Carlyle','CARLYLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5186,'22976','Carmacks','CARMACKS',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5187,'11158','Carmagnola','CARMAGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5188,'25587','Carman','CARMAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5189,'7792','Carmarthen','CARMARTHEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5190,'1532','Carmarthenshire','CARMARTHENSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5191,'18363','Carmel','CARMEL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5192,'38201','Carmel','CARMEL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5193,'17529','Carmelo','CARMELO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5194,'20480','Carmi','CARMI',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5195,'11720','Carmignano','CARMIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5196,'3151','Carmona','CARMONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5197,'10862','Carna','CARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5198,'4999','Carnac','CARNAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5199,'26583','Carnarvon','CARNARVON',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5200,'43678','Carnarvorn','CARNARVORN',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5201,'17135','Carnbee','CARNBEE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5202,'29859','Carnegie','CARNEGIE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5203,'18365','Carnelian Bay','CARNELIAN BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5204,'21658','Carney','CARNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5205,'28226','Carneys Point','CARNEYS POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5206,'7793','Carnforth','CARNFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5207,'7794','Carnlough','CARNLOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5208,'7795','Carno','CARNO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5209,'41565','Carnon','CARNON',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5210,'5903','Carnoules','CARNOULES',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5211,'6964','Carnoustie','CARNOUSTIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5212,'4860','Carnoux-en-provence','CARNOUX-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5213,'22015','Caro','CARO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5214,'19293','Carol City','CAROL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5215,'15742','Carolina','CAROLINA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5216,'33798','Carolina Beach','CAROLINA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5217,'40266','Caroline Springs','CAROLINE SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5218,'23004','Carona','CARONA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5219,'23434','Carouge','CAROUGE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5220,'11723','Carovigno','CAROVIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5221,'36608','Carp Island','CARP ISLAND',NULL,'','Palau','',0,0,167,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5222,'40346','Carpegna','CARPEGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5223,'11724','Carpenedolo','CARPENEDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5224,'5117','Carpentras','CARPENTRAS',NULL,'','France','',0,0,76,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5225,'12956','Carpi','CARPI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5226,'11725','Carpineti','CARPINETI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5227,'18366','Carpinteria','CARPINTERIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5228,'6221','Carquefou','CARQUEFOU',NULL,'','France','',0,0,76,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5229,'6409','Carqueiranne','CARQUEIRANNE',NULL,'','France','',0,0,76,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5230,'21849','Carrabassett Valley','CARRABASSETT VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5231,'3400','Carranque','CARRANQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5232,'11726','Carrara','CARRARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5233,'26678','Carrara','CARRARA',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5234,'42991','Carrascal','CARRASCAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5235,'3204','Carratraca','CARRATRACA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5236,'33799','Carrboro','CARRBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5237,'7796','Carrbridge','CARRBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5238,'39834','Carrè','CARRÈ',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5239,'9834','Carriacou Island','CARRIACOU ISLAND',NULL,'','Grenada','',0,0,88,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5240,'7797','Carrickfergus','CARRICKFERGUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5241,'10916','Carrickmacross','CARRICKMACROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5242,'41593','Carrick-on-shannon','CARRICK-ON-SHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5243,'42968','Carrieres Sur Seine','CARRIERES SUR SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5244,'4684','Carrieres-sous-poissy','CARRIERES-SOUS-POISSY',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5245,'37830','Carrieres-sur-seine','CARRIERES-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5246,'10802','Carrigaline','CARRIGALINE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5247,'41592','Carrigans','CARRIGANS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5248,'10718','Carrigart','CARRIGART',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5249,'24210','Carrillo','CARRILLO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5250,'28049','Carrington','CARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5251,'30513','Carrizo Springs','CARRIZO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5252,'28506','Carrizozo','CARRIZOZO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5253,'11727','Carrodano','CARRODANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5254,'20167','Carroll','CARROLL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5255,'31061','Carrollton','CARROLLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5256,'43088','Carroz D\'araches','CARROZ D\'ARACHES',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5257,'7798','Carrutherstown','CARRUTHERSTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5258,'9280','Carrville','CARRVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5259,'43689','Carry Le Rouet','CARRY LE ROUET',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5260,'6412','Carry-le-rouet','CARRY-LE-ROUET',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5261,'5170','Carsac-aillac','CARSAC-AILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5262,'26679','Carseldine','CARSELDINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5263,'18367','Carson','CARSON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5264,'3029','Cartagena','CARTAGENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5265,'24086','Cartagena','CARTAGENA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5266,'24204','Cartago','CARTAGO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5267,'38835','Cartajima','CARTAJIMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5268,'40109','Cartama','CARTAMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5269,'16042','Cartaxo','CARTAXO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5270,'3205','Cartaya','CARTAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5271,'19735','Cartersville','CARTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5272,'29287','Carthage','CARTHAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5273,'17182','Carthage','CARTHAGE',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5274,'27','Cartwright','CARTWRIGHT',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5275,'25120','Caruaru','CARUARU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5276,'32210','Carupano','CARUPANO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5277,'27606','Caruthersville','CARUTHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5278,'41564','Carvin','CARVIN',NULL,'','France','',0,0,76,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5279,'15925','Carvoeiro','CARVOEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5280,'33801','Cary','CARY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5281,'33093','Caryville','CARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5282,'11728','Carzago Della Riviera','CARZAGO DELLA RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5283,'18113','Casa Grande','CASA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5284,'43810','Casablanca','CASABLANCA',NULL,'','Chile','Casablanca',0,0,45,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5285,'13690','Casablanca','CASABLANCA',NULL,'','Morocco','Casablanca',0,0,148,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5286,'39426','Casal Borsetti','CASAL BORSETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5287,'12804','Casalabate','CASALABATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5288,'38747','Casalarreina','CASALARREINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5289,'11730','Casale Monferrato','CASALE MONFERRATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5290,'11731','Casalecchio Di Reno','CASALECCHIO DI RENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5291,'11732','Casalmaggiore','CASALMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5292,'11733','Casalnuovo Di Napoli','CASALNUOVO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5293,'11734','Casamassima','CASAMASSIMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5294,'11159','Casamicciola Terme','CASAMICCIOLA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5295,'11735','Casandrino','CASANDRINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5296,'13048','Casanova Pansarine','CASANOVA PANSARINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5297,'39169','Casapulla','CASAPULLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5298,'37642','Casarabonela','CASARABONELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5299,'40263','Casarano','CASARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5300,'3081','Casares','CASARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5301,'12742','Casarsa Della Delizia','CASARSA DELLA DELIZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5302,'38909','Casarza Ligure','CASARZA LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5303,'34728','Cascade','CASCADE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5304,'15996','Cascais','CASCAIS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5305,'37804','Cascastel-des-corbieres','CASCASTEL-DES-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5306,'25037','Cascavel','CASCAVEL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5307,'11736','Cascia','CASCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5308,'12973','Casciana Terme','CASCIANA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5309,'11160','Casciano','CASCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5310,'11737','Cascina','CASCINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5311,'39202','Casekow','CASEKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5312,'15997','Caselas','CASELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5313,'11738','Caselle','CASELLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5314,'26069','Caseros','CASEROS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5315,'12711','Caserta','CASERTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5316,'13049','Casetta','CASETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5317,'20482','Casey','CASEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5318,'20483','Caseyville','CASEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5319,'10929','Cashel','CASHEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5320,'33802','Cashiers','CASHIERS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5321,'31455','Cashmere','CASHMERE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5322,'15094','Cashmere','CASHMERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5323,'31714','Cashton','CASHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5324,'29861','Cashtown','CASHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5325,'34128','Casino','CASINO',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5326,'11740','Casirile','CASIRILE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5327,'23160','Caslano','CASLANO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5328,'37707','Casnate Con Bernate','CASNATE CON BERNATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5329,'39840','Casola Valsenio','CASOLA VALSENIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5330,'35517','Casole','CASOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5331,'38308','Casorate Sempione','CASORATE SEMPIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5332,'11743','Casoria','CASORIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5333,'32077','Casper','CASPER',NULL,'','United States','',0,0,231,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5334,'15184','Cass','CASS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5335,'22017','Cass City','CASS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5336,'40388','Cassago Brianza','CASSAGO BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5337,'37426','Cassano Allo Ionio','CASSANO ALLO IONIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5338,'11744','Cassaro','CASSARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5339,'19294','Casselberry','CASSELBERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5340,'28050','Casselton','CASSELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5341,'5171','Cassen','CASSEN',NULL,'','France','',0,0,76,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5342,'11745','Cassine','CASSINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5343,'7799','Cassington','CASSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5344,'11746','Cassino','CASSINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5345,'4861','Cassis','CASSIS',NULL,'','France','',0,0,76,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5346,'11162','Cassola','CASSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5347,'43710','Cassowary','CASSOWARY',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5348,'27607','Cassville','CASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5349,'35491','Castagneto Carducci','CASTAGNETO CARDUCCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5350,'38564','Castagniers','CASTAGNIERS',NULL,'','France','',0,0,76,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5351,'11747','Castagnito','CASTAGNITO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5352,'38678','Castagnole Delle Lanze','CASTAGNOLE DELLE LANZE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5353,'18368','Castaic','CASTAIC',NULL,'','United States','',0,0,231,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5354,'41285','Castalla','CASTALLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5355,'16072','Castanheira','CASTANHEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5356,'4048','Castaway Island','CASTAWAY ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5357,'24741','Casteau','CASTEAU',NULL,'','Belgium','',0,0,21,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5358,'38018','Castegnato','CASTEGNATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5359,'3401','Castejon','CASTEJON',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5360,'6965','Castel','CASTEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5361,'11758','Castelbuono','CASTELBUONO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5362,'38504','Castelculier','CASTELCULIER',NULL,'','France','',0,0,76,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5363,'11759','Casteldaccia','CASTELDACCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5364,'11760','Castelfiorentino','CASTELFIORENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5365,'11761','Castelfranco Di Sopra','CASTELFRANCO DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5366,'5172','Casteljaloux','CASTELJALOUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5367,'39257','Castellabate','CASTELLABATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5368,'11763','Castellammare Del Golfo','CASTELLAMMARE DEL GOLFO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5369,'39978','Castellana Grotte','CASTELLANA GROTTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5370,'12987','Castellaneta Marina','CASTELLANETA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5371,'39281','Castellar De La Frontera','CASTELLAR DE LA FRONTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5372,'11765','Castellaro','CASTELLARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5373,'3536','Castellbisbal','CASTELLBISBAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5374,'3537','Castelldefels','CASTELLDEFELS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5375,'11766','Castelleone','CASTELLEONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5376,'39205','Castelletto Di Branduzzo','CASTELLETTO DI BRANDUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5377,'26070','Castelli','CASTELLI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5378,'11165','Castelli Romani','CASTELLI ROMANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5379,'35697','Castellina In Chiant','CASTELLINA IN CHIANT',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5380,'3538','Castello','CASTELLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5381,'37990','Castelló Dempúries','CASTELLÓ DEMPÚRIES',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5382,'2586','Castellon','CASTELLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5383,'43239','Castellote','CASTELLOTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5384,'11769','Castelluzzo','CASTELLUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5385,'11770','Castelmagno','CASTELMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5386,'11167','Castelmola','CASTELMOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5387,'5173','Castelmoron-sur-lot','CASTELMORON-SUR-LOT',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5388,'42969','Castelnau Le Lez','CASTELNAU LE LEZ',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5389,'41563','Castelnau-de-montmiral','CASTELNAU-DE-MONTMIRAL',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5390,'4179','Castelnau-le-lez','CASTELNAU-LE-LEZ',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5391,'38235','Castelnovo Di Sotto','CASTELNOVO DI SOTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5392,'11771','Castelnuovo Berardenga','CASTELNUOVO BERARDENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5393,'15894','Castelo Branco','CASTELO BRANCO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5394,'11773','Castelraimondo','CASTELRAIMONDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5395,'11774','Castelrotto','CASTELROTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5396,'6078','Castelsagrat','CASTELSAGRAT',NULL,'','France','',0,0,76,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5397,'11081','Castelsardo','CASTELSARDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5398,'11775','Casteltermini','CASTELTERMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5399,'11776','Castelvecchio Pascoli','CASTELVECCHIO PASCOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5400,'11777','Castelvetrano','CASTELVETRANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5401,'11778','Castelvetro Di Modena','CASTELVETRO DI MODENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5402,'11779','Castenaso','CASTENASO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5403,'11780','Castenedolo','CASTENEDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5404,'5174','Castets','CASTETS',NULL,'','France','',0,0,76,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5405,'35485','Castiglion Fiorentin','CASTIGLION FIORENTIN',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5406,'11782','Castiglioncello','CASTIGLIONCELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5407,'11783','Castiglione Del Lago','CASTIGLIONE DEL LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5408,'28682','Castile','CASTILE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5409,'3206','Castilleja De La Cuesta','CASTILLEJA DE LA CUESTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5410,'5904','Castillon-du-gard','CASTILLON-DU-GARD',NULL,'','France','',0,0,76,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5411,'38111','Castillonnes','CASTILLONNES',NULL,'','France','',0,0,76,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5412,'21850','Castine','CASTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5413,'35487','Castione Della Preso','CASTIONE DELLA PRESO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5414,'34129','Castle Hill','CASTLE HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5415,'25288','Castle Junction','CASTLE JUNCTION',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5416,'18369','Castle Park','CASTLE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5417,'38933','Castlebaldwin','CASTLEBALDWIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5418,'40915','Castlebar','CASTLEBAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5419,'10903','Castlebar','CASTLEBAR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5420,'7802','Castlebay','CASTLEBAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5421,'38792','Castlebridge','CASTLEBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5422,'10895','Castleconnell','CASTLECONNELL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5423,'41591','Castledermot','CASTLEDERMOT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5424,'9337','Castleford','CASTLEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5425,'25406','Castlegar','CASTLEGAR',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5426,'10877','Castlegregory','CASTLEGREGORY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5427,'10832','Castleknock','CASTLEKNOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5428,'26892','Castlemaine','CASTLEMAINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5429,'10803','Castlemartyr','CASTLEMARTYR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5430,'7803','Castlereagh','CASTLEREAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5431,'7804','Castleton','CASTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5432,'20839','Castleton','CASTLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5433,'28683','Castleton-on-hudson','CASTLETON-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5434,'7805','Castletown','CASTLETOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5435,'35389','Castletownbere','CASTLETOWNBERE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5436,'41967','Castrelo','CASTRELO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5437,'6079','Castres','CASTRES',NULL,'','France','',0,0,76,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5438,'13578','Castries','CASTRIES',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5439,'5905','Castries','CASTRIES',NULL,'','France','',0,0,76,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5440,'3082','Castrillon','CASTRILLON',NULL,'','Spain','Castrillon',0,0,199,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5441,'38007','Castro Marim','CASTRO MARIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5442,'18371','Castro Valley','CASTRO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5443,'11788','Castrocaro Terme','CASTROCARO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5444,'27342','Castrop-rauxel','CASTROP-RAUXEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5445,'934','Cat Ba','CAT BA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5446,'24824','Cat Cay','CAT CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5447,'41557','Catala','CATALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5448,'9357','Catalan Bay','CATALAN BAY',NULL,'','Gibraltar','',0,0,85,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5449,'18115','Catalina','CATALINA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5450,'26042','Catamarca','CATAMARCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5451,'13003','Catania','CATANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5452,'35445','Catania-aci Trezza','CATANIA-ACI TREZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5453,'15743','Catano','CATANO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5454,'15493','Catarman','CATARMAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5455,'13893','Catavina','CATAVINA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5456,'14115','Catemaco','CATEMACO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5457,'16629','Catez Ob Savi','CATEZ OB SAVI',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5458,'18373','Cathedral City','CATHEDRAL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5459,'31457','Cathlamet','CATHLAMET',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5460,'32194','Catia La Mar','CATIA LA MAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5461,'15476','Caticlan','CATICLAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5462,'33610','Catlettsburg','CATLETTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5463,'15443','Catmon','CATMON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5464,'21660','Catonsville','CATONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5465,'32886','Catoosa','CATOOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5466,'3746','Catral','CATRAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5467,'9281','Catshill','CATSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5468,'28684','Catskill','CATSKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5469,'11792','Cattolica','CATTOLICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5470,'15472','Cauayan','CAUAYAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5471,'37175','Caucaia','CAUCAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5472,'43','Caucasia','CAUCASIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5473,'5523','Caudan','CAUDAN',NULL,'','France','',0,0,76,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5474,'5802','Caudebec-en-caux','CAUDEBEC-EN-CAUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5475,'5175','Caudrot','CAUDROT',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5476,'16581','Caue Ilheu Das Rolas','CAUE ILHEU DAS ROLAS',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5477,'26492','Caulfield','CAULFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5478,'5524','Caulnes','CAULNES',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5479,'25969','Causapscal','CAUSAPSCAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5480,'6080','Caussade-riviere','CAUSSADE-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5481,'40530','Causse-et-diège','CAUSSE-ET-DIÈGE',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5482,'5030','Cauterets','CAUTERETS',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5483,'23161','Caux','CAUX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5484,'11793','Cavaglia','CAVAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5485,'13035','Cavagnolo','CAVAGNOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5486,'6413','Cavaillon','CAVAILLON',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5487,'11794','Cavaion Veronese','CAVAION VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5488,'5111','Cavalaire-sur-mer','CAVALAIRE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5489,'42639','Cavalcante','CAVALCANTE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5490,'11795','Cavalese','CAVALESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5491,'39249','Cavallino','CAVALLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5492,'40703','Cavallino-treporti','CAVALLINO-TREPORTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5493,'10776','Cavan','CAVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5494,'23483','Cavancha','CAVANCHA',NULL,'','Chile','',0,0,45,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5495,'38688','Cavareno','CAVARENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5496,'13061','Cavaso Del Tomba','CAVASO DEL TOMBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5497,'40532','Cavedago','CAVEDAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5498,'20484','Cave-in-rock','CAVE-IN-ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5499,'10503','Cavelossim','CAVELOSSIM',NULL,'','India','',0,0,101,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5500,'26493','Cavendish','CAVENDISH',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5501,'43581','Cavendish','CAVENDISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5502,'25814','Cavendish','CAVENDISH',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5503,'31309','Cavendish','CAVENDISH',NULL,'','United States','',0,0,231,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5504,'11796','Cavengo Di Brianza','CAVENGO DI BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5505,'38626','Cavernago','CAVERNAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5506,'42194','Caviahue','CAVIAHUE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5507,'15519','Cavite','CAVITE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5508,'11176','Cavoli','CAVOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5509,'13050','Cavriglia','CAVRIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5510,'10053','Cavtat','CAVTAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5511,'10224','Cawang','CAWANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5512,'41777','Caxambu','CAXAMBU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5513,'24960','Caxias Do Sul','CAXIAS DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5514,'34968','Cayambe','CAYAMBE',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5515,'30298','Cayce','CAYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5516,'9886','Cayenne','CAYENNE',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5517,'6286','Cayeux-sur-mer','CAYEUX-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5518,'41971','Caylloma','CAYLLOMA',NULL,'','Peru','',0,0,172,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5519,'40190','Caylus','CAYLUS',NULL,'','France','',0,0,76,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5520,'24254','Cayman Brac','CAYMAN BRAC',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5521,'35828','Cayman-seven Mile Be','CAYMAN-SEVEN MILE BE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5522,'899','Cayo','CAYO',NULL,'','Belize','',0,0,22,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5523,'34938','Cayo Coco','CAYO COCO',NULL,'','Cuba','',0,0,56,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5524,'39476','Cayres','CAYRES',NULL,'','France','',0,0,76,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5525,'18374','Cayucos','CAYUCOS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5526,'28685','Cayuta','CAYUTA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5527,'18375','Cazadero','CAZADERO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5528,'3207','Cazalla De La Sierra','CAZALLA DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5529,'43977','Cazals','CAZALS',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5530,'6081','Cazaubon','CAZAUBON',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5531,'28686','Cazenovia','CAZENOVIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5532,'3208','Cazorla','CAZORLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5533,'38151','Cazzago Di Pianiga','CAZZAGO DI PIANIGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5534,'24971','Ceara','CEARA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5535,'5302','Ceaux','CEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5536,'6325','Ceaux-en-couhe','CEAUX-EN-COUHE',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5537,'3445','Cebreros','CEBREROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5538,'15544','Cebu','CEBU',NULL,'','Philippines','Cebu',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5539,'36549','Cebu(mactan) Airport','CEBU(MACTAN) AIRPORT',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5540,'36546','Cebu-badian','CEBU-BADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5541,'36553','Cebu-mactan Island','CEBU-MACTAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5542,'36554','Cebu-san Fernando','CEBU-SAN FERNANDO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5543,'36557','Cebu-sogod','CEBU-SOGOD',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5544,'11797','Cecchignola','CECCHIGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5545,'21661','Cecilton','CECILTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5546,'35495','Cecina','CECINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5547,'22018','Cedar','CEDAR',NULL,'','United States','',0,0,231,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5548,'31715','Cedarburg','CEDARBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5549,'34730','Cedaredge','CEDAREDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5550,'43144','Cedars','CEDARS',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5551,'19740','Cedartown','CEDARTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5552,'29288','Cedarville','CEDARVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5553,'26447','Ceduna','CEDUNA',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5554,'38696','Cee','CEE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5555,'11798','Cefalu','CEFALU',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5556,'35589','Cefalu-castel Di Tus','CEFALU-CASTEL DI TUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5557,'10099','Cegled','CEGLED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5558,'3030','Cehegin','CEHEGIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5559,'15744','Ceiba','CEIBA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5560,'40467','Ceillac','CEILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5561,'24306','Celadna','CELADNA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5562,'11799','Celano','CELANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5563,'13933','Celaya','CELAYA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5564,'10887','Celbridge','CELBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5565,'19296','Celebration','CELEBRATION',NULL,'','United States','',0,0,231,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5566,'23162','Celerina','CELERINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5568,'14127','Celestun','CELESTUN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5569,'23163','Celigny','CELIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5570,'29289','Celina','CELINA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5571,'37747','Celista','CELISTA',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5572,'16630','Celje','CELJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5573,'37609','Cellarengo','CELLARENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5574,'40288','Celldomolk','CELLDOMOLK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5575,'27195','Celle','CELLE',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5576,'40333','Celle Di Bulgheria','CELLE DI BULGHERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5577,'42992','Cellers','CELLERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5578,'40436','Cellole','CELLOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5579,'15966','Celorico Da Beira','CELORICO DA BEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5580,'5767','Cemboing','CEMBOING',NULL,'','France','',0,0,76,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5581,'11178','Cenerente','CENERENTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5582,'3209','Cenes De La Vega','CENES DE LA VEGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5583,'34731','Centennial','CENTENNIAL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5584,'42154','Center Region','CENTER REGION',NULL,'','Israel','',0,0,106,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5585,'28687','Centerport','CENTERPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5586,'29290','Centerville','CENTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5587,'11801','Cento','CENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:54','1900-01-01 00:00:00',1,0,1),(5588,'11802','Centocelle','CENTOCELLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5589,'39148','Centola','CENTOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5590,'30299','Central','CENTRAL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5591,'1117','Central And North Greece','CENTRAL AND NORTH GREECE',NULL,'','GREECE','',0,0,86,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5592,'122','Central Black Forest','CENTRAL BLACK FOREST',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5593,'24287','Central Bohemia','CENTRAL BOHEMIA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5594,'4180','Central Brittany','CENTRAL BRITTANY',NULL,'','France','',0,0,76,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5595,'24770','Central Bulgaria','CENTRAL BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5596,'26978','Central Carinthia','CENTRAL CARINTHIA',NULL,'','Austria','',0,0,14,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5597,'2590','Central Catalonia','CENTRAL CATALONIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5598,'34130','Central Coast','CENTRAL COAST',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5599,'3883','Central Finland','CENTRAL FINLAND',NULL,'','Finland','',0,0,75,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5600,'24162','Central Pacific Coast','CENTRAL PACIFIC COAST',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5601,'16591','Central Slovakia','CENTRAL SLOVAKIA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5602,'13591','Central Sri Lanka','CENTRAL SRI LANKA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5603,'25919','Central United Arab Emirates','CENTRAL UNITED ARAB EMIRATES',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5604,'20485','Centralia','CENTRALIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5605,'17848','Centre','CENTRE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5606,'1212','Centre Portugal','CENTRE PORTUGAL',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5607,'31062','Centreville','CENTREVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5608,'32555','Centurion','CENTURION',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5609,'32396','Century City','CENTURY CITY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5610,'18376','Century City','CENTURY CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5611,'10152','Cepaka','CEPAKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5612,'35498','Cerbaia','CERBAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5613,'41562','Cerbere','CERBERE',NULL,'','France','',0,0,76,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5614,'5906','Cerbère','CERBÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5615,'37176','Cercola','CERCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5616,'41063','Cerdanyola','CERDANYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5617,'15901','Cerdeira','CERDEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5618,'18377','Ceres','CERES',NULL,'','United States','',0,0,231,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5619,'38097','Ceres','CERES',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5620,'5907','Ceret','CERET',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5621,'16914','Cerf Island','CERF ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5622,'4685','Cergy','CERGY',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5623,'35497','Ceriale','CERIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5624,'39057','Ceriana','CERIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5625,'43978','Cerise','CERISE',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5626,'42193','Cerkezkoy','CERKEZKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5627,'16631','Cerklje Na Gorenjskem','CERKLJE NA GORENJSKEM',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5628,'2465','Cerler','CERLER',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5629,'42346','Cernay La Ville','CERNAY LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5630,'4686','Cernay-la-ville','CERNAY-LA-VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5631,'11803','Cernobbio','CERNOBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5632,'37994','Cernusco Sul Naviglio','CERNUSCO SUL NAVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5633,'13947','Cerocahui','CEROCAHUI',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5634,'39201','Céron','CÉRON',NULL,'','France','',0,0,76,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5635,'25199','Cerqueira Cesar','CERQUEIRA CESAR',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5636,'17524','Cerra Colorado','CERRA COLORADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5637,'11804','Cerreto Di Spoleto','CERRETO DI SPOLETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5638,'28508','Cerrillos','CERRILLOS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5639,'18378','Cerritos','CERRITOS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5640,'15357','Cerro Azul','CERRO AZUL',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5641,'37072','Cerro Colorado','CERRO COLORADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5642,'11805','Cerro Maggiore','CERRO MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5643,'11806','Certaldo','CERTALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5644,'16257','Certanovo','CERTANOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5645,'11807','Certosa Di Pavia','CERTOSA DI PAVIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5646,'15797','Cerva','CERVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5647,'26584','Cervantes','CERVANTES',NULL,'','Australia','Cervantes',0,0,13,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5648,'9986','Cervar Porat','CERVAR PORAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5649,'3539','Cervera','CERVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5650,'38309','Cerveteri','CERVETERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5651,'12716','Cervia','CERVIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5652,'11808','Cesana Torinese','CESANA TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5653,'11179','Cesano Boscone','CESANO BOSCONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5654,'42200','Cesario Lange','CESARIO LANGE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5655,'12959','Cesena','CESENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5656,'12717','Cesenatico','CESENATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5657,'13666','Cesis','CESIS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5658,'24341','Ceske Budejovice','CESKE BUDEJOVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5659,'24336','Cesky Krumlov','CESKY KRUMLOV',NULL,'','Czech Republic','Cesky Krumlov',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5660,'17253','Cesme','CESME',NULL,'','Turkey','',0,0,222,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5661,'34131','Cessnock','CESSNOCK',NULL,'','Australia','Cessnock',0,0,13,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5662,'4182','Cesson','CESSON',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5663,'4938','Cesson-sevigne','CESSON-SEVIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5664,'4926','Cestas','CESTAS',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5665,'39924','Cestlice','CESTLICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5666,'3702','Cestona','CESTONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5667,'11810','Cetona','CETONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5668,'11811','Cetraro','CETRARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5669,'2871','Ceuta','CEUTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5670,'4183','Cevannes National Park','CEVANNES NATIONAL PARK',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5671,'36734','Cha Am','CHA AM',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5673,'44254','Chaaya Island','CHAAYA ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5674,'5444','Chablis','CHABLIS',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5675,'5303','Chabreloche','CHABRELOCHE',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5676,'6414','Chabrieres','CHABRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5677,'32201','Chacao','CHACAO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5678,'43837','Chachagua','CHACHAGUA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5679,'42408','Chachoengsao','CHACHOENGSAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5680,'26123','Chacras De Coria','CHACRAS DE CORIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5681,'6968','Chadderton','CHADDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5682,'7806','Chaddesley Corbett','CHADDESLEY CORBETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5683,'29863','Chadds Ford','CHADDS FORD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5684,'7807','Chadlington','CHADLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5685,'28110','Chadron','CHADRON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5686,'28690','Chaffee','CHAFFEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5687,'7808','Chagford','CHAGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5688,'3844','Chagni','CHAGNI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5689,'5445','Chagny','CHAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5690,'9918','Chai Wan','CHAI WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5691,'39931','Chail','CHAIL',NULL,'','India','Chail',1,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5692,'5840','Chailly-en-bière','CHAILLY-EN-BIÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5693,'38272','Chailly-sur-armancon','CHAILLY-SUR-ARMANCON',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5694,'5446','Chaintre','CHAINTRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5695,'10395','Chak Badrinath','CHAK BADRINATH',NULL,'','India','',0,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5696,'10504','Chakdaha','CHAKDAHA',NULL,'','India','',0,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5697,'14031','Chalco De Diaz Covarrubias','CHALCO DE DIAZ COVARRUBIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5698,'35774','Chale Paradise Islan','CHALE PARADISE ISLAN',NULL,'','Kenya','',0,0,113,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5699,'5768','Chalezeule','CHALEZEULE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5700,'7809','Chalford','CHALFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5701,'42515','Chalkida - Evia','CHALKIDA - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5702,'9444','Chalkidiki','CHALKIDIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5703,'38967','Chalkidona','CHALKIDONA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5704,'9785','Chalkis','CHALKIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5705,'17580','Chalkyitsik','CHALKYITSIK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5706,'4986','Challain-la-potherie','CHALLAIN-LA-POTHERIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5707,'6222','Challans','CHALLANS',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5708,'6588','Challes-les-eaux','CHALLES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5709,'20342','Challis','CHALLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5710,'21181','Chalmette','CHALMETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5711,'42734','Chalons-en-champagne','CHALONS-EN-CHAMPAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5712,'4995','Châlons-en-champagne','CHÂLONS-EN-CHAMPAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5713,'5447','Chalon-sur-saone','CHALON-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5714,'37515','Chalsa','CHALSA',NULL,'','India','Chalsa',12,0,101,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5715,'40018','Cham','CHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5716,'28509','Chama','CHAMA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5717,'5304','Chamalieres','CHAMALIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5718,'40735','Chamant','CHAMANT',NULL,'','France','',0,0,76,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5719,'2592','Chamartin - Plaza Castilla','CHAMARTIN - PLAZA CASTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5720,'10505','Chamba','CHAMBA',NULL,'','India','Chamba',1,0,101,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5721,'2593','Chamberi','CHAMBERI',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5722,'32998','Chamberlain','CHAMBERLAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5723,'18117','Chambers','CHAMBERS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5724,'29864','Chambersburg','CHAMBERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5725,'6589','Chambery','CHAMBERY',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5726,'1620','Chambery-le-vieux','CHAMBERY-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5727,'23164','Chambesy','CHAMBESY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5728,'19742','Chamblee','CHAMBLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5729,'5448','Chambolle-musigny','CHAMBOLLE-MUSIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5730,'5305','Chamboulive','CHAMBOULIVE',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5731,'5633','Chambray-les-tours','CHAMBRAY-LES-TOURS',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5732,'6223','Chambretaud','CHAMBRETAUD',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5733,'848','Chame','CHAME',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5734,'40604','Chamois','CHAMOIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5735,'40975','Chamonix','CHAMONIX',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5736,'5081','Chamonix-mont-blanc','CHAMONIX-MONT-BLANC',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5737,'6287','Chamouille','CHAMOUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5738,'5176','Champagnac-de-belair','CHAMPAGNAC-DE-BELAIR',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5739,'6590','Champagne-au-mont-d\'or','CHAMPAGNE-AU-MONT-D\'OR',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5740,'5769','Champagnole','CHAMPAGNOLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5741,'5449','Champagny','CHAMPAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5742,'6816','Champagny-en-vanoise','CHAMPAGNY-EN-VANOISE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5743,'20486','Champaign','CHAMPAIGN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5744,'23165','Champery','CHAMPERY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5745,'23445','Champex','CHAMPEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5746,'6224','Champigne','CHAMPIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5747,'4184','Champigny','CHAMPIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5748,'4687','Champigny-sur-marne','CHAMPIGNY-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5749,'5718','Champillon','CHAMPILLON',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5750,'29865','Champion','CHAMPION',NULL,'','United States','',0,0,231,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5751,'19297','Champions Gate','CHAMPIONS GATE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5752,'22340','Champlin','CHAMPLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5753,'4185','Champlitte','CHAMPLITTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5754,'6326','Champniers','CHAMPNIERS',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5755,'11812','Champoluc','CHAMPOLUC',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5756,'35992','Champoussin','CHAMPOUSSIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5757,'5841','Champs-sur-marne','CHAMPS-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5758,'37463','Champs-sur-tarentaine-marchal','CHAMPS-SUR-TARENTAINE-MARCHAL',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5759,'38987','Champtoceaux','CHAMPTOCEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5760,'10396','Chamrail','CHAMRAIL',NULL,'','India','',0,0,101,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5761,'4951','Chamrousse','CHAMROUSSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5762,'6591','Chanas','CHANAS',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5763,'34392','Chance Harbour','CHANCE HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5764,'5177','Chancelade','CHANCELADE',NULL,'','France','',0,0,76,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5765,'10628','Chandigarh','CHANDIGARH',NULL,'','India','Best Tour  Packages for Chandigarh | Chandigarh Tr',23,0,101,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5766,'10397','Chanditala','CHANDITALA',NULL,'','India','',0,0,101,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5767,'18118','Chandler','CHANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5768,'25970','Chandler','CHANDLER',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5769,'40914','Chandlers Cross','CHANDLERS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5770,'36820','Chang Hua','CHANG HUA',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5771,'23762','Changchun','CHANGCHUN',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5772,'23812','Changde','CHANGDE',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5773,'23735','Changdian','CHANGDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5774,'43979','Change','CHANGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5775,'13525','Changhowon','CHANGHOWON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5776,'17377','Changhua','CHANGHUA',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5777,'16530','Changi Airport (Sin)','CHANGI AIRPORT (SIN)',NULL,'','Singapore','',0,0,190,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5778,'5842','Changis-sur-marne','CHANGIS-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5779,'16975','Changlang Beach','CHANGLANG BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5780,'39256','Changping','CHANGPING',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5781,'23952','Changsha','CHANGSHA',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5782,'23736','Changshu','CHANGSHU',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5783,'35795','Changwon','CHANGWON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5784,'13484','Changwon','CHANGWON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5785,'23886','Changxindian','CHANGXINDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5786,'23914','Changzhi','CHANGZHI',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5787,'23737','Changzhou','CHANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5788,'32278','Chanh Hung','CHANH HUNG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5789,'22341','Chanhassen','CHANHASSEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5790,'1535','Chania','CHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5791,'43064','Chaniotis','CHANIOTIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5792,'1231','Channel Islands','CHANNEL ISLANDS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5793,'41726','Channel Tunnel','CHANNEL TUNNEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5794,'25649','Channel-port Aux Basques','CHANNEL-PORT AUX BASQUES',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5795,'30523','Channelview','CHANNELVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5796,'41554','Chanteloup En Brie','CHANTELOUP EN BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5797,'4186','Chanteloup-en-brie','CHANTELOUP-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5798,'5306','Chantemerle','CHANTEMERLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5799,'6592','Chantemerle-les-grignan','CHANTEMERLE-LES-GRIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5800,'5525','Chantepie','CHANTEPIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5801,'41709','Chanthaburi','CHANTHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5802,'31064','Chantilly','CHANTILLY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5803,'6288','Chantilly','CHANTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5804,'6225','Chantonnay','CHANTONNAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5805,'21032','Chanute','CHANUTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5806,'6226','Chanzeaux','CHANZEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5807,'23567','Chaohu','CHAOHU',NULL,'','China','',0,0,46,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5808,'5719','Chaource','CHAOURCE',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5809,'6289','Chaourse','CHAOURSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5810,'23867','Chaoyang','CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5811,'23953','Chaozhou','CHAOZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5812,'13894','Chapala','CHAPALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5813,'39756','Chapareillan','CHAPAREILLAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5814,'5908','Chapeauroux','CHAPEAUROUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5815,'25177','Chapeco','CHAPECO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5816,'1531','Chapel Of Garioch','CHAPEL OF GARIOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5817,'10833','Chapelizod','CHAPELIZOD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5818,'39084','Chapelle-des-bois','CHAPELLE-DES-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5819,'7810','Chapeltown','CHAPELTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5820,'39764','Chapin','CHAPIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5821,'34467','Chapleau','CHAPLEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5822,'38484','Chaplin','CHAPLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5823,'31963','Chapmanville','CHAPMANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5824,'6593','Chaponnay','CHAPONNAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5825,'6594','Chaponost','CHAPONOST',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5826,'28691','Chappaqua','CHAPPAQUA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5827,'6595','Charbonnieres-les-bains','CHARBONNIERES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5828,'7811','Chard','CHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5829,'23166','Chardonne','CHARDONNE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5830,'7812','Chardstock','CHARDSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5831,'17106','Chardzhou','CHARDZHOU',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5832,'4187','Charente','CHARENTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5833,'4188','Charente-maritime','CHARENTE-MARITIME',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5834,'4688','Charenton-le-pont','CHARENTON-LE-PONT',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5835,'39161','Charette-varennes','CHARETTE-VARENNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5836,'40011','Charing','CHARING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5837,'6969','Charingworth','CHARINGWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5838,'20173','Chariton','CHARITON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5839,'17484','Charkiv','CHARKIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5840,'7813','Charlbury','CHARLBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5841,'7814','Charlecote','CHARLECOTE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5842,'25971','Charlemagne','CHARLEMAGNE',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5843,'21334','Charlemont','CHARLEMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5844,'24660','Charleroi','CHARLEROI',NULL,'','Belgium','',0,0,21,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5845,'25972','Charlesbourg','CHARLESBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5846,'20488','Charleston','CHARLESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5847,'32171','Charlestown','CHARLESTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5848,'40395','Charlestown','CHARLESTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5849,'20842','Charlestown','CHARLESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5850,'34132','Charlestown','CHARLESTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5851,'35388','Charlestown','CHARLESTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5852,'13480','Charlestown','CHARLESTOWN',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5853,'10711','Charleville','CHARLEVILLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5854,'26396','Charleville','CHARLEVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5855,'5720','Charleville-mezieres','CHARLEVILLE-MEZIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5856,'35976','Charlevoix','CHARLEVOIX',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5857,'22021','Charlevoix','CHARLEVOIX',NULL,'','United States','',0,0,231,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5858,'34393','Charlo','CHARLO',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5859,'22022','Charlotte','CHARLOTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5860,'32232','Charlotte Amalie','CHARLOTTE AMALIE',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5861,'16785','Charlottenberg','CHARLOTTENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5862,'2207','Charlottenlund','CHARLOTTENLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5863,'31066','Charlottesville','CHARLOTTESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5864,'25815','Charlottetown','CHARLOTTETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5865,'17136','Charlotteville','CHARLOTTEVILLE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5866,'26397','Charlton','CHARLTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5867,'29292','Charm','CHARM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5868,'38738','Charmes','CHARMES',NULL,'','France','',0,0,76,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5869,'23167','Charmey','CHARMEY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5870,'4190','Charnay Les Macon','CHARNAY LES MACON',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5871,'6970','Charnock Richard','CHARNOCK RICHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5872,'25973','Charny','CHARNY',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5873,'5450','Charolles','CHAROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5874,'6971','Charter Alley','CHARTER ALLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5875,'18379','Charter Oak','CHARTER OAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5876,'42715','Charters','CHARTERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5877,'5634','Chartres','CHARTRES',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5878,'5526','Chartres-de-bretagne','CHARTRES-DE-BRETAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5879,'32556','Chartwell','CHARTWELL',NULL,'','South Africa','',0,0,195,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5880,'7815','Charwelton','CHARWELTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5881,'25408','Chase','CHASE',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5882,'22342','Chaska','CHASKA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5883,'6596','Chassagny','CHASSAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5884,'6597','Chasselay','CHASSELAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5885,'1592','Chasseneuil','CHASSENEUIL',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5886,'5123','Chasseneuil-du-poitou','CHASSENEUIL-DU-POITOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5887,'4952','Chasse-sur-rhone','CHASSE-SUR-RHONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5888,'5049','Chassieu','CHASSIEU',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5889,'43902','Chatan','CHATAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5891,'6415','Chateau Gombert','CHATEAU GOMBERT',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5892,'43980','Chateau-arnoux-saint-auban','CHATEAU-ARNOUX-SAINT-AUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5893,'4191','Château-arnoux-saint-auban','CHÂTEAU-ARNOUX-SAINT-AUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5894,'6327','Chateaubernard','CHATEAUBERNARD',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5895,'5527','Chateaubourg','CHATEAUBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5896,'6227','Chateaubriant','CHATEAUBRIANT',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5897,'38782','Chateau-chinon','CHATEAU-CHINON',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5898,'5451','Chateau-d\'oex','CHATEAU-D\'OEX',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5899,'23168','Chateau-d\'oex','CHATEAU-D\'OEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5900,'6228','Chateau-d\'olonne','CHATEAU-D\'OLONNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5901,'39042','Chateaugiron','CHATEAUGIRON',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5902,'4192','Château-gontier','CHÂTEAU-GONTIER',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5903,'25974','Chateauguay','CHATEAUGUAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5904,'4193','Château-la-vallière','CHÂTEAU-LA-VALLIÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5905,'5307','Chateauneuf','CHATEAUNEUF',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5906,'41553','Chateauneuf-de-grasse','CHATEAUNEUF-DE-GRASSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5907,'38518','Chateauneuf-du-faou','CHATEAUNEUF-DU-FAOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5908,'43981','Chateauneuf-du-rhone','CHATEAUNEUF-DU-RHONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5909,'4195','Châteauneuf-du-rhône','CHÂTEAUNEUF-DU-RHÔNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5910,'6416','Chateauneuf-le-rouge','CHATEAUNEUF-LE-ROUGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5911,'4196','Chateauneuf-sur-isere','CHATEAUNEUF-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5912,'25975','Chateau-richer','CHATEAU-RICHER',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5913,'4943','Chateauroux','CHATEAUROUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5914,'6290','Chateau-thierry','CHATEAU-THIERRY',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5915,'4197','Châtel','CHÂTEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5916,'43096','Chatelaillon Plage','CHATELAILLON PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5917,'6328','Chatelaillon-plage','CHATELAILLON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5918,'4198','Châtelaudren','CHÂTELAUDREN',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5919,'39186','Chatel-censoir','CHATEL-CENSOIR',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5920,'5308','Chatelguyon','CHATELGUYON',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5921,'1613','Chatel-guyon','CHATEL-GUYON',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5922,'23169','Chatel-saint-denis','CHATEL-SAINT-DENIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5923,'4689','Chatenay-malabry','CHATENAY-MALABRY',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5924,'22343','Chatfield','CHATFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5925,'28692','Chatham','CHATHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5926,'7816','Chatham','CHATHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5927,'6972','Chathill','CHATHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5928,'11813','Chatillon','CHATILLON',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5929,'5635','Chatillon','CHATILLON',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5930,'4199','Châtillon-en-michaille','CHÂTILLON-EN-MICHAILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5931,'4690','Chatou','CHATOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5932,'34133','Chatswood','CHATSWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5933,'18380','Chatsworth','CHATSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5934,'34470','Chatsworth','CHATSWORTH',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5935,'19298','Chattahoochee','CHATTAHOOCHEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5936,'33098','Chattanooga','CHATTANOOGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5937,'6598','Chatte','CHATTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5938,'7817','Chatton','CHATTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5939,'43601','Chau Doc','CHAU DOC',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5940,'37215','Chaudes-aigues','CHAUDES-AIGUES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5941,'24670','Chaudfontaine','CHAUDFONTAINE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5942,'5452','Chaulgnes','CHAULGNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5943,'6291','Chaulnes','CHAULNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5944,'38251','Chaumes-en-brie','CHAUMES-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5945,'5178','Chaumont','CHAUMONT',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5946,'4691','Chaumontel','CHAUMONTEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5947,'6330','Chauray','CHAURAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5948,'15034','Chaurjhari','CHAURJHARI',NULL,'','Nepal','',0,0,153,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5949,'5770','Chaussin','CHAUSSIN',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5950,'28693','Chautauqua','CHAUTAUQUA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5951,'5771','Chaux-des-crotenay','CHAUX-DES-CROTENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5952,'6229','Chavagnes-les-redoux','CHAVAGNES-LES-REDOUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5953,'23005','Chavannes-de-bogis','CHAVANNES-DE-BOGIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5954,'5636','Chaveignes','CHAVEIGNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5955,'6023','Chavelot','CHAVELOT',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5956,'39044','Chavenay','CHAVENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5957,'16073','Chaves','CHAVES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5958,'4692','Chaville','CHAVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5959,'41066','Chaweng','CHAWENG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5960,'6599','Chazay-d\'azergues','CHAZAY-D\'AZERGUES',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5961,'7818','Cheadle','CHEADLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5962,'24344','Cheb','CHEB',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5963,'21851','Chebeague Island','CHEBEAGUE ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5964,'16318','Cheboksary','CHEBOKSARY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5965,'22023','Cheboygan','CHEBOYGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5966,'44026','Checheng','CHECHENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5967,'32888','Checotah','CHECOTAH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5968,'7819','Cheddar','CHEDDAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5969,'28694','Cheektowaga','CHEEKTOWAGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5970,'42221','Chefchaouen','CHEFCHAOUEN',NULL,'','Morocco','',0,0,148,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5971,'38772','Chefchaouene','CHEFCHAOUENE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5972,'17581','Chefornak','CHEFORNAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5973,'16215','Cheia','CHEIA',NULL,'','Romania','',0,0,179,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5974,'31462','Chelan','CHELAN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5975,'5843','Chelles','CHELLES',NULL,'','France','',0,0,76,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5976,'15612','Chelm','CHELM',NULL,'','Poland','',0,0,174,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5977,'44186','Chelmno','CHELMNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5978,'21337','Chelmsford','CHELMSFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5979,'7820','Chelmsford','CHELMSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5980,'6973','Chelsea','CHELSEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5981,'25976','Chelsea','CHELSEA',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5982,'28695','Chelsea','CHELSEA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5983,'7821','Cheltenham','CHELTENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5984,'1222','Cheltenham','CHELTENHAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5985,'29866','Cheltenham','CHELTENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5986,'16313','Chelyabinsk','CHELYABINSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5987,'25409','Chemainus','CHEMAINUS',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5988,'6230','Chemille','CHEMILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5989,'14262','Chemin Grenier','CHEMIN GRENIER',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5990,'1873','Chemnitz','CHEMNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5991,'29637','Chemult','CHEMULT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5992,'38215','Chenac-saint-seurin-duzet','CHENAC-SAINT-SEURIN-DUZET',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5993,'23006','Chêne-bourg','CHÊNE-BOURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5994,'36242','Chenehutte','CHENEHUTTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5995,'4200','Chênehutte-trèves-cunault','CHÊNEHUTTE-TRÈVES-CUNAULT',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5996,'31463','Cheney','CHENEY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5997,'23557','Chengde','CHENGDE',NULL,'','China','',0,0,46,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5998,'23990','Chengdu','CHENGDU',NULL,'','China','',0,0,46,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5999,'7822','Chenies','CHENIES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6000,'10671','Chennai','CHENNAI',NULL,'','India','Chennai Holiday Packages | Chennai Trip Package | ',18,0,101,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6001,'20489','Chenoa','CHENOA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6002,'5637','Chenonceaux','CHENONCEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6003,'5453','Chenove','CHENOVE',NULL,'','France','',0,0,76,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6004,'23813','Chenzhou','CHENZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6005,'35798','Cheong Ju City','CHEONG JU CITY',NULL,'','South Korea','',0,0,197,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6006,'13485','Cheongju','CHEONGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6007,'42170','Chepelare','CHEPELARE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6008,'7823','Chepstow','CHEPSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6009,'40843','Cherai','CHERAI',NULL,'','India','',0,0,101,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6010,'14339','Cheras','CHERAS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6011,'11814','Cherasco','CHERASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6012,'14296','Cherating','CHERATING',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6013,'30302','Cheraw','CHERAW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6014,'4990','Cherbourg','CHERBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6015,'16352','Cheremushki','CHEREMUSHKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6016,'16471','Cherepovets','CHEREPOVETS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6017,'7824','Cheriton Bishop','CHERITON BISHOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6018,'17485','Cherkassy','CHERKASSY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6019,'42073','Cherkasy','CHERKASY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6020,'26681','Chermside','CHERMSIDE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6021,'23007','Chernex','CHERNEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6022,'17486','Chernovtsy','CHERNOVTSY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6023,'33811','Cherokee','CHEROKEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6024,'24882','Cherokee Sound','CHEROKEE SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6025,'34734','Cherry Creek - Glendale','CHERRY CREEK - GLENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6026,'7825','Cherry Hinton','CHERRY HINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6027,'21852','Cherryfield','CHERRYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6028,'9445','Chersonissos','CHERSONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6029,'7826','Chertsey','CHERTSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6030,'43738','Cheruthuruthy','CHERUTHURUTHY',NULL,'','India','',0,0,101,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6031,'22025','Chesaning','CHESANING',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6032,'31068','Chesapeake','CHESAPEAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6033,'37537','Cheseaux-sur-lausanne','CHESEAUX-SUR-LAUSANNE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6034,'7827','Chesham','CHESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6035,'6975','Cheshire','CHESHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6036,'19063','Cheshire','CHESHIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6037,'7828','Cheshunt','CHESHUNT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6038,'23170','Chesieres','CHESIERES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6039,'7829','Chessington','CHESSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6040,'5844','Chessy','CHESSY',NULL,'','France','',0,0,76,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6041,'43209','Cheste','CHESTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6042,'7830','Chester','CHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6043,'7831','Chesterfield','CHESTERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6044,'27609','Chesterfield','CHESTERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6045,'24867','Chesters','CHESTERS',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6046,'20843','Chesterton','CHESTERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6047,'28699','Chestertown','CHESTERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6048,'29293','Chesterville','CHESTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6049,'21666','Chestnut Hill','CHESTNUT HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6050,'40191','Chesuncook','CHESUNCOOK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6051,'21667','Cheswolde','CHESWOLDE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6052,'31716','Chetek','CHETEK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6053,'25703','Cheticamp','CHETICAMP',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6054,'14074','Chetumal','CHETUMAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6055,'25410','Chetwynd','CHETWYND',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6056,'9919','Cheung Chau','CHEUNG CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6057,'17582','Chevak','CHEVAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6058,'21668','Cheverly','CHEVERLY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6059,'5638','Cheverny','CHEVERNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6060,'4693','Chevilly-larue','CHEVILLY-LARUE',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6061,'29294','Cheviot','CHEVIOT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6062,'39247','Chevreuse','CHEVREUSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6063,'6292','Chevrieres','CHEVRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6064,'21669','Chevy Chase','CHEVY CHASE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6065,'31464','Chewelah','CHEWELAH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6066,'23171','Chexbres','CHEXBRES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6067,'32080','Cheyenne','CHEYENNE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6068,'23172','Chezard-saint-martin','CHEZARD-SAINT-MARTIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6069,'10399','Chharabra','CHHARABRA',NULL,'','India','',0,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6070,'10506','Chhatarpur','CHHATARPUR',NULL,'','India','Chhatarpur',15,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6071,'10400','Chhatrapati Shivaji International Airport (Bom)','CHHATRAPATI SHIVAJI INTERNATIONAL AIRPORT (BOM)',NULL,'','India','',0,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6072,'41972','Chia','CHIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6073,'11815','Chianciano Terme','CHIANCIANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6074,'17048','Chiang Dao','CHIANG DAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6075,'11816','Chianni','CHIANNI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6076,'36818','Chiao-hsi','CHIAO-HSI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6077,'13934','Chiapa De Corzo','CHIAPA DE CORZO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6078,'1230','Chiapas','CHIAPAS',NULL,'','MEXICO','',0,0,141,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6079,'11817','Chiaramonte Gulfi','CHIARAMONTE GULFI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6080,'23173','Chiasso','CHIASSO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6081,'11818','Chiavari','CHIAVARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6082,'38639','Chiavenna Landi','CHIAVENNA LANDI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6083,'39128','Chiaverano','CHIAVERANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6084,'17379','Chiayi','CHIAYI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6085,'13124','Chiba','CHIBA',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6086,'25977','Chibougamau','CHIBOUGAMAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6087,'20491','Chicago','CHICAGO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6088,'13796','Chichen Itza','CHICHEN ITZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6089,'9282','Chichester','CHICHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6090,'35309','Chichicastenango','CHICHICASTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6091,'41118','Chichiriviche','CHICHIRIVICHE',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6092,'19744','Chickamauga','CHICKAMAUGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6093,'17849','Chickasaw','CHICKASAW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6094,'32890','Chickasha','CHICKASHA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6095,'17583','Chicken','CHICKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6096,'1731','Chiclana','CHICLANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6097,'15420','Chiclayo','CHICLAYO',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6098,'39139','Chicoana','CHICOANA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6099,'14032','Chicoloapan De Juarez','CHICOLOAPAN DE JUAREZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6100,'21341','Chicopee','CHICOPEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6101,'25978','Chicoutimi','CHICOUTIMI',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6102,'37518','Chiddingfold','CHIDDINGFOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6103,'19299','Chiefland','CHIEFLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6104,'124','Chiemgau - Chiemsee (Area)','CHIEMGAU - CHIEMSEE (AREA)',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6105,'11819','Chieri','CHIERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6106,'11820','Chiesa In Valmalenco','CHIESA IN VALMALENCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6107,'11821','Chieti','CHIETI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6108,'37465','Chieveley','CHIEVELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6109,'23875','Chifeng','CHIFENG',NULL,'','China','',0,0,46,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6110,'17584','Chignik Lagoon','CHIGNIK LAGOON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6111,'24089','Chigorodo','CHIGORODO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6112,'13776','Chihuahua','CHIHUAHUA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6113,'10401','Chikkamagaluru','CHIKKAMAGALURU',NULL,'','India','',0,0,101,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6114,'15295','Chilas','CHILAS',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6115,'3747','Chilches','CHILCHES',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6116,'26682','Childers','CHILDERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6117,'17850','Childersburg','CHILDERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6118,'30524','Childress','CHILDRESS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6119,'31072','Chilhowie','CHILHOWIE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6120,'41113','Chiliwack','CHILIWACK',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6121,'26683','Chillagoe','CHILLAGOE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6122,'36012','Chillan','CHILLAN',NULL,'','Chile','',0,0,45,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6123,'3402','Chillaron De Cuenca','CHILLARON DE CUENCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6124,'7834','Chillaton','CHILLATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6125,'36005','Chillian','CHILLIAN',NULL,'','Chile','',0,0,45,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6126,'29295','Chillicothe','CHILLICOTHE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6127,'25411','Chilliwack','CHILLIWACK',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6128,'41393','Chillon','CHILLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6129,'5129','Chilly-mazarin','CHILLY-MAZARIN',NULL,'','France','',0,0,76,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6130,'29638','Chiloquin','CHILOQUIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6131,'31717','Chilton','CHILTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6132,'7835','Chilwell','CHILWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6133,'28510','Chimayo','CHIMAYO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6134,'13427','Chimkent','CHIMKENT',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6135,'33813','Chimney Rock','CHIMNEY ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6136,'14226','Chimoio','CHIMOIO',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6137,'13929','China','CHINA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6138,'30525','Chinatown','CHINATOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6139,'6977','Chinatown','CHINATOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6140,'14297','Chinatown - Sentral','CHINATOWN - SENTRAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6141,'906','Chinauta','CHINAUTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6142,'870','Chincha Alta','CHINCHA ALTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6143,'40386','Chincheros','CHINCHEROS',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6144,'2986','Chinchon','CHINCHON',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6145,'31073','Chincoteague','CHINCOTEAGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6146,'7836','Chingford','CHINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6147,'32644','Chingola','CHINGOLA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6148,'13532','Chinju','CHINJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6149,'18119','Chinle','CHINLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6150,'42865','Chino','CHINO',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6151,'18386','Chino','CHINO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6152,'27948','Chinook','CHINOOK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6153,'44246','Chintsa East','CHINTSA EAST',NULL,'','South Africa','',0,0,195,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6154,'11822','Chiocchio','CHIOCCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6155,'12881','Chioggia','CHIOGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6156,'9818','Chios','CHIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6157,'32649','Chipata','CHIPATA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6158,'3210','Chipiona','CHIPIONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6159,'34735','Chipita Park','CHIPITA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6160,'19301','Chipley','CHIPLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6161,'10507','Chiplun','CHIPLUN',NULL,'','India','Chiplun',5,0,101,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6162,'34134','Chippendale','CHIPPENDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6163,'7837','Chippenham','CHIPPENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6164,'7838','Chipperfield','CHIPPERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6165,'31718','Chippewa Falls','CHIPPEWA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6166,'7839','Chipping Campden','CHIPPING CAMPDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6167,'850','Chiquiri','CHIQUIRI',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6168,'32656','Chiredzi','CHIREDZI',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6169,'15348','Chiriqui','CHIRIQUI',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6170,'36518','Chiriqui-bambito','CHIRIQUI-BAMBITO',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6171,'26198','Chirnside Park','CHIRNSIDE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6172,'42866','Chiryu','CHIRYU',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6173,'22344','Chisago City','CHISAGO CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6174,'32642','Chisamba','CHISAMBA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6175,'17585','Chisana','CHISANA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6176,'25980','Chisasibi','CHISASIBI',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6177,'6978','Chiseldon','CHISELDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6178,'13718','Chisinau','CHISINAU',NULL,'','Moldova, Republic Of','',0,0,144,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6179,'7842','Chislehurst','CHISLEHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6180,'5639','Chissay','CHISSAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6181,'6979','Chisworth','CHISWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6182,'16315','Chita','CHITA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6183,'39578','Chitenay','CHITENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6184,'13226','Chitose','CHITOSE',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6185,'10402','Chitpur','CHITPUR',NULL,'','India','',0,0,101,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6186,'15296','Chitral','CHITRAL',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6187,'15355','Chitre','CHITRE',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6188,'24764','Chittagong','CHITTAGONG',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6190,'31314','Chittenden','CHITTENDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6191,'40152','Chittlehamholt','CHITTLEHAMHOLT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6192,'40805','Chittorgarh','CHITTORGARH',NULL,'','India','Chittorgarh Tour | Travel and Tourism | Rajasthan ',2,0,101,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6193,'10403','Chittur','CHITTUR',NULL,'','India','',0,0,101,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6194,'41806','Chitwan','CHITWAN',NULL,'','Nepal','Chitwan',0,0,153,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6195,'37316','Chiusa','CHIUSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6196,'11823','Chiusanico','CHIUSANICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6197,'11824','Chiusdino','CHIUSDINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6198,'11825','Chiusi','CHIUSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6199,'3748','Chiva','CHIVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6200,'11826','Chivasso','CHIVASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6201,'15386','Chivay','CHIVAY',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6202,'43819','Chizhou','CHIZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6203,'2378','Chlef','CHLEF',NULL,'','Algeria','',0,0,3,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6204,'42544','Choc Bay','CHOC BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6205,'32680','Chocorua','CHOCORUA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6206,'39565','Chocowinity','CHOCOWINITY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6207,'13414','Chofu','CHOFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6208,'5721','Choiseul','CHOISEUL',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6209,'16544','Choiseul Bay','CHOISEUL BAY',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6210,'43986','Choisey','CHOISEY',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6211,'7843','Cholderton','CHOLDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6212,'6231','Cholet','CHOLET',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6213,'7844','Chollerford','CHOLLERFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6214,'32251','Cholon','CHOLON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6215,'14002','Cholula','CHOLULA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6216,'9961','Choluteca','CHOLUTECA',NULL,'','Honduras','',0,0,97,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6217,'37326','Chomu','CHOMU',NULL,'','India','',0,0,101,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6218,'24355','Chomutov','CHOMUTOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6220,'13227','Chonan','CHONAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6221,'38880','Chonas-lamballan','CHONAS-LAMBALLAN',NULL,'','France','',0,0,76,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6222,'36736','Chonburi','CHONBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6223,'23569','Chongming','CHONGMING',NULL,'','China','',0,0,46,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6224,'13486','Chongno-gu','CHONGNO-GU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6225,'24003','Chongqing','CHONGQING',NULL,'','China','Chongqing',0,0,46,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6226,'7845','Choppington','CHOPPINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6227,'40043','Chorafakia','CHORAFAKIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6228,'4838','Chorges','CHORGES',NULL,'','France','',0,0,76,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6229,'763','Chorin','CHORIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6230,'43739','Chorla','CHORLA',NULL,'','India','',0,0,101,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6231,'7846','Chorley','CHORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6232,'15405','Chorrillos','CHORRILLOS',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6233,'43629','Chorzow','CHORZOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6234,'26129','Chos Malal','CHOS MALAL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6235,'13126','Chosei','CHOSEI',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6236,'27949','Choteau','CHOTEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6237,'42627','Chouf','CHOUF',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6238,'4202','Chouzy Sur Cisse','CHOUZY SUR CISSE',NULL,'','France','',0,0,76,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6239,'43740','Chowara','CHOWARA',NULL,'','India','',0,0,101,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6240,'18388','Chowchilla','CHOWCHILLA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6241,'42522','Chranoi','CHRANOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6242,'25231','Christ Church','CHRIST CHURCH',NULL,'','Barbados','',0,0,19,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6243,'6980','Christchurch','CHRISTCHURCH',NULL,'','United Kingdom','Christchurch',0,0,229,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6244,'15095','Christchurch','CHRISTCHURCH',NULL,'','New Zealand','Christchurch',0,0,157,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6245,'884','Christiana','CHRISTIANA',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6246,'44247','Christiana','CHRISTIANA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6247,'19214','Christiana','CHRISTIANA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6248,'31074','Christiansburg','CHRISTIANSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6249,'2289','Christiansfeld','CHRISTIANSFELD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6250,'9848','Christianshaab','CHRISTIANSHAAB',NULL,'','Greenland','',0,0,87,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6251,'32244','Christiansted','CHRISTIANSTED',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6252,'7847','Chryston','CHRYSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6253,'43145','Chtaura','CHTAURA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6254,'35938','Chua','CHUA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6255,'17586','Chuathbaluk','CHUATHBALUK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6256,'24826','Chub Cay','CHUB CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6257,'20343','Chubbuck','CHUBBUCK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6258,'35751','Chubu Int Airport','CHUBU INT AIRPORT',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6259,'42095','Chubut','CHUBUT',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6260,'33100','Chuckey Bend','CHUCKEY BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6261,'15427','Chucuito','CHUCUITO',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6262,'7848','Chudleigh','CHUDLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6263,'17587','Chugiak','CHUGIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6264,'32082','Chugwater','CHUGWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6265,'19745','Chula','CHULA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6266,'7849','Chulmleigh','CHULMLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6267,'17380','Chulu','CHULU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6268,'16953','Chumphon','CHUMPHON',NULL,'','Thailand','',0,0,215,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6270,'37562','Chunan','CHUNAN',NULL,'','China','',0,0,46,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6271,'37733','Chunan','CHUNAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6272,'36016','Chun\'an','CHUN\'AN',NULL,'','China','',0,0,46,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6273,'35818','Chuncheon','CHUNCHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6274,'926','Chung Ho City','CHUNG HO CITY',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6275,'35797','Chungju','CHUNGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6276,'17381','Chungli','CHUNGLI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6277,'13487','Chungmun','CHUNGMUN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6278,'13488','Chungnang-gu','CHUNGNANG-GU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6279,'13489','Chungyn-ri','CHUNGYN-RI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6280,'13127','Chuo-ku','CHUO-KU',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6281,'24940','Chuquisaca','CHUQUISACA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6282,'23174','Chur','CHUR',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6283,'21670','Church Creek','CHURCH CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6284,'25588','Churchill','CHURCHILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6285,'29870','Churchtown','CHURCHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6286,'31075','Churchville','CHURCHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6287,'6981','Churt','CHURT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6288,'39676','Churwalden','CHURWALDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6289,'23675','Chuzhou','CHUZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6290,'16184','Cialos','CIALOS',NULL,'','Reunion','',0,0,178,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6291,'11827','Ciampino','CIAMPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6292,'12882','Cibiana Di Cadore','CIBIANA DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6293,'5179','Ciboure','CIBOURE',NULL,'','France','',0,0,76,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6294,'28701','Cicero','CICERO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6295,'4049','Cicia','CICIA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6296,'15798','Cidade Universitaria','CIDADE UNIVERSITARIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6297,'41152','Cidade Velha','CIDADE VELHA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6298,'44037','Cidra','CIDRA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6299,'43621','Ciechocinek','CIECHOCINEK',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6300,'41202','Ciego De Avila','CIEGO DE AVILA',NULL,'','Cuba','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6301,'2987','Ciempozuelos','CIEMPOZUELOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6302,'1153','Cienaga De Zapata','CIENAGA DE ZAPATA',NULL,'','CUBA','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6303,'1228','Cienfuegos','CIENFUEGOS',NULL,'','CUBA','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6304,'44041','Cierpice','CIERPICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6305,'6331','Cierzac','CIERZAC',NULL,'','France','',0,0,76,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6306,'15609','Cieszyn','CIESZYN',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6307,'3031','Cieza','CIEZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6308,'14013','Cihuatlan','CIHUATLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6309,'10282','Cikarang','CIKARANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6310,'10295','Cilacap','CILACAP',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6311,'16193','Cilaos','CILAOS',NULL,'','Reunion','',0,0,178,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6312,'7851','Cilcennin','CILCENNIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6313,'42792','Cilegon','CILEGON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6314,'38979','Cima Di Porlezza','CIMA DI PORLEZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6315,'34736','Cimarron','CIMARRON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6316,'6417','Cimiez','CIMIEZ',NULL,'','France','',0,0,76,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6317,'36620','Cimpulung Moldvenesc','CIMPULUNG MOLDVENESC',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6318,'29297','Cincinnati','CINCINNATI',NULL,'','United States','',0,0,231,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6319,'11828','Cinecitta','CINECITTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6320,'39130','Ciney','CINEY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6321,'11829','Cinigiano','CINIGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6322,'13021','Cinisello Balsamo','CINISELLO BALSAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6323,'11830','Cinisi','CINISI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6324,'28234','Cinnaminson','CINNAMINSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6325,'11831','Cinquale','CINQUALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6326,'11183','Cinque Terre','CINQUE TERRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6327,'11832','Cinto Euganeo','CINTO EUGANEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6328,'3053','Cintruenigo','CINTRUENIGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6329,'10130','Cipanas','CIPANAS',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6330,'41768','Cipolleti','CIPOLLETI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6331,'42146','Cipolletti','CIPOLLETTI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6332,'17200','Cirali','CIRALI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6333,'27950','Circle','CIRCLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6334,'29299','Circleville','CIRCLEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6335,'10283','Cirebon','CIREBON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6336,'7852','Cirencester','CIRENCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6337,'39338','Cirié','CIRIÉ',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6338,'14180','Cirkewwa','CIRKEWWA',NULL,'','Malta','',0,0,135,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6339,'11833','Ciro Marina','CIRO MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6340,'42793','Cisarua','CISARUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6341,'30526','Cisco','CISCO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6342,'12883','Cison Di Valmarino','CISON DI VALMARINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6343,'37743','Cisterna Di Latina','CISTERNA DI LATINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6344,'11834','Cisternino','CISTERNINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6345,'4203','Cite Universitaire','CITE UNIVERSITAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6346,'35505','Citerna','CITERNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6347,'18390','Citrus Heights','CITRUS HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6348,'11838','Cittadella','CITTADELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6349,'37659','Cittaducale','CITTADUCALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6350,'11839','Cittanova','CITTANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6351,'11840','Cittiglio','CITTIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6352,'6982','City Of Westminster','CITY OF WESTMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6353,'924','Ciudad Acuna','CIUDAD ACUNA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6354,'32187','Ciudad Bolivar','CIUDAD BOLIVAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6355,'16107','Ciudad Del Este','CIUDAD DEL ESTE',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6356,'24151','Ciudad Quesada','CIUDAD QUESADA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6357,'2894','Ciudadela','CIUDADELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6358,'2895','Ciudadella De Menorca','CIUDADELLA DE MENORCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6359,'43483','Ciutadella','CIUTADELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6360,'40235','Civenna','CIVENNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6361,'42319','Cividale Del Friuli','CIVIDALE DEL FRIULI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6362,'11841','Civita Castellana','CIVITA CASTELLANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6363,'41677','Civitanova Marche','CIVITANOVA MARCHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6364,'12762','Civitavecchia','CIVITAVECCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6365,'38116','Civitella Dagliano','CIVITELLA DAGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6366,'23676','Cixi','CIXI',NULL,'','China','',0,0,46,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6367,'29639','Clackamas','CLACKAMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6368,'7853','Clackmannan','CLACKMANNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6369,'34691','Clacton On Sea','CLACTON ON SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6370,'42381','Clacton-on-sea','CLACTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6371,'18392','Clairemont','CLAIREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6372,'19302','Clair-mel City','CLAIR-MEL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6373,'25289','Clairmont','CLAIRMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6374,'6600','Claix','CLAIX',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6375,'17590','Clam Gulch','CLAM GULCH',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6376,'4694','Clamart','CLAMART',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6377,'5454','Clamecy','CLAMECY',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6378,'37321','Clane','CLANE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6379,'7854','Clanfield','CLANFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6380,'17851','Clanton','CLANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6381,'32444','Clanwilliam','CLANWILLIAM',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6382,'7855','Clapham','CLAPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6383,'4204','Clapiers','CLAPIERS',NULL,'','France','',0,0,76,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6384,'19303','Clarcona','CLARCONA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6385,'22027','Clare','CLARE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6386,'26448','Clare','CLARE',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6387,'10720','Clare','CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6388,'10863','Claregalway','CLAREGALWAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6389,'33814','Claremont','CLAREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6390,'43637','Claremont','CLAREMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6391,'32891','Claremore','CLAREMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6392,'10904','Claremorris','CLAREMORRIS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6393,'28702','Clarence','CLARENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6394,'43643','Clarence Point','CLARENCE POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6395,'24861','Clarence Town','CLARENCE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6396,'7857','Clarencefield','CLARENCEFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6397,'30527','Clarendon','CLARENDON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6398,'32544','Clarens','CLARENS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6399,'23008','Clarens','CLARENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6400,'41117','Clarenville','CLARENVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6401,'25290','Claresholm','CLARESHOLM',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6402,'10864','Clarinbridge','CLARINBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6403,'20176','Clarinda','CLARINDA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6404,'20177','Clarion','CLARION',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6405,'29872','Clark','CLARK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6406,'36550','Clark','CLARK',NULL,'','Philippines','',0,0,173,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6407,'18120','Clarkdale','CLARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6408,'19746','Clarkesville','CLARKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6409,'20845','Clarks Hill','CLARKS HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6410,'31968','Clarksburg','CLARKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6411,'27840','Clarksdale','CLARKSDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6412,'22028','Clarkston','CLARKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6413,'41178','Clarkston','CLARKSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6414,'20846','Clarksville','CLARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6415,'38093','Claryville','CLARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6416,'29640','Clatskanie','CLATSKANIE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6417,'27196','Clausthal-zellerfeld','CLAUSTHAL-ZELLERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6418,'28703','Claverack','CLAVERACK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6419,'7858','Claverdon','CLAVERDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6420,'40169','Clavier','CLAVIER',NULL,'','Belgium','',0,0,21,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6421,'11843','Claviere','CLAVIERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6422,'40177','Clavières','CLAVIÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6423,'22029','Clawson','CLAWSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6424,'7859','Clawton','CLAWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6425,'19748','Claxton','CLAXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6426,'17126','Claxton Bay','CLAXTON BAY',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6427,'21034','Clay Center','CLAY CENTER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6428,'7860','Claydon','CLAYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6429,'5845','Claye-souilly','CLAYE-SOUILLY',NULL,'','France','',0,0,76,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6430,'19215','Claymont','CLAYMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6431,'31077','Claypool Hill','CLAYPOOL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6432,'29874','Claysburg','CLAYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6433,'33815','Clayton','CLAYTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6434,'7861','Clayton Le Moors','CLAYTON LE MOORS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6435,'1528','Clayton-le-moors','CLAYTON-LE-MOORS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6436,'6985','Clayton-le-woods','CLAYTON-LE-WOODS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6437,'18395','Clear Lake','CLEAR LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6438,'25589','Clear Lake','CLEAR LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6439,'26684','Clear Mountain','CLEAR MOUNTAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6440,'25413','Clearbrook','CLEARBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6441,'29875','Clearfield','CLEARFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6442,'18397','Clearlake','CLEARLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6443,'32083','Clearmont','CLEARMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6444,'22345','Clearwater','CLEARWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6445,'25414','Clearwater','CLEARWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6446,'6986','Clearwell','CLEARWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6447,'7862','Cleator','CLEATOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6448,'30529','Cleburne','CLEBURNE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6449,'7864','Cleckheaton','CLECKHEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6450,'5383','Clecy','CLECY',NULL,'','France','',0,0,76,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6451,'7865','Cleethorpes','CLEETHORPES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6452,'6987','Cleeve Hill','CLEEVE HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6453,'33816','Clegg','CLEGG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6454,'6988','Cleish','CLEISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6455,'6601','Clelles','CLELLES',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6456,'33817','Clemmons','CLEMMONS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6457,'30305','Clemson','CLEMSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6458,'7866','Cleobury Mortimer','CLEOBURY MORTIMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6459,'5803','Cleon','CLEON',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6460,'26398','Clermont','CLERMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6461,'42347','Clermont','CLERMONT',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6462,'19306','Clermont','CLERMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6463,'5309','Clermont-ferrand','CLERMONT-FERRAND',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6464,'6293','Clermont-les-fermes','CLERMONT-LES-FERMES',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6465,'38311','Clerques','CLERQUES',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6466,'13646','Clervaux','CLERVAUX',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6467,'43989','Clesse','CLESSE',NULL,'','France','',0,0,76,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6468,'26449','Cleve','CLEVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6469,'7867','Clevedon','CLEVEDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6470,'29300','Cleveland','CLEVELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6471,'26685','Cleveland','CLEVELAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6472,'36873','Cleveland-hopkins','CLEVELAND-HOPKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:34','1900-01-01 00:00:00',1,0,1),(6473,'19307','Clewiston','CLEWISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6474,'42767','Cley Next The Sea','CLEY NEXT THE SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6475,'4695','Clichy','CLICHY',NULL,'','France','',0,0,76,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6476,'10865','Clifden','CLIFDEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6477,'6989','Clifford Chambers','CLIFFORD CHAMBERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6478,'28236','Cliffside Park','CLIFFSIDE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6479,'28237','Clifton','CLIFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6480,'32172','Clifton','CLIFTON',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6481,'32429','Clifton','CLIFTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6482,'26686','Clifton Beach','CLIFTON BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6483,'38685','Climping','CLIMPING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6484,'20848','Clinton','CLINTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6485,'25415','Clinton','CLINTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:38','1900-01-01 00:00:00',1,0,1),(6486,'31720','Clintonville','CLINTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6487,'18399','Clio','CLIO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6488,'6232','Clisson','CLISSON',NULL,'','France','',0,0,76,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6489,'7868','Clitheroe','CLITHEROE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6490,'20181','Clive','CLIVE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6491,'41590','Cloghan','CLOGHAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6492,'40590','Clohars-fouesnant','CLOHARS-FOUESNANT',NULL,'','France','',0,0,76,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6493,'10804','Clonakilty','CLONAKILTY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6494,'41589','Clonbur','CLONBUR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6495,'26399','Cloncurry','CLONCURRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6496,'10834','Clondalkin','CLONDALKIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6497,'10930','Clonmel','CLONMEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6498,'10835','Clontarf','CLONTARF',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6499,'41893','Cloppenburg','CLOPPENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6500,'22346','Cloquet','CLOQUET',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6501,'15185','Closeburn','CLOSEBURN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6502,'28513','Cloudcroft','CLOUDCROFT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6503,'7869','Clovelly','CLOVELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6504,'33105','Clover Hill','CLOVER HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6505,'33821','Cloverdale','CLOVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6506,'25416','Cloverdale','CLOVERDALE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6507,'30532','Cloverleaf','CLOVERLEAF',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6508,'28514','Clovis','CLOVIS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6509,'5640','Cloyes-sur-le-loir','CLOYES-SUR-LE-LOIR',NULL,'','France','',0,0,76,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6510,'10805','Cloyne','CLOYNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6511,'1640','Cluj','CLUJ',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6512,'16216','Cluj-napoca','CLUJ-NAPOCA',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6513,'40281','Clun','CLUN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6514,'26893','Clunes','CLUNES',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6515,'5455','Cluny','CLUNY',NULL,'','France','',0,0,76,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6516,'11844','Clusane Sul Lago','CLUSANE SUL LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6517,'35507','Clusone','CLUSONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6518,'31079','Cluster Springs','CLUSTER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6519,'30533','Clute','CLUTE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6520,'29303','Clyde','CLYDE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:43','1900-01-01 00:00:00',1,0,1),(6521,'25793','Clyde River','CLYDE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6522,'7870','Clydebank','CLYDEBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6523,'28708','Clymer','CLYMER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6524,'7871','Clyro','CLYRO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6525,'18402','Coachella','COACHELLA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6526,'18403','Coalinga','COALINGA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6527,'33319','Coalville','COALVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6528,'38141','Coalville','COALVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6529,'15745','Coamo','COAMO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6530,'40763','Coarsegold','COARSEGOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6531,'13037','Coassolo Torinese','COASSOLO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6532,'13993','Coatepec','COATEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6533,'29877','Coatesville','COATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6534,'6990','Coatham Mundeville','COATHAM MUNDEVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6535,'14116','Coatzacoalcos','COATZACOALCOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6536,'14075','Coba','COBA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6537,'42644','Cobano','COBANO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6538,'34135','Cobar','COBAR',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6539,'19751','Cobb Galleria','COBB GALLERIA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6540,'25417','Cobble Hill','COBBLE HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6541,'33106','Cobbly Nob','COBBLY NOB',NULL,'','United States','',0,0,231,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6542,'1679','Cobden','COBDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6543,'10806','Cobh','COBH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6544,'7872','Cobham','COBHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6545,'24954','Cobija','COBIJA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6546,'28709','Cobleskill','COBLESKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6547,'34472','Cobourg','COBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6548,'37807','Cobourg','COBOURG',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6549,'26494','Cobram','COBRAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6550,'43210','Cobreces','COBRECES',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6551,'22727','Coburg','COBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6552,'26495','Coburg','COBURG',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6553,'2390','Coca','COCA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6554,'34395','Cocagne','COCAGNE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6555,'11845','Cocconato','COCCONATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6556,'24938','Cochabamba','COCHABAMBA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6557,'23484','Cochamó','COCHAMÓ',NULL,'','Chile','',0,0,45,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6558,'42290','Coche Island','COCHE ISLAND',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6559,'28710','Cochecton','COCHECTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6560,'617','Cochem','COCHEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6561,'59203','Cochin International Airport','COCHIN INTERNATIONAL AIRPORT',NULL,'','India','',0,0,101,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6562,'28515','Cochiti Lake','COCHITI LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6563,'39753','Cochran','COCHRAN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6564,'43190','Cochrane','COCHRANE',NULL,'','Chile','',0,0,45,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6565,'25291','Cochrane','COCHRANE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6566,'43635','Cockatoo Island','COCKATOO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6567,'16933','Cockburn Town','COCKBURN TOWN',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6568,'24890','Cockburn Town','COCKBURN TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6569,'7873','Cockermouth','COCKERMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6570,'21673','Cockeysville','COCKEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6571,'30534','Cockrell Hill','COCKRELL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6572,'41727','Cocle','COCLE',NULL,'','Panama','',0,0,169,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6573,'34930','Cocles Beach','COCLES BEACH',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6574,'24211','Coco','COCO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6575,'19308','Cocoa','COCOA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6576,'19310','Coconut Creek','COCONUT CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6577,'26199','Coconut Island','COCONUT ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6578,'43681','Cocos Islands','COCOS ISLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6579,'14045','Cocoyoc','COCOYOC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6580,'41153','Coculi','COCULI',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6581,'35509','Codiponte','CODIPONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6582,'37897','Codogne','CODOGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6583,'26159','Codrington','CODRINGTON',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6584,'38735','Codrongianos','CODRONGIANOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6585,'32084','Cody','CODY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6586,'25132','Coelho Da Rocha','COELHO DA ROCHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6587,'26400','Coen','COEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6588,'20345','Coeur D\'alene','COEUR D\'ALENE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6589,'14494','Coevorden','COEVORDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6590,'21035','Coffeyville','COFFEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6591,'17592','Coffman Cove','COFFMAN COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6592,'34136','Coffs Harbour','COFFS HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6593,'41348','Cofino','COFINO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6594,'41730','Cofresi','COFRESI',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6595,'7874','Coggeshall','COGGESHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6596,'6332','Cognac','COGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6597,'4205','Cognat Lyonne','COGNAT LYONNE',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6598,'11846','Cogne','COGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6599,'39185','Cogoleto','COGOLETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6600,'6418','Cogolin','COGOLIN',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6601,'3447','Cogollos','COGOLLOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6602,'11847','Cogolo','COGOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6603,'38848','Cogorno','COGORNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6604,'22347','Cohasset','COHASSET',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6605,'28711','Cohocton','COHOCTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6606,'28712','Cohoes','COHOES',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6607,'43992','Coignieres','COIGNIERES',NULL,'','France','',0,0,76,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6608,'4206','Coignières','COIGNIÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6609,'10672','Coimbatore','COIMBATORE',NULL,'','India','Coimbatore',18,0,101,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6610,'15974','Coimbra','COIMBRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6611,'3211','Coin','COIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6613,'6602','Coise-saint-jean-pied-gauthier','COISE-SAINT-JEAN-PIED-GAUTHIER',NULL,'','France','',0,0,76,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6614,'36384','Col De Kerdous','COL DE KERDOUS',NULL,'','Morocco','',0,0,148,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6615,'26496','Colac','COLAC',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6616,'43741','Colachel','COLACHEL',NULL,'','India','',0,0,101,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6617,'17233','Colakli','COLAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6618,'15998','Colares','COLARES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6619,'39075','Colayrac-saint-cirq','COLAYRAC-SAINT-CIRQ',NULL,'','France','',0,0,76,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6620,'409','Colbe','COLBE',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6621,'37803','Colbordolo','COLBORDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6622,'21036','Colby','COLBY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6623,'36522','Colca','COLCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6624,'31315','Colchester','COLCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6625,'7875','Colchester','COLCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6626,'17593','Cold Bay','COLD BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6627,'25292','Cold Lake','COLD LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6628,'25704','Coldbrook','COLDBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6629,'30535','Coldspring','COLDSPRING',NULL,'','United States','',0,0,231,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6630,'40204','Coldstream','COLDSTREAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6631,'22032','Coldwater','COLDWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6632,'25887','Cole Bay','COLE BAY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6633,'32682','Colebrook','COLEBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6634,'7876','Coleford','COLEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6635,'25293','Coleman','COLEMAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6636,'30536','Coleman','COLEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6637,'7877','Coleraine','COLERAINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6638,'7878','Colerne','COLERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6639,'26832','Coles Bay','COLES BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6640,'7879','Coleshill','COLESHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6641,'31469','Colfax','COLFAX',NULL,'','United States','',0,0,231,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6642,'11848','Colico','COLICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6643,'13965','Colima','COLIMA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6644,'41354','Collado Villalba','COLLADO VILLALBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6645,'2989','Collado-villalba','COLLADO-VILLALBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6646,'5310','Collanges','COLLANGES',NULL,'','France','',0,0,76,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6647,'41301','Collbato','COLLBATO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6648,'2596','Collbató','COLLBATÓ',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6649,'11851','Collecchio','COLLECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6650,'29304','College Corner','COLLEGE CORNER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6651,'33107','Collegedale','COLLEGEDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6652,'29878','Collegeville','COLLEGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6653,'5846','Collegien','COLLEGIEN',NULL,'','France','',0,0,76,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6654,'11852','Collegno','COLLEGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6655,'11185','Collelungo Dei Baschi','COLLELUNGO DEI BASCHI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6656,'37833','Collepepe','COLLEPEPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6657,'11186','Collesalvetti','COLLESALVETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6658,'11853','Collesano','COLLESANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6659,'5384','Colleville-sur-mer','COLLEVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6660,'30539','Colleyville','COLLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6661,'11854','Colli Del Tronto','COLLI DEL TRONTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6662,'4915','Collias','COLLIAS',NULL,'','France','',0,0,76,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6663,'24256','Colliers Bay','COLLIERS BAY',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6664,'33108','Collierville','COLLIERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6665,'39308','Collinas','COLLINAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6666,'34474','Collingwood','COLLINGWOOD',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6667,'43014','Collingwood','COLLINGWOOD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6668,'27843','Collins','COLLINS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6669,'26401','Collinsville','COLLINSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6670,'20502','Collinsville','COLLINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6671,'5909','Collioure','COLLIOURE',NULL,'','France','',0,0,76,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6672,'40733','Collonges-au-mont-dor','COLLONGES-AU-MONT-DOR',NULL,'','France','',0,0,76,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6673,'39766','Collonges-la-rouge','COLLONGES-LA-ROUGE',NULL,'','France','',0,0,76,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6674,'10925','Collooney','COLLOONEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6675,'6758','Colmar','COLMAR',NULL,'','France','',0,0,76,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6676,'3212','Colmenar','COLMENAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6677,'43583','Colne','COLNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6678,'43946','Coloane','COLOANE',NULL,'','Macau','',0,0,128,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6679,'125','Cologne','COLOGNE',NULL,'','Germany','Cologne',0,0,83,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6680,'11855','Cologno Al Serio','COLOGNO AL SERIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6681,'23010','Cologny','COLOGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6682,'11857','Colombaro','COLOMBARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6683,'5722','Colombey-les-deux-églises','COLOMBEY-LES-DEUX-ÉGLISES',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6684,'23176','Colombier','COLOMBIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6685,'9378','Colombier','COLOMBIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6686,'5180','Colombier','COLOMBIER',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6687,'39786','Colombiers','COLOMBIERS',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6688,'6603','Colombier-saugnieu','COLOMBIER-SAUGNIEU',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6689,'13616','Colombo','COLOMBO',NULL,'','Sri Lanka','Colombo',0,0,200,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6690,'6082','Colomiers','COLOMIERS',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6691,'41767','Colon','COLON',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6692,'15356','Colon','COLON',NULL,'','Panama','',0,0,169,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6693,'24868','Colonel Hill','COLONEL HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6694,'6834','Colonia','COLONIA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6695,'872','Colonia','COLONIA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6696,'3448','Colonia De La Estacion','COLONIA DE LA ESTACION',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6697,'13797','Colonia Oaxaca','COLONIA OAXACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6698,'41873','Colonia Tovar','COLONIA TOVAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6699,'31081','Colonial Beach','COLONIAL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6700,'34739','Colorado City','COLORADO CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6701,'11187','Colosseum - Foro Romano','COLOSSEUM - FORO ROMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6702,'21344','Colrain','COLRAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6703,'4207','Colroy La Roche','COLROY LA ROCHE',NULL,'','France','',0,0,76,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6704,'27953','Colstrip','COLSTRIP',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6705,'18405','Colton','COLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6706,'28240','Colts Neck','COLTS NECK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6707,'28241','Columbia','COLUMBIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6708,'29305','Columbiana','COLUMBIANA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:09','1900-01-01 00:00:00',1,0,1),(6709,'29306','Columbus','COLUMBUS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:09','1900-01-01 00:00:00',1,0,1),(6710,'3083','Colunga','COLUNGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6711,'10404','Colva Beach','COLVA BEACH',NULL,'','India','',0,0,101,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6712,'31471','Colville','COLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6713,'25760','Colville Lake','COLVILLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6714,'1394','Colwyn Bay','COLWYN BAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6715,'7880','Colwyn Bay','COLWYN BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6716,'5181','Coly','COLY',NULL,'','France','',0,0,76,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6717,'7881','Colyton','COLYTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6718,'12718','Comacchio','COMACCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6719,'40786','Comala','COMALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6720,'30542','Comanche','COMANCHE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6721,'25038','Comandatuba','COMANDATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6722,'11858','Comano','COMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6723,'38085','Comares','COMARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6724,'2599','Comarruga','COMARRUGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6725,'9962','Comayagua','COMAYAGUA',NULL,'','Honduras','',0,0,97,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6726,'43216','Comber','COMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6727,'24671','Comblain-la-tour','COMBLAIN-LA-TOUR',NULL,'','Belgium','',0,0,21,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6728,'5082','Combloux','COMBLOUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6729,'5528','Combourg','COMBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6730,'40546','Combreux','COMBREUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6731,'5529','Combrit','COMBRIT',NULL,'','France','',0,0,76,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6732,'19754','Comer','COMER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6733,'11859','Comerio','COMERIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6734,'30543','Comfort','COMFORT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6735,'3120','Comillas','COMILLAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6736,'1418','Coming - Painted Post - Ny','COMING - PAINTED POST - NY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6737,'14181','Comino','COMINO',NULL,'','Malta','',0,0,135,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6738,'39556','Comiso','COMISO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6739,'28716','Commack','COMMACK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6740,'18407','Commerce','COMMERCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6741,'5385','Commes','COMMES',NULL,'','France','',0,0,76,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6742,'11860','Commezzadura','COMMEZZADURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6743,'34137','Como','COMO',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6744,'12785','Como','COMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6745,'26114','Comodoro Rivadavia','COMODORO RIVADAVIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6746,'13922','Comondu','COMONDU',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6747,'25418','Comox','COMOX',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6748,'3213','Competa','COMPETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6749,'37963','Compeyre','COMPEYRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6750,'6294','Compiegne','COMPIEGNE',NULL,'','France','',0,0,76,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6751,'11861','Compiobbi','COMPIOBBI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6752,'41910','Comporta','COMPORTA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6753,'3661','Compostela','COMPOSTELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6754,'18408','Compton','COMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6755,'40239','Compton Bassett','COMPTON BASSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6756,'7883','Comrie','COMRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6757,'22034','Comstock Park','COMSTOCK PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6758,'936','Con Dao','CON DAO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6759,'42615','Conakry','CONAKRY',NULL,'','Guinea','',0,0,92,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6760,'30545','Concan','CONCAN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6761,'4912','Concarneau','CONCARNEAU',NULL,'','France','',0,0,76,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6762,'38370','Concei','CONCEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6763,'41983','Conceicao Da Barra','CONCEICAO DA BARRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6764,'23517','Concepcion','CONCEPCION',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6765,'40667','Concepcion De Ataco','CONCEPCION DE ATACO',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6766,'43268','Concepcion Del Uruguay','CONCEPCION DEL URUGUAY',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6767,'40315','Concesio','CONCESIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6768,'16945','Conch Bar','CONCH BAR',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6769,'23539','Conchali','CONCHALI',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6770,'23500','Concon','CONCON',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6771,'29642','Concord','CONCORD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6772,'34138','Concord','CONCORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6773,'34475','Concord','CONCORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:18','1900-01-01 00:00:00',1,0,1),(6774,'27617','Concordia','CONCORDIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6775,'26117','Concordia','CONCORDIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6776,'29880','Concordville','CONCORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6777,'11862','Concorezzo','CONCOREZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6778,'31472','Concrete','CONCRETE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6779,'15746','Condado','CONDADO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6780,'4208','Condat Sur Vezere','CONDAT SUR VEZERE',NULL,'','France','',0,0,76,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6781,'36566','Conde Ixa-a-nova','CONDE IXA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6782,'5386','Condeau','CONDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6783,'39210','Conde-en-brie','CONDE-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6784,'15902','Condeixa A Nova','CONDEIXA A NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6785,'1630','Condeixa-a-nova','CONDEIXA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6786,'6024','Conde-northen','CONDE-NORTHEN',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6787,'34139','Condobolin','CONDOBOLIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6788,'11863','Condofuri','CONDOFURI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6789,'27956','Condon','CONDON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6790,'24108','Condoto','CONDOTO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6791,'6604','Condrieu','CONDRIEU',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6792,'12884','Conegliano','CONEGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6793,'28717','Coney Island','CONEY ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6794,'4209','Conflans Sur Anille','CONFLANS SUR ANILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6795,'4697','Conflans-sainte-honorine','CONFLANS-SAINTE-HONORINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6796,'41552','Conflans-ste-honorine','CONFLANS-STE-HONORINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6797,'29881','Confluence','CONFLUENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6798,'6605','Confrancon','CONFRANCON',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6799,'10905','Cong','CONG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6800,'28718','Congers','CONGERS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6801,'39331','Conghua','CONGHUA',NULL,'','China','',0,0,46,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6802,'7884','Congleton','CONGLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6803,'41305','Congosto','CONGOSTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6804,'1732','Conil','CONIL',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6805,'37488','Conilhac-corbieres','CONILHAC-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6806,'7885','Coniston','CONISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6807,'19757','Conley','CONLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6808,'29310','Conneaut','CONNEAUT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6809,'1126','Connecticut Coast Area - Ct','CONNECTICUT COAST AREA - CT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6810,'5804','Connelles','CONNELLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6811,'29882','Connellsville','CONNELLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6812,'33825','Connellys Springs','CONNELLYS SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6813,'10721','Connemara','CONNEMARA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6814,'20854','Connersville','CONNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6815,'39642','Connolly','CONNOLLY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6816,'33826','Conover','CONOVER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6817,'5910','Conques','CONQUES',NULL,'','France','',0,0,76,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6818,'27957','Conrad','CONRAD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6819,'25294','Conrich','CONRICH',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6820,'30546','Conroe','CONROE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6821,'24920','Consejo','CONSEJO',NULL,'','Belize','',0,0,22,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6822,'11864','Conselve','CONSELVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6823,'43584','Consett','CONSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6824,'29883','Conshohocken','CONSHOHOCKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6825,'25174','Consolacao','CONSOLACAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6826,'127','Constance','CONSTANCE',NULL,'','Germany','',0,0,83,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6827,'16043','Constancia','CONSTANCIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6828,'16217','Constanta','CONSTANTA',NULL,'','Romania','',0,0,179,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6829,'32445','Constantia','CONSTANTIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6830,'3215','Constantina','CONSTANTINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6831,'22035','Constantine','CONSTANTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6832,'37362','Constantine','CONSTANTINE',NULL,'','Algeria','',0,0,3,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6833,'6991','Constantine Bay','CONSTANTINE BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6834,'19758','Constitution','CONSTITUTION',NULL,'','United States','',0,0,231,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6835,'37583','Consuegra','CONSUEGRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6836,'36521','Contadora','CONTADORA',NULL,'','Panama','',0,0,169,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6837,'25081','Contagem','CONTAGEM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6838,'14042','Contepec','CONTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6839,'23177','Conters','CONTERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6840,'11865','Contessa Entellina','CONTESSA ENTELLINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6841,'6233','Contigne','CONTIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6842,'9309','Contin','CONTIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6843,'5127','Contrexeville','CONTREXEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6844,'11190','Contursi Terme','CONTURSI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6845,'28242','Convent Station','CONVENT STATION',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6846,'30548','Converse','CONVERSE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6847,'18003','Conway','CONWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6848,'7886','Conwy','CONWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6849,'19759','Conyers','CONYERS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6850,'29884','Conyngham','CONYNGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6851,'26450','Coober Pedy','COOBER PEDY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6852,'6992','Cooden','COODEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6853,'26954','Coogee','COOGEE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6854,'26200','Cooinda','COOINDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6855,'27958','Cooke City','COOKE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6856,'33112','Cookeville','COOKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6857,'29885','Cooksburg','COOKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6858,'28243','Cookstown','COOKSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6859,'7887','Cookstown','COOKSTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6860,'26402','Cooktown','COOKTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6861,'26687','Coolangatta','COOLANGATTA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6862,'26201','Coolangatta-tweed Heads','COOLANGATTA-TWEED HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6863,'10836','Coolock','COOLOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6864,'26688','Coolum Beach','COOLUM BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6865,'29311','Coolville','COOLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6866,'34141','Cooma','COOMA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6867,'26689','Coomera','COOMERA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6868,'34142','Coonabarabran','COONABARABRAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6869,'34143','Coonamble','COONAMBLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6870,'39721','Coonawarra','COONAWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6871,'10508','Coonoor','COONOOR',NULL,'','India','Coonoor',18,0,101,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6872,'32219','Cooper Island','COOPER ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6873,'17594','Cooper Landing','COOPER LANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6874,'24879','Cooper\'s Town','COOPER\'S TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6875,'29886','Coopersburg','COOPERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6876,'28719','Cooperstown','COOPERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6877,'22036','Coopersville','COOPERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6878,'34144','Coorabell','COORABELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6879,'43375','Coorg','COORG',NULL,'','India','Coorg',17,0,101,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6881,'37214','Cooroy','COOROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6882,'29643','Coos Bay','COOS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6883,'34145','Cootamundra','COOTAMUNDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6884,'10777','Cootehill','COOTEHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6885,'24952','Copacabana','COPACABANA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6886,'31473','Copalis Beach','COPALIS BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6887,'9963','Copan','COPAN',NULL,'','Honduras','',0,0,97,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6888,'11867','Copanello','COPANELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6889,'2142','Copenhagen','COPENHAGEN',NULL,'','Denmark','Copenhagen',0,0,59,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6890,'28721','Copiague','COPIAGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6891,'23515','Copiapo','COPIAPO',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6892,'29312','Copley','COPLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6893,'38146','Copparo','COPPARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6894,'30549','Coppell','COPPELL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6895,'13798','Copper Canyon','COPPER CANYON',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6896,'17595','Copper Center','COPPER CENTER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6897,'30550','Copperas Cove','COPPERAS COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6898,'25794','Coppermine','COPPERMINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6899,'18411','Copperopolis','COPPEROPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6900,'23178','Coppet','COPPET',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6901,'6993','Copthorne','COPTHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6902,'6156','Coquelles','COQUELLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6903,'29644','Coquille','COQUILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6904,'23520','Coquimbo','COQUIMBO',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6905,'25419','Coquitlam','COQUITLAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6906,'42139','Coral Bay','CORAL BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6907,'32233','Coral Bay','CORAL BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6908,'4050','Coral Coast','CORAL COAST',NULL,'','Fiji','',0,0,74,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6909,'25795','Coral Harbour','CORAL HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6910,'20184','Coralville','CORALVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6911,'29887','Coraopolis','CORAOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6912,'11868','Corato','CORATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6913,'6606','Corbas','CORBAS',NULL,'','France','',0,0,76,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6914,'5130','Corbeil-essonnes','CORBEIL-ESSONNES',NULL,'','France','',0,0,76,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6915,'3540','Corbera De Llobregat','CORBERA DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6916,'40637','Corbes','CORBES',NULL,'','France','',0,0,76,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6917,'43374','Corbett','CORBETT',NULL,'','India','',9,0,101,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6918,'44251','Corbetta','CORBETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6919,'5456','Corbigny','CORBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6920,'33614','Corbin','CORBIN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6921,'24694','Corbion','CORBION',NULL,'','Belgium','',0,0,21,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6922,'7888','Corbridge','CORBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6923,'7889','Corby','CORBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6924,'38418','Corçà','CORÇÀ',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6925,'11869','Corciano','CORCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6926,'18412','Corcoran','CORCORAN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6927,'43211','Corcubion','CORCUBION',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6928,'19760','Cordele','CORDELE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6929,'32893','Cordell','CORDELL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6930,'5311','Cordes','CORDES',NULL,'','France','',0,0,76,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6931,'3216','Cordoba','CORDOBA',NULL,'','Spain','Cordoba',0,0,199,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6932,'26100','Cordoba','CORDOBA',NULL,'','Argentina','Cordoba',0,0,10,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6933,'14117','Cordoba','CORDOBA',NULL,'','Mexico','Cordoba',0,0,141,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6934,'5847','Cordon','CORDON',NULL,'','France','',0,0,76,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6935,'17597','Cordova','CORDOVA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6936,'21854','Corea','COREA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6937,'37778','Coredo','COREDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6938,'40463','Corella','CORELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6939,'6607','Corenc','CORENC',NULL,'','France','',0,0,76,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6940,'9239','Corfe Castle','CORFE CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6941,'28722','Corfu','CORFU',NULL,'','United States','',0,0,231,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6942,'36359','Corfu-agios Gordis','CORFU-AGIOS GORDIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6943,'36369','Corfu-alikes','CORFU-ALIKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6944,'36377','Corfu-benitses','CORFU-BENITSES',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6945,'35223','Corfu-dassia','CORFU-DASSIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6946,'35220','Corfu-glyfada','CORFU-GLYFADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6947,'35232','Corfu-gouvia','CORFU-GOUVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6948,'35238','Corfu-ipsos','CORFU-IPSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6949,'35248','Corfu-kanoni','CORFU-KANONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6950,'35249','Corfu-kontokali','CORFU-KONTOKALI',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6951,'35289','Corfu-roda','CORFU-RODA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6952,'42380','Corgarff','CORGARFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6953,'11870','Corgeno','CORGENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6954,'41292','Coria','CORIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6955,'38897','Coriano','CORIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6956,'39357','Corigliano Dotranto','CORIGLIANO DOTRANTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6957,'11871','Corinaldo','CORINALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6958,'31316','Corinth','CORINTH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6959,'9448','Corinth','CORINTH',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6960,'10807','Cork','CORK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6961,'37376','Corleone','CORLEONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6962,'42713','Corlette','CORLETTE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6963,'7890','Corley','CORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6964,'42320','Corlo','CORLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6965,'38523','Cormano','CORMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6966,'38531','Cormeilles','CORMEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6967,'5723','Cormontreuil','CORMONTREUIL',NULL,'','France','',0,0,76,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6968,'43983','Corn Island','CORN ISLAND',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6969,'11872','Cornaredo','CORNAREDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6970,'23179','Cornaux','CORNAUX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6971,'19761','Cornelia','CORNELIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6972,'33828','Cornelius','CORNELIUS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6973,'41487','Cornella De Llobregat','CORNELLA DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6974,'25652','Corner Brook','CORNER BROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6975,'33115','Cornersville','CORNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6976,'6994','Cornhill On Tweed','CORNHILL ON TWEED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6977,'11873','Corniglia','CORNIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6978,'6419','Cornillon-confoux','CORNILLON-CONFOUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6979,'20185','Corning','CORNING',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6980,'32685','Cornish','CORNISH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6981,'18122','Cornville','CORNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6982,'34476','Cornwall','CORNWALL',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6983,'6995','Cornwall','CORNWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6984,'36297','Cornwell','CORNWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6985,'32196','Coro','CORO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6986,'35939','Coroico','COROICO',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6987,'33829','Corolla','COROLLA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6988,'15186','Coromandel','COROMANDEL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6989,'15525','Coron','CORON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6990,'18414','Corona','CORONA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6991,'18415','Coronado','CORONADO',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6992,'34146','Corowa','COROWA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6993,'24901','Corozal','COROZAL',NULL,'','Belize','',0,0,22,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6994,'36245','Corps','CORPS',NULL,'','France','',0,0,76,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6995,'30551','Corpus Christi','CORPUS CHRISTI',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6996,'3802','Corralejo','CORRALEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6997,'28517','Corrales','CORRALES',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6998,'13800','Corredor','CORREDOR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6999,'12957','Correggio','CORREGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(7000,'4698','Correncon En Vercors','CORRENCON EN VERCORS',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7001,'38805','Correns','CORRENS',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7002,'5999','Correze','CORREZE',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7003,'13801','Corridor','CORRIDOR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7004,'26107','Corrientes','CORRIENTES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7005,'41678','Corrubbio Di Negarine','CORRUBBIO DI NEGARINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7006,'26497','Corryong','CORRYONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7007,'11874','Corsano','CORSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7008,'1600','Corse','CORSE',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7009,'7891','Corsham','CORSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7010,'1219','Corsica','CORSICA',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7011,'30553','Corsicana','CORSICANA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7012,'11875','Corsico','CORSICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7013,'7892','Corstorphine','CORSTORPHINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7014,'40717','Cortaillod','CORTAILLOD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7015,'4886','Corte','CORTE',NULL,'','France','',0,0,76,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7016,'40184','Cortegana','CORTEGANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7017,'38119','Cortemilia','CORTEMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7018,'25420','Cortes Bay','CORTES BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7019,'35024','Cortes De La Fronter','CORTES DE LA FRONTER',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7020,'34745','Cortez','CORTEZ',NULL,'','United States','',0,0,231,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7021,'41024','Cortina Dampezzo','CORTINA DAMPEZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7022,'35475','Cortina-borca Cadore','CORTINA-BORCA CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7023,'28726','Cortland','CORTLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7024,'28727','Cortlandt','CORTLANDT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7025,'11876','Cortona','CORTONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7026,'40374','Coruche','CORUCHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7027,'17280','Corum','CORUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7028,'25073','Corumba','CORUMBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7029,'27959','Corvallis','CORVALLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7030,'11877','Corvara','CORVARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7031,'2602','Corvera','CORVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7032,'11191','Corviale','CORVIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7033,'15800','Corvo Island','CORVO ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7034,'7893','Corwen','CORWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7035,'20855','Corydon','CORYDON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7036,'39235','Cosala','COSALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7037,'33116','Cosby','COSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7038,'12705','Cosenza','COSENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7039,'29313','Coshocton','COSHOCTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7040,'2990','Coslada','COSLADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7041,'31474','Cosmopolis','COSMOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7042,'39329','Cosne-cours-sur-loire','COSNE-COURS-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7043,'37787','Cossonay','COSSONAY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7044,'13802','Costa Alegre','COSTA ALEGRE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7045,'43550','Costa Azul','COSTA AZUL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7046,'24972','Costa Do Saiupe','COSTA DO SAIUPE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7047,'11193','Costa Esmeralda','COSTA ESMERALDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7048,'18417','Costa Mesa','COSTA MESA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7049,'37610','Costa Navarino','COSTA NAVARINO',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7050,'35513','Costalunga','COSTALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7051,'11880','Costermano','COSTERMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7052,'11881','Costigliole D\'asti','COSTIGLIOLE D\'ASTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7053,'15545','Cotabato','COTABATO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7054,'2397','Cotacachi','COTACACHI',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7055,'43947','Cotai','COTAI',NULL,'','Macau','',0,0,128,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7056,'4211','Cote D Emeraude','COTE D EMERAUDE',NULL,'','France','',0,0,76,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7057,'25981','Cote-saint-luc','COTE-SAINT-LUC',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7058,'4699','Coti-chiavari','COTI-CHIAVARI',NULL,'','France','',0,0,76,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7059,'24747','Cotonou','COTONOU',NULL,'','Benin','',0,0,23,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7060,'2385','Cotopaxi','COTOPAXI',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7061,'11882','Cotronei','COTRONEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7062,'33830','Cotswold','COTSWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7063,'6996','Cotswolds','COTSWOLDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7064,'22351','Cottage Grove','COTTAGE GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7065,'764','Cottbus','COTTBUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7066,'40028','Cotter','COTTER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7067,'39188','Cottesloe','COTTESLOE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7068,'40344','Cottesmore','COTTESMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7069,'17853','Cottondale','COTTONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7070,'18123','Cottonwood','COTTONWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7071,'30554','Cotulla','COTULLA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7072,'40425','Couches','COUCHES',NULL,'','France','',0,0,76,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7073,'29888','Coudersport','COUDERSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7074,'5387','Coudeville','COUDEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7075,'31475','Cougar','COUGAR',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7076,'5911','Couiza','COUIZA',NULL,'','France','',0,0,76,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7077,'31476','Coulee City','COULEE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7078,'9265','Coulsdon','COULSDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7079,'18418','Coulterville','COULTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7080,'33117','Counce','COUNCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7081,'20347','Council','COUNCIL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7082,'20504','Countryside','COUNTRYSIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7083,'1142','Countryside Hotels Uk','COUNTRYSIDE HOTELS UK',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7084,'43186','County Down','COUNTY DOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7085,'7894','Coupar Angus','COUPAR ANGUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7086,'31478','Coupeville','COUPEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7087,'43999','Coupvray','COUPVRAY',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7088,'5457','Courban','COURBAN',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7089,'5132','Courbevoie','COURBEVOIE',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7090,'5641','Courcay','COURCAY',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7091,'36248','Courcelles De Tourai','COURCELLES DE TOURAI',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7092,'5642','Courcelles-de-touraine','COURCELLES-DE-TOURAINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7093,'4217','Courcelles-sur-vesles','COURCELLES-SUR-VESLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7094,'6608','Courchevel','COURCHEVEL',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7095,'6333','Courcon','COURCON',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7096,'4700','Courcouronnes','COURCOURONNES',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7097,'11883','Courmayeur','COURMAYEUR',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7098,'40524','Courseulles-sur-mer','COURSEULLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7099,'5643','Cour-sur-loire','COUR-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7100,'4218','Courtabeufs','COURTABEUFS',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7101,'41551','Courtaboeuf','COURTABOEUF',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7102,'39615','Courtils','COURTILS',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7103,'21182','Coushatta','COUSHATTA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7104,'5388','Coutances','COUTANCES',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7105,'41550','Coutras','COUTRAS',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7106,'23446','Couvet','COUVET',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7107,'5182','Coux-et-bigaroque','COUX-ET-BIGAROQUE',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7108,'42993','Covadonga','COVADONGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7109,'7895','Cove (Aberdeen)','COVE (ABERDEEN)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7110,'43373','Covelong','COVELONG',NULL,'','India','',0,0,101,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7111,'30245','Coventry','COVENTRY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7112,'7896','Coventry','COVENTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7113,'1148','Coventry','COVENTRY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7114,'12963','Covigliaio','COVIGLIAIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7115,'15895','Covilha','COVILHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7116,'18419','Covina','COVINA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7117,'21183','Covington','COVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7118,'33120','Cowan','COWAN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7119,'40437','Cowan Bridge','COWAN BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7120,'25982','Cowansville','COWANSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7121,'41176','Cowbridge','COWBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7122,'7897','Cowden','COWDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7123,'7898','Cowes','COWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7124,'26498','Cowes','COWES',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7125,'25422','Cowichan Bay','COWICHAN BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7126,'30555','Cowley','COWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7127,'34147','Cowra','COWRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7128,'6998','Cowshill','COWSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7129,'24753','Cox\'s Bazar','COX\'S BAZAR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7130,'28728','Coxsackie','COXSACKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7131,'23479','Coyhaique','COYHAIQUE',NULL,'','Chile','',0,0,45,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7132,'13971','Coyoacan','COYOACAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7133,'28112','Cozad','COZAD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7134,'13805','Cozumel','COZUMEL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7135,'33121','Crab Orchard','CRAB ORCHARD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7136,'26833','Cradle Mountain','CRADLE MOUNTAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7137,'39915','Cradock','CRADOCK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7138,'26796','Crafers','CRAFERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7139,'31317','Craftsbury','CRAFTSBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7140,'34747','Craig','CRAIG',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7141,'32309','Craig Cove','CRAIG COVE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7142,'6999','Craigavon','CRAIGAVON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7143,'7899','Craigellachie','CRAIGELLACHIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7144,'7000','Craigleith','CRAIGLEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7145,'43711','Craiglie','CRAIGLIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7146,'7001','Craiglockhart','CRAIGLOCKHART',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7147,'7900','Craigmillar','CRAIGMILLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7148,'7901','Craignure','CRAIGNURE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7149,'41175','Crail','CRAIL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7150,'16218','Craiova','CRAIOVA',NULL,'','Romania','',0,0,179,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7151,'5083','Cran Gevrier','CRAN GEVRIER',NULL,'','France','',0,0,76,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7152,'29889','Cranberry','CRANBERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7153,'43558','Cranbook','CRANBOOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7154,'37667','Cranborne','CRANBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7155,'26499','Cranbourne','CRANBOURNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7156,'7902','Cranbrook','CRANBROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7157,'25423','Cranbrook','CRANBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7158,'28244','Cranbury','CRANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7159,'39170','Crandola Valsassina','CRANDOLA VALSASSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7160,'31722','Crandon','CRANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7161,'30556','Crane','CRANE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7162,'28245','Cranford','CRANFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7163,'7903','Cranford','CRANFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7164,'41549','Cran-gevrier','CRAN-GEVRIER',NULL,'','France','',0,0,76,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7165,'23462','Crans Montana','CRANS MONTANA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7166,'38679','Cransac','CRANSAC',NULL,'','France','',0,0,76,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7167,'30246','Cranston','CRANSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7168,'11196','Craponi Marina','CRAPONI MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7169,'6609','Craponne','CRAPONNE',NULL,'','France','',0,0,76,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7170,'29648','Crater Lake','CRATER LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7171,'7905','Crathorne','CRATHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7172,'15803','Crato','CRATO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7173,'11884','Craveggia','CRAVEGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7174,'28113','Crawford','CRAWFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7175,'43796','Crawford Bay','CRAWFORD BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7176,'7906','Crawfordsburn','CRAWFORDSBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7177,'20856','Crawfordsville','CRAWFORDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7178,'19318','Crawfordville','CRAWFORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7179,'24927','Crawl','CRAWL',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7180,'7907','Crawley','CRAWLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7181,'7908','Crayke','CRAYKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7182,'6334','Crazannes','CRAZANNES',NULL,'','France','',0,0,76,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7183,'28246','Cream Ridge','CREAM RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7184,'5389','Creances','CREANCES',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7185,'7002','Creaton','CREATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7186,'11885','Creazzo','CREAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7187,'41548','Creches-sur-saone','CRECHES-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7188,'39954','Creciente','CRECIENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7189,'4219','Crecy-la-chapelle','CRECY-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7190,'43585','Crediton','CREDITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7191,'34748','Creede','CREEDE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7192,'33831','Creedmoor','CREEDMOOR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7193,'13948','Creel','CREEL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7194,'6295','Creil','CREIL',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7195,'40289','Creixell','CREIXELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7196,'11886','Cremona','CREMONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7197,'34148','Cremorne','CREMORNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7198,'39245','Creney-pres-troyes','CRENEY-PRES-TROYES',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7199,'5183','Creon','CREON',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7200,'4220','Crepon','CREPON',NULL,'','France','',0,0,76,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7201,'6296','Crepy-en-valois','CREPY-EN-VALOIS',NULL,'','France','',0,0,76,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7202,'43304','Cres','CRES',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7203,'29649','Crescent','CRESCENT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7204,'25425','Crescent Beach','CRESCENT BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7205,'20187','Cresco','CRESCO',NULL,'','United States','',0,0,231,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7206,'11887','Crespina','CRESPINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7207,'37772','Cresson','CRESSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7208,'23011','Cressy','CRESSY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7209,'34749','Crested Butte','CRESTED BUTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7210,'18421','Crestline','CRESTLINE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7211,'20188','Creston','CRESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7212,'25426','Creston','CRESTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7213,'19320','Crestview','CRESTVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7214,'6610','Crest-voland','CREST-VOLAND',NULL,'','France','',0,0,76,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7215,'20506','Crestwood','CRESTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7216,'29650','Creswell','CRESWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7217,'42138','Creswick','CRESWICK',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7218,'36361','Crete-agios Nikolaos','CRETE-AGIOS NIKOLAOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7219,'36372','Crete-amoudara','CRETE-AMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7220,'35221','Crete-chania','CRETE-CHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7221,'35224','Crete-drosia','CRETE-DROSIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7222,'35227','Crete-elounda Beach','CRETE-ELOUNDA BEACH',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7223,'35233','Crete-gouves','CRETE-GOUVES',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7224,'35234','Crete-heraklion','CRETE-HERAKLION',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7225,'35256','Crete-hersonissos','CRETE-HERSONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7226,'4701','Creteil','CRETEIL',NULL,'','France','',0,0,76,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7227,'35262','Crete-malia','CRETE-MALIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7228,'35281','Crete-panormo','CRETE-PANORMO',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7229,'35287','Crete-rethymnon','CRETE-RETHYMNON',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7230,'35292','Crete-sisi','CRETE-SISI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7231,'41005','Crete-sissi','CRETE-SISSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7232,'35241','Crete-sitia','CRETE-SITIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7233,'35304','Crete-vamos','CRETE-VAMOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7234,'4221','Creuse','CREUSE',NULL,'','France','',0,0,76,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7235,'27619','Creve Coeur','CREVE COEUR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7236,'7909','Crewe','CREWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7237,'7910','Crewkerne','CREWKERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7238,'7911','Crianlarich','CRIANLARICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7239,'7912','Criccieth','CRICCIETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7240,'25178','Criciuma','CRICIUMA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7241,'7913','Crick','CRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7242,'7914','Crickhowell','CRICKHOWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7243,'7915','Cricklade','CRICKLADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7244,'5390','Cricqueboeuf','CRICQUEBOEUF',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7245,'7916','Crieff','CRIEFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7246,'5805','Criel-sur-mer','CRIEL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7247,'35327','Crikvenica','CRIKVENICA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7248,'6420','Crillon-le-brave','CRILLON-LE-BRAVE',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7249,'7917','Crinan','CRINAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7250,'34750','Cripple Creek','CRIPPLE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7251,'21676','Crisfield','CRISFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7252,'23180','Crissier','CRISSIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7253,'41985','Cristiano Otoni','CRISTIANO OTONI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7254,'15352','Cristobal','CRISTOBAL',NULL,'','Panama','',0,0,169,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7255,'31723','Crivitz','CRIVITZ',NULL,'','United States','',0,0,231,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7256,'830','Crivitz','CRIVITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7257,'34149','Croa','CROA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7258,'39719','Croachy','CROACHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7259,'40329','Croagh','CROAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7260,'11198','Croce Di Magara','CROCE DI MAGARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7261,'11888','Crocevie','CROCEVIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7262,'9841','Crochu','CROCHU',NULL,'','Grenada','',0,0,88,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7263,'30557','Crockett','CROCKETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7264,'128','Croeffelbach','CROEFFELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7265,'1706','Croffelbach','CROFFELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7266,'6611','Crolles','CROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7267,'7918','Cromarty','CROMARTY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7268,'7919','Cromer','CROMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7269,'19069','Cromwell','CROMWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7270,'15098','Cromwell','CROMWELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7271,'9332','Cronton','CRONTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7272,'7920','Crook','CROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7273,'17600','Crooked Creek','CROOKED CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7274,'24915','Crooked Tree','CROOKED TREE',NULL,'','Belize','',0,0,22,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7275,'7921','Crooklands','CROOKLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7276,'22353','Crookston','CROOKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7277,'11889','Cropani','CROPANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7278,'22354','Crosby','CROSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7279,'7922','Crosby','CROSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7280,'7003','Crosby-on-eden','CROSBY-ON-EDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7281,'6234','Crosmieres','CROSMIERES',NULL,'','France','',0,0,76,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7282,'18004','Crossett','CROSSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7283,'7004','Crossgates','CROSSGATES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7284,'7923','Crosshouse','CROSSHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7285,'38519','Crosslake','CROSSLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7286,'33122','Crossville','CROSSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7287,'7005','Crosthwaite','CROSTHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7288,'7924','Croston','CROSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7289,'12706','Crotone','CROTONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7290,'28729','Croton-on-hudson','CROTON-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7291,'4222','Crots','CROTS',NULL,'','France','',0,0,76,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7292,'6335','Croutelle','CROUTELLE',NULL,'','France','',0,0,76,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7293,'7925','Crowborough','CROWBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7294,'30559','Crowley','CROWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7295,'28730','Crown Point','CROWN POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7296,'17119','Crown Point','CROWN POINT',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7297,'34150','Crows Nest','CROWS NEST',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7298,'7926','Crowthorne','CROWTHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7299,'7927','Croxdale','CROXDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7300,'7928','Croyde','CROYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7301,'7929','Croydon','CROYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7302,'26690','Croydon','CROYDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7303,'5312','Crozet','CROZET',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7304,'31084','Crozet','CROZET',NULL,'','United States','',0,0,231,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7305,'5530','Crozon','CROZON',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7306,'7930','Crudwell','CRUDWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7307,'37916','Crumlin','CRUMLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7308,'38425','Crump','CRUMP',NULL,'','United States','',0,0,231,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7309,'24707','Crupet','CRUPET',NULL,'','Belgium','',0,0,21,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7310,'6612','Cruseilles','CRUSEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7311,'32234','Cruz Bay','CRUZ BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7312,'13806','Cruz De Huanacaxtle','CRUZ DE HUANACAXTLE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7313,'25016','Cruzeiro Do Sul','CRUZEIRO DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7314,'22355','Crystal','CRYSTAL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7315,'34151','Crystal Creek','CRYSTAL CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7316,'43809','Crystal Harbour','CRYSTAL HARBOUR',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7317,'10114','Csepreg','CSEPREG',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7318,'10071','Cserszegtomaj','CSERSZEGTOMAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7319,'35338','Csopak','CSOPAK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7320,'16980','Cua Dia Beach','CUA DIA BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7321,'41467','Cuacos De Yuste','CUACOS DE YUSTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7322,'13972','Cuajimalpa','CUAJIMALPA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7323,'13959','Cuatrocienegas De Carranza','CUATROCIENEGAS DE CARRANZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7324,'13935','Cuauhtemoc','CUAUHTEMOC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7325,'13973','Cuautepec','CUAUTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7326,'41785','Cuautitlan','CUAUTITLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7327,'13960','Cuautla','CUAUTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7328,'27620','Cuba','CUBA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7329,'7931','Cuckfield','CUCKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7330,'6157','Cucq','CUCQ',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7331,'40110','Cucugnan','CUCUGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7332,'38966','Cucuron','CUCURON',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7333,'24118','Cucuta','CUCUTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7334,'18422','Cudahy','CUDAHY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7335,'10509','Cuddapah','CUDDAPAH',NULL,'','India','Cuddapah',7,0,101,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7336,'7932','Cuddington','CUDDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7337,'3084','Cudillero','CUDILLERO',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7338,'38265','Cudrefin','CUDREFIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7339,'26585','Cue','CUE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7340,'2391','Cuenca','CUENCA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7341,'14046','Cuernavaca','CUERNAVACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7342,'42186','Cuevas De San Marcos','CUEVAS DE SAN MARCOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7343,'23181','Cugy','CUGY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7344,'24961','Cuiaba','CUIABA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7345,'23802','Cuijiazhuang','CUIJIAZHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7346,'14568','Cuijk','CUIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7347,'5004','Cuincy','CUINCY',NULL,'','France','',0,0,76,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7348,'25898','Cul De Sac','CUL DE SAC',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7349,'9379','Cul De Sac','CUL DE SAC',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7350,'24212','Culebra','CULEBRA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7351,'15747','Culebra','CULEBRA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7352,'14089','Culiacan','CULIACAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7353,'7933','Cullen','CULLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7354,'33124','Culleoka','CULLEOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7355,'3219','Cullera','CULLERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7356,'43212','Culleredo','CULLEREDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7357,'32557','Cullinan','CULLINAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7358,'17854','Cullman','CULLMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7359,'37470','Cullompton','CULLOMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7360,'33832','Cullowhee','CULLOWHEE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7361,'23182','Cully','CULLY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7362,'31085','Culpeper','CULPEPER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7363,'7934','Culrain','CULRAIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7364,'7935','Cultra','CULTRA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7365,'7936','Cults','CULTS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7366,'18423','Cultural District - Japantown','CULTURAL DISTRICT - JAPANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7367,'1435','Cultural Triangle','CULTURAL TRIANGLE',NULL,'','SRI LANKA','',0,0,200,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7368,'20858','Culver','CULVER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7369,'32211','Cumana','CUMANA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7370,'31724','Cumberland','CUMBERLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7371,'7937','Cumbernauld','CUMBERNAULD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7372,'19764','Cumming','CUMMING',NULL,'','United States','',0,0,231,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7373,'21346','Cummington','CUMMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7374,'7938','Cumnock','CUMNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7375,'12799','Cuneo','CUNEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7376,'25200','Cunha','CUNHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7377,'38869','Cunit','CUNIT',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7378,'26403','Cunnamulla','CUNNAMULLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7379,'40098','Cunovo','CUNOVO',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7380,'43679','Cunungra','CUNUNGRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7381,'38477','Cuorgne','CUORGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7382,'7939','Cupar','CUPAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7383,'25899','Cupe Coy','CUPE COY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7384,'18425','Cupertino','CUPERTINO',NULL,'','United States','',0,0,231,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7385,'1146','Curacao','CURACAO',NULL,'','CURAÇAO','',0,0,465,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7386,'25897','Curacao','CURACAO',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7387,'15854','Curia','CURIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7388,'36006','Curico','CURICO',NULL,'','Chile','',0,0,45,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7389,'38731','Curiel','CURIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7390,'39813','Curinga','CURINGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7391,'25112','Curitiba','CURITIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7392,'39858','Curno','CURNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7393,'37420','Curon Venosta','CURON VENOSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7394,'10936','Curragh','CURRAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7395,'26691','Currumbin','CURRUMBIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7396,'38399','Cursi','CURSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7397,'11200','Curtatone','CURTATONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7398,'36621','Curtea De Arges','CURTEA DE ARGES',NULL,'','Romania','',0,0,179,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7399,'29314','Curtice','CURTICE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7400,'24163','Curu Reserve','CURU RESERVE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7401,'6336','Curzay-sur-vonne','CURZAY-SUR-VONNE',NULL,'','France','',0,0,76,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7402,'11201','Cusago','CUSAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7403,'16565','Cuscatlan International Airport (Sal)','CUSCATLAN INTERNATIONAL AIRPORT (SAL)',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7404,'15368','Cusco','CUSCO',NULL,'','Peru','cusco',0,0,172,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7405,'32894','Cushing','CUSHING',NULL,'','United States','',0,0,231,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7406,'33001','Custer','CUSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7407,'11890','Custonaci','CUSTONACI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7408,'28732','Cutchogue','CUTCHOGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7409,'19765','Cuthbert','CUTHBERT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7410,'11891','Cutigliano','CUTIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7411,'39370','Cutler','CUTLER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7412,'26130','Cutral','CUTRAL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7413,'39106','Cutro','CUTRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7414,'40633','Cutrofiano','CUTROFIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7415,'40806','Cuttack','CUTTACK',NULL,'','India','Cuttack',8,0,101,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7416,'27197','Cuxhaven','CUXHAVEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7417,'29315','Cuyahoga Falls','CUYAHOGA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7418,'15526','Cuyo','CUYO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7419,'13966','Cuyutlan','CUYUTLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7420,'868','Cuzco','CUZCO',NULL,'','Peru','',0,0,172,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7421,'7007','Cwmbran','CWMBRAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7422,'14298','Cyberjaya','CYBERJAYA',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7423,'1151','Cyclades','CYCLADES',NULL,'','GREECE','',0,0,86,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7424,'18426','Cypress','CYPRESS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7425,'1685','Cyprus','CYPRUS',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7426,'44042','Czeladz','CZELADZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7427,'15615','Czestochowa','CZESTOCHOWA',NULL,'','Poland','Czestochowa',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7428,'38366','Czorsztyn','CZORSZTYN',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7429,'27848','D Iberville','D IBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7430,'42839','Dabong','DABONG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7431,'22728','Dachau','DACHAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7432,'16431','Dachnoye','DACHNOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7433,'39043','Daday','DADAY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7434,'19324','Dade City','DADE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7435,'17856','Dadeville','DADEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7436,'23570','Dadonghai','DADONGHAI',NULL,'','China','',0,0,46,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7437,'13490','Daegu','DAEGU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7438,'35800','Daegu','DAEGU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7439,'35817','Daejeon','DAEJEON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7440,'15496','Daet','DAET',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7441,'23677','Dagang','DAGANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7442,'18427','Daggett','DAGGETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7443,'15436','Dagupan','DAGUPAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7444,'2420','Dahab','DAHAB',NULL,'','Egypt','',0,0,65,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7445,'39818','Dahej','DAHEJ',NULL,'','India','',0,0,101,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7446,'27198','Dahlem','DAHLEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7447,'1967','Dahlewitz','DAHLEWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7448,'31086','Dahlgren','DAHLGREN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7449,'19766','Dahlonega','DAHLONEGA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7450,'41029','Dahlwitz Hoppegarten','DAHLWITZ HOPPEGARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7451,'765','Dahlwitz-hoppegarten','DAHLWITZ-HOPPEGARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7452,'618','Dahn','DAHN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7453,'23887','Dahongmen','DAHONGMEN',NULL,'','China','',0,0,46,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7454,'13228','Daigo','DAIGO',NULL,'','Japan','',0,0,110,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7455,'36299','Dailly','DAILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7456,'3405','Daimiel','DAIMIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7457,'26692','Daintree','DAINTREE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7458,'5458','Daix','DAIX',NULL,'','France','',0,0,76,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7459,'42086','Dak Lak','DAK LAK',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7460,'16520','Dakar','DAKAR',NULL,'','Senegal','',0,0,187,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7461,'13675','Dakhla','DAKHLA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7462,'42424','Dakhla Oasis','DAKHLA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7463,'39976','Dakota Dunes','DAKOTA DUNES',NULL,'','United States','',0,0,231,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7464,'17201','Dalaman','DALAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7465,'23954','Dalang','DALANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7466,'16664','Dalarna - Gavlebourg','DALARNA - GAVLEBOURG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7467,'41853','Dalat','DALAT',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7468,'15297','Dalbandin','DALBANDIN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7469,'7940','Dalbeattie','DALBEATTIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7470,'26693','Dalby','DALBY',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7471,'21185','Dalcour','DALCOUR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7472,'25295','Dalemead','DALEMEAD',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7473,'15000','Dalen','DALEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7474,'20860','Daleville','DALEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7475,'40503','Dalfsen','DALFSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7476,'30561','Dalhart','DALHART',NULL,'','United States','',0,0,231,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7477,'34396','Dalhousie','DALHOUSIE',NULL,'','Canada','Dalhousie',0,0,39,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7478,'10510','Dalhousie','DALHOUSIE',NULL,'','India','Dalhousie',1,0,101,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7479,'23945','Dali','DALI',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7480,'23868','Dalian','DALIAN',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7481,'23955','Daliang','DALIANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7482,'14299','Dalit Beach','DALIT BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7483,'7941','Dalkeith','DALKEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7484,'10837','Dalkey','DALKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7485,'29652','Dallas','DALLAS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7486,'30564','Dallas-fort Worth International Airport (Dfw)','DALLAS-FORT WORTH INTERNATIONAL AIRPORT (DFW)',NULL,'','United States','',0,0,231,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7487,'23183','Dallenwil','DALLENWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7488,'40080','Dallgow-doberitz','DALLGOW-DOBERITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7489,'37231','Dallikon','DALLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7490,'41173','Dalmally','DALMALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7491,'43228','Dalmatian Riviera','DALMATIAN RIVIERA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7492,'11892','Dalmine','DALMINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7493,'7942','Dalry','DALRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7494,'19768','Dalton','DALTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7495,'7943','Dalwhinnie','DALWHINNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7496,'30565','Dalworthington Gardens','DALWORTHINGTON GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7497,'18428','Daly City','DALY CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7498,'17202','Dalyan','DALYAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7499,'14300','Damai Beach','DAMAI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7500,'10702','Daman','DAMAN',NULL,'','India','Daman',37,0,101,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7501,'36440','Damaraland','DAMARALAND',NULL,'','Namibia','',0,0,151,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7502,'21855','Damariscotta','DAMARISCOTTA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7503,'43838','Damas','DAMAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7504,'16925','Damascus','DAMASCUS',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7505,'38451','Damasta','DAMASTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7506,'13600','Dambulla','DAMBULLA',NULL,'','Sri Lanka',' Dambulla',0,0,200,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7507,'5531','Damgan','DAMGAN',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7508,'36657','Dammam','DAMMAM',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7509,'16488','Damman','DAMMAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7510,'5096','Dammarie Les Lys','DAMMARIE LES LYS',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7511,'41546','Dammarie-les-lys','DAMMARIE-LES-LYS',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7512,'24695','Damme','DAMME',NULL,'','Belgium','',0,0,21,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7513,'704','Damp','DAMP',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7514,'26586','Dampier','DAMPIER',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7515,'5772','Dampierre-sur-salon','DAMPIERRE-SUR-SALON',NULL,'','France','',0,0,76,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7516,'16981','Dan Markham Tia','DAN MARKHAM TIA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7517,'18429','Dana Point','DANA POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7518,'37085','Danang','DANANG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7519,'31725','Danbury','DANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7520,'7008','Danby','DANBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7521,'31318','Danby','DANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7522,'40844','Dandeli','DANDELI',NULL,'','India','',0,0,101,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7523,'26500','Dandenong','DANDENONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7524,'16818','Danderyd','DANDERYD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7525,'23869','Dandong','DANDONG',NULL,'','China','',0,0,46,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7526,'33126','Dandridge','DANDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7527,'31726','Dane County Regional Airport (Msn)','DANE COUNTY REGIONAL AIRPORT (MSN)',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7528,'27199','Dangast','DANGAST',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7529,'24922','Dangriga','DANGRIGA',NULL,'','Belize','',0,0,22,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7530,'36884','Dania','DANIA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7531,'31970','Daniels','DANIELS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7532,'19072','Danielson','DANIELSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7533,'5773','Danjoutin','DANJOUTIN',NULL,'','France','',0,0,76,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7534,'17445','Danshuei','DANSHUEI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7535,'42304','Danshui','DANSHUI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7536,'28733','Dansville','DANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7537,'26980','Danubian Plains And Plateaus','DANUBIAN PLAINS AND PLATEAUS',NULL,'','Austria','',0,0,14,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7538,'21348','Danvers','DANVERS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7539,'31319','Danville','DANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7540,'17858','Daphne','DAPHNE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7541,'9450','Daphni','DAPHNI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7542,'15509','Dapitan','DAPITAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7543,'42676','Dapoli','DAPOLI',NULL,'','India','Dapoli',5,0,101,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7544,'36021','Daqing','DAQING',NULL,'','China','',0,0,46,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7545,'17455','Dar Es Salaam','DAR ES SALAAM',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7546,'10625','Darbhanga','DARBHANGA',NULL,'','India','',0,0,101,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7547,'27961','Darby','DARBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7548,'18431','Dardanelle','DARDANELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7549,'6613','Dardilly','DARDILLY',NULL,'','France','',0,0,76,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7550,'9333','Daresbury','DARESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7551,'36836','Dar-es-salaam','DAR-ES-SALAAM',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7552,'11202','Darfo Boario Terme','DARFO BOARIO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7553,'43015','Dargaville','DARGAVILLE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7554,'39433','Dargle','DARGLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7555,'20509','Darien','DARIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7556,'10407','Darjeeling','DARJEELING',NULL,'','India','Darjeeling',12,0,101,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7557,'26202','Darling Downs','DARLING DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7558,'39004','Darlinghurst','DARLINGHURST',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7559,'34154','Darlington','DARLINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7560,'21679','Darlington','DARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7561,'7944','Darlington','DARLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7562,'40200','Darlowo','DARLOWO',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7563,'410','Darmstadt','DARMSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7564,'26203','Darnley Island','DARNLEY ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7565,'39033','Daroca','DAROCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7566,'21186','Darrow','DARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7567,'9267','Dartford','DARTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7568,'7010','Dartmeet','DARTMEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7569,'7011','Dartmoor','DARTMOOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7570,'25705','Dartmouth','DARTMOUTH',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7571,'7945','Dartmouth','DARTMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7572,'21349','Dartmouth','DARTMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7573,'9252','Darwen','DARWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7574,'26641','Darwin','DARWIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7575,'35930','Darwin-airport','DARWIN-AIRPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7576,'40845','Dasada','DASADA',NULL,'','India','',16,0,101,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7577,'44309','Dashoguz','DASHOGUZ',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7578,'38949','Dashu','DASHU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7579,'22729','Dasing','DASING',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7580,'41447','Dasman','DASMAN',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7581,'15446','Dasmarinas Village','DASMARINAS VILLAGE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7582,'831','Dassow','DASSOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7583,'10153','Datadawai','DATADAWAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7584,'14301','Datai Bay','DATAI BAY',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7585,'17338','Datca','DATCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7586,'7946','Datchet','DATCHET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7587,'42867','Date','DATE',NULL,'','Japan','',0,0,110,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7588,'32348','Dathina','DATHINA',NULL,'','Yemen','',0,0,240,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7589,'23915','Datong','DATONG',NULL,'','China','',0,0,46,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7590,'26204','Dauan Island','DAUAN ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7591,'13667','Daugavpils','DAUGAVPILS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7592,'15524','Dauin','DAUIN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7593,'619','Daun','DAUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7594,'25591','Dauphin','DAUPHIN',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7595,'17859','Dauphin Island','DAUPHIN ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7596,'40807','Dausa','DAUSA',NULL,'','India','Dausa',2,0,101,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7597,'15546','Davao','DAVAO',NULL,'','Philippines','Davao',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7598,'36556','Davao-samal Island','DAVAO-SAMAL ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7599,'19326','Davenport','DAVENPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7600,'7947','Daventry','DAVENTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7601,'40370','Daveyton','DAVEYTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7602,'6614','Davezieux','DAVEZIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7603,'15349','David','DAVID',NULL,'','Panama','',0,0,169,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7604,'33833','Davidson','DAVIDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7605,'19327','Davie','DAVIE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7606,'7948','Daviot','DAVIOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7607,'32895','Davis','DAVIS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7608,'22038','Davison','DAVISON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7609,'23012','Davos','DAVOS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7610,'23013','Davos-dorf','DAVOS-DORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7611,'23014','Davos-platz','DAVOS-PLATZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7612,'40151','Davutlar','DAVUTLAR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7613,'16489','Dawadmi','DAWADMI',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7614,'7949','Dawlish','DAWLISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7615,'25888','Dawn Beach','DAWN BEACH',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7616,'19771','Dawson','DAWSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7617,'22977','Dawson City','DAWSON CITY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7618,'19772','Dawsonville','DAWSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7619,'23678','Dawuji','DAWUJI',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7620,'4964','Dax','DAX',NULL,'','France','',0,0,76,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7621,'23991','Daxian','DAXIAN',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7622,'23572','Daya Bay','DAYA BAY',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7623,'26205','Daydream Island','DAYDREAM ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7624,'26895','Daylesford','DAYLESFORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7625,'17536','Dayman','DAYMAN',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7626,'1747','Dayong','DAYONG',NULL,'','China','',0,0,46,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7627,'33127','Dayton','DAYTON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7628,'1154','Daytona Area - Fl','DAYTONA AREA - FL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7629,'39673','Dayuan','DAYUAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7630,'29653','Dayville','DAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7631,'43903','Dazaifu','DAZAIFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7632,'36022','Dazu','DAZU',NULL,'','China','',0,0,46,'2016-10-17 10:50:02','1900-01-01 00:00:00',1,0,1),(7633,'43146','Dbayeh','DBAYEH',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:50:02','1900-01-01 00:00:00',1,0,1),(7634,'23','Dead Mans Flats','DEAD MANS FLATS',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7635,'35703','Dead Sea','DEAD SEA',NULL,'','Jordan','',0,0,111,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7636,'11034','Dead Sea','DEAD SEA',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7637,'24862','Deadmans Cay','DEADMANS CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7638,'33004','Deadwood','DEADWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7639,'7950','Deal','DEAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7640,'21680','Deale','DEALE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7641,'7951','Deanshanger','DEANSHANGER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7642,'22039','Dearborn','DEARBORN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7643,'25428','Dease Lake','DEASE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7644,'18433','Death Valley','DEATH VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7645,'4869','Deauville','DEAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7646,'41334','Deba','DEBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7647,'17601','Debarr Vista','DEBARR VISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7648,'19332','Debary','DEBARY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7649,'15686','Debica','DEBICA',NULL,'','Poland','',0,0,174,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7650,'3845','Debra Marcos','DEBRA MARCOS',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7651,'10087','Debrecen','DEBRECEN',NULL,'','Hungary','',0,0,99,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7652,'28736','Debruce','DEBRUCE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7653,'20511','Decatur','DECATUR',NULL,'','United States','',0,0,231,'2016-10-17 10:50:06','1900-01-01 00:00:00',1,0,1),(7654,'33128','Decherd','DECHERD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7655,'24356','Decin','DECIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7656,'6615','Decines-charpieu','DECINES-CHARPIEU',NULL,'','France','',0,0,76,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7657,'30569','Decker Prairie','DECKER PRAIRIE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7658,'20193','Decorah','DECORAH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7659,'9318','Deddington','DEDDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7660,'43692','Dededo','DEDEDO',NULL,'','Guam','',0,0,90,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7661,'7952','Dedham','DEDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7662,'21350','Dedham','DEDHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7663,'16365','Dedovsk','DEDOVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7664,'25653','Deer Lake','DEER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7665,'29319','Deerfield','DEERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:09','1900-01-01 00:00:00',1,0,1),(7666,'38049','Deerhurst','DEERHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7667,'17602','Deering','DEERING',NULL,'','United States','',0,0,231,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7668,'22356','Deerwood','DEERWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7669,'44188','Deeside','DEESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7670,'29320','Defiance','DEFIANCE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7671,'3846','Degahbur','DEGAHBUR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7672,'37256','Degania Bet','DEGANIA BET',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7673,'7953','Deganwy','DEGANWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7674,'43712','Degarra','DEGARRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7675,'3960','Degero','DEGERO',NULL,'','Finland','',0,0,75,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7676,'22730','Deggendorf','DEGGENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7677,'16388','Degunino','DEGUNINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7678,'41828','Dehesa De Campoamor','DEHESA DE CAMPOAMOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7680,'10408','Dehradun','DEHRADUN',NULL,'','India','Dehradun',9,0,101,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7681,'43484','Deia','DEIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7682,'620','Deidesheim','DEIDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7683,'36715','Deie Ez Zor','DEIE EZ ZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7684,'1274','Deir Ez Zor','DEIR EZ ZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7685,'16927','Deirezzor','DEIREZZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7686,'129','Deisslingen','DEISSLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7687,'11893','Deiva Marina','DEIVA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7688,'20513','Dekalb','DEKALB',NULL,'','United States','',0,0,231,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7689,'25296','Delacour','DELACOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7690,'31730','Delafield','DELAFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7691,'19335','Deland','DELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7692,'18435','Delano','DELANO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7693,'31731','Delavan','DELAVAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7694,'29322','Delaware','DELAWARE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7695,'27343','Delbruck','DELBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7696,'14747','Delden','DELDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7697,'42306','Delemont','DELEMONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7698,'14710','Delft','DELFT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7699,'10958','Delgany','DELGANY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7700,'28738','Delhi Hills','DELHI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7701,'130443','Delhi','DELHI',NULL,'','India','Tour and Travel packages Delhi | New Delhi Holiday',4,0,101,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7702,'2107','Delices','DELICES',NULL,'','Dominica','',0,0,500,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7703,'13897','Delicias','DELICIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7704,'25761','Deline','DELINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7705,'10131','Delitua','DELITUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7706,'1874','Delitzsch','DELITZSCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7707,'1707','Delitzsch-leipzig','DELITZSCH-LEIPZIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7708,'39653','Delley-portalban','DELLEY-PORTALBAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7709,'29324','Dellroy','DELLROY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7710,'21681','Delmar','DELMAR',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7711,'27200','Delmenhorst','DELMENHORST',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7712,'29895','Delmont','DELMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7713,'26834','Deloraine','DELORAINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7714,'9452','Delphi','DELPHI',NULL,'','Greece','Delphi',0,0,86,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7715,'29326','Delphos','DELPHOS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7716,'25429','Delta','DELTA',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7717,'34752','Delta','DELTA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7718,'26206','Delta Downs','DELTA DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7719,'2611','Deltebre','DELTEBRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7720,'19337','Deltona','DELTONA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7721,'10511','Delwara','DELWARA',NULL,'','India','',0,0,101,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7722,'3847','Dembidollo','DEMBIDOLLO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7723,'28518','Deming','DEMING',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7724,'44000','Demi-quartier','DEMI-QUARTIER',NULL,'','France','',0,0,76,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7725,'17861','Demopolis','DEMOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7726,'37451','Demre','DEMRE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7727,'17604','Denali','DENALI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7728,'4051','Denarau Island','DENARAU ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7729,'7954','Denbigh','DENBIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7730,'38516','Denby Dale','DENBY DALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7731,'36024','Dengfeng','DENGFENG',NULL,'','China','',0,0,46,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7732,'7955','Denham','DENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7733,'26587','Denham','DENHAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7734,'21189','Denham Springs','DENHAM SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7735,'3749','Denia','DENIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7736,'34155','Deniliquin','DENILIQUIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7737,'16915','Denis Island','DENIS ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7738,'30573','Denison','DENISON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7739,'17283','Denizli','DENIZLI',NULL,'','Turkey','Denizli',0,0,222,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7740,'17203','Denizyaka','DENIZYAKA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7741,'33129','Denmark','DENMARK',NULL,'','United States','',0,0,231,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7742,'26588','Denmark','DENMARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7743,'39030','Denneville','DENNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7744,'21352','Dennis','DENNIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7745,'41172','Denny','DENNY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7746,'10274','Denpasar','DENPASAR',NULL,'','Indonesia','Denpasar',0,0,102,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7747,'7956','Denton','DENTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7748,'34753','Denver','DENVER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7749,'28248','Denville','DENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7751,'40846','Deogarh','DEOGARH',NULL,'','India','',0,0,101,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7752,'29654','Depoe Bay','DEPOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7753,'43045','Depok','DEPOK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7754,'28739','Deposit','DEPOSIT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7755,'7957','Deptford','DEPTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7756,'28249','Deptford','DEPTFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7757,'23956','Deqing','DEQING',NULL,'','China','',0,0,46,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7758,'1666','Dera Ghazi Khan','DERA GHAZI KHAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7759,'7958','Derby','DERBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7760,'26477','Derby','DERBY',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7761,'38896','Derchigny','DERCHIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7762,'40330','Derenburg','DERENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7763,'27344','Derendorf','DERENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7764,'21190','Deridder','DERIDDER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7765,'3703','Derio','DERIO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7766,'13560','Derna','DERNA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7767,'411','Dernbach','DERNBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7768,'1533','Derry','DERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7769,'1543','Derry','DERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7770,'1272','Derry-n.irl','DERRY-N.IRL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7771,'705','Dersau','DERSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7772,'11894','Deruta','DERUTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7773,'31481','Des Moines','DES MOINES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7774,'10154','Desa Sanda','DESA SANDA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7775,'7959','Desborough','DESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7776,'38999','Descanso','DESCANSO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7777,'38603','Dese','DESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7778,'11895','Desenzano Del Garda','DESENZANO DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7779,'18436','Desert','DESERT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7780,'10411','Desert National Park','DESERT NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7781,'9380','Deshaies','DESHAIES',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7782,'27622','Desloge','DESLOGE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7783,'30577','Desoto','DESOTO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7784,'43571','Despenaderos','DESPENADEROS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7785,'16916','Desroches Island','DESROCHES ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7786,'1929','Dessau','DESSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7787,'3848','Dessie','DESSIE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7788,'19338','Destin','DESTIN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7789,'6158','Desvres','DESVRES',NULL,'','France','',0,0,76,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7790,'32657','Dete','DETE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7791,'27345','Detmold','DETMOLD',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7792,'22042','Detroit','DETROIT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7793,'36892','Detroit-wayne County','DETROIT-WAYNE COUNTY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7794,'22731','Dettelbach','DETTELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7795,'4052','Deuba','DEUBA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7796,'26981','Deutsch Wagram','DEUTSCH WAGRAM',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7797,'4224','Deux-sevres','DEUX-SEVRES',NULL,'','France','',0,0,76,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7798,'3086','Deva','DEVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7799,'16219','Deva','DEVA',NULL,'','Romania','',0,0,179,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7800,'40629','Devanahalli','DEVANAHALLI',NULL,'','India','',0,0,101,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7801,'14748','Deventer','DEVENTER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7802,'40847','Devigarh','DEVIGARH',NULL,'','India','',0,0,101,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7803,'7960','Devils Bridge','DEVILS BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7804,'9884','Devils Island','DEVILS ISLAND',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7805,'28051','Devils Lake','DEVILS LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7806,'24806','Devin','DEVIN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7807,'7961','Devizes','DEVIZES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7808,'25297','Devon','DEVON',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7809,'43312','Devon-moretonhampstead','DEVON-MORETONHAMPSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7810,'15099','Devonport','DEVONPORT',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7811,'26835','Devonport','DEVONPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7812,'24928','Devonshire','DEVONSHIRE',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7813,'32897','Dewey','DEWEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7814,'22045','Dewitt','DEWITT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7815,'21858','Dexter','DEXTER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7816,'2896','Deya','DEYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7817,'23992','Deyang','DEYANG',NULL,'','China','',0,0,46,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7818,'43820','Dezhou','DEZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7819,'16490','Dhahran','DHAHRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7820,'24765','Dhaka','DHAKA',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7821,'10512','Dhanbad','DHANBAD',NULL,'','India','',0,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7822,'30578','D\'hanis','D\'HANIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7823,'42606','Dhar','DHAR',NULL,'','India','Dhar',15,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7824,'40848','Dharamsala','DHARAMSALA',NULL,'','India','',0,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7826,'37406','Dhekelia','DHEKELIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7827,'43742','Dhela','DHELA',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7828,'13723','Dhidhoofinolhu','DHIDHOOFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7829,'37876','Dhiffushi','DHIFFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7830,'13724','Dhigufinolhu','DHIGUFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7831,'10412','Dhikuli','DHIKULI',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7832,'40849','Dholpur','DHOLPUR',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7833,'13725','Dhonakulhi','DHONAKULHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7834,'43185','Dhour Shweir','DHOUR SHWEIR',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7835,'36503','Dhulikhel','DHULIKHEL',NULL,'','Nepal','',0,0,153,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7836,'13726','Dhunikolhu','DHUNIKOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7837,'9799','Diafani','DIAFANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7838,'38917','Diakofti','DIAKOFTI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7839,'9453','Diakofto','DIAKOFTO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7840,'11896','Diamante','DIAMANTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7841,'41986','Diamantina','DIAMANTINA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7842,'37746','Diamond Beach','DIAMOND BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7843,'10687','Diamond Harbour','DIAMOND HARBOUR',NULL,'','India','',0,0,101,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7844,'27849','Diamondhead','DIAMONDHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7845,'32089','Diamondville','DIAMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7846,'23573','Diancun','DIANCUN',NULL,'','China','',0,0,46,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7847,'11897','Diano Marina','DIANO MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7848,'15277','Dibaa','DIBAA',NULL,'','Oman','',0,0,165,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7849,'38636','Dibba','DIBBA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7850,'43363','Dibba','DIBBA',NULL,'','Oman','',0,0,165,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7851,'30579','Diboll','DIBOLL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7852,'10623','Dibrugarh','DIBRUGARH',NULL,'','India','Dibrugarh',10,0,101,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7853,'3054','Dicastillo','DICASTILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7854,'35856','Dickenson Bay','DICKENSON BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7855,'28052','Dickinson','DICKINSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7856,'26629','Dickson','DICKSON',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7857,'33130','Dickson','DICKSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7858,'13592','Dickwella','DICKWELLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7859,'43588','Didcot','DIDCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7860,'17204','Didim','DIDIM',NULL,'','Turkey','Didim ',0,0,222,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7861,'25298','Didsbury','DIDSBURY',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7862,'42521','Didymoteicho','DIDYMOTEICHO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7863,'38006','Die Kelders','DIE KELDERS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7864,'6759','Dieffenthal','DIEFFENTHAL',NULL,'','France','',0,0,76,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7865,'24619','Diegem','DIEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7866,'17129','Diego Martin','DIEGO MARTIN',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7867,'2031','Diemelsee','DIEMELSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7868,'14632','Diemen','DIEMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7869,'39909','Dien Ban','DIEN BAN',NULL,'','VietNam','',0,0,236,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7870,'27159','Dienten Am Hochkonig','DIENTEN AM HOCHKONIG',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7871,'32558','Diepkloof','DIEPKLOOF',NULL,'','South Africa','',0,0,195,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7872,'5806','Dieppe','DIEPPE',NULL,'','France','',0,0,76,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7873,'34397','Dieppe','DIEPPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7874,'13479','Dieppe Bay Town','DIEPPE BAY TOWN',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7875,'14530','Dieren','DIEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7876,'41649','Dierhagen','DIERHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7877,'1930','Dieskau','DIESKAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7878,'14593','Diessen','DIESSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7879,'23184','Diessenhofen','DIESSENHOFEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7880,'24620','Diest','DIEST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7881,'22523','Dietfurt','DIETFURT',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7882,'23185','Dietikon','DIETIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7883,'412','Dietzenbach','DIETZENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7884,'621','Diez','DIEZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7885,'3220','Diezma','DIEZMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7886,'40084','Differdange','DIFFERDANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7887,'25706','Digby','DIGBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7888,'25920','Digdaga','DIGDAGA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7889,'6421','Digne','DIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7890,'41543','Digne-les-bains','DIGNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7891,'5459','Digoin','DIGOIN',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7892,'4892','Dijon','DIJON',NULL,'','France','Dijon',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7893,'44171','Dikaio','DIKAIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7894,'17315','Dikili','DIKILI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7895,'39223','Dikli','DIKLI',NULL,'','Latvia','',0,0,119,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7896,'10009','Diklici','DIKLICI',NULL,'','Croatia','',0,0,55,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7897,'24725','Diksmuide','DIKSMUIDE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7898,'3221','Dilar','DILAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7899,'24621','Dilbeek','DILBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7900,'17110','Dili','DILI',NULL,'','East Timor','',0,0,63,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7901,'10132','Dili','DILI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7902,'19775','Dillard','DILLARD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7903,'30581','Dilley','DILLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7904,'413','Dillingen','DILLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7905,'17607','Dillingham','DILLINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7906,'27963','Dillon','DILLON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7907,'32310','Dillons Bay','DILLONS BAY',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7908,'33834','Dillsboro','DILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7909,'29899','Dillsburg','DILLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7910,'22359','Dilworth','DILWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7911,'42949','Dimakya Island','DIMAKYA ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7912,'10513','Dimapur','DIMAPUR',NULL,'','India','Dimapur',44,0,101,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7913,'11898','Dimaro','DIMARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7914,'40300','Dimitsana','DIMITSANA',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7915,'22046','Dimondale','DIMONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7916,'5532','Dinan','DINAN',NULL,'','France','',0,0,76,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7917,'24739','Dinant','DINANT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7918,'5533','Dinard','DINARD',NULL,'','France','',0,0,76,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7919,'7962','Dinas Mawddwy','DINAS MAWDDWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7920,'40850','Dindigul','DINDIGUL',NULL,'','India','',0,0,101,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7921,'10878','Dingle','DINGLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7922,'29900','Dingmans Ferry','DINGMANS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7923,'7963','Dingwall','DINGWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7924,'22732','Dinkelsbuhl','DINKELSBUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7925,'27201','Dinklage','DINKLAGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7926,'7964','Dinnet','DINNET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7927,'7015','Dinnington','DINNINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7928,'39477','Dinslaken','DINSLAKEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7929,'18439','Dinuba','DINUBA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7930,'15547','Dipolog','DIPOLOG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7931,'414','Dipperz','DIPPERZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7932,'38237','Dippoldiswalde','DIPPOLDISWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7933,'1748','Diqing','DIQING',NULL,'','China','',0,0,46,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7934,'42614','Dirang','DIRANG',NULL,'','India','Dirang',40,0,101,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7935,'14966','Dirdal','DIRDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7936,'3849','Dire Dawa','DIRE DAWA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7937,'7965','Dirleton','DIRLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7938,'9898','Discovery Bay','DISCOVERY BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7939,'13085','Discovery Bay','DISCOVERY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7940,'23186','Disentis','DISENTIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7941,'38546','Diseworth','DISEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7942,'9326','Disley','DISLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7943,'18440','Disneyland - Anaheim','DISNEYLAND - ANAHEIM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7944,'7966','Diss','DISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7945,'6337','Dissay','DISSAY',NULL,'','France','',0,0,76,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7946,'4226','Distré','DISTRÉ',NULL,'','France','',0,0,76,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7947,'16982','District 1 - Dong Khoi','DISTRICT 1 - DONG KHOI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7948,'43261','Distrito Federal','DISTRITO FEDERAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7949,'7967','Dittisham','DITTISHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7950,'22524','Ditzingen','DITZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7951,'10703','Diu','DIU',NULL,'','India','Diu',37,0,101,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7952,'5391','Dives-sur-mer','DIVES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7953,'34757','Divide','DIVIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7954,'954','Divinopolis','DIVINOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7955,'13898','Divisadero','DIVISADERO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7956,'4832','Divonne-les-bains','DIVONNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7957,'23015','Divonne-les-bains','DIVONNE-LES-BAINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7958,'20515','Dix','DIX',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7959,'20516','Dixon','DIXON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7960,'32688','Dixville Notch','DIXVILLE NOTCH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7961,'17284','Diyarbakir','DIYARBAKIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7962,'5724','Dizy','DIZY',NULL,'','France','',0,0,76,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7963,'37405','Djanet','DJANET',NULL,'','Algeria','',0,0,3,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7964,'32638','Djelo-binza','DJELO-BINZA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7965,'17151','Djerba','DJERBA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7966,'2096','Djibouti','DJIBOUTI',NULL,'','Djibouti','',0,0,60,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7967,'11017','Djupivogur','DJUPIVOGUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7968,'16819','Djurgarden','DJURGARDEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7969,'16820','Djursholm','DJURSHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7970,'17487','Dnepropetrovsk','DNEPROPETROVSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7971,'12863','Dobbiaco','DOBBIACO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7972,'28742','Dobbs Ferry','DOBBS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7973,'38508','Dobele','DOBELE',NULL,'','Latvia','',0,0,119,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7974,'27127','Dobling','DOBLING',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7975,'27070','Dobriach','DOBRIACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7976,'24794','Dobrich','DOBRICH',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7977,'42248','Dobrinishte','DOBRINISHTE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7978,'36688','Dobrna','DOBRNA',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7979,'33835','Dobson','DOBSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7980,'26896','Docklands','DOCKLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7981,'7968','Dockray','DOCKRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7982,'7969','Doddington','DODDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7983,'21043','Dodge City','DODGE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7984,'31732','Dodgeville','DODGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7985,'17456','Dodoma','DODOMA',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7986,'37499','Dodoni','DODONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7987,'3662','Dodro','DODRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7988,'42371','Doetinchem','DOETINCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7989,'16577','Dogana','DOGANA',NULL,'','San Marino','',0,0,184,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7990,'35390','Dogheda','DOGHEDA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7991,'11899','Dogliani','DOGLIANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7992,'7016','Dogmersfield','DOGMERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7993,'16182','Doha','DOHA',NULL,'','Qatar','',0,0,177,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7994,'17050','Doi Saket','DOI SAKET',NULL,'','Thailand','',0,0,215,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7995,'5725','Dolancourt','DOLANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7996,'25983','Dolbeau','DOLBEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7997,'11900','Dolcedo','DOLCEDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7998,'5534','Dol-de-bretagne','DOL-DE-BRETAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7999,'5774','Dole','DOLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8000,'36695','Dolenjske Toplice','DOLENJSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8001,'7017','Dolgellau','DOLGELLAU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8002,'28743','Dolgeville','DOLGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8003,'41171','Dollar','DOLLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8004,'25984','Dollard-des-ormeaux','DOLLARD-DES-ORMEAUX',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8005,'39624','Dollnstein','DOLLNSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8006,'10838','Dollymount','DOLLYMOUNT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8007,'24307','Dolni Dvoriste','DOLNI DVORISTE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8008,'15582','Dolnoslaskie','DOLNOSLASKIE',NULL,'','Poland','',0,0,174,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8009,'39725','Dolny Kubin','DOLNY KUBIN',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8010,'17608','Dolomi','DOLOMI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8011,'34758','Dolores','DOLORES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8012,'13982','Dolores Hidalgo','DOLORES HIDALGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8013,'15035','Dolpa','DOLPA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8014,'26207','Dolphin Heads','DOLPHIN HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8015,'7970','Dolton','DOLTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8016,'4227','Dolus-d Oleron','DOLUS-D OLERON',NULL,'','France','',0,0,76,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8017,'1875','Dolzig','DOLZIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8018,'43315','Domaine De Beauvois','DOMAINE DE BEAUVOIS',NULL,'','France','',0,0,76,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8019,'11901','Domaso','DOMASO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8020,'23187','Domat','DOMAT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8021,'14944','Dombas','DOMBAS',NULL,'','Norway','',0,0,164,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8022,'14694','Domburg','DOMBURG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8023,'39214','Domfront','DOMFRONT',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8024,'42201','Domingos Martins','DOMINGOS MARTINS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8025,'2104','Dominica','DOMINICA',NULL,'','Dominica','',0,0,500,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8026,'24236','Dominical','DOMINICAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8027,'2354','Dominican Republic','DOMINICAN REPUBLIC',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8028,'39805','Domme','DOMME',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8029,'13655','Dommeldange','DOMMELDANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8030,'16366','Domodedovo','DOMODEDOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8031,'42321','Domodossola','DOMODOSSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8032,'5535','Dompierre-du-chemin','DOMPIERRE-DU-CHEMIN',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8033,'5313','Dompierre-sur-besbre','DOMPIERRE-SUR-BESBRE',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8034,'11902','Domus De Maria','DOMUS DE MARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8035,'40950','Domzale','DOMZALE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8036,'37648','Don Torcuato','DON TORCUATO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8037,'26364','Donald','DONALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8038,'19776','Donaldsonville','DONALDSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8039,'19777','Donalsonville','DONALSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8040,'22525','Donaueschingen','DONAUESCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8041,'22733','Donaustauf','DONAUSTAUF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8042,'22734','Donauwoerth','DONAUWOERTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8043,'42460','Donauworth','DONAUWORTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8044,'7971','Doncaster','DONCASTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8045,'5726','Donchery','DONCHERY',NULL,'','France','',0,0,76,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8046,'29901','Donegal','DONEGAL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8047,'10819','Donegal','DONEGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8048,'17488','Donetsk','DONETSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8049,'32275','Dong Hoi','DONG HOI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8050,'23888','Dongba','DONGBA',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8051,'23574','Dongcheng - Wangfujing','DONGCHENG - WANGFUJING',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8052,'23679','Dongguan','DONGGUAN',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8053,'37252','Dongnae','DONGNAE',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8054,'23957','Dongshan','DONGSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8055,'23876','Dongsheng','DONGSHENG',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8056,'40','Dongshi','DONGSHI',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8057,'39109','Dongtan','DONGTAN',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8058,'23693','Dongyang','DONGYANG',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8059,'43821','Dongying','DONGYING',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8060,'7018','Donington','DONINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8061,'27624','Doniphan','DONIPHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8062,'41194','Donji Seget','DONJI SEGET',NULL,'','Croatia','',0,0,55,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8063,'30583','Donna','DONNA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8064,'20348','Donnelly','DONNELLY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8065,'38231','Donnersbachwald','DONNERSBACHWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8066,'11903','Donnini','DONNINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8067,'10839','Donnybrook','DONNYBROOK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8068,'39570','Donore','DONORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8069,'42520','Donoussa','DONOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8070,'16596','Donovaly','DONOVALY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8071,'39724','Donzdorf','DONZDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8072,'6000','Donzenac','DONZENAC',NULL,'','France','',0,0,76,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8073,'10782','Doolin','DOOLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8074,'26208','Doomadgee Mission','DOOMADGEE MISSION',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8075,'10783','Doonbeg','DOONBEG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8076,'31734','Door Peninsula','DOOR PENINSULA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8077,'34156','Dooralong','DOORALONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8078,'14531','Doorwerth','DOORWERTH',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8079,'11068','Dor','DOR',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8080,'17609','Dora Bay','DORA BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8081,'39619','Dora Creek','DORA CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8082,'15748','Dorado','DORADO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8083,'19339','Doral','DORAL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8084,'19778','Doraville','DORAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8085,'21354','Dorchester','DORCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8086,'7972','Dorchester','DORCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8087,'14711','Dordrecht','DORDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8088,'42322','Dorf Tirol','DORF TIROL',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8089,'27160','Dorfgastein','DORFGASTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8090,'11904','Dorgali','DORGALI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8091,'7973','Dorking','DORKING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8092,'27346','Dormagen','DORMAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8093,'11203','Dormelletto','DORMELLETTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8094,'22526','Dornach','DORNACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8095,'23188','Dornach','DORNACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8096,'7974','Dornie','DORNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8097,'7975','Dornoch','DORNOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8098,'39848','Dorotea','DOROTEA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8099,'27202','Dorpen','DORPEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8100,'18442','Dorris','DORRIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8101,'31322','Dorset','DORSET',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8102,'21683','Dorsey','DORSEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8103,'27347','Dorsten','DORSTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8104,'33836','Dortches','DORTCHES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8105,'27348','Dortmund','DORTMUND',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8106,'26209','Dorunda Station','DORUNDA STATION',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8107,'25985','Dorval','DORVAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8108,'38509','Dossenheim-sur-zinsel','DOSSENHEIM-SUR-ZINSEL',NULL,'','France','',0,0,76,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8109,'11905','Dossobuono','DOSSOBUONO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8110,'766','Dossow','DOSSOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8111,'31091','Doswell','DOSWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8112,'17863','Dothan','DOTHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8113,'6159','Douai','DOUAI',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8114,'24007','Douala','DOUALA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8115,'5536','Douarnenez','DOUARNENEZ',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8116,'34157','Double Bay','DOUBLE BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8117,'6617','Doucy','DOUCY',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8118,'43249','Doue-la-fontaine','DOUE-LA-FONTAINE',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8119,'10725','Douglas','DOUGLAS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8120,'7022','Douglas','DOUGLAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8121,'29902','Douglassville','DOUGLASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8122,'19780','Douglasville','DOUGLASVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8123,'17382','Douliou','DOULIOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8124,'6297','Doullens','DOULLENS',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8125,'7024','Dounby','DOUNBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8126,'4702','Dourdan','DOURDAN',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8127,'15804','Douro Valley','DOURO VALLEY',NULL,'','Portugal','',0,0,175,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8128,'6618','Douvaine','DOUVAINE',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8129,'17177','Douz','DOUZ',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8130,'7025','Dovedale','DOVEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:03','1900-01-01 00:00:00',1,0,1),(8131,'43677','Dover','DOVER',NULL,'','Australia','Dover',0,0,13,'2016-10-17 10:51:03','1900-01-01 00:00:00',1,0,1),(8132,'38161','Dovre','DOVRE',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8133,'22048','Dowagiac','DOWAGIAC',NULL,'','United States','',0,0,231,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8134,'19340','Dowling Park','DOWLING PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8135,'20517','Downers Grove','DOWNERS GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8136,'18443','Downey','DOWNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8137,'37971','Downham Market','DOWNHAM MARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8138,'10726','Downings','DOWNINGS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8139,'29903','Downingtown','DOWNINGTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8140,'7978','Downpatrick','DOWNPATRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8141,'34481','Downsview','DOWNSVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8142,'7027','Downton On The Rock','DOWNTON ON THE ROCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8143,'19341','Downtown','DOWNTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8144,'13491','Downtown - Namdaemun','DOWNTOWN - NAMDAEMUN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8145,'26044','Downtown - Puerto Madero','DOWNTOWN - PUERTO MADERO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8146,'24974','Downtown - Santos Dumont Airport','DOWNTOWN - SANTOS DUMONT AIRPORT',NULL,'','Brazil','',0,0,30,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8147,'15370','Downtown Lima','DOWNTOWN LIMA',NULL,'','Peru','',0,0,172,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8148,'29904','Doylestown','DOYLESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8149,'11906','Dozza','DOZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8150,'22735','Drachselsried','DRACHSELSRIED',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8151,'14509','Drachten','DRACHTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8152,'21355','Dracut','DRACUT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8153,'24812','Dragoman','DRAGOMAN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8154,'11907','Dragoni','DRAGONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8155,'2208','Dragor','DRAGOR',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8156,'2345','Dragør','DRAGØR',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8157,'6422','Draguignan','DRAGUIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8158,'24165','Drake Bay','DRAKE BAY',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8159,'37115','Drakensberg','DRAKENSBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8160,'9754','Drama','DRAMA',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8161,'14863','Drammen','DRAMMEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8162,'43098','Drancy','DRANCY',NULL,'','France','',0,0,76,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8163,'15001','Drangedal','DRANGEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8164,'832','Dranske','DRANSKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8165,'33323','Draper','DRAPER',NULL,'','United States','',0,0,231,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8166,'38710','Drapia','DRAPIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8167,'4703','Draveil','DRAVEIL',NULL,'','France','',0,0,76,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8168,'4053','Dravuni Island','DRAVUNI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8169,'25299','Drayton Valley','DRAYTON VALLEY',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8170,'19343','Dredgers Key','DREDGERS KEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8171,'37753','Drees','DREES',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8172,'7979','Dreghorn','DREGHORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8173,'415','Dreieich','DREIEICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8174,'27203','Dreilinden','DREILINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8175,'14458','Drenthe','DRENTHE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8176,'9454','Drepano','DREPANO',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8177,'29328','Dresden','DRESDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8178,'1876','Dresden','DRESDEN',NULL,'','Germany','Dresden',0,0,83,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8179,'5644','Dreux','DREUX',NULL,'','France','',0,0,76,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8180,'29905','Drexel Hill','DREXEL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8181,'39499','Dreznik Grad','DREZNIK GRAD',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8182,'7028','Driffield','DRIFFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8183,'20350','Driggs','DRIGGS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8184,'43778','Driggs Hill','DRIGGS HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8185,'9455','Drios','DRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8186,'30584','Dripping Springs','DRIPPING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8187,'16239','Drobeta-turnu Severin','DROBETA-TURNU SEVERIN',NULL,'','Romania','',0,0,179,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8188,'24622','Drogenbos','DROGENBOS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8189,'10712','Drogheda','DROGHEDA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8190,'7980','Droitwich','DROITWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8191,'39503','Drolshagen','DROLSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8192,'4232','Drome','DROME',NULL,'','France','',0,0,76,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8193,'10727','Dromkeen','DROMKEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8194,'41011','Dromoland','DROMOLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8195,'11908','Dronero','DRONERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8196,'2236','Dronninglund','DRONNINGLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8197,'26504','Drouin','DROUIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8198,'7981','Droylsden','DROYLSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8199,'39008','Druento','DRUENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8200,'33837','Druid Hills','DRUID HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8201,'25300','Drumheller','DRUMHELLER',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8202,'22049','Drummond Island','DRUMMOND ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8203,'25986','Drummondville','DRUMMONDVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8204,'34158','Drummoyne','DRUMMOYNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8205,'7982','Drumnadrochit','DRUMNADROCHIT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8206,'29906','Drums','DRUMS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8207,'10713','Drumshanbo','DRUMSHANBO',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8208,'14594','Drunen','DRUNEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8209,'13637','Druskininkai','DRUSKININKAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8210,'16310','Druzhba','DRUZHBA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8211,'41834','Drvenik','DRVENIK',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8212,'33622','Dry Ridge','DRY RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8213,'28745','Dryden','DRYDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8214,'34482','Dryden','DRYDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8215,'7029','Drylaw','DRYLAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8216,'7983','Drymen','DRYMEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8217,'24013','Dschang','DSCHANG',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8218,'18444','Duarte','DUARTE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8219,'25921','Dubai','DUBAI',NULL,'','United Arab Emirates','Tourism Dubai | Trip to Dubai | Tourist attraction',0,0,228,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8220,'34159','Dubbo','DUBBO',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8221,'23189','Dubendorf','DUBENDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8222,'10728','Dublin','DUBLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8223,'31093','Dublin','DUBLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:15','1900-01-01 00:00:00',1,0,1),(8224,'35387','Dublin-bray','DUBLIN-BRAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8225,'35391','Dublin-dun Laoghaire','DUBLIN-DUN LAOGHAIRE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8226,'35395','Dublin-howth','DUBLIN-HOWTH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8227,'35397','Dublin-malahide','DUBLIN-MALAHIDE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8228,'35403','Dublin-portmarnock','DUBLIN-PORTMARNOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8229,'35406','Dublin-sutton','DUBLIN-SUTTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8230,'32091','Dubois','DUBOIS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8231,'9970','Dubrovnik','DUBROVNIK',NULL,'','Croatia','Dubrovnik',0,0,55,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8232,'20199','Dubuque','DUBUQUE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8233,'5392','Ducey','DUCEY',NULL,'','France','',0,0,76,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8234,'7030','Duchally','DUCHALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8235,'40016','Duchcov','DUCHCOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8236,'833','Ducherow','DUCHEROW',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8237,'33324','Duchesne','DUCHESNE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8238,'33132','Ducktown','DUCKTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8239,'7031','Duddingston','DUDDINGSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8240,'622','Dudeldorf','DUDELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8241,'38903','Duderstadt','DUDERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8242,'21356','Dudley','DUDLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8243,'7984','Dudley','DUDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8244,'40602','Due Carrare','DUE CARRARE',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8245,'40508','Duenas','DUENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8246,'39071','Duernten','DUERNTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8247,'31094','Duffield','DUFFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8248,'41170','Dufftown','DUFFTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8249,'40117','Dugi Rat','DUGI RAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8250,'37570','Dugopolje','DUGOPOLJE',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8251,'43136','Duhok','DUHOK',NULL,'','Iraq','',0,0,104,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8252,'5084','Duingt','DUINGT',NULL,'','France','',0,0,76,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8253,'12743','Duino','DUINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8254,'27349','Duisburg','DUISBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8255,'7032','Duisdalemore','DUISDALEMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8256,'37651','Duiven','DUIVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8257,'14633','Duivendrecht','DUIVENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8258,'23576','Dujiangyan','DUJIANGYAN',NULL,'','China','',0,0,46,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8259,'7985','Dukinfield','DUKINFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8260,'28519','Dulce','DULCE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8261,'31095','Dulles','DULLES',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8262,'37785','Dullstroom','DULLSTROOM',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8263,'27350','Dulmen','DULMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8264,'24358','Dülmen','DÜLMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8265,'7986','Duloe','DULOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8266,'19783','Duluth','DULUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8267,'7987','Dulverton','DULVERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8268,'7988','Dulwich','DULWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8269,'10413','Dum Dum','DUM DUM',NULL,'','India','',0,0,101,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8270,'15548','Dumaguete','DUMAGUETE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8271,'10356','Dumai','DUMAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8272,'18007','Dumas','DUMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8273,'7989','Dumbarton','DUMBARTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8274,'40236','Dumbleton','DUMBLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8275,'7990','Dumfries','DUMFRIES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8276,'31096','Dumfries','DUMFRIES',NULL,'','United States','',0,0,231,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8277,'1280','Dumfries And Galloway','DUMFRIES AND GALLOWAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8278,'10688','Dumjor','DUMJOR',NULL,'','India','',0,0,101,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8279,'7991','Dunadry','DUNADRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8280,'26836','Dunalley','DUNALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8281,'37722','Dunasziget','DUNASZIGET',NULL,'','Hungary','',0,0,99,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8282,'42617','Dunaujvaros','DUNAUJVAROS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8283,'31974','Dunbar','DUNBAR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8284,'26210','Dunbar','DUNBAR',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8285,'7992','Dunbar','DUNBAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8286,'7033','Dunbartonshire','DUNBARTONSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8287,'7993','Dunblane','DUNBLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8288,'10772','Dunboyne','DUNBOYNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8289,'25430','Duncan','DUNCAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8290,'30313','Duncan','DUNCAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8291,'29909','Duncannon','DUNCANNON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8292,'13098','Duncans','DUNCANS',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8293,'29910','Duncansville','DUNCANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8294,'30587','Duncanville','DUNCANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8295,'7034','Dunchideock','DUNCHIDEOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8296,'7994','Dunchurch','DUNCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8297,'21684','Dundalk','DUNDALK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8298,'10900','Dundalk','DUNDALK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8299,'19345','Dundee','DUNDEE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8300,'7995','Dundee','DUNDEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8301,'25858','Dundo','DUNDO',NULL,'','Angola','',0,0,6,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8302,'7996','Dundonald','DUNDONALD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8303,'7035','Dundonnell','DUNDONNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8304,'10931','Dundrum','DUNDRUM',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8305,'19346','Dunedin','DUNEDIN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8306,'15187','Dunedin','DUNEDIN',NULL,'','New Zealand','Dunedin',0,0,157,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8307,'10820','Dunfanaghy','DUNFANAGHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8308,'7997','Dunfermline','DUNFERMLINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8309,'7998','Dungannon','DUNGANNON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8310,'10514','Dungarpur','DUNGARPUR',NULL,'','India','Dungarpur',2,0,101,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8311,'10937','Dungarvan','DUNGARVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8312,'31483','Dungeness','DUNGENESS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8313,'7999','Dungiven','DUNGIVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8314,'14302','Dungun','DUNGUN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8315,'23558','Dunhuang','DUNHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8316,'38828','Duni','DUNI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8317,'26694','Dunk Island','DUNK ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8318,'8000','Dunkeld','DUNKELD',NULL,'','United Kingdom','Dunkeld',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8319,'37258','Dunkeld','DUNKELD',NULL,'','Australia','Dunkeld',0,0,13,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8320,'6160','Dunkerque','DUNKERQUE',NULL,'','France','',0,0,76,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8321,'8001','Dunkirk','DUNKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8322,'28747','Dunkirk','DUNKIRK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8323,'10959','Dunlavin','DUNLAVIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8324,'33623','Dunmor','DUNMOR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8325,'29911','Dunmore','DUNMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8326,'10938','Dunmore East','DUNMORE EAST',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8327,'9283','Dunmow','DUNMOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8328,'8002','Dunmurry','DUNMURRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8329,'33839','Dunn','DUNN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8330,'18446','Dunnigan','DUNNIGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8331,'20519','Dunning','DUNNING',NULL,'','United States','',0,0,231,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8332,'43797','Dunnville','DUNNVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8333,'8003','Dunoon','DUNOON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8334,'8004','Duns','DUNS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8335,'38365','Dunsany','DUNSANY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8336,'26955','Dunsborough','DUNSBOROUGH',NULL,'','Australia','Dunsborough',0,0,13,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8337,'18447','Dunsmuir','DUNSMUIR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8338,'8005','Dunstable','DUNSTABLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8339,'8006','Dunster','DUNSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8340,'41114','Dunster','DUNSTER',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8341,'8007','Dunvegan','DUNVEGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8342,'19784','Dunwoody','DUNWOODY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8343,'32294','Duong Dong','DUONG DONG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8344,'38638','Dupnitsa','DUPNITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8345,'31484','Dupont','DUPONT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8346,'25133','Duque De Caxias','DUQUE DE CAXIAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8347,'22051','Durand','DURAND',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8348,'3704','Durango','DURANGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8349,'13983','Durango','DURANGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8350,'30588','Durango','DURANGO',NULL,'','United States','',0,0,231,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8351,'32899','Durant','DURANT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8352,'37074','Duranzno','DURANZNO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8353,'5184','Duras','DURAS',NULL,'','France','',0,0,76,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8354,'37555','Durbach','DURBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8355,'32515','Durban','DURBAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8356,'24696','Durbuy','DURBUY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8357,'3223','Durcal','DURCAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8358,'6236','Dureil','DUREIL',NULL,'','France','',0,0,76,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8359,'27351','Duren','DUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8360,'10155','Duren Sawit','DUREN SAWIT',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8361,'10515','Durgapur','DURGAPUR',NULL,'','India','Durgapur',12,0,101,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8362,'8008','Durham','DURHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8363,'33840','Durham','DURHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8364,'26211','Durham Downs','DURHAM DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8365,'27099','Durnstein','DURNSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8366,'40957','Durres','DURRES',NULL,'','Albania','',0,0,2,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8367,'25868','Durrës','DURRËS',NULL,'','Albania','',0,0,2,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8368,'26212','Durrie','DURRIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8369,'36303','Dursley','DURSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8370,'17104','Dushanbe','DUSHANBE',NULL,'','Tajikistan','',0,0,213,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8371,'21193','Duson','DUSON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8372,'27352','Dusseldorf','DUSSELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8373,'38952','Duszniki Zdroj','DUSZNIKI ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8374,'17610','Dutch Harbor','DUTCH HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8375,'27625','Dutzow','DUTZOW',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8376,'31485','Duvall','DUVALL',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8377,'16711','Duved','DUVED',NULL,'','Sweden','',0,0,209,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8378,'39826','Duxford','DUXFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8379,'41078','Duzce','DUZCE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8380,'16597','Dvor Cierna Voda','DVOR CIERNA VODA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8381,'20520','Dwight','DWIGHT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8382,'14459','Dwingeloo','DWINGELOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8383,'16258','Dyakovskoye','DYAKOVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8384,'8009','Dyce','DYCE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8385,'33133','Dyersburg','DYERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8386,'20201','Dyersville','DYERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8387,'7036','Dyfed','DYFED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8388,'9334','Dyffryn Ardudwy','DYFFRYN ARDUDWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8389,'26478','Dysart','DYSART',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8390,'14396','Dzaoudzi','DZAOUDZI',NULL,'','Mayotte','',0,0,140,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8391,'40706','Dzerzhinsk','DZERZHINSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8392,'16367','Dzerzhinskiy','DZERZHINSKIY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8393,'13431','Dzhambul','DZHAMBUL',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8394,'38159','Dziwnowek','DZIWNOWEK',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8395,'37716','Dzwirzyno','DZWIRZYNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8396,'22362','Eagan','EAGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8397,'18126','Eagar','EAGAR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8398,'38347','Eagle Lake','EAGLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:37','1900-01-01 00:00:00',1,0,1),(8399,'26897','Eaglehawk','EAGLEHAWK',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:39','1900-01-01 00:00:00',1,0,1),(8400,'29912','Eagles Mere','EAGLES MERE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:39','1900-01-01 00:00:00',1,0,1),(8401,'7037','Eaglescliffe','EAGLESCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8402,'39241','Eaglesham','EAGLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8403,'8010','Ealing','EALING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8404,'42963','Earl Shilton','EARL SHILTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8405,'8011','Earley','EARLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8406,'18448','Earlimart','EARLIMART',NULL,'','United States','',0,0,231,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8407,'33624','Earlington','EARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8408,'8012','Earls Colne','EARLS COLNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8409,'34483','Earlton','EARLTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8410,'43713','Earlville','EARLVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8411,'30592','Early','EARLY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8412,'38776','Easington','EASINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8413,'43589','Easingwold','EASINGWOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8414,'30314','Easley','EASLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8415,'14460','East Brabant','EAST BRABANT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:45','1900-01-01 00:00:00',1,0,1),(8416,'26982','East Carinthia','EAST CARINTHIA',NULL,'','Austria','',0,0,14,'2016-10-17 10:51:45','1900-01-01 00:00:00',1,0,1),(8417,'15101','East Coast Bays','EAST COAST BAYS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:51:46','1900-01-01 00:00:00',1,0,1),(8418,'8013','East Coker','EAST COKER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:46','1900-01-01 00:00:00',1,0,1),(8419,'24260','East End','EAST END',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8420,'32220','East End','EAST END',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8421,'24579','East Flanders','EAST FLANDERS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8422,'25707','East Kemptville','EAST KEMPTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:52','1900-01-01 00:00:00',1,0,1),(8423,'1264','East Midlands Airport','EAST MIDLANDS AIRPORT',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:51:55','1900-01-01 00:00:00',1,0,1),(8424,'15583','East Pomerania','EAST POMERANIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:57','1900-01-01 00:00:00',1,0,1),(8425,'4233','East Pyrenees','EAST PYRENEES',NULL,'','France','',0,0,76,'2016-10-17 10:51:57','1900-01-01 00:00:00',1,0,1),(8426,'8021','Eastbourne','EASTBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:00','1900-01-01 00:00:00',1,0,1),(8427,'8022','Eastchurch','EASTCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:00','1900-01-01 00:00:00',1,0,1),(8428,'23485','Easter Island','EASTER ISLAND',NULL,'','Chile','',0,0,45,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8429,'4234','Eastern Brittany','EASTERN BRITTANY',NULL,'','France','',0,0,76,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8430,'1346','Eastern Cape-port Elizabeth','EASTERN CAPE-PORT ELIZABETH',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8431,'21685','Eastern Chesapeake Shore','EASTERN CHESAPEAKE SHORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8432,'25923','Eastern Coast','EASTERN COAST',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8433,'24266','Eastern Cyprus','EASTERN CYPRUS',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8434,'10972','Eastern Iceland','EASTERN ICELAND',NULL,'','Iceland','',0,0,100,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8435,'9456','Eastern Macedonia','EASTERN MACEDONIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8436,'11204','Eastern Rome','EASTERN ROME',NULL,'','Italy','',0,0,107,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8437,'16592','Eastern Slovakia','EASTERN SLOVAKIA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8438,'26984','Eastern Tirol','EASTERN TIROL',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8439,'25988','Eastern Townships','EASTERN TOWNSHIPS',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8440,'21365','Eastham','EASTHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8441,'7043','Eastington','EASTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8442,'29334','Eastlake','EASTLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8443,'30595','Eastland','EASTLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8444,'1525','Eastleigh','EASTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8445,'19790','Eastman','EASTMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:04','1900-01-01 00:00:00',1,0,1),(8446,'21366','Easton','EASTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:04','1900-01-01 00:00:00',1,0,1),(8447,'38478','Easton','EASTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8448,'22056','Eastpointe','EASTPOINTE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8449,'31487','Eastsound','EASTSOUND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8450,'29335','Eaton','EATON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8451,'19791','Eatonton','EATONTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8452,'28256','Eatontown','EATONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8453,'31488','Eatonville','EATONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:07','1900-01-01 00:00:00',1,0,1),(8454,'4704','Eaubonne','EAUBONNE',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8455,'5022','Eaux-bonnes','EAUX-BONNES',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8456,'40447','Eauze','EAUZE',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8457,'8023','Ebberston','EBBERSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8458,'24448','Ebbs','EBBS',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8459,'43715','Ebden','EBDEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8460,'2145','Ebeltoft','EBELTOFT',NULL,'','Denmark','',0,0,59,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8461,'44266','Eben Am Achensee','EBEN AM ACHENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8462,'27161','Ebenau','EBENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8463,'1931','Ebendorf','EBENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8464,'29918','Ebensburg','EBENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8465,'27071','Eberndorf','EBERNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8466,'22736','Ebersberg','EBERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8467,'38815','Eberstein','EBERSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8468,'13128','Ebina','EBINA',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8469,'23190','Ebnat','EBNAT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8470,'39332','Eboli','EBOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8471,'14148','Ebon','EBON',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8472,'13727','Eboodhoofinolhu','EBOODHOOFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8473,'22737','Ebrach','EBRACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8474,'27100','Ebreichsdorf','EBREICHSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8475,'14034','Ecatepec De Morelos','ECATEPEC DE MORELOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8476,'4235','Eccica-suarella','ECCICA-SUARELLA',NULL,'','France','',0,0,76,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8477,'8024','Ecclefechan','ECCLEFECHAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8478,'38194','Eceabat','ECEABAT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8479,'2067','Eching','ECHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8480,'6619','Echirolles','ECHIROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8481,'13650','Echternach','ECHTERNACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8482,'26898','Echuca','ECHUCA',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8483,'42778','Ecija','ECIJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8484,'37482','Écija','ÉCIJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8485,'40159','Eckelsheim','ECKELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8486,'416','Eckenheim','ECKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8487,'37923','Eckero','ECKERO',NULL,'','Finland','',0,0,75,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8488,'31975','Eckman','ECKMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8489,'42650','Ecole Valentin','ECOLE VALENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8490,'4236','Ecole-valentin','ECOLE-VALENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8491,'4705','Ecouen','ECOUEN',NULL,'','France','',0,0,76,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8492,'6620','Ecully','ECULLY',NULL,'','France','',0,0,76,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8493,'7046','Eday','EDAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8494,'33625','Eddyville','EDDYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8495,'14532','Ede','EDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8496,'24745','Edegem','EDEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8497,'34161','Eden','EDEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8498,'33842','Eden','EDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8499,'8028','Edenbridge','EDENBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8500,'623','Edenkoben','EDENKOBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8501,'33843','Edenton','EDENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8502,'32448','Edenvale','EDENVALE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8503,'33136','Edenwold','EDENWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8504,'30597','Ederville','EDERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8505,'39417','Edesheim','EDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8506,'40397','Edessa','EDESSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8507,'21194','Edgard','EDGARD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8508,'21367','Edgartown','EDGARTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8509,'34162','Edgecliff','EDGECLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8510,'21862','Edgecomb','EDGECOMB',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8511,'30316','Edgefield','EDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8512,'28053','Edgeley','EDGELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8513,'21687','Edgemore','EDGEMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8514,'31739','Edgerton','EDGERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8515,'28258','Edgewater','EDGEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8516,'19350','Edgewood','EDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:18','1900-01-01 00:00:00',1,0,1),(8517,'8029','Edgware','EDGWARE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:18','1900-01-01 00:00:00',1,0,1),(8518,'27377','Edina','EDINA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8519,'29919','Edinboro','EDINBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8520,'8030','Edinburgh','EDINBURGH',NULL,'','United Kingdom','Edinburgh',0,0,229,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8521,'9457','Edipsos','EDIPSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8522,'17285','Edirne','EDIRNE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8523,'28259','Edison','EDISON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8524,'36893','Edisto Beach','EDISTO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8525,'32900','Edmond','EDMOND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8526,'31489','Edmonds','EDMONDS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8527,'39989','Edmonton','EDMONTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8528,'25301','Edmonton','EDMONTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8529,'22058','Edmore','EDMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8530,'27627','Edmundson','EDMUNDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8531,'34398','Edmundston','EDMUNDSTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8532,'30600','Edna','EDNA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8533,'13129','Edogawa','EDOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8534,'41077','Edremit','EDREMIT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8535,'16697','Edsbyn','EDSBYN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8536,'25304','Edson','EDSON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8537,'26215','Edward River','EDWARD RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8538,'34764','Edwards','EDWARDS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8539,'20527','Edwardsville','EDWARDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8540,'38277','Eemnes','EEMNES',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8541,'38734','Eerbeek','EERBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8542,'32311','Efate','EFATE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8543,'20528','Effingham','EFFINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8544,'42396','Eforie','EFORIE',NULL,'','Romania','',0,0,179,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8545,'34485','Eganville','EGANVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8546,'9855','Egedesminde','EGEDESMINDE',NULL,'','Greenland','',0,0,87,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8547,'17615','Egegik','EGEGIK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8548,'10103','Eger','EGER',NULL,'','Hungary','',0,0,99,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8549,'23191','Egerkingen','EGERKINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8550,'8031','Egerton','EGERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8551,'27204','Egestorf','EGESTORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8552,'22527','Eggenstein-leopoldshafen','EGGENSTEIN-LEOPOLDSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8553,'37459','Eggolsheim','EGGOLSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8554,'8032','Egham','EGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8555,'10973','Egilsstadir','EGILSSTADIR',NULL,'','Iceland','Egilsstadir',0,0,100,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8556,'22738','Eging','EGING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8557,'6001','Egletons','EGLETONS',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8558,'22739','Egling','EGLING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8559,'40650','Eglisau','EGLISAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8560,'14634','Egmond Aan Zee','EGMOND AAN ZEE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8561,'42150','Egmont','EGMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8562,'17301','Egridir','EGRIDIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8563,'6760','Eguisheim','EGUISHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8564,'4237','Éguzon-chantome','ÉGUZON-CHANTOME',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8565,'37500','Egyhazasradoc','EGYHAZASRADOC',NULL,'','Hungary','',0,0,99,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8566,'35832','Ehden','EHDEN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8567,'43538','Ehime','EHIME',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8568,'22528','Ehingen','EHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8569,'39480','Ehningen','EHNINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8570,'18127','Ehrenberg','EHRENBERG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8571,'1877','Ehrenfriedersdorf','EHRENFRIEDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8572,'30318','Ehrhardt','EHRHARDT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8573,'24449','Ehrwald','EHRWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8574,'3705','Eibar','EIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8575,'37246','Eibiswald','EIBISWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8576,'27101','Eichgraben','EICHGRABEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8577,'22740','Eichstatt','EICHSTATT',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8578,'40342','Eichwalde','EICHWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8579,'27205','Eicklingen','EICKLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8580,'38346','Eidar','EIDAR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8581,'14895','Eidfjord','EIDFJORD',NULL,'','Norway','Eidfjord',0,0,164,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8582,'4238','Eiffel Tower - Orsay Museum (7)','EIFFEL TOWER - ORSAY MUSEUM (7)',NULL,'','France','',0,0,76,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8583,'41723','Eigergletscher','EIGERGLETSCHER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8584,'15018','Eiken','EIKEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8585,'11059','Eilat','EILAT',NULL,'','Israel','',0,0,106,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8586,'26505','Eildon','EILDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8587,'27206','Eimke','EIMKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8588,'41881','Ein El Sokhna','EIN EL SOKHNA',NULL,'','Egypt','',0,0,65,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8589,'27207','Einbeck','EINBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8590,'14595','Eindhoven','EINDHOVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8591,'23192','Einsiedeln','EINSIEDELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8592,'6025','Einvaux','EINVAUX',NULL,'','France','',0,0,76,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8593,'13656','Eischen','EISCHEN',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8594,'134','Eisenach','EISENACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8595,'41722','Eisenbach','EISENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8596,'43757','Eisenerz','EISENERZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8597,'27062','Eisenstadt','EISENSTADT',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8598,'135','Eisleben','EISLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8599,'38984','Eitorf','EITORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8600,'3326','Ejea De Los Caballeros','EJEA DE LOS CABALLEROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8601,'9647','Ekali','EKALI',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8602,'16243','Ekaterinovka','EKATERINOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8603,'16821','Ekero','EKERO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8604,'43743','Eklingji','EKLINGJI',NULL,'','India','',0,0,101,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8605,'17616','Eklutna','EKLUTNA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8606,'42310','Eksharad','EKSHARAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8607,'16665','Eksjoe','EKSJOE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8608,'17617','Ekuk','EKUK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8609,'17618','Ekwok','EKWOK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8610,'24090','El Bagre','EL BAGRE',NULL,'','Colombia','',0,0,49,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8611,'38671','El Golea','EL GOLEA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:52:34','1900-01-01 00:00:00',1,0,1),(8612,'2365','El Macao','EL MACAO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:52:35','1900-01-01 00:00:00',1,0,1),(8613,'44004','Elancourt','ELANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:52:37','1900-01-01 00:00:00',1,0,1),(8614,'42263','Elaphiti Islands','ELAPHITI ISLANDS',NULL,'','Croatia','',0,0,55,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8615,'42605','Elappara','ELAPPARA',NULL,'','India','',0,0,101,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8616,'42519','Elati','ELATI',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8617,'17287','Elazig','ELAZIG',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8618,'19792','Elberton','ELBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8619,'24450','Elbigenalp','ELBIGENALP',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8620,'15617','Elblag','ELBLAG',NULL,'','Poland','',0,0,174,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8621,'28764','Elbridge','ELBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8622,'3754','Elche','ELCHE',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8623,'26217','Elcho Island','ELCHO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8624,'3706','Elciego','ELCIEGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8625,'7049','Elcot','ELCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8626,'34486','Elder Mills','ELDER MILLS',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8627,'27628','Eldon','ELDON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8628,'34765','Eldora','ELDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8629,'20531','Eldred','ELDRED',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8630,'20203','Eldridge','ELDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8631,'31490','Electric City','ELECTRIC CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8632,'19979','Eleele','ELEELE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8633,'44172','Elefsina','ELEFSINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8634,'44173','Eleftheres','ELEFTHERES',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8635,'39953','Elenite','ELENITE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8636,'28521','Elephant Butte','ELEPHANT BUTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8637,'9458','Eleusis','ELEUSIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8638,'42421','Eleuthera','ELEUTHERA',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8639,'38037','Elevated Plains','ELEVATED PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8640,'22741','Elfershausen','ELFERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8641,'17619','Elfin Cove','ELFIN COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8642,'15618','Elganowo','ELGANOWO',NULL,'','Poland','',0,0,174,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8643,'8033','Elgin','ELGIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8644,'18128','Elgin','ELGIN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8645,'9648','Elia','ELIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8646,'17620','Elim','ELIM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8647,'42467','Elimaki','ELIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8648,'4239','Elincourt-ste-marguerite','ELINCOURT-STE-MARGUERITE',NULL,'','France','',0,0,76,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8649,'37661','Elios','ELIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8650,'21863','Eliot','ELIOT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8651,'9459','Elis','ELIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8652,'16330','Elista','ELISTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8653,'27162','Elixhausen','ELIXHAUSEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8654,'26797','Elizabeth','ELIZABETH',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8655,'33137','Elizabethton','ELIZABETHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8656,'29921','Elizabethtown','ELIZABETHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8657,'29922','Elizabethville','ELIZABETHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:46','1900-01-01 00:00:00',1,0,1),(8658,'3055','Elizondo','ELIZONDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:46','1900-01-01 00:00:00',1,0,1),(8659,'25305','Elk Point','ELK POINT',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8660,'25432','Elkford','ELKFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8661,'21046','Elkhart','ELKHART',NULL,'','United States','',0,0,231,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8662,'31742','Elkhorn','ELKHORN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8663,'33846','Elkin','ELKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8664,'31976','Elkins','ELKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8665,'17865','Elkmont','ELKMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8666,'32808','Elko','ELKO',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8667,'21689','Elkridge','ELKRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8668,'21690','Elkton','ELKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8669,'31977','Elkview','ELKVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8670,'43798','Elkwater','ELKWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8671,'13728','Ellaidhoo','ELLAIDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8672,'14533','Ellecom','ELLECOM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8673,'31491','Ellensburg','ELLENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8674,'19352','Ellenton','ELLENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8675,'28766','Ellenville','ELLENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8676,'19794','Ellenwood','ELLENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8677,'33847','Ellerbe','ELLERBE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8678,'15069','Ellerslie','ELLERSLIE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8679,'8034','Ellesmere Port','ELLESMERE PORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8680,'21691','Ellicott City','ELLICOTT CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8681,'28767','Ellicottville','ELLICOTTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8682,'19795','Ellijay','ELLIJAY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8683,'34487','Elliot Lake','ELLIOT LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8684,'31743','Ellison Bay','ELLISON BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8685,'32559','Ellisras','ELLISRAS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8686,'27629','Ellisville','ELLISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8687,'24553','Ellmau','ELLMAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8688,'8036','Ellon','ELLON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8689,'16881','Ellos','ELLOS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8690,'21047','Ellsworth','ELLSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8691,'22529','Ellwangen','ELLWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1);
INSERT INTO `tb_master_geo_city` VALUES (8692,'23193','Elm','ELM',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8693,'30606','Elmendorf','ELMENDORF',NULL,'','United States','',0,0,231,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8694,'20536','Elmhurst','ELMHURST',NULL,'','United States','',0,0,231,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8695,'44165','Elmina','ELMINA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8696,'28770','Elmira','ELMIRA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8697,'706','Elmshorn','ELMSHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8698,'28263','Elmwood Park','ELMWOOD PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8699,'34488','Elora','ELORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8700,'37457','Elorz','ELORZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8701,'18129','Eloy','ELOY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8702,'31746','Elroy','ELROY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8703,'20538','Elsah','ELSAH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8704,'27163','Elsbethen','ELSBETHEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8705,'32560','Elsburg','ELSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8706,'8037','Elsenham','ELSENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8707,'14534','Elspeet','ELSPEET',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8708,'40234','Elst','ELST',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8709,'8038','Elstow','ELSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8710,'8039','Elstree','ELSTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8711,'8040','Elterwater','ELTERWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8712,'26900','Eltham','ELTHAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8713,'42459','Eltville','ELTVILLE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8714,'16016','Elvas','ELVAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8715,'36258','Elven','ELVEN',NULL,'','France','',0,0,76,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8716,'29924','Elverson','ELVERSON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8717,'14888','Elverum','ELVERUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8718,'38147','Elwood','ELWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8719,'20869','Elwood','ELWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8720,'8041','Ely','ELY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8721,'29337','Elyria','ELYRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8722,'29925','Elysburg','ELYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8723,'32312','Emae','EMAE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8724,'42755','Embilipitiya','EMBILIPITIYA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8725,'9460','Emborio','EMBORIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8726,'6423','Embrun','EMBRUN',NULL,'','France','',0,0,76,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8727,'28522','Embudo','EMBUDO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8728,'136','Emden','EMDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8729,'2229','Emdrup','EMDRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8730,'23577','Emei','EMEI',NULL,'','China','',0,0,46,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8731,'23694','Emeishan','EMEISHAN',NULL,'','China','',0,0,46,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8732,'5848','Emerainville','EMERAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8733,'26404','Emerald','EMERALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8734,'33848','Emerald Isle','EMERALD ISLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8735,'18465','Emeryville','EMERYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8736,'27966','Emigrant','EMIGRANT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8737,'27630','Eminence','EMINENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8738,'16728','Emmaboda','EMMABODA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8739,'14757','Emmeloord','EMMELOORD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8740,'14495','Emmen','EMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8741,'22530','Emmendingen','EMMENDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8742,'6161','Emmerin','EMMERIN',NULL,'','France','',0,0,76,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8743,'26985','Emmersdorf','EMMERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8744,'20205','Emmetsburg','EMMETSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8745,'23194','Emmetten','EMMETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8746,'21692','Emmitsburg','EMMITSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8747,'17621','Emmonak','EMMONAK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8748,'32516','Empangeni','EMPANGENI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8749,'26108','Empedrado','EMPEDRADO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8750,'22531','Empfingen','EMPFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8751,'7050','Empingham','EMPINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8752,'34766','Empire','EMPIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8753,'11909','Empoli','EMPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:06','1900-01-01 00:00:00',1,0,1),(8754,'31099','Emporia','EMPORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:06','1900-01-01 00:00:00',1,0,1),(8755,'2467','Empuriabrava','EMPURIABRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8756,'8042','Emsworth','EMSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8757,'10308','Enarotali','ENAROTALI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8758,'25876','Encamp','ENCAMP',NULL,'','Andorra','',0,0,5,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8759,'25157','Encantado','ENCANTADO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8760,'18466','Encanto','ENCANTO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8761,'16110','Encarnacion','ENCARNACION',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8762,'18467','Encinitas','ENCINITAS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8763,'18468','Encino','ENCINO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8764,'10350','Ende','ENDE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8765,'25433','Enderby','ENDERBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8766,'28773','Endicott','ENDICOTT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8767,'4240','Endoume','ENDOUME',NULL,'','France','',0,0,76,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8768,'28774','Endwell','ENDWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8769,'40516','Enfidha','ENFIDHA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8770,'25708','Enfield','ENFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8771,'19080','Enfield','ENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8772,'10732','Enfield','ENFIELD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8773,'8044','Enfield','ENFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8774,'26798','Enfield','ENFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8775,'42742','Engara','ENGARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8776,'24132','Engativa','ENGATIVA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8777,'23016','Enge','ENGE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8778,'23195','Engelberg','ENGELBERG',NULL,'','Switzerland','Engelberg',0,0,210,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8779,'1968','Engelsbach','ENGELSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8780,'25082','Engenho Novo','ENGENHO NOVO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8781,'37427','Engerwitzdorf','ENGERWITZDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8782,'4706','Enghien Les Bains','ENGHIEN LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8783,'28264','Englewood','ENGLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8784,'17622','English Bay','ENGLISH BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8785,'26163','English Harbour','ENGLISH HARBOUR',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8786,'7051','English Riviera','ENGLISH RIVIERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8787,'6162','Englos','ENGLOS',NULL,'','France','',0,0,76,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8788,'39462','Enguera','ENGUERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8789,'32904','Enid','ENID',NULL,'','United States','',0,0,231,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8790,'16259','Eniseysk','ENISEYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8791,'14149','Eniwetok','ENIWETOK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8792,'36455','Enkhuizen','ENKHUIZEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8793,'16666','Enkoeping','ENKOEPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8794,'36666','Enkoping','ENKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8795,'7052','Ennerdale Bridge','ENNERDALE BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8796,'23196','Ennetburgen','ENNETBURGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8797,'27353','Ennigerloh','ENNIGERLOH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8798,'10733','Ennis','ENNIS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8799,'40917','Ennis, Co.clare','ENNIS, CO.CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8800,'42703','Enniscorthy','ENNISCORTHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8801,'35392','Enniscrone','ENNISCRONE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8802,'10960','Enniskerry','ENNISKERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8803,'8045','Enniskillen','ENNISKILLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8804,'10784','Ennistimon','ENNISTIMON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8805,'35393','Ennistymon','ENNISTYMON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8806,'27128','Enns','ENNS',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8807,'42933','Enoch','ENOCH',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8808,'29926','Enola','ENOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8809,'3923','Enontekio','ENONTEKIO',NULL,'','Finland','',0,0,75,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8810,'14749','Enschede','ENSCHEDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8811,'14090','Ensenada','ENSENADA',NULL,'','Mexico','Ensenada',0,0,141,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8812,'23826','Enshi','ENSHI',NULL,'','China','',0,0,46,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8813,'16822','Enskede','ENSKEDE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8814,'8046','Enstone','ENSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8815,'6424','Ensues-la-redonne','ENSUES-LA-REDONNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8816,'42536','Entabeni','ENTABENI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8817,'17477','Entebbe','ENTEBBE',NULL,'','Uganda','',0,0,226,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8818,'17866','Enterprise','ENTERPRISE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8819,'4241','Entraigues-sur-la-sorgue','ENTRAIGUES-SUR-LA-SORGUE',NULL,'','France','',0,0,76,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8820,'41958','Entrambasaguas','ENTRAMBASAGUAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8821,'6083','Entraygues-sur-truyere','ENTRAYGUES-SUR-TRUYERE',NULL,'','France','',0,0,76,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8822,'42096','Entre Rios','ENTRE RIOS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8823,'15805','Entre-campos','ENTRE-CAMPOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8824,'29927','Entriken','ENTRIKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8825,'31494','Enumclaw','ENUMCLAW',NULL,'','United States','',0,0,231,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8826,'39564','Enval','ENVAL',NULL,'','France','',0,0,76,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8827,'41028','Eolie Islands','EOLIE ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8828,'5460','Epagny','EPAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8829,'14535','Epe','EPE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8830,'14569','Epen','EPEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8831,'5727','Epernay','EPERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8832,'31747','Ephraim','EPHRAIM',NULL,'','United States','',0,0,231,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8833,'31495','Ephrata','EPHRATA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8834,'9461','Epidaurus','EPIDAURUS',NULL,'','Greece','Epidaurus',0,0,86,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8835,'42518','Epidavros','EPIDAVROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8836,'6026','Epinal','EPINAL',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8837,'4707','Epinay-sur-orge','EPINAY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8838,'4708','Epinay-sur-seine','EPINAY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8839,'5537','Epiniac','EPINIAC',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8840,'6621','Epinouze','EPINOUZE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8841,'4709','Epone','EPONE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8842,'6163','Eppe-sauvage','EPPE-SAUVAGE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8843,'8047','Epping','EPPING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8844,'32695','Epping','EPPING',NULL,'','United States','',0,0,231,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8845,'8048','Epsom','EPSOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8846,'37965','Eptingen','EPTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8847,'43080','Equemauville','EQUEMAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8848,'37983','Équemauville','ÉQUEMAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8849,'4991','Equeurdreville Hainneville','EQUEURDREVILLE HAINNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8850,'41537','Equeurdreville-hainneville','EQUEURDREVILLE-HAINNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8851,'4710','Eragny','ERAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8852,'42517','Erateini','ERATEINI',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8853,'4711','Erbalunga','ERBALUNGA',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8854,'37211','Erbenhausen','ERBENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8855,'43137','Erbil','ERBIL',NULL,'','Iraq','',0,0,104,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8856,'11207','Erbusco','ERBUSCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8857,'42270','Erciyes','ERCIYES',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8858,'11911','Ercolano','ERCOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8859,'10100','Erd','ERD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8860,'41076','Erdek','ERDEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8861,'42683','Erdemli','ERDEMLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8862,'5538','Erdeven','ERDEVEN',NULL,'','France','',0,0,76,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8863,'137','Erding','ERDING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8864,'38457','Erdobenye','ERDOBENYE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8865,'23578','Erdos','ERDOS',NULL,'','China','',0,0,46,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8866,'41775','Erechim','ERECHIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8867,'43620','Eregli','EREGLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8868,'9462','Eressos','ERESSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8869,'9651','Eretria','ERETRIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8870,'36385','Erfoud','ERFOUD',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8871,'1969','Erfurt','ERFURT',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8872,'16466','Ergi-barlyk','ERGI-BARLYK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8873,'22742','Ergolding','ERGOLDING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8874,'5539','Ergue-gaberic','ERGUE-GABERIC',NULL,'','France','',0,0,76,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8875,'12998','Erice','ERICE',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8876,'15999','Ericeira','ERICEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8877,'32905','Erick','ERICK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8878,'22060','Erie','ERIE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8879,'7053','Eriskay','ERISKAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8880,'27354','Erkrath','ERKRATH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8881,'22743','Erlabrunn','ERLABRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8882,'22744','Erlangen','ERLANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8883,'33627','Erlanger','ERLANGER',NULL,'','United States','',0,0,231,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8884,'42909','Erldunda','ERLDUNDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8885,'42669','Erlensee','ERLENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8886,'37117','Ermelo','ERMELO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8887,'36456','Ermelo','ERMELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8888,'9790','Ermioni','ERMIONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8889,'15510','Ermita','ERMITA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8890,'9463','Ermones','ERMONES',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8891,'9809','Ermoupolis','ERMOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8892,'38095','Ermua','ERMUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8893,'10644','Ernakulam','ERNAKULAM',NULL,'','India','Ernakulam',3,0,101,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8894,'37449','Ernst','ERNST',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8895,'24716','Erondegem','ERONDEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8896,'13677','Errachidia','ERRACHIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8897,'39114','Erriadh','ERRIADH',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8898,'7054','Erskine','ERSKINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8899,'27380','Erskine','ERSKINE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8900,'23197','Erstfeld','ERSTFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8901,'42730','Erts','ERTS',NULL,'','Andorra','',0,0,5,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8902,'33139','Erwin','ERWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8903,'29931','Erwinna','ERWINNA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8904,'27355','Erwitte','ERWITTE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8905,'17289','Erzincan','ERZINCAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8906,'17291','Erzurum','ERZURUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8907,'2258','Esbjerg','ESBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8908,'5097','Esbly','ESBLY',NULL,'','France','',0,0,76,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8909,'3121','Escalante','ESCALANTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8910,'33328','Escalante','ESCALANTE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8911,'13572','Escamp','ESCAMP',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8912,'22061','Escanaba','ESCANABA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8913,'13573','Escap','ESCAP',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8914,'3327','Escarrilla','ESCARRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8915,'24167','Escazu','ESCAZU',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8916,'41032','Esch Sur Alzette','ESCH SUR ALZETTE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8917,'40646','Eschau','ESCHAU',NULL,'','France','',0,0,76,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8918,'417','Eschborn','ESCHBORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8919,'39140','Eschenz','ESCHENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8920,'418','Eschersheim','ESCHERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8921,'13657','Esch-sur-alzette','ESCH-SUR-ALZETTE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8922,'419','Eschwege','ESCHWEGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8923,'2040','Eschweiler','ESCHWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8924,'40490','Escolives-sainte-camille','ESCOLIVES-SAINTE-CAMILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8925,'18470','Escondido','ESCONDIDO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8926,'8049','Escrick','ESCRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8927,'43241','Escunhau','ESCUNHAU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8928,'17245','Esenboga','ESENBOGA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8929,'17290','Esenyurt','ESENYURT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8930,'8050','Esher','ESHER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8931,'37635','Eshowe','ESHOWE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8932,'7055','Eskbank','ESKBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8933,'39349','Eskifjoerdur','ESKIFJOERDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8934,'16773','Eskilstuna','ESKILSTUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8935,'17293','Eskisehir','ESKISEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8936,'2622','Eskoriatza','ESKORIATZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8937,'16863','Eslov','ESLOV',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8938,'2395','Esmeraldas','ESMERALDAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8939,'15855','Esmoriz','ESMORIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8940,'4242','Espace Killy','ESPACE KILLY',NULL,'','France','',0,0,76,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8941,'40052','Espalion','ESPALION',NULL,'','France','',0,0,76,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8942,'28523','Espanola','ESPANOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8943,'34489','Espanola','ESPANOLA',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8944,'27356','Espelkamp','ESPELKAMP',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8945,'39142','Espenau','ESPENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8946,'26589','Esperance','ESPERANCE',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8947,'15749','Esperanza','ESPERANZA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8948,'15856','Espinho','ESPINHO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8949,'38562','Espirdo','ESPIRDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8950,'24975','Espirito Santo','ESPIRITO SANTO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8951,'32313','Espiritu Santo','ESPIRITU SANTO',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8952,'2623','Esplugues De Llobregat','ESPLUGUES DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8953,'3961','Espoo','ESPOO',NULL,'','Finland','',0,0,75,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8954,'2468','Esporles','ESPORLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8955,'15882','Esposende','ESPOSENDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8956,'3541','Espot','ESPOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8957,'26115','Esquel','ESQUEL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8958,'26109','Esquina','ESQUINA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8959,'9870','Esquipulas','ESQUIPULAS',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8960,'41356','Esquivias','ESQUIVIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8961,'13678','Essaouira','ESSAOUIRA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8962,'27208','Essel','ESSEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8963,'38673','Esselbach','ESSELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8964,'27358','Essen','ESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8965,'26506','Essendon','ESSENDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8966,'7056','Essex','ESSEX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:37','1900-01-01 00:00:00',1,0,1),(8967,'21368','Essex','ESSEX',NULL,'','United States','',0,0,231,'2016-10-17 10:53:37','1900-01-01 00:00:00',1,0,1),(8968,'41536','Essey-les-nancy','ESSEY-LES-NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8969,'4243','Essey-lès-nancy','ESSEY-LÈS-NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8970,'39652','Essing','ESSING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8971,'29932','Essington','ESSINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8972,'22532','Esslingen','ESSLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8973,'4244','Essomes Sur Marne','ESSOMES SUR MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8974,'44008','Essomes-sur-marne','ESSOMES-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8975,'39641','Essoyes','ESSOYES',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8976,'846','Estado De Mexico','ESTADO DE MEXICO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8977,'5912','Estagel','ESTAGEL',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8978,'2624','Estamariu','ESTAMARIU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8979,'15857','Estarreja','ESTARREJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8980,'16000','Estefania','ESTEFANIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8981,'42985','Estella','ESTELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8982,'30608','Estelle','ESTELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8983,'2625','Estellencs','ESTELLENCS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8984,'3230','Estepona','ESTEPONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8985,'25989','Esterel','ESTEREL',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8986,'24168','Esterillos Oeste','ESTERILLOS OESTE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8987,'5728','Esternay','ESTERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8988,'19354','Estero','ESTERO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8989,'2626','Esterri D\'aneu','ESTERRI D\'ANEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8990,'34768','Estes Park','ESTES PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8991,'22942','Estevan','ESTEVAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8992,'20206','Estherville','ESTHERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8993,'30320','Estill','ESTILL',NULL,'','United States','',0,0,231,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8994,'15926','Estoi','ESTOI',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8995,'15927','Estombar','ESTOMBAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8996,'16001','Estoril','ESTORIL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8997,'36561','Estoril-alcabideche','ESTORIL-ALCABIDECHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8998,'41662','Estreito Camara De Lobos','ESTREITO CAMARA DE LOBOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8999,'15872','Estrela','ESTRELA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9000,'15775','Estremoz','ESTREMOZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9001,'37498','Esztergom','ESZTERGOM',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9002,'37663','Etampes','ETAMPES',NULL,'','France','',0,0,76,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9003,'6164','Etaples','ETAPLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9004,'3451','Eterna','ETERNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9005,'4712','Etiolles','ETIOLLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9006,'32093','Etna','ETNA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9007,'13004','Etna','ETNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9008,'40699','Etne','ETNE',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9009,'34490','Etobicoke','ETOBICOKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9010,'5729','Etoges','ETOGES',NULL,'','France','',0,0,76,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9011,'14399','Etosha','ETOSHA',NULL,'','Namibia','',0,0,151,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9012,'1390','Etosha-northern Region','ETOSHA-NORTHERN REGION',NULL,'','NAMIBIA','',0,0,151,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9013,'33140','Etowah','ETOWAH',NULL,'','United States','',0,0,231,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9014,'23017','Etoy','ETOY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9015,'40487','Etreaupont','ETREAUPONT',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9016,'40271','Etrelles','ETRELLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9017,'44012','Etrembieres','ETREMBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9018,'5807','Etretat','ETRETAT',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9019,'11912','Etroubles','ETROUBLES',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9020,'42137','Ettalong','ETTALONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9021,'14461','Etten-leur','ETTEN-LEUR',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9022,'24623','Etterbeek','ETTERBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9023,'29933','Etters','ETTERS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9024,'39152','Ettington','ETTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9025,'2078','Ettlingen','ETTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9026,'2627','Etxalar','ETXALAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9027,'17111','Eua Island','EUA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9028,'9464','Euboea','EUBOEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9029,'29339','Euclid','EUCLID',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9030,'18011','Eudora','EUDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9031,'39097','Euerdorf','EUERDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9032,'17868','Eufaula','EUFAULA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9033,'38174','Eugendorf','EUGENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9034,'29657','Eugene','EUGENE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9035,'5185','Eugenie-les-bains','EUGENIE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9036,'30609','Euless','EULESS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9037,'43716','Eumemmerring','EUMEMMERRING',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9038,'42712','Eungella','EUNGELLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9039,'21195','Eunice','EUNICE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9040,'24672','Eupen','EUPEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9041,'40765','Eupora','EUPORA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9042,'4247','Eure-et-loir','EURE-ET-LOIR',NULL,'','France','',0,0,76,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9043,'27632','Eureka','EUREKA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9044,'26507','Euroa','EUROA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9045,'42910','Eurong','EURONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9046,'14462','Europoort','EUROPOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9047,'27359','Euskirchen','EUSKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9048,'42458','Euskrichen','EUSKRICHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9049,'19355','Eustis','EUSTIS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9050,'17869','Eutaw','EUTAW',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9051,'34769','Evans','EVANS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9052,'20207','Evansdale','EVANSDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9053,'20541','Evanston','EVANSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9054,'32095','Evansville','EVANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9055,'8052','Evanton','EVANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9056,'22063','Evart','EVART',NULL,'','United States','',0,0,231,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9057,'27381','Eveleth','EVELETH',NULL,'','United States','',0,0,231,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9058,'14795','Evenes','EVENES',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9059,'15012','Evenskjer','EVENSKJER',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9060,'31496','Everett','EVERETT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9061,'39076','Evergem','EVERGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9062,'19356','Everglades City','EVERGLADES CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9063,'34770','Evergreen','EVERGREEN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9064,'30610','Everman','EVERMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9065,'8053','Evershot','EVERSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9066,'7058','Eversley','EVERSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9067,'8054','Evesham','EVESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9068,'6622','Evian-les-bains','EVIAN-LES-BAINS',NULL,'','France','Evian-les-Bains',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9069,'23198','Evilard','EVILARD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9070,'38927','Evje','EVJE',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9071,'15913','Evora','EVORA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9072,'5809','Evreux','EVREUX',NULL,'','France','',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9073,'43248','Evron','EVRON',NULL,'','France','',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9074,'4248','Évron','ÉVRON',NULL,'','France','',0,0,76,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9075,'4713','Evry','EVRY',NULL,'','France','',0,0,76,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9076,'28265','Ewing','EWING',NULL,'','United States','',0,0,231,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9077,'7059','Ewloe','EWLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9078,'24044','Ewo','EWO',NULL,'','Congo','',0,0,51,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9079,'27633','Excelsior Springs','EXCELSIOR SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9080,'17624','Excursion Inlet','EXCURSION INLET',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9081,'8055','Exeter','EXETER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9082,'32696','Exeter','EXETER',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9083,'8056','Exford','EXFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9084,'38500','Exloo','EXLOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9085,'7060','Exmoor National Park','EXMOOR NATIONAL PARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9086,'31101','Exmore','EXMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9087,'8057','Exmouth','EXMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9088,'26956','Exmouth','EXMOUTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9089,'25306','Exshaw','EXSHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9090,'138','Extertal','EXTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9091,'29934','Exton','EXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9092,'7061','Exton','EXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9093,'43084','Exuma','EXUMA',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9094,'4953','Eybens','EYBENS',NULL,'','France','',0,0,76,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9095,'8058','Eye','EYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9096,'8059','Eyemouth','EYEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9097,'6425','Eyguians','EYGUIANS',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9098,'37201','Eygurande','EYGURANDE',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9099,'6002','Eymoutiers','EYMOUTIERS',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9100,'5913','Eyne','EYNE',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9101,'39825','Eyrarbakka','EYRARBAKKA',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9102,'5186','Eysines','EYSINES',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9103,'2963','Ezcaray','EZCARAY',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9104,'16909','Ezulwini','EZULWINI',NULL,'','Swaziland','',0,0,208,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9105,'17153','Ezzahra','EZZAHRA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9106,'32096','F. E. Warren Afb','F. E. WARREN AFB',NULL,'','United States','',0,0,231,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9107,'16156','Faaa','FAAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9108,'41221','Faaborg','FAABORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9109,'13729','Faadhippolhu Atoll','FAADHIPPOLHU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9110,'13730','Faafu Atoll','FAAFU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9111,'27072','Faak Am See','FAAK AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9112,'30611','Fabens','FABENS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9113,'14889','Faberg','FABERG',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9114,'2189','Faborg','FABORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9115,'5914','Fabregues','FABREGUES',NULL,'','France','',0,0,76,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9116,'5915','Fabrezan','FABREZAN',NULL,'','France','',0,0,76,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9117,'11913','Fabriano','FABRIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9118,'11208','Faedo','FAEDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9119,'11914','Faenza','FAENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9120,'14858','Faervik','FAERVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9121,'36796','Fafa Island','FAFA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9122,'15883','Fafe','FAFE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9123,'44032','Fagamalo','FAGAMALO',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9124,'16220','Fagaras','FAGARAS',NULL,'','Romania','',0,0,179,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9125,'14843','Fagernes','FAGERNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9126,'16810','Fagersta','FAGERSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9127,'10974','Fagurholsmyri','FAGURHOLSMYRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9128,'43047','Fahaheel','FAHAHEEL',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9129,'40413','Fahrenzhausen','FAHRENZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9130,'11915','Fai Della Paganella','FAI DELLA PAGANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9131,'42936','Faial','FAIAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9132,'7062','Failand','FAILAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9133,'8060','Failsworth','FAILSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9134,'7063','Fair Isle','FAIR ISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9135,'17625','Fairbanks','FAIRBANKS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:06','1900-01-01 00:00:00',1,0,1),(9136,'29341','Fairborn','FAIRBORN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:06','1900-01-01 00:00:00',1,0,1),(9137,'19797','Fairburn','FAIRBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9138,'28116','Fairbury','FAIRBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9139,'31327','Fairfax','FAIRFAX',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9140,'20208','Fairfield','FAIRFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:54:08','1900-01-01 00:00:00',1,0,1),(9141,'26901','Fairfield','FAIRFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:08','1900-01-01 00:00:00',1,0,1),(9142,'8061','Fairford','FAIRFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:10','1900-01-01 00:00:00',1,0,1),(9143,'43799','Fairhaven','FAIRHAVEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:10','1900-01-01 00:00:00',1,0,1),(9144,'42136','Fairhaven','FAIRHAVEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9145,'21370','Fairhaven','FAIRHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9146,'17872','Fairhope','FAIRHOPE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9147,'29343','Fairlawn','FAIRLAWN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9148,'31328','Fairlee','FAIRLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9149,'43016','Fairlie','FAIRLIE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9150,'33849','Fairmont','FAIRMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:12','1900-01-01 00:00:00',1,0,1),(9151,'25434','Fairmont Hot Springs','FAIRMONT HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:12','1900-01-01 00:00:00',1,0,1),(9152,'33427','Fairplay','FAIRPLAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9153,'28776','Fairport','FAIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9154,'28268','Fairview','FAIRVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9155,'25307','Fairview','FAIRVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9156,'15299','Faisalabad','FAISALABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9157,'33008','Faith','FAITH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9158,'10734','Faithlegg','FAITHLEGG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9159,'42604','Faizabad','FAIZABAD',NULL,'','India','Faizabad',6,0,101,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9160,'15954','Faja Da Ovelha','FAJA DA OVELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9161,'15750','Fajardo','FAJARDO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9162,'16115','Fakahina','FAKAHINA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9163,'42465','Fakarava','FAKARAVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9164,'8062','Fakenham','FAKENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9165,'10156','Fak-fak','FAK-FAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9166,'37652','Falaen','FALAEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9167,'5393','Falaise','FALAISE',NULL,'','France','',0,0,76,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9168,'39630','Falaknuma','FALAKNUMA',NULL,'','India','',0,0,101,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9169,'39098','Falcade','FALCADE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9170,'25593','Falcon Beach','FALCON BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9171,'11916','Falconara Marittima','FALCONARA MARITTIMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9172,'28777','Falconer','FALCONER',NULL,'','United States','',0,0,231,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9173,'2190','Faldsled','FALDSLED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9174,'44033','Faleapuna','FALEAPUNA',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9175,'44034','Faleolo','FALEOLO',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9176,'11917','Falerna','FALERNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9177,'30615','Falfurrias','FALFURRIAS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9178,'9395','Faliraki','FALIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9179,'16704','Falkenberg','FALKENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9180,'22745','Falkenberg','FALKENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9181,'767','Falkenrehde','FALKENREHDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9182,'768','Falkensee','FALKENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9183,'22746','Falkenstein','FALKENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9184,'8063','Falkirk','FALKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9185,'8064','Falkland','FALKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9186,'16667','Falkoeping','FALKOEPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9187,'23018','Falkoeping','FALKOEPING',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9188,'23199','Fallanden','FALLANDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9189,'18477','Fallbrook','FALLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9190,'7064','Fallin','FALLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9191,'31979','Falling Waters','FALLING WATERS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9192,'26365','Falls Creek','FALLS CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9193,'21372','Falmouth','FALMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9194,'8065','Falmouth','FALMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9195,'13099','Falmouth','FALMOUTH',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9196,'26164','Falmouth Harbour','FALMOUTH HARBOUR',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9197,'17626','False Island','FALSE ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9198,'8066','Falstone','FALSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9199,'16739','Falun','FALUN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9200,'38574','Falzes','FALZES',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9201,'1510','Famagusta','FAMAGUSTA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9202,'41602','Fanabe','FANABE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9203,'31104','Fancy Gap','FANCY GAP',NULL,'','United States','',0,0,231,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9204,'39933','Fanes','FANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9205,'17051','Fang','FANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9206,'16116','Fangatau','FANGATAU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9207,'17383','Fangliao','FANGLIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9208,'9921','Fanling','FANLING',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9209,'39814','Fanlo','FANLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9210,'13461','Fanning Island','FANNING ISLAND',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9211,'37802','Fano','FANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9212,'28269','Fanwood','FANWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9213,'15884','Fao','FAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9214,'28778','Far Rockaway','FAR ROCKAWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9215,'11918','Fara In Sabina','FARA IN SABINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9216,'35833','Faraaya','FARAAYA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9217,'38666','Farafangana','FARAFANGANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9218,'15363','Farallon','FARALLON',NULL,'','Panama','',0,0,169,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9219,'17205','Faralya','FARALYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9220,'39215','Faraya','FARAYA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9221,'8067','Fareham','FAREHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9222,'1526','Farehamn','FAREHAMN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9223,'16157','Fareorea','FAREOREA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9224,'43847','Farevejle','FAREVEJLE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9225,'16437','Farforovaya','FARFOROVAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9226,'19798','Fargo','FARGO',NULL,'','United States','',0,0,231,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9227,'27384','Faribault','FARIBAULT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9228,'10516','Faridabad','FARIDABAD',NULL,'','India','Faridabad',20,0,101,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9229,'8068','Faringdon','FARINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9230,'20545','Farmer City','FARMER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9231,'30616','Farmers Branch','FARMERS BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9232,'24855','Farmer\'s Hill','FARMER\'S HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9233,'28779','Farmingdale','FARMINGDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9234,'28524','Farmington','FARMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:25','1900-01-01 00:00:00',1,0,1),(9235,'28781','Farmingville','FARMINGVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9236,'31105','Farmville','FARMVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9237,'8069','Farnborough','FARNBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9238,'8070','Farnham','FARNHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9239,'25990','Farnham','FARNHAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9240,'8071','Farnworth','FARNWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9241,'15928','Faro','FARO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9242,'22978','Faro','FARO',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9243,'2108','Faroe Islands','FAROE ISLANDS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9244,'25113','Farol','FAROL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9245,'37380','Faros','FAROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9246,'8072','Farr','FARR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9247,'37200','Farr West','FARR WEST',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9248,'12887','Farra Di Soligo','FARRA DI SOLIGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9249,'33143','Farragut','FARRAGUT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9250,'37885','Farrarmere','FARRARMERE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9251,'29939','Farrell','FARRELL',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9252,'42202','Farroupilha','FARROUPILHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9253,'34955','Farso','FARSO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9254,'16823','Farsta','FARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9255,'15019','Farsund','FARSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9256,'2169','Farum','FARUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9257,'43610','Farwaniya','FARWANIYA',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9258,'10975','Faskrudsfjordur','FASKRUDSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9259,'40145','Fatehpur Sikri','FATEHPUR SIKRI',NULL,'','India','Fatehpur Sikri Tour Packages | Agra Fatehpur Sikri',6,0,101,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9260,'16044','Fatima','FATIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9261,'36582','Fatima-ourem','FATIMA-OUREM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9262,'16117','Fatu Hiva','FATU HIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9263,'35522','Fauglia','FAUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9264,'37','Faulensee','FAULENSEE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9265,'33009','Faulkton','FAULKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9266,'6027','Faulquemont','FAULQUEMONT',NULL,'','France','',0,0,76,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9267,'41533','Fauquembergues','FAUQUEMBERGUES',NULL,'','France','',0,0,76,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9268,'14915','Fauske','FAUSKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9269,'14796','Favang','FAVANG',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9270,'2628','Favara','FAVARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9271,'12888','Favaro Veneto','FAVARO VENETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9272,'6623','Faverges','FAVERGES',NULL,'','France','',0,0,76,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9273,'6624','Faverges-de-la-tour','FAVERGES-DE-LA-TOUR',NULL,'','France','',0,0,76,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9274,'8073','Faversham','FAVERSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9275,'11920','Favignana','FAVIGNANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9276,'26986','Favoriten','FAVORITEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9277,'8074','Fawkham','FAWKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9278,'26902','Fawkner','FAWKNER',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9279,'4054','Fawn Harbour','FAWN HARBOUR',NULL,'','Fiji','',0,0,74,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9280,'18478','Fawnskin','FAWNSKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9281,'6427','Fayence','FAYENCE',NULL,'','France','',0,0,76,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9282,'10010','Fazana','FAZANA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9283,'10785','Feakle','FEAKLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9284,'7065','Fearn','FEARN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9285,'37576','Feasterville','FEASTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9286,'15102','Featherston','FEATHERSTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9287,'8075','Featherstone','FEATHERSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9288,'5810','Fecamp','FECAMP',NULL,'','France','',0,0,76,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9289,'420','Fechenheim','FECHENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9290,'41765','Federacion','FEDERACION',NULL,'','Argentina','',0,0,10,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9291,'24976','Federal District','FEDERAL DISTRICT',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9292,'33428','Federal Heights','FEDERAL HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9293,'14896','Fedje','FEDJE',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9294,'8076','Feering','FEERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9295,'2026','Fehmarn','FEHMARN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9296,'42042','Fehrman','FEHRMAN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9297,'37684','Feignies','FEIGNIES',NULL,'','France','',0,0,76,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9298,'41774','Feira De Santana','FEIRA DE SANTANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9299,'2898','Felanitx','FELANITX',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9300,'22747','Feldafing','FELDAFING',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9301,'24414','Feldbach','FELDBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9302,'139','Feldberg (Baden-wuerttemberg)','FELDBERG (BADEN-WUERTTEMBERG)',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9303,'24518','Feldkirch','FELDKIRCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9304,'22748','Feldkirchen','FELDKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9305,'37199','Feldkirchen An Der Donau','FELDKIRCHEN AN DER DONAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9306,'39321','Feldkirchen-westerham','FELDKIRCHEN-WESTERHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9307,'42663','Felechosa','FELECHOSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9308,'15888','Felgar','FELGAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9309,'13772','Felidhu Atoll','FELIDHU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9310,'7066','Felindre Farchog','FELINDRE FARCHOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9311,'8077','Felixstowe','FELIXSTOWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9312,'22533','Fellbach','FELLBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9313,'42964','Felpham','FELPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9314,'2290','Felsted','FELSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9315,'8078','Feltham','FELTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9316,'18479','Felton','FELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9317,'38775','Felton','FELTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9318,'11921','Feltre','FELTRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9319,'8079','Fen Stanton','FEN STANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9320,'34492','Fenelon Falls','FENELON FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9321,'23958','Fenggang','FENGGANG',NULL,'','China','',0,0,46,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9322,'23579','Fenghua','FENGHUA',NULL,'','China','',0,0,46,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9323,'23855','Fenghuang','FENGHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9324,'23738','Fengxian','FENGXIAN',NULL,'','China','',0,0,46,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9325,'40670','Fenis','FENIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9326,'31748','Fennimore','FENNIMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9327,'22065','Fennville','FENNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9328,'22066','Fenton','FENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9329,'26839','Fentonbury','FENTONBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9330,'8080','Fenwick (Ayershire)','FENWICK (AYERSHIRE)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9331,'19220','Fenwick Estates','FENWICK ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9332,'17515','Feodosiya','FEODOSIYA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9333,'16545','Fera Island','FERA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9334,'6237','Ferce-sur-sarthe','FERCE-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9335,'20872','Ferdinand','FERDINAND',NULL,'','United States','',0,0,231,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9336,'4835','Fere-en-tardenois','FERE-EN-TARDENOIS',NULL,'','France','',0,0,76,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9337,'11922','Ferentillo','FERENTILLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9338,'44230','Ferentino','FERENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9339,'32155','Fergana','FERGANA',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9340,'27386','Fergus Falls','FERGUS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9341,'27638','Ferguson','FERGUSON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9342,'14303','Feringgi Beach','FERINGGI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9343,'7067','Fermain Bay','FERMAIN BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9344,'7068','Fermanagh','FERMANAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9345,'40586','Ferme-neuve','FERME-NEUVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9346,'11923','Fermo','FERMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9347,'40221','Fermoselle','FERMOSELLE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9348,'38997','Fermoy','FERMOY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9349,'19357','Fern Park','FERN PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9350,'19358','Fernandina Beach','FERNANDINA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9351,'41773','Fernando De Noronha','FERNANDO DE NORONHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9352,'22067','Ferndale','FERNDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9353,'7069','Ferndown','FERNDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9354,'38752','Fernetti','FERNETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9355,'23019','Ferney-voltaire','FERNEY-VOLTAIRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9356,'6625','Ferney-voltaire','FERNEY-VOLTAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9357,'987','Ferney-voltaire-thoiry','FERNEY-VOLTAIRE-THOIRY',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9358,'15189','Fernhill','FERNHILL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9359,'25435','Fernie','FERNIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9360,'32812','Fernley','FERNLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9361,'26218','Ferntree Gully','FERNTREE GULLY',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9362,'15929','Ferragudo','FERRAGUDO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9363,'12719','Ferrara','FERRARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9364,'25158','Ferreira','FERREIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9365,'2899','Ferrerias','FERRERIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9366,'5645','Ferrieres','FERRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9367,'41532','Ferrieres-en-brie','FERRIERES-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9368,'31329','Ferrisburg','FERRISBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9369,'3663','Ferrol','FERROL',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9370,'33330','Ferron','FERRON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9371,'37133','Ferry Hill','FERRY HILL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9372,'10946','Ferrycarrig','FERRYCARRIG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9373,'8082','Ferryhill','FERRYHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9374,'11924','Fertilia','FERTILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9375,'13695','Fes','FES',NULL,'','Morocco','',0,0,148,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9376,'13731','Fesdu Island','FESDU ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9377,'28056','Fessenden','FESSENDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9378,'27639','Festus','FESTUS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9379,'23200','Fetan','FETAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9380,'17185','Fethiye','FETHIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9381,'37134','Fethiye-oludeniz','FETHIYE-OLUDENIZ',NULL,'','TURKEY','',0,0,222,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9382,'7070','Fetlar','FETLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9383,'22749','Feuchtwangen','FEUCHTWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9384,'6298','Feuquieres','FEUQUIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9385,'23201','Feusisberg','FEUSISBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9386,'38496','Fey','FEY',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9387,'5125','Feytiat','FEYTIAT',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9388,'5050','Feyzin','FEYZIN',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9389,'36386','Fez','FEZ',NULL,'','Morocco','Fez',0,0,148,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9390,'38012','Fianarantsoa','FIANARANTSOA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9391,'39441','Fibre','FIBRE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9392,'37477','Ficksburg','FICKSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9393,'39227','Fidenza','FIDENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9394,'11210','Fiè Allo Sciliar','FIÈ ALLO SCILIAR',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9395,'24452','Fieberbrunn','FIEBERBRUNN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9396,'42648','Fier','FIER',NULL,'','Albania','',0,0,2,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9397,'38759','Fiera Di Primiero','FIERA DI PRIMIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9398,'23202','Fiesch','FIESCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9399,'11927','Fiesole','FIESOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9400,'13062','Fiesso D\'artico','FIESSO D\'ARTICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9401,'31501','Fife','FIFE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9402,'7071','Fife','FIFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9403,'8083','Fifield','FIFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9404,'41531','Figanieres','FIGANIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9405,'4249','Figari','FIGARI',NULL,'','France','',0,0,76,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9406,'4983','Figeac','FIGEAC',NULL,'','France','',0,0,76,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9407,'35525','Figline','FIGLINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9408,'15903','Figueira Da Foz','FIGUEIRA DA FOZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9409,'42432','Figueras','FIGUERAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9410,'2947','Figueres','FIGUERES',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9411,'2629','Figueretas','FIGUERETAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9412,'4055','Fiji','FIJI',NULL,'','Fiji','',0,0,74,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9413,'140','Filderstadt','FILDERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9414,'36051','Filderstadt-bonlande','FILDERSTADT-BONLANDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9415,'39007','Filignano','FILIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9416,'16786','Filipstad','FILIPSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9417,'33331','Fillmore','FILLMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9418,'33332','Filmore Area','FILMORE AREA',NULL,'','United States','',0,0,231,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9419,'2259','Filskov','FILSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9420,'8084','Filton','FILTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9421,'23203','Filzbach','FILZBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9422,'27164','Filzmoos','FILZMOOS',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9423,'11928','Finale Ligure','FINALE LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9424,'18482','Financial District - Ferry Building','FINANCIAL DISTRICT - FERRY BUILDING',NULL,'','United States','',0,0,231,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9425,'3850','Fincha','FINCHA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9426,'37729','Finchley','FINCHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9427,'13658','Findel','FINDEL',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9428,'20546','Findlay','FINDLAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9429,'28783','Findley Lake','FINDLEY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9430,'8085','Finedon','FINEDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9431,'3756','Finestrat','FINESTRAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9432,'43706','Fingal','FINGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9433,'28784','Finger Lakes','FINGER LAKES',NULL,'','United States','',0,0,231,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9434,'10773','Finglas','FINGLAS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9435,'38059','Finikas','FINIKAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9436,'17254','Finike','FINIKE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9437,'38497','Finiki','FINIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9438,'43213','Finisterre','FINISTERRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9439,'24453','Finkenberg','FINKENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9440,'769','Finkenkrug Sud','FINKENKRUG SUD',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9441,'40022','Finkenstein','FINKENSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9442,'27387','Finlayson','FINLAYSON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9443,'29347','Finneytown','FINNEYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9444,'22750','Finningen','FINNINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9445,'15013','Finnsnes','FINNSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9446,'11211','Fino Del Monte','FINO DEL MONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9447,'16765','Finspang','FINSPANG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9448,'14797','Finstadjordet','FINSTADJORDET',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9449,'42457','Finsterwalde','FINSTERWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9450,'43940','Fintas','FINTAS',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9451,'41169','Fintry','FINTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9452,'11929','Fiorano Modenese','FIORANO MODENESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9453,'42810','Fiordland','FIORDLAND',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9454,'35526','Fiorenzuola','FIORENZUOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9455,'43415','Fira','FIRA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9456,'18483','Firebaugh','FIREBAUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9457,'1560','Firenze','FIRENZE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9458,'11931','Firenzuola','FIRENZUOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9459,'43416','Firostefani','FIROSTEFANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9460,'43744','Firozabad','FIROZABAD',NULL,'','India','',0,0,101,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9461,'26988','Fischamend','FISCHAMEND',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9462,'22751','Fischen','FISCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9463,'42672','Fischerbach','FISCHERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9464,'22534','Fischingen','FISCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9465,'18484','Fish Camp','FISH CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9466,'32382','Fish Hoek','FISH HOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9467,'14400','Fish River Canyon','FISH RIVER CANYON',NULL,'','Namibia','',0,0,151,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9468,'19359','Fisher Island','FISHER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9469,'20873','Fishers','FISHERS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9470,'31107','Fishersville','FISHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9471,'34493','Fisherville','FISHERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9472,'8086','Fishguard','FISHGUARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9473,'28787','Fishkill','FISHKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9474,'9465','Fiskardo','FISKARDO',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9475,'21373','Fiskdale','FISKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9476,'24454','Fiss','FISS',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9477,'21374','Fitchburg','FITCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9478,'16158','Fitii','FITII',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9479,'14897','Fitjar','FITJAR',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9480,'19800','Fitzgerald','FITZGERALD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9481,'8087','Fitzhead','FITZHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9482,'26366','Fitzroy','FITZROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9483,'32697','Fitzwilliam','FITZWILLIAM',NULL,'','United States','',0,0,231,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9484,'11932','Fiuggi','FIUGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9485,'38545','Fiumefreddo Di Sicilia','FIUMEFREDDO DI SICILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9486,'11933','Fiumicino','FIUMICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9487,'16946','Five Cays','FIVE CAYS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9488,'19801','Five Points','FIVE POINTS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9489,'8088','Fivemiletown','FIVEMILETOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9490,'37434','Fivizzano','FIVIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9491,'2237','Fjerritslev','FJERRITSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9492,'44022','Flaa','FLAA',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9493,'5461','Flacey','FLACEY',NULL,'','France','',0,0,76,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9494,'27165','Flachau','FLACHAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9495,'38644','Fladnitz An Der Teichalm','FLADNITZ AN DER TEICHALM',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9496,'32097','Flagg Ranch','FLAGG RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9497,'19360','Flagler Beach','FLAGLER BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9498,'18130','Flagstaff','FLAGSTAFF',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9499,'6817','Flaine','FLAINE',NULL,'','France','',0,0,76,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9500,'14975','Flam','FLAM',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9501,'5394','Flamanville','FLAMANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9502,'7072','Flamborough','FLAMBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9503,'8089','Flamstead','FLAMSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9504,'17628','Flat','FLAT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9505,'28788','Flatbush','FLATBUSH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9506,'11021','Flateyri','FLATEYRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9507,'30617','Flatonia','FLATONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9508,'37467','Flayosc','FLAYOSC',NULL,'','France','',0,0,76,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9509,'28789','Fleischmanns','FLEISCHMANNS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9510,'15020','Flekkefjord','FLEKKEFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9511,'19361','Fleming Key','FLEMING KEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9512,'28271','Flemington','FLEMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9513,'26903','Flemington','FLEMINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9514,'16774','Flen','FLEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9515,'707','Flensburg','FLENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9516,'39293','Flesherton','FLESHERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9517,'33853','Fletcher','FLETCHER',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9518,'6084','Fleurance','FLEURANCE',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9519,'24661','Fleurus','FLEURUS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9520,'5462','Fleurville','FLEURVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9521,'38850','Fleury','FLEURY',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9522,'4714','Fleury-merogis','FLEURY-MEROGIS',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9523,'4250','Fleville Devant Nancy','FLEVILLE DEVANT NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9524,'14463','Flevoland','FLEVOLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9525,'41407','Flic En Flac','FLIC EN FLAC',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9527,'39617','Flichity','FLICHITY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9528,'23204','Flims','FLIMS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9529,'25594','Flin Flon','FLIN FLON',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9530,'26405','Flinders','FLINDERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9531,'22069','Flint','FLINT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:14','1900-01-01 00:00:00',1,0,1),(9532,'8091','Flint','FLINT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:14','1900-01-01 00:00:00',1,0,1),(9533,'21695','Flintstone','FLINTSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9534,'43758','Flirsch','FLIRSCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9535,'8092','Flitwick','FLITWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9536,'38878','Floda','FLODA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9537,'37213','Flogita','FLOGITA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9538,'20547','Flora','FLORA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9539,'5916','Florac','FLORAC',NULL,'','France','',0,0,76,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9540,'28790','Floral Park','FLORAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9541,'7073','Flore','FLORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9542,'40462','Floreat','FLOREAT',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9543,'21375','Florence','FLORENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9544,'11213','Florence','FLORENCE',NULL,'','Italy','Florence',0,0,107,'2016-10-17 10:55:18','1900-01-01 00:00:00',1,0,1),(9545,'35474','Florence-borgo','FLORENCE-BORGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9546,'35482','Florence-calenzano','FLORENCE-CALENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9547,'35518','Florence-donnini','FLORENCE-DONNINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9548,'35620','Florence-pratolino','FLORENCE-PRATOLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9549,'26071','Florencio Varela','FLORENCIO VARELA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9550,'24697','Florenville','FLORENVILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9551,'1759','Flores','FLORES',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9552,'9871','Flores','FLORES',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9553,'11934','Floresta','FLORESTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9554,'30619','Floresville','FLORESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9555,'28272','Florham Park','FLORHAM PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9556,'25017','Florianopolis','FLORIANOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9557,'32561','Florida','FLORIDA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9558,'17532','Florida','FLORIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9559,'19362','Florida City','FLORIDA CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9560,'24531','Floridsdorf','FLORIDSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9561,'21196','Florien','FLORIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9562,'9466','Florina','FLORINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9563,'27641','Florissant','FLORISSANT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9564,'14976','Floro','FLORO',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9565,'421','Florsheim','FLORSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9566,'20548','Flossmoor','FLOSSMOOR',NULL,'','United States','',0,0,231,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9567,'7074','Flotta Isle','FLOTTA ISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9568,'5917','Floure','FLOURE',NULL,'','France','',0,0,76,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9569,'19802','Flowery Branch','FLOWERY BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9570,'27852','Flowood','FLOWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9571,'19803','Floyd','FLOYD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9572,'10976','Fludir','FLUDIR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9573,'35987','Fluelen','FLUELEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9575,'23467','Flüeli-ranft','FLÜELI-RANFT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9576,'23020','Flühli','FLÜHLI',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9577,'12821','Fluminimaggiore','FLUMINIMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9578,'23021','Flumserberg','FLUMSERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9579,'23022','Fluntern','FLUNTERN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9580,'28791','Flushing','FLUSHING',NULL,'','United States','',0,0,231,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9581,'13679','Fnideq','FNIDEQ',NULL,'','Morocco','',0,0,148,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9582,'39166','Fobello','FOBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9583,'17316','Foca','FOCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9584,'11935','Foce','FOCE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9585,'625','Föckelberg','FÖCKELBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9586,'36623','Focsani','FOCSANI',NULL,'','Romania','',0,0,179,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9587,'9467','Fodele','FODELE',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9588,'13659','Foetz','FOETZ',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9589,'29942','Fogelsville','FOGELSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9590,'12805','Foggia','FOGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9591,'40233','Fogliano Redipuglia','FOGLIANO REDIPUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9592,'37953','Foiano Della Chiana','FOIANO DELLA CHIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9593,'6085','Foix','FOIX',NULL,'','France','',0,0,76,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9594,'9652','Folegandros','FOLEGANDROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9595,'17876','Foley','FOLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9596,'11936','Folgaria','FOLGARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9597,'13055','Folgarida','FOLGARIDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9598,'11937','Folignano','FOLIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9599,'12868','Foligno','FOLIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9600,'9266','Folkestone','FOLKESTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9601,'37137','Folkestone','FOLKESTONE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9602,'19804','Folkston','FOLKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9603,'12889','Follina','FOLLINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9604,'40188','Follonica','FOLLONICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9605,'30325','Folly Beach','FOLLY BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9606,'18485','Folsom','FOLSOM',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9607,'37569','Fond Bay','FOND BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9608,'31752','Fond Du Lac','FOND DU LAC',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9609,'22943','Fond Du Lac','FOND DU LAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9610,'39017','Fondi','FONDI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9611,'5849','Fontainebleau','FONTAINEBLEAU',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9612,'32398','Fontainebleau','FONTAINEBLEAU',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9613,'39343','Fontaine-de-vaucluse','FONTAINE-DE-VAUCLUSE',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9614,'6165','Fontaine-notre-dame','FONTAINE-NOTRE-DAME',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9615,'31753','Fontana','FONTANA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9616,'39196','Fontanellato','FONTANELLATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9617,'5314','Fontanges','FONTANGES',NULL,'','France','',0,0,76,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9618,'6626','Fontanil-cornillon','FONTANIL-CORNILLON',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9619,'5918','Fontans','FONTANS',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9620,'4251','Fontcouverte-la Toussuire','FONTCOUVERTE-LA TOUSSUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9621,'11215','Fonte Blanda','FONTE BLANDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9622,'35528','Fonteblanda','FONTEBLANDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9623,'4252','Fontenai Sur Orne','FONTENAI SUR ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9624,'5395','Fontenailles','FONTENAILLES',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9625,'4253','Fontenay Le Comte','FONTENAY LE COMTE',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9626,'5396','Fontenay-sous-bois','FONTENAY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9627,'5850','Fontenay-tresigny','FONTENAY-TRESIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9628,'1619','Fontevraud','FONTEVRAUD',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9629,'4987','Fontevraud-l\'abbaye','FONTEVRAUD-L\'ABBAYE',NULL,'','France','',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9630,'34494','Fonthill','FONTHILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9631,'24133','Fontibon','FONTIBON',NULL,'','Colombia','',0,0,49,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9632,'11938','Fontignano','FONTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9633,'5919','Fontjoncouse','FONTJONCOUSE',NULL,'','France','',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9634,'6428','Fontvieille','FONTVIEILLE',NULL,'','France','Fontvieille',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9635,'9284','Fontwell','FONTWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9636,'38770','Fonz','FONZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9637,'18487','Foothill Ranch','FOOTHILL RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9638,'26508','Footscray','FOOTSCRAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9639,'6028','Forbach','FORBACH',NULL,'','France','',0,0,76,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9640,'34166','Forbes','FORBES',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9641,'39443','Forcalquier','FORCALQUIER',NULL,'','France','',0,0,76,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9642,'41331','Forcarei','FORCAREI',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9643,'11939','Forcella','FORCELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9644,'22535','Forch','FORCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9645,'38818','Forch','FORCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9646,'22536','Forchheim','FORCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9647,'14977','Forde','FORDE',NULL,'','Norway','Forde',0,0,164,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9648,'8093','Fordingbridge','FORDINGBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9649,'40512','Fordongianus','FORDONGIANUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9650,'18015','Fordyce','FORDYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:36','1900-01-01 00:00:00',1,0,1),(9651,'27853','Forest','FOREST',NULL,'','United States','',0,0,231,'2016-10-17 10:55:36','1900-01-01 00:00:00',1,0,1),(9652,'26367','Forest Hill','FOREST HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:37','1900-01-01 00:00:00',1,0,1),(9653,'25308','Forest Lawn','FOREST LAWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9654,'7075','Forest Of Dean','FOREST OF DEAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9655,'28792','Forestburg','FORESTBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9656,'28793','Forestburgh','FORESTBURGH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9657,'25991','Forestville','FORESTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9658,'18488','Forestville','FORESTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9659,'34167','Forestville','FORESTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9660,'8094','Forfar','FORFAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9661,'5811','Forges-les-eaux','FORGES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9662,'39194','Forino','FORINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9663,'41031','Forio','FORIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9664,'1561','Foriod Ischia','FORIOD ISCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9665,'27642','Foristell','FORISTELL',NULL,'','United States','',0,0,231,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9666,'28274','Forked River','FORKED RIVER',NULL,'','United States','',0,0,231,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9667,'31502','Forks','FORKS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9668,'12720','Forli','FORLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9669,'8095','Formby','FORMBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9670,'39021','Formello','FORMELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9671,'2900','Formentera','FORMENTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9672,'36115','Formentera-es Pujols','FORMENTERA-ES PUJOLS',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9673,'12763','Formia','FORMIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9674,'42640','Formiga','FORMIGA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9675,'2631','Formigal','FORMIGAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9676,'26119','Formosa','FORMOSA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9677,'37737','Fornalutx','FORNALUTX',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9678,'39400','Forncett End','FORNCETT END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9679,'14844','Fornebu','FORNEBU',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9680,'2901','Fornells','FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9681,'30621','Forney','FORNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9682,'8096','Forres','FORRES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9683,'26630','Forrest','FORREST',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9684,'18016','Forrest City','FORREST CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9685,'34168','Forresters Beach','FORRESTERS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9686,'42911','Forsayth','FORSAYTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9687,'3962','Forsby','FORSBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9688,'3911','Forssa','FORSSA',NULL,'','Finland','',0,0,75,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9689,'34169','Forster','FORSTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9690,'27970','Forsyth','FORSYTH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9691,'34495','Fort Albany','FORT ALBANY',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:45','1900-01-01 00:00:00',1,0,1),(9692,'9845','Fort Jeudy','FORT JEUDY',NULL,'','Grenada','',0,0,88,'2016-10-17 10:55:48','1900-01-01 00:00:00',1,0,1),(9693,'982','Fort William','FORT WILLIAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9694,'24962','Fortaleza','FORTALEZA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9695,'25992','Fort-coulonge','FORT-COULONGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9696,'14235','Fort-de-france','FORT-DE-FRANCE',NULL,'','Martinique','',0,0,137,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9697,'25655','Forteau','FORTEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9698,'40615','Fortià','FORTIÀ',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9699,'14118','Fortin De Las Flores','FORTIN DE LAS FLORES',NULL,'','Mexico','',0,0,141,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9700,'40138','Fortitude Valley','FORTITUDE VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9701,'6299','Fort-mahon-plage','FORT-MAHON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9702,'18490','Fortuna','FORTUNA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9703,'24196','Fortuna','FORTUNA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9704,'14967','Forus','FORUS',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9705,'11942','Forza D\'agro','FORZA D\'AGRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9706,'23959','Foshan','FOSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9707,'12890','Fossalta','FOSSALTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9708,'11943','Fossano','FOSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9709,'4715','Fosses','FOSSES',NULL,'','France','',0,0,76,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9710,'11217','Fosso','FOSSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9711,'27389','Fosston','FOSSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9712,'6429','Fos-sur-mer','FOS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9713,'26904','Foster','FOSTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9714,'18491','Foster City','FOSTER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9715,'29350','Fostoria','FOSTORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9716,'10735','Fota','FOTA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9717,'41477','Foucheres','FOUCHERES',NULL,'','France','',0,0,76,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9718,'6846','Fougamou','FOUGAMOU',NULL,'','Gabon','',0,0,80,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9719,'5541','Fougeres','FOUGERES',NULL,'','France','',0,0,76,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9720,'33436','Fountain','FOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9721,'6166','Fouquieres Les Bethune','FOUQUIERES LES BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9722,'44021','Fouquieres-les-bethune','FOUQUIERES-LES-BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9723,'8098','Four Marks','FOUR MARKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9724,'4','Four Mile Beach','FOUR MILE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9725,'37529','Fouras','FOURAS',NULL,'','France','',0,0,76,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9726,'6086','Fources','FOURCES',NULL,'','France','',0,0,76,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9727,'6167','Fourmies','FOURMIES',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9728,'6627','Fourneaux','FOURNEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9729,'39934','Fourques','FOURQUES',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9730,'32399','Fourways','FOURWAYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9731,'8099','Fowey','FOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9732,'22071','Fowlerville','FOWLERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9733,'25313','Fox Creek','FOX CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9734,'15070','Fox Glacier','FOX GLACIER',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9735,'20551','Fox Lake','FOX LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9736,'21376','Foxboro','FOXBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9737,'33858','Foxfire','FOXFIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9738,'9285','Foxhill','FOXHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9739,'8100','Foyers','FOYERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9740,'10896','Foynes','FOYNES',NULL,'','Ireland','',0,0,105,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9741,'3544','Foz','FOZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9742,'24978','Foz Do Iguacu','FOZ DO IGUACU',NULL,'','Brazil','Foz Do Iguacu',0,0,30,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9743,'39528','Frabosa Sottana','FRABOSA SOTTANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9744,'11944','Fraccano','FRACCANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9745,'29944','Frackville','FRACKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9746,'3328','Fraga','FRAGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9747,'21377','Framingham','FRAMINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9748,'8101','Framlingham','FRAMLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9749,'37527','Framura','FRAMURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9750,'25039','Franca','FRANCA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9751,'43471','Francavilla','FRANCAVILLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9752,'32698','Francestown','FRANCESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9753,'6842','Franceville','FRANCEVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9754,'25257','Francistown','FRANCISTOWN',NULL,'','Botswana','',0,0,28,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9755,'141','Franconia','FRANCONIA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9756,'32699','Franconia','FRANCONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9757,'4716','Franconville','FRANCONVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9758,'5775','Francourt','FRANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9759,'14510','Franeker','FRANEKER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9760,'1878','Frankenberg','FRANKENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9761,'27129','Frankenmarkt','FRANKENMARKT',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9762,'22072','Frankenmuth','FRANKENMUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9763,'22752','Frankenthal','FRANKENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9764,'22753','Frankfurt','FRANKFURT',NULL,'','Germany','Frankfurt',0,0,83,'2016-10-17 10:56:07','1900-01-01 00:00:00',1,0,1),(9765,'21868','Franklin','FRANKLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:08','1900-01-01 00:00:00',1,0,1),(9766,'38245','Franklinton','FRANKLINTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:11','1900-01-01 00:00:00',1,0,1),(9767,'26905','Frankston','FRANKSTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9768,'15190','Frankton','FRANKTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9769,'5090','Franqueville St Pierre','FRANQUEVILLE ST PIERRE',NULL,'','France','',0,0,76,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9770,'41475','Franqueville-saint-pierre','FRANQUEVILLE-SAINT-PIERRE',NULL,'','France','',0,0,76,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9771,'32383','Franschhoek','FRANSCHHOEK',NULL,'','South Africa','Franschhoek',0,0,195,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9772,'42831','Franschoek','FRANSCHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9773,'24308','Frantiskovy Lazne','FRANTISKOVY LAZNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9774,'36505','Franz Josef','FRANZ JOSEF',NULL,'','New Zealand','Franz Josef',0,0,157,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9775,'145','Franz Josef Strauss International Airport (Muc)','FRANZ JOSEF STRAUSS INTERNATIONAL AIRPORT (MUC)',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9776,'11947','Frascati','FRASCATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9777,'22754','Frasdorf','FRASDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9778,'33437','Fraser','FRASER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9779,'26219','Fraser Coast','FRASER COAST',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9780,'25439','Fraser Lake','FRASER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9782,'11948','Fratta Todina','FRATTA TODINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9783,'40006','Frauenau','FRAUENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9784,'23206','Frauenfeld','FRAUENFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9785,'40683','Frauenkirchen','FRAUENKIRCHEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9786,'40696','Frauenstein','FRAUENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9787,'22537','Frauental','FRAUENTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9788,'17538','Fray Bentos','FRAY BENTOS',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9789,'29946','Frazer','FRAZER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9790,'27360','Frechen','FRECHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9791,'2170','Fredensborg','FREDENSBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9792,'2318','Fredericia','FREDERICIA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9793,'21697','Frederick','FREDERICK',NULL,'','United States','',0,0,231,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9794,'31112','Fredericksburg','FREDERICKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:16','1900-01-01 00:00:00',1,0,1),(9795,'27644','Fredericktown','FREDERICKTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:16','1900-01-01 00:00:00',1,0,1),(9796,'34400','Fredericton','FREDERICTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9797,'2230','Frederiksberg','FREDERIKSBERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9798,'2121','Frederiksborg','FREDERIKSBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9799,'9849','Frederikshaab','FREDERIKSHAAB',NULL,'','Greenland','',0,0,87,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9800,'2238','Frederikshavn','FREDERIKSHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9801,'896','Frederiksted','FREDERIKSTED',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9802,'2171','Frederiksvaerk','FREDERIKSVAERK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9803,'770','Fredersdorf','FREDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9804,'16668','Fredhall','FREDHALL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9805,'28796','Fredonia','FREDONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9806,'16740','Fredriksberg','FREDRIKSBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9807,'14960','Fredrikstad','FREDRIKSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9808,'1189','Free State-bloemfontein','FREE STATE-BLOEMFONTEIN',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9809,'18493','Freedom','FREEDOM',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9810,'28797','Freehold','FREEHOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9811,'31504','Freeland','FREELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9812,'33011','Freeman','FREEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9813,'21869','Freeport','FREEPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9814,'24870','Freeport','FREEPORT',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9815,'30631','Freer','FREER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9816,'16564','Freetown','FREETOWN',NULL,'','Sierra Leone','',0,0,189,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9817,'26169','Freetown','FREETOWN',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9818,'16917','Fregate Island','FREGATE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9819,'11949','Fregene','FREGENE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9820,'4254','Frehel','FREHEL',NULL,'','France','',0,0,76,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9821,'1879','Freiberg','FREIBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9822,'27209','Freiburg','FREIBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9823,'146','Freidorf','FREIDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9824,'11218','Freienfeld','FREIENFELD',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9825,'44132','Freiensteinau','FREIENSTEINAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9826,'147','Freilassing','FREILASSING',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9827,'41721','Freinberg','FREINBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9828,'681','Freisen','FREISEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9829,'22755','Freising','FREISING',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9830,'6029','Freistroff','FREISTROFF',NULL,'','France','',0,0,76,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9831,'1880','Freital','FREITAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9832,'39353','Freixenet De Riner','FREIXENET DE RINER',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9833,'6430','Frejus','FREJUS',NULL,'','France','',0,0,76,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9834,'18494','Fremont','FREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9835,'1227','French Alps','FRENCH ALPS',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9836,'9885','French Guiana','FRENCH GUIANA',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9837,'20882','French Lick','FRENCH LICK',NULL,'','United States','',0,0,231,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9838,'25817','French River','FRENCH RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9839,'28280','Frenchtown','FRENCHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9840,'27210','Freren','FREREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9841,'24829','Fresh Creek','FRESH CREEK',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9842,'7077','Freshwater Bay','FRESHWATER BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9843,'3452','Fresnadillo','FRESNADILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9844,'32449','Fresnave','FRESNAVE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9845,'4717','Fresnes','FRESNES',NULL,'','France','',0,0,76,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9846,'6168','Fresnes-les-montauban','FRESNES-LES-MONTAUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9847,'13884','Fresnillo','FRESNILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9848,'18495','Fresno','FRESNO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9849,'36899','Fresno-chandler','FRESNO-CHANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9850,'40791','Freudenberg','FREUDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9851,'22538','Freudenstadt','FREUDENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9852,'1932','Freyburg','FREYBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9853,'4255','Freyming-merlebach','FREYMING-MERLEBACH',NULL,'','France','',0,0,76,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9854,'23207','Fribourg','FRIBOURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9855,'31505','Friday Harbor','FRIDAY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9856,'27391','Fridley','FRIDLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9857,'38315','Friedberg','FRIEDBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9858,'148','Friedebach','FRIEDEBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9859,'27361','Friedenau','FRIEDENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9860,'422','Friedewald','FRIEDEWALD',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9861,'1970','Friedrichroda','FRIEDRICHRODA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9862,'38076','Friedrichsbrunn','FRIEDRICHSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9863,'22539','Friedrichsdorf','FRIEDRICHSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9864,'771','Friedrichsfelde','FRIEDRICHSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9865,'22540','Friedrichshafen','FRIEDRICHSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9866,'27211','Friedrichshagen','FRIEDRICHSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9867,'835','Friedrichsruhe','FRIEDRICHSRUHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9868,'1933','Friedrichstadt','FRIEDRICHSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9869,'21870','Friendship','FRIENDSHIP',NULL,'','United States','',0,0,231,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9870,'30632','Friendswood','FRIENDSWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9871,'14464','Friesland','FRIESLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9872,'13474','Frigate Bay','FRIGATE BAY',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9873,'3231','Frigiliana','FRIGILIANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9874,'8102','Frinton-on-sea','FRINTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9875,'3545','Friol','FRIOL',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9876,'30633','Friona','FRIONA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9877,'30327','Fripp Island','FRIPP ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9878,'30634','Frisco','FRISCO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9879,'6300','Friville-escarbotin','FRIVILLE-ESCARBOTIN',NULL,'','France','',0,0,76,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9880,'8103','Frizington','FRIZINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9881,'37461','Frodsham','FRODSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9882,'30328','Frogmore','FROGMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9883,'22541','Frohnau','FROHNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9884,'8104','Frome','FROME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9885,'31113','Front Royal','FRONT ROYAL',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9886,'27645','Frontenac','FRONTENAC',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9887,'13882','Frontera Corozal','FRONTERA COROZAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9888,'9878','Fronteras','FRONTERAS',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9889,'5920','Frontignan','FRONTIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9890,'5730','Fronville','FRONVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9891,'11950','Frosinone','FROSINONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9892,'37852','Frosolone','FROSOLONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9893,'21699','Frostburg','FROSTBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9894,'6030','Frouard','FROUARD',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9895,'33440','Fruita','FRUITA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9896,'22075','Fruitport','FRUITPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9897,'23208','Frutigen','FRUTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9898,'36007','Frutillar','FRUTILLAR',NULL,'','Chile','',0,0,45,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9899,'41869','Frydek Mistek','FRYDEK MISTEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9900,'39587','Frýdek-místek','FRÝDEK-MÍSTEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9901,'21871','Fryeburg','FRYEBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9902,'24309','Frymburk','FRYMBURK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9903,'39132','Ft. Dauphin','FT. DAUPHIN',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9904,'25767','Ft. Mcpherson','FT. MCPHERSON',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9905,'42307','Ftan','FTAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9906,'38176','Ftelia','FTELIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9907,'40515','Fucecchio','FUCECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9908,'13229','Fuchu','FUCHU',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9909,'23768','Fuding','FUDING',NULL,'','China','',0,0,46,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9910,'42890','Fuefuki','FUEFUKI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9911,'43759','Fuegenberg','FUEGENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9912,'43115','Fuencaliente','FUENCALIENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9913,'2991','Fuencarral','FUENCARRAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9914,'40452','Fuenfseen','FUENFSEEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9915,'2992','Fuengirola','FUENGIROLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9916,'2993','Fuenlabrada','FUENLABRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9917,'3032','Fuensanta','FUENSANTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9918,'36120','Fuente De','FUENTE DE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9919,'36119','Fuenteheridos','FUENTEHERIDOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9920,'2632','Fuentelmonge','FUENTELMONGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9921,'38281','Fuentenava De Jábaga','FUENTENAVA DE JÁBAGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9922,'41499','Fuenterrabia- Hondarribia','FUENTERRABIA- HONDARRIBIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9923,'3636','Fuentes De Leon','FUENTES DE LEON',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9924,'3329','Fuentespalda','FUENTESPALDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9925,'42410','Fuerigen','FUERIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9926,'43760','Fuerstenfeld','FUERSTENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9927,'149','Fuerstenwalde','FUERSTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9928,'15358','Fuerte Amador','FUERTE AMADOR',NULL,'','Panama','',0,0,169,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9929,'2469','Fuerteventura','FUERTEVENTURA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9930,'34987','Fuerteventura-antigu','FUERTEVENTURA-ANTIGU',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9931,'35013','Fuerteventura-caleta','FUERTEVENTURA-CALETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9932,'35008','Fuerteventura-costa','FUERTEVENTURA-COSTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9933,'36134','Fuerteventura-jandia','FUERTEVENTURA-JANDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9934,'36155','Fuerteventura-oliva','FUERTEVENTURA-OLIVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9935,'150','Fuerth','FUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9936,'2080','Fuessen','FUESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9937,'24455','Fugen','FUGEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9938,'23993','Fujiang','FUJIANG',NULL,'','China','',0,0,46,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9939,'13130','Fujiidera','FUJIIDERA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9940,'38129','Fujikawaguchiko','FUJIKAWAGUCHIKO',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9941,'42567','Fujisawa','FUJISAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9942,'42688','Fujiyama','FUJIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9943,'13131','Fujiyoshida','FUJIYOSHIDA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9944,'13230','Fukue','FUKUE',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9945,'13231','Fukui','FUKUI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9946,'13232','Fukuoka','FUKUOKA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9947,'13233','Fukushima','FUKUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9948,'13234','Fukuyama','FUKUYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9949,'423','Fulda','FULDA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9950,'8105','Fulford','FULFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9951,'8106','Fulham','FULHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9952,'26799','Fullarton','FULLARTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9953,'18497','Fullerton','FULLERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9954,'24456','Fulpmes','FULPMES',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9955,'20555','Fulton','FULTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9956,'17880','Fultondale','FULTONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:41','1900-01-01 00:00:00',1,0,1),(9957,'28800','Fultonville','FULTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9958,'40053','Fumel','FUMEL',NULL,'','France','',0,0,76,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9959,'39620','Fumone','FUMONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9960,'13235','Funabashi','FUNABASHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9961,'17375','Funafuti','FUNAFUTI',NULL,'','Tuvalu','',0,0,224,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9962,'44255','Funamadhua Island','FUNAMADHUA ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9963,'16002','Funchal','FUNCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9964,'16104','Fundao','FUNDAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9965,'24532','Funfhaus','FUNFHAUS',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9966,'10011','Funtana','FUNTANA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9967,'33861','Fuquay-varina','FUQUAY-VARINA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9968,'13732','Furanafushi','FURANAFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9969,'13132','Furano','FURANO',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9970,'10866','Furbo','FURBO',NULL,'','Ireland','',0,0,105,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9971,'38131','Furci Siculo','FURCI SICULO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9972,'11220','Furnari','FURNARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9973,'16092','Furnas','FURNAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9974,'14916','Furnes','FURNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9975,'11221','Furore','FURORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9976,'22756','Furstenfeldbruck','FURSTENFELDBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9977,'41025','Furth-by','FURTH-BY',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9978,'22542','Furtwangen','FURTWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9979,'11951','Fuscaldo','FUSCALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9980,'40063','Fusch An Der Grossglocknerstrasse','FUSCH AN DER GROSSGLOCKNERSTRASSE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9981,'27166','Fuschl Am See','FUSCHL AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9982,'26989','Fuschlsee','FUSCHLSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9983,'13236','Fushimi','FUSHIMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9984,'12891','Fusina','FUSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9985,'36054','Fussen','FUSSEN',NULL,'','Germany','Fussen',0,0,83,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9986,'36062','Fussen-hohenschwanga','FUSSEN-HOHENSCHWANGA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9987,'23581','Futian','FUTIAN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9988,'32314','Futuna Island','FUTUNA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9989,'42105','Fuveau','FUVEAU',NULL,'','France','',0,0,76,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9990,'34862','Fuyang','FUYANG',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9991,'23783','Fuyuan','FUYUAN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9992,'23838','Fuyun','FUYUN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9993,'35339','Fuzesgyarmat','FUZESGYARMAT',NULL,'','Hungary','',0,0,99,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9994,'23726','Fuzhou','FUZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9995,'2122','Fyn','FYN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9996,'2291','Fynshav','FYNSHAV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9997,'17175','Gabes','GABES',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9998,'17142','Gabès','GABÈS',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9999,'40656','Gabiano','GABIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10000,'11222','Gabicce Mare','GABICCE MARE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10001,'25258','Gaborone','GABORONE',NULL,'','Botswana','',0,0,28,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10002,'25440','Gabriola Island','GABRIOLA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10003,'24802','Gabrovo','GABROVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10004,'2319','Gadbjerg','GADBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10005,'836','Gadebusch','GADEBUSCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10006,'17881','Gadsden','GADSDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10007,'44133','Gaegelow','GAEGELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10008,'12764','Gaeta','GAETA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10009,'30329','Gaffney','GAFFNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10010,'32907','Gage','GAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10011,'5187','Gageac-et-rouillac','GAGEAC-ET-ROUILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10012,'43192','Gagelow','GAGELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10013,'36265','Gages','GAGES',NULL,'','France','',0,0,76,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10014,'37495','Gaggi','GAGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10015,'11952','Gagliano Del Capo','GAGLIANO DEL CAPO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10016,'29356','Gahanna','GAHANNA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10017,'38780','Gai','GAI',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10018,'6087','Gaillac','GAILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10019,'4718','Gaillon','GAILLON',NULL,'','France','',0,0,76,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10020,'30636','Gainesville','GAINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10021,'8107','Gainsborough','GAINSBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10022,'38890','Gaiola','GAIOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10023,'12970','Gaiole In Chianti','GAIOLE IN CHIANTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10024,'9774','Gaios','GAIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10025,'4256','Gairaut','GAIRAUT',NULL,'','France','',0,0,76,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10026,'8108','Gairloch','GAIRLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10027,'11953','Gais','GAIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10028,'23209','Gais','GAIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10029,'23024','Gaiserwald','GAISERWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10030,'21700','Gaithersburg','GAITHERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10031,'10517','Gajner','GAJNER',NULL,'','India','',0,0,101,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10032,'38228','Galanta','GALANTA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10033,'36124','Galapagar','GALAPAGAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10034,'42700','Galapagos Island','GALAPAGOS ISLAND',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10035,'40773','Galar','GALAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10036,'8109','Galashiels','GALASHIELS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10037,'36624','Galati','GALATI',NULL,'','Romania','',0,0,179,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10038,'12986','Galatina','GALATINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10039,'9653','Galatsion','GALATSION',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10040,'31115','Galax','GALAX',NULL,'','United States','',0,0,231,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10041,'9468','Galaxidhion','GALAXIDHION',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10042,'42511','Galaxidi','GALAXIDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10043,'42074','Galdeano','GALDEANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10044,'3546','Galdo','GALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10045,'10225','Galeia','GALEIA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10046,'21701','Galena','GALENA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10047,'41388','Galera','GALERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10048,'20558','Galesburg','GALESBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10049,'29947','Galeton','GALETON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10050,'24152','Galgmanca','GALGMANCA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10051,'42344','Galia Aquitania','GALIA AQUITANIA',NULL,'','France','',0,0,76,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10052,'25441','Galiano Island','GALIANO ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10053,'11038','Galilee','GALILEE',NULL,'','Israel','',0,0,106,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10054,'39865','Galindo Y Perahuy','GALINDO Y PERAHUY',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10055,'29357','Galion','GALION',NULL,'','United States','',0,0,231,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10056,'9654','Galissas','GALISSAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10057,'28527','Galisteo','GALISTEO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10058,'11954','Gallarate','GALLARATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10059,'4257','Gallargues-le-montueux','GALLARGUES-LE-MONTUEUX',NULL,'','France','',0,0,76,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10060,'33148','Gallatin','GALLATIN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10061,'21199','Galliano','GALLIANO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10062,'11955','Gallicano','GALLICANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10063,'38217','Gallio','GALLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10064,'12806','Gallipoli','GALLIPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10065,'29358','Gallipolis','GALLIPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10066,'16750','Gallivare','GALLIVARE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10067,'11223','Gallo Matese','GALLO MATESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10068,'28281','Galloway','GALLOWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10069,'28528','Gallup','GALLUP',NULL,'','United States','',0,0,231,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10070,'11956','Galluzzo','GALLUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10071,'18498','Galt','GALT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10072,'24457','Galtur','GALTUR',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10073,'20559','Galva','GALVA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10074,'30639','Galveston','GALVESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10075,'10092','Galyateto','GALYATETO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10076,'11224','Galzignano Terme','GALZIGNANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10077,'13237','Gamagori','GAMAGORI',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10078,'18020','Gamaliel','GAMALIEL',NULL,'','United States','',0,0,231,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10079,'6854','Gamba','GAMBA',NULL,'','Gabon','',0,0,80,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10080,'11957','Gambara','GAMBARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10081,'11225','Gambarie','GAMBARIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10082,'11958','Gambassi','GAMBASSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10083,'24020','Gambela','GAMBELA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10084,'3851','Gambela','GAMBELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10085,'17631','Gambell','GAMBELL',NULL,'','United States','',0,0,231,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10086,'11959','Gamberale','GAMBERALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10087,'1185','Gambia','GAMBIA',NULL,'','GAMBIA','',0,0,81,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10088,'29360','Gambier','GAMBIER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10089,'10284','Gambir','GAMBIR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10090,'42158','Gambo','GAMBO',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10091,'15353','Gamboa','GAMBOA',NULL,'','Panama','',0,0,169,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10092,'39158','Gambolo','GAMBOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10093,'17143','Gammarth','GAMMARTH',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10094,'2146','Gammel Rye','GAMMEL RYE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10095,'22543','Gammertingen','GAMMERTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10096,'34500','Gananoque','GANANOQUE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10097,'25656','Gander','GANDER',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10098,'27212','Ganderkesee','GANDERKESEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10099,'10518','Gandhidham','GANDHIDHAM',NULL,'','India','Gandhidham',16,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10100,'10634','Gandhinagar','GANDHINAGAR',NULL,'','India','Gandhinagar',16,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10101,'3757','Gandia','GANDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10102,'42555','Gangehi','GANGEHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10103,'25442','Ganges','GANGES',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10104,'35809','Gangneung','GANGNEUNG',NULL,'','South Korea','',0,0,197,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10105,'40809','Gangotri','GANGOTRI',NULL,'','India','Gangotri',9,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10106,'10699','Gangtok','GANGTOK',NULL,'','India','Gangtok',25,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10107,'8110','Ganllwyd','GANLLWYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10108,'37531','Gansbaai','GANSBAAI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10109,'24625','Ganshoren','GANSHOREN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10110,'8111','Ganton','GANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10111,'23727','Ganzhou','GANZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10112,'23582','Gaobaita','GAOBAITA',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10113,'23889','Gaobeidian','GAOBEIDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10114,'24749','Gaoua','GAOUA',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10115,'4839','Gap','GAP',NULL,'','France','',0,0,76,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10116,'36121','Garabandal','GARABANDAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10117,'24197','Garabito','GARABITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10118,'3361','Garachico','GARACHICO',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10119,'14207','Garapan','GARAPAN',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10120,'40076','Garbagnate Milanese','GARBAGNATE MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10121,'11960','Garbatella','GARBATELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10122,'18499','Garberville','GARBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10123,'151','Garbsen','GARBSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10124,'152','Garching','GARCHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10125,'3547','Garcia','GARCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10126,'7078','Garden City','GARDEN CITY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:07','1900-01-01 00:00:00',1,0,1),(10127,'10689','Garden Reach','GARDEN REACH',NULL,'','India','',0,0,101,'2016-10-17 10:57:08','1900-01-01 00:00:00',1,0,1),(10128,'18501','Gardena','GARDENA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:08','1900-01-01 00:00:00',1,0,1),(10129,'17883','Gardendale','GARDENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10130,'14845','Garder','GARDER',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10131,'14536','Garderen','GARDEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10132,'14846','Gardermoen','GARDERMOEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10133,'43675','Garderners Bay','GARDERNERS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10134,'28802','Gardiner','GARDINER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10135,'21380','Gardner','GARDNER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10136,'32814','Gardnerville','GARDNERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10137,'11962','Gardone Riviera','GARDONE RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10138,'4259','Gare Du Nord - Gare De L\'est (10)','GARE DU NORD - GARE DE L\'EST (10)',NULL,'','France','',0,0,76,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10139,'2633','Gares','GARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10140,'33441','Garfield','GARFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10141,'8112','Garforth','GARFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10142,'4260','Gargano','GARGANO',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10143,'42323','Gargano','GARGANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10144,'37530','Gargas','GARGAS',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10145,'24519','Gargellen','GARGELLEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10146,'5137','Garges Les Gonesse','GARGES LES GONESSE',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10147,'11963','Gargnano','GARGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10148,'40810','Garhmukteshwar','GARHMUKTESHWAR',NULL,'','India','',0,0,101,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10149,'40811','Garhwal','GARHWAL',NULL,'','India','',0,0,101,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10150,'25443','Garibaldi','GARIBALDI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10151,'29663','Garibaldi','GARIBALDI',NULL,'','United States','',0,0,231,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10152,'32450','Gariep','GARIEP',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10153,'26220','Garig Gunak Barlu National Park','GARIG GUNAK BARLU NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10154,'30642','Garland','GARLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10155,'11964','Garlenda','GARLENDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10156,'1690','Garmisch Partenkirch','GARMISCH PARTENKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10157,'2063','Garmisch-partenkirchen','GARMISCH-PARTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10158,'36055','Garmish-partenkirche','GARMISH-PARTENKIRCHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10159,'33862','Garner','GARNER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10160,'21056','Garnett','GARNETT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10161,'39769','Garniga Terme','GARNIGA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10162,'5921','Garons','GARONS',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10163,'43611','Garopaba','GAROPABA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10164,'39070','Garos','GAROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10165,'24019','Garoua','GAROUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10166,'39334','Garpenberg','GARPENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10167,'27213','Garrel','GARREL',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10168,'6088','Garrevaques','GARREVAQUES',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10169,'4261','Garrigues-sainte-eulalie','GARRIGUES-SAINTE-EULALIE',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10170,'27392','Garrison','GARRISON',NULL,'','United States','',0,0,231,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10171,'37816','Garrovillas De Alconetar','GARROVILLAS DE ALCONETAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10172,'41463','Garrucha','GARRUCHA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10173,'8113','Garstang','GARSTANG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10174,'8114','Gartmore','GARTMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10175,'22544','Gartringen','GARTRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10176,'42794','Garut','GARUT',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10177,'8115','Garve','GARVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10178,'39368','Garwolin','GARWOLIN',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10179,'20884','Gary','GARY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10180,'24214','Garza','GARZA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10181,'14058','Garza Garcia','GARZA GARCIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10182,'20885','Gas City','GAS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10183,'24520','Gaschurn','GASCHURN',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10184,'27648','Gashland','GASHLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10185,'25993','Gaspe','GASPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10186,'41683','Gasperina','GASPERINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10187,'31983','Gassaway','GASSAWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10188,'16491','Gassim','GASSIM',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10189,'6432','Gassin','GASSIN',NULL,'','France','',0,0,76,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10190,'18021','Gassville','GASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10191,'33863','Gastonia','GASTONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10192,'9469','Gastouri','GASTOURI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10193,'25444','Gastown','GASTOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10194,'7079','Gatehouse-of-fleet','GATEHOUSE-OF-FLEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10195,'28804','Gates','GATES',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10196,'9317','Gateshead','GATESHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10197,'30643','Gatesville','GATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10198,'25995','Gatineau','GATINEAU',NULL,'','Canada','Gatineau',0,0,39,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10199,'33149','Gatlinburg','GATLINBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10200,'772','Gatow','GATOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10201,'37603','Gattatico','GATTATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10202,'2239','Gatten','GATTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10203,'15337','Gatun Lake','GATUN LAKE',NULL,'','Panama','',0,0,169,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10204,'8116','Gatwick','GATWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10205,'32315','Gaua','GAUA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10206,'6301','Gauchy','GAUCHY',NULL,'','France','',0,0,76,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10207,'3232','Gaucin','GAUCIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10208,'37177','Gaufelden','GAUFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10209,'10624','Gauhati','GAUHATI',NULL,'','India','',0,0,101,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10210,'5922','Gaujac','GAUJAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10211,'14890','Gaustad','GAUSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10212,'15002','Gautefall','GAUTEFALL',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10213,'27855','Gautier','GAUTIER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10214,'38932','Gauting','GAUTING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10215,'3548','Gava','GAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10216,'6089','Gavarnie','GAVARNIE',NULL,'','France','',0,0,76,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10217,'36268','Gavaudun','GAVAUDUN',NULL,'','France','',0,0,76,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10218,'25134','Gavea','GAVEA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10219,'11965','Gavi','GAVI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10220,'37647','Gaviao','GAVIAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10221,'18022','Gavin','GAVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10222,'39455','Gavoi','GAVOI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10223,'12979','Gavorrano','GAVORRANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10224,'9470','Gavrio','GAVRIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10225,'38061','Gaya Island','GAYA ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10226,'22077','Gaylord','GAYLORD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10227,'26406','Gayndah','GAYNDAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10228,'44174','Gazi','GAZI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10229,'17294','Gaziantep','GAZIANTEP',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10230,'41035','Gazzo','GAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10231,'11227','Gazzola','GAZZOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10232,'32631','Gbadolite','GBADOLITE',NULL,'','Fiji','',0,0,74,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10233,'15720','Gdansk','GDANSK',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10234,'15619','Gdynia','GDYNIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10235,'29664','Gearhart','GEARHART',NULL,'','United States','',0,0,231,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10236,'10157','Gebe','GEBE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10237,'40557','Gebze','GEBZE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10238,'41472','Gedre','GEDRE',NULL,'','France','',0,0,76,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10239,'24607','Geel','GEEL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10240,'26906','Geelong','GEELONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10241,'42456','Gehdren','GEHDREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10242,'37984','Geilenkirchen','GEILENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10243,'14864','Geilo','GEILO',NULL,'','Norway','Geilo',0,0,164,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10244,'41820','Geinberg','GEINBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10245,'14772','Geiranger','GEIRANGER',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10246,'35708','Geisei','GEISEI',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10247,'22757','Geisenhausen','GEISENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10248,'424','Geisenheim','GEISENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10249,'38539','Geislingen An Der Steige','GEISLINGEN AN DER STEIGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10250,'6761','Geispolsheim','GEISPOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10251,'1881','Geithain','GEITHAIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10252,'41917','Gela','GELA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10253,'3852','Geladi','GELADI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10254,'43895','Gelderland','GELDERLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10255,'14596','Geldrop','GELDROP',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10256,'14570','Geleen','GELEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10257,'16260','Gelendzik','GELENDZIK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10258,'26907','Gellibrand','GELLIBRAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10259,'38036','Gelnhausen','GELNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10260,'27362','Gelsenkirchen','GELSENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10261,'3233','Gelves','GELVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10262,'24708','Gembloux','GEMBLOUX',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10263,'32632','Gemena','GEMENA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10264,'6433','Gemenos','GEMENOS',NULL,'','France','',0,0,76,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10265,'22758','Gemunden','GEMUNDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10266,'6629','Genas','GENAS',NULL,'','France','',0,0,76,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10267,'6338','Gencay','GENCAY',NULL,'','France','',0,0,76,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10268,'44268','Gence','GENCE',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10269,'3853','Genda Wuha','GENDA WUHA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10270,'40227','General Kantardzhievo','GENERAL KANTARDZHIEVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10271,'26135','General Roca','GENERAL ROCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10272,'15549','General Santos','GENERAL SANTOS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10273,'20560','Geneseo','GENESEO',NULL,'','United States','',0,0,231,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10274,'40780','Geneuille','GENEUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10275,'28806','Geneva','GENEVA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:31','1900-01-01 00:00:00',1,0,1),(10276,'23435','Geneva','GENEVA',NULL,'','Switzerland','Geneva',0,0,210,'2016-10-17 10:57:31','1900-01-01 00:00:00',1,0,1),(10277,'38162','Genga','GENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10278,'425','Gengenbach','GENGENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10279,'24738','Genk','GENK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10280,'9471','Gennadi','GENNADI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10281,'4719','Gennevilliers','GENNEVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10282,'12777','Genoa','GENOA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10283,'32815','Genoa','GENOA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10284,'999','Genova','GENOVA',NULL,'','ITALY','',0,0,107,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10285,'5188','Gensac','GENSAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10286,'40968','Gent','GENT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10287,'1934','Genthin','GENTHIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10288,'4720','Gentilly','GENTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10289,'36426','Genting Highlands','GENTING HIGHLANDS',NULL,'','Malaysia','Genting Highlands',36,0,132,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10290,'2209','Gentofte','GENTOFTE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10291,'24735','Genval','GENVAL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10292,'11966','Genzano Di Roma','GENZANO DI ROMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10293,'31506','George','GEORGE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10294,'32451','George','GEORGE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10295,'42654','George Town','GEORGE TOWN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10296,'24261','George Town','GEORGE TOWN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10297,'24856','George Town','GEORGE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10298,'26841','George Town','GEORGE TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10299,'39086','Georgenthal','GEORGENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10300,'34501','Georgetown','GEORGETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10301,'30646','Georgetown','GEORGETOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10302,'26407','Georgetown','GEORGETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10303,'16534','Georgetown','GEORGETOWN',NULL,'','St. Helena','',0,0,201,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10304,'9896','Georgetown','GEORGETOWN',NULL,'','Guyana','',0,0,94,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10306,'25996','Georgeville','GEORGEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10307,'37483','Georgeville','GEORGEVILLE',NULL,'','Belize','',0,0,22,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10308,'9472','Georgioupolis','GEORGIOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10309,'1971','Gera','GERA',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10310,'37784','Gerace','GERACE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10311,'35230','Gerakini','GERAKINI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10312,'43017','Geraldine','GERALDINE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10313,'34502','Geraldton','GERALDTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10314,'26592','Geraldton','GERALDTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10315,'6031','Gerardmer','GERARDMER',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10316,'39150','Geras','GERAS',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10317,'40197','Géraudot','GÉRAUDOT',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10318,'6090','Gerde','GERDE',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10319,'12822','Geremeas','GEREMEAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10320,'3234','Gerena','GERENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10321,'11229','Gerenzano','GERENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10322,'41659','Geres','GERES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10323,'1635','Geres-canicada','GERES-CANICADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10324,'41299','Geria','GERIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10325,'37514','Gerik','GERIK',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10326,'28120','Gering','GERING',NULL,'','United States','',0,0,231,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10327,'32816','Gerlach','GERLACH',NULL,'','United States','',0,0,231,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10328,'36699','Gerlachov','GERLACHOV',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10329,'27363','Gerlingen','GERLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10330,'37323','Gerlos','GERLOS',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10331,'6091','Germ','GERM',NULL,'','France','',0,0,76,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10332,'33151','Germantown','GERMANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10333,'11230','Germasino','GERMASINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10334,'2064','Germering','GERMERING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10335,'42455','Germersheim','GERMERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10336,'32562','Germiston','GERMISTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10337,'22760','Gernlinden','GERNLINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10338,'39159','Gernsbach','GERNSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10339,'42868','Gero','GERO',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10340,'34171','Gerogery','GEROGERY',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10341,'23473','Geroldswil','GEROLDSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10342,'41644','Gerolimenas','GEROLIMENAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10343,'626','Gerolstein','GEROLSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10344,'2634','Gerona','GERONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10345,'36122','Gerona-alp','GERONA-ALP',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10346,'7081','Gerrards Cross','GERRARDS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10347,'34172','Gerringong','GERRINGONG',NULL,'','Australia','Gerringong',0,0,13,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10348,'23210','Gersau','GERSAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10349,'39282','Gersbach','GERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10350,'22761','Gersthofen','GERSTHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10351,'5315','Gerzat','GERZAT',NULL,'','France','',0,0,76,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10352,'27364','Gescher','GESCHER',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10353,'37901','Geseke','GESEKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10354,'24709','Gesves','GESVES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10355,'2994','Getafe','GETAFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10356,'3707','Getaria','GETARIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10357,'25997','Gethsemani','GETHSEMANI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10358,'33012','Gettysburg','GETTYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10359,'43214','Getxo','GETXO',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10360,'14635','Geuzenveld','GEUZENVELD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10361,'38390','Gevgelija','GEVGELIJA',NULL,'','Macedonia','',0,0,129,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10362,'39552','Gevrey-chambertin','GEVREY-CHAMBERTIN',NULL,'','France','',0,0,76,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10363,'6630','Gex','GEX',NULL,'','France','',0,0,76,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10364,'18502','Geyserville','GEYSERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10365,'13561','Ghadames','GHADAMES',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10366,'43322','Ghajn Tuffieha','GHAJN TUFFIEHA',NULL,'','Malta','',0,0,135,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10367,'40851','Ghanerao','GHANERAO',NULL,'','India','',0,0,101,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10368,'44199','Ghantoot','GHANTOOT',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10369,'25259','Ghanzi','GHANZI',NULL,'','Botswana','',0,0,28,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10370,'40328','Ghardaia','GHARDAIA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10371,'13562','Ghat','GHAT',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10372,'10519','Ghaziabad','GHAZIABAD',NULL,'','India','Ghaziabad',6,0,101,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10373,'33640','Ghent','GHENT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10374,'24717','Ghent','GHENT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10375,'39683','Ghiffa','GHIFFA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10376,'3854','Ghimbi','GHIMBI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10377,'39372','Ghislenghien','GHISLENGHIEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10378,'4721','Ghisonaccia','GHISONACCIA',NULL,'','France','',0,0,76,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10379,'11967','Ghizzano','GHIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10380,'32279','Gia Dinh','GIA DINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10381,'37347','Giannitsa','GIANNITSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10382,'10226','Gianyar','GIANYAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10383,'41037','Giardini Naxos','GIARDINI NAXOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10384,'13046','Giardini-naxos','GIARDINI-NAXOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10385,'11969','Giarre','GIARRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10386,'28282','Gibbsboro','GIBBSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10387,'28283','Gibbstown','GIBBSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10388,'41168','Gibraltar','GIBRALTAR',NULL,'','United Kingdom','Gibraltar',0,0,229,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10389,'9358','Gibraltar','GIBRALTAR',NULL,'','Gibraltar','Gibraltar',0,0,85,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10390,'29950','Gibsonia','GIBSONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10391,'25445','Gibsons','GIBSONS',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10392,'30647','Giddings','GIDDINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10393,'8117','Gidleigh','GIDLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10394,'4263','Gien-le-vieux','GIEN-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10395,'4264','Giens','GIENS',NULL,'','France','',0,0,76,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10396,'6631','Gieres','GIERES',NULL,'','France','',0,0,76,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10397,'22762','Giesing','GIESING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10398,'153','Giessen','GIESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10399,'41376','Giethoorn','GIETHOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10400,'6632','Giez','GIEZ',NULL,'','France','',0,0,76,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10401,'8118','Giffnock','GIFFNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10402,'8119','Gifford','GIFFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10403,'27214','Gifhorn','GIFHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10404,'4722','Gif-sur-yvette','GIF-SUR-YVETTE',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10405,'13385','Gifu','GIFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10406,'31507','Gig Harbor','GIG HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10407,'36266','Gignac','GIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10408,'6434','Gignac-la-nerthe','GIGNAC-LA-NERTHE',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10409,'3087','Gijon','GIJON',NULL,'','Spain','Gijon / Xixon',0,0,199,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10410,'18137','Gila Bend','GILA BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10411,'18138','Gilbert','GILBERT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10412,'33641','Gilbertsville','GILBERTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10413,'28808','Gilboa','GILBOA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10414,'32701','Gilford','GILFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10415,'34173','Gilgandra','GILGANDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10416,'39974','Gilgil','GILGIL',NULL,'','Kenya','',0,0,113,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10417,'15300','Gilgit','GILGIT',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10418,'10158','Gili Islands','GILI ISLANDS',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10419,'25595','Gillam','GILLAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10420,'2172','Gilleleje','GILLELEJE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10421,'627','Gillenfeld','GILLENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10422,'26801','Gilles Plains','GILLES PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10423,'32099','Gillette','GILLETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10424,'36310','Gillingham','GILLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10425,'31757','Gills Rock','GILLS ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10426,'24662','Gilly','GILLY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10427,'20562','Gilman','GILMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10428,'30648','Gilmer','GILMER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10429,'8121','Gilmerton','GILMERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10430,'18503','Gilroy','GILROY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10431,'8122','Gilsland','GILSLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10432,'44241','Gilutongan Island','GILUTONGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10433,'14597','Gilze','GILZE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10434,'35801','Gimhae City','GIMHAE CITY',NULL,'','South Korea','',0,0,197,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10435,'25596','Gimli','GIMLI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10436,'37732','Gimo','GIMO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10437,'6092','Gimont','GIMONT',NULL,'','France','',0,0,76,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10438,'38832','Gimouille','GIMOUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10439,'35534','Ginestra Fiorentina','GINESTRA FIORENTINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10440,'39312','Ginnosar','GINNOSAR',NULL,'','Israel','',0,0,106,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10441,'40657','Ginosa','GINOSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10442,'11039','Ginosar','GINOSAR',NULL,'','Israel','',0,0,106,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10443,'41454','Ginowan','GINOWAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10444,'38642','Gioia Dei Marsi','GIOIA DEI MARSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10445,'35535','Gioiello','GIOIELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10446,'11970','Gioiosa Marea','GIOIOSA MAREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10447,'11971','Giovinazzo','GIOVINAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10448,'41822','Gippsland And Lakes Region','GIPPSLAND AND LAKES REGION',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10449,'42135','Gipsy Point','GIPSY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10450,'10415','Gir National Park','GIR NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10451,'37841','Girasole','GIRASOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10452,'17632','Girdwood','GIRDWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10453,'17295','Giresun','GIRESUN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10454,'13605','Giritale','GIRITALE',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10455,'1285','Girona','GIRONA',NULL,'','SPAIN','Girona',0,0,199,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10456,'8123','Girvan','GIRVAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10457,'15071','Gisborne','GISBORNE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10458,'8124','Gisburn','GISBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10459,'16481','Gisenyi','GISENYI',NULL,'','Rwanda','',0,0,508,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10460,'40309','Giske','GISKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10461,'16718','Gislaved','GISLAVED',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10462,'8125','Gissing','GISSING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10463,'23211','Giswil','GISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10464,'11972','Giugliano In Campania','GIUGLIANO IN CAMPANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10465,'42957','Giulianova','GIULIANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10466,'39231','Giurdignano','GIURDIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10467,'11973','Giussano','GIUSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10468,'11232','Giustino','GIUSTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10469,'11040','Giv\'atayim','GIV\'ATAYIM',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10470,'5812','Giverny','GIVERNY',NULL,'','France','',0,0,76,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10471,'6633','Givors','GIVORS',NULL,'','France','',0,0,76,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10472,'32563','Giyani','GIYANI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10473,'2425','Giza','GIZA',NULL,'','Egypt','Giza',0,0,65,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10474,'16492','Gizan','GIZAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10475,'16546','Gizo','GIZO',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10476,'15682','Gizycko','GIZYCKO',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10477,'38042','Gizzeria','GIZZERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10478,'2147','Gjerrild','GJERRILD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10479,'42224','Gjirokaster','GJIROKASTER',NULL,'','Albania','',0,0,2,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10480,'25796','Gjoa Haven','GJOA HAVEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10481,'14945','Gjovik','GJOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10482,'31508','Glacier','GLACIER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10483,'27365','Gladbeck','GLADBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:03','1900-01-01 00:00:00',1,0,1),(10484,'34174','Gladesville','GLADESVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:03','1900-01-01 00:00:00',1,0,1),(10485,'30649','Gladewater','GLADEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10486,'2210','Gladsakse','GLADSAKSE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10487,'29665','Gladstone','GLADSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10488,'26697','Gladstone','GLADSTONE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10489,'8126','Glangrwyney','GLANGRWYNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10490,'10808','Glanmire','GLANMIRE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10491,'10809','Glanworth','GLANWORTH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10492,'23026','Glarus','GLARUS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10493,'27167','Glasenbach','GLASENBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10494,'994','Glasgow','GLASGOW',NULL,'','UNITED KINGDOM','Glasgow',0,0,469,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10495,'10917','Glaslough','GLASLOUGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10496,'10840','Glasnevin','GLASNEVIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10497,'39576','Glass House Mountains','GLASS HOUSE MOUNTAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10498,'28284','Glassboro','GLASSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10499,'8128','Glastonbury','GLASTONBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10500,'19085','Glastonbury','GLASTONBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10501,'23212','Glattbrugg','GLATTBRUGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10502,'34175','Glebe','GLEBE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10503,'628','Glees','GLEES',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10504,'24415','Gleisdorf','GLEISDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10505,'629','Gleiszellen-gleishorbach','GLEISZELLEN-GLEISHORBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10506,'15192','Glen Eden','GLEN EDEN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:09','1900-01-01 00:00:00',1,0,1),(10507,'10879','Glenbeigh','GLENBEIGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:10','1900-01-01 00:00:00',1,0,1),(10508,'8129','Glenborrodale','GLENBORRODALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:10','1900-01-01 00:00:00',1,0,1),(10509,'8130','Glencarse','GLENCARSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10510,'41167','Glencoe','GLENCOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10511,'27393','Glencoe','GLENCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10512,'7084','Glendale','GLENDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:12','1900-01-01 00:00:00',1,0,1),(10513,'10737','Glendalough','GLENDALOUGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10514,'26222','Glendambo','GLENDAMBO',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10515,'27977','Glendive','GLENDIVE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10516,'28285','Glendola','GLENDOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10517,'18507','Glendora','GLENDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10518,'7085','Gleneagles','GLENEAGLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10519,'29666','Gleneden Beach','GLENEDEN BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10520,'8131','Glenfarg','GLENFARG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10521,'34177','Glenfield','GLENFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10522,'15193','Glenfield','GLENFIELD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10523,'38102','Glenfinnan','GLENFINNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10524,'35394','Glengarriff','GLENGARRIFF',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10525,'26223','Glengyle','GLENGYLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10526,'28810','Glenham','GLENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10527,'26510','Glenisla','GLENISLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10528,'28811','Glenmont','GLENMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10529,'17633','Glennallen','GLENNALLEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10530,'20353','Glenns Ferry','GLENNS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10531,'19814','Glennville','GLENNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10532,'15194','Glenorchy','GLENORCHY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10533,'26842','Glenorchy','GLENORCHY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10534,'32908','Glenpool','GLENPOOL',NULL,'','United States','',0,0,231,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10535,'8132','Glenridding','GLENRIDDING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10536,'8133','Glenrothes','GLENROTHES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10537,'26451','Glenroy','GLENROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10538,'28812','Glens Falls','GLENS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10539,'36309','Glenshee','GLENSHEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10540,'15195','Glentanner','GLENTANNER',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10541,'20567','Glenview','GLENVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10542,'28813','Glenville','GLENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10543,'27394','Glenwood','GLENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10544,'38328','Glesien','GLESIEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:19','1900-01-01 00:00:00',1,0,1),(10545,'10897','Glin','GLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10546,'27215','Glinde','GLINDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10547,'39328','Glindenberg','GLINDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10548,'23213','Glion','GLION',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10549,'5109','Glisy','GLISY',NULL,'','France','',0,0,76,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10550,'15584','Gliwice','GLIWICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10551,'18140','Globe','GLOBE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10552,'3963','Gloet','GLOET',NULL,'','Finland','',0,0,75,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10553,'27102','Gloggnitz','GLOGGNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10554,'15649','Glogow','GLOGOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10555,'24248','Gloria','GLORIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10556,'28530','Glorieta','GLORIETA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10557,'8134','Glossop','GLOSSOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10558,'27856','Gloster','GLOSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10559,'2211','Glostrup','GLOSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10560,'2061','Glottertal','GLOTTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10561,'9302','Gloucester','GLOUCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10562,'21381','Gloucester','GLOUCESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10563,'7086','Gloucestershire','GLOUCESTERSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10564,'29363','Glouster','GLOUSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10565,'27857','Gluckstadt','GLUCKSTADT',NULL,'','United States','',0,0,231,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10566,'2093','Gluecksburg','GLUECKSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10567,'7087','Glyn Ceiriog','GLYN CEIRIOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10568,'39320','Gmund','GMUND',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10569,'22763','Gmund Am Tegernsee','GMUND AM TEGERNSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10570,'27130','Gmunden','GMUNDEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10571,'24458','Gnadenwald','GNADENWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10572,'39280','Gnarabup','GNARABUP',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10573,'16775','Gnesta','GNESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10574,'15669','Gniezno','GNIEZNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10575,'32280','Go Vap','GO VAP',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10576,'10704','Goa','GOA',NULL,'','India','Trip to Goa | Goa Travel Packages | Goa Tourism | ',11,0,101,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10577,'8135','Goathland','GOATHLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10578,'3855','Goba','GOBA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10579,'26143','Gobernador Gregores','GOBERNADOR GREGORES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10580,'8136','Gobowen','GOBOWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10581,'17206','Gocek','GOCEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10582,'27366','Goch','GOCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10583,'14411','Gochas','GOCHAS',NULL,'','Namibia','',0,0,151,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10584,'36056','Goch-niederrhein','GOCH-NIEDERRHEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10585,'1541','God','GOD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10586,'8137','Godalming','GODALMING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10587,'21057','Goddard','GODDARD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10588,'3856','Gode','GODE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10589,'13612','Godellawela','GODELLAWELA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10590,'34504','Goderich','GODERICH',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10591,'20568','Godfrey','GODFREY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10592,'9856','Godhavn','GODHAVN',NULL,'','Greenland','',0,0,87,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10593,'39874','Godollo','GODOLLO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10594,'25597','Gods Narrows','GODS NARROWS',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10595,'10073','Goed','GOED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10596,'44134','Goehrde','GOEHRDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10597,'154','Goehren-lebbin','GOEHREN-LEBBIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10598,'155','Goerlitz','GOERLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10599,'14695','Goes','GOES',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10600,'38010','Goessweinstein','GOESSWEINSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10601,'40505','Goestling An Der Ybbs','GOESTLING AN DER YBBS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10602,'27216','Goettingen','GOETTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10603,'41862','Goffs','GOFFS',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10604,'24907','Goffs Caye','GOFFS CAYE',NULL,'','Belize','',0,0,22,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10605,'1708','Gohren','GOHREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10606,'42178','Gohren-lebbin','GOHREN-LEBBIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10607,'25063','Goiania','GOIANIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10608,'24459','Going','GOING',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10609,'42603','Gokarna','GOKARNA',NULL,'','India','',0,0,101,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10610,'14865','Gol','GOL',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10611,'10416','Golabari','GOLABARI',NULL,'','India','',0,0,101,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10612,'35413','Golan','GOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10613,'39967','Golbasi','GOLBASI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10614,'20569','Golconda','GOLCONDA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10615,'25446','Gold Bridge','GOLD BRIDGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10616,'26698','Gold Coast','GOLD COAST',NULL,'','Australia','Gold Coast',0,0,13,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10617,'25448','Golden','GOLDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10618,'33447','Golden','GOLDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10619,'14182','Golden Bay','GOLDEN BAY',NULL,'','Malta','',0,0,135,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10620,'43717','Golden Beach','GOLDEN BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10621,'10977','Golden Circle','GOLDEN CIRCLE',NULL,'','Iceland','',0,0,100,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10622,'24771','Golden Sands','GOLDEN SANDS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10623,'16984','Golden Triangle','GOLDEN TRIANGLE',NULL,'','Thailand','',0,0,215,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10624,'31509','Goldendale','GOLDENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10625,'26224','Goldfields','GOLDFIELDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10626,'33866','Goldsboro','GOLDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10627,'38892','Goldsby','GOLDSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10628,'23214','Goldswil','GOLDSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10629,'10810','Goleen','GOLEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10630,'16045','Golega','GOLEGA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10631,'18508','Goleta','GOLETA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10632,'43486','Golf Del Sur','GOLF DEL SUR',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10633,'4265','Golf Juan','GOLF JUAN',NULL,'','France','',0,0,76,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10634,'1388','Golfe De Saint Tropez','GOLFE DE SAINT TROPEZ',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10635,'24237','Golfito','GOLFITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10636,'41863','Golfo De Papagayo','GOLFO DE PAPAGAYO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10637,'30651','Goliad','GOLIAD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10638,'27103','Golling','GOLLING',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10639,'23765','Golmud','GOLMUD',NULL,'','China','',0,0,46,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10640,'17634','Golovin','GOLOVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10641,'17207','Golturkbuku','GOLTURKBUKU',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10642,'32636','Goma','GOMA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10643,'40257','Gomadingen','GOMADINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10644,'22545','Gomaringen','GOMARINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10645,'24894','Gomel','GOMEL',NULL,'','Belarus','',0,0,20,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10646,'36125','Gomera','GOMERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10647,'8138','Gomersal','GOMERSAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10648,'13984','Gomez Palacio','GOMEZ PALACIO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10649,'2102','Gommier','GOMMIER',NULL,'','Dominica','',0,0,500,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10650,'3857','Gondar','GONDAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10651,'16025','Gondomar','GONDOMAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10652,'630','Gondorf','GONDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10653,'4267','Gond-pontouvre','GOND-PONTOUVRE',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10654,'41075','Gonen','GONEN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10655,'40256','Gonen','GONEN',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10656,'41464','Gonfreville Lorcher','GONFREVILLE LORCHER',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10657,'5091','Gonfreville-l\'orcher','GONFREVILLE-L\'ORCHER',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10658,'35803','Gongju','GONGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10659,'17384','Gongliao','GONGLIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10660,'37503','Goniadz','GONIADZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10661,'39957','Gonneville-sur-honfleur','GONNEVILLE-SUR-HONFLEUR',NULL,'','France','',0,0,76,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10662,'25599','Gonor','GONOR',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10663,'23215','Gonten','GONTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10664,'30652','Gonzales','GONZALES',NULL,'','United States','',0,0,231,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10665,'39966','Goode','GOODE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10666,'20354','Gooding','GOODING',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10667,'21058','Goodland','GOODLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10668,'33152','Goodlettsville','GOODLETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10669,'17635','Goodnews Bay','GOODNEWS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10670,'8139','Goodrich','GOODRICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10671,'32452','Goodwood','GOODWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10672,'33643','Goody','GOODY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10673,'18143','Goodyear','GOODYEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10674,'14465','Gooi En Vechtstreek','GOOI EN VECHTSTREEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10675,'37525','Goole','GOOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10676,'26452','Goolwa','GOOLWA',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10677,'26699','Goondiwindi','GOONDIWINDI',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10678,'30332','Goose Creek','GOOSE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10679,'39546','Gooseberry Hill','GOOSEBERRY HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10680,'8140','Goosnargh','GOOSNARGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10681,'10520','Gopalpur','GOPALPUR',NULL,'','India','Gopalpur',8,0,101,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10682,'37639','Gopegui','GOPEGUI',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10683,'22546','Goppingen','GOPPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10684,'13134','Gora','GORA',NULL,'','Japan','',0,0,110,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10685,'10521','Gorakhpur','GORAKHPUR',NULL,'','India','Gorakhpur ',6,0,101,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10686,'5118','Gordes','GORDES',NULL,'','France','',0,0,76,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10687,'44297','Gordexola','GORDEXOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10688,'28121','Gordon','GORDON',NULL,'','United States','',0,0,231,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10689,'32453','Gordon\'s Bay','GORDON\'S BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10690,'33153','Gordonsville','GORDONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10691,'29953','Gordonville','GORDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10692,'15104','Gore','GORE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10693,'3858','Gore','GORE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10694,'34505','Gore Bay','GORE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10695,'43297','Gorebridge','GOREBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10696,'10522','Goregaon','GOREGAON',NULL,'','India','',0,0,101,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10697,'17208','Goreme','GOREME',NULL,'','Turkey','Goreme',0,0,222,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10698,'10947','Gorey','GOREY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10699,'7088','Gorey','GOREY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10700,'39601','Gorgeshausen','GORGESHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10701,'32703','Gorham','GORHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10702,'42261','Gori','GORI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10703,'14712','Gorinchem','GORINCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10704,'41377','Gorinchen','GORINCHEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10705,'8141','Goring','GORING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10706,'11974','Gorizia','GORIZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10707,'34179','Gorkan - Toukley','GORKAN - TOUKLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10708,'2090','Gorlitz','GORLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10709,'18509','Gorman','GORMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10710,'10910','Gormanston','GORMANSTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10711,'24772','Gorna Orechovitsa','GORNA ORECHOVITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10712,'41378','Gornazo','GORNAZO',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10713,'15573','Goroka','GOROKA',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10714,'34180','Gorokan','GOROKAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10715,'24751','Gorom-gorom','GOROM-GOROM',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10716,'10369','Gorontalo','GORONTALO',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10717,'41461','Gorraiz','GORRAIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10718,'6093','Gorses','GORSES',NULL,'','France','',0,0,76,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10719,'15627','Gorzow Wielkopolski','GORZOW WIELKOPOLSKI',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10720,'40960','Gosau','GOSAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10721,'34181','Gosford','GOSFORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10722,'21382','Goshen','GOSHEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10723,'36355','Gosier','GOSIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10724,'27217','Goslar','GOSLAR',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10725,'6169','Gosnay','GOSNAY',NULL,'','France','',0,0,76,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10726,'26593','Gosnells','GOSNELLS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10727,'8142','Gosport','GOSPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10728,'23216','Gossau','GOSSAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10729,'24740','Gosselies','GOSSELIES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10730,'13238','Gotemba','GOTEMBA',NULL,'','Japan','',0,0,110,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10731,'156','Gotha','GOTHA',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10732,'19374','Gotha','GOTHA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10733,'28122','Gothenburg','GOTHENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10734,'16669','Gothenburg','GOTHENBURG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10735,'7089','Gotherington','GOTHERINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10736,'2635','Gothic Quarter','GOTHIC QUARTER',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10737,'16671','Gotland','GOTLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10738,'41641','Gottingen','GOTTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10739,'41879','Gottlieben','GOTTLIEBEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10740,'43586','Gotzens','GOTZENS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10741,'43587','Gotzis','GOTZIS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10742,'14713','Gouda','GOUDA',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10743,'5542','Gouesnou','GOUESNOU',NULL,'','France','',0,0,76,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10744,'34182','Goulburn','GOULBURN',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10745,'29954','Gouldsboro','GOULDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10746,'13680','Goulimime','GOULIMIME',NULL,'','Morocco','',0,0,148,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10747,'6435','Goult','GOULT',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10748,'40435','Goumois','GOUMOIS',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10749,'6094','Gourdon','GOURDON',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10750,'5189','Gourette','GOURETTE',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10751,'5813','Gournay-en-bray','GOURNAY-EN-BRAY',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10752,'8143','Gourock','GOUROCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10753,'4724','Goussainville','GOUSSAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10754,'14511','Goutum','GOUTUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10755,'41658','Gouveia','GOUVEIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10756,'15967','Gouveias','GOUVEIAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10757,'6302','Gouvieux','GOUVIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10758,'9846','Gouyave','GOUYAVE',NULL,'','Grenada','',0,0,88,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10759,'6170','Gouy-sous-bellonne','GOUY-SOUS-BELLONNE',NULL,'','France','',0,0,76,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10760,'26225','Gove','GOVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10761,'24979','Governador Celso Ramos','GOVERNADOR CELSO RAMOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10762,'29669','Government Camp','GOVERNMENT CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10763,'24830','Governors Harbour','GOVERNORS HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10764,'42635','Goya','GOYA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10765,'17186','Goynuk','GOYNUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10766,'39901','Gozd Martuljek','GOZD MARTULJEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10767,'14183','Gozo','GOZO',NULL,'','Malta','',0,0,135,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10768,'41465','Gozon','GOZON',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10769,'11975','Gozzano','GOZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10770,'38184','Graaff-reinet','GRAAFF-REINET',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10771,'41640','Graal-muritz','GRAAL-MURITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10772,'32454','Grabouw','GRABOUW',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10773,'37494','Grabowhofe','GRABOWHOFE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10774,'15975','Graca','GRACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10775,'16934','Grace Bay','GRACE BAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10776,'25998','Gracefield','GRACEFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10777,'24580','Grace-hollogne','GRACE-HOLLOGNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10778,'29955','Graceville','GRACEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10779,'23217','Grachen','GRACHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10780,'43695','Gracias','GRACIAS',NULL,'','Honduras','',0,0,97,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10781,'15808','Graciosa Island','GRACIOSA ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10782,'10012','Gradac','GRADAC',NULL,'','Croatia','',0,0,55,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10783,'11976','Gradara','GRADARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10784,'4927','Gradignan','GRADIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10785,'39739','Gradisca Disonzo','GRADISCA DISONZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10786,'12744','Grado','GRADO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10788,'22764','Grafenau','GRAFENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10789,'22547','Grafenhausen','GRAFENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10790,'40170','Grafenthal','GRAFENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10791,'42454','Grafing Bei Munchen','GRAFING BEI MUNCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10792,'30653','Graford','GRAFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10793,'20570','Grafton','GRAFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10794,'34183','Grafton','GRAFTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10795,'11977','Gragnano','GRAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10796,'33868','Graham','GRAHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10797,'32455','Grahamstown','GRAHAMSTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10798,'27650','Grain Valley','GRAIN VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10799,'157','Grainau','GRAINAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10800,'38510','Grainet','GRAINET',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10801,'2292','Gram','GRAM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10802,'25159','Gramado','GRAMADO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10803,'6095','Gramat','GRAMAT',NULL,'','France','',0,0,76,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10804,'21201','Grambling','GRAMBLING',NULL,'','United States','',0,0,231,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10805,'38800','Grammatiko','GRAMMATIKO',NULL,'','Greece','',0,0,86,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10806,'11978','Grammichele','GRAMMICHELE',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10807,'38976','Grampound Road','GRAMPOUND ROAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10808,'24460','Gran','GRAN',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10809,'35540','Gran Sasso','GRAN SASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:00','1900-01-01 00:00:00',1,0,1),(10810,'2637','Granada','GRANADA',NULL,'','Spain','Granada',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10811,'14443','Granada','GRANADA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10812,'18511','Granada Hills','GRANADA HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10813,'34991','Granada-armilla','GRANADA-ARMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10814,'36118','Granada-fuensanta','GRANADA-FUENSANTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10815,'36154','Granada-loja','GRANADA-LOJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10816,'3362','Granadilla De Abona','GRANADILLA DE ABONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10817,'11234','Granarolo Dell\'emilia','GRANAROLO DELL\'EMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10818,'30655','Granbury','GRANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10819,'33448','Granby','GRANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10820,'25999','Granby','GRANBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10821,'14252','Grand Bay','GRAND BAY',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10822,'34506','Grand Bend','GRAND BEND',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10823,'24257','Grand Cayman','GRAND CAYMAN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:59:04','1900-01-01 00:00:00',1,0,1),(10824,'14184','Grand Harbour','GRAND HARBOUR',NULL,'','Malta','',0,0,135,'2016-10-17 10:59:05','1900-01-01 00:00:00',1,0,1),(10825,'9847','Grand Roy','GRAND ROY',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10826,'16947','Grand Turk','GRAND TURK',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10827,'11979','Grandate','GRANDATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10828,'9381','Grand-bourg','GRAND-BOURG',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10829,'4268','Grandcamp-maisy','GRANDCAMP-MAISY',NULL,'','France','',0,0,76,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10830,'9382','Grand-case','GRAND-CASE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10831,'26700','Grandchester','GRANDCHESTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10832,'25315','Grande Cache','GRANDE CACHE',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10833,'42950','Grande Island','GRANDE ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10834,'9835','Grande-anse Beach','GRANDE-ANSE BEACH',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10835,'41129','Grandes Piles','GRANDES PILES',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10836,'4269','Grande-synthe','GRANDE-SYNTHE',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10837,'9361','Grande-terre','GRANDE-TERRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10838,'5543','Grand-fougeray','GRAND-FOUGERAY',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10839,'5814','Grand-laviers','GRAND-LAVIERS',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10840,'40475','Grandola','GRANDOLA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10841,'30658','Grandview','GRANDVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:59:10','1900-01-01 00:00:00',1,0,1),(10842,'22086','Grandville','GRANDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:10','1900-01-01 00:00:00',1,0,1),(10843,'39294','Grangaerde','GRANGAERDE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10844,'36312','Grange Over Sands','GRANGE OVER SANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10845,'9301','Grangemouth','GRANGEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10846,'7090','Grange-over-sands','GRANGE-OVER-SANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10847,'20888','Granger','GRANGER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10848,'23028','Granges-paccot','GRANGES-PACCOT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10849,'20355','Grangeville','GRANGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10850,'20571','Granite City','GRANITE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:12','1900-01-01 00:00:00',1,0,1),(10851,'37714','Graniti','GRANITI',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:12','1900-01-01 00:00:00',1,0,1),(10852,'16719','Granna','GRANNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10853,'3549','Granollers','GRANOLLERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10854,'8144','Grantham','GRANTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10855,'8145','Granton','GRANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10856,'36313','Grantown On Spey','GRANTOWN ON SPEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10857,'7091','Grantown-on-spey','GRANTOWN-ON-SPEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10858,'28531','Grants','GRANTS',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10859,'21704','Grantsville','GRANTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10860,'29956','Grantville','GRANTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10861,'5397','Granville','GRANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10862,'29365','Granville','GRANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10863,'25710','Granville Ferry','GRANVILLE FERRY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10864,'39668','Granzay-gript','GRANZAY-GRIPT',NULL,'','France','',0,0,76,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10865,'41541','Grao De Castellon','GRAO DE CASTELLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10866,'30659','Grapevine','GRAPEVINE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10867,'158','Grasellenbach','GRASELLENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10868,'1001','Grasmere','GRASMERE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10869,'8146','Grasmere','GRASMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10870,'21705','Grasonville','GRASONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10871,'18512','Grass Valley','GRASS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10872,'22765','Grassau','GRASSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10873,'11980','Grassina','GRASSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10874,'40431','Grassobbio','GRASSOBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10875,'2293','Grasten','GRASTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10876,'38803','Gratentour','GRATENTOUR',NULL,'','France','',0,0,76,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10877,'42025','Grau Roig','GRAU ROIG',NULL,'','Andorra','',0,0,5,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10878,'23029','Graubunden','GRAUBUNDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10879,'969','Gravatai','GRAVATAI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10880,'14917','Gravdal','GRAVDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10881,'11981','Gravedona','GRAVEDONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10882,'22944','Gravelbourg','GRAVELBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10883,'6171','Gravelines','GRAVELINES',NULL,'','France','',0,0,76,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10884,'34507','Gravenhurst','GRAVENHURST',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10885,'426','Gravenwiesbach','GRAVENWIESBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10886,'8147','Gravesend','GRAVESEND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10887,'6437','Graveson','GRAVESON',NULL,'','France','',0,0,76,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10888,'11982','Gravina In Puglia','GRAVINA IN PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10889,'21202','Gray','GRAY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10890,'31511','Grayland','GRAYLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:59:20','1900-01-01 00:00:00',1,0,1),(10891,'22087','Grayling','GRAYLING',NULL,'','United States','',0,0,231,'2016-10-17 10:59:20','1900-01-01 00:00:00',1,0,1),(10892,'9298','Grays','GRAYS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10893,'1287','Grays','GRAYS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10894,'31512','Grays Harbor','GRAYS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10895,'7092','Grayshott','GRAYSHOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10896,'20572','Grayslake','GRAYSLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10897,'33645','Grayson','GRAYSON',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10898,'19377','Grayton Beach','GRAYTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10899,'20573','Grayville','GRAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10900,'3236','Grazalema','GRAZALEMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10901,'16438','Grazhdanka','GRAZHDANKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10902,'8148','Great Barr','GREAT BARR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10903,'43038','Great Barrier Island','GREAT BARRIER ISLAND',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10904,'42168','Great Barrier Reef-whitsundays','GREAT BARRIER REEF-WHITSUNDAYS',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10905,'21383','Great Barrington','GREAT BARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10906,'24883','Great Guana Cay','GREAT GUANA CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:24','1900-01-01 00:00:00',1,0,1),(10907,'43787','Great Harbour','GREAT HARBOUR',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 10:59:24','1900-01-01 00:00:00',1,0,1),(10908,'37113','Greater Addo Nationa','GREATER ADDO NATIONA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10909,'13808','Greater Guadalajara','GREATER GUADALAJARA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10910,'38512','Grebbestad','GREBBESTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10911,'24198','Grecia','GRECIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10912,'36127','Gredos','GREDOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10913,'28818','Greece','GREECE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10914,'33453','Greeley','GREELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10915,'25924','Green Community','GREEN COMMUNITY',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:59:28','1900-01-01 00:00:00',1,0,1),(10916,'17385','Green Island','GREEN ISLAND',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:59:28','1900-01-01 00:00:00',1,0,1),(10917,'32456','Green Point','GREEN POINT',NULL,'','South Africa','',0,0,195,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10918,'42422','Green Turtle','GREEN TURTLE',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10919,'31513','Greenbank','GREENBANK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10920,'21706','Greenbelt','GREENBELT',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10921,'29671','Greenburg','GREENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10922,'29957','Greencastle','GREENCASTLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10923,'28819','Greene','GREENE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10924,'33154','Greeneville','GREENEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10925,'32704','Greenfield','GREENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10926,'26001','Greenfield Park','GREENFIELD PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10927,'9331','Greenford','GREENFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10928,'39785','Greenhaugh','GREENHAUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10929,'38379','Greenhead','GREENHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10930,'7095','Greenholme','GREENHOLME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10931,'15105','Greenlane','GREENLANE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10932,'8154','Greenock','GREENOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10933,'27979','Greenough','GREENOUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10934,'28820','Greenport','GREENPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10935,'19816','Greensboro','GREENSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10936,'26227','Greensborough','GREENSBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10937,'20891','Greensburg','GREENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10938,'30660','Greenshores','GREENSHORES',NULL,'','United States','',0,0,231,'2016-10-17 10:59:35','1900-01-01 00:00:00',1,0,1),(10939,'26703','Greenslopes','GREENSLOPES',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10940,'20575','Greenup','GREENUP',NULL,'','United States','',0,0,231,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10941,'33647','Greenville','GREENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10942,'31514','Greenwater','GREENWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:40','1900-01-01 00:00:00',1,0,1),(10943,'28822','Greenwich','GREENWICH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10944,'8155','Greenwich','GREENWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10945,'27859','Greenwood','GREENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10946,'13095','Greenwood','GREENWOOD',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:59:42','1900-01-01 00:00:00',1,0,1),(10947,'30336','Greer','GREER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:43','1900-01-01 00:00:00',1,0,1),(10948,'8156','Greetham','GREETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10949,'27218','Greetsiel','GREETSIEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10950,'27367','Greffen','GREFFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10951,'27368','Grefrath','GREFRATH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10952,'24875','Gregory Town','GREGORY TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10953,'837','Greifswald','GREIFSWALD',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10954,'39095','Greiz','GREIZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10955,'2123','Grenaa','GRENAA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10956,'27860','Grenada','GRENADA',NULL,'','United States','',0,0,231,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10957,'9836','Grenada','GRENADA',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10958,'4270','Grenade-sur-ladour','GRENADE-SUR-LADOUR',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10959,'23218','Grenchen','GRENCHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10960,'6634','Grenoble','GRENOBLE',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10961,'9842','Grenville','GRENVILLE',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10962,'42107','Grenville Sur La Rouge','GRENVILLE SUR LA ROUGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10963,'6438','Greoux-les-bains','GREOUX-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10964,'29672','Gresham','GRESHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10965,'11983','Gressan','GRESSAN',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10966,'6635','Gresse-en-vercors','GRESSE-EN-VERCORS',NULL,'','France','',0,0,76,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10967,'11984','Gressoney-la-trinite','GRESSONEY-LA-TRINITE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10968,'39806','Gressoney-saint-jean','GRESSONEY-SAINT-JEAN',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10969,'40493','Gressvik','GRESSVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10970,'5851','Gressy','GRESSY',NULL,'','France','',0,0,76,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10971,'4271','Grésy-sur-aix','GRÉSY-SUR-AIX',NULL,'','France','',0,0,76,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10972,'28126','Gretna','GRETNA',NULL,'','United States','',0,0,231,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10973,'8157','Gretna Green','GRETNA GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10974,'11985','Greve','GREVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10975,'40133','Grevena','GREVENA',NULL,'','Greece','',0,0,86,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10976,'27369','Grevenbroich','GREVENBROICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10977,'838','Grevesmuhlen','GREVESMUHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10978,'15107','Grey Lynn','GREY LYNN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10979,'32101','Greybull','GREYBULL',NULL,'','United States','',0,0,231,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10980,'27980','Greycliff','GREYCLIFF',NULL,'','United States','',0,0,231,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10981,'15196','Greymouth','GREYMOUTH',NULL,'','New Zealand','Greymouth',0,0,157,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10982,'43022','Greytown','GREYTOWN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10983,'11986','Griante','GRIANTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10984,'27370','Griepshop','GRIEPSHOP',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10985,'26991','Gries','GRIES',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10986,'427','Griesheim','GRIESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10987,'19818','Griffin','GRIFFIN',NULL,'','United States','',0,0,231,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10988,'20895','Griffith','GRIFFITH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10989,'26632','Griffith','GRIFFITH',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10990,'11987','Grignano','GRIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10991,'6172','Grigny','GRIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10992,'6439','Grimaud','GRIMAUD',NULL,'','France','',0,0,76,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10993,'24626','Grimbergen','GRIMBERGEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10994,'23219','Grimentz','GRIMENTZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10995,'20215','Grimes','GRIMES',NULL,'','United States','',0,0,231,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10996,'839','Grimmen','GRIMMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10997,'34508','Grimsby','GRIMSBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10998,'8158','Grimsby','GRIMSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10999,'10978','Grimsey','GRIMSEY',NULL,'','Iceland','',0,0,100,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11000,'25317','Grimshaw','GRIMSHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11001,'14918','Grimstad','GRIMSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11002,'8159','Grimston','GRIMSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11003,'35440','Grindavik','GRINDAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11004,'23220','Grindelwald','GRINDELWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11005,'26843','Grindelwald','GRINDELWALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11006,'2260','Grindsted','GRINDSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11007,'20216','Grinnell','GRINNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11008,'39371','Grinon','GRINON',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11009,'25797','Grise Fiord','GRISE FIORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11010,'41796','Grisolia Lido - Calabria Coast','GRISOLIA LIDO - CALABRIA COAST',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11011,'19088','Griswold','GRISWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11012,'39748','Gritsa','GRITSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11013,'37209','Grittleton','GRITTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11014,'24416','Grobming','GROBMING',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11015,'27168','Grodig','GRODIG',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11016,'24895','Grodna','GRODNA',NULL,'','Belarus','',0,0,20,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11017,'43761','Groebming','GROEBMING',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11018,'708','Groemitz','GROEMITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11019,'30663','Groesbeck','GROESBECK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11020,'14537','Groesbeek','GROESBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11021,'39609','Groix','GROIX',NULL,'','France','',0,0,76,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11022,'27371','Gronau','GRONAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11023,'16824','Grondal','GRONDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11024,'14934','Grong','GRONG',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11025,'14559','Groningen','GRONINGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11026,'9857','Gronnedal','GRONNEDAL',NULL,'','Greenland','',0,0,87,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11027,'15585','Gronow','GRONOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11028,'43233','Groot-bijgaaden','GROOT-BIJGAADEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11029,'24627','Groot-bijgaarden','GROOT-BIJGAARDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11030,'26228','Groote Eylandt','GROOTE EYLANDT',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11031,'42255','Gropparello','GROPPARELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11032,'13051','Groppoli','GROPPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11033,'13581','Gros Islet','GROS ISLET',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11034,'40276','Grosio','GROSIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11035,'40136','Grosotto','GROSOTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11036,'6637','Grospierres','GROSPIERRES',NULL,'','France','',0,0,76,'2016-10-17 10:59:57','1900-01-01 00:00:00',1,0,1),(11037,'159','Gross Beuchow','GROSS BEUCHOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:57','1900-01-01 00:00:00',1,0,1),(11038,'27169','Grossarl','GROSSARL',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11039,'164','Grossbeeren','GROSSBEEREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11040,'165','Grossbettlingen','GROSSBETTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11041,'166','Grossburgwedel','GROSSBURGWEDEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11042,'22090','Grosse Pointe Park','GROSSE POINTE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11043,'167','Grossebersdorf','GROSSEBERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11044,'39867','Grossenbrode','GROSSENBRODE',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11045,'39815','Grossenzersdorf','GROSSENZERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11046,'12853','Grosseto','GROSSETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11047,'168','Gross-gerau','GROSS-GERAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11048,'39836','Grossliebringen','GROSSLIEBRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11049,'26968','Grossnondorf','GROSSNONDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11050,'16632','Grosuplje','GROSUPLJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11051,'36474','Grotli','GROTLI',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11052,'19089','Groton','GROTON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11053,'11988','Grottaferrata','GROTTAFERRATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11054,'11989','Grottammare','GROTTAMMARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11055,'6859','Grouville','GROUVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11056,'3664','Grove','GROVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11057,'18515','Groveland','GROVELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11058,'29368','Groveport','GROVEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:00:02','1900-01-01 00:00:00',1,0,1),(11059,'33874','Grover','GROVER',NULL,'','United States','',0,0,231,'2016-10-17 11:00:02','1900-01-01 00:00:00',1,0,1),(11060,'30664','Groves','GROVES',NULL,'','United States','',0,0,231,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11061,'19820','Grovetown','GROVETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11062,'16261','Groznyj','GROZNYJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11063,'11990','Grugliasco','GRUGLIASCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11064,'4857','Gruissan','GRUISSAN',NULL,'','France','',0,0,76,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11065,'22766','Grunau','GRUNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11066,'27131','Grunau Im Almtal','GRUNAU IM ALMTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11067,'10979','Grundarfjordur','GRUNDARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11068,'24417','Grundlsee','GRUNDLSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11069,'31122','Grundy','GRUNDY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11070,'1882','Grünhain-beierfeld','GRÜNHAIN-BEIERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11071,'774','Grünheide','GRÜNHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11072,'23221','Gruningen','GRUNINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11073,'22548','Grunwald','GRUNWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11074,'23222','Gruyeres','GRUYERES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11075,'23223','Gryon','GRYON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11076,'37408','Grythyttan','GRYTHYTTAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11077,'24461','Gschnitz','GSCHNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11078,'23224','Gstaad','GSTAAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11079,'23031','Gsteigwiler','GSTEIGWILER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11080,'41474','Guadahortuna','GUADAHORTUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11081,'3406','Guadalajara','GUADALAJARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11082,'42986','Guadalest','GUADALEST',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11083,'13810','Guadalupe','GUADALUPE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11084,'3637','Guadalupe','GUADALUPE',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11085,'43116','Guadarrama','GUADARRAMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11086,'9362','Guadeloupe','GUADELOUPE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11087,'3237','Guadiaro','GUADIARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11088,'3238','Guadix','GUADIX',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11089,'43054','Guagno Les Bains','GUAGNO LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11090,'963','Guaira','GUAIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11091,'968','Guajara Mirim','GUAJARA MIRIM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11092,'18517','Gualala','GUALALA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11093,'3550','Gualba','GUALBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11094,'11991','Gualdo Cattaneo','GUALDO CATTANEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11095,'41970','Gualeguaychu','GUALEGUAYCHU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11096,'3551','Gualta','GUALTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11097,'27654','Guam','GUAM',NULL,'','United States','',0,0,231,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11098,'9891','Guam','GUAM',NULL,'','Guam','',0,0,90,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11099,'35541','Guamo','GUAMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11100,'17386','Guan Zi Ling','GUAN ZI LING',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11101,'43788','Guana Island','GUANA ISLAND',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11102,'40988','Guanacaste','GUANACASTE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11103,'9967','Guanaja','GUANAJA',NULL,'','Honduras','',0,0,97,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11104,'14142','Guanajuato','GUANAJUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11105,'34866','Guang\'an','GUANG\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11106,'43533','Guangdong','GUANGDONG',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11107,'34865','Guanghan','GUANGHAN',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11108,'23960','Guangzhou','GUANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11109,'15751','Guanica','GUANICA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11110,'17387','Guanshan','GUANSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11111,'36414','Guanujuato','GUANUJUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11112,'44027','Guanxi','GUANXI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11113,'23803','Guanyintang','GUANYINTANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11114,'24102','Guapi','GUAPI',NULL,'','Colombia','',0,0,49,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11115,'24230','Guapiles','GUAPILES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11116,'35950','Guarajuba','GUARAJUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11117,'25058','Guarapari','GUARAPARI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11118,'38195','Guarapuava','GUARAPUAVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11119,'25121','Guararapes','GUARARAPES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11120,'42203','Guararema','GUARAREMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11121,'25201','Guaratingueta','GUARATINGUETA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11122,'23225','Guarda','GUARDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11123,'15968','Guarda','GUARDA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11124,'43520','Guardalavaca','GUARDALAVACA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11125,'3758','Guardamar Del Segura','GUARDAMAR DEL SEGURA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11126,'11993','Guardamiglio','GUARDAMIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11127,'11994','Guardavalle','GUARDAVALLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11128,'12993','Guardia Piemontese','GUARDIA PIEMONTESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11129,'11995','Guardistallo','GUARDISTALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11130,'38602','Guaro','GUARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11131,'25179','Guaruja','GUARUJA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11132,'25202','Guarulhos','GUARULHOS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11133,'14091','Guasave','GUASAVE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11134,'42897','Guayanilla','GUAYANILLA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11135,'2396','Guayaquil','GUAYAQUIL',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11136,'24946','Guayaramerin','GUAYARAMERIN',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11137,'42112','Guayas','GUAYAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11138,'13812','Guaymas','GUAYMAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11139,'11996','Gubbio','GUBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11140,'41353','Gudar','GUDAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11141,'2640','Gúdar','GÚDAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11142,'1570','Gudbrandsdalen','GUDBRANDSDALEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11143,'2163','Gudhjem','GUDHJEM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11144,'39171','Gudme','GUDME',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11145,'38269','Guduvancheri','GUDUVANCHERI',NULL,'','India','',0,0,101,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11146,'14978','Gudvangen','GUDVANGEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11147,'6762','Guebwiller','GUEBWILLER',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11148,'2641','Guejar Sierra','GUEJAR SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11149,'13697','Gueliz','GUELIZ',NULL,'','Morocco','',0,0,148,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11150,'34509','Guelph','GUELPH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11151,'169','Guelzow','GUELZOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11152,'1720','Guenzburg','GUENZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11153,'37973','Guerande','GUERANDE',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11154,'6004','Gueret','GUERET',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11155,'18518','Guerneville','GUERNEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11156,'9304','Guernsey','GUERNSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11157,'32102','Guernsey','GUERNSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11158,'38758','Guerreiros Do Rio','GUERREIROS DO RIO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11159,'13815','Guerrero Negro','GUERRERO NEGRO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11160,'39089','Guessing','GUESSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11161,'170','Guestrow','GUESTROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11162,'2087','Guetersloh','GUETERSLOH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11163,'5190','Guethary','GUETHARY',NULL,'','France','',0,0,76,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11164,'171','Guettin','GUETTIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11165,'14','Guggenthal','GUGGENTHAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11166,'23226','Guggisberg','GUGGISBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11167,'22549','Guglingen','GUGLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11168,'3363','Guia De Isora','GUIA DE ISORA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11169,'5000','Guidel','GUIDEL',NULL,'','France','',0,0,76,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11170,'11997','Guidonia','GUIDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11171,'41955','Guijo De Coria','GUIJO DE CORIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11172,'3453','Guijuelo','GUIJUELO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11173,'7096','Guilden Sutton','GUILDEN SUTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11174,'28826','Guilderland','GUILDERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11175,'8160','Guildford','GUILDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11176,'19090','Guilford','GUILFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11177,'23681','Guilin','GUILIN',NULL,'','China','',0,0,46,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11178,'37386','Guillaumes','GUILLAUMES',NULL,'','France','',0,0,76,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11179,'3239','Guillena','GUILLENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11180,'6440','Guillestre','GUILLESTRE',NULL,'','France','',0,0,76,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11181,'8161','Guilsborough','GUILSBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11182,'3364','Guimar','GUIMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11183,'15885','Guimaraes','GUIMARAES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11184,'17887','Guin','GUIN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11185,'5544','Guingamp','GUINGAMP',NULL,'','France','',0,0,76,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11186,'1282','Guipuzcoa - San Sebastian','GUIPUZCOA - SAN SEBASTIAN',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11187,'8162','Guisborough','GUISBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11188,'8163','Guiting Power','GUITING POWER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11189,'2964','Guitiriz','GUITIRIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11190,'23861','Guiyang','GUIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11191,'23870','Guizhou','GUIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11192,'5191','Gujan-mestras','GUJAN-MESTRAS',NULL,'','France','',0,0,76,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11193,'38526','Gulf Harbour','GULF HARBOUR',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11194,'3884','Gulf Of Finland','GULF OF FINLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11195,'8164','Gullane','GULLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11196,'17339','Gulluk','GULLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11197,'38955','Gulmarg','GULMARG',NULL,'','India','Gulmarg',13,0,101,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11198,'38582','Gulpen','GULPEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11199,'24752','Gulshan','GULSHAN',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11200,'17478','Gulu','GULU',NULL,'','Uganda','',0,0,226,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11201,'35816','Gumi','GUMI',NULL,'','South Korea','',0,0,197,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11202,'13492','Gumi','GUMI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11203,'41485','Gumiel De Mercado','GUMIEL DE MERCADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11204,'27372','Gummersbach','GUMMERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11205,'17209','Gumuldur','GUMULDUR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11206,'17297','Gumushane','GUMUSHANE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11207,'37871','Gumusluk','GUMUSLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11208,'30665','Gun Barrel City','GUN BARREL CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11209,'10523','Guna','GUNA',NULL,'','India','Guna ',15,0,101,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11210,'10227','Guna','GUNA',NULL,'','Indonesia','Guna ',0,0,102,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11211,'34186','Gundagai','GUNDAGAI',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11212,'17355','Gundogan','GUNDOGAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11213,'17266','Gungoren','GUNGOREN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11214,'42684','Gunma','GUNMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11215,'34187','Gunnedah','GUNNEDAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11216,'33456','Gunnison','GUNNISON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11217,'36912','Gunnsion','GUNNSION',NULL,'','United States','',0,0,231,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11218,'17890','Guntersville','GUNTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11219,'39580','Gunung Mulu National Park','GUNUNG MULU NATIONAL PARK',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11220,'22767','Gunzburg','GUNZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11221,'22550','Gunzenhausen','GUNZENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11222,'16221','Gura Humorului','GURA HUMORULUI',NULL,'','Romania','',0,0,179,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11223,'16493','Gurayat','GURAYAT',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11224,'18024','Gurdon','GURDON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11225,'10376','Gurgaon','','GGN','0','','Gurgaon : the city of guru dronacharya',9,0,101,'2016-10-17 11:00:26','2017-07-08 11:10:10',1,0,1),(11226,'41987','Guriri','GURIRI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11227,'20577','Gurnee','GURNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11228,'25064','Gurupi','GURUPI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11229,'37616','Guruvayur','GURUVAYUR',NULL,'','India','Guruvayur',3,0,101,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11230,'12823','Guspini','GUSPINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11231,'42147','Gussing','GUSSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11232,'9363','Gustavia','GUSTAVIA',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11233,'17637','Gustavus','GUSTAVUS',NULL,'','United States','',0,0,231,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11234,'18519','Gustine','GUSTINE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11235,'40689','Gutach Im Breisgau','GUTACH IM BREISGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11236,'27373','Gutersloh','GUTERSLOH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11237,'32910','Guthrie','GUTHRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11238,'41724','Guttannen','GUTTANNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11239,'23228','Guttingen','GUTTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11240,'10417','Guwahati','GUWAHATI',NULL,'','India','Guwahati Tour | Trip to Guwahati | Guwahati Tour P',10,0,101,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11241,'9895','Guyana','GUYANA',NULL,'','Guyana','',0,0,94,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11242,'4725','Guyancourt','GUYANCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11243,'32911','Guymon','GUYMON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11244,'43189','Guysborough','GUYSBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11245,'38664','Guzelyali','GUZELYALI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11246,'15301','Gwadar','GWADAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11247,'15302','Gwadur','GWADUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11248,'10524','Gwalior','GWALIOR',NULL,'','India','Gwalior',15,0,101,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11249,'35810','Gwangju','GWANGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11250,'42183','Gwent','GWENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11251,'32658','Gweru','GWERU',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11252,'22091','Gwinn','GWINN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11253,'23585','Gyalthang','GYALTHANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11254,'24571','Gyandzha','GYANDZHA',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11255,'42392','Gyantse','GYANTSE',NULL,'','China','',0,0,46,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11256,'10124','Gyenesdias','GYENESDIAS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11257,'35811','Gyeongju','GYEONGJU',NULL,'','South Korea','Gyeongju',0,0,197,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11258,'13493','Gyeongju','GYEONGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11259,'26409','Gympie','GYMPIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11260,'33458','Gypsum','GYPSUM',NULL,'','United States','',0,0,231,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11261,'42510','Gytheio','GYTHEIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11262,'9475','Gythion','GYTHION',NULL,'','Greece','',0,0,86,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11263,'10064','Gyula','GYULA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11264,'26153','Gyumri','GYUMRI',NULL,'','Armenia','',0,0,11,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11265,'14185','Gzira','GZIRA',NULL,'','Malta','',0,0,135,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11266,'43896','Haaksbergen','HAAKSBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11267,'39315','Haamstede','HAAMSTEDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11268,'27374','Haan','HAAN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11269,'3820','Haapsalu','HAAPSALU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11270,'198','Haar','HAAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11271,'14636','Haarlem','HAARLEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11272,'40389','Haast','HAAST',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11273,'13593','Habarana','HABARANA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11274,'34188','Haberfield','HABERFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11275,'13135','Hachijo Jima Island','HACHIJO JIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11276,'35739','Hachimantai','HACHIMANTAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11277,'13239','Hachinohe','HACHINOHE',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11278,'13415','Hachioji','HACHIOJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11279,'18520','Hacienda Heights','HACIENDA HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11280,'28287','Hackensack','HACKENSACK',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11281,'28288','Hackettstown','HACKETTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11282,'8165','Hackney','HACKNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11283,'37582','Hadahaa','HADAHAA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11284,'428','Hadamar','HADAMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11285,'8166','Haddington','HADDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11286,'28289','Haddonfield','HADDONFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11287,'2294','Haderslev','HADERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11288,'26229','Hadfield','HADFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11289,'28827','Hadley','HADLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11290,'7097','Hadley Wood','HADLEY WOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11291,'2148','Hadsten','HADSTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11292,'39174','Haegebostad','HAEGEBOSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11293,'39853','Haegeland','HAEGELAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11294,'43871','Haemeenlinna','HAEMEENLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11295,'19983','Haena','HAENA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11296,'32564','Haenertsburg','HAENERTSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11297,'26993','Haeselgehr','HAESELGEHR',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11298,'13521','Haeundae','HAEUNDAE',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11299,'42214','Hafar Al-batin','HAFAR AL-BATIN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11300,'37572','Hafez Hayyim','HAFEZ HAYYIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11301,'10980','Hafnarfjordur','HAFNARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11302,'16494','Hafr Albatin','HAFR ALBATIN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11303,'36475','Hafslo','HAFSLO',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11304,'3964','Haga','HAGA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11305,'3965','Hagalund','HAGALUND',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11306,'25452','Hagensborg','HAGENSBORG',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11307,'6763','Hagenthal-le-bas','HAGENTHAL-LE-BAS',NULL,'','France','',0,0,76,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11308,'20356','Hagerman','HAGERMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11309,'16825','Hagersten','HAGERSTEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11310,'21707','Hagerstown','HAGERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11311,'38158','Hagetmau','HAGETMAU',NULL,'','France','',0,0,76,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11312,'16787','Hagfors','HAGFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11313,'39959','Hagley','HAGLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11314,'22551','Hagnau','HAGNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11315,'6032','Hagondange','HAGONDANGE',NULL,'','France','',0,0,76,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11316,'28828','Hague','HAGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11317,'5041','Haguenau','HAGUENAU',NULL,'','France','',0,0,76,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11318,'19821','Hahira','HAHIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11319,'429','Hahn','HAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11320,'26803','Hahndorf','HAHNDORF',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11321,'1701','Hahneklee','HAHNEKLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11322,'42453','Hahnenklee','HAHNENKLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11323,'27219','Hahnenklee-bockswiese','HAHNENKLEE-BOCKSWIESE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11324,'42813','Hai Duong','HAI DUONG',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11325,'27132','Haibach','HAIBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11326,'23769','Haicang','HAICANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11327,'199','Haidmuhle','HAIDMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11328,'11024','Haifa','HAIFA',NULL,'','Israel','Haifa',0,0,106,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11329,'35417','Haifa-ness Ammim','HAIFA-NESS AMMIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11330,'36058','Haiger','HAIGER',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11331,'18521','Haight-ashbury','HAIGHT-ASHBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11332,'23559','Haikou','HAIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11333,'19984','Haiku','HAIKU',NULL,'','United States','',0,0,231,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11334,'16495','Hail','HAIL',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11335,'41','Hailar','HAILAR',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11336,'20357','Hailey','HAILEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11337,'8167','Hailsham','HAILSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11338,'34867','Hailuo Valley Scenic','HAILUO VALLEY SCENIC',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11339,'38193','Haiming','HAIMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11340,'43352','Hainan Island','HAINAN ISLAND',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11341,'34868','Hainan-haikou','HAINAN-HAIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11342,'34896','Hainan-qiong Hai','HAINAN-QIONG HAI',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11343,'34905','Hainan-sanya','HAINAN-SANYA',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11344,'34918','Hainan-xinglong','HAINAN-XINGLONG',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11345,'24581','Hainaut','HAINAUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11346,'17638','Haines','HAINES',NULL,'','United States','',0,0,231,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11347,'42110','Haines Junction','HAINES JUNCTION',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11348,'23696','Haining','HAINING',NULL,'','China','',0,0,46,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11349,'32252','Haiphong','HAIPHONG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11350,'23586','Haizhu','HAIZHU',NULL,'','China','',0,0,46,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11351,'10074','Hajduszoboszlo','HAJDUSZOBOSZLO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11352,'37322','Hajinbu','HAJINBU',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11353,'19985','Hakalau','HAKALAU',NULL,'','United States','',0,0,231,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11354,'13110','Hakata','HAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11355,'16159','Hakaui','HAKAUI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11356,'17373','Hakkari','HAKKARI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11357,'13389','Hakodate','HAKODATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11358,'13240','Hakone','HAKONE',NULL,'','Japan','Hakone',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11359,'13136','Hakuba','HAKUBA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11360,'44256','Hakuraa Huraa','HAKURAA HURAA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11361,'40648','Halaveli','HALAVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11362,'1935','Halberstadt','HALBERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11363,'200','Halblech','HALBLECH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11364,'14961','Halden','HALDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11365,'24462','Haldensee','HALDENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11366,'44208','Haldia','HALDIA',NULL,'','India','Haldia',12,0,101,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11367,'40812','Haldwani','HALDWANI',NULL,'','India','',0,0,101,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11368,'8168','Hale','HALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11369,'19986','Haleiwa','HALEIWA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11370,'19987','Halena','HALENA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11371,'8169','Halesworth','HALESWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11372,'21709','Halethorpe','HALETHORPE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11373,'17891','Haleyville','HALEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11374,'18522','Half Moon Bay','HALF MOON BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11375,'15108','Halfmoon Bay','HALFMOON BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11376,'25453','Halfmoon Bay','HALFMOON BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11377,'29673','Halfway','HALFWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11378,'34510','Haliburton','HALIBURTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11379,'17639','Halibut Cove','HALIBUT COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11380,'8170','Halifax','HALIFAX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11381,'25711','Halifax','HALIFAX',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11382,'41166','Halkirk','HALKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11383,'8171','Halkyn','HALKYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11384,'25798','Hall Beach','HALL BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11385,'16672','Halland','HALLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11386,'19384','Hallandale','HALLANDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11387,'7098','Hallbankgate','HALLBANKGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11388,'201','Hallbergmoos','HALLBERGMOOS',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11389,'172','Halle','HALLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11390,'40433','Halle','HALLE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11391,'39384','Hallein','HALLEIN',NULL,'','Austria','Hallein',0,0,14,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11392,'27375','Hallenberg','HALLENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11393,'37723','Haller','HALLER',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11394,'30666','Hallettsville','HALLETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11395,'27401','Hallock','HALLOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11396,'10981','Hallormsstadur','HALLORMSSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11397,'21875','Hallowell','HALLOWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11398,'26230','Halls Creek','HALLS CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11399,'16759','Hallsberg','HALLSBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11400,'38753','Hallstatt','HALLSTATT',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11401,'16826','Hallstavik','HALLSTAVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11402,'29962','Hallstead','HALLSTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11403,'37880','Halluin','HALLUIN',NULL,'','France','',0,0,76,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11404,'16705','Halmstad','HALMSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11405,'43280','Halong','HALONG',NULL,'','Vietnam','Halong',0,0,236,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11406,'17154','Halq Al Wadi','HALQ AL WADI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11407,'39516','Halsenbach','HALSENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11408,'29674','Halsey','HALSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11409,'37217','Halstead','HALSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11410,'710','Halstenbek','HALSTENBEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11411,'15197','Halswell','HALSWELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11412,'30667','Haltom City','HALTOM CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11413,'8172','Haltwhistle','HALTWHISTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11414,'8173','Halvergate','HALVERGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11415,'16928','Hama','HAMA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11416,'43904','Hamada','HAMADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11417,'13410','Hamamatsu','HAMAMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11418,'14891','Hamar','HAMAR',NULL,'','Norway','Hamar',0,0,164,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11419,'1662','Hamat Gader','HAMAT GADER',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11420,'44055','Hambach','HAMBACH',NULL,'','France','',0,0,76,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11421,'44029','Hambantota','HAMBANTOTA',NULL,'','Sri Lanka','Hambantota',0,0,200,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11422,'8174','Hambleton','HAMBLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11423,'8175','Hambrook','HAMBROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11424,'176','Hambuehren','HAMBUEHREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11425,'29963','Hamburg','HAMBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11426,'379','Hamburg','HAMBURG',NULL,'','Germany','Hamburg',0,0,83,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11427,'19091','Hamden','HAMDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11428,'39754','Hamdeok','HAMDEOK',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11429,'3912','Hameenlinna','HAMEENLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11430,'27403','Hamel','HAMEL',NULL,'','United States','',0,0,231,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11431,'27220','Hameln','HAMELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11432,'34871','Hami','HAMI',NULL,'','China','',0,0,46,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11433,'8176','Hamilton','HAMILTON',NULL,'','United Kingdom','Hamilton',0,0,229,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11434,'28291','Hamilton','HAMILTON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11435,'34511','Hamilton','HAMILTON',NULL,'','Canada','Hamilton',0,0,39,'2016-10-17 11:00:58','1900-01-01 00:00:00',1,0,1),(11436,'24936','Hamilton','HAMILTON',NULL,'','Bermuda','Hamilton',0,0,24,'2016-10-17 11:00:59','1900-01-01 00:00:00',1,0,1),(11437,'15198','Hamilton','HAMILTON',NULL,'','New Zealand','Hamilton',0,0,157,'2016-10-17 11:00:59','1900-01-01 00:00:00',1,0,1),(11438,'3966','Hamina','HAMINA',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11439,'29964','Hamlin','HAMLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11440,'631','Hamm','HAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11441,'17169','Hammam Sousse','HAMMAM SOUSSE',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11442,'13105','Hammamat Main','HAMMAMAT MAIN',NULL,'','Jordan','',0,0,111,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11443,'17183','Hammamet','HAMMAMET',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11444,'43079','Hammana Valley','HAMMANA VALLEY',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11445,'14876','Hammerfest','HAMMERFEST',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11446,'8177','Hammersmith','HAMMERSMITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11447,'27376','Hamminkeln','HAMMINKELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:02','1900-01-01 00:00:00',1,0,1),(11448,'20579','Hammond','HAMMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:01:02','1900-01-01 00:00:00',1,0,1),(11449,'28832','Hammondsport','HAMMONDSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11450,'28292','Hammonton','HAMMONTON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11451,'40852','Hampi','HAMPI',NULL,'','India','Hampi',17,0,101,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11452,'20580','Hampshire','HAMPSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11453,'26002','Hampstead','HAMPSTEAD',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:04','1900-01-01 00:00:00',1,0,1),(11454,'26368','Hampton','HAMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:05','1900-01-01 00:00:00',1,0,1),(11455,'7102','Hampton Court','HAMPTON COURT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:06','1900-01-01 00:00:00',1,0,1),(11456,'28834','Hamptons','HAMPTONS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11457,'33875','Hamptonville','HAMPTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11458,'14773','Hamresanden','HAMRESANDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11459,'8179','Hamsterley','HAMSTERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11460,'22092','Hamtramck','HAMTRAMCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11461,'30338','Hanahan','HANAHAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11462,'19989','Hanalei','HANALEI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11463,'13241','Hanamaki','HANAMAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11464,'19990','Hanamaulu','HANAMAULU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11465,'19991','Hanapepe','HANAPEPE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11466,'179','Hanau','HANAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11467,'17893','Hanceville','HANCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11468,'34869','Hancheng','HANCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11469,'22093','Hancock','HANCOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11470,'43905','Handa','HANDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11471,'23804','Handan','HANDAN',NULL,'','China','',0,0,46,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11472,'13137','Haneda Airport (Hnd)','HANEDA AIRPORT (HND)',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11473,'25454','Haney','HANEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11474,'18524','Hanford','HANFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11475,'9923','Hang Hau Town','HANG HAU TOWN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11476,'23501','Hanga Roa','HANGA ROA',NULL,'','Chile','',0,0,45,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11477,'16766','Haninge','HANINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11478,'30668','Hankamer','HANKAMER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11479,'28062','Hankinson','HANKINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11480,'8180','Hanley Swan','HANLEY SWAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11481,'15200','Hanmer Springs','HANMER SPRINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11482,'25318','Hanna','HANNA',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11483,'27655','Hannibal','HANNIBAL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11484,'13406','Hanno','HANNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11485,'32708','Hannover','HANNOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11486,'180','Hannover','HANNOVER',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11487,'43281','Hanoi','HANOI',NULL,'','Vietnam','Hanoi',0,0,236,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11488,'21389','Hanover','HANOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11489,'13081','Hanover','HANOVER',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11490,'34513','Hanover','HANOVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:15','1900-01-01 00:00:00',1,0,1),(11491,'40813','Hansi','HANSI',NULL,'','India','',0,0,101,'2016-10-17 11:01:15','1900-01-01 00:00:00',1,0,1),(11492,'8181','Hanslope','HANSLOPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11493,'21390','Hanson','HANSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11494,'42912','Hanson Bay','HANSON BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11495,'27221','Hanstedt','HANSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11496,'2337','Hanstholm','HANSTHOLM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11497,'23937','Hanzhong','HANZHONG',NULL,'','China','',0,0,46,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11498,'10690','Haora','HAORA',NULL,'','India','',0,0,101,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11499,'19992','Haou','HAOU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11500,'16751','Haparanda','HAPARANDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11501,'19824','Hapeville','HAPEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11502,'9924','Happy Valley','HAPPY VALLEY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11503,'25658','Happy Valley - Goose Bay','HAPPY VALLEY - GOOSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11504,'15072','Hapuku','HAPUKU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11505,'21207','Harahan','HARAHAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11506,'38996','Haraki','HARAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11507,'32659','Harare','HARARE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11508,'22094','Harbert','HARBERT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11509,'37558','Harbeson','HARBESON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11510,'23784','Harbin','HARBIN',NULL,'','China','',0,0,46,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11511,'29966','Harborcreek','HARBORCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11512,'9900','Harbour City','HARBOUR CITY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11513,'13084','Harbour View','HARBOUR VIEW',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11514,'202','Harburg','HARBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11515,'14799','Hardanger Fjord','HARDANGER FJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11516,'42404','Hardangerfjord','HARDANGERFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11517,'30339','Hardeeville','HARDEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11518,'41456','Hardelot-plage','HARDELOT-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11519,'14750','Hardenberg','HARDENBERG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11520,'14538','Harderwijk','HARDERWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11521,'33648','Hardin','HARDIN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11522,'18025','Hardy','HARDY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11523,'14906','Hareid','HAREID',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11524,'39984','Harel','HAREL',NULL,'','Israel','',0,0,106,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11525,'14560','Haren','HAREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11526,'15201','Harewood','HAREWOOD',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11527,'5815','Harfleur','HARFLEUR',NULL,'','France','',0,0,76,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11528,'43034','Hari Hari','HARI HARI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11529,'38882','Haria','HARIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11530,'10525','Haridwar','HARIDWAR',NULL,'','India','Haridwar Travel & Tour package | Haridwar Holiday ',9,0,101,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11531,'8182','Haringey','HARINGEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11532,'38150','Harjavalta','HARJAVALTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11533,'35340','Harkany','HARKANY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11534,'37300','Harkány','HARKÁNY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11535,'30669','Harker Heights','HARKER HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11536,'32457','Harkerville','HARKERVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11537,'203','Harlaching','HARLACHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11538,'33649','Harlan','HARLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11539,'8183','Harlech','HARLECH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11540,'27222','Harlesiel','HARLESIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11541,'29967','Harleysville','HARLEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11542,'30340','Harleyville','HARLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11543,'30670','Harlingen','HARLINGEN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11544,'8184','Harlow','HARLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11545,'29968','Harmarville','HARMARVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11546,'27404','Harmony','HARMONY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11547,'16804','Harnosand','HARNOSAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11548,'2965','Haro','HARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11549,'8185','Harpenden','HARPENDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11550,'43595','Harpender','HARPENDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11551,'38858','Harper','HARPER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11552,'31989','Harpers Ferry','HARPERS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11553,'2029','Harpstedt','HARPSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11554,'24310','Harrachov','HARRACHOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11555,'42134','Harrington','HARRINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11556,'19224','Harrington','HARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11557,'26003','Harrington Harbour','HARRINGTON HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11558,'29969','Harrisburg','HARRISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11559,'711','Harrislee','HARRISLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11560,'32545','Harrismith','HARRISMITH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11561,'28838','Harrison','HARRISON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11562,'25455','Harrison Hot Springs','HARRISON HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11563,'31124','Harrisonburg','HARRISONBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11564,'27656','Harrisonville','HARRISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11565,'29971','Harrisville','HARRISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11566,'33650','Harrodsburg','HARRODSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11567,'8186','Harrogate','HARROGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11568,'8187','Harrow','HARROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11569,'44249','Harryda','HARRYDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11570,'14989','Harstad','HARSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11571,'26512','Harston','HARSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11572,'26994','Hart Bei Graz','HART BEI GRAZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11573,'24418','Hartberg','HARTBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11574,'19092','Hartford','HARTFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11575,'8188','Hartington','HARTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11576,'8189','Hartland','HARTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11577,'22100','Hartland','HARTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11578,'38474','Hartland','HARTLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11579,'8190','Hartlebury','HARTLEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11580,'8191','Hartlepool','HARTLEPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11581,'25456','Hartley Bay','HARTLEY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11582,'1972','Hartmannsdorf','HARTMANNSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11583,'37982','Hartpury','HARTPURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11584,'17894','Hartselle','HARTSELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11585,'40393','Hartsfield-jackson Atlanta International Airport','HARTSFIELD-JACKSON ATLANTA INTERNATIONAL AIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11586,'30341','Hartsville','HARTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11587,'19825','Hartwell','HARTWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11588,'20584','Harvard','HARVARD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11589,'20585','Harvey','HARVEY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11590,'25319','Harvie Heights','HARVIE HEIGHTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11591,'8192','Harwich','HARWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11592,'21391','Harwich','HARWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11593,'20586','Harwood Heights','HARWOOD HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11594,'28296','Hasbrouck Heights','HASBROUCK HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11595,'1936','Haselhorst','HASELHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11596,'23032','Hasenstrick','HASENSTRICK',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11597,'28297','Haskell','HASKELL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11598,'24773','Haskovo','HASKOVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11599,'8193','Haslemere','HASLEMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11600,'2328','Haslev','HASLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11601,'23033','Hasliberg','HASLIBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11602,'24582','Haspengouw','HASPENGOUW',NULL,'','Belgium','',0,0,21,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11603,'10657','Hassan','HASSAN',NULL,'','India','Hassan',17,0,101,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11604,'24628','Hasselt','HASSELT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11605,'40008','Hassi Messaoud','HASSI MESSAOUD',NULL,'','Algeria','',0,0,3,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11606,'16864','Hassleholm','HASSLEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11607,'2052','Hassloch','HASSLOCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11608,'43596','Hassocks','HASSOCKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11609,'26513','Hastings','HASTINGS',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11610,'27405','Hastings','HASTINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11611,'15202','Hastings','HASTINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11612,'8194','Hastings','HASTINGS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11613,'25232','Hastings','HASTINGS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11614,'28839','Hastings-on-hudson','HASTINGS-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11615,'14877','Hasvik','HASVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11616,'7103','Haswell Plough','HASWELL PLOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11617,'16954','Hat Yai','HAT YAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11618,'16262','Hatanga','HATANGA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11619,'41732','Hatay','HATAY',NULL,'','Turkey','',0,0,222,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11620,'29972','Hatboro','HATBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11621,'33339','Hatch','HATCH',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11622,'13242','Hateruma','HATERUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11623,'9254','Hatfield','HATFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11624,'32565','Hatfield','HATFIELD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11625,'14205','Hatgal','HATGAL',NULL,'','Mongolia','',0,0,146,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11626,'8197','Hathersage','HATHERSAGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11627,'38855','Hatillo','HATILLO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11628,'38046','Hatsukaichi','HATSUKAICHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11629,'25925','Hatta','HATTA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11630,'430','Hattenheim','HATTENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11631,'431','Hattersheim','HATTERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11632,'27862','Hattiesburg','HATTIESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11633,'501','Hattingen','HATTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11634,'20901','Haubstadt','HAUBSTADT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11635,'44056','Hauconcourt','HAUCONCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11636,'22552','Hauenstein','HAUENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11637,'14968','Haugesund','HAUGESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11638,'3944','Haukipudas','HAUKIPUDAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11639,'28840','Hauppauge','HAUPPAUGE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11640,'22553','Hausern','HAUSERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11641,'26995','Hausruckviertel','HAUSRUCKVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11642,'4272','Haute Marne','HAUTE MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11643,'4273','Haute-loire','HAUTE-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11644,'23229','Hauterive','HAUTERIVE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11645,'4274','Hautes Alpes','HAUTES ALPES',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11646,'4275','Haute-saone','HAUTE-SAONE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11647,'4276','Haute-savoie','HAUTE-SAVOIE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11648,'4277','Haute-vienne','HAUTE-VIENNE',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11649,'39869','Hauteville-lompnes','HAUTEVILLE-LOMPNES',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11650,'4278','Haut-jura Regional Nature Reserve','HAUT-JURA REGIONAL NATURE RESERVE',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11651,'4279','Haut-rhin','HAUT-RHIN',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11652,'19993','Hauula','HAUULA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11653,'205','Hauzenberg','HAUZENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11654,'20587','Havana','HAVANA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11655,'34941','Havana','HAVANA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11656,'8198','Havant','HAVANT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11657,'33877','Havelock','HAVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11658,'37167','Havelock Island','HAVELOCK ISLAND',NULL,'','INDIA','Havelock Island',22,0,101,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11659,'15203','Havelock North','HAVELOCK NORTH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11660,'8199','Haverfordwest','HAVERFORDWEST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11661,'8200','Haverhill','HAVERHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11662,'21394','Haverhill','HAVERHILL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11663,'7104','Havering','HAVERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11664,'28841','Haverstraw','HAVERSTRAW',NULL,'','United States','',0,0,231,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11665,'29973','Havertown','HAVERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11666,'502','Havixbeck','HAVIXBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11667,'2295','Havneby','HAVNEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11668,'14878','Havoysund','HAVOYSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11669,'27984','Havre','HAVRE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11670,'26004','Havre-st. Pierre','HAVRE-ST. PIERRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:49','1900-01-01 00:00:00',1,0,1),(11671,'1434','Hawaii - Kauai - Hi','HAWAII - KAUAI - HI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:49','1900-01-01 00:00:00',1,0,1),(11672,'38405','Hawaiian Gardens','HAWAIIAN GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:50','1900-01-01 00:00:00',1,0,1),(11673,'36929','Hawaii-hilo','HAWAII-HILO',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11674,'36920','Hawaii-hualalai','HAWAII-HUALALAI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11675,'36941','Hawaii-kamuela','HAWAII-KAMUELA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11676,'36945','Hawaii-keauhou','HAWAII-KEAUHOU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11677,'36948','Hawaii-kohala Coast','HAWAII-KOHALA COAST',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11678,'36947','Hawaii-kona','HAWAII-KONA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11679,'36915','Hawaii-mauna Kea','HAWAII-MAUNA KEA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11680,'37055','Hawaii-waikoloa','HAWAII-WAIKOLOA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11681,'42775','Hawalli','HAWALLI',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11682,'43941','Hawally','HAWALLY',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11683,'38554','Hawar','HAWAR',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11684,'43630','Hawera','HAWERA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11685,'8201','Hawes','HAWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11686,'19995','Hawi','HAWI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11687,'8202','Hawick','HAWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11688,'8203','Hawkchurch','HAWKCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11689,'26453','Hawker','HAWKER',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11690,'42181','Hawkes Bay','HAWKES BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11691,'25659','Hawkes Bay','HAWKES BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11692,'15111','Hawke\'s Bay','HAWKE\'S BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11693,'34514','Hawkesbury','HAWKESBURY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11694,'19827','Hawkinsville','HAWKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11695,'24851','Hawks Nest','HAWKS NEST',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11696,'34189','Hawksbury Valley','HAWKSBURY VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11697,'8204','Hawkshead','HAWKSHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11698,'39366','Hawkswick','HAWKSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11699,'29974','Hawley','HAWLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11700,'8205','Hawnby','HAWNBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11701,'8206','Haworth','HAWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11702,'7','Hawthorn','HAWTHORN',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11703,'28842','Hawthorne','HAWTHORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11704,'34190','Hay','HAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11705,'25769','Hay River','HAY RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11706,'20359','Hayden','HAYDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11707,'8207','Haydock','HAYDOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11708,'8208','Haydon Bridge','HAYDON BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11709,'8209','Hayes','HAYES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11710,'31126','Hayes','HAYES',NULL,'','United States','',0,0,231,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11711,'8210','Hayle','HAYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11712,'7105','Hayling Island','HAYLING ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11713,'43578','Hayman','HAYMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11714,'7106','Hay-on-wye','HAY-ON-WYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11715,'21061','Hays','HAYS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11716,'27657','Hayti','HAYTI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11717,'31766','Hayward','HAYWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11718,'8211','Haywards Heath','HAYWARDS HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11719,'33651','Hazard','HAZARD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11720,'6173','Hazebrouck','HAZEBROUCK',NULL,'','France','',0,0,76,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11721,'20588','Hazel Crest','HAZEL CREST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11722,'34515','Hazeldean','HAZELDEAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:01','1900-01-01 00:00:00',1,0,1),(11723,'19828','Hazelhurst','HAZELHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:01','1900-01-01 00:00:00',1,0,1),(11724,'33459','Hazeltine Heights','HAZELTINE HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11725,'31990','Hazelton','HAZELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11726,'27659','Hazelwood','HAZELWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11727,'18027','Hazen','HAZEN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11728,'14714','Hazerswoude-dorp','HAZERSWOUDE-DORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11729,'14715','Hazerswoude-rijndijk','HAZERSWOUDE-RIJNDIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11730,'27864','Hazlehurst','HAZLEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11731,'7107','Hazlerigg','HAZLERIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11732,'28298','Hazlet','HAZLET',NULL,'','United States','',0,0,231,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11733,'29975','Hazleton','HAZLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11734,'35834','Hazmeih','HAZMEIH',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11735,'32566','Hazyview','HAZYVIEW',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11736,'25713','Head Of Jeddore','HEAD OF JEDDORE',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11737,'41530','Headford','HEADFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11738,'39674','Headingley','HEADINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11739,'8212','Headington','HEADINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11740,'7108','Headlam','HEADLAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11741,'18528','Healdsburg','HEALDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11742,'38665','Healesville','HEALESVILLE',NULL,'','Australia','Healesville',0,0,13,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11743,'17640','Healy','HEALY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11744,'30671','Hearne','HEARNE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11745,'34516','Hearst','HEARST',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11746,'19386','Heartland','HEARTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11747,'29372','Heath','HEATH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11748,'25714','Heatherton','HEATHERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11749,'8213','Heathfield','HEATHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11750,'8214','Heathrow','HEATHROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11751,'19387','Heathrow','HEATHROW',NULL,'','United States','',0,0,231,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11752,'32912','Heavener','HEAVENER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11753,'21714','Hebbville','HEBBVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11754,'8215','Hebden Bridge','HEBDEN BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11755,'18149','Heber','HEBER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11756,'23792','Hebi','HEBI',NULL,'','China','',0,0,46,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11757,'1312','Hebrides','HEBRIDES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11758,'25715','Hebron','HEBRON',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11759,'13930','Hecelchakan','HECELCHAKAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11760,'25600','Hecla Island','HECLA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11761,'38005','Hector','HECTOR',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11762,'8216','Heddon-on-the-wall','HEDDON-ON-THE-WALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11763,'2212','Hedehusene','HEDEHUSENE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11764,'31991','Hedgesville','HEDGESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11765,'14800','Hedmark','HEDMARK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11766,'19996','Heeia','HEEIA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11767,'14539','Heelsum','HEELSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11768,'14637','Heemskerk','HEEMSKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11769,'14512','Heerenveen','HEERENVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11770,'14571','Heerlen','HEERLEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11771,'23682','Hefei','HEFEI',NULL,'','China','',0,0,46,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11772,'17895','Heflin','HEFLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11773,'23589','Hegang','HEGANG',NULL,'','China','',0,0,46,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11774,'40119','Heggenes','HEGGENES',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11775,'38303','Hegyko','HEGYKO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11776,'26514','Heidelberg','HEIDELBERG',NULL,'','Australia','Heidelberg',0,0,13,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11777,'32458','Heidelberg','HEIDELBERG',NULL,'','South Africa','Heidelberg',0,0,195,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11778,'183','Heidelberg','HEIDELBERG',NULL,'','Germany','Heidelberg',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11779,'36061','Heidelberg-hirschber','HEIDELBERG-HIRSCHBER',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11780,'36068','Heidelberg-ladenburg','HEIDELBERG-LADENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11781,'36092','Heidelberg-schwetzin','HEIDELBERG-SCHWETZIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11782,'36106','Heidelberg-walldorf','HEIDELBERG-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11783,'23230','Heiden','HEIDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11784,'36059','Heidenheim','HEIDENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11785,'206','Heigenbrucken','HEIGENBRUCKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11786,'23785','Heihe','HEIHE',NULL,'','China','',0,0,46,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11787,'14467','Heijenrath','HEIJENRATH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11788,'40797','Heilbad Heiligenstadt','HEILBAD HEILIGENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11789,'207','Heilbronn','HEILBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11790,'27073','Heiligenblut','HEILIGENBLUT',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11791,'184','Heiligendamm','HEILIGENDAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11792,'503','Heiligenhaus','HEILIGENHAUS',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11793,'632','Heiligenroth','HEILIGENROTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11794,'23231','Heiligenschwendi','HEILIGENSCHWENDI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11795,'1998','Heiligensee Nord','HEILIGENSEE NORD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11796,'208','Heiligenthal','HEILIGENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11797,'6033','Heillecourt','HEILLECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11798,'14638','Heiloo','HEILOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11799,'38485','Heimbach','HEIMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11800,'37365','Heimfeld','HEIMFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11801,'37439','Heimschuh','HEIMSCHUH',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11802,'209','Heinersdorf','HEINERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11803,'3936','Heinola','HEINOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11804,'22555','Heitersheim','HEITERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11805,'43906','Hekinan','HEKINAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11806,'32459','Helderberg','HELDERBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11807,'19830','Helen','HELEN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11808,'27985','Helena','HELENA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:16','1900-01-01 00:00:00',1,0,1),(11809,'18530','Helendale','HELENDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11810,'13734','Helengeli','HELENGELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11811,'8217','Helensburgh','HELENSBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11812,'712','Helgoland','HELGOLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11813,'14935','Hell','HELL',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11814,'16185','Hell Bourg','HELL BOURG',NULL,'','Reunion','',0,0,178,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11815,'10966','Hella','HELLA',NULL,'','Iceland','',0,0,100,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11816,'7110','Hellaby','HELLABY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11817,'14751','Hellendoorn','HELLENDOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11818,'29977','Hellertown','HELLERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11819,'2213','Hellerup','HELLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11820,'8218','Hellesdon','HELLESDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11821,'14907','Hellesylt','HELLESYLT',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11822,'8219','Hellidon','HELLIDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11823,'8220','Hellingly','HELLINGLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11824,'25889','Hell\'s Gate','HELL\'S GATE',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11825,'16702','Hellvi','HELLVI',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11826,'14598','Helmond','HELMOND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11827,'8221','Helmsley','HELMSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11828,'22556','Helmstadt','HELMSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11829,'27224','Helmstedt','HELMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11830,'27225','Helmstorf','HELMSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11831,'16865','Helsingborg','HELSINGBORG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11832,'2173','Helsinge','HELSINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11833,'2174','Helsingor','HELSINGOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11834,'3967','Helsinki','HELSINKI',NULL,'','Finland','Helsinki',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11835,'35119','Helsinki-espoo','HELSINKI-ESPOO',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11836,'35123','Helsinki-vantaa','HELSINKI-VANTAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11837,'8222','Helston','HELSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11838,'16794','Hemavan','HEMAVAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11839,'13735','Hembadu','HEMBADU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11840,'8223','Hemel Hempstead','HEMEL HEMPSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11841,'18531','Hemet','HEMET',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11842,'30672','Hemphill','HEMPHILL',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11843,'30673','Hempstead','HEMPSTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11844,'14866','Hemsedal','HEMSEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11845,'5192','Hendaye','HENDAYE',NULL,'','France','',0,0,76,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11846,'15112','Henderson','HENDERSON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11847,'33654','Henderson','HENDERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11848,'33882','Hendersonville','HENDERSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:23','1900-01-01 00:00:00',1,0,1),(11849,'43597','Henfield','HENFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:23','1900-01-01 00:00:00',1,0,1),(11850,'17388','Hengchun','HENGCHUN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11851,'14752','Hengelo','HENGELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11852,'23814','Hengshan','HENGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11853,'23805','Hengshui','HENGSHUI',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11854,'23815','Hengyang','HENGYANG',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11855,'7111','Henlade','HENLADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11856,'26233','Henley Brook','HENLEY BROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11857,'8224','Henley In Arden','HENLEY IN ARDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11858,'7112','Henley-on-thames','HENLEY-ON-THAMES',NULL,'','United Kingdom','Henley-on-Thames',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11859,'8225','Henlow','HENLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11860,'5545','Hennebont','HENNEBONT',NULL,'','France','',0,0,76,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11861,'504','Hennef','HENNEF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11862,'775','Hennigsdorf','HENNIGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11863,'32712','Henniker','HENNIKER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11864,'44023','Henningsv','HENNINGSV',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11865,'14919','Henningsvær','HENNINGSVÆR',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11866,'16203','Henri Coanda International Airport (Otp)','HENRI COANDA INTERNATIONAL AIRPORT (OTP)',NULL,'','Romania','',0,0,179,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11867,'30675','Henrietta','HENRIETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11868,'28845','Henrietta, Town Of','HENRIETTA, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11869,'20589','Henry','HENRY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11870,'32913','Henryetta','HENRYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11871,'29978','Henryville','HENRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11872,'9263','Hensol','HENSOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11873,'28846','Hensonville','HENSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11874,'713','Henstedt-ulzburg','HENSTEDT-ULZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11875,'14408','Henties Bay','HENTIES BAY',NULL,'','Namibia','',0,0,151,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11876,'34773','Hepburn Springs','HEPBURN SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11877,'37918','Hephzibah','HEPHZIBAH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11878,'185','Heppenheim','HEPPENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11879,'4280','Herault','HERAULT',NULL,'','France','',0,0,76,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11880,'24698','Herbeumont','HERBEUMONT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11881,'5852','Herblay','HERBLAY',NULL,'','France','',0,0,76,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11882,'22557','Herbolzheim','HERBOLZHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11883,'32367','Herceg Novi','HERCEG NOVI',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11884,'37180','Herceghalom','HERCEGHALOM',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11885,'505','Herdecke','HERDECKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11886,'24171','Heredia','HEREDIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11887,'18151','Hereford','HEREFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11888,'8226','Hereford','HEREFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11889,'7113','Herefordshire','HEREFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11890,'34849','Herentals','HERENTALS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11891,'506','Herford','HERFORD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11892,'23232','Hergiswil','HERGISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11893,'6238','Heric','HERIC',NULL,'','France','',0,0,76,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11894,'433','Heringhausen','HERINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11895,'41636','Heringsdorf','HERINGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11896,'21063','Herington','HERINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11897,'23233','Herisau','HERISAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11898,'37565','Herkenbosch','HERKENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11899,'28847','Herkimer','HERKIMER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11900,'434','Herleshausen','HERLESHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11901,'2214','Herlev','HERLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11902,'27074','Hermagor','HERMAGOR',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11903,'23234','Hermance','HERMANCE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11904,'27661','Hermann','HERMANN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11905,'40041','Hermannsburg','HERMANNSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11906,'937','Hermannsburg','HERMANNSBURG',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11907,'36476','Hermannsverk','HERMANNSVERK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11908,'3968','Hermanstad','HERMANSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11909,'41051','Hermansverk','HERMANSVERK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11910,'27406','Hermantown','HERMANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11911,'32460','Hermanus','HERMANUS',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11912,'5398','Hermanville-sur-mer','HERMANVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11913,'23235','Hermetschwil','HERMETSCHWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11914,'38811','Hermigua','HERMIGUA',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11915,'7114','Hermiston','HERMISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11916,'29676','Hermiston','HERMISTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11917,'33159','Hermitage','HERMITAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11918,'1659','Hermon','HERMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11919,'18532','Hermosa Beach','HERMOSA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11920,'14097','Hermosillo','HERMOSILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11921,'776','Hermsdorf','HERMSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11922,'24533','Hernals','HERNALS',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11923,'27865','Hernando','HERNANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11924,'31127','Herndon','HERNDON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11925,'2273','Herning','HERNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11926,'27987','Heron','HERON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11927,'26234','Heron Island','HERON ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11928,'4870','Herouville-saint-clair','HEROUVILLE-SAINT-CLAIR',NULL,'','France','',0,0,76,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11929,'24238','Herradura','HERRADURA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11930,'22558','Herrenberg','HERRENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11931,'42697','Herrera','HERRERA',NULL,'','Panama','',0,0,169,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11932,'42354','Herrere','HERRERE',NULL,'','France','',0,0,76,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11933,'2073','Herrieden','HERRIEDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11934,'20590','Herrin','HERRIN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11935,'16882','Herrljunga','HERRLJUNGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11936,'210','Herrsching Am Ammersee','HERRSCHING AM AMMERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11937,'37319','Hersbruck','HERSBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11938,'24673','Herstal','HERSTAL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11939,'8227','Herstmonceux','HERSTMONCEUX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11940,'26704','Herston','HERSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11941,'507','Herten','HERTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11942,'8228','Hertford','HERTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11943,'7115','Hertfordshire','HERTFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11944,'8229','Hertingfordbury','HERTINGFORDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11945,'41954','Hervas','HERVAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11946,'26705','Hervey Bay','HERVEY BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11947,'27226','Herzberg Am Harz','HERZBERG AM HARZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11948,'27227','Herzlake','HERZLAKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11949,'11042','Herzlia','HERZLIA',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11950,'41460','Herzliya','HERZLIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11951,'211','Herzogenaurach','HERZOGENAURACH',NULL,'','Germany','Herzogenaurach',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11952,'27104','Herzogenburg','HERZOGENBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11953,'22559','Herzogsweiler','HERZOGSWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11954,'4281','Hesdin-l\'abbé','HESDIN-L\'ABBÉ',NULL,'','France','',0,0,76,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11955,'27228','Hesel','HESEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11956,'42632','Heshan','HESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11957,'18533','Hesperia','HESPERIA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11958,'33461','Hesperus','HESPERUS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11959,'42902','Hessdorf','HESSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11960,'27229','Hessisch Oldendorf','HESSISCH OLDENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11961,'21064','Hesston','HESSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11962,'8230','Heston','HESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11963,'18030','Heth','HETH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11964,'8231','Hethersett','HETHERSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11965,'2075','Heubach','HEUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11966,'37307','Heuchin','HEUCHIN',NULL,'','France','',0,0,76,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11967,'37303','Heusden','HEUSDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11968,'435','Heusenstamm','HEUSENSTAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11969,'24629','Heverlee','HEVERLEE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11970,'10120','Heviz','HEVIZ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11971,'30677','Hewitt','HEWITT',NULL,'','United States','',0,0,231,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11972,'8232','Hexham','HEXHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11973,'7116','Hexworthy','HEXWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11974,'40485','Heybeliada','HEYBELIADA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11975,'20361','Heyburn','HEYBURN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11976,'6638','Heyrieux','HEYRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11977,'23827','Heyuan','HEYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11978,'8233','Heywood','HEYWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11979,'43822','Heze','HEZE',NULL,'','China','',0,0,46,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11980,'34870','Hezhou','HEZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11981,'19389','Hialeah','HIALEAH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11982,'19832','Hiawassee','HIAWASSEE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11983,'21065','Hiawatha','HIAWATHA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11984,'27407','Hibbing','HIBBING',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11985,'33883','Hickory','HICKORY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11986,'7117','Hickstead','HICKSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11987,'28848','Hicksville','HICKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11988,'30679','Hidalgo','HIDALGO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11989,'42913','Hidden Valley','HIDDEN VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11990,'41902','Hienghene','HIENGHENE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11991,'36129','Hierro','HIERRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11992,'24534','Hietzing','HIETZING',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11993,'13138','Higashihiroshima','HIGASHIHIROSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11994,'40223','Higashiizu','HIGASHIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11995,'35705','Higashikawa','HIGASHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11996,'13139','Higashimurayama','HIGASHIMURAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11997,'13140','Higashinada','HIGASHINADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11998,'13141','Higashinari','HIGASHINARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11999,'13243','Higashi-osaka','HIGASHI-OSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12000,'42566','Higashiura','HIGASHIURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12001,'13244','Higashiyama','HIGASHIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12002,'13142','Higashiyodogawa','HIGASHIYODOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12003,'27662','Higginsville','HIGGINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12004,'32461','Higgovale','HIGGOVALE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12005,'25320','High Level','HIGH LEVEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12006,'7118','High Littleton','HIGH LITTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12007,'16593','High Tatras','HIGH TATRAS',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12008,'8235','Highbridge','HIGHBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12009,'38123','Highcliffe-on-sea','HIGHCLIFFE-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12010,'39535','Highfields','HIGHFIELDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12011,'40789','Highgate','HIGHGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12012,'31332','Highgate Springs','HIGHGATE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12013,'8236','Highlands & Islands','HIGHLANDS & ISLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:51','1900-01-01 00:00:00',1,0,1),(12014,'28300','Hightstown','HIGHTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12015,'20593','Highwood','HIGHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12016,'38169','Highworth','HIGHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12017,'14016','Higuera Blanca','HIGUERA BLANCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12018,'32202','Higuerote','HIGUEROTE',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12019,'2370','Higuey','HIGUEY',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12020,'35710','Hiji','HIJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12021,'35844','Hikkaduwa','HIKKADUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12022,'37553','Hikone','HIKONE',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12023,'508','Hilden','HILDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12024,'27230','Hildesheim','HILDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12025,'23034','Hildisrieden','HILDISRIEDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12026,'43674','Hillary','HILLARY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12027,'26235','Hillarys','HILLARYS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12028,'18535','Hillcrest','HILLCREST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12029,'509','Hille','HILLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12030,'2175','Hillerod','HILLEROD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12031,'38471','Hillesheim','HILLESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12032,'29375','Hilliard','HILLIARD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12033,'8237','Hillingdon','HILLINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12034,'22103','Hillman','HILLMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12035,'29677','Hillsboro','HILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:55','1900-01-01 00:00:00',1,0,1),(12036,'9840','Hillsborough','HILLSBOROUGH',NULL,'','Grenada','',0,0,88,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12037,'33888','Hillsborough','HILLSBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12038,'8238','Hillsborough (North Ireland)','HILLSBOROUGH (NORTH IRELAND)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12039,'28851','Hillsdale','HILLSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12040,'20594','Hillside','HILLSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:57','1900-01-01 00:00:00',1,0,1),(12041,'31129','Hillsville','HILLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:57','1900-01-01 00:00:00',1,0,1),(12042,'8240','Hillswick','HILLSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12043,'212','Hilpoltstein','HILPOLTSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12044,'23452','Hilterfingen','HILTERFINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12045,'42951','Hilutungan Island','HILUTUNGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12046,'40597','Hilvarenbeek','HILVARENBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12047,'14639','Hilversum','HILVERSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12048,'42093','Himare','HIMARE',NULL,'','Albania','',0,0,2,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12049,'13245','Himeji','HIMEJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12050,'42539','Himeville','HIMEVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12051,'9273','Himley','HIMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12052,'24383','Himmelreich','HIMMELREICH',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12053,'28852','Himrod','HIMROD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12054,'26236','Hinchinbrook Island','HINCHINBROOK ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12055,'9312','Hinckley','HINCKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12056,'27409','Hinckley','HINCKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12057,'8241','Hindhead','HINDHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12058,'8242','Hindon','HINDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12059,'29678','Hines','HINES',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12060,'19833','Hinesville','HINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12061,'21395','Hingham','HINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12062,'20595','Hinsdale','HINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12063,'37468','Hinstock','HINSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12064,'37631','Hinterbruhl','HINTERBRUHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12065,'24384','Hinterglemm','HINTERGLEMM',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12066,'27133','Hinterstoder','HINTERSTODER',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12067,'24465','Hintertux','HINTERTUX',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12068,'22560','Hinterzarten','HINTERZARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12069,'8243','Hintlesham','HINTLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12070,'31993','Hinton','HINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12071,'25323','Hinton','HINTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12072,'8244','Hinxworth','HINXWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12073,'29377','Hiram','HIRAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12074,'43907','Hiratsuka','HIRATSUKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12075,'13246','Hirosaki','HIROSAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12076,'22561','Hirsau','HIRSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12077,'37864','Hirschaid','HIRSCHAID',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12078,'1884','Hirschberg','HIRSCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12079,'24521','Hirschegg','HIRSCHEGG',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12080,'23035','Hirslanden','HIRSLANDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12081,'2240','Hirtshals','HIRTSHALS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12082,'42171','Hisar','HISAR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12083,'24774','Hisarja','HISARJA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12084,'17210','Hisaronu','HISARONU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12085,'43509','Hisaronu-ovacik','HISARONU-OVACIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12086,'42618','Hisavvk','HISAVVK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12087,'16902','Hisings Backa','HISINGS BACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12088,'13247','Hitachi','HITACHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12089,'43908','Hitachinaka','HITACHINAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12090,'8245','Hitchin','HITCHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12091,'16160','Hitiaa','HITIAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12092,'27231','Hitzacker','HITZACKER',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12093,'33160','Hixson','HIXSON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12094,'2241','Hjallerup','HJALLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12095,'2261','Hjerting','HJERTING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12096,'16883','Hjo','HJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12097,'2242','Hjorring','HJORRING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12098,'34948','Hluboka Nad Vltavou','HLUBOKA NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12099,'32517','Hluhluwe','HLUHLUWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12100,'9925','Ho Man Tin','HO MAN TIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12101,'32104','Hoback Junction','HOBACK JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12102,'20904','Hobart','HOBART',NULL,'','United States','',0,0,231,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12103,'26845','Hobart','HOBART',NULL,'','Australia','Hobart',0,0,13,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12104,'28532','Hobbs','HOBBS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12105,'19394','Hobe Sound','HOBE SOUND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12106,'24608','Hoboken','HOBOKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12107,'28303','Hoboken','HOBOKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12108,'2243','Hobro','HOBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12109,'15204','Hobsonville','HOBSONVILLE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12110,'32281','Hoc Mon','HOC MON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12111,'41634','Hochberg','HOCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12112,'22562','Hochenschwand','HOCHENSCHWAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12113,'24466','Hochgurgl','HOCHGURGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12114,'35876','Hochrindl','HOCHRINDL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12115,'22563','Hochst','HOCHST',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12116,'22564','Hockenheim','HOCKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12117,'7119','Hockley Heath','HOCKLEY HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12118,'8246','Hockliffe','HOCKLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12119,'32349','Hodeidah','HODEIDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12120,'186','Hodenhagen','HODENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12121,'33656','Hodgenville','HODGENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12122,'13248','Hodogayacho','HODOGAYACHO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12123,'187','Hoechberg','HOECHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12124,'32567','Hoedspruit','HOEDSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12125,'38906','Hoeilaart','HOEILAART',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12126,'14540','Hoenderloo','HOENDERLOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12127,'37805','Hoenheim','HOENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12128,'14541','Hoevelaken','HOEVELAKEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12129,'38377','Hoeven','HOEVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12130,'39577','Hofen','HOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12131,'20596','Hoffman Estates','HOFFMAN ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12132,'436','Hofgeismar','HOFGEISMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12133,'41023','Hofheim','HOFHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12134,'35441','Hofn','HOFN',NULL,'','Iceland','Hofn',0,0,100,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12135,'39306','Hoganas','HOGANAS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12136,'28854','Hogansburg','HOGANSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12137,'19836','Hogansville','HOGANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12138,'37237','Hogyesz','HOGYESZ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12139,'215','Hohenau','HOHENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12140,'24522','Hohenems','HOHENEMS',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12141,'216','Hohenlinden','HOHENLINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12142,'188','Hohenlohe','HOHENLOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12143,'1703','Hohenroda','HOHENRODA',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12144,'41022','Hohenschwangau','HOHENSCHWANGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12145,'33161','Hohenwald','HOHENWALD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12146,'217','Hohenwarth','HOHENWARTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12147,'23877','Hohhot','HOHHOT',NULL,'','China','',0,0,46,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12148,'39843','Hohnstein (Saxony)','HOHNSTEIN (SAXONY)',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12149,'189','Höhr-grenzhausen','HÖHR-GRENZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12150,'714','Hohwacht','HOHWACHT',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12151,'2191','Hojbjerg','HOJBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12152,'41220','Hoje Taastrup','HOJE TAASTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12153,'2296','Hojer','HOJER',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12154,'36506','Hokianga','HOKIANGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12155,'15205','Hokitika','HOKITIKA',NULL,'','New Zealand','Hokitika',0,0,157,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12156,'43539','Hokkaido','HOKKAIDO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12157,'35755','Hokuto','HOKUTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12158,'2149','Holbaek','HOLBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12159,'8247','Holbeach','HOLBEACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12160,'8248','Holbeton','HOLBETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12161,'8249','Holborn','HOLBORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12162,'1297','Holbox','HOLBOX',NULL,'','MEXICO','',0,0,141,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12163,'34191','Holbrook','HOLBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12164,'21396','Holbrook','HOLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:03:15','1900-01-01 00:00:00',1,0,1),(12165,'31769','Holcombe','HOLCOMBE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12166,'21878','Holden','HOLDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12167,'32713','Holderness','HOLDERNESS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12168,'28129','Holdrege','HOLDREGE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12169,'25245','Holetown','HOLETOWN',NULL,'','Barbados','',0,0,19,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12170,'8250','Holford','HOLFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12171,'34942','Holguin','HOLGUIN',NULL,'','Cuba','',0,0,56,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12172,'29982','Holicong','HOLICONG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12173,'19395','Holiday','HOLIDAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12174,'33162','Holladay','HOLLADAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:18','1900-01-01 00:00:00',1,0,1),(12175,'22105','Holland','HOLLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:18','1900-01-01 00:00:00',1,0,1),(12176,'39093','Holland Park','HOLLAND PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12177,'7120','Holland-on-sea','HOLLAND-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12178,'27232','Hollenstedt','HOLLENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12179,'29983','Hollidaysburg','HOLLIDAYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12180,'17643','Hollis','HOLLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12181,'27663','Hollister','HOLLISTER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:20','1900-01-01 00:00:00',1,0,1),(12182,'14513','Hollum','HOLLUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:20','1900-01-01 00:00:00',1,0,1),(12183,'25770','Holman Island','HOLMAN ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:22','1900-01-01 00:00:00',1,0,1),(12184,'28304','Holmdel','HOLMDEL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:22','1900-01-01 00:00:00',1,0,1),(12185,'19401','Holmes Beach','HOLMES BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12186,'8251','Holmes Chapel','HOLMES CHAPEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12187,'14774','Holmestrand','HOLMESTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12188,'7121','Holmrook','HOLMROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12189,'14867','Holmsbu','HOLMSBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12190,'42349','Holnon','HOLNON',NULL,'','France','',0,0,76,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12191,'11072','Holon','HOLON',NULL,'','Israel','',0,0,106,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12192,'34192','Holroyd','HOLROYD',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12193,'2274','Holstebro','HOLSTEBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12194,'190','Holsteinische Schweiz','HOLSTEINISCHE SCHWEIZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12195,'9858','Holsteinsborg','HOLSTEINSBORG',NULL,'','Greenland','',0,0,87,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12196,'8252','Holsworthy','HOLSWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12197,'2215','Holte','HOLTE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12198,'36457','Holten','HOLTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12199,'21068','Holton','HOLTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12200,'27664','Holts Summit','HOLTS SUMMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12201,'28856','Holtsville','HOLTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12202,'18538','Holtville','HOLTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12203,'43718','Holtze','HOLTZE',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12204,'38266','Holtzheim','HOLTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12205,'19998','Holualoa','HOLUALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12206,'17644','Holy Cross','HOLY CROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12207,'8253','Holyhead','HOLYHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12208,'21397','Holyoke','HOLYOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12209,'25660','Holyrood','HOLYROOD',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12210,'8254','Holywell','HOLYWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12211,'8255','Holywood','HOLYWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12212,'39431','Holzgau','HOLZGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12213,'218','Holzkirchen','HOLZKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12214,'22986','Home Island','HOME ISLAND',NULL,'','Cocos (Keeling) Islands','',0,0,0,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12215,'34193','Homebush','HOMEBUSH',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12216,'28857','Homer','HOMER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12217,'20219','Homestead','HOMESTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:28','1900-01-01 00:00:00',1,0,1),(12218,'20597','Homewood','HOMEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:28','1900-01-01 00:00:00',1,0,1),(12219,'14990','Hommelvik','HOMMELVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12220,'19403','Homosassa','HOMOSASSA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12221,'16929','Homs','HOMS',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12222,'19999','Honalo','HONALO',NULL,'','United States','',0,0,231,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12223,'20000','Honaunau','HONAUNAU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12224,'30685','Hondo','HONDO',NULL,'','United States','',0,0,231,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12225,'23454','Hondrich','HONDRICH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12226,'30346','Honea Path','HONEA PATH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12227,'14868','Honefoss','HONEFOSS',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12228,'28858','Honeoye','HONEOYE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12229,'29984','Honesdale','HONESDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12230,'29985','Honey Brook','HONEY BROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12231,'34517','Honey Harbour','HONEY HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12232,'9926','Hong Kong','HONG KONG',NULL,'','Hong Kong','Hong Kong',0,0,98,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12233,'23236','Hongg','HONGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12234,'23590','Hongqiao International Airport (Sha)','HONGQIAO INTERNATIONAL AIRPORT (SHA)',NULL,'','China','',0,0,46,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12235,'23890','Hongxing','HONGXING',NULL,'','China','',0,0,46,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12236,'16547','Honiara','HONIARA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12237,'8256','Honiley','HONILEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12238,'8257','Honiton','HONITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12239,'14879','Honningsvag','HONNINGSVAG',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12240,'20001','Honohina','HONOHINA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12241,'20002','Honokaa','HONOKAA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12242,'20003','Honokohau','HONOKOHAU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12243,'20004','Honokowai','HONOKOWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12244,'20005','Honolua','HONOLUA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12245,'20006','Honolulu','HONOLULU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12246,'20007','Honomu','HONOMU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12247,'29679','Hood River','HOOD RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12248,'31516','Hoodsport','HOODSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12249,'14640','Hoofddorp','HOOFDDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12250,'14468','Hoog Soeren','HOOG SOEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12251,'14496','Hoogeveen','HOOGEVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12252,'43286','Hook','HOOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12253,'26237','Hooker Creek','HOOKER CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12254,'32714','Hooksett','HOOKSETT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12255,'7124','Hoole','HOOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12256,'20008','Hoolehua','HOOLEHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12257,'17646','Hoonah','HOONAH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12258,'18540','Hoopa','HOOPA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12259,'17647','Hooper Bay','HOOPER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12260,'20598','Hoopeston','HOOPESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12261,'43258','Hoora','HOORA',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12262,'17897','Hoover','HOOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12263,'28305','Hopatcong','HOPATCONG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12264,'26707','Hope Island','HOPE ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12265,'24884','Hope Town','HOPE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12266,'25661','Hopedale','HOPEDALE',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12267,'26515','Hopetoun','HOPETOUN',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12268,'28860','Hopewell','HOPEWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12269,'219','Hopfen Am See','HOPFEN AM SEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12270,'41021','Hopfensee','HOPFENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12271,'39973','Hopfgarten Im Brixental','HOPFGARTEN IM BRIXENTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12272,'24923','Hopkins','HOPKINS',NULL,'','Belize','',0,0,22,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12273,'33657','Hopkinsville','HOPKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12274,'18541','Hopland','HOPLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12275,'31517','Hoquiam','HOQUIAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12276,'22565','Horben','HORBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12277,'4282','Horbourg-wihr','HORBOURG-WIHR',NULL,'','France','',0,0,76,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12278,'3407','Horche','HORCHE',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12279,'14801','Hordaland','HORDALAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12280,'220','Horgau','HORGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12281,'23237','Horgen','HORGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12282,'39221','Horice Na Sumave','HORICE NA SUMAVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12283,'10983','Hornafjordur','HORNAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12284,'44137','Horn-bad Meinberg','HORN-BAD MEINBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12285,'2176','Hornbaek','HORNBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12286,'22567','Hornberg','HORNBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12287,'15206','Hornby','HORNBY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12288,'8261','Horncastle','HORNCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12289,'8262','Hornchurch','HORNCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12290,'28862','Hornell','HORNELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12291,'34518','Hornepayne','HORNEPAYNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12292,'14802','Hornindal','HORNINDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12293,'2150','Horning','HORNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12294,'39358','Horningsham','HORNINGSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12295,'9299','Horns Cross','HORNS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12296,'8263','Hornsea','HORNSEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12297,'2151','Hornslet','HORNSLET',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12298,'36700','Horny Smokovec','HORNY SMOKOVEC',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12299,'15114','Horohoro','HOROHORO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12300,'24153','Horquetas','HORQUETAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12301,'8264','Horringford','HORRINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12302,'25458','Horsefly','HORSEFLY',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12303,'28863','Horseheads','HORSEHEADS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12304,'40014','Horsemans Green','HORSEMANS GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12305,'2348','Horsens','HORSENS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12306,'25459','Horseshoe Bay','HORSESHOE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12307,'30686','Horseshoe Bay','HORSESHOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12308,'26909','Horsham','HORSHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12309,'29986','Horsham','HORSHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12310,'8265','Horsham','HORSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12311,'14572','Horst','HORST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12312,'510','Horstel','HORSTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12313,'2037','Hörstel','HÖRSTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12314,'2643','Horta-guinardo','HORTA-GUINARDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12315,'2995','Hortaleza','HORTALEZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12316,'15024','Horten','HORTEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12317,'38038','Horto','HORTO',NULL,'','Greece','',0,0,86,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12318,'35341','Hortobagy','HORTOBAGY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12319,'8266','Horton (Dorset)','HORTON (DORSET)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12320,'7125','Horton-cum-studley','HORTON-CUM-STUDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12321,'13736','Horubadhoo Island','HORUBADHOO ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12322,'27233','Horumersiel','HORUMERSIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12323,'23238','Horw','HORW',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12324,'8268','Horwich','HORWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12325,'42602','Hosapete','HOSAPETE',NULL,'','India','',0,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12326,'40382','Hoskote','HOSKOTE',NULL,'','India','',0,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12327,'40853','Hospet','HOSPET',NULL,'','India','Hospet',17,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12328,'41505','Hospitalet De Llobregat','HOSPITALET DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12329,'5193','Hossegor','HOSSEGOR',NULL,'','France','',0,0,76,'2016-10-17 11:03:51','1900-01-01 00:00:00',1,0,1),(12330,'44209','Hosur','HOSUR',NULL,'','India','Hosur',18,0,101,'2016-10-17 11:03:51','1900-01-01 00:00:00',1,0,1),(12331,'15115','Hot Water Beach','HOT WATER BEACH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12332,'23839','Hotan','HOTAN',NULL,'','China','',0,0,46,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12333,'33464','Hotchkiss','HOTCHKISS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12334,'23036','Hottingen','HOTTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12335,'14429','Houailou','HOUAILOU',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12336,'13538','Houayxay','HOUAYXAY',NULL,'','Laos','',0,0,118,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12337,'39752','Houdan','HOUDAN',NULL,'','France','',0,0,76,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12338,'6034','Houdemont','HOUDEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12339,'24663','Houdeng-goegnies','HOUDENG-GOEGNIES',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12340,'38689','Houffalize','HOUFFALIZE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12341,'8269','Houghton','HOUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12342,'28864','Houghton','HOUGHTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12343,'4726','Houilles','HOUILLES',NULL,'','France','',0,0,76,'2016-10-17 11:03:54','1900-01-01 00:00:00',1,0,1),(12344,'23961','Houjie','HOUJIE',NULL,'','China','',0,0,46,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12345,'9478','Houlakia','HOULAKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12346,'5400','Houlgate','HOULGATE',NULL,'','France','',0,0,76,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12347,'21880','Houlton','HOULTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12348,'21209','Houma','HOUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12349,'41198','Houmt Souk - Djerba','HOUMT SOUK - DJERBA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12350,'13563','Houn','HOUN',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12351,'8270','Hounslow','HOUNSLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12352,'5194','Hourtin','HOURTIN',NULL,'','France','',0,0,76,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12353,'6764','Houssen','HOUSSEN',NULL,'','France','',0,0,76,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12354,'27665','Houston','HOUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12355,'36926','Houston-intl Apt','HOUSTON-INTL APT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:57','1900-01-01 00:00:00',1,0,1),(12356,'32401','Hout Bay','HOUT BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:57','1900-01-01 00:00:00',1,0,1),(12357,'39918','Houten','HOUTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12358,'2262','Hovborg','HOVBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12359,'15003','Hovden','HOVDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12360,'14803','Hovedoya','HOVEDOYA',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12361,'14847','Hovik','HOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12362,'8272','Hovingham','HOVINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12363,'19405','Howard','HOWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12364,'8273','Howden','HOWDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12365,'20905','Howe','HOWE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12366,'22110','Howell','HOWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12367,'28865','Howes Cave','HOWES CAVE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12368,'19406','Howey-in-the-hills','HOWEY-IN-THE-HILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12369,'15207','Howick','HOWICK',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12370,'44210','Howrah','HOWRAH',NULL,'','India','Howrah',12,0,101,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12371,'7126','Howtown','HOWTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12372,'36316','Howwood','HOWWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12373,'511','Hoxter','HOXTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12374,'7127','Hoy Island','HOY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12375,'1885','Hoyerswerda','HOYERSWERDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12376,'40176','Hoylake','HOYLAKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12377,'38135','Hoylandet','HOYLANDET',NULL,'','Norway','',0,0,164,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12378,'2644','Hoyos De Espino','HOYOS DE ESPINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12379,'27412','Hoyt Lakes','HOYT LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12380,'24345','Hradec Kralove','HRADEC KRALOVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12381,'40406','Hsin Shih','HSIN SHIH',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12382,'17442','Hsinchu','HSINCHU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12383,'17389','Hsinchuang','HSINCHUANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12384,'23962','Huadu','HUADU',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12385,'16161','Huahine','HUAHINE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12386,'36531','Huahine-te Tiare','HUAHINE-TE TIARE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12387,'34872','Huai Nan','HUAI NAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12388,'40091','Huai Yang','HUAI YANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12389,'42391','Huaian','HUAIAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12390,'23739','Huai\'an','HUAI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12391,'43823','Huainan','HUAINAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12392,'17390','Hualien','HUALIEN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12393,'14113','Huamantla','HUAMANTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12394,'25850','Huambo','HUAMBO',NULL,'','Angola','',0,0,6,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12395,'23963','Huanghua','HUANGHUA',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12396,'34874','Huanglong','HUANGLONG',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12397,'23591','Huangpu - The Bund','HUANGPU - THE BUND',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12398,'23683','Huangshan','HUANGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12399,'43824','Huangshi','HUANGSHI',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12400,'23698','Huangyan','HUANGYAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12401,'36523','Huaraz','HUARAZ',NULL,'','Peru','',0,0,172,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12402,'3056','Huarte','HUARTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12403,'14003','Huasca De Ocampo','HUASCA DE OCAMPO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12404,'35940','Huatajata','HUATAJATA',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12405,'13818','Huatulco','HUATULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12407,'29379','Hubbard','HUBBARD',NULL,'','United States','',0,0,231,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12408,'25716','Hubbards','HUBBARDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12409,'29380','Huber Heights','HUBER HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12410,'779','Hubertushohe','HUBERTUSHOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12411,'10658','Hubli','HUBLI',NULL,'','India','Hubli',17,0,101,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12412,'37437','Huckelhoven','HUCKELHOVEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12413,'8274','Huddersfield','HUDDERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12414,'16827','Huddinge','HUDDINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12415,'31133','Huddleston','HUDDLESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12416,'16699','Hudiksvall','HUDIKSVALL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12417,'26005','Hudson','HUDSON',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12418,'21399','Hudson, Town Of','HUDSON, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12419,'42934','Hudson\'s Hope','HUDSON\'S HOPE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12420,'22113','Hudsonville','HUDSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12421,'32304','Hue','HUE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12422,'37305','Hueckeswagen','HUECKESWAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12423,'35310','Huehuetenango','HUEHUETENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12424,'14066','Huejotzingo','HUEJOTZINGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12425,'38749','Huejutla De Reyes','HUEJUTLA DE REYES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12426,'20009','Huelo','HUELO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12427,'2950','Huelva','HUELVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12428,'35030','Huelva-cartaya','HUELVA-CARTAYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12429,'191','Huerth','HUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12430,'3330','Huesca','HUESCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12431,'38094','Huetor Vega','HUETOR VEGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12432,'8275','Hugh Town','HUGH TOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12433,'26410','Hughenden','HUGHENDEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12434,'17648','Hughes','HUGHES',NULL,'','United States','',0,0,231,'2016-10-17 11:04:10','1900-01-01 00:00:00',1,0,1),(12435,'32915','Hugo','HUGO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:10','1900-01-01 00:00:00',1,0,1),(12436,'41807','Huhhot','HUHHOT',NULL,'','China','',0,0,46,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12437,'42643','Huilo Huilo','HUILO HUILO',NULL,'','Chile','',0,0,45,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12438,'13143','Huis Ten Bosch','HUIS TEN BOSCH',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12439,'14642','Huisduinen','HUISDUINEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12440,'14035','Huixquilucan De Degollado','HUIXQUILUCAN DE DEGOLLADO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12441,'38859','Huiyang','HUIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12442,'23964','Huizhou','HUIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12443,'24630','Huldenberg','HULDENBERG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12444,'32105','Hulett','HULETT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:13','1900-01-01 00:00:00',1,0,1),(12445,'13737','Hulhule','HULHULE',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:14','1900-01-01 00:00:00',1,0,1),(12446,'26006','Hull','HULL',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:14','1900-01-01 00:00:00',1,0,1),(12447,'9306','Hull','HULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12448,'438','Hülsa','HÜLSA',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12449,'14542','Hulshorst','HULSHORST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12450,'857','Hulshout','HULSHOUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12451,'16729','Hultsfred','HULTSFRED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12452,'15752','Humacao','HUMACAO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12453,'25662','Humber Valley','HUMBER VALLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12454,'7128','Humberside','HUMBERSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:17','1900-01-01 00:00:00',1,0,1),(12455,'8276','Humbie','HUMBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:17','1900-01-01 00:00:00',1,0,1),(12456,'30691','Humble','HUMBLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:18','1900-01-01 00:00:00',1,0,1),(12457,'22946','Humboldt','HUMBOLDT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:18','1900-01-01 00:00:00',1,0,1),(12458,'20221','Humboldt','HUMBOLDT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12459,'23965','Humen','HUMEN',NULL,'','China','',0,0,46,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12460,'42835','Humenne','HUMENNE',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12461,'3859','Humera','HUMERA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12462,'32462','Humewood','HUMEWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12463,'2177','Humlebaek','HUMLEBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12464,'29987','Hummels Wharf','HUMMELS WHARF',NULL,'','United States','',0,0,231,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12465,'29988','Hummelstown','HUMMELSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:04:21','1900-01-01 00:00:00',1,0,1),(12466,'2178','Hundested','HUNDESTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:21','1900-01-01 00:00:00',1,0,1),(12467,'8277','Hundleton','HUNDLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12468,'43598','Hundon','HUNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12469,'36625','Hunedoara','HUNEDOARA',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12470,'42903','Hunfeld','HUNFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12471,'8278','Hungerford','HUNGERFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12472,'23239','Hunibach','HUNIBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12473,'8279','Hunmanby','HUNMANBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12474,'8280','Hunstanton','HUNSTANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12475,'7129','Hunstrete','HUNSTRETE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12476,'17899','Hunstville Area','HUNSTVILLE AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12477,'38721','Hunsur','HUNSUR',NULL,'','India','',0,0,101,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12478,'30692','Hunt','HUNT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12479,'28867','Hunter','HUNTER',NULL,'','United States','',0,0,231,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12480,'34194','Hunter Valley','HUNTER VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12481,'18542','Hunters Point','HUNTERS POINT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12482,'33892','Huntersville','HUNTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12483,'24908','Hunting Caye','HUNTING CAYE',NULL,'','Belize','',0,0,22,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12484,'30347','Hunting Island','HUNTING ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12485,'20906','Huntingburg','HUNTINGBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12486,'29989','Huntingdon','HUNTINGDON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12487,'8281','Huntingdon','HUNTINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12488,'31994','Huntington','HUNTINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:27','1900-01-01 00:00:00',1,0,1),(12489,'44014','Huntly','HUNTLY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12490,'8282','Huntly','HUNTLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12491,'8283','Hunton','HUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12492,'7130','Hunts Cross','HUNTS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12493,'25717','Hunts Point','HUNTS POINT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12494,'30694','Huntsville','HUNTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12495,'34520','Huntsville','HUNTSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12496,'2427','Hurghada','HURGHADA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12497,'31772','Hurley','HURLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12498,'8284','Hurley','HURLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12499,'26073','Hurlingham','HURLINGHAM',NULL,'','Argentina','',0,0,10,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12500,'29382','Huron','HURON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12501,'31996','Hurricane','HURRICANE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12502,'34195','Hurstville','HURSTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:33','1900-01-01 00:00:00',1,0,1),(12503,'41020','Hurth','HURTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:33','1900-01-01 00:00:00',1,0,1),(12504,'37580','Hurup','HURUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12505,'11018','Husavik','HUSAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12506,'36626','Husi','HUSI',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12507,'34196','Huskisson','HUSKISSON',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12508,'16720','Huskvarna','HUSKVARNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12509,'17649','Huslia','HUSLIA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12510,'40005','Hustopece','HUSTOPECE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12511,'2231','Husum','HUSUM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12512,'27234','Husum','HUSUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12513,'30696','Hutchins','HUTCHINS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:35','1900-01-01 00:00:00',1,0,1),(12514,'27413','Hutchinson','HUTCHINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:35','1900-01-01 00:00:00',1,0,1),(12515,'30697','Hutto','HUTTO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12516,'43335','Huttwil','HUTTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12517,'13739','Huvafen Fushi','HUVAFEN FUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12518,'37848','Huvahendhoo','HUVAHENDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12519,'8285','Huxley','HUXLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12520,'24674','Huy','HUY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12521,'2244','Hvalpsund','HVALPSUND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12522,'11020','Hvammstangi','HVAMMSTANGI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12523,'10013','Hvar','HVAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12524,'35442','Hveragerdhi','HVERAGERDHI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12525,'10984','Hveragerdi','HVERAGERDI',NULL,'','Iceland','Hveragerdi',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12526,'2320','Hvidbjerg','HVIDBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12527,'2216','Hvidovre','HVIDOVRE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12528,'37657','Hvolsvollur','HVOLSVOLLUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12529,'32652','Hwange','HWANGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12530,'21401','Hyannis','HYANNIS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12531,'21716','Hyattsville','HYATTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:38','1900-01-01 00:00:00',1,0,1),(12532,'17650','Hydaburg','HYDABURG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:38','1900-01-01 00:00:00',1,0,1),(12533,'8286','Hyde','HYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12534,'28870','Hyde Park','HYDE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12535,'26804','Hyde Park','HYDE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12536,'42914','Hyden','HYDEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12537,'17651','Hyder','HYDER',NULL,'','United States','',0,0,231,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12538,'10617','Hyderabad','HYDERABAD',NULL,'','India','Hyderabad',51,0,101,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12539,'15288','Hyderabad','HYDERABAD',NULL,'','Pakistan','Hyderabad',0,0,166,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12540,'41635','Hydra','HYDRA',NULL,'','Greece','Hydra',0,0,86,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12541,'6441','Hyeres','HYERES',NULL,'','France','',0,0,76,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12542,'39407','Hyevre-paroisse','HYEVRE-PAROISSE',NULL,'','France','',0,0,76,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12543,'13250','Hyogo','HYOGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12544,'43184','Hyogo-ken','HYOGO-KEN',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12545,'8287','Hythe','HYTHE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12546,'3969','Hyvinkaa','HYVINKAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12547,'43419','Ialissos','IALISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12548,'43255','Ialysos','IALYSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12549,'9480','Ialysus','IALYSUS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12550,'16222','Iasi','IASI',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12551,'15488','Iba','IBA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12552,'24126','Ibague','IBAGUE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12553,'13251','Ibaraki','IBARAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12554,'2398','Ibarra','IBARRA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12555,'3708','Ibarranguelua','IBARRANGUELUA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12556,'512','Ibbenburen','IBBENBUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12557,'2902','Ibiza','IBIZA',NULL,'','Spain','Ibiza',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12558,'35016','Ibiza-cala Llonga','IBIZA-CALA LLONGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12559,'35062','Ibiza-sa Caleta','IBIZA-SA CALETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12560,'35051','Ibiza-san Agustin','IBIZA-SAN AGUSTIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12561,'35087','Ibiza-santa Elaulia','IBIZA-SANTA ELAULIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12562,'8288','Ibstone','IBSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12563,'37981','Ibusuki','IBUSUKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12564,'15399','Ica','ICA',NULL,'','Peru','',0,0,172,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12565,'35804','Icheon','ICHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12566,'13494','Icheon','ICHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12567,'13252','Ichikawa','ICHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12568,'43909','Ichinoseki','ICHINOSEKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12569,'37929','Icici','ICICI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12570,'8289','Icklesham','ICKLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12571,'17305','Icmeler','ICMELER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12572,'40653','Icod De Los Vinos','ICOD DE LOS VINOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12573,'32916','Idabel','IDABEL',NULL,'','United States','',0,0,231,'2016-10-17 11:04:45','1900-01-01 00:00:00',1,0,1),(12574,'20363','Idaho City','IDAHO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:04:45','1900-01-01 00:00:00',1,0,1),(12575,'15896','Idanha-a-nova','IDANHA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12576,'633','Idar-oberstein','IDAR-OBERSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12578,'9481','Idhomeni','IDHOMENI',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12579,'1305','Idleb','IDLEB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12580,'29681','Idleyld Park','IDLEYLD PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12581,'36716','Idlib','IDLIB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12582,'16741','Idre','IDRE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12583,'11238','Idro','IDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12584,'439','Idstein','IDSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12585,'10526','Idukki','IDUKKI',NULL,'','India','Idukki',3,0,101,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12586,'18546','Idyllwild','IDYLLWILD',NULL,'','United States','',0,0,231,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12587,'34850','Ieper','IEPER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12588,'9796','Ierapetra','IERAPETRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12589,'41439','Ifaty','IFATY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12590,'39024','Iffendic','IFFENDIC',NULL,'','France','',0,0,76,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12591,'13710','Ifrane','IFRANE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12592,'4871','Ifs','IFS',NULL,'','France','',0,0,76,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12593,'16353','Igarka','IGARKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12594,'12721','Igea Marina','IGEA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12595,'17652','Igiugig','IGIUGIG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12596,'12824','Iglesias','IGLESIAS',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12597,'25799','Igloolik','IGLOOLIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12598,'24467','Igls','IGLS',NULL,'','Austria','',0,0,14,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12599,'34522','Ignace','IGNACE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12600,'33466','Ignacio','IGNACIO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12601,'3122','Igollo','IGOLLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12602,'39914','Igoumenitsa','IGOUMENITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12603,'42023','Iguala','IGUALA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12604,'3552','Igualada','IGUALADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12605,'40973','Iguassu Falls','IGUASSU FALLS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12606,'26046','Iguazu','IGUAZU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12607,'35951','Iguazu Falls (Br)','IGUAZU FALLS (BR)',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12608,'39356','Ihosy','IHOSY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12609,'22568','Ihringen','IHRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12610,'13740','Ihuru','IHURU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12611,'42379','Iikley','IIKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12612,'3998','Iisalmi','IISALMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12613,'43326','Ijmuiden','IJMUIDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12614,'14682','Ijsselstein','IJSSELSTEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12615,'4009','Ikaalinen','IKAALINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12616,'9482','Ikaria','IKARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12617,'2275','Ikast','IKAST',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12618,'13253','Ikeda','IKEDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12619,'13144','Iki Island','IKI ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12620,'13254','Ikuno','IKUNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12621,'1937','Ilberstedt','ILBERSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12622,'8290','Ilchester','ILCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12623,'17292','Ildir','ILDIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:52','1900-01-01 00:00:00',1,0,1),(12624,'36450','Ile Des Pins','ILE DES PINS',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:04:52','1900-01-01 00:00:00',1,0,1),(12625,'4290','Ile-aux-moines','ILE-AUX-MOINES',NULL,'','France','',0,0,76,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12626,'26008','Ile-perrot','ILE-PERROT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12627,'1973','Ilfeld','ILFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12628,'8291','Ilford','ILFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12629,'8292','Ilfracombe','ILFRACOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12630,'41074','Ilgaz','ILGAZ',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12631,'42007','Ilha Da Boa Vista','ILHA DA BOA VISTA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12632,'25203','Ilhabela','ILHABELA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12633,'15858','Ilhavo','ILHAVO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12634,'25040','Ilheus','ILHEUS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12635,'35944','Ilheus-comandatuba','ILHEUS-COMANDATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12636,'17653','Iliamna','ILIAMNA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12637,'17357','Ilica','ILICA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12638,'15550','Iligan','ILIGAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12639,'28871','Ilion','ILION',NULL,'','United States','',0,0,231,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12640,'9483','Ilioupolis','ILIOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12641,'8293','Ilkeston','ILKESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12642,'8294','Ilkley','ILKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12643,'10160','Illaga','ILLAGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12644,'34197','Illawarra','ILLAWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12645,'43995','Ille-et-vilaine','ILLE-ET-VILAINE',NULL,'','France','',0,0,76,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12646,'2647','Illetas','ILLETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12647,'4291','Illiers-combrey','ILLIERS-COMBREY',NULL,'','France','',0,0,76,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12648,'37689','Illizi','ILLIZI',NULL,'','Algeria','',0,0,3,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12649,'43532','Illkirch','ILLKIRCH',NULL,'','France','',0,0,76,'2016-10-17 11:04:57','1900-01-01 00:00:00',1,0,1),(12650,'6765','Illkirch-graffenstaden','ILLKIRCH-GRAFFENSTADEN',NULL,'','France','',0,0,76,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12651,'37683','Illmitz','ILLMITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12652,'36449','I\'llot Maitre','I\'LLOT MAITRE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12653,'32518','Illovo Beach','ILLOVO BEACH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12654,'39845','Illueca','ILLUECA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12655,'6766','Illzach','ILLZACH',NULL,'','France','',0,0,76,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12656,'221','Ilmenau','ILMENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12657,'8295','Ilminster','ILMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12658,'15551','Iloilo','ILOILO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12659,'1938','Ilsenburg','ILSENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12660,'8296','Ilsington','ILSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12661,'10161','Ilu','ILU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12662,'9859','Ilulissat','ILULISSAT',NULL,'','Greenland','',0,0,87,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12663,'31518','Ilwaco','ILWACO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12664,'3057','Imarcoain','IMARCOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12665,'43910','Imari','IMARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12666,'3970','Imatra','IMATRA',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12667,'2448','Imbabah','IMBABAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12668,'921','Imbabura','IMBABURA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12669,'35953','Imbassai','IMBASSAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12670,'25180','Imbituba','IMBITUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12671,'9822','Imeroviglion','IMEROVIGLION',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12672,'32820','Imlay','IMLAY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12673,'37317','Imlil','IMLIL',NULL,'','Morocco','',0,0,148,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12674,'38394','Immingham','IMMINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12675,'11999','Imola','IMOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12676,'3408','Imon','IMON',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12677,'25083','Imperatriz','IMPERATRIZ',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12678,'12000','Imperia','IMPERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12679,'28130','Imperial','IMPERIAL',NULL,'','United States','',0,0,231,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12680,'24045','Impfondo','IMPFONDO',NULL,'','Congo','',0,0,51,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12681,'10653','Imphal','IMPHAL',NULL,'','India','Imphal',41,0,101,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12682,'13052','Impruneta','IMPRUNETA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12683,'24563','Imst','IMST',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12684,'42952','Inampulugan Island','INAMPULUGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12685,'10309','Inanwatan','INANWATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12686,'42468','Inari','INARI',NULL,'','Finland','',0,0,75,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12687,'42891','Inawashiro','INAWASHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12688,'39906','Inca','INCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12689,'17211','Incekum','INCEKUM',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12690,'42832','Inchanga','INCHANGA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12691,'13524','Incheon','INCHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12692,'35806','Incheon','INCHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12693,'10841','Inchicore','INCHICORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12694,'9325','Inchinnan','INCHINNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12695,'8297','Inchture','INCHTURE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12696,'11239','Incisa In Val D\'arno','INCISA IN VAL D\'ARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12697,'32821','Incline Village','INCLINE VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12698,'25204','Indaiatuba','INDAIATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12699,'27666','Independence','INDEPENDENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12700,'15371','Independencia','INDEPENDENCIA',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:05','1900-01-01 00:00:00',1,0,1),(12701,'19408','Indialantic','INDIALANTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:05:05','1900-01-01 00:00:00',1,0,1),(12702,'27868','Indianola','INDIANOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12703,'19412','Indiantown','INDIANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12704,'18550','Indio','INDIO',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12705,'26708','Indooroopilly','INDOOROOPILLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12706,'10649','Indore','INDORE',NULL,'','India','Indore',15,0,101,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12707,'42795','Indramayu','INDRAMAYU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12708,'12929','Induno Olona','INDUNO OLONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12709,'44030','Induruwa','INDURUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12710,'25324','Indus','INDUS',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12711,'13819','Industrial Area','INDUSTRIAL AREA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12712,'1822','Industry','INDUSTRY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12713,'14172','Ine','INE',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12714,'33660','Inez','INEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12715,'38608','Infiesto','INFIESTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12716,'8298','Ingatestone','INGATESTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12717,'192','Ingelheim','INGELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12718,'44275','Ingenbohl','INGENBOHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12719,'34523','Ingersoll','INGERSOLL',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12720,'18551','Ingleside','INGLESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12721,'18552','Inglewood','INGLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12722,'38493','Inglewood','INGLEWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:12','1900-01-01 00:00:00',1,0,1),(12723,'19413','Inglis','INGLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:12','1900-01-01 00:00:00',1,0,1),(12724,'38048','Ingliston','INGLISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12725,'222','Ingolstadt','INGOLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12726,'25718','Ingonish','INGONISH',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12727,'30699','Ingram','INGRAM',NULL,'','United States','',0,0,231,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12728,'41399','Inhaca','INHACA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12729,'43220','Inhambane','INHAMBANE',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12730,'41320','Iniesta','INIESTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12731,'10738','Inisheer','INISHEER',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12732,'10739','Inishmaan','INISHMAAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12733,'10740','Inishmore','INISHMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12734,'40270','Injune','INJUNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12735,'26411','Inkerman','INKERMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12736,'22116','Inkster','INKSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12737,'36391','Inle','INLE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12738,'26454','Innamincka','INNAMINCKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:15','1900-01-01 00:00:00',1,0,1),(12739,'21718','Inner Harbor','INNER HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:05:15','1900-01-01 00:00:00',1,0,1),(12740,'7131','Inner Hebrides','INNER HEBRIDES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12741,'26709','Inner West','INNER WEST',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12742,'37359','Innerbraz','INNERBRAZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12743,'8299','Innerleithen','INNERLEITHEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12744,'26412','Innisfail','INNISFAIL',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12745,'25325','Innisfail','INNISFAIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12746,'41527','Innishannon','INNISHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12747,'26996','Innsbruck','INNSBRUCK',NULL,'','Austria','Innsbruck',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12748,'26997','Innviertel','INNVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12749,'41318','Innvik','INNVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12750,'32633','Inongo','INONGO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12751,'16673','Insjoen','INSJOEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12752,'8300','Instow','INSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12753,'36780','Insula Rayong-samet','INSULA RAYONG-SAMET',NULL,'','Thailand','',0,0,215,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12754,'29991','Intercourse','INTERCOURSE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12755,'33016','Interior','INTERIOR',NULL,'','United States','',0,0,231,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12756,'23037','Interlaken','INTERLAKEN',NULL,'','Switzerland','Interlaken',0,0,210,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12757,'32716','Intervale','INTERVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12758,'43972','Intu Afrika Kalahari Private Reserve','INTU AFRIKA KALAHARI PRIVATE RESERVE',NULL,'','Namibia','',0,0,151,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12759,'25205','Inubia Paulista','INUBIA PAULISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12760,'26010','Inukjuak','INUKJUAK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12761,'25771','Inuvik','INUVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12762,'27416','Inver Grove Heights','INVER GROVE HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12763,'8301','Inveraray','INVERARAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12764,'1310','Inverary','INVERARY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12765,'15073','Invercargill','INVERCARGILL',NULL,'','New Zealand','Invercargill',0,0,157,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12766,'7132','Inverclyde','INVERCLYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12767,'34198','Inverell','INVERELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12768,'8302','Invergarry','INVERGARRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12769,'8303','Invergordon','INVERGORDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12770,'8304','Inverkeithing','INVERKEITHING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12771,'7133','Inverleith','INVERLEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12772,'39995','Inverloch','INVERLOCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12773,'25461','Invermere','INVERMERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12774,'19415','Inverness','INVERNESS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12775,'1311','Inverness','INVERNESS',NULL,'','UNITED KINGDOM','Inverness',0,0,469,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12776,'9251','Inverurie','INVERURIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12777,'11240','Invorio Superiore','INVORIO SUPERIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12778,'28873','Inwood','INWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12779,'18554','Inyokern','INYOKERN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12780,'42892','Inzai','INZAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12781,'223','Inzell','INZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12782,'40272','Inzlingen','INZLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12783,'9766','Ioannina','IOANNINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12784,'35253','Ioannina-kostitsi','IOANNINA-KOSTITSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12785,'25462','Ioco','IOCO',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12786,'21071','Iola','IOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12787,'22117','Ionia','IONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12788,'11241','Ionian Coast','IONIAN COAST',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12789,'12001','Ioppolo','IOPPOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12790,'35274','Ios-ormos','IOS-ORMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12791,'24981','Ipanema - Leblon','IPANEMA - LEBLON',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12792,'25084','Ipatinga','IPATINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12793,'9484','Ipeiros','IPEIROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12794,'224','Iphofen','IPHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12795,'24115','Ipiales','IPIALES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12796,'14367','Ipoh','IPOH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12797,'25122','Ipojuca','IPOJUCA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12798,'32316','Ipota','IPOTA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12799,'23450','Ipsach','IPSACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12800,'17286','Ipsala','IPSALA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12801,'8305','Ipswich','IPSWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12802,'26710','Ipswich','IPSWICH',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12803,'25800','Iqaluit','IQALUIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12804,'38','Iquique','IQUIQUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12805,'15421','Iquitos','IQUITOS',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12806,'24982','Iraja','IRAJA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12807,'42509','Irakleia','IRAKLEIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12808,'13902','Irapuato','IRAPUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12809,'31335','Irasburg','IRASBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12810,'1665','Irbid','IRBID',NULL,'','Jordan','Irbid',0,0,111,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12811,'40582','Irdning','IRDNING',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12812,'30700','Iredell','IREDELL',NULL,'','United States','',0,0,231,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12813,'32568','Irene','IRENE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12814,'38103','Ireon','IREON',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12815,'9655','Iria','IRIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12816,'6639','Irigny','IRIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12817,'17457','Iringa','IRINGA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12818,'16321','Irkutsk','IRKUTSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12819,'8306','Ironbridge','IRONBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12820,'17902','Irondale','IRONDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12821,'27668','Ironton','IRONTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12822,'22121','Ironwood','IRONWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12823,'34524','Iroquois Falls','IROQUOIS FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12824,'225','Irschenberg','IRSCHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12825,'3709','Irun','IRUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12826,'2648','Irurtzun','IRURTZUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12827,'38212','Iruya','IRUYA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12828,'33661','Irvine','IRVINE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12829,'8307','Irvine','IRVINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12830,'8308','Irvinestown','IRVINESTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12831,'30701','Irving','IRVING',NULL,'','United States','',0,0,231,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12832,'28306','Irvington','IRVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:31','1900-01-01 00:00:00',1,0,1),(12833,'29992','Irwin','IRWIN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12834,'15753','Isabel Segunda','ISABEL SEGUNDA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12835,'15731','Isabela','ISABELA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12836,'10985','Isafjordur','ISAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12837,'24564','Ischgl','ISCHGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12838,'28307','Iselin','ISELIN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12839,'23456','Iseltwald','ISELTWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12840,'42451','Isenbuttel','ISENBUTTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12841,'12003','Iseo','ISEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12842,'35557','Iseo-lovere','ISEO-LOVERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12843,'513','Iserlohn','ISERLOHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12844,'193','Isernhagen','ISERNHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12845,'37728','Isernia','ISERNIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12846,'35431','Isfahan','ISFAHAN',NULL,'','Iran','',0,0,103,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12847,'13255','Ishigaki','ISHIGAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12848,'13145','Ishigaki-shi','ISHIGAKI-SHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12849,'43540','Ishikawa','ISHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12850,'2217','Ishoj','ISHOJ',NULL,'','Denmark','',0,0,59,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12851,'2344','Ishøj','ISHØJ',NULL,'','Denmark','',0,0,59,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12852,'22123','Ishpeming','ISHPEMING',NULL,'','United States','',0,0,231,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12853,'24754','Ishurdi','ISHURDI',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12854,'32634','Isiro','ISIRO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12855,'6','Isisford','ISISFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12856,'17298','Iskenderun','ISKENDERUN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12857,'39770','Isla Amantani','ISLA AMANTANI',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12858,'39667','Isla Baru','ISLA BARU',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12859,'36520','Isla Colon','ISLA COLON',NULL,'','Panama','',0,0,169,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12860,'42028','Isla Del Sol','ISLA DEL SOL',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:05:36','1900-01-01 00:00:00',1,0,1),(12861,'24909','Isla Marisol','ISLA MARISOL',NULL,'','Belize','',0,0,22,'2016-10-17 11:05:36','1900-01-01 00:00:00',1,0,1),(12862,'15732','Isla Verde','ISLA VERDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12863,'43082','Isla Victoria','ISLA VICTORIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12864,'3240','Isla-cristina','ISLA-CRISTINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12865,'15303','Islamabad','ISLAMABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12866,'19416','Islamorada','ISLAMORADA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12867,'5464','Island','ISLAND',NULL,'','France','',0,0,76,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12868,'10842','Islandbridge','ISLANDBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:38','1900-01-01 00:00:00',1,0,1),(12869,'28874','Islandia','ISLANDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:38','1900-01-01 00:00:00',1,0,1),(12870,'36133','Islantilla','ISLANTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12871,'3124','Islares','ISLARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12872,'24084','Islas Del Rosario','ISLAS DEL ROSARIO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12873,'15340','Islas Secas','ISLAS SECAS',NULL,'','Panama','',0,0,169,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12874,'15387','Islay','ISLAY',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12875,'7136','Islay Island','ISLAY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12876,'26011','Isle Aux Coudres','ISLE AUX COUDRES',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12877,'14422','Isle Of Pines','ISLE OF PINES',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:05:40','1900-01-01 00:00:00',1,0,1),(12878,'43230','Isle Verde','ISLE VERDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12879,'5098','Isles Les Villenoy','ISLES LES VILLENOY',NULL,'','France','',0,0,76,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12880,'7144','Isles Of Scilly','ISLES OF SCILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12881,'44058','Isles-les-villenoy','ISLES-LES-VILLENOY',NULL,'','France','',0,0,76,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12882,'8309','Isleworth','ISLEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12883,'8310','Islington','ISLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12884,'24215','Islita','ISLITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12885,'2429','Ismailia','ISMAILIA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12886,'1344','Ismailia-port Said','ISMAILIA-PORT SAID',NULL,'','EGYPT','',0,0,65,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12887,'227','Ismaning','ISMANING',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12888,'22570','Isny Im Allgau','ISNY IM ALLGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12889,'13256','Isogo','ISOGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12890,'4845','Isola','ISOLA',NULL,'','France','',0,0,76,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12891,'39916','Isola Del Liri','ISOLA DEL LIRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:43','1900-01-01 00:00:00',1,0,1),(12892,'4295','Isola-2000','ISOLA-2000',NULL,'','France','',0,0,76,'2016-10-17 11:05:43','1900-01-01 00:00:00',1,0,1),(12893,'42325','Isole Tremiti','ISOLE TREMITI',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12894,'39482','Isovol','ISOVOL',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12895,'17302','Isparta','ISPARTA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12896,'12005','Ispica','ISPICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12897,'12006','Ispra','ISPRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12898,'31520','Issaquah','ISSAQUAH',NULL,'','United States','',0,0,231,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12899,'37919','Isselburg','ISSELBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12900,'37260','Issenheim','ISSENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12901,'5316','Issoire','ISSOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12902,'5646','Issoudun','ISSOUDUN',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12903,'4727','Issy-les-moulineaux','ISSY-LES-MOULINEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12904,'3241','Istan','ISTAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12905,'17306','Istanbul','ISTANBUL',NULL,'','Turkey','Istanbul',0,0,222,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12906,'40401','Isthmia','ISTHMIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12907,'42513','Istiaia - Evia','ISTIAIA - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12908,'12892','Istrana','ISTRANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12909,'6442','Istres','ISTRES',NULL,'','France','',0,0,76,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12910,'9988','Istria','ISTRIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12911,'42671','Istron','ISTRON',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12912,'958','Itabira','ITABIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12913,'42204','Itaborai','ITABORAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12914,'25041','Itacare','ITACARE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12915,'25085','Itaim','ITAIM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12916,'25102','Itaituba','ITAITUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12917,'25181','Itajai','ITAJAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12918,'41827','Italian Alps','ITALIAN ALPS',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12919,'13257','Itami','ITAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12920,'10700','Itanagar','ITANAGAR',NULL,'','India','Itanagar',40,0,101,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12921,'42759','Itanhaem','ITANHAEM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12922,'42205','Itapecerica Da Serra','ITAPECERICA DA SERRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12923,'25182','Itapema','ITAPEMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12924,'20601','Itasca','ITASCA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12925,'9656','Itea','ITEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12926,'28876','Ithaca','ITHACA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12927,'9780','Ithaki','ITHAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12928,'40280','Itsukushima','ITSUKUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12929,'27869','Itta Bena','ITTA BENA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12930,'24468','Itterdorfl','ITTERDORFL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12931,'23038','Ittigen','ITTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12932,'24984','Itupeva','ITUPEVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12933,'26110','Ituzaingo','ITUZAINGO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12934,'2028','Itzehoe','ITZEHOE',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12935,'27870','Iuka','IUKA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12936,'4041','Ivalo','IVALO',NULL,'','Finland','',0,0,75,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12937,'17654','Ivanof Bay','IVANOF BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12938,'17489','Ivano-frankovsk','IVANO-FRANKOVSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12939,'16420','Ivanova','IVANOVA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12940,'33344','Ivins','IVINS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12941,'19094','Ivoryton','IVORYTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12942,'4728','Ivry-sur-seine','IVRY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12943,'26012','Ivujivik','IVUJIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12944,'35715','Iwaki','IWAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12945,'35714','Iwakuni','IWAKUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12946,'13258','Iwami','IWAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12947,'43178','Iwate','IWATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12948,'9485','Ixia','IXIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12949,'14004','Ixmiquilpan','IXMIQUILPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12950,'13821','Ixtacalco','IXTACALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12951,'13995','Ixtapa','IXTAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12952,'13823','Ixtapalapa','IXTAPALAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12953,'14036','Ixtapaluca','IXTAPALUCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12954,'14037','Ixtapan De La Sal','IXTAPAN DE LA SAL',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12955,'9879','Izabal','IZABAL',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12956,'15691','Izabelin','IZABELIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12957,'16468','Izhevsk','IZHEVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12958,'17317','Izmir','IZMIR',NULL,'','Turkey','Izmir',0,0,222,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12959,'17213','Izmit','IZMIT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12960,'42744','Iznajar','IZNAJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12961,'3242','Iznájar','IZNÁJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12962,'17275','Iznik','IZNIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12963,'16633','Izola','IZOLA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12964,'13259','Izumi','IZUMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12965,'35716','Izumiotsu','IZUMIOTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12966,'13146','Izumi-otsu','IZUMI-OTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12967,'13147','Izumisano','IZUMISANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12968,'13260','Izumo','IZUMO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12969,'39467','Izunagaoka','IZUNAGAOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12970,'42893','Izunokuni','IZUNOKUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12971,'10650','Jabalpur','JABALPUR',NULL,'','India','Jabalpur',15,0,101,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12972,'14150','Jabat','JABAT',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12973,'26240','Jabiru','JABIRU',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12974,'40380','Jablonec Nad Nisou','JABLONEC NAD NISOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12975,'25123','Jaboatao','JABOATAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12976,'25086','Jaboticatubas','JABOTICATUBAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12977,'42760','Jacarei','JACAREI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12978,'30702','Jacinto City','JACINTO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12979,'32822','Jackpot','JACKPOT',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12980,'30703','Jacksboro','JACKSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12981,'43800','Jacksons Point','JACKSONS POINT',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:59','1900-01-01 00:00:00',1,0,1),(12982,'20602','Jacksonville','JACKSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:59','1900-01-01 00:00:00',1,0,1),(12983,'24154','Jaco','JACO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:06:01','1900-01-01 00:00:00',1,0,1),(12984,'15304','Jacobabad','JACOBABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12985,'15569','Jacquinot Bay','JACQUINOT BAY',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12986,'10527','Jadabpur','JADABPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12987,'3243','Jaen','JAEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12988,'32718','Jaffrey','JAFFREY',NULL,'','United States','',0,0,231,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12989,'44211','Jagatsukh','JAGATSUKH',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12990,'10528','Jagdalpur','JAGDALPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12991,'715','Jagel','JAGEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12992,'39483','Jagersrust','JAGERSRUST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12993,'966','Jaguariaiva','JAGUARIAIVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12994,'1486','Jaguariuna','JAGUARIUNA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12995,'10529','Jaipur','JAIPUR',NULL,'','India','Jaipur tourism | Jaipur tourist | Jaipur travel pa',2,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12996,'10670','Jaisalmer','JAISALMER',NULL,'','India','Jaisalmer City Tour | Jaisalmer Tour Packages | Ja',2,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12997,'44212','Jaisamand','JAISAMAND',NULL,'','India','',0,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12998,'10285','Jakarta','JAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12999,'22979','Jakes Corner','JAKES CORNER',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13000,'9860','Jakobshavn','JAKOBSHAVN',NULL,'','Greenland','',0,0,87,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13001,'4010','Jakobstad','JAKOBSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13002,'3759','Jalance','JALANCE',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13003,'10530','Jalandhar','JALANDHAR',NULL,'','India','Jalandhar',19,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13004,'13903','Jalapa','JALAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13005,'14119','Jalcomulco','JALCOMULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13006,'40855','Jaldapara','JALDAPARA',NULL,'','India','',0,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13007,'40856','Jalgaon','JALGAON',NULL,'','India','Jalgaon',5,0,101,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13008,'43259','Jalisco','JALISCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13010,'41786','Jalpan De Serra','JALPAN DE SERRA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13011,'14151','Jaluit','JALUIT',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13012,'13065','Jamaica','JAMAICA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13013,'28878','Jamaica','JAMAICA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13014,'10279','Jambi','JAMBI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13015,'17458','Jambiani','JAMBIANI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13016,'24775','Jambol','JAMBOL',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13017,'28309','Jamesburg','JAMESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13018,'32463','Jamestown','JAMESTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13019,'18557','Jamestown','JAMESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13020,'42928','Jamestown','JAMESTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:06','1900-01-01 00:00:00',1,0,1),(13021,'10642','Jammu','JAMMU',NULL,'','India','Jammu',13,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13022,'10635','Jamnagar','JAMNAGAR',NULL,'','India','Jamnagar',16,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13023,'4011','Jamsa','JAMSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13024,'10627','Jamshedpur','JAMSHEDPUR',NULL,'','India','Jamshedpur',48,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13025,'18558','Jamul','JAMUL',NULL,'','United States','',0,0,231,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13026,'10420','Janai','JANAI',NULL,'','India','',0,0,101,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13027,'39583','Jandaira','JANDAIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13028,'27670','Jane','JANE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13029,'31776','Janesville','JANESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13030,'42206','Japaratinga','JAPARATINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13031,'41953','Jaraba','JARABA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13032,'43087','Jarabacoa','JARABACOA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13033,'25183','Jaragua Do Sul','JARAGUA DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13034,'43332','Jarandilla','JARANDILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13035,'32823','Jarbidge','JARBIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13036,'24985','Jardim Paulista - Consolocao','JARDIM PAULISTA - CONSOLOCAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13037,'6239','Jard-sur-mer','JARD-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13038,'16674','Jarfalla','JARFALLA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13039,'17157','Jarjis','JARJIS',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13040,'15671','Jaroslaw','JAROSLAW',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13041,'3971','Jarvenpaa','JARVENPAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13042,'44043','Jasionka','JASIONKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13043,'20911','Jasper','JASPER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13044,'25326','Jasper','JASPER',NULL,'','Canada','Jasper',0,0,39,'2016-10-17 11:06:11','1900-01-01 00:00:00',1,0,1),(13045,'6640','Jasseron','JASSERON',NULL,'','France','',0,0,76,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13046,'39271','Jászapáti','JÁSZAPÁTI',NULL,'','Hungary','',0,0,99,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13047,'10286','Jatinegara','JATINEGARA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13048,'41424','Jativa','JATIVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13049,'23240','Jaun','JAUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13050,'42774','Jaunay-clan','JAUNAY-CLAN',NULL,'','France','',0,0,76,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13051,'6443','Jausiers','JAUSIERS',NULL,'','France','',0,0,76,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13052,'6303','Jaux','JAUX',NULL,'','France','',0,0,76,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13053,'41009','Java','JAVA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13054,'1007','Java- Jakarta','JAVA- JAKARTA',NULL,'','INDONESIA','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13055,'15448','Javalera','JAVALERA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13056,'3409','Javea','JAVEA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13057,'36136','Javier','JAVIER',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13058,'10310','Jayapura','JAYAPURA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13059,'15754','Jayuya','JAYUYA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13060,'32824','Jean','JEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13061,'26013','Jean Lesage International Airport (Yqb)','JEAN LESAGE INTERNATIONAL AIRPORT (YQB)',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13062,'25926','Jebel Ali','JEBEL ALI',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13063,'35807','Jecheon','JECHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13064,'43811','Jechica','JECHICA',NULL,'','Chile','',0,0,45,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13065,'36717','Jedaidet Al Shebani','JEDAIDET AL SHEBANI',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13066,'8311','Jedburgh','JEDBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13067,'16515','Jeddah','JEDDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13068,'33665','Jeffersontown','JEFFERSONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:18','1900-01-01 00:00:00',1,0,1),(13069,'32619','Jeffreys Bay','JEFFREYS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13070,'14152','Jeh','JEH',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13071,'35799','Jeju (Cheju)','JEJU (CHEJU)',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13072,'13497','Jeju (City)','JEJU (CITY)',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13073,'19841','Jekyll Island','JEKYLL ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13074,'10163','Jelambar','JELAMBAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13075,'15708','Jelenia Gora','JELENIA GORA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13076,'33174','Jellico','JELLICO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13077,'10014','Jelsa','JELSA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13078,'10228','Jember','JEMBER',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13079,'28533','Jemez Springs','JEMEZ SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13080,'1974','Jena','JENA',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13081,'23241','Jenaz','JENAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13082,'32918','Jenks','JENKS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13083,'18559','Jenner','JENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13084,'27063','Jennersdorf','JENNERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13085,'27672','Jennings','JENNINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13086,'34199','Jenolan Caves','JENOLAN CAVES',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13087,'25602','Jenpeg','JENPEG',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13088,'19423','Jensen Beach','JENSEN BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13089,'35796','Jeonju','JEONJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13090,'14283','Jerantut','JERANTUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13091,'14305','Jerejak Island','JEREJAK ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13092,'43954','Jerez De Garcia Salinas','JEREZ DE GARCIA SALINAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13093,'3760','Jerica','JERICA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13094,'28882','Jericho','JERICHO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13095,'35415','Jericho','JERICHO',NULL,'','Israel','',0,0,106,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13096,'25056','Jericoacoara','JERICOACOARA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13097,'34200','Jerilderie','JERILDERIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13098,'20367','Jerome','JEROME',NULL,'','United States','',0,0,231,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13099,'9311','Jersey','JERSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13100,'28310','Jersey City','JERSEY CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13101,'20603','Jerseyville','JERSEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13102,'3640','Jerte','JERTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13103,'25251','Jerudong','JERUDONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13104,'11043','Jerusalem','JERUSALEM',NULL,'','Israel','Jerusalem',0,0,106,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13105,'40639','Jerzens','JERZENS',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13106,'12825','Jerzu','JERZU',NULL,'','Italy','',0,0,107,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13107,'24347','Jesenik','JESENIK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13108,'11244','Jesi','JESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13109,'34201','Jesmond','JESMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13110,'8312','Jesmond','JESMOND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13111,'14848','Jessheim','JESSHEIM',NULL,'','Norway','',0,0,164,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13112,'24755','Jessore','JESSORE',NULL,'','Bangladesh','Jessore ',0,0,18,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13113,'21721','Jessup','JESSUP',NULL,'','United States','',0,0,231,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13114,'19842','Jesup','JESUP',NULL,'','United States','',0,0,231,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13115,'15384','Jesus Maria','JESUS MARIA',NULL,'','Peru','',0,0,172,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13116,'24631','Jette','JETTE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13117,'2070','Jettingen-scheppach','JETTINGEN-SCHEPPACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13118,'14946','Jevnaker','JEVNAKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13119,'37768','Jewett','JEWETT',NULL,'','United States','',0,0,231,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13120,'10421','Jeypore','JEYPORE',NULL,'','India','',0,0,101,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13121,'40814','Jhansi','JHANSI',NULL,'','India','Jhansi',6,0,101,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13122,'17391','Jhihbin Hot Springs','JHIHBIN HOT SPRINGS',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13123,'41761','Ji Parana','JI PARANA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13124,'23904','Jiading','JIADING',NULL,'','China','',0,0,46,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13125,'23786','Jiamusi','JIAMUSI',NULL,'','China','',0,0,46,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13126,'23728','Ji\'an','JI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13127,'34875','Jiande','JIANDE',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13128,'23966','Jiangmen','JIANGMEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13129,'23740','Jiangning','JIANGNING',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13130,'43175','Jiangsu','JIANGSU',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13131,'23741','Jiangyin','JIANGYIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13132,'43056','Jiantang','JIANTANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13133,'23700','Jiaojiang','JIAOJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13134,'17392','Jiaosi','JIAOSI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13135,'42300','Jiaoxi','JIAOXI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13136,'23669','Jiaozhou','JIAOZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13137,'23793','Jiaozuo','JIAOZUO',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13138,'23770','Jiashan','JIASHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13139,'23701','Jiaxing','JIAXING',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13140,'23848','Jiayuguan','JIAYUGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13141,'24343','Jihlava','JIHLAVA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13142,'40101','Jijel','JIJEL',NULL,'','Algeria','',0,0,3,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13143,'3860','Jijiga','JIJIGA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13144,'3761','Jijona','JIJONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13145,'23763','Jilin','JILIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13146,'42600','Jim Corbett National Park','JIM CORBETT NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13147,'29995','Jim Thorpe','JIM THORPE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13148,'10229','Jimbaran','JIMBARAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13149,'3861','Jimma','JIMMA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13150,'23926','Jinan','JINAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13151,'23916','Jincheng','JINCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13152,'34202','Jindabyne','JINDABYNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13153,'34950','Jindrichuv Hradec','JINDRICHUV HRADEC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13154,'23560','Jingdezhen','JINGDEZHEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13155,'23729','Jinggangshan','JINGGANGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13156,'23598','Jinghong','JINGHONG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13157,'37831','Jingili','JINGILI',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13158,'23828','Jingmen','JINGMEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13159,'23829','Jingzhou','JINGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13160,'23702','Jinhua','JINHUA',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13161,'23878','Jining','JINING',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13162,'37681','Jinja','JINJA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13163,'23730','Jinjiang','JINJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13164,'3862','Jinka','JINKA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13165,'14444','Jinotega','JINOTEGA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13166,'23703','Jinshan','JINSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13167,'42302','Jinshan','JINSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13168,'23742','Jintan','JINTAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13169,'23862','Jinzhong','JINZHONG',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13170,'23871','Jinzhou','JINZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13171,'43353','Jiu Zhai Gou','JIU ZHAI GOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13172,'34876','Jiuhuashan Mountain','JIUHUASHAN MOUNTAIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13173,'23731','Jiujiang','JIUJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13174,'42389','Jiuquan','JIUQUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13175,'23603','Jiuzhaigou','JIUZHAIGOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13176,'15305','Jiwani','JIWANI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13177,'39390','Jixi','JIXI',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13178,'971','Joacaba','JOACABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13179,'37234','Joachimsthal','JOACHIMSTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13180,'41444','Joanetes','JOANETES',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13181,'25108','Joao Pessoa','JOAO PESSOA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13182,'38543','Jochberg','JOCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13183,'43955','Jocotepec','JOCOTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13184,'10531','Jodhpur','JODHPUR',NULL,'','India','Jodhpur',2,0,101,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13185,'33175','Joelton','JOELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13186,'3913','Joensuu','JOENSUU',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13187,'35717','Joetsu','JOETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13188,'10133','Jogyakarta','JOGYAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13189,'32569','Johannesburg','JOHANNESBURG',NULL,'','South Africa','Johannesburg',0,0,195,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13190,'16828','Johanneshov','JOHANNESHOV',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13191,'228','Johannisthal','JOHANNISTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13192,'10164','Johar Baru','JOHAR BARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13193,'26241','John Brewer Reef','JOHN BREWER REEF',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13194,'30350','Johns Island','JOHNS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:06:38','1900-01-01 00:00:00',1,0,1),(13195,'18037','Johnson','JOHNSON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:38','1900-01-01 00:00:00',1,0,1),(13196,'26160','Johnsons Point','JOHNSONS POINT',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:06:39','1900-01-01 00:00:00',1,0,1),(13197,'30249','Johnston','JOHNSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13198,'8313','Johnstone','JOHNSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13199,'29996','Johnstown','JOHNSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13200,'14284','Johor Baharu','JOHOR BAHARU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13201,'5465','Joigny','JOIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13202,'5731','Joinville','JOINVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13203,'24986','Joinville','JOINVILLE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13204,'4729','Joinville-le-pont','JOINVILLE-LE-PONT',NULL,'','France','',0,0,76,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13205,'40858','Jojawar','JOJAWAR',NULL,'','India','',0,0,101,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13206,'16752','Jokkmokk','JOKKMOKK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13207,'20604','Joliet','JOLIET',NULL,'','United States','',0,0,231,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13208,'26014','Joliette','JOLIETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13209,'15520','Jolo','JOLO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13210,'10230','Jombang','JOMBANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13211,'15036','Jomsom','JOMSOM',NULL,'','Nepal','Jomsom ',0,0,153,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13212,'16986','Jomtien Beach','JOMTIEN BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13213,'6641','Jonage','JONAGE',NULL,'','France','',0,0,76,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13214,'29998','Jonas','JONAS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13215,'22127','Jones','JONES',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13216,'19843','Jonesboro','JONESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13217,'33177','Jonesborough','JONESBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:44','1900-01-01 00:00:00',1,0,1),(13218,'29999','Jonestown','JONESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:44','1900-01-01 00:00:00',1,0,1),(13219,'33896','Jonesville','JONESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13220,'16721','Jonkoping','JONKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13221,'26015','Jonquiere','JONQUIERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13222,'6642','Jons','JONS',NULL,'','France','',0,0,76,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13223,'6339','Jonzac','JONZAC',NULL,'','France','',0,0,76,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13224,'26242','Joondalup','JOONDALUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13225,'27673','Joplin','JOPLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13226,'21722','Joppa','JOPPA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13227,'8314','Joppa','JOPPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13228,'37767','Jorba','JORBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13229,'14645','Jordaan','JORDAAN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13230,'27418','Jordan','JORDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13231,'34525','Jordan','JORDAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13232,'10532','Jorhat','JORHAT',NULL,'','India','Jorhat',10,0,101,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13233,'2179','Jorlunde','JORLUNDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13234,'3937','Joroinen','JOROINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13235,'26094','Jose De San Martin','JOSE DE SAN MARTIN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13236,'45','Josefov Dul','JOSEFOV DUL',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13237,'29685','Joseph','JOSEPH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13238,'16263','Joshkar-ola','JOSHKAR-OLA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13239,'38637','Joshua','JOSHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13240,'5853','Jossigny','JOSSIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13241,'1886','Jossnitz','JOSSNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13242,'32222','Jost Van Dyke','JOST VAN DYKE',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13243,'13148','Joto','JOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13244,'6444','Joucas','JOUCAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13245,'6800','Joue-les-tours','JOUE-LES-TOURS',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13246,'16497','Jouf','JOUF',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13247,'13553','Jounieh','JOUNIEH',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13248,'30709','Jourdanton','JOURDANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13249,'4012','Joutsa','JOUTSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13250,'6805','Jouy Aux Arches','JOUY AUX ARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13251,'41431','Jouy-aux-arches','JOUY-AUX-ARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13252,'4730','Jouy-en-josas','JOUY-EN-JOSAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13253,'13149','Joyo','JOYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13254,'15655','Jozefow','JOZEFOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13255,'2376','Juan Dolio','JUAN DOLIO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13256,'3553','Juanetas','JUANETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13257,'31521','Juanita','JUANITA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13258,'15429','Juanjui','JUANJUI',NULL,'','Peru','',0,0,172,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13259,'6445','Juan-les-pins','JUAN-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13260,'16576','Juayua','JUAYUA',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13261,'25057','Juazeiro Do Norte','JUAZEIRO DO NORTE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13262,'13554','Jubayl','JUBAYL',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13263,'43719','Jubilee Pocket','JUBILEE POCKET',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13264,'24419','Judenburg','JUDENBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13265,'2321','Juelsminde','JUELSMINDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13266,'43606','Juffair','JUFFAIR',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13267,'10533','Juhu Beach','JUHU BEACH',NULL,'','India','',0,0,101,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13268,'24987','Juina','JUINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13269,'36017','Juiquan','JUIQUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13270,'27235','Juist','JUIST',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13271,'25087','Juiz De Fora','JUIZ DE FORA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13272,'26047','Jujuy','JUJUY',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13273,'16753','Jukkasjarvi','JUKKASJARVI',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13274,'33467','Julesburg','JULESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13275,'26413','Julia Creek','JULIA CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13276,'15365','Juliaca','JULIACA',NULL,'','Peru','Juliaca',0,0,172,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13277,'18562','Julian','JULIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13278,'25900','Julianadorp','JULIANADORP',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13279,'9861','Julianehab','JULIANEHAB',NULL,'','Greenland','',0,0,87,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13280,'32660','Juliasdale','JULIASDALE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13281,'37717','Julienas','JULIENAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13282,'194','Juliusruh-reugen','JULIUSRUH-REUGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13283,'44059','Jumieges','JUMIEGES',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13284,'40561','Jumièges','JUMIÈGES',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13285,'15053','Jumla','JUMLA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13286,'25328','Jumping Pond','JUMPING POND',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13288,'25207','Jundiai','JUNDIAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13289,'18563','June Lake','JUNE LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13290,'17655','Juneau','JUNEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13291,'34203','Junee','JUNEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13292,'23039','Jungfraujoch','JUNGFRAUJOCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13293,'24469','Jungholz','JUNGHOLZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13294,'38091','Junin De Los Andes','JUNIN DE LOS ANDES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13295,'19425','Juno Beach','JUNO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13296,'19426','Jupiter','JUPITER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13297,'23040','Jura','JURA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13298,'40385','Jurata','JURATA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13299,'27236','Jurgenstorf','JURGENSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13300,'40630','Jurien Bay','JURIEN BAY',NULL,'','Australia','Jurien Bay',0,0,13,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13301,'13668','Jurmala','JURMALA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13302,'20605','Justice','JUSTICE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13303,'5923','Juvignac','JUVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13304,'4731','Juvisy-sur-orge','JUVISY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13305,'23891','Juyongguan','JUYONGGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13306,'43750','Jwalapur','JWALAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13307,'2283','Jyllinge','JYLLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13308,'43872','Jyvaeskylae','JYVAESKYLAE',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13309,'4013','Jyvaskyla','JYVASKYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13310,'20010','Kaaawa','KAAAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13311,'38356','Kaag','KAAG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13312,'20011','Kaanapali','KAANAPALI',NULL,'','United States','',0,0,231,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13313,'4014','Kaarina','KAARINA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13314,'514','Kaarst','KAARST',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13315,'14599','Kaatsheuvel','KAATSHEUVEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13316,'41126','Kabale','KABALE',NULL,'','Uganda','',0,0,226,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13317,'16349','Kabardinka','KABARDINKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13318,'14153','Kaben','KABEN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13319,'10423','Kabini','KABINI',NULL,'','India','',17,0,101,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13320,'3863','Kabri Dar','KABRI DAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13321,'16528','Kabrousse','KABROUSSE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13322,'25838','Kabul','KABUL',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13323,'4056','Kadavu','KADAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13324,'39870','Kadavulailai','KADAVULAILAI',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13325,'17214','Kadikoy - Uskudar (Asian Side)','KADIKOY - USKUDAR (ASIAN SIDE)',NULL,'','Turkey','',0,0,222,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13326,'26455','Kadina','KADINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13327,'33017','Kadoka','KADOKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13328,'13261','Kadoma','KADOMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13329,'32661','Kadoma','KADOMA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13330,'42282','Kadyny','KADYNY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13331,'42824','Kaeng Krachan','KAENG KRACHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13332,'40249','Kafountine','KAFOUNTINE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13333,'13262','Kaga','KAGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13334,'43541','Kagawa','KAGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13335,'17307','Kagithane','KAGITHANE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13336,'20012','Kahakuloa','KAHAKULOA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:01','1900-01-01 00:00:00',1,0,1),(13337,'20013','Kahana','KAHANA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:01','1900-01-01 00:00:00',1,0,1),(13338,'26016','Kahnawake','KAHNAWAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13339,'27675','Kahoka','KAHOKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13340,'20016','Kahuku','KAHUKU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13341,'20017','Kahului','KAHULUI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13342,'16987','Kai Be Beach','KAI BE BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13343,'23794','Kaifeng','KAIFENG',NULL,'','China','',0,0,46,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13344,'15116','Kaikohe','KAIKOHE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13345,'15074','Kaikoura','KAIKOURA',NULL,'','New Zealand','Kaikoura',0,0,157,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13346,'10534','Kailashahar','KAILASHAHAR',NULL,'','India','',0,0,101,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13347,'23863','Kaili','KAILI',NULL,'','China','',0,0,46,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13348,'20018','Kailua','KAILUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13349,'20020','Kailua-kona','KAILUA-KONA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13350,'10311','Kaimana','KAIMANA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13351,'43751','Kainakary','KAINAKARY',NULL,'','India','',0,0,101,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13352,'20021','Kainaliu','KAINALIU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13353,'229','Kainsbach','KAINSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13354,'34878','Kaiping','KAIPING',NULL,'','China','',0,0,46,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13355,'17163','Kairouan','KAIROUAN',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13356,'9657','Kaisariani','KAISARIANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13357,'38140','Kaisersbach','KAISERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13358,'634','Kaiserslautern','KAISERSLAUTERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13359,'15075','Kaitaia','KAITAIA',NULL,'','New Zealand','Kaitaia',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13360,'43023','Kaiteriteri','KAITERITERI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13361,'15208','Kaiwaka','KAIWAKA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13362,'3945','Kajaani','KAJAANI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13363,'16599','Kajal','KAJAL',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13364,'14340','Kajang','KAJANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13365,'43752','Kakabe','KAKABE',NULL,'','India','',0,0,101,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13366,'38362','Kakadu','KAKADU',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13367,'13150','Kakeyu Hot Springs','KAKEYU HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13368,'17657','Kakhonak','KAKHONAK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13369,'43753','Kakinada','KAKINADA',NULL,'','India','',0,0,101,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13370,'37998','Kakopetria','KAKOPETRIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13371,'17658','Kaktovik','KAKTOVIK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13372,'35719','Kakunodate','KAKUNODATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13373,'44213','Kala Amb','KALA AMB',NULL,'','India','',0,0,101,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13374,'37409','Kala Nera','KALA NERA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13375,'9486','Kalafatis','KALAFATIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13376,'20022','Kalaheo','KALAHEO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13377,'3946','Kalajoki','KALAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13378,'31522','Kalaloch','KALALOCH',NULL,'','United States','',0,0,231,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13379,'31523','Kalama','KALAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13380,'43421','Kalamaki','KALAMAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13381,'9658','Kalamakion','KALAMAKION',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13382,'9793','Kalamata','KALAMATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13383,'22129','Kalamazoo','KALAMAZOO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13384,'9771','Kalambaka','KALAMBAKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13385,'9659','Kalami','KALAMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13386,'9660','Kalamos','KALAMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13387,'9487','Kalampaka','KALAMPAKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13388,'20023','Kalapana','KALAPANA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13389,'44214','Kalapet','KALAPET',NULL,'','India','',0,0,101,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13390,'40691','Kalathas','KALATHAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13391,'20024','Kalaupapa','KALAUPAPA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13392,'24276','Kalavasos','KALAVASOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13393,'9661','Kalavryta','KALAVRYTA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13394,'42079','Kalaw','KALAW',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13395,'26594','Kalbarri','KALBARRI',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13396,'1939','Kalbe','KALBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13397,'32635','Kalemie','KALEMIE',NULL,'','Fiji','',0,0,74,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13398,'26595','Kalgoorlie','KALGOORLIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13399,'43883','Kalibaru','KALIBARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13400,'15477','Kalibo','KALIBO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13401,'20025','Kalihiwai','KALIHIWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13402,'41696','Kalimantan','KALIMANTAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13403,'38534','Kalimpong','KALIMPONG',NULL,'','India','Kalimpong',12,0,101,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13404,'16326','Kaliningrad','KALININGRAD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13405,'27990','Kalispell','KALISPELL',NULL,'','United States','',0,0,231,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13406,'15613','Kalisz','KALISZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13407,'17255','Kalkan','KALKAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13408,'515','Kalkar','KALKAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13409,'26243','Kalkaringi','KALKARINGI',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13410,'22131','Kalkaska','KALKASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13411,'37730','Kallax','KALLAX',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13412,'9488','Kallikratia','KALLIKRATIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13413,'9662','Kallithea','KALLITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13414,'16730','Kalmar','KALMAR',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13415,'9490','Kalo Horio','KALO HORIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13416,'38798','Kalocsa','KALOCSA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13417,'37950','Kalogria','KALOGRIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13418,'20231','Kalona','KALONA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13419,'38295','Kalorama','KALORAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13420,'40610','Kalpaki','KALPAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13422,'42599','Kalpetta','KALPETTA',NULL,'','India','Kalpetta',3,0,101,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13423,'40334','Kals Am Grossglockner','KALS AM GROSSGLOCKNER',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13424,'17659','Kalskag','KALSKAG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13425,'17660','Kaltag','KALTAG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13426,'716','Kaltenkirchen','KALTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13427,'20026','Kaluaaha','KALUAAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13428,'16331','Kaluga','KALUGA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13429,'13617','Kalutara','KALUTARA',NULL,'','Sri Lanka','Kalutara',0,0,200,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13430,'34961','Kalvehave','KALVEHAVE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13431,'42508','Kalymnos','KALYMNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13432,'9492','Kalyves','KALYVES',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13433,'9903','Kam Tin','KAM TIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13434,'13396','Kamakura','KAMAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13435,'42051','Kamala','KAMALA',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13436,'24833','Kamalame Cay','KAMALAME CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13437,'20027','Kamalo','KAMALO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13438,'10535','Kamalpur','KAMALPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13439,'43973','Kamanjab','KAMANJAB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13440,'26244','Kamaran Downs','KAMARAN DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13441,'32350','Kamaran Island','KAMARAN ISLAND',NULL,'','Yemen','',0,0,240,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13442,'38273','Kamares (Achaea)','KAMARES (ACHAEA)',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13443,'10691','Kamarhati','KAMARHATI',NULL,'','India','',0,0,101,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13444,'9494','Kamari','KAMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13445,'26596','Kambalda','KAMBALDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13446,'38810','Kambi','KAMBI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13447,'9663','Kambos','KAMBOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13448,'10165','Kambuaya','KAMBUAYA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13449,'24776','Kamchia','KAMCHIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13450,'516','Kamen','KAMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13451,'9664','Kamena Vourla','KAMENA VOURLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13452,'40104','Kamenari','KAMENARI',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13453,'17490','Kamenets-podol\'skiy','KAMENETS-PODOL\'SKIY',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13454,'16357','Kamenka','KAMENKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13455,'16265','Kamenogorsk','KAMENOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13456,'35727','Kameoka','KAMEOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13457,'16930','Kameshli','KAMESHLI',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13458,'43911','Kameyama','KAMEYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13459,'13151','Kamigyo','KAMIGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13460,'42565','Kamikawa','KAMIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13461,'13264','Kami-renjaku','KAMI-RENJAKU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13462,'25463','Kamloops','KAMLOOPS',NULL,'','Canada','Kamloops',0,0,39,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13463,'43912','Kamogawa','KAMOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13464,'17479','Kampala','KAMPALA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13465,'42259','Kampar','KAMPAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13466,'635','Kamp-bornhofen','KAMP-BORNHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13467,'17063','Kamphaeng Phet','KAMPHAENG PHET',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13468,'37363','Kampong Cham','KAMPONG CHAM',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13469,'25252','Kampong Jerudong','KAMPONG JERUDONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13470,'9805','Kampos','KAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13471,'1772','Kampot','KAMPOT',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13472,'14341','Kampung Setiu Lama','KAMPUNG SETIU LAMA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13473,'43105','Kampur','KAMPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13474,'33346','Kanab','KANAB',NULL,'','United States','',0,0,231,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13475,'13265','Kanagawa','KANAGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13476,'40859','Kanam','KANAM',NULL,'','India','',0,0,101,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13477,'25329','Kananaskis','KANANASKIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13478,'24036','Kananga','KANANGA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13479,'9665','Kanapitsa','KANAPITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13480,'34526','Kanata','KANATA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13481,'37474','Kanatadika','KANATADIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13482,'10424','Kanatal','KANATAL',NULL,'','India','',0,0,101,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13483,'31999','Kanawha City','KANAWHA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13484,'13266','Kanazawa','KANAZAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13485,'16955','Kanchanaburi','KANCHANABURI',NULL,'','Thailand','Kanchanaburi',0,0,215,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13487,'10673','Kanchipuram','KANCHIPURAM',NULL,'','India','Kanchipuram',18,0,101,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13488,'13267','Kanda','KANDA',NULL,'','Japan','Kanda',0,0,110,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13489,'25839','Kandahar','KANDAHAR',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13490,'23242','Kandersteg','KANDERSTEG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13491,'10636','Kandla','KANDLA',NULL,'','India','',0,0,101,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13492,'38566','Kandooma','KANDOOMA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13493,'13601','Kandy','KANDY',NULL,'','Sri Lanka','kandy',0,0,200,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13494,'30000','Kane','KANE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13495,'20029','Kaneohe','KANEOHE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13496,'3887','Kanervamäki','KANERVAMÄKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13497,'37559','Kanfanar','KANFANAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13498,'14371','Kangar','KANGAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13499,'26805','Kangaroo Island','KANGAROO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13500,'3914','Kangasala','KANGASALA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13501,'36349','Kangerlussuaq','KANGERLUSSUAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13502,'26017','Kangiqsualujjuaq','KANGIQSUALUJJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13503,'26018','Kangiqsujuaq','KANGIQSUJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13504,'26019','Kangirsuk','KANGIRSUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13505,'13520','Kangnung','KANGNUNG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13506,'23872','Kangping','KANGPING',NULL,'','China','',0,0,46,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13507,'10536','Kangra','KANGRA',NULL,'','India','Kangra',1,0,101,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13508,'40106','Kanha','KANHA',NULL,'','India','',0,0,101,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13509,'43672','Kaniva','KANIVA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13510,'4015','Kankaanpaa','KANKAANPAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13511,'20606','Kankakee','KANKAKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13512,'13152','Kannai - Chinatown','KANNAI - CHINATOWN',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13513,'33898','Kannapolis','KANNAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13514,'42597','Kannur','KANNUR',NULL,'','India','Kannur',3,0,101,'2016-10-17 11:07:24','2017-08-17 11:29:04',1,0,1),(13515,'39014','Kanokupolu','KANOKUPOLU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13516,'10537','Kanpur','KANPUR',NULL,'','India','Kanpur',6,0,101,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13517,'13153','Kansai International Airport (Kix)','KANSAI INTERNATIONAL AIRPORT (KIX)',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13518,'13741','Kanuhara','KANUHARA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:07:25','1900-01-01 00:00:00',1,0,1),(13519,'13268','Kanuma','KANUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:25','1900-01-01 00:00:00',1,0,1),(13520,'40215','Kanyakumari','KANYAKUMARI',NULL,'','India','Kanyakumari',18,0,101,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13521,'43782','Kanye','KANYE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13522,'17440','Kaohsiung','KAOHSIUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13523,'20030','Kapaa','KAPAA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13524,'20031','Kapaau','KAPAAU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13525,'20032','Kapaia','KAPAIA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13526,'20033','Kapalua','KAPALUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13527,'42855','Kapas Island','KAPAS ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13528,'44215','Kapashera','KAPASHERA',NULL,'','India','',0,0,101,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13529,'24420','Kapfenberg','KAPFENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13530,'37698','Kapikiri','KAPIKIRI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13531,'14375','Kapit','KAPIT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13532,'40058','Kaplan','KAPLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13533,'24311','Kaplice','KAPLICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13534,'20034','Kapoho','KAPOHO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13535,'20035','Kapolei','KAPOLEI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13536,'16389','Kapotnya','KAPOTNYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13537,'10425','Kappad Beach','KAPPAD BEACH',NULL,'','India','',0,0,101,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13538,'23243','Kappel','KAPPEL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13539,'39970','Kappel-grafenhausen','KAPPEL-GRAFENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13540,'717','Kappeln','KAPPELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13541,'24386','Kaprun','KAPRUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13542,'34527','Kapuskasing','KAPUSKASING',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13543,'17288','Karabuk','KARABUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13544,'15289','Karachi','KARACHI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13545,'13439','Karaganda','KARAGANDA',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13547,'44216','Karaikudi','KARAIKUDI',NULL,'','India','Karaikudi',18,0,101,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13548,'44278','Karaman','KARAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13549,'23840','Karamay','KARAMAY',NULL,'','China','',0,0,46,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13550,'14306','Karambunai','KARAMBUNAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13551,'10231','Karangasem','KARANGASEM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13552,'10232','Karangbolong','KARANGBOLONG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13553,'3888','Karankamäki','KARANKAMÄKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13554,'14880','Karasjok','KARASJOK',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13555,'35720','Karatsu','KARATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13556,'43720','Karatta','KARATTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13557,'44009','Karatu','KARATU',NULL,'','Tanzania','Karatu ',0,0,214,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13558,'9495','Karavados','KARAVADOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13559,'440','Karben','KARBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13560,'9496','Kardamena','KARDAMENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13561,'43125','Kardamili','KARDAMILI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13562,'9497','Kardhitsa','KARDHITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13563,'42507','Karditsa','KARDITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13564,'3889','Karelia','KARELIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13565,'40560','Karesuando','KARESUANDO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13566,'10233','Karet','KARET',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13567,'39346','Karfas','KARFAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13568,'43068','Kargicak','KARGICAK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13569,'44217','Kargil','KARGIL',NULL,'','India','Kargil',13,0,101,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13570,'4016','Karhula','KARHULA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13571,'32662','Kariba','KARIBA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13572,'14409','Karibib','KARIBIB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13573,'38643','Karijini National Park','KARIJINI NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13574,'15118','Karikari Peninsula','KARIKARI PENINSULA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13575,'9666','Karistos','KARISTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13576,'42894','Kariya','KARIYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13577,'3972','Karjaa','KARJAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13578,'10058','Karlovac','KARLOVAC',NULL,'','Croatia','Karlovac',0,0,55,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13579,'38974','Karlovasi','KARLOVASI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13580,'24807','Karlovo','KARLOVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13581,'24289','Karlovy Vary','KARLOVY VARY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13582,'44250','Karlsborg','KARLSBORG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13583,'38834','Karlshagen','KARLSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13584,'16693','Karlshamn','KARLSHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13585,'27237','Karlshorst','KARLSHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13586,'16760','Karlskoga','KARLSKOGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13587,'16694','Karlskrona','KARLSKRONA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13588,'2284','Karlslunde Strand','KARLSLUNDE STRAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13589,'22571','Karlsruhe','KARLSRUHE',NULL,'','Germany','Karlsruhe',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13590,'16788','Karlstad','KARLSTAD',NULL,'','Sweden','Karlstad',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13591,'1687','Karlstejn','KARLSTEJN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13592,'17661','Karluk','KARLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13593,'42596','Karnal','KARNAL',NULL,'','India','Karnal',20,0,101,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13594,'32663','Karoi','KAROI',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13595,'441','Karolinenhof','KAROLINENHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13596,'41067','Karon','KARON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13597,'14275','Karonga','KARONGA',NULL,'','Malawi','',0,0,131,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13598,'9498','Karoussades','KAROUSSADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13599,'842','Karow','KAROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13600,'15709','Karpacz','KARPACZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13601,'9800','Karpathos','KARPATHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13602,'42043','Karpenisi','KARPENISI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13603,'9499','Karpenissi','KARPENISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13604,'26957','Karratha','KARRATHA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13605,'17323','Kars','KARS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13606,'32153','Karshi','KARSHI',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13607,'38700','Kartal','KARTAL',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13608,'42271','Kartalkaya','KARTALKAYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13609,'37736','Kartepe','KARTEPE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13610,'9500','Karterados','KARTERADOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13611,'24470','Kartitsch','KARTITSCH',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13612,'40242','Kartuzy','KARTUZY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13613,'10166','Karubaga','KARUBAGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13614,'13154','Karuizawa','KARUIZAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13615,'26414','Karumba','KARUMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13616,'2338','Karup','KARUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13617,'40860','Karur','KARUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13618,'37549','Karwar','KARWAR',NULL,'','India','',0,0,101,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13619,'42512','Karystos - Evia','KARYSTOS - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13620,'17187','Kas','KAS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13621,'17662','Kasaan','KASAAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13622,'32639','Kasaba Bay','KASABA BAY',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13623,'34528','Kasabonika','KASABONIKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13625,'32650','Kasama','KASAMA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13626,'25260','Kasane','KASANE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13627,'37761','Kasaragod','KASARAGOD',NULL,'','India','',0,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13628,'39260','Kasauli','KASAULI',NULL,'','India','Kasauli',1,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13630,'17480','Kasese','KASESE',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13631,'34879','Kashgar','KASHGAR',NULL,'','China','',0,0,46,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13632,'23841','Kashi','KASHI',NULL,'','China','',0,0,46,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13633,'35721','Kashihara','KASHIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13634,'39868','Kashipur','KASHIPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13635,'17663','Kasigluk','KASIGLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13636,'24312','Kasperske Hory','KASPERSKE HORY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13637,'43127','Kassab','KASSAB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13638,'9667','Kassandra','KASSANDRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13639,'36358','Kassandra-afitos','KASSANDRA-AFITOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13640,'35229','Kassandra-fourka Bea','KASSANDRA-FOURKA BEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13641,'35235','Kassandra-hanioti','KASSANDRA-HANIOTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13642,'35246','Kassandra-kallithea','KASSANDRA-KALLITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13643,'35251','Kassandra-kriopigi','KASSANDRA-KRIOPIGI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13644,'35278','Kassandra-pefkohori','KASSANDRA-PEFKOHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13645,'35282','Kassandra-polychrono','KASSANDRA-POLYCHRONO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13646,'35295','Kassandra-sani','KASSANDRA-SANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13647,'196','Kassel','KASSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13648,'1026','Kassel-göttingen','KASSEL-GÖTTINGEN',NULL,'','GERMANY','',0,0,83,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13649,'9776','Kassiopi','KASSIOPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13650,'27419','Kasson','KASSON',NULL,'','United States','',0,0,231,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13651,'17325','Kastamonu','KASTAMONU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13652,'23244','Kastanienbaum','KASTANIENBAUM',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13653,'39489','Kastela','KASTELA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13654,'38104','Kastelir','KASTELIR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13655,'636','Kastellaun','KASTELLAUN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13656,'9501','Kastelorizo','KASTELORIZO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13657,'24609','Kasterlee','KASTERLEE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13658,'40453','Kastl','KASTL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13659,'9756','Kastoria','KASTORIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13660,'38883','Kastraki','KASTRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13661,'40303','Kastri','KASTRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13662,'42506','Kastro-kyllini','KASTRO-KYLLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13663,'2124','Kastrup','KASTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13664,'14276','Kasungu','KASUNGU',NULL,'','Malawi','',0,0,131,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13665,'26245','Kata Tjuta National Park','KATA TJUTA NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13666,'9502','Katákolon','KATÁKOLON',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13667,'9668','Katalagari Village','KATALAGARI VILLAGE',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13668,'35846','Kataragama','KATARAGAMA',NULL,'','Sri Lanka','Kataragama',0,0,200,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13669,'38100','Kateleios','KATELEIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13670,'9764','Katerini','KATERINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13671,'26375','Katherine','KATHERINE',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13672,'15054','Kathmandu','KATHMANDU',NULL,'','Nepal','Kathmandu',0,0,153,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13673,'32464','Kathu','KATHU',NULL,'','South Africa','',0,0,195,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13674,'17092','Kathu','KATHU',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13675,'15209','Katikati','KATIKATI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13676,'14406','Katima Mulilo','KATIMA MULILO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13677,'40147','Katlenburg-lindau','KATLENBURG-LINDAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13678,'9792','Kato Achaia','KATO ACHAIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13679,'39551','Kato Akourdalia','KATO AKOURDALIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13680,'34204','Katoomba','KATOOMBA',NULL,'','Australia','Katoomba',0,0,13,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13681,'9669','Katouna','KATOUNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13682,'15721','Katowice','KATOWICE',NULL,'','Poland','Katowice',0,0,174,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13683,'10538','Katra','KATRA',NULL,'','India','Katra',13,0,101,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13684,'16906','Katrineholm','KATRINEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13685,'26998','Katschberg','KATSCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13686,'27134','Katsdorf','KATSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13687,'13155','Katsushika','KATSUSHIKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13688,'42686','Katsuura','KATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13689,'42312','Katunayake','KATUNAYAKE',NULL,'','Sri Lanka','Katunayake',0,0,200,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13690,'40285','Katwe Town','KATWE TOWN',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13691,'14717','Katwijk Aan Zee','KATWIJK AAN ZEE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13692,'14646','Katwoude','KATWOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13693,'30712','Katy','KATY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13694,'10340','Kau','KAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13695,'36914','Kauai-hanamaulu','KAUAI-HANAMAULU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:42','1900-01-01 00:00:00',1,0,1),(13696,'36943','Kauai-kapaa','KAUAI-KAPAA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:42','1900-01-01 00:00:00',1,0,1),(13697,'36961','Kauai-lihue','KAUAI-LIHUE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13698,'37013','Kauai-poipu','KAUAI-POIPU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13699,'37018','Kauai-port Allen','KAUAI-PORT ALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13700,'36919','Kauai-princeville','KAUAI-PRINCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13701,'37058','Kauai-wailua','KAUAI-WAILUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13702,'37057','Kauai-waimea','KAUAI-WAIMEA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13703,'37060','Kauai-waipouli','KAUAI-WAIPOULI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13704,'230','Kaufbeuren','KAUFBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13705,'30714','Kaufman','KAUFMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13706,'4017','Kauhajoki','KAUHAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13707,'4018','Kauhava','KAUHAVA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13708,'31779','Kaukauna','KAUKAUNA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13709,'16119','Kaukura','KAUKURA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13710,'1975','Kaulsdorf','KAULSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13711,'20037','Kaunakakai','KAUNAKAKAI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13712,'13638','Kaunas','KAUNAS',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13713,'3973','Kauniainen','KAUNIAINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13714,'20038','Kaupakulua','KAUPAKULUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13715,'14979','Kaupanger','KAUPANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13716,'20039','Kaupo','KAUPO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13717,'20040','Kaupulehu','KAUPULEHU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13718,'37172','Kausani','KAUSANI',NULL,'','India','Kausani',9,0,101,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13719,'14881','Kautokeino','KAUTOKEINO',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13720,'42044','Kavala','KAVALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13721,'9760','Kavalla','KAVALLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13722,'39184','Kavarna','KAVARNA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13723,'15567','Kavieng','KAVIENG',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13724,'43165','Kavos','KAVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13725,'9670','Kavros','KAVROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13726,'13407','Kawagoe','KAWAGOE',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13727,'15119','Kawaha Point','KAWAHA POINT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13728,'20041','Kawaihae','KAWAIHAE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13729,'13270','Kawanishi','KAWANISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13730,'13271','Kawasaki','KAWASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13731,'42564','Kawazu','KAWAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13732,'43627','Kawerau','KAWERAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13733,'42953','Kawit','KAWIT',NULL,'','Philippines','',0,0,173,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13734,'18154','Kayenta','KAYENTA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13735,'17327','Kayseri','KAYSERI',NULL,'','Turkey','Kayseri',0,0,222,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13736,'6767','Kaysersberg','KAYSERSBERG',NULL,'','France','',0,0,76,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13737,'33348','Kaysville','KAYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13738,'16457','Kazan','KAZAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13739,'35934','Kazanlak','KAZANLAK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13740,'15656','Kazimierz Dolny','KAZIMIERZ DOLNY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13741,'42595','Kaziranga National Park','KAZIRANGA NATIONAL PARK',NULL,'','India','',10,0,101,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13742,'37578','Kazungula','KAZUNGULA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13743,'37817','Kazuno','KAZUNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13744,'32295','Ke Ga','KE GA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13745,'42505','Kea','KEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13746,'20042','Keaau','KEAAU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13747,'20043','Kealakekua','KEALAKEKUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13748,'20044','Kealia (Hawaii)','KEALIA (HAWAII)',NULL,'','United States','',0,0,231,'2016-10-17 11:07:51','1900-01-01 00:00:00',1,0,1),(13749,'20046','Keanae','KEANAE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:51','1900-01-01 00:00:00',1,0,1),(13750,'27679','Kearney','KEARNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:52','1900-01-01 00:00:00',1,0,1),(13751,'33349','Kearns','KEARNS',NULL,'','United States','',0,0,231,'2016-10-17 11:07:52','1900-01-01 00:00:00',1,0,1),(13752,'10167','Kebar','KEBAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13753,'10168','Kebayoran Baru','KEBAYORAN BARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13754,'17178','Kebili','KEBILI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13755,'17215','Keciler','KECILER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13756,'10082','Kecskemet','KECSKEMET',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13757,'1781','Kedah','KEDAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13758,'40815','Kedarnath','KEDARNATH',NULL,'','India','Kedarnath',9,0,101,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13759,'10300','Kediri','KEDIRI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13760,'38203','Kedonganan','KEDONGANAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13761,'16524','Kedougou','KEDOUGOU',NULL,'','Senegal','',0,0,187,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13762,'15586','Kedzierzyn Kozle','KEDZIERZYN KOZLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13763,'37198','Keedysville','KEEDYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13764,'17443','Keelung','KEELUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13765,'32720','Keene','KEENE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:54','1900-01-01 00:00:00',1,0,1),(13766,'34529','Keene','KEENE',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:54','1900-01-01 00:00:00',1,0,1),(13767,'24632','Keerbergen','KEERBERGEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13768,'14412','Keetmanshoop','KEETMANSHOOP',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13769,'36442','Keetmashoop','KEETMASHOOP',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13770,'9503','Kefalonia','KEFALONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13771,'35261','Kefalonia-lassi','KEFALONIA-LASSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13772,'35259','Kefalonia-lixouri','KEFALONIA-LIXOURI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13773,'35294','Kefalonia-skala','KEFALONIA-SKALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13774,'35298','Kefalonia-svoronata','KEFALONIA-SVORONATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13775,'11007','Keflavik','KEFLAVIK',NULL,'','Iceland','Keflavik',0,0,100,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13776,'26020','Kegaska','KEGASKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13777,'8315','Kegworth','KEGWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13778,'40381','Kehidakustany','KEHIDAKUSTANY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13779,'22572','Kehl','KEHL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13780,'8316','Keighley','KEIGHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13781,'26516','Keilor','KEILOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13782,'10169','Keisah','KEISAH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13783,'8317','Keiss','KEISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13784,'26456','Keith','KEITH',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13785,'718','Keitum','KEITUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13786,'29687','Keizer','KEIZER',NULL,'','United States','',0,0,231,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13787,'20048','Kekaha','KEKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13788,'13681','Kelaat Mgouna','KELAAT MGOUNA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13789,'3864','Kelafo','KELAFO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13790,'14308','Kelang','KELANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13791,'41710','Kelantan','KELANTAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13792,'10235','Kelila','KELILA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13793,'442','Kelkheim','KELKHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13794,'39671','Kell','KELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13795,'231','Kellberg','KELLBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13796,'24046','Kelle','KELLE',NULL,'','Congo','',0,0,51,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13797,'30716','Keller','KELLER',NULL,'','United States','',0,0,231,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13798,'7145','Kellington','KELLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13799,'20368','Kellogg','KELLOGG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13800,'10880','Kells','KELLS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13801,'40671','Kelmis','KELMIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13802,'25465','Kelowna','KELOWNA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13803,'25603','Kelsey','KELSEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13804,'18564','Kelseyville','KELSEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13805,'7146','Kelsick','KELSICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13806,'8318','Kelso','KELSO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13807,'31524','Kelso','KELSO',NULL,'','United States','',0,0,231,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13808,'443','Kelsterbach','KELSTERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13809,'30717','Kemah','KEMAH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13810,'17256','Kemer','KEMER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13811,'16335','Kemerovo','KEMEROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13812,'3924','Kemi','KEMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13813,'3925','Kemijarvi','KEMIJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13814,'24726','Kemmel','KEMMEL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13815,'32108','Kemmerer','KEMMERER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13816,'780','Kemnitz','KEMNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13817,'39678','Kempele','KEMPELE',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13818,'27238','Kempen','KEMPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13819,'34206','Kempsey','KEMPSEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13820,'637','Kempten','KEMPTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13821,'32570','Kempton Park','KEMPTON PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13822,'17664','Kenai','KENAI',NULL,'','United States','',0,0,231,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13823,'21406','Kenberma','KENBERMA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13824,'8319','Kendal','KENDAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13825,'19427','Kendall','KENDALL',NULL,'','United States','',0,0,231,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13826,'20914','Kendallville','KENDALLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13827,'10367','Kendari','KENDARI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13828,'37236','Kendenup','KENDENUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13829,'30718','Kenedy','KENEDY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13830,'28311','Kenilworth','KENILWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13831,'8320','Kenilworth','KENILWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13832,'14388','Keningau','KENINGAU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13833,'38221','Kenitra','KENITRA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13834,'41163','Kenley','KENLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13835,'33899','Kenly','KENLY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13836,'28065','Kenmare','KENMARE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13837,'10881','Kenmare','KENMARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13838,'28887','Kenmore','KENMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13839,'8321','Kenmore','KENMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13840,'7147','Kenn','KENN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13841,'33019','Kennebec','KENNEBEC',NULL,'','United States','',0,0,231,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13842,'21884','Kennebunk','KENNEBUNK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13843,'21885','Kennebunkport','KENNEBUNKPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13844,'30719','Kennedale','KENNEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13845,'9927','Kennedy Town','KENNEDY TOWN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13846,'21214','Kenner','KENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13847,'19844','Kennesaw','KENNESAW',NULL,'','United States','',0,0,231,'2016-10-17 11:08:09','1900-01-01 00:00:00',1,0,1),(13848,'27680','Kennett','KENNETT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:09','1900-01-01 00:00:00',1,0,1),(13849,'31527','Kennewick','KENNEWICK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13850,'7148','Kennford','KENNFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13851,'17666','Kennicott','KENNICOTT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13852,'8322','Kennington','KENNINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13853,'34531','Kenora','KENORA',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13854,'31780','Kenosha','KENOSHA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13855,'32000','Kenova','KENOVA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13856,'25818','Kensington','KENSINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13857,'34207','Kensington','KENSINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13858,'32466','Kensington','KENSINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13859,'8323','Kensington','KENSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13860,'29387','Kent','KENT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13861,'26806','Kent Town','KENT TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13862,'8324','Kentallen','KENTALLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13863,'17393','Kenting','KENTING',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13864,'20915','Kentland','KENTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13865,'29388','Kenton','KENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13866,'8325','Kenton','KENTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13867,'39340','Kenton On Sea','KENTON ON SEA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13868,'33666','Kentucky Lake','KENTUCKY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13869,'25722','Kentville','KENTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13870,'22132','Kentwood','KENTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13871,'18565','Kenwood','KENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13872,'20232','Keokuk','KEOKUK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13873,'20049','Keoneoio','KEONEOIO',NULL,'','United States','',0,0,231,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13874,'38823','Kep','KEP',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13875,'15634','Kepno','KEPNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13876,'26517','Kerang','KERANG',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13877,'9671','Keratsinion','KERATSINION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13878,'17516','Kerch','KERCH',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13879,'39153','Keremeos','KEREMEOS',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13880,'8326','Keresley','KERESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13881,'28888','Kerhonkson','KERHONKSON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13882,'15210','Kerikeri','KERIKERI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13883,'3938','Kerimaki','KERIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13884,'14573','Kerkrade','KERKRADE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13885,'35432','Kerman','KERMAN',NULL,'','Iran','',0,0,103,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13886,'30720','Kermit','KERMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13887,'47','Kernen','KERNEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13888,'33900','Kernersville','KERNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13889,'23245','Kerns','KERNS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13890,'18566','Kernville','KERNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13891,'10170','Kerobokan','KEROBOKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13892,'40293','Kerpen','KERPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13893,'34208','Kerrabee','KERRABEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13894,'30721','Kerrville','KERRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13895,'14309','Kerteh','KERTEH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13896,'2192','Kerteminde','KERTEMINDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13897,'39419','Kervignac','KERVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13898,'10539','Keshod','KESHOD',NULL,'','India','Keshod',16,0,101,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13899,'42594','Kesroli','KESROLI',NULL,'','India','',0,0,101,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13900,'1887','Kesselsdorf','KESSELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13901,'31136','Keswick','KESWICK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13902,'8327','Keswick','KESWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13903,'10125','Keszthely','KESZTHELY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13904,'10327','Ketapang','KETAPANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13905,'17667','Ketchikan','KETCHIKAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13906,'20369','Ketchum','KETCHUM',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13907,'42450','Ketsch','KETSCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13908,'8328','Kettering','KETTERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13909,'43642','Kettering','KETTERING',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13910,'31529','Kettle Falls','KETTLE FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13911,'18567','Kettleman City','KETTLEMAN CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13912,'517','Kettwig','KETTWIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13913,'32467','Keurboomstrand','KEURBOOMSTRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13914,'3915','Keuruu','KEURUU',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13915,'43313','Keutschach','KEUTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13916,'39022','Kewadin','KEWADIN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13917,'20608','Kewanee','KEWANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13918,'31782','Kewaunee','KEWAUNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13919,'7151','Kewstoke','KEWSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13920,'8329','Kexby','KEXBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:24','1900-01-01 00:00:00',1,0,1),(13921,'21723','Keymar','KEYMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13922,'8330','Keynsham','KEYNSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13923,'32001','Keyser','KEYSER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13924,'33020','Keystone','KEYSTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:26','1900-01-01 00:00:00',1,0,1),(13925,'38954','Kfar Blum','KFAR BLUM',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:26','1900-01-01 00:00:00',1,0,1),(13926,'42899','Kfardebiane','KFARDEBIANE',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13927,'16337','Khabarovsk','KHABAROVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13928,'16266','Khabarovsk-novyy','KHABAROVSK-NOVYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13929,'9672','Khaidharion','KHAIDHARION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13931,'10540','Khajuraho','KHAJURAHO',NULL,'','India','Khajuraho',15,0,101,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13932,'9673','Khalandrion','KHALANDRION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13933,'9505','Khalkidiki','KHALKIDIKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13934,'16508','Khamis Mushait','KHAMIS MUSHAIT',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13935,'34209','Khancoban','KHANCOBAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13936,'10541','Khandala','KHANDALA',NULL,'','India','Khandala',5,0,101,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13937,'9674','Khania','KHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13938,'36746','Khanom','KHANOM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13939,'16244','Khanty Mansiysk','KHANTY MANSIYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13940,'16338','Khanty-mansiysk','KHANTY-MANSIYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13941,'17065','Khao Kho','KHAO KHO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13942,'10542','Khar','KHAR',NULL,'','India','',0,0,101,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13943,'10692','Khardah','KHARDAH',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13944,'17512','Kharkiv','KHARKIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13945,'17491','Kharkov','KHARKOV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13946,'40908','Khartoum','KHARTOUM',NULL,'','Sudan','',0,0,205,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13947,'15284','Khasab','KHASAB',NULL,'','Oman','',0,0,165,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13948,'44218','Khatia','KHATIA',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13950,'38598','Khejarla','KHEJARLA',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13951,'17513','Kherson','KHERSON',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13952,'16390','Khimki','KHIMKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13953,'35425','Khimsar','KHIMSAR',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13954,'42262','Khiva','KHIVA',NULL,'','Uzbekistan','Khiva',0,0,232,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13955,'24284','Khlorakas','KHLORAKAS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13956,'17492','Khmelnitskiy','KHMELNITSKIY',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13957,'9675','Kholargos','KHOLARGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13958,'13539','Khong Island','KHONG ISLAND',NULL,'','Laos','',0,0,118,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13959,'36748','Khong Jiam','KHONG JIAM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13961,'35852','Khorfakkan','KHORFAKKAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13962,'16408','Khoroshevo','KHOROSHEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13963,'16413','Khoroshevskiy','KHOROSHEVSKIY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13964,'13696','Khouribga','KHOURIBGA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13965,'17103','Khudzhand','KHUDZHAND',NULL,'','Tajikistan','',0,0,213,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13966,'24756','Khulna','KHULNA',NULL,'','Bangladesh','Khulna',0,0,18,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13967,'15306','Khuzdar','KHUZDAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13968,'34210','Kiama','KIAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13969,'28889','Kiamesha Lake','KIAMESHA LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13970,'17668','Kiana','KIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13971,'30351','Kiawah Island','KIAWAH ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13972,'2276','Kibaek','KIBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13973,'7152','Kibblesworth','KIBBLESWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13974,'42900','Kibbutz Tzuba','KIBBUTZ TZUBA',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13975,'24047','Kibouende','KIBOUENDE',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13976,'8331','Kidderminster','KIDDERMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13977,'8332','Kidlington','KIDLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13978,'8333','Kidmore End','KIDMORE END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13979,'8334','Kidwelly','KIDWELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13980,'719','Kiel','KIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13981,'15722','Kielce','KIELCE',NULL,'','Poland','',0,0,174,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13982,'7153','Kielder','KIELDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13983,'23246','Kiental','KIENTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13984,'6768','Kientzheim','KIENTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13985,'32403','Kiepersoil','KIEPERSOIL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13986,'17493','Kiev','KIEV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13987,'9757','Kifisia','KIFISIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13988,'16480','Kigali','KIGALI',NULL,'','Rwanda','',0,0,508,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13989,'20050','Kihei','KIHEI',NULL,'','United States','',0,0,231,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13990,'42840','Kijal','KIJAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13991,'13156','Kikai Island','KIKAI ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13992,'13272','Kikuchi','KIKUCHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13993,'43913','Kikuyo','KIKUYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13994,'41162','Kilbirnie','KILBIRNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13995,'23247','Kilchberg','KILCHBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13996,'42377','Kilchrenan','KILCHRENAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13997,'10888','Kildare','KILDARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13998,'8335','Kildonan','KILDONAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13999,'8336','Kildrummy','KILDRUMMY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(14000,'8337','Kilfinan','KILFINAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(14001,'39888','Kilgetty','KILGETTY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14002,'30722','Kilgore','KILGORE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14003,'14154','Kili','KILI',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14004,'40312','Kilifi','KILIFI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14005,'17459','Kilimanjaro','KILIMANJARO',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14006,'35242','Kilini','KILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14007,'10786','Kilkee','KILKEE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14008,'8338','Kilkeel','KILKEEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14009,'10892','Kilkenny','KILKENNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14010,'42504','Kilkis','KILKIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14011,'10778','Kill','KILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14012,'10787','Killaloe','KILLALOE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14013,'34211','Killara','KILLARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14014,'10882','Killarney','KILLARNEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14015,'25604','Killarney','KILLARNEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14016,'40918','Killarney. Co.kerry','KILLARNEY. CO.KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14017,'42132','Killcare','KILLCARE',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14018,'41876','Killearn','KILLEARN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14019,'30723','Killeen','KILLEEN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14020,'10893','Killenard','KILLENARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14021,'7154','Killiechronan','KILLIECHRONAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14022,'8339','Killin','KILLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14023,'10843','Killiney','KILLINEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14024,'19097','Killingworth','KILLINGWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14025,'9506','Killini','KILLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14026,'41521','Killmallock','KILLMALLOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14027,'10883','Killorglin','KILLORGLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14028,'10821','Killybegs','KILLYBEGS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14029,'10844','Kilmainham','KILMAINHAM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14030,'31138','Kilmarnock','KILMARNOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14031,'8340','Kilmarnock','KILMARNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14032,'8341','Kilmelfort','KILMELFORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14033,'10912','Kilmessan','KILMESSAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14034,'3890','Kilpisjarvi','KILPISJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14035,'38765','Kilsyth','KILSYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14036,'10744','Kiltimagh','KILTIMAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14037,'7155','Kilve','KILVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14038,'17460','Kilwa','KILWA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14039,'8342','Kilwinning','KILWINNING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14040,'37810','Kilyos','KILYOS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14041,'10171','Kimam','KIMAM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14042,'33178','Kimball','KIMBALL',NULL,'','United States','',0,0,231,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14043,'15578','Kimbe','KIMBE',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14044,'25467','Kimberley','KIMBERLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14045,'32468','Kimberley','KIMBERLEY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14046,'31783','Kimberly','KIMBERLY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14047,'32621','Kimbwala','KIMBWALA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14048,'42503','Kimolos','KIMOLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14049,'8343','Kinbuck','KINBUCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14050,'8344','Kincardine','KINCARDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14051,'34533','Kincardine','KINCARDINE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14052,'8345','Kinclaven','KINCLAVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14053,'8346','Kincraig','KINCRAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14054,'7156','Kincraigie','KINCRAIGIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14055,'24048','Kindamba','KINDAMBA',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14056,'21216','Kinder','KINDER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14057,'28890','Kinderhook','KINDERHOOK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14058,'22947','Kindersley','KINDERSLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14059,'232','Kinding','KINDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14060,'24021','Kindu','KINDU',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14061,'39337','Kineta','KINETA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14062,'34534','King City','KING CITY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14063,'16498','King Khalid Military City','KING KHALID MILITARY CITY',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14064,'26713','Kingaroy','KINGAROY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14065,'27682','Kingdom City','KINGDOM CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14066,'39000','Kingersheim','KINGERSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14067,'21886','Kingfield','KINGFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14068,'42915','Kingfisher Bay','KINGFISHER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14069,'34535','Kingfisher Lake','KINGFISHER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14070,'18155','Kingman','KINGMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14071,'7157','Kings Coughton','KINGS COUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:47','1900-01-01 00:00:00',1,0,1),(14072,'8349','King\'s Lynn','KING\'S LYNN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:48','1900-01-01 00:00:00',1,0,1),(14073,'8350','Kingsbridge','KINGSBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:48','1900-01-01 00:00:00',1,0,1),(14074,'18570','Kingsburg','KINGSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14075,'34212','Kingscliff','KINGSCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14076,'10779','Kingscourt','KINGSCOURT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14077,'34213','Kingsford','KINGSFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14078,'32237','Kingshill','KINGSHILL',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14079,'19845','Kingsland','KINGSLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14080,'33179','Kingsport','KINGSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14081,'8351','Kingsteignton','KINGSTEIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14082,'8352','Kingston','KINGSTON',NULL,'','United Kingdom','Kingston',0,0,229,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14083,'13076','Kingston','KINGSTON',NULL,'','Jamaica','Kingston',0,0,109,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14084,'28891','Kingston','KINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14085,'25723','Kingston','KINGSTON',NULL,'','Canada','Kingston',0,0,39,'2016-10-17 11:08:51','1900-01-01 00:00:00',1,0,1),(14086,'26808','Kingston','KINGSTON',NULL,'','Australia','Kingston',0,0,13,'2016-10-17 11:08:51','1900-01-01 00:00:00',1,0,1),(14087,'9286','Kingston-upon-thames','KINGSTON-UPON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14088,'32170','Kingstown','KINGSTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14089,'30352','Kingstree','KINGSTREE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14090,'30725','Kingsville','KINGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14091,'8354','Kingussie','KINGUSSIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:55','1900-01-01 00:00:00',1,0,1),(14092,'32002','Kingwood','KINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:55','1900-01-01 00:00:00',1,0,1),(14093,'8355','Kinloch','KINLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14094,'7159','Kinlochard','KINLOCHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14095,'8357','Kinlochbervie','KINLOCHBERVIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14096,'8358','Kinlochleven','KINLOCHLEVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14097,'17394','Kinmen','KINMEN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14098,'37935','Kinneret','KINNERET',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14099,'10920','Kinnitty','KINNITTY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14100,'8359','Kinross','KINROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14101,'10714','Kinsale','KINSALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14102,'40919','Kinsale, Co.cork','KINSALE, CO.CORK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14103,'14804','Kinsarvik','KINSARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14104,'24037','Kinshasa','KINSHASA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14105,'29391','Kinsman','KINSMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14106,'33904','Kinston','KINSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14107,'43884','Kintamani','KINTAMANI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14108,'30003','Kintnersville','KINTNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14109,'8360','Kintore','KINTORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14110,'24049','Kintsana','KINTSANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14111,'41520','Kinvara','KINVARA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14112,'9507','Kiotari','KIOTARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14113,'21076','Kiowa','KIOWA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14114,'20051','Kipahula','KIPAHULA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14115,'233','Kipfenberg','KIPFENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14116,'17671','Kipnuk','KIPNUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14117,'9508','Kipri','KIPRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14118,'16548','Kirakira','KIRAKIRA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14119,'17260','Kirazli','KIRAZLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14120,'30728','Kirby','KIRBY',NULL,'','United States','',0,0,231,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14121,'852','Kirchberg','KIRCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14122,'24472','Kirchbichl','KIRCHBICHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14123,'23248','Kirchdorf','KIRCHDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14124,'22573','Kirchdorf','KIRCHDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14125,'39538','Kirchdorf An Der Krems','KIRCHDORF AN DER KREMS',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14126,'234','Kirchensittenbach','KIRCHENSITTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14127,'49','Kirchheim (Hesse)','KIRCHHEIM (HESSE)',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14128,'40075','Kirchheimbolanden','KIRCHHEIMBOLANDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14129,'27239','Kirchseelte','KIRCHSEELTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14130,'39488','Kirchwalsede','KIRCHWALSEDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14131,'22575','Kirchzarten','KIRCHZARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14132,'2449','Kirdasah','KIRDASAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14133,'17246','Kirikkale','KIRIKKALE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14134,'44031','Kirinda','KIRINDA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14135,'17217','Kiris','KIRIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14136,'35723','Kirishima','KIRISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14137,'7160','Kirkbean','KIRKBEAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14138,'8362','Kirkburton','KIRKBURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14139,'8363','Kirkby Lonsdale','KIRKBY LONSDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14140,'8366','Kirkcaldy','KIRKCALDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14141,'8367','Kirkcudbright','KIRKCUDBRIGHT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14142,'14882','Kirkenes','KIRKENES',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14143,'8368','Kirkintilloch','KIRKINTILLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14144,'41008','Kirkjubaejarkaustur','KIRKJUBAEJARKAUSTUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14145,'11023','Kirkjubaejarklaustur','KIRKJUBAEJARKLAUSTUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14146,'26021','Kirkland','KIRKLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14147,'31530','Kirkland','KIRKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14148,'17328','Kirklareli','KIRKLARELI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14149,'8369','Kirknewton','KIRKNEWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14150,'27683','Kirksville','KIRKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14151,'8370','Kirkwall','KIRKWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14152,'27684','Kirkwood','KIRKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14153,'38527','Kirkwood','KIRKWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14154,'235','Kirn','KIRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14155,'16341','Kirov','KIROV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14156,'17494','Kirovograd','KIROVOGRAD',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14157,'16404','Kirovsk','KIROVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14158,'34214','Kirribilli','KIRRIBILLI',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14159,'8371','Kirriemuir','KIRRIEMUIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14160,'1888','Kirschau','KIRSCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14161,'17329','Kirsehir','KIRSEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14162,'40579','Kirtlington','KIRTLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14163,'16754','Kiruna','KIRUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14164,'24573','Kirundo','KIRUNDO',NULL,'','Burundi','',0,0,36,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14165,'1648','Kiryat Shmona','KIRYAT SHMONA',NULL,'','Israel','',0,0,106,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14166,'24040','Kisangani','KISANGANI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14167,'13381','Kisarazu','KISARAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14168,'35433','Kish Island','KISH ISLAND',NULL,'','Iran','',0,0,103,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14169,'35724','Kishimoto','KISHIMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14170,'13273','Kishiwada','KISHIWADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14171,'17269','Kisikli','KISIKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14172,'40525','Kiskunfelegyhaza','KISKUNFELEGYHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14173,'16453','Kislovodsk','KISLOVODSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14174,'37847','Kiso','KISO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14175,'27685','Kissee Mills','KISSEE MILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14176,'19433','Kissimmee','KISSIMMEE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14177,'51','Kisslegg','KISSLEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14178,'16767','Kista','KISTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14179,'42111','Kisumu','KISUMU',NULL,'','Kenya','',0,0,113,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14180,'13157','Kitadaito','KITADAITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14181,'13158','Kitago','KITAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14182,'35731','Kitahiroshima','KITAHIROSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14183,'13275','Kitakami','KITAKAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14184,'13384','Kitakyushu','KITAKYUSHU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14185,'35732','Kitami','KITAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14186,'35725','Kitashiohara','KITASHIOHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14187,'3999','Kitee','KITEE',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14188,'24795','Kiten','KITEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14189,'39179','Kithnos','KITHNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14190,'24277','Kiti','KITI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14191,'17672','Kitoi','KITOI',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14192,'31531','Kitsap Peninsula','KITSAP PENINSULA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14193,'30004','Kittanning','KITTANNING',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14194,'21887','Kittery','KITTERY',NULL,'','United States','',0,0,231,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14195,'3926','Kittila','KITTILA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14196,'4036','Kittilä','KITTILÄ',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14197,'33905','Kitty Hawk','KITTY HAWK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14198,'32645','Kitwe','KITWE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14199,'35879','Kitzbuhel','KITZBUHEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14200,'236','Kitzingen','KITZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14201,'17673','Kivalina','KIVALINA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14202,'41212','Kiwengwa -Zanzibar','KIWENGWA -ZANZIBAR',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14203,'17267','Kizilagac','KIZILAGAC',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14204,'42757','Kizilcahamam','KIZILCAHAMAM',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14205,'34951','Kladno','KLADNO',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14206,'1999','Kladow','KLADOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14207,'38576','Klaeng','KLAENG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14208,'24562','Klagenfurt','KLAGENFURT',NULL,'','Austria','Klagenfurt',0,0,14,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14209,'35885','Klagenfurt-portschac','KLAGENFURT-PORTSCHAC',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14210,'13639','Klaipeda','KLAIPEDA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14211,'14980','Klakegg','KLAKEGG',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14212,'18572','Klamath','KLAMATH',NULL,'','United States','',0,0,231,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14213,'42841','Klang','KLANG',NULL,'','Malaysia','Klang',0,0,132,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14214,'41215','Klatovy','KLATOVY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14215,'17674','Klawock','KLAWOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14216,'39726','Kleena Kleene','KLEENA KLEENE',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14217,'1826','Klein Nemerow','KLEIN NEMEROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14218,'38911','Kleinarl','KLEINARL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14219,'40086','Kleinbartloff','KLEINBARTLOFF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14220,'34541','Kleinburg','KLEINBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14221,'43334','Kleine Scheidegg','KLEINE SCHEIDEGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14222,'27240','Kleinenwieden','KLEINENWIEDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14223,'781','Kleinmachnow','KLEINMACHNOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14224,'32469','Kleinmond','KLEINMOND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14225,'32404','Kleinzee','KLEINZEE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14226,'782','Kleinzerlang','KLEINZERLANG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14227,'25468','Klemtu','KLEMTU',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14228,'10287','Klender','KLENDER',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14229,'32571','Klerksdorp','KLERKSDORP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14230,'518','Kleve','KLEVE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14231,'39758','Klieken','KLIEKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14232,'237','Klingenbrunn','KLINGENBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14233,'720','Klintum','KLINTUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14234,'16866','Klippan','KLIPPAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14235,'37924','Klitoria','KLITORIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14236,'24313','Klobouky','KLOBOUKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14237,'40352','Kloevedal','KLOEVEDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14238,'19846','Klondike','KLONDIKE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14239,'16992','Klong Prao Beach','KLONG PRAO BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14240,'43617','Klongtoey','KLONGTOEY',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14241,'783','Kloster Zinna','KLOSTER ZINNA',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14242,'27105','Klosterneuburg','KLOSTERNEUBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14243,'23041','Klosters','KLOSTERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14244,'23249','Kloten','KLOTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14245,'40248','Klouvas','KLOUVAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14246,'42842','Kluang','KLUANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14248,'8372','Knaresborough','KNARESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14249,'8373','Knebworth','KNEBWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14250,'24583','Knesselare','KNESSELARE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14251,'33906','Knightdale','KNIGHTDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14252,'8374','Knighton','KNIGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14253,'10015','Knin','KNIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14254,'24421','Knittelfeld','KNITTELFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14255,'1455','Knock/mayo','KNOCK/MAYO',NULL,'','IRELAND','',0,0,105,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14256,'24727','Knokke-heist','KNOKKE-HEIST',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14257,'8375','Knottingley','KNOTTINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14258,'26022','Knowlton','KNOWLTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14259,'8376','Knowsley','KNOWSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14260,'8377','Knutsford','KNUTSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:19','1900-01-01 00:00:00',1,0,1),(14261,'32470','Knysna','KNYSNA',NULL,'','South Africa','Knysna',0,0,195,'2016-10-17 11:09:19','1900-01-01 00:00:00',1,0,1),(14262,'43722','Koah','KOAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14263,'13276','Kobe','KOBE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14264,'638','Kobern','KOBERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14265,'15636','Kobior','KOBIOR',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14266,'639','Koblenz','KOBLENZ',NULL,'','Germany','Koblenz',0,0,83,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14267,'17675','Kobuk','KOBUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14268,'9345','Kobuleti','KOBULETI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14269,'15692','Kobylak','KOBYLAK',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14270,'15693','Kobylka','KOBYLKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14271,'39618','Kobylnica','KOBYLNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14272,'41073','Kocaeli','KOCAELI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14273,'238','Kochel','KOCHEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14274,'13277','Kochi','KOCHI',NULL,'','Japan','Kochi (Cochin)',0,0,110,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14275,'10645','Kochi','KOCHI',NULL,'','India','Kochi (Cochin)',3,0,101,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14276,'43849','Kodagu','KODAGU',NULL,'','India','',0,0,101,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14277,'40817','Kodaikanal','KODAIKANAL',NULL,'','India','Kodaikanal',18,0,101,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14278,'13416','Kodaira','KODAIRA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14279,'33184','Kodak','KODAK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14281,'17676','Kodiak','KODIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14282,'38720','Kodungallur','KODUNGALLUR',NULL,'','India','',0,0,101,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14283,'1976','Koelleda','KOELLEDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14284,'52','Koenigsbrunn','KOENIGSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14285,'53','Koenigsfeld','KOENIGSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14286,'38313','Koenigstein (Bavaria)','KOENIGSTEIN (BAVARIA)',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14287,'519','Koenigswinter','KOENIGSWINTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14288,'44140','Koetschlitz','KOETSCHLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14289,'35880','Koflach','KOFLACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14290,'40472','Koforidua','KOFORIDUA',NULL,'','Ghana','',0,0,84,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14291,'13425','Kofu','KOFU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14292,'13278','Koga','KOGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14293,'39633','Kogatende','KOGATENDE',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14294,'2285','Koge','KOGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14295,'35845','Koggala','KOGGALA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14296,'43075','Koh Bulon Lae','KOH BULON LAE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14297,'42155','Koh Kong','KOH KONG',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:25','1900-01-01 00:00:00',1,0,1),(14298,'15307','Kohat','KOHAT',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14299,'10662','Kohima','KOHIMA',NULL,'','India','Kohima',44,0,101,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14300,'31784','Kohler','KOHLER',NULL,'','United States','',0,0,231,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14301,'13826','Kohunlich','KOHUNLICH',NULL,'','Mexico','',0,0,141,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14302,'39559','Kokinos Pirgos','KOKINOS PIRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14303,'9510','Kokkari','KOKKARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14304,'4019','Kokkola','KOKKOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14305,'39310','Kokkoni','KOKKONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:28','1900-01-01 00:00:00',1,0,1),(14306,'20053','Kokomo','KOKOMO',NULL,'','United States','',0,0,231,'2016-10-17 11:09:28','1900-01-01 00:00:00',1,0,1),(14307,'24728','Koksijde','KOKSIJDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14308,'14775','Kokstad','KOKSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14309,'13417','Kokubunji','KOKUBUNJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14310,'4037','Kolari','KOLARI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14311,'32368','Kolasin','KOLASIN',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14312,'239','Kolbermoor','KOLBERMOOR',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14313,'14849','Kolbotn','KOLBOTN',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14314,'16527','Kolda','KOLDA',NULL,'','Senegal','',0,0,187,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14315,'2322','Kolding','KOLDING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14316,'10543','Kolhapur','KOLHAPUR',NULL,'','India','Kolhapur ',5,0,101,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14317,'3892','Koli','KOLI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14318,'17678','Koliganek','KOLIGANEK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14319,'9512','Kolimbari','KOLIMBARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14320,'9677','Kolimbia','KOLIMBIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14321,'41214','Kolin','KOLIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14322,'37328','Kolios','KOLIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14323,'10693','Kolkata','KOLKATA',NULL,'0','','Kolkata',19,0,101,'2016-10-17 11:09:30','2017-05-12 06:26:27',1,0,1),(14324,'10544','Kollam','KOLLAM',NULL,'','India','Kollam',3,0,101,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14325,'15725','Kolobrzeg','KOLOBRZEG',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14326,'10054','Kolocep','KOLOCEP',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14327,'9390','Kololi','KOLOLI',NULL,'','Gambia','',0,0,81,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14328,'16439','Kolomyagi','KOLOMYAGI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14329,'6833','Kolonia','KOLONIA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14330,'24474','Kolsassberg','KOLSASSBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14331,'43429','Kolymbia','KOLYMBIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14332,'13159','Komae','KOMAE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14333,'42895','Komaki','KOMAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14334,'13742','Komandoo','KOMANDOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14335,'32572','Komatipoort','KOMATIPOORT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14336,'13279','Komatsu','KOMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14337,'38691','Komlo','KOMLO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14338,'38557','Kommeno','KOMMENO',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14339,'32384','Kommetjie','KOMMETJIE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14340,'10236','Komodo','KOMODO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14341,'10055','Komolac','KOMOLAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14342,'15670','Komorniki','KOMORNIKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14343,'9753','Komotini','KOMOTINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14344,'1775','Kompong Cham','KOMPONG CHAM',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14345,'16245','Komsomolsk','KOMSOMOLSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14346,'17257','Konakli','KONAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14347,'14430','Kone','KONE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14348,'2218','Kongens Lyngby','KONGENS LYNGBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14349,'38381','Kongerslev','KONGERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14350,'14407','Kongola','KONGOLA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14351,'24022','Kongolo','KONGOLO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14352,'14869','Kongsberg','KONGSBERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14353,'14892','Kongsvinger','KONGSVINGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14354,'39737','Konigsbach-stein','KONIGSBACH-STEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14355,'1695','Konigsfeld','KONIGSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14356,'27241','Konigslutter','KONIGSLUTTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14357,'42717','Konigstein','KONIGSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14358,'36066','Konigswinter','KONIGSWINTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14359,'15643','Konin','KONIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14360,'9678','Konitsa','KONITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14361,'10694','Konnagar','KONNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14362,'23250','Konolfingen','KONOLFINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14363,'2000','Konradshohe','KONRADSHOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14364,'15694','Konstancin-jeziorna','KONSTANCIN-JEZIORNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14365,'44044','Konstantynow Lodzki','KONSTANTYNOW LODZKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14366,'22576','Konstanz','KONSTANZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14367,'43430','Kontogialos-pelekas','KONTOGIALOS-PELEKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14368,'17188','Konya','KONYA',NULL,'','Turkey','Konya',0,0,222,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14369,'26247','Koolatah','KOOLATAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14370,'43671','Koonwarra','KOONWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14371,'26848','Koonya','KOONYA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14372,'34785','Kooralbyn','KOORALBYN',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14373,'20371','Kooskia','KOOSKIA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14374,'26248','Kooyong','KOOYONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14375,'14469','Kop Van North-holland','KOP VAN NORTH-HOLLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14376,'11011','Kopasker','KOPASKER',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14377,'11008','Kopavogur','KOPAVOGUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14378,'2001','Kopenick','KOPENICK',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14379,'16635','Koper','KOPER',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14380,'44219','Koppa','KOPPA',NULL,'','India','',0,0,101,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14381,'10059','Koprivnica','KOPRIVNICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14382,'39224','Korampallam','KORAMPALLAM',NULL,'','India','',0,0,101,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14383,'41856','Korce','KORCE',NULL,'','Albania','',0,0,2,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14384,'10016','Korcula','KORCULA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14385,'38877','Korczyna','KORCZYNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14386,'41124','Koreiz','KOREIZ',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14387,'39626','Korenica','KORENICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14388,'32519','Korhaan Hill','KORHAAN HILL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14389,'9679','Koridhallos','KORIDHALLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14390,'9514','Korinthia','KORINTHIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14391,'13280','Koriyama','KORIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14392,'13111','Koriyama-shi','KORIYAMA-SHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14393,'23842','Korla','KORLA',NULL,'','China','',0,0,46,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14394,'2349','Korning','KORNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14395,'22577','Korntal','KORNTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14396,'4096','Koro','KORO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14397,'4091','Korolevu','KOROLEVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14398,'42502','Koroni','KORONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14399,'40010','Koropove','KOROPOVE',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14400,'15564','Koror','KOROR',NULL,'','Palau','',0,0,167,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14401,'43723','Korora','KORORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14402,'4097','Korotongo','KOROTONGO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14403,'2329','Korsor','KORSOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14404,'24633','Kortenberg','KORTENBERG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14405,'24729','Kortrijk','KORTRIJK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14406,'43914','Kosaka','KOSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14407,'27873','Kosciusko','KOSCIUSKO',NULL,'','United States','',0,0,231,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14408,'1827','Koserow','KOSEROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14409,'13607','Kosgoda','KOSGODA',NULL,'','Sri Lanka','Kosgoda',0,0,200,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14410,'38180','Kosharitsa','KOSHARITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14411,'10545','Kosi','KOSI',NULL,'','India','',0,0,101,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14412,'36701','Kosice','KOSICE',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14413,'16391','Kosino','KOSINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14414,'35250','Kos-kardamena','KOS-KARDAMENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14415,'35260','Kos-lambi','KOS-LAMBI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14416,'35267','Kos-marmari','KOS-MARMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14417,'35268','Kos-mastichari','KOS-MASTICHARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14418,'38092','Kospallag','KOSPALLAG',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14419,'35286','Kos-psalidi','KOS-PSALIDI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14420,'43961','Kosrae','KOSRAE',NULL,'','Micronesia','',0,0,143,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14421,'38476','Kosta','KOSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14422,'39761','Kostelany','KOSTELANY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14423,'16345','Kostroma','KOSTROMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14424,'15726','Koszalin','KOSZALIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14425,'38972','Koszeg','KOSZEG',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14426,'10546','Kota','KOTA',NULL,'','India','Kota',2,0,101,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14427,'36427','Kota Bahru','KOTA BAHRU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14428,'10237','Kotabangun','KOTABANGUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14429,'37373','Kotagiri','KOTAGIRI',NULL,'','India','',0,0,101,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14430,'38238','Kothamangalam','KOTHAMANGALAM',NULL,'','India','',0,0,101,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14431,'3974','Kotka','KOTKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14432,'16303','Kotlas','KOTLAS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14433,'17679','Kotlik','KOTLIK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14434,'13160','Koto','KOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14435,'32369','Kotor','KOTOR',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14436,'27076','Kotschach','KOTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14437,'1940','Kotschlitz','KOTSCHLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14438,'10547','Kottayam','KOTTAYAM',NULL,'','India','Kottayam',3,0,101,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14439,'3975','Kottby','KOTTBY',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14440,'44114','Kotu','KOTU',NULL,'','Gambia','',0,0,81,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14441,'17680','Kotzebue','KOTZEBUE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14442,'9680','Koufalia','KOUFALIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14443,'42501','Koufonisi','KOUFONISI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14444,'24274','Kouklia','KOUKLIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14445,'9517','Koukounaries','KOUKOUNARIES',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14446,'6852','Koulamoutou','KOULAMOUTOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14447,'14431','Koumac','KOUMAC',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14448,'9518','Koumeika','KOUMEIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14449,'30729','Kountze','KOUNTZE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14450,'9887','Kourou','KOUROU',NULL,'','French Guiana','',0,0,77,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14451,'24008','Koutaba','KOUTABA',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14452,'9519','Koutouloufar','KOUTOULOUFAR',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14453,'9520','Koutsounari','KOUTSOUNARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14454,'3976','Kouvola','KOUVOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14455,'37173','Kovalam','KOVALAM',NULL,'','India','Kovalam',3,0,101,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14456,'26415','Kowanyama','KOWANYAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14457,'9928','Kowloon','KOWLOON',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14458,'35729','Koya','KOYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14459,'13499','Koyang-ni','KOYANG-NI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14460,'17681','Koyuk','KOYUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14461,'17682','Koyukuk','KOYUKUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14462,'37219','Kozana','KOZANA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14463,'9826','Kozani','KOZANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14464,'10646','Kozhikode','KOZHIKODE',NULL,'','India','Kozhikode',3,0,101,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14465,'24634','Kraainem','KRAAINEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14466,'17096','Krabi','KRABI',NULL,'','Thailand','Krabi',31,0,215,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14467,'15727','Krag (East Pomerania)','KRAG (EAST POMERANIA)',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14468,'15004','Kragero','KRAGERO',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14469,'37395','Kragujevac','KRAGUJEVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14470,'24777','Kraimorie','KRAIMORIE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14471,'15715','Krakow','KRAKOW',NULL,'','Poland','Krakow',0,0,174,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14472,'25901','Kralendijk','KRALENDIJK',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14473,'40387','Kraliky','KRALIKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14474,'37632','Kraljevo','KRALJEVO',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14475,'34952','Kralupy Nad Vltavou','KRALUPY NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14476,'16805','Kramfors','KRAMFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14477,'38701','Kramsach','KRAMSACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14478,'39894','Kranenburg','KRANENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14479,'16636','Kranj','KRANJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14480,'16637','Kranjska Gora','KRANJSKA GORA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14481,'39831','Kranzberg','KRANZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14482,'42784','Krapanj Island','KRAPANJ ISLAND',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14483,'39307','Krapinske Toplice','KRAPINSKE TOPLICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14484,'37557','Krasna Lipa','KRASNA LIPA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14485,'16325','Krasnaya Polyana','KRASNAYA POLYANA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14486,'16350','Krasnodar','KRASNODAR',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14487,'16368','Krasnogorsk','KRASNOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14488,'39575','Krasnoselkup','KRASNOSELKUP',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14489,'17107','Krasnovodsk','KRASNOVODSK',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14490,'16354','Krasnoyarsk','KRASNOYARSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14491,'13450','Kratie','KRATIE',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14492,'520','Krefeld','KREFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14493,'42235','Kreischeberg','KREISCHEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14494,'9681','Kremasti','KREMASTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14495,'33469','Kremmling','KREMMLING',NULL,'','United States','',0,0,231,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14496,'38682','Kremnica','KREMNICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14497,'38905','Kremsmunster','KREMSMUNSTER',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14498,'22578','Kressbronn','KRESSBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14499,'40724','Krestena','KRESTENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14500,'22579','Kreuzberg','KREUZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14501,'43691','Kribi','KRIBI',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14502,'24423','Krieglach','KRIEGLACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14503,'23252','Kriegstetten','KRIEGSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14504,'23253','Kriens','KRIENS',NULL,'','Switzerland','Kriens',0,0,210,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14505,'445','Kriftel','KRIFTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14506,'10017','Krilo','KRILO',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14507,'24387','Krimml','KRIMML',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14508,'10549','Krishnapur','KRISHNAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14509,'15021','Kristiansand','KRISTIANSAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14510,'16867','Kristianstad','KRISTIANSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14511,'14908','Kristiansund','KRISTIANSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14512,'16795','Kristineberg','KRISTINEBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14513,'16789','Kristinehamn','KRISTINEHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14514,'9682','Kritika','KRITIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14515,'17507','Krivoy Rog','KRIVOY ROG',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14516,'9990','Krk','KRK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14517,'40541','Kromeriz','KROMERIZ',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14518,'240','Kronberg','KRONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14519,'521','Kronenburg','KRONENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14520,'13451','Krong Koh Kong','KRONG KOH KONG',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14521,'16677','Kronoberg','KRONOBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14522,'15635','Krotoszyn','KROTOSZYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14523,'16638','Krsko','KRSKO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14524,'32405','Kruger National Park','KRUGER NATIONAL PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14525,'32573','Krugersdorp','KRUGERSDORP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14526,'14696','Kruiningen','KRUININGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14527,'43231','Kruja','KRUJA',NULL,'','Albania','',0,0,2,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14528,'35881','Krumbach','KRUMBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14529,'22580','Krumbach','KRUMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14530,'54','Krummhoern','KRUMMHOERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14531,'38934','Krusevac','KRUSEVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14532,'16392','Krylatskoye','KRYLATSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14533,'40464','Krynica','KRYNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14534,'44005','Kryvyi Rih','KRYVYI RIH',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14535,'17395','Ku Keng','KU KENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14536,'14354','Kuah','KUAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14537,'41808','Kuala Belait','KUALA BELAIT',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14538,'39062','Kuala Berang','KUALA BERANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14539,'20057','Kualapuu','KUALAPUU',NULL,'','United States','',0,0,231,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14540,'14363','Kuantan','KUANTAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14541,'26249','Kubin','KUBIN',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14542,'24290','Kubova Hut','KUBOVA HUT',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14543,'43885','Kubu','KUBU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14544,'40862','Kuchaman','KUCHAMAN',NULL,'','India','',0,0,101,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14545,'14343','Kuching','KUCHING',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14546,'36423','Kuching-damai Beach','KUCHING-DAMAI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14547,'40649','Kuchwahi','KUCHWAHI',NULL,'','India','',0,0,101,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14548,'38213','Kucukkuyu','KUCUKKUYU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14549,'14390','Kudat','KUDAT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14550,'44045','Kudowa Zdroj','KUDOWA ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14551,'38352','Kudowa-zdroj','KUDOWA-ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14552,'55','Kuehlungsborn','KUEHLUNGSBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14553,'23042','Kuessnacht Am Rigi','KUESSNACHT AM RIGI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14554,'13564','Kufrah','KUFRAH',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14555,'24475','Kufstein','KUFSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14556,'42388','Kuga','KUGA',NULL,'','China','',0,0,46,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14557,'44141','Kuhlen-wendorf','KUHLEN-WENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14558,'3947','Kuhmo','KUHMO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14559,'24476','Kuhtai','KUHTAI',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14560,'17086','Kui Buri','KUI BURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14561,'39110','Kuils River','KUILS RIVER',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14562,'25845','Kuito','KUITO',NULL,'','Angola','',0,0,6,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14563,'15588','Kujawy Pomerania','KUJAWY POMERANIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14564,'10429','Kukas','KUKAS',NULL,'','India','',0,0,101,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14565,'20058','Kukuihaele','KUKUIHAELE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14566,'16549','Kukundu','KUKUNDU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14567,'20059','Kula','KULA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14568,'39647','Kula','KULA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14569,'42417','Kulim','KULIM',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14570,'10550','Kullu','KULLU',NULL,'','India','Kullu',1,0,101,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14571,'241','Kulmbach','KULMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14572,'30005','Kulpsville','KULPSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14573,'9853','Kulusuk','KULUSUK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14574,'13282','Kumagaya','KUMAGAYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14575,'13398','Kumamoto','KUMAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14576,'14174','Kumanovo','KUMANOVO',NULL,'','Macedonia, FYR Of','',0,0,191,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14577,'43623','Kumara','KUMARA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14578,'10430','Kumarakom','KUMARAKOM',NULL,'','India','Kumarakom',3,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14579,'9353','Kumasi','KUMASI',NULL,'','Ghana','',0,0,84,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14580,'10551','Kumbakonam','KUMBAKONAM',NULL,'','India','Kumbakonam',18,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14582,'44220','Kumbhalgarh','KUMBHALGARH',NULL,'','India','',0,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14583,'37625','Kumburgaz','KUMBURGAZ',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14584,'13161','Kumejima','KUMEJIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14585,'43024','Kumeu','KUMEU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14586,'13162','Kumiyama','KUMIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14587,'37344','Kumluca','KUMLUCA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14588,'13743','Kunfunadhoo','KUNFUNADHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14589,'16903','Kungalv','KUNGALV',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14590,'16706','Kungsbacka','KUNGSBACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14591,'16829','Kungsholmen','KUNGSHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14592,'13283','Kunigami','KUNIGAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14593,'10288','Kuningan','KUNINGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14594,'23946','Kunming','KUNMING',NULL,'','China','',0,0,46,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14595,'24314','Kunovice','KUNOVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14596,'13519','Kunsan','KUNSAN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14597,'23684','Kunshan','KUNSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14598,'16393','Kuntsevo','KUNTSEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14599,'26958','Kununurra','KUNUNURRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14600,'4000','Kuopio','KUOPIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14601,'3916','Kuorevesi','KUOREVESI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14602,'10351','Kupang','KUPANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14603,'16440','Kupchino','KUPCHINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14604,'23843','Kuqa','KUQA',NULL,'','China','',0,0,46,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14605,'13744','Kuramathi','KURAMATHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14606,'13284','Kurashiki','KURASHIKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14607,'38081','Kure','KURE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14608,'33907','Kure Beach','KURE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14609,'13745','Kuredu','KUREDU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14610,'3831','Kuressaare','KURESSAARE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14611,'16355','Kurgan','KURGAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14612,'13462','Kuria','KURIA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14613,'39164','Kurnell','KURNELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14614,'37458','Kurrimine Beach','KURRIMINE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14615,'40818','Kurseong','KURSEONG',NULL,'','India','',0,0,101,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14616,'16356','Kursk','KURSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14617,'40304','Kursunlu','KURSUNLU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14618,'522','Kurten','KURTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14619,'20060','Kurtistown','KURTISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14620,'32471','Kuruman','KURUMAN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14621,'43915','Kurume','KURUME',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14622,'17318','Kusadasi','KUSADASI',NULL,'','Turkey','Kusadasi',0,0,222,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14623,'42563','Kusatsu','KUSATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14624,'39457','Kusel','KUSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14625,'39219','Kushalnagar','KUSHALNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14626,'35733','Kushimoto','KUSHIMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14627,'37602','Kushinagar','KUSHINAGAR',NULL,'','India','Kushinagar',6,0,101,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14628,'13285','Kushiro','KUSHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14629,'24757','Kushtia','KUSHTIA',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14630,'23254','Kusnacht','KUSNACHT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14631,'42562','Kussharo','KUSSHARO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14632,'13428','Kustanay','KUSTANAY',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14633,'10172','Kuta','KUTA',NULL,'','Indonesia','Kuta',0,0,102,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14634,'17330','Kutahya','KUTAHYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14635,'9346','Kutaisi','KUTAISI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14636,'10104','Kutas','KUTAS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14637,'40819','Kutch','KUTCH',NULL,'','India','Kutch',16,0,101,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14638,'35737','Kutchan','KUTCHAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14639,'24353','Kutna Hora','KUTNA HORA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14640,'15667','Kutno','KUTNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14641,'37853','Kutta','KUTTA',NULL,'','India','',0,0,101,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14642,'33667','Kuttawa','KUTTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14643,'16600','Kuty','KUTY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14644,'30006','Kutztown','KUTZTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14645,'26023','Kuujjuaq','KUUJJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14646,'26024','Kuujjuarapik','KUUJJUARAPIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14647,'4038','Kuusamo','KUUSAMO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14648,'3977','Kuusankoski','KUUSANKOSKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14649,'35827','Kuwait','KUWAIT',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14650,'13286','Kuwana','KUWANA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14651,'40226','Kvalsund','KVALSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14652,'16884','Kvanum','KVANUM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14653,'9992','Kvarner','KVARNER',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14654,'15022','Kvinesdal','KVINESDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14655,'14805','Kvitfjell','KVITFJELL',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14656,'43388','Kwa Zulu Natal','KWA ZULU NATAL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14657,'14155','Kwajalein','KWAJALEIN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14658,'42898','Kwale','KWALE',NULL,'','Kenya','',0,0,113,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14659,'13526','Kwangju','KWANGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14660,'32664','Kwekwe','KWEKWE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14661,'17683','Kwethluk','KWETHLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14662,'38239','Kwidzyn','KWIDZYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14663,'17684','Kwigillingok','KWIGILLINGOK',NULL,'','United States','',0,0,231,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14664,'26458','Kwinana','KWINANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14665,'42066','Kyaikhtiyo','KYAIKHTIYO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14666,'42065','Kyaing Tong','KYAING TONG',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14667,'40031','Kyjov','KYJOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14668,'44190','Kyle','KYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14669,'30730','Kyle','KYLE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14670,'8379','Kyleakin','KYLEAKIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14671,'41519','Kylemore','KYLEMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14672,'42500','Kylini','KYLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14673,'43916','Kyotango','KYOTANGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14674,'13399','Kyoto','KYOTO',NULL,'','Japan','Kyoto',0,0,110,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14675,'43431','Kypseli','KYPSELI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14676,'1686','Kyrenia','KYRENIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14677,'14991','Kyrksaeterora','KYRKSAETERORA',NULL,'','Norway','',0,0,164,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14678,'40887','Kythira','KYTHIRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14679,'42498','Kythnos','KYTHNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14680,'16467','Kyzyl','KYZYL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14681,'5401','L Aigle','L AIGLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14682,'41544','L Ametlla De Mar','L AMETLLA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14683,'41570','L Ampolla','L AMPOLLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14684,'2652','L\' Eliana','L\' ELIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14685,'41542','L Espluga De Francoli','L ESPLUGA DE FRANCOLI',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:03','1900-01-01 00:00:00',1,0,1),(14686,'41427','L Isle-d Abeau','L ISLE-D ABEAU',NULL,'','France','',0,0,76,'2016-10-17 11:10:03','1900-01-01 00:00:00',1,0,1),(14687,'17158','La Marsa','LA MARSA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:10:16','1900-01-01 00:00:00',1,0,1),(14688,'2367','La Romana','LA ROMANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:10:22','1900-01-01 00:00:00',1,0,1),(14689,'16517','La Somone','LA SOMONE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:10:24','1900-01-01 00:00:00',1,0,1),(14690,'14236','La Trinite','LA TRINITE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:10:25','1900-01-01 00:00:00',1,0,1),(14691,'27106','Laa An Der Thaya','LAA AN DER THAYA',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14692,'41226','Laagri','LAAGRI',NULL,'','Estonia','',0,0,69,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14693,'27242','Laatzen','LAATZEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14694,'23256','Laax','LAAX',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14695,'42971','Labarthe-inard','LABARTHE-INARD',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14696,'4057','Labasa','LABASA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14697,'6097','Labastide-murat','LABASTIDE-MURAT',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14698,'6098','Labege','LABEGE',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14699,'22768','Labelle','LABELLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14700,'38797','Labin','LABIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14701,'17685','Labouchere Bay','LABOUCHERE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14702,'17686','Labourchere Bay','LABOURCHERE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14703,'26715','Labrador','LABRADOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14704,'25663','Labrador City','LABRADOR CITY',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14705,'42545','Labrelotte','LABRELOTTE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14706,'14313','Labuan','LABUAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14707,'10174','Labuan Bajo','LABUAN BAJO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14708,'39891','Labuerda','LABUERDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14709,'10341','Labuha','LABUHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14710,'13682','Lac Lalla','LAC LALLA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14711,'41419','Lacanau','LACANAU',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14712,'5196','Lacanau-ocean','LACANAU-OCEAN',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14713,'38616','Lacapelle-marival','LACAPELLE-MARIVAL',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14714,'6099','Lacaune','LACAUNE',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14715,'6100','Lacave','LACAVE',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14716,'41131','Lac-beauport','LAC-BEAUPORT',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14717,'12011','Lacco Ameno','LACCO AMENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14718,'40241','Lac-des-plages','LAC-DES-PLAGES',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14719,'8380','Laceby','LACEBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14720,'39744','Laces','LACES',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14721,'22772','Lac-etchemin','LAC-ETCHEMIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14722,'31533','Lacey','LACEY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14723,'23257','Lachen','LACHEN',NULL,'','Switzerland','Lachen',0,0,210,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14724,'41734','Lachenaie','LACHENAIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14725,'22773','Lachine','LACHINE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14726,'22774','Lachute','LACHUTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14727,'28893','Lackawanna','LACKAWANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14728,'30007','Lackawaxen','LACKAWAXEN',NULL,'','United States','',0,0,231,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14729,'22775','Lac-nominingue','LAC-NOMININGUE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14730,'8381','Lacock','LACOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14731,'6460','La-colle-sur-loup','LA-COLLE-SUR-LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14732,'32722','Laconia','LACONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14733,'44066','Lacroix-saint-ouen','LACROIX-SAINT-OUEN',NULL,'','France','',0,0,76,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14734,'4325','Lacs Des Dombes','LACS DES DOMBES',NULL,'','France','',0,0,76,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14735,'30736','Lacy-lakeview','LACY-LAKEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14736,'9521','Ladiko','LADIKO',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14737,'12012','Ladispoli','LADISPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14738,'25469','Ladner','LADNER',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14739,'20920','Ladoga','LADOGA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14740,'4326','Ladoix-serrigny','LADOIX-SERRIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14741,'30353','Ladson','LADSON',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14742,'38027','Lady Elliot Island','LADY ELLIOT ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14743,'19435','Lady Lake','LADY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14744,'31789','Ladysmith','LADYSMITH',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14745,'32520','Ladysmith','LADYSMITH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14746,'25470','Ladysmith','LADYSMITH',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14747,'14156','Lae','LAE',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14748,'15576','Lae','LAE',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14749,'17003','Laem Chabang','LAEM CHABANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14750,'41821','Laengenfeld','LAENGENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14751,'14806','Laerdal','LAERDAL',NULL,'','Norway','Laerdal',0,0,164,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14752,'21218','Lafayette','LAFAYETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14753,'21220','Lafitte','LAFITTE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14754,'16745','Lagan','LAGAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14755,'9683','Laganas','LAGANAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14756,'5197','Lagarrigue','LAGARRIGUE',NULL,'','France','',0,0,76,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14757,'15359','Lagarterita','LAGARTERITA',NULL,'','Panama','',0,0,169,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14758,'15449','Lagen Island','LAGEN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14759,'41897','Laghey','LAGHEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14760,'39558','Laghy','LAGHY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14761,'32260','Lagi','LAGI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14762,'35546','Laglio','LAGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14763,'40376','Lagnes','LAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14764,'5854','Lagny','LAGNY',NULL,'','France','',0,0,76,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14765,'2407','Lago Agrio','LAGO AGRIO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14766,'916','Lago Arenal','LAGO ARENAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14767,'15930','Lagoa','LAGOA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14768,'10239','Lagoi','LAGOI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14769,'42641','Lagoinha','LAGOINHA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14770,'9522','Lagonissi','LAGONISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14771,'15776','Lagos','LAGOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14772,'36451','Lagos','LAGOS',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14773,'14017','Lagos De Moreno','LAGOS DE MORENO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14774,'12722','Lagosanto','LAGOSANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14775,'39427','Lagrand','LAGRAND',NULL,'','France','',0,0,76,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14776,'19848','Lagrange','LAGRANGE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14777,'3710','Laguardia','LAGUARDIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14778,'28894','Laguardia Airport (Lga)','LAGUARDIA AIRPORT (LGA)',NULL,'','United States','',0,0,231,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14779,'6101','Laguiole','LAGUIOLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14780,'25184','Laguna','LAGUNA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14781,'18584','Laguna - South Beaches','LAGUNA - SOUTH BEACHES',NULL,'','United States','',0,0,231,'2016-10-17 11:10:45','1900-01-01 00:00:00',1,0,1),(14782,'39339','Laguna Carilafquen','LAGUNA CARILAFQUEN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:10:45','1900-01-01 00:00:00',1,0,1),(14783,'12013','Lagundo','LAGUNDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14784,'14344','Lahad Datu','LAHAD DATU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14785,'20061','Lahaina','LAHAINA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14786,'9523','Lahania','LAHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14787,'30009','Lahaska','LAHASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14788,'10745','Lahinch','LAHINCH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14789,'56','Lahn River Valley','LAHN RIVER VALLEY',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14790,'640','Lahnstein','LAHNSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14791,'39518','Lahntal-sarnau','LAHNTAL-SARNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14792,'38113','Laholm','LAHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14793,'15308','Lahore','LAHORE',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14794,'523','Lahr','LAHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14795,'4020','Lahti','LAHTI',NULL,'','Finland','',0,0,75,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14796,'42089','Lai Chau','LAI CHAU',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14797,'9930','Lai Chi Kok','LAI CHI KOK',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14798,'41950','Laias','LAIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14799,'20062','Laie','LAIE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14800,'5404','L\'aigle','L\'AIGLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14801,'12014','Laigueglia','LAIGUEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14802,'11246','Lainate','LAINATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14803,'15120','Laingholm','LAINGHOLM',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14804,'6102','Laissac','LAISSAC',NULL,'','France','',0,0,76,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14805,'37989','Laives','LAIVES',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14806,'15755','Lajas','LAJAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14807,'30738','Lajitas','LAJITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14808,'4327','Lake Annecy','LAKE ANNECY',NULL,'','France','',0,0,76,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14809,'39612','Lake Ashino','LAKE ASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14810,'10075','Lake Balaton','LAKE BALATON',NULL,'','Hungary','',0,0,99,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14811,'35776','Lake Baringo','LAKE BARINGO',NULL,'','Kenya','',0,0,113,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14812,'16623','Lake Bled - Julian Alps','LAKE BLED - JULIAN ALPS',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14813,'40583','Lake Bolsena','LAKE BOLSENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:51','1900-01-01 00:00:00',1,0,1),(14814,'26999','Lake Constance','LAKE CONSTANCE',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:54','1900-01-01 00:00:00',1,0,1),(14815,'15121','Lake Karapiro','LAKE KARAPIRO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:10:58','1900-01-01 00:00:00',1,0,1),(14816,'16678','Lake Malaren','LAKE MALAREN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:59','1900-01-01 00:00:00',1,0,1),(14817,'17450','Lake Manyara','LAKE MANYARA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:10:59','1900-01-01 00:00:00',1,0,1),(14818,'3895','Lake Saimaa','LAKE SAIMAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:03','1900-01-01 00:00:00',1,0,1),(14819,'15374','Lake Titicaca - Puno Area','LAKE TITICACA - PUNO AREA',NULL,'','Peru','',0,0,172,'2016-10-17 11:11:04','1900-01-01 00:00:00',1,0,1),(14820,'1782','Lake Town Resort','LAKE TOWN RESORT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:11:04','1900-01-01 00:00:00',1,0,1),(14821,'34542','Lakefield','LAKEFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:06','1900-01-01 00:00:00',1,0,1),(14822,'28312','Lakehurst','LAKEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:11:06','1900-01-01 00:00:00',1,0,1),(14823,'4095','Lakemba','LAKEMBA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:11:07','1900-01-01 00:00:00',1,0,1),(14824,'19853','Lakemont','LAKEMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14825,'24636','Laken','LAKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14826,'18594','Lakeport','LAKEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14827,'18595','Lakeshore','LAKESHORE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14828,'18596','Lakeside','LAKESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14829,'32472','Lakeside','LAKESIDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14830,'7163','Lakeside','LAKESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14831,'30012','Lakeville','LAKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:13','1900-01-01 00:00:00',1,0,1),(14832,'30745','Lakeway','LAKEWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:14','1900-01-01 00:00:00',1,0,1),(14833,'31535','Lakewood','LAKEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:11:14','1900-01-01 00:00:00',1,0,1),(14834,'16405','Lakhta','LAKHTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14835,'39808','Lakkopetra','LAKKOPETRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14836,'2297','Lakolk','LAKOLK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14837,'9524','Lakonia','LAKONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14838,'28066','Lakota','LAKOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14839,'14883','Lakselv','LAKSELV',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14840,'40820','Lakshadweep','LAKSHADWEEP',NULL,'','India','',0,0,101,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14841,'38464','Lalacelle','LALACELLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14842,'43188','L\'aldosa','L\'ALDOSA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14843,'7164','Laleston','LALESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14844,'3865','Lalibela','LALIBELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14845,'5198','Lalinde','LALINDE',NULL,'','France','',0,0,76,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14846,'12015','Lallio','LALLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14847,'4954','L\'alpe-d\'huez','L\'ALPE-D\'HUEZ',NULL,'','France','',0,0,76,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14848,'242','Lam','LAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14849,'32332','Lamap','LAMAP',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14850,'27690','Lamar','LAMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14851,'5552','Lamballe','LAMBALLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14852,'6845','Lambarene','LAMBARENE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14853,'43614','Lambari','LAMBARI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14854,'27691','Lambert - St. Louis International Airport (Stl)','LAMBERT - ST. LOUIS INTERNATIONAL AIRPORT (STL)',NULL,'','United States','',0,0,231,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14855,'32406','Lambert\'s Bay','LAMBERT\'S BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14856,'28314','Lambertville','LAMBERTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14857,'6461','Lambesc','LAMBESC',NULL,'','France','',0,0,76,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14858,'8384','Lambeth','LAMBETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14859,'8385','Lambourn','LAMBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14860,'16083','Lamego','LAMEGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14861,'32317','Lamen Bay','LAMEN BAY',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14862,'30746','Lamesa','LAMESA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14863,'40307','Lamesly','LAMESLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14864,'2667','L\'ametlla De Mar','L\'AMETLLA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14865,'35665','Lamezia Terme','LAMEZIA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14866,'4092','Lami','LAMI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14867,'9783','Lamia','LAMIA',NULL,'','Greece','Lamia',0,0,86,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14868,'12016','Lamia','LAMIA',NULL,'','Italy','Lamia',0,0,107,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14869,'15038','Lamidanda','LAMIDANDA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14870,'42227','Lamington National Park','LAMINGTON NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14871,'9904','Lamma Island','LAMMA ISLAND',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14872,'21888','Lamoine Beach','LAMOINE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14873,'42796','Lamongan','LAMONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14874,'20234','Lamoni','LAMONI',NULL,'','United States','',0,0,231,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14875,'19447','Lamont','LAMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14876,'5199','Lamothe','LAMOTHE',NULL,'','France','',0,0,76,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14877,'40427','Lamoura','LAMOURA',NULL,'','France','',0,0,76,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14878,'17059','Lampang','LAMPANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14879,'30747','Lampasas','LAMPASAS',NULL,'','United States','',0,0,231,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14880,'5553','Lampaul-guimiliau','LAMPAUL-GUIMILIAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14881,'13001','Lampedusa','LAMPEDUSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14882,'446','Lampertheim','LAMPERTHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14883,'8386','Lampeter','LAMPETER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14884,'8387','Lamphey','LAMPHEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14885,'9525','Lampi','LAMPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14886,'2668','L\'ampolla','L\'AMPOLLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14887,'41707','Lampoon','LAMPOON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14888,'12017','Lamporecchio','LAMPORECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14889,'43938','Lamu','LAMU',NULL,'','Kenya','',0,0,113,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14890,'28537','Lamy','LAMY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14891,'24683','Lanaken','LANAKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:11:26','1900-01-01 00:00:00',1,0,1),(14892,'20616','Lanark','LANARK',NULL,'','United States','',0,0,231,'2016-10-17 11:11:26','1900-01-01 00:00:00',1,0,1),(14893,'7165','Lanarkshire','LANARKSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14894,'42161','Lanaudiere','LANAUDIERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14895,'7166','Lancashire','LANCASHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14896,'30355','Lancaster','LANCASTER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14897,'1440','Lancaster','LANCASTER',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:11:29','1900-01-01 00:00:00',1,0,1),(14898,'35548','Lanciano','LANCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14899,'42728','L\'ancienne-lorette','L\'ANCIENNE-LORETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14900,'8390','Lancing','LANCING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14901,'4329','Lancon-de-provence','LANCON-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14902,'23052','Lancy','LANCY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14903,'13746','Landaa Giraavaru','LANDAA GIRAAVARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14904,'18600','Landcaster Area','LANDCASTER AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14905,'24477','Landeck','LANDECK',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14906,'5554','Landeda','LANDEDA',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14907,'32110','Lander','LANDER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14908,'5555','Landerneau','LANDERNEAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14909,'4330','Landes','LANDES',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14910,'14762','Landgraaf','LANDGRAAF',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14911,'31342','Landgrove','LANDGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14912,'5556','Landivisiau','LANDIVISIAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14913,'21725','Landover','LANDOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14914,'6175','Landrethun-le-nord','LANDRETHUN-LE-NORD',NULL,'','France','',0,0,76,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14915,'30356','Landrum','LANDRUM',NULL,'','United States','',0,0,231,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14916,'1717','Landsberg','LANDSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14917,'244','Landshut','LANDSHUT',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14918,'16868','Landskrona','LANDSKRONA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14919,'39638','Landstuhl','LANDSTUHL',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14920,'5557','Landudec','LANDUDEC',NULL,'','France','',0,0,76,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14921,'16885','Landvetter','LANDVETTER',NULL,'','Sweden','Landvetter',0,0,209,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14922,'34217','Lane Cove','LANE COVE',NULL,'','Australia','',0,0,13,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14923,'27423','Lanesboro','LANESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14924,'8392','Laneshaw Bridge','LANESHAW BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14925,'5558','Lanester','LANESTER',NULL,'','France','',0,0,76,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14926,'17908','Lanett','LANETT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14927,'37086','Lang Co','LANG CO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14928,'8393','Langbank','LANGBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14929,'7168','Langdale','LANGDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14930,'28067','Langdon','LANGDON',NULL,'','United States','',0,0,231,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14931,'25331','Langdon','LANGDON',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14932,'41892','Langdorf','LANGDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14933,'5323','Langeac','LANGEAC',NULL,'','France','',0,0,76,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14934,'5651','Langeais','LANGEAIS',NULL,'','France','',0,0,76,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14935,'32473','Langebaan','LANGEBAAN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14936,'27243','Langelsheim','LANGELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14937,'22582','Langenargen','LANGENARGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14938,'524','Langenfeld','LANGENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14939,'27000','Langenfeld','LANGENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14940,'27245','Langenhagen','LANGENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14941,'447','Langenselbold','LANGENSELBOLD',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14942,'42308','Langenthal','LANGENTHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14943,'40660','Langenzenn','LANGENZENN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14944,'27246','Langeoog','LANGEOOG',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14945,'5466','Langeron','LANGERON',NULL,'','France','',0,0,76,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14946,'15005','Langesund','LANGESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14947,'23806','Langfang','LANGFANG',NULL,'','China','',0,0,46,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14948,'9329','Langford Budville','LANGFORD BUDVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14949,'10342','Langgur','LANGGUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14950,'11254','Langhe Region','LANGHE REGION',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14951,'12019','Langhirano','LANGHIRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14952,'8394','Langholm','LANGHOLM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14953,'16830','Langholmen','LANGHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14954,'30016','Langhorne','LANGHORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14955,'14285','Langkawi','LANGKAWI',NULL,'','Malaysia','Langkawi',0,0,132,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14956,'25','Langley','LANGLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14957,'31536','Langley','LANGLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14958,'23053','Langnau Im Emmental','LANGNAU IM EMMENTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14959,'44067','Langogne','LANGOGNE',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14960,'2669','Langreo','LANGREO',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14961,'5734','Langres','LANGRES',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14962,'4896','Langueux','LANGUEUX',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14963,'39190','Langweiler','LANGWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14964,'21728','Lanham','LANHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14965,'3252','Lanjaron','LANJARON',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14966,'13747','Lankanfushi','LANKANFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14967,'525','Lank-latum','LANK-LATUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14968,'2002','Lankwitz','LANKWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14969,'37979','Lannach','LANNACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14970,'7169','Lanner','LANNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14971,'5559','Lannion','LANNION',NULL,'','France','',0,0,76,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14972,'8395','Lanreath','LANREATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14973,'30017','Lansdale','LANSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14974,'34543','Lansdowne','LANSDOWNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14975,'21729','Lansdowne','LANSDOWNE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14976,'59264','Lansdowne','LANSDOWNE',NULL,'','India','',0,0,101,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14977,'22137','L\'anse','L\'ANSE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14978,'14237','L\'anse Mitan','L\'ANSE MITAN',NULL,'','Martinique','',0,0,137,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14979,'25664','L\'anse-au-clair','L\'ANSE-AU-CLAIR',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14980,'32407','Lanseria','LANSERIA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14981,'28068','Lansford','LANSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14982,'22138','Lansing','LANSING',NULL,'','United States','',0,0,231,'2016-10-17 11:11:45','1900-01-01 00:00:00',1,0,1),(14983,'4331','Lanslebourg - Val Cenis','LANSLEBOURG - VAL CENIS',NULL,'','France','',0,0,76,'2016-10-17 11:11:46','1900-01-01 00:00:00',1,0,1),(14984,'40032','Lanslevillard','LANSLEVILLARD',NULL,'','France','',0,0,76,'2016-10-17 11:11:46','1900-01-01 00:00:00',1,0,1),(14985,'19449','Lantana','LANTANA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14986,'9905','Lantau Island','LANTAU ISLAND',NULL,'','Hong Kong','Lantau Island',0,0,98,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14987,'23685','Lantian','LANTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14988,'39053','Lanton','LANTON',NULL,'','France','',0,0,76,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14989,'6462','Lantosque','LANTOSQUE',NULL,'','France','',0,0,76,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14990,'26075','Lanus','LANUS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14991,'41418','Lanvallay','LANVALLAY',NULL,'','France','',0,0,76,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14992,'23704','Lanxi','LANXI',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14993,'42','Lanyang','LANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14994,'2670','Lanzarote','LANZAROTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14995,'35034','Lanzarote-costa Tegu','LANZAROTE-COSTA TEGU',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14996,'36183','Lanzarote-playa Blan','LANZAROTE-PLAYA BLAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14997,'36202','Lanzarote-puerto Del','LANZAROTE-PUERTO DEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14998,'35115','Lanzarote-yaiza','LANZAROTE-YAIZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14999,'23849','Lanzhou','LANZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(15000,'39355','Lanzo Dintelvi','LANZO DINTELVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15001,'41095','Lao Cai','LAO CAI',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15002,'15538','Laoag','LAOAG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15003,'23830','Laohekou','LAOHEKOU',NULL,'','China','',0,0,46,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15004,'23604','Laohumiao','LAOHUMIAO',NULL,'','China','',0,0,46,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15005,'10746','Laois - Offaly','LAOIS - OFFALY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15006,'6306','Laon','LAON',NULL,'','France','',0,0,76,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15007,'16046','Lapa','LAPA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15008,'22140','Lapeer','LAPEER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15009,'4332','Lapeyrouse Mornay','LAPEYROUSE MORNAY',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15010,'1576','Lapland','LAPLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15011,'27692','Laplata','LAPLATA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15012,'40202','Lapleau','LAPLEAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15013,'5200','Laplume','LAPLUME',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15014,'3978','Lappeenranta','LAPPEENRANTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15015,'22776','Laprairie','LAPRAIRIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15016,'43843','Lapta Mersin','LAPTA MERSIN',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15017,'15450','Lapu Lapu','LAPU LAPU',NULL,'','Philippines','',0,0,173,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15018,'4021','Lapua','LAPUA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15019,'12698','L\'aquila','L\'AQUILA',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15020,'41072','Lara','LARA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15021,'32111','Laramie','LARAMIE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15022,'10352','Larantuka','LARANTUKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15023,'39136','Larbert','LARBERT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15024,'28905','Larchmont','LARCHMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15025,'42104','Larciano','LARCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15026,'43432','Lardos','LARDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15027,'30749','Laredo','LAREDO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15028,'3126','Laredo','LAREDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15029,'23258','Laret','LARET',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15030,'21730','Largo','LARGO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15031,'7170','Largs','LARGS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15032,'9770','Larisa','LARISA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15033,'41643','Larissa','LARISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15034,'44176','Larissos','LARISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15035,'7171','Larkfield','LARKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15036,'37911','Larkhall','LARKHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15037,'18601','Larkspur','LARKSPUR',NULL,'','United States','',0,0,231,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15038,'42735','Larmor Plage','LARMOR PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15039,'5560','Larmor-plage','LARMOR-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15040,'24278','Larnaca','LARNACA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15041,'8396','Larne','LARNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15042,'21078','Larned','LARNED',NULL,'','United States','',0,0,231,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15043,'38874','Larrabetzu','LARRABETZU',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15044,'37771','Larressingle','LARRESSINGLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15045,'17688','Larsen Bay','LARSEN BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:56','1900-01-01 00:00:00',1,0,1),(15046,'15025','Larvik','LARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:56','1900-01-01 00:00:00',1,0,1),(15047,'23543','Las Condes','LAS CONDES',NULL,'','Chile','',0,0,45,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15048,'15756','Las Croabas','LAS CROABAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15049,'2373','Las Galeras','LAS GALERAS',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15050,'42195','Las Grutas','LAS GRUTAS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15051,'32198','Las Piedras','LAS PIEDRAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15052,'36281','La-salvetat-sur-agou','LA-SALVETAT-SUR-AGOU',NULL,'','France','',0,0,76,'2016-10-17 11:11:58','1900-01-01 00:00:00',1,0,1),(15053,'3712','Lasarte','LASARTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:58','1900-01-01 00:00:00',1,0,1),(15054,'2152','Lasby','LASBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15055,'6103','Lascabanes','LASCABANES',NULL,'','France','',0,0,76,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15056,'33189','Lascassas','LASCASSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15057,'5324','Lascelle','LASCELLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15058,'16639','Lasko','LASKO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15059,'39981','Lassing','LASSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15060,'43433','Lassithi - Agios Nikolaos','LASSITHI - AGIOS NIKOLAOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15061,'43453','Lassithi-sissi','LASSITHI-SISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15062,'37599','Lasso','LASSO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15063,'39039','Lasswade','LASSWADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15064,'40050','Lastingham','LASTINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15065,'6838','Lastourville','LASTOURVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15066,'43841','Lastova','LASTOVA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15067,'42719','Lastovo','LASTOVO',NULL,'','Croatia','',0,0,55,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15068,'12020','Lastra A Signa','LASTRA A SIGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15069,'3457','Lastrilla','LASTRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15070,'41880','Latacunga','LATACUNGA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15071,'16931','Latakia','LATAKIA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15072,'3333','Latas','LATAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15073,'38177','Latera','LATERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15074,'12021','Laterina','LATERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15075,'28906','Latham','LATHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15076,'41157','Latheron','LATHERON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15077,'7172','Lathones','LATHONES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15078,'18602','Lathrop','LATHROP',NULL,'','United States','',0,0,231,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15079,'4333','Lathus-saint-remy','LATHUS-SAINT-REMY',NULL,'','France','',0,0,76,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15080,'12974','Latignano','LATIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15081,'6343','Latille','LATILLE',NULL,'','France','',0,0,76,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15082,'8397','Latimer','LATIMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15083,'2673','Latina','LATINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15084,'43668','Latrobe','LATROBE',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15085,'30018','Latrobe','LATROBE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15086,'40562','Latronquiere','LATRONQUIERE',NULL,'','France','',0,0,76,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15087,'39347','Latschach','LATSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15088,'30357','Latta','LATTA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15089,'5927','Lattes','LATTES',NULL,'','France','',0,0,76,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15090,'39798','Lattrop','LATTROP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15091,'4058','Laucala Island','LAUCALA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15092,'22583','Lauda','LAUDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15093,'22584','Lauda-konigshofen','LAUDA-KONIGSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15094,'448','Laudenbach','LAUDENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15095,'39599','Lauder','LAUDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15096,'19451','Lauderdale-by-the-sea','LAUDERDALE-BY-THE-SEA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15097,'721','Lauenburg','LAUENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15098,'44142','Lauenburg-elbe','LAUENBURG-ELBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15099,'40375','Lauenen','LAUENEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15100,'39611','Laugar','LAUGAR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15101,'41480','Laugarbakki','LAUGARBAKKI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15102,'11002','Laugarvatn','LAUGARVATN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15103,'8398','Laugharne','LAUGHARNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15104,'32830','Laughlin','LAUGHLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15105,'39111','Laughlintown','LAUGHLINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15106,'42780','Laujar De Andarax','LAUJAR DE ANDARAX',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15107,'40553','Laukaa','LAUKAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15108,'38011','Laulasmaa','LAULASMAA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15109,'26849','Launceston','LAUNCESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15110,'8399','Launceston','LAUNCESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15111,'16026','Laundos','LAUNDOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15112,'20065','Laupahoehoe','LAUPAHOEHOE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15113,'22585','Laupheim','LAUPHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15114,'30019','Laureldale','LAURELDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15115,'30359','Laurens','LAURENS',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15116,'42163','Laurentides','LAURENTIDES',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15117,'38889','Lauria','LAURIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15118,'27693','Laurie','LAURIE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15119,'33913','Laurinburg','LAURINBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15120,'22141','Laurium','LAURIUM',NULL,'','United States','',0,0,231,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15121,'12022','Lauro','LAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15122,'1977','Lauscha','LAUSCHA',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15123,'5325','Laussonne','LAUSSONNE',NULL,'','France','',0,0,76,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15124,'44143','Lautenbach','LAUTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15125,'58','Lauterbach','LAUTERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15126,'23457','Lauterbrunnen','LAUTERBRUNNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15127,'4098','Lautoka','LAUTOKA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15128,'3896','Lauttasaari Island','LAUTTASAARI ISLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15129,'22777','L\'auvergne','L\'AUVERGNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15130,'39077','Lauzerte','LAUZERTE',NULL,'','France','',0,0,76,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15131,'12023','Lavagna','LAVAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15132,'22778','Laval','LAVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15133,'21732','Lavale','LAVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15134,'11256','Lavarone','LAVARONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15135,'39460','Lavasa','LAVASA',NULL,'','India','Lavasa',5,0,101,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15136,'6104','Lavaur','LAVAUR',NULL,'','France','',0,0,76,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15137,'8400','Lavenham','LAVENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15138,'13022','Laveno Mombello','LAVENO MOMBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15139,'26250','Lavers Hill','LAVERS HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15140,'26912','Laverton','LAVERTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15141,'11025','Lavi','LAVI',NULL,'','Israel','',0,0,106,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15142,'34218','Lavington','LAVINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15143,'12024','Lavis','LAVIS',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15144,'19854','Lavonia','LAVONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15145,'39837','Lavoute-chilhac','LAVOUTE-CHILHAC',NULL,'','France','',0,0,76,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15146,'37917','Lavris','LAVRIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15147,'20066','Lawai','LAWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15148,'14376','Lawas','LAWAS',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15149,'18603','Lawndale','LAWNDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15150,'21409','Lawrence','LAWRENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15151,'33670','Lawrenceburg','LAWRENCEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:19','1900-01-01 00:00:00',1,0,1),(15152,'31142','Lawrenceville','LAWRENCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:20','1900-01-01 00:00:00',1,0,1),(15153,'32920','Lawton','LAWTON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15154,'2674','Laxe','LAXE',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15155,'6037','Laxou','LAXOU',NULL,'','France','',0,0,76,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15156,'7173','Laxton','LAXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15157,'3411','Layos','LAYOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15158,'4334','Lazaret','LAZARET',NULL,'','France','',0,0,76,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15159,'14098','Lazaro Cardenas','LAZARO CARDENAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15160,'38951','Laze V Tuhinju','LAZE V TUHINJU',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15161,'39749','Lazise','LAZISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15162,'12025','Lazzaro','LAZZARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15163,'14238','Le Carbet','LE CARBET',NULL,'','Martinique','',0,0,137,'2016-10-17 11:12:24','1900-01-01 00:00:00',1,0,1),(15164,'9383','Le Gosier','LE GOSIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:12:26','1900-01-01 00:00:00',1,0,1),(15165,'33022','Lead','LEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:32','1900-01-01 00:00:00',1,0,1),(15166,'33477','Leadville','LEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15167,'25608','Leaf Rapids','LEAF RAPIDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15168,'41156','Leafield','LEAFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15169,'30750','League City','LEAGUE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15170,'19452','Lealman','LEALMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15171,'34544','Leamington','LEAMINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15172,'36321','Leamington Spa','LEAMINGTON SPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15173,'26518','Learmonth','LEARMONTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15174,'34545','Leaside','LEASIDE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15175,'8402','Leatherhead','LEATHERHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15176,'21080','Leavenworth','LEAVENWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:12:35','1900-01-01 00:00:00',1,0,1),(15177,'21081','Leawood','LEAWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15178,'15678','Leba','LEBA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15179,'29697','Lebanon','LEBANON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15180,'60','Lebbenau','LEBBENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15181,'18604','Lebec','LEBEC',NULL,'','United States','',0,0,231,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15182,'39124','Leca Da Palmeira','LECA DA PALMEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15183,'19453','Lecanto','LECANTO',NULL,'','United States','',0,0,231,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15184,'12807','Lecce','LECCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15185,'35573','Lecce-merine','LECCE-MERINE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15186,'12932','Lecco','LECCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15187,'27001','Lech','LECH',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15188,'24478','Lechaschau','LECHASCHAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15189,'43236','Lecherias','LECHERIAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15190,'39239','Lechishchevo','LECHISHCHEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15191,'44069','Lecousse','LECOUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15192,'39226','Leczyca','LECZYCA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15193,'7174','Ledaig','LEDAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15194,'30751','Ledbetter','LEDBETTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15195,'8403','Ledbury','LEDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15196,'27077','Ledenitzen','LEDENITZEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15197,'28317','Ledgewood','LEDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15198,'9264','Ledsham','LEDSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15199,'25332','Leduc','LEDUC',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15200,'19099','Ledyard Center','LEDYARD CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15201,'17909','Leeds','LEEDS',NULL,'','United States','',0,0,231,'2016-10-17 11:12:44','1900-01-01 00:00:00',1,0,1),(15202,'1319','Leeds','LEEDS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15203,'784','Leegebruch','LEEGEBRUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15204,'39251','Leenane','LEENANE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15205,'14600','Leende','LEENDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15206,'61','Leer','LEER',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15207,'27695','Lees Summit','LEES SUMMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15208,'31144','Leesburg','LEESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:46','1900-01-01 00:00:00',1,0,1),(15209,'21223','Leesville','LEESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:46','1900-01-01 00:00:00',1,0,1),(15210,'34219','Leeton','LEETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15211,'14514','Leeuwarden','LEEUWARDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15212,'38358','Leffe','LEFFE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15213,'9829','Lefkada','LEFKADA',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15214,'38762','Lefkara','LEFKARA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15215,'43041','Lefkas','LEFKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15216,'43454','Lefkimi','LEFKIMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15217,'9777','Lefkimmi','LEFKIMMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15218,'39596','Lefkos','LEFKOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15219,'2999','Leganes','LEGANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15220,'15503','Legaspi','LEGASPI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15221,'42954','Legazpi City','LEGAZPI CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15222,'526','Legden','LEGDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15223,'40638','Lège-cap-ferret','LÈGE-CAP-FERRET',NULL,'','France','',0,0,76,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15224,'14515','Legemeer','LEGEMEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15225,'41624','Legian','LEGIAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15226,'38300','Legnago','LEGNAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15227,'12027','Legnano','LEGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15228,'15650','Legnica','LEGNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15229,'10643','Leh','LEH',NULL,'','India','',0,0,101,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15230,'33353','Lehi','LEHI',NULL,'','United States','',0,0,231,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15231,'19456','Lehigh Acres','LEHIGH ACRES',NULL,'','United States','',0,0,231,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15232,'30022','Lehighton','LEHIGHTON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15233,'27247','Lehrte','LEHRTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15234,'9931','Lei Yue Mun','LEI YUE MUN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15235,'43763','Leibnitz','LEIBNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15236,'33914','Leicester','LEICESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15237,'1433','Leicester','LEICESTER',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15238,'34220','Leichhardt','LEICHHARDT',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15239,'14718','Leiden','LEIDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15240,'14719','Leiderdorp','LEIDERDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15241,'14720','Leidschendam','LEIDSCHENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15242,'14471','Leidseplein','LEIDSEPLEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15243,'8406','Leighton Buzzard','LEIGHTON BUZZARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15244,'36479','Leikanger','LEIKANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15245,'22586','Leimen','LEIMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15246,'62','Leinfelden','LEINFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15247,'1721','Leinfelden-echterdin','LEINFELDEN-ECHTERDIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15248,'43536','Leinfelden-echterdingen','LEINFELDEN-ECHTERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15249,'39735','Leinì','LEINÌ',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15250,'26251','Leinster','LEINSTER',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15251,'39920','Leintwardine','LEINTWARDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15252,'63','Leipheim','LEIPHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15253,'15976','Leiria','LEIRIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15254,'2473','Leiro','LEIRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15255,'23264','Leissigen','LEISSIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15256,'8407','Leiston','LEISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15257,'33673','Leitchfield','LEITCHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15258,'41851','Leitrim','LEITRIM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15259,'34546','Leitrim','LEITRIM',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15260,'10715','Leixlip','LEIXLIP',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15261,'24050','Lekana','LEKANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15262,'3713','Lekeitio','LEKEITIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15263,'14721','Lekkerkerk','LEKKERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15264,'14936','Leknes','LEKNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15265,'39501','Leksand','LEKSAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15266,'22142','Leland','LELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15267,'38663','Lelex','LELEX',NULL,'','France','',0,0,76,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15268,'42187','L\'eliana','L\'ELIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15269,'6829','Lelu Village','LELU VILLAGE',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15270,'14758','Lelystad','LELYSTAD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15271,'10134','Lembongan','LEMBONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15272,'27248','Lembruch','LEMBRUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15273,'40195','Lemgo','LEMGO',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15274,'43397','Lemnos','LEMNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15275,'43727','Lemoiz','LEMOIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15276,'18608','Lemoore','LEMOORE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:56','1900-01-01 00:00:00',1,0,1),(15277,'2277','Lemvig','LEMVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:12:56','1900-01-01 00:00:00',1,0,1),(15278,'25042','Lencois','LENCOIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15279,'41606','Lendava','LENDAVA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15280,'21083','Lenexa','LENEXA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15281,'245','Lengenfeld','LENGENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15282,'27002','Lengenlois','LENGENLOIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15283,'246','Lenggries','LENGGRIES',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15284,'39344','Lengnau','LENGNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15285,'8409','Lenham','LENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15286,'12028','Leni','LENI',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15287,'16332','Lenino','LENINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15288,'23265','Lenk','LENK',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15289,'527','Lennestadt','LENNESTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15290,'43944','Lenningen','LENNINGEN',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15291,'18609','Lennox','LENNOX',NULL,'','United States','',0,0,231,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15292,'34792','Lennox Head','LENNOX HEAD',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15293,'37181','Lennoxtown','LENNOXTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15294,'22779','Lennoxville','LENNOXVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15295,'33915','Lenoir','LENOIR',NULL,'','United States','',0,0,231,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15296,'33193','Lenox','LENOX',NULL,'','United States','',0,0,231,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15297,'43093','Lensois','LENSOIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15298,'6652','Lentilly','LENTILLY',NULL,'','France','',0,0,76,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15299,'39945','Lentini','LENTINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15300,'23428','Lenzburg','LENZBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15301,'23266','Lenzerheide','LENZERHEIDE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15302,'24424','Leoben','LEOBEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15303,'24548','Leogang','LEOGANG',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15304,'30023','Leola','LEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15305,'21412','Leominster','LEOMINSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15306,'8410','Leominster','LEOMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15307,'13989','Leon','LEON',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15308,'14445','Leon','LEON',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15309,'30752','Leon Valley','LEON VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15310,'13830','Leon, Baja','LEON, BAJA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15311,'13904','Leona Vicario','LEONA VICARIO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15312,'247','Leonberg','LEONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15313,'26597','Leonora','LEONORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15314,'21084','Leoti','LEOTI',NULL,'','United States','',0,0,231,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15315,'3255','Lepe','LEPE',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15316,'5735','Lepine','LEPINE',NULL,'','France','',0,0,76,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15317,'37369','Leporano','LEPORANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15318,'38814','Leppavirta','LEPPAVIRTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15319,'9684','Leptokaria','LEPTOKARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15320,'39496','Lequile','LEQUILE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15321,'13831','Lerdo','LERDO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15322,'10240','Lereh','LEREH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15323,'13627','Leribe','LERIBE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15324,'12029','Lerici','LERICI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15325,'36149','Lerida','LERIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15326,'13905','Lerma','LERMA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15327,'2676','Lerma','LERMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15328,'24479','Lermoos','LERMOOS',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15329,'9824','Leros','LEROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15330,'16886','Lerum','LERUM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15331,'8411','Lerwick','LERWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15332,'38243','Les Coteaux','LES COTEAUX',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:13:07','1900-01-01 00:00:00',1,0,1),(15333,'25879','Les Escaldes','LES ESCALDES',NULL,'','Andorra','',0,0,5,'2016-10-17 11:13:07','1900-01-01 00:00:00',1,0,1),(15334,'43764','Lesachtal','LESACHTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15335,'2677','Lesaka','LESAKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15336,'39610','Lescala','LESCALA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15337,'5207','Lescar','LESCAR',NULL,'','France','',0,0,76,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15338,'23994','Leshan','LESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15339,'5856','Lesigny','LESIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15340,'32373','Leskovac','LESKOVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15341,'4741','Les-loges-en-josas','LES-LOGES-EN-JOSAS',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15342,'44072','Lesmenils','LESMENILS',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15343,'11258','Lesmo','LESMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15344,'13623','Lesobeng','LESOBENG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15345,'5208','Lesparre-medoc','LESPARRE-MEDOC',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15346,'5209','Lesperon','LESPERON',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15347,'2678','L\'espluga De Francoli','L\'ESPLUGA DE FRANCOLI',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15348,'6177','Lesquin','LESQUIN',NULL,'','France','',0,0,76,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15349,'9365','Les-saintes','LES-SAINTES',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15350,'41576','Lestartit','LESTARTIT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15351,'2948','L\'estartit','L\'ESTARTIT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15352,'40038','Lestelle-betharram','LESTELLE-BETHARRAM',NULL,'','France','',0,0,76,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15353,'30024','Lester','LESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15354,'9528','Lesvos','LESVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15355,'39939','Leszno','LESZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15356,'8412','Letchworth','LETCHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15357,'8413','Letcombe Regis','LETCOMBE REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15358,'8414','Letham','LETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15359,'25334','Lethbridge','LETHBRIDGE',NULL,'','Canada','Lethbridge',0,0,39,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15360,'24087','Leticia','LETICIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15361,'11259','Letojanni','LETOJANNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15362,'32574','Letsitele','LETSITELE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15363,'11260','Lettere','LETTERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15364,'10868','Letterfrack','LETTERFRACK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15365,'10962','Letterkenny','LETTERKENNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15366,'5931','Leuc','LEUC',NULL,'','France','',0,0,76,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15367,'12030','Leuca','LEUCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15368,'18611','Leucadia','LEUCADIA',NULL,'','United States','',0,0,231,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15369,'8415','Leuchars','LEUCHARS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15370,'23269','Leukerbad','LEUKERBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15372,'42370','Leusden','LEUSDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15373,'14683','Leusden-centrum','LEUSDEN-CENTRUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15374,'24549','Leutasch','LEUTASCH',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15375,'24425','Leutschach','LEUTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15376,'40969','Leuven','LEUVEN',NULL,'','Belgium','Leuven',0,0,21,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15377,'43059','Levadia','LEVADIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15378,'41712','Levallois Perret','LEVALLOIS PERRET',NULL,'','France','',0,0,76,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15379,'5133','Levallois-perret','LEVALLOIS-PERRET',NULL,'','France','',0,0,76,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15380,'35552','Levane','LEVANE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15381,'14937','Levanger','LEVANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15382,'12031','Levanto','LEVANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15383,'37419','Levanzo','LEVANZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15384,'30753','Levelland','LEVELLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15385,'17689','Levelock','LEVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15386,'21413','Leverett','LEVERETT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15387,'528','Leverkusen','LEVERKUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15388,'5468','Levernois','LEVERNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15389,'3897','Levi','LEVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15390,'12032','Levico Terme','LEVICO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15391,'15212','Levin','LEVIN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15392,'22780','Levis','LEVIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15393,'30025','Levittown','LEVITTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15394,'9529','Levkas','LEVKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15395,'9821','Levktra','LEVKTRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15396,'42053','Levoca','LEVOCA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15397,'28911','Lewbeach','LEWBEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15398,'7178','Lewdown','LEWDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15399,'8417','Lewes','LEWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15400,'19226','Lewes','LEWES',NULL,'','United States','',0,0,231,'2016-10-17 11:13:20','1900-01-01 00:00:00',1,0,1),(15401,'32003','Lewisburg','LEWISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:13:20','1900-01-01 00:00:00',1,0,1),(15402,'8418','Lewisham','LEWISHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:21','1900-01-01 00:00:00',1,0,1),(15403,'33674','Lewisport','LEWISPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:21','1900-01-01 00:00:00',1,0,1),(15404,'27993','Lewistown','LEWISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:23','1900-01-01 00:00:00',1,0,1),(15405,'30754','Lewisville','LEWISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:24','1900-01-01 00:00:00',1,0,1),(15406,'10241','Lewoleba','LEWOLEBA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:13:24','1900-01-01 00:00:00',1,0,1),(15407,'31145','Lexington','LEXINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:25','1900-01-01 00:00:00',1,0,1),(15408,'8419','Leyburn','LEYBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:29','1900-01-01 00:00:00',1,0,1),(15409,'33478','Leyden','LEYDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:29','1900-01-01 00:00:00',1,0,1),(15410,'9321','Leyland','LEYLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15411,'23270','Leysin','LEYSIN',NULL,'','Switzerland','Leysin',0,0,210,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15412,'8420','Leyton','LEYTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15413,'41380','Lezama','LEZAMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15414,'6178','Lezennes','LEZENNES',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15415,'5932','Lezignan-corbieres','LEZIGNAN-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15416,'15621','Lezno','LEZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15417,'5327','Lezoux','LEZOUX',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15418,'12033','Lezzeno','LEZZENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15419,'23847','Lhasa','LHASA',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15420,'4360','Lhermitage-lorge','LHERMITAGE-LORGE',NULL,'','France','',0,0,76,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15421,'2937','L\'hospitalet De Llobregat','L\'HOSPITALET DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15422,'15489','Lian','LIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15423,'23771','Lianfeng','LIANFENG',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15424,'42982','Liano','LIANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15425,'16394','Lianozovo','LIANOZOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15426,'23743','Lianyungang','LIANYUNGANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15427,'23967','Liaobu','LIAOBU',NULL,'','China','',0,0,46,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15428,'43825','Liaocheng','LIAOCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15429,'5736','Liart','LIART',NULL,'','France','',0,0,76,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15430,'27994','Libby','LIBBY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15431,'39276','Libechov','LIBECHOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15432,'21085','Liberal','LIBERAL',NULL,'','United States','',0,0,231,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15433,'24346','Liberec','LIBEREC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15434,'24217','Liberia','LIBERIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15435,'8421','Liberton','LIBERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15436,'27697','Liberty','LIBERTY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15437,'20623','Libertyville','LIBERTYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15438,'4929','Libourne','LIBOURNE',NULL,'','France','',0,0,76,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15439,'24700','Libramont','LIBRAMONT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15440,'6835','Libreville','LIBREVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15441,'3034','Librilla','LIBRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15442,'8422','Lichfield','LICHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15443,'14223','Lichinga','LICHINGA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15444,'529','Lichtenau','LICHTENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15445,'248','Lichtenberg','LICHTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15446,'249','Lichtenfels','LICHTENFELS',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15447,'2003','Lichtenrade','LICHTENRADE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15448,'2056','Lichtenstein','LICHTENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15449,'64','Lichtenwalde','LICHTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15450,'785','Lichterfelde','LICHTERFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15451,'30028','Lickdale','LICKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15452,'27698','Licking','LICKING',NULL,'','United States','',0,0,231,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15453,'12035','Licodia Eubea','LICODIA EUBEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15454,'11261','Licola Mare','LICOLA MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15455,'34222','Lidcombe','LIDCOMBE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15456,'16831','Lidingo','LIDINGO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15457,'16887','Lidkoping','LIDKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15458,'28915','Lido Beach','LIDO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15459,'786','Liebenwalde','LIEBENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15460,'530','Lieberhausen','LIEBERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15461,'13584','Liechtenstein','LIECHTENSTEIN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15462,'24675','Liege','LIEGE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15463,'4001','Lieksa','LIEKSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15464,'3127','Liencres','LIENCRES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15465,'39625','Liendo','LIENDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15466,'24480','Lienz','LIENZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15467,'36382','Liepaja','LIEPAJA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15468,'13662','Liepaya','LIEPAYA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15469,'40424','Lier','LIER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15470,'41435','Lierganes','LIERGANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15471,'27078','Liesing','LIESING',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15472,'5777','Liesle','LIESLE',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15473,'23271','Liestal','LIESTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15474,'38483','Lieu-dit Favone','LIEU-DIT FAVONE',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15475,'5857','Lieusaint','LIEUSAINT',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15476,'24426','Liezen','LIEZEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15477,'6040','Liezey','LIEZEY',NULL,'','France','',0,0,76,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15478,'41517','Lifford','LIFFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15479,'5567','Liffre','LIFFRE',NULL,'','France','',0,0,76,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15480,'14423','Lifou','LIFOU',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15481,'8423','Lifton','LIFTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15482,'17112','Lifuka Island','LIFUKA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15483,'31147','Lightfoot','LIGHTFOOT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15484,'34223','Lightning Ridge','LIGHTNING RIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15485,'5933','Lignan-sur-orb','LIGNAN-SUR-ORB',NULL,'','France','',0,0,76,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15486,'5737','Lignon','LIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15487,'30029','Ligonier','LIGONIER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15488,'16441','Ligovo','LIGOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15489,'6345','Liguge','LIGUGE',NULL,'','France','',0,0,76,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15490,'41812','Ligure','LIGURE',NULL,'','France','',0,0,76,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15491,'23816','Lijiang','LIJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15492,'43547','Lijnden','LIJNDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15493,'14157','Likiep','LIKIEP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15494,'14273','Likoma Island','LIKOMA ISLAND',NULL,'','Malawi','',0,0,131,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15495,'19857','Lilburn','LILBURN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15496,'4879','L\'ile D\'aix','L\'ILE D\'AIX',NULL,'','France','',0,0,76,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15497,'39697','Lile-rousse','LILE-ROUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15498,'27249','Lilienthal','LILIENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15499,'16832','Liljeholmen','LILJEHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15500,'16833','Lilla Essingen','LILLA ESSINGEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15501,'10095','Lillafured','LILLAFURED',NULL,'','Hungary','',0,0,99,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15502,'5006','Lille','LILLE',NULL,'','France','',0,0,76,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15503,'14947','Lillehammer','LILLEHAMMER',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15504,'14859','Lillesand','LILLESAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15505,'14850','Lillestrom','LILLESTROM',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15506,'33919','Lillington','LILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15507,'37245','Lillooet','LILLOOET',NULL,'','Canada','',0,0,39,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15508,'14277','Lilongwe','LILONGWE',NULL,'','Malawi','',0,0,131,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15509,'26416','Lilydale','LILYDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15510,'24281','Limassol','LIMASSOL',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15511,'8424','Limavady','LIMAVADY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15512,'4742','Limay','LIMAY',NULL,'','France','',0,0,76,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15513,'14377','Limbang','LIMBANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15514,'24014','Limbe','LIMBE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15515,'24587','Limbergse Kempen','LIMBERGSE KEMPEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15516,'12037','Limbiate','LIMBIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15517,'24588','Limburg','LIMBURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15518,'250','Limburg','LIMBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15519,'641','Limburgerhof','LIMBURGERHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15520,'25089','Limeira','LIMEIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15521,'24637','Limelette','LIMELETTE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15522,'9685','Limenaria','LIMENARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15523,'5655','Limeray','LIMERAY',NULL,'','France','',0,0,76,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15524,'10898','Limerick','LIMERICK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15525,'37664','Limerick','LIMERICK',NULL,'','United States','',0,0,231,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15526,'33196','Limestone Cove','LIMESTONE COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15527,'11263','Limito','LIMITO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15528,'1429','Limoge','LIMOGE',NULL,'','FRANCE','',0,0,76,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15529,'6008','Limoges','LIMOGES',NULL,'','France','',0,0,76,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15530,'33479','Limon','LIMON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15531,'24174','Limon','LIMON',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15532,'15341','Limon Bay','LIMON BAY',NULL,'','Panama','',0,0,169,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15533,'12038','Limone Piemonte','LIMONE PIEMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15534,'6658','Limonest','LIMONEST',NULL,'','France','',0,0,76,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15535,'5656','Limoux','LIMOUX',NULL,'','France','',0,0,76,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15536,'36152','Limpias','LIMPIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15537,'8425','Limpley Stoke','LIMPLEY STOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15538,'1439','Limpopo- Kruger Area','LIMPOPO- KRUGER AREA',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15539,'27135','Lina','LINA',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15540,'23705','Lin\'an','LIN\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15541,'3091','Linares','LINARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15542,'34820','Linares','LINARES',NULL,'','Chile','',0,0,45,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15543,'41846','Linas','LINAS',NULL,'','France','',0,0,76,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15544,'43472','Linate','LINATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15545,'23947','Lincang','LINCANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15546,'15410','Lince','LINCE',NULL,'','Peru','',0,0,172,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15547,'21415','Lincoln','LINCOLN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:54','1900-01-01 00:00:00',1,0,1),(15548,'28916','Lincolndale','LINCOLNDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:58','1900-01-01 00:00:00',1,0,1),(15549,'20625','Lincolnshire','LINCOLNSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:58','1900-01-01 00:00:00',1,0,1),(15550,'33920','Lincolnton','LINCOLNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:59','1900-01-01 00:00:00',1,0,1),(15551,'21890','Lincolnville','LINCOLNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:59','1900-01-01 00:00:00',1,0,1),(15552,'20626','Lincolnwood','LINCOLNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15553,'16101','Linda A Velha','LINDA A VELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15554,'16003','Linda-a-pastora','LINDA-A-PASTORA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15555,'30758','Lindale','LINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15556,'8427','Lindale','LINDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15557,'14898','Lindas','LINDAS',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15558,'251','Lindberg','LINDBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15559,'37079','Lindbergh Bay','LINDBERGH BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15560,'26252','Lindeman Island','LINDEMAN ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15561,'28318','Linden','LINDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15562,'32575','Linden','LINDEN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15563,'28917','Lindenhurst','LINDENHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15564,'28319','Lindenwold','LINDENWOLD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15565,'1978','Linderbach','LINDERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15566,'44024','Lindesnes','LINDESNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15567,'17461','Lindi','LINDI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15568,'39705','Lindlar','LINDLAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15569,'9802','Lindos','LINDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15570,'14807','Lindoya','LINDOYA',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15571,'34547','Lindsay','LINDSAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15572,'18614','Lindsay','LINDSAY',NULL,'','United States','',0,0,231,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15573,'21087','Lindsborg','LINDSBORG',NULL,'','United States','',0,0,231,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15574,'23917','Linfen','LINFEN',NULL,'','China','',0,0,46,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15575,'23938','Lingao','LINGAO',NULL,'','China','',0,0,46,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15576,'24569','Lingenau','LINGENAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15577,'40685','Lingfield','LINGFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15578,'6771','Lingolsheim','LINGOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15579,'23873','Lingshui','LINGSHUI',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15580,'12040','Linguaglossa','LINGUAGLOSSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15581,'23706','Linhai','LINHAI',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15582,'23879','Linhe','LINHE',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15583,'4361','Linieres Bouton','LINIERES BOUTON',NULL,'','France','',0,0,76,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15584,'16768','Linkoping','LINKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15585,'8428','Linlithgow','LINLITHGOW',NULL,'','United Kingdom','Linlithgow',0,0,229,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15586,'27700','Linn','LINN',NULL,'','United States','',0,0,231,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15587,'27425','Lino Lakes','LINO LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:14:06','1900-01-01 00:00:00',1,0,1),(15588,'9530','Linoperamata','LINOPERAMATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15589,'25208','Lins','LINS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15590,'1828','Linstow','LINSTOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15591,'1502','Linthicum','LINTHICUM',NULL,'','United States','',0,0,231,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15592,'23927','Linyi','LINYI',NULL,'','China','',0,0,46,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15593,'27136','Linz','LINZ',NULL,'','Austria','Linz',0,0,14,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15594,'25473','Lions Bay','LIONS BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15595,'30030','Lionville','LIONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15596,'37850','Liouciou','LIOUCIOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15597,'42943','Lipa City','LIPA CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15598,'42040','Lipa Noi','LIPA NOI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15599,'12041','Lipari','LIPARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15600,'16361','Lipetsk','LIPETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15601,'8429','Liphook','LIPHOOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15602,'16640','Lipica','LIPICA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15603,'24316','Lipno Nad Vltavou','LIPNO NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15604,'38222','Lipot','LIPOT',NULL,'','Hungary','',0,0,99,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15605,'531','Lippstadt','LIPPSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15606,'39181','Liptovska Sielnica','LIPTOVSKA SIELNICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15607,'40232','Liptovsky Jan','LIPTOVSKY JAN',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15608,'24023','Lisala','LISALA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15609,'16004','Lisbon','LISBON',NULL,'','Portugal','Lisbon',0,0,175,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15610,'28069','Lisbon','LISBON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15611,'36568','Lisbon-costa D Capar','LISBON-COSTA D CAPAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15612,'36581','Lisbon-montijo','LISBON-MONTIJO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15613,'36580','Lisbon-oeiras','LISBON-OEIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15614,'36587','Lisbon-queluz','LISBON-QUELUZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15615,'36595','Lisbon-turcifal','LISBON-TURCIFAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15616,'10788','Liscannor','LISCANNOR',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15617,'35555','Lisciano Niccone','LISCIANO NICCONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15618,'25724','Liscomb','LISCOMB',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15619,'10789','Lisdoonvarna','LISDOONVARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15620,'17397','Lishan','LISHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15621,'23968','Lishui','LISHUI',NULL,'','China','',0,0,46,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15622,'5408','Lisieux','LISIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15623,'8430','Liskeard','LISKEARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15624,'4956','L\'isle-d\'abeau','L\'ISLE-D\'ABEAU',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15625,'4362','Lisle-jourdain','LISLE-JOURDAIN',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15626,'4363','L\'isle-sur-la-sorgue','L\'ISLE-SUR-LA-SORGUE',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15627,'34224','Lismore','LISMORE',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15628,'10939','Lismore','LISMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15629,'8431','Liss','LISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15630,'14722','Lisse','LISSE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15631,'44073','Lisses','LISSES',NULL,'','France','',0,0,76,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15632,'6659','Lissieu','LISSIEU',NULL,'','France','',0,0,76,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15633,'12042','Lissone','LISSONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15634,'41516','Listowel','LISTOWEL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15635,'16322','Listvyanka','LISTVYANKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15636,'27426','Litchfield','LITCHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:14','1900-01-01 00:00:00',1,0,1),(15637,'34789','Litchfield Nat. Park','LITCHFIELD NAT. PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:15','1900-01-01 00:00:00',1,0,1),(15638,'34225','Lithgow','LITHGOW',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:15','1900-01-01 00:00:00',1,0,1),(15639,'19858','Lithia Springs','LITHIA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:14:16','1900-01-01 00:00:00',1,0,1),(15640,'19859','Lithonia','LITHONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:16','1900-01-01 00:00:00',1,0,1),(15641,'30031','Lititz','LITITZ',NULL,'','United States','',0,0,231,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15642,'42496','Litochoro','LITOCHORO',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15643,'35258','Litohoro','LITOHORO',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15644,'9686','Litokhoron','LITOKHORON',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15645,'32112','Little America','LITTLE AMERICA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15646,'24258','Little Cayman','LITTLE CAYMAN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15647,'25233','Little Good Harbour','LITTLE GOOD HARBOUR',NULL,'','Barbados','',0,0,19,'2016-10-17 11:14:19','1900-01-01 00:00:00',1,0,1),(15648,'25609','Little Grand Rapids','LITTLE GRAND RAPIDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:19','1900-01-01 00:00:00',1,0,1),(15649,'30760','Littlefield','LITTLEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:23','1900-01-01 00:00:00',1,0,1),(15650,'8435','Littlehampton','LITTLEHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:23','1900-01-01 00:00:00',1,0,1),(15651,'32729','Littleton','LITTLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:24','1900-01-01 00:00:00',1,0,1),(15652,'23606','Liulicun','LIULICUN',NULL,'','China','',0,0,46,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15653,'23856','Liuzhou','LIUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15654,'9803','Livadia','LIVADIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15655,'13661','Livange','LIVANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15656,'34548','Lively','LIVELY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:26','1900-01-01 00:00:00',1,0,1),(15657,'18618','Livermore','LIVERMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15658,'28920','Liverpool','LIVERPOOL',NULL,'','United States','',0,0,231,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15659,'34226','Liverpool','LIVERPOOL',NULL,'','Australia','Liverpool',0,0,13,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15660,'8436','Liverpool','LIVERPOOL',NULL,'','United Kingdom','Liverpool',0,0,229,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15661,'25725','Liverpool','LIVERPOOL',NULL,'','Canada','Liverpool',0,0,39,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15662,'24710','Lives-sur-meuse','LIVES-SUR-MEUSE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15663,'12043','Livigno','LIVIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15664,'42679','Livinallongo Del Col Di Lana','LIVINALLONGO DEL COL DI LANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15665,'17911','Livingston','LIVINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15666,'8437','Livingston','LIVINGSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:29','1900-01-01 00:00:00',1,0,1),(15667,'39733','Livingston','LIVINGSTON',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:14:29','1900-01-01 00:00:00',1,0,1),(15668,'9874','Lívingston','LÍVINGSTON',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15669,'32648','Livingstone','LIVINGSTONE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15670,'28922','Livonia','LIVONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15671,'12976','Livorno','LIVORNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15672,'24988','Livramento','LIVRAMENTO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15673,'4364','Livry Gargan','LIVRY GARGAN',NULL,'','France','',0,0,76,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15674,'41406','Livry-gargan','LIVRY-GARGAN',NULL,'','France','',0,0,76,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15675,'40372','Liwa','LIWA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15676,'23607','Liwan','LIWAN',NULL,'','China','',0,0,46,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15677,'23744','Liyang','LIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15678,'8438','Lizard','LIZARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15679,'26253','Lizard Island','LIZARD ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15680,'38373','Lizzanello','LIZZANELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15681,'12044','Lizzano In Belvedere','LIZZANO IN BELVEDERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15682,'16641','Ljubljana','LJUBLJANA',NULL,'','Slovenia','Ljubljana',0,0,192,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15683,'16869','Ljungby','LJUNGBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15684,'37206','Ljungbyhed','LJUNGBYHED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15685,'38322','Ljungskile','LJUNGSKILE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15686,'16700','Ljusdal','LJUSDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15687,'41829','Ljutomer','LJUTOMER',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15688,'2679','Llafranc','LLAFRANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15689,'37731','Llagostera','LLAGOSTERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15690,'8439','Llanarmon Dyffryn-ceiriog','LLANARMON DYFFRYN-CEIRIOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15691,'2680','Llanars','LLANARS',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15692,'41540','Llanaves De La Reina','LLANAVES DE LA REINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15693,'8440','Llanberis','LLANBERIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15694,'38863','Llanca','LLANCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15695,'8441','Llandegla','LLANDEGLA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15696,'8442','Llandeilo','LLANDEILO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15697,'8443','Llandovery','LLANDOVERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15698,'8444','Llandrindod Wells','LLANDRINDOD WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15699,'8445','Llandudno','LLANDUDNO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15700,'39879','Llandybie','LLANDYBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15701,'8446','Llandyssul','LLANDYSSUL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15702,'41151','Llandysul','LLANDYSUL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15703,'8447','Llanelli','LLANELLI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15704,'40589','Llanera','LLANERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15705,'3458','Llanes','LLANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15706,'8448','Llanfairpwllgwyngyll','LLANFAIRPWLLGWYNGYLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15707,'7183','Llanfarian','LLANFARIAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15708,'8449','Llanfyllin','LLANFYLLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15709,'41108','Llangadog','LLANGADOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15710,'8450','Llangammarch Wells','LLANGAMMARCH WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15711,'8451','Llangefni','LLANGEFNI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15712,'8452','Llangollen','LLANGOLLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15713,'8453','Llangurig','LLANGURIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15714,'8454','Llangybi','LLANGYBI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15715,'30764','Llano','LLANO',NULL,'','United States','',0,0,231,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15716,'14107','Llano Largo','LLANO LARGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15717,'7184','Llanrhaedr','LLANRHAEDR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15718,'8455','Llanrug','LLANRUG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15719,'8456','Llanrwst','LLANRWST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15720,'8457','Llantwit Major','LLANTWIT MAJOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15721,'8458','Llanvair Waterdine','LLANVAIR WATERDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15722,'8459','Llanwddyn','LLANWDDYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15723,'8460','Llanwrtyd Wells','LLANWRTYD WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15724,'8461','Llanybydder','LLANYBYDDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15725,'41107','Llanymynech','LLANYMYNECH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15726,'41473','Llavorsi','LLAVORSI',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15727,'2681','Llavorsí','LLAVORSÍ',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15728,'2953','Lleida','LLEIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15729,'39375','Llerena','LLERENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15730,'3557','Llivia','LLIVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15731,'3558','Lloret De Mar','LLORET DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15732,'25880','Llorts','LLORTS',NULL,'','Andorra','',0,0,5,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15733,'2905','Lloseta','LLOSETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15734,'28923','Lloyd Harbor','LLOYD HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15735,'25335','Lloydminster','LLOYDMINSTER',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15736,'2683','Llucalcari','LLUCALCARI',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15737,'2906','Llucmajor','LLUCMAJOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15738,'8462','Llyswen','LLYSWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15739,'8463','Loanhead','LOANHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15740,'12045','Loano','LOANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15741,'1829','Lobbe','LOBBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15742,'40563','Lobios','LOBIOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15743,'23272','Locarno','LOCARNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15744,'1442','Loch Lomond','LOCH LOMOND',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15745,'41106','Lochailort','LOCHAILORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15746,'38209','Lochau','LOCHAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15747,'8464','Lochearnhead','LOCHEARNHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15748,'14543','Lochem','LOCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15749,'4946','Loches','LOCHES',NULL,'','France','',0,0,76,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15750,'8465','Lochgilphead','LOCHGILPHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15751,'8466','Lochinver','LOCHINVER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15752,'8467','Lochmaddy','LOCHMADDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15753,'8468','Lockerbie','LOCKERBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15754,'30765','Lockhart','LOCKHART',NULL,'','United States','',0,0,231,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15755,'26254','Lockhart Rivers','LOCKHART RIVERS',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15756,'20630','Lockport','LOCKPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15757,'7187','Locks Heath','LOCKS HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15758,'5568','Locmaria','LOCMARIA',NULL,'','France','',0,0,76,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15759,'38022','Locorotondo','LOCOROTONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15760,'5569','Loctudy','LOCTUDY',NULL,'','France','',0,0,76,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15761,'12046','Loculi','LOCULI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15762,'31148','Locust Dale','LOCUST DALE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15763,'36670','Loddekoping','LODDEKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:47','1900-01-01 00:00:00',1,0,1),(15764,'16870','Loddekopinge','LODDEKOPINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:47','1900-01-01 00:00:00',1,0,1),(15765,'39172','Loddin','LODDIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15766,'40340','Loderup','LODERUP',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15767,'5935','Lodeve','LODEVE',NULL,'','France','',0,0,76,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15768,'31799','Lodi','LODI',NULL,'','United States','',0,0,231,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15769,'12047','Lodi','LODI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15770,'24024','Lodja','LODJA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15771,'39804','Loebau','LOEBAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15772,'65','Loecherberg','LOECHERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15773,'17067','Loei','LOEI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15774,'14158','Loen','LOEN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15775,'14981','Loen','LOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15776,'24388','Lofer','LOFER',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15777,'43329','Lofoten','LOFOTEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15778,'37970','Lofsdalen','LOFSDALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15779,'14899','Lofthus','LOFTHUS',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15780,'26716','Logan City','LOGAN CITY',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15781,'26717','Loganholme','LOGANHOLME',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15782,'20931','Logansport','LOGANSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15783,'19861','Loganville','LOGANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15784,'5858','Lognes','LOGNES',NULL,'','France','',0,0,76,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15785,'2966','Logrono','LOGRONO',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15786,'2245','Logstor','LOGSTOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15787,'37433','Lohberg','LOHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15788,'3979','Lohja','LOHJA',NULL,'','Finland','',0,0,75,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15789,'66','Lohmar','LOHMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15790,'1830','Lohmen','LOHMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15791,'450','Lohne','LOHNE',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15792,'22587','Lohr','LOHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15793,'12048','Loiano','LOIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15794,'27137','Loibichl','LOIBICHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15795,'27107','Loipersdorf','LOIPERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15796,'4366','Loire-atlantique','LOIRE-ATLANTIQUE',NULL,'','France','',0,0,76,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15797,'4367','Loiret','LOIRET',NULL,'','France','',0,0,76,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15798,'4368','Loir-et-cher','LOIR-ET-CHER',NULL,'','France','',0,0,76,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15799,'12049','Loiri','LOIRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15800,'37561','Loiu','LOIU',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15801,'2400','Loja','LOJA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15802,'9932','Lok Ma Chau','LOK MA CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15803,'24610','Lokeren','LOKEREN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15804,'39632','Loket','LOKET',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15805,'2246','Lokken','LOKKEN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15806,'10084','Lokoshaza','LOKOSHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15807,'42072','Lokva Rogoznica','LOKVA ROGOZNICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15808,'41817','Lolland','LOLLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15809,'27997','Lolo','LOLO',NULL,'','United States','',0,0,231,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15810,'8469','Lolworth','LOLWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15811,'14948','Lom','LOM',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15812,'18621','Loma Linda','LOMA LINDA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15813,'4060','Lomaiviti Islands','LOMAIVITI ISLANDS',NULL,'','Fiji','',0,0,74,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15814,'26076','Lomas De Zamora','LOMAS DE ZAMORA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15815,'12050','Lomazzo','LOMAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15816,'20631','Lombard','LOMBARD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15817,'11267','Lombardy Alps','LOMBARDY ALPS',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15818,'10135','Lombok','LOMBOK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15819,'35348','Lombok-mataram','LOMBOK-MATARAM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15820,'35365','Lombok-medana Beach','LOMBOK-MEDANA BEACH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15821,'35375','Lombok-senggigi','LOMBOK-SENGGIGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15822,'35360','Lombok-tranwangan Is','LOMBOK-TRANWANGAN IS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15823,'16950','Lome','LOME',NULL,'','Togo','',0,0,216,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15824,'15695','Lomianki','LOMIANKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15825,'31800','Lomira','LOMIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15826,'18622','Lomita','LOMITA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15827,'6179','Lomme','LOMME',NULL,'','France','',0,0,76,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15828,'24684','Lommel','LOMMEL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15829,'18623','Lompoc','LOMPOC',NULL,'','United States','',0,0,231,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15830,'15653','Lomza','LOMZA',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15831,'12051','Lonate Pozzolo','LONATE POZZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15832,'12052','Lonato','LONATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15833,'41815','Lonavala','LONAVALA',NULL,'','India','Lonavala',5,0,101,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15835,'12053','Londa','LONDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15836,'9245','London','LONDON',NULL,'','United Kingdom','London',0,0,229,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15837,'34549','London','LONDON',NULL,'','Canada','London',0,0,39,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15838,'32730','Londonderry','LONDONDERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15839,'9262','Londonderry','LONDONDERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15840,'36314','London-hendon','LONDON-HENDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15841,'25114','Londrina','LONDRINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15842,'33481','Lonetree','LONETREE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:02','1900-01-01 00:00:00',1,0,1),(15843,'24834','Long Island','LONG ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:15:05','1900-01-01 00:00:00',1,0,1),(15844,'26165','Long Island','LONG ISLAND',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:15:05','1900-01-01 00:00:00',1,0,1),(15845,'14378','Long Lellang','LONG LELLANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:15:07','1900-01-01 00:00:00',1,0,1),(15846,'11268','Longa','LONGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15847,'32318','Longana','LONGANA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15848,'10177','Longapung','LONGAPUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15849,'38197','Longare','LONGARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15850,'10178','Longbawan','LONGBAWAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15851,'19461','Longboat Key','LONGBOAT KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15852,'8475','Longbridge','LONGBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15853,'19462','Longdale','LONGDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15854,'4997','Longeau-percey','LONGEAU-PERCEY',NULL,'','France','',0,0,76,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15855,'6660','Longefoy','LONGEFOY',NULL,'','France','',0,0,76,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15856,'43670','Longford','LONGFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15857,'8476','Longforgan','LONGFORGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15858,'8477','Longframlington','LONGFRAMLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15859,'8478','Longhirst','LONGHIRST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15860,'8479','Longhorsley','LONGHORSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15861,'12723','Longiano','LONGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15862,'33482','Longmont','LONGMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15863,'9687','Longos','LONGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15864,'26417','Longreach','LONGREACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15865,'30365','Longs','LONGS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15866,'36823','Longtan','LONGTAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15867,'6308','Longueau','LONGUEAU',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15868,'22781','Longueuil','LONGUEUIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15869,'6041','Longuyon','LONGUYON',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15870,'5469','Longvic','LONGVIC',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15871,'19463','Longwood','LONGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:15:14','1900-01-01 00:00:00',1,0,1),(15872,'6042','Longwy','LONGWY',NULL,'','France','',0,0,76,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15873,'23772','Longyan','LONGYAN',NULL,'','China','',0,0,46,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15874,'16536','Longyearbyen','LONGYEARBYEN',NULL,'','Svalbard And Jan Mayen Islands','',0,0,0,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15875,'36480','Longyearbyen','LONGYEARBYEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15876,'23707','Longyou','LONGYOU',NULL,'','China','',0,0,46,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15877,'18044','Lonoke','LONOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15878,'32334','Lonorore','LONORORE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15879,'5778','Lons-le-saunier','LONS-LE-SAUNIER',NULL,'','France','',0,0,76,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15880,'7189','Looe','LOOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15881,'19862','Lookout Mountain','LOOKOUT MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15882,'18627','Loomis','LOOMIS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15883,'31542','Loon Lake','LOON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15884,'41405','Loon Plage','LOON PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15885,'6180','Loon-plage','LOON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15886,'14472','Loosdrecht','LOOSDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15887,'43842','Lopar','LOPAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15888,'36758','Lopburi','LOPBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15889,'31543','Lopez Island','LOPEZ ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15890,'14561','Loppersum','LOPPERSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15891,'10056','Lopud','LOPUD',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15892,'29404','Lorain','LORAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15893,'34228','Lord Howe Island','LORD HOWE ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15894,'28541','Lordsburg','LORDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15895,'29405','Lordstown','LORDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15896,'43111','Lorenskog','LORENSKOG',NULL,'','Norway','',0,0,164,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15897,'38621','Lorenzago Di Cadore','LORENZAGO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15898,'14135','Loreto','LORETO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15899,'35556','Loreto','LORETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15900,'22782','Loretteville','LORETTEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15901,'33679','Loretto','LORETTO',NULL,'','United States','',0,0,231,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15902,'6476','Lorgues','LORGUES',NULL,'','France','',0,0,76,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15903,'12055','Loria','LORIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15904,'12056','Lorica','LORICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15905,'5001','Lorient','LORIENT',NULL,'','France','',0,0,76,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15906,'16948','Lorimers','LORIMERS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15907,'41404','Loriol-du-comtat','LORIOL-DU-COMTAT',NULL,'','France','',0,0,76,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15908,'27876','Lorman','LORMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15909,'5211','Lormont','LORMONT',NULL,'','France','',0,0,76,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15910,'26256','Lorne','LORNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15911,'12057','Loro Ciuffenna','LORO CIUFFENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15912,'4369','Lorp-sentaraille','LORP-SENTARAILLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15913,'22588','Lorrach','LORRACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15914,'4370','Lorraine Airport','LORRAINE AIRPORT',NULL,'','France','',0,0,76,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15915,'41515','Lorrha','LORRHA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15916,'31149','Lorton','LORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15917,'8480','Lorton','LORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15918,'32175','Los Roques','LOS ROQUES',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15919,'23522','Los Vilos','LOS VILOS',NULL,'','Chile','',0,0,45,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15920,'9993','Losinj Island','LOSINJ ISLAND',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15921,'67','Lossburg','LOSSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15922,'8481','Lossiemouth','LOSSIEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15923,'8482','Lostwithiel','LOSTWITHIEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15924,'4372','Lot-et-garonne','LOT-ET-GARONNE',NULL,'','France','',0,0,76,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15925,'36824','Lotung','LOTUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15926,'18641','Lotus','LOTUS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15927,'42309','Lotzwil','LOTZWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15928,'13537','Louangphrabang','LOUANGPHRABANG',NULL,'','Laos','',0,0,118,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15929,'24051','Loubomo','LOUBOMO',NULL,'','Congo','',0,0,51,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15930,'6106','Loubressac','LOUBRESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15931,'40336','Loudeac','LOUDEAC',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15932,'5032','Loudenvielle','LOUDENVIELLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15933,'6107','Loudervielle','LOUDERVIELLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15934,'33197','Loudon','LOUDON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:31','1900-01-01 00:00:00',1,0,1),(15935,'28930','Loudonville','LOUDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:31','1900-01-01 00:00:00',1,0,1),(15936,'41403','Loue','LOUE',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15937,'4373','Loué','LOUÉ',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15938,'8483','Loughborough','LOUGHBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15939,'10869','Loughrea','LOUGHREA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15940,'40923','Loughrea, Co.galway','LOUGHREA, CO.GALWAY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15941,'5470','Louhans','LOUHANS',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15942,'43203','Louis Trichard','LOUIS TRICHARD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15943,'33680','Louisa','LOUISA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15944,'25726','Louisbourg','LOUISBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15945,'33924','Louisburg','LOUISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15946,'24718','Louise Marie','LOUISE MARIE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15947,'27702','Louisiana','LOUISIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15948,'27877','Louisville','LOUISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15949,'6346','Loulay','LOULAY',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15950,'15931','Loule','LOULE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15951,'9532','Lourdata','LOURDATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15952,'6108','Lourdes','LOURDES',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15953,'36256','Lourdes-eaux-bonnes','LOURDES-EAUX-BONNES',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15954,'44125','Loures','LOURES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15955,'6477','Lourmarin','LOURMARIN',NULL,'','France','',0,0,76,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15956,'15904','Lousa','LOUSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15957,'39428','Lousada','LOUSADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15958,'43707','Louth','LOUTH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15959,'7190','Louth','LOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15960,'9688','Loutra Killinis','LOUTRA KILLINIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15961,'9396','Loutraki','LOUTRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15962,'24638','Louvain','LOUVAIN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15963,'42245','Louvain-la-neuve','LOUVAIN-LA-NEUVE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15964,'4743','Louveciennes','LOUVECIENNES',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15965,'5818','Louviers','LOUVIERS',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15966,'4375','Louvre - Theatre District (1 And 2)','LOUVRE - THEATRE DISTRICT (1 AND 2)',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15967,'4744','Louvres','LOUVRES',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15968,'42249','Lovech','LOVECH',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15969,'34229','Lovedale','LOVEDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15970,'33484','Loveland','LOVELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15971,'32113','Lovell','LOVELL',NULL,'','United States','',0,0,231,'2016-10-17 11:15:40','1900-01-01 00:00:00',1,0,1),(15972,'32831','Lovelock','LOVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:40','1900-01-01 00:00:00',1,0,1),(15973,'20633','Loves Park','LOVES PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15974,'31151','Lovettsville','LOVETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15975,'3980','Loviisa','LOVIISA',NULL,'','Finland','',0,0,75,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15976,'41625','Lovina','LOVINA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15977,'31152','Lovingston','LOVINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15978,'28545','Lovington','LOVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15979,'10018','Loviste','LOVISTE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15980,'16796','Lovon','LOVON',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15981,'10019','Lovran','LOVRAN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15982,'22589','Lowenstein','LOWENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:43','1900-01-01 00:00:00',1,0,1),(15983,'8484','Lower Beeding','LOWER BEEDING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:43','1900-01-01 00:00:00',1,0,1),(15984,'16625','Lower Carniola','LOWER CARNIOLA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15985,'15213','Lower Hutt','LOWER HUTT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15986,'25727','Lower Sackville','LOWER SACKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15987,'8486','Lowestoft','LOWESTOFT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15988,'8487','Lowick','LOWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15989,'17137','Lowlands','LOWLANDS',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15990,'28931','Lowville','LOWVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15991,'17912','Loxley','LOXLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15992,'26809','Loxton','LOXTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15993,'36325','Loxton','LOXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15994,'4376','Lozere','LOZERE',NULL,'','France','',0,0,76,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15995,'37283','Lozovac','LOZOVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15996,'3092','Luanco','LUANCO',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15997,'25852','Luanda','LUANDA',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15998,'13540','Luang Namtha','LUANG NAMTHA',NULL,'','Laos','',0,0,118,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15999,'15631','Luban','LUBAN',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(16000,'25851','Lubango','LUBANGO',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16001,'1941','Lubars','LUBARS',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16002,'42179','Lubbenau','LUBBENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16003,'30771','Lubbock','LUBBOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16004,'723','Lubeck','LUBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16005,'4377','Luberon','LUBERON',NULL,'','France','',0,0,76,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16006,'15714','Lublin','LUBLIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16007,'15616','Lubliniec','LUBLINIEC',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16008,'24025','Lubumbashi','LUBUMBASHI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16009,'15591','Lubusz','LUBUSZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16010,'10845','Lucan','LUCAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16011,'35559','Lucardo','LUCARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16012,'33684','Lucas','LUCAS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16013,'39515','Lucas Do Rio Verde','LUCAS DO RIO VERDE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16014,'24871','Lucaya','LUCAYA',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16015,'4745','Lucciana','LUCCIANA',NULL,'','France','',0,0,76,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16016,'5409','Luce','LUCE',NULL,'','France','',0,0,76,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16017,'40357','Lucea','LUCEA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16018,'27878','Lucedale','LUCEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16019,'3258','Lucena','LUCENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16020,'42836','Lucenec','LUCENEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16021,'12059','Lucera','LUCERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16022,'23273','Lucerne','LUCERNE',NULL,'','Switzerland','Lucerne',0,0,210,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16023,'3093','Luces','LUCES',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16024,'17398','Luchou','LUCHOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16025,'12060','Lucignano','LUCIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16026,'12061','Lucino','LUCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16027,'787','Luckenwalde','LUCKENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16028,'10682','Lucknow','LUCKNOW',NULL,'','India','Lucknow',6,0,101,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16029,'4379','Luçon','LUÇON',NULL,'','France','',0,0,76,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16030,'5410','Luc-sur-mer','LUC-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16031,'14413','Luderitz','LUDERITZ',NULL,'','Namibia','',0,0,151,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16032,'27251','Lüdersburg','LÜDERSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16033,'10553','Ludhiana','LUDHIANA',NULL,'','India','Ludhiana',19,0,101,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16034,'22147','Ludington','LUDINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:52','1900-01-01 00:00:00',1,0,1),(16035,'31345','Ludlow','LUDLOW',NULL,'','United States','',0,0,231,'2016-10-17 11:15:52','1900-01-01 00:00:00',1,0,1),(16036,'8488','Ludlow','LUDLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:53','1900-01-01 00:00:00',1,0,1),(16037,'6043','Ludres','LUDRES',NULL,'','France','',0,0,76,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16038,'16742','Ludvika','LUDVIKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16039,'788','Ludwigsburg','LUDWIGSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16040,'789','Ludwigsfelde','LUDWIGSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16041,'22590','Ludwigshafen','LUDWIGSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16042,'27252','Ludwigslust','LUDWIGSLUST',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16043,'1697','Luebeck','LUEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16044,'70','Luedenscheid','LUEDENSCHEID',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16045,'25854','Luena','LUENA',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16046,'43338','Lueneburg','LUENEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16047,'42449','Luenen','LUENEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16048,'71','Luetjenburg','LUETJENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16049,'30772','Lufkin','LUFKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16050,'12946','Lugagnano','LUGAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16051,'36825','Lugang','LUGANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16052,'17508','Lugansk','LUGANSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16053,'42293','Luganville','LUGANVILLE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16054,'5212','Luglon','LUGLON',NULL,'','France','',0,0,76,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16055,'12062','Lugo','LUGO',NULL,'','Italy','Lugo',0,0,107,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16056,'3559','Lugo','LUGO',NULL,'','Spain','Lugo',0,0,199,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16057,'30366','Lugoff','LUGOFF',NULL,'','United States','',0,0,231,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16058,'36627','Lugoj','LUGOJ',NULL,'','Romania','',0,0,179,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16059,'3094','Lugones','LUGONES',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16060,'23892','Lugouqiao','LUGOUQIAO',NULL,'','China','',0,0,46,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16061,'42176','Lugrin','LUGRIN',NULL,'','France','',0,0,76,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16062,'39401','Luhme','LUHME',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16063,'12063','Luino','LUINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16064,'39080','Lujan','LUJAN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16065,'23686','Lujiang','LUJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16066,'39189','Lujiazui','LUJIAZUI',NULL,'','China','',0,0,46,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16067,'17399','Lukang','LUKANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16068,'21737','Luke','LUKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16069,'18160','Lukeville','LUKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16070,'15055','Lukla','LUKLA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16071,'15662','Lukta','LUKTA',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16072,'27879','Lula','LULA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16073,'16755','Lulea','LULEA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16074,'21225','Luling','LULING',NULL,'','United States','',0,0,231,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16075,'23275','Lully','LULLY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16076,'7191','Lulworth','LULWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16077,'10020','Lumbarda','LUMBARDA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16078,'33925','Lumberton','LUMBERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16079,'30034','Lumberville','LUMBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:01','1900-01-01 00:00:00',1,0,1),(16080,'15039','Lumbini','LUMBINI',NULL,'','Nepal','',0,0,153,'2016-10-17 11:16:01','1900-01-01 00:00:00',1,0,1),(16081,'39896','Lumbini Area','LUMBINI AREA',NULL,'','India','',0,0,101,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16082,'6181','Lumbres','LUMBRES',NULL,'','France','',0,0,76,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16083,'38330','Lumio','LUMIO',NULL,'','France','',0,0,76,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16084,'24685','Lummen','LUMMEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16085,'31544','Lummi Island','LUMMI ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16086,'14368','Lumut','LUMUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16087,'40504','Lun','LUN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16088,'22149','Luna Pier','LUNA PIER',NULL,'','United States','',0,0,231,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16089,'12064','Lunamatrona','LUNAMATRONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16090,'43724','Lunawanna','LUNAWANNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16091,'16679','Lund','LUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16092,'1672','Lund','LUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16093,'8489','Lundin Links','LUNDIN LINKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16094,'27253','Luneburg','LUNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16095,'2025','Lüneburg','LÜNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16096,'5936','Lunel','LUNEL',NULL,'','France','',0,0,76,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16097,'532','Lunen','LUNEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16098,'25728','Lunenburg','LUNENBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16099,'6044','Luneville','LUNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16100,'27003','Lungau','LUNGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16101,'23276','Lungern','LUNGERN',NULL,'','Switzerland','Lungern',0,0,210,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16102,'40863','Luni','LUNI',NULL,'','India','',0,0,101,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16103,'41426','Lunion','LUNION',NULL,'','France','',0,0,76,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16104,'6109','L\'union','L\'UNION',NULL,'','France','',0,0,76,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16105,'10242','Lunyuk','LUNYUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16106,'1890','Lunzenau','LUNZENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16107,'17400','Luodong','LUODONG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16108,'34883','Luogang Economic Zon','LUOGANG ECONOMIC ZON',NULL,'','China','',0,0,46,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16109,'12065','Luogo Santo','LUOGO SANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16110,'43826','Luohe','LUOHE',NULL,'','China','',0,0,46,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16111,'23969','Luohu','LUOHU',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16112,'34884','Luoping','LUOPING',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16113,'4042','Luosto','LUOSTO',NULL,'','Finland','',0,0,75,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16114,'23773','Luoyang','LUOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16115,'15757','Luquillo','LUQUILLO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16116,'12066','Luras','LURAS',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16117,'31153','Luray','LURAY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16118,'5055','Lure','LURE',NULL,'','France','',0,0,76,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16119,'15411','Lurigancho','LURIGANCHO',NULL,'','Peru','',0,0,172,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16120,'32641','Lusaka','LUSAKA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16121,'17401','Lushan','LUSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16122,'23732','Lushan','LUSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16123,'6347','Lusignan','LUSIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16124,'32474','Lusikisiki','LUSIKISIKI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16125,'32114','Lusk','LUSK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16126,'10846','Lusk','LUSK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16127,'15777','Luso','LUSO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16128,'8490','Luss','LUSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16129,'8491','Lustleigh','LUSTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16130,'38138','Lutana','LUTANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16131,'40719','Luterbach','LUTERBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16132,'21738','Lutherville','LUTHERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16133,'1710','Lütjenburg','LÜTJENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16134,'8492','Luton','LUTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16135,'23277','Lutry','LUTRY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16136,'25773','Lutselke Snowdrift','LUTSELKE SNOWDRIFT',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16137,'27430','Lutsen','LUTSEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16138,'17495','Lutsk','LUTSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16139,'6772','Lutterbach','LUTTERBACH',NULL,'','France','',0,0,76,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16140,'8493','Lutterworth','LUTTERWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16141,'19464','Lutz','LUTZ',NULL,'','United States','',0,0,231,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16142,'27064','Lutzmannsburg','LUTZMANNSBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16143,'40466','Luumaki','LUUMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16144,'17913','Luverne','LUVERNE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:11','1900-01-01 00:00:00',1,0,1),(16145,'23608','Luwan - Xintiandi','LUWAN - XINTIANDI',NULL,'','China','',0,0,46,'2016-10-17 11:16:11','1900-01-01 00:00:00',1,0,1),(16146,'10363','Luwuk','LUWUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16147,'37238','Lux','LUX',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16148,'24590','Luxembourg','LUXEMBOURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16149,'13660','Luxembourg','LUXEMBOURG',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16150,'36381','Luxembourg-canach','LUXEMBOURG-CANACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16151,'5056','Luxeuil-les-bains','LUXEUIL-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16152,'23687','Luxi','LUXI',NULL,'','China','',0,0,46,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16153,'2411','Luxor','LUXOR',NULL,'','Egypt','Luxor ',0,0,65,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16154,'17402','Luye','LUYE',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16155,'3460','Luyego','LUYEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16156,'5657','Luynes','LUYNES',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16157,'23745','Luyuan','LUYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16158,'41396','Luz Saint-sauveur','LUZ SAINT-SAUVEUR',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16159,'39454','Luzarches','LUZARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16160,'23057','Luzerner Alps','LUZERNER ALPS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16161,'23995','Luzhou','LUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16162,'15451','Luzon','LUZON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16163,'5033','Luz-saint-sauveur','LUZ-SAINT-SAUVEUR',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16164,'17518','Lviv','LVIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16165,'17482','L\'viv','L\'VIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16166,'36837','Lvov','LVOV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16167,'17496','Lwo','LWO',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16168,'39863','Lwowek Slaski','LWOWEK SLASKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16169,'8494','Lybster','LYBSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16170,'16797','Lycksele','LYCKSELE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16171,'8495','Lydd','LYDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16172,'8496','Lydford','LYDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16173,'8497','Lydney','LYDNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16174,'30367','Lyman','LYMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:15','1900-01-01 00:00:00',1,0,1),(16175,'8499','Lymington','LYMINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:15','1900-01-01 00:00:00',1,0,1),(16176,'8500','Lymm','LYMM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16177,'28932','Lynbrook','LYNBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16178,'31155','Lynchburg','LYNCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16179,'31545','Lynden','LYNDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:17','1900-01-01 00:00:00',1,0,1),(16180,'31157','Lyndhurst','LYNDHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:16:17','1900-01-01 00:00:00',1,0,1),(16181,'8501','Lyndhurst','LYNDHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16182,'40746','Lyndoch','LYNDOCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16183,'31347','Lyndonville','LYNDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16184,'26634','Lyneham','LYNEHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16185,'37489','Lyngdal','LYNGDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16186,'8502','Lynmouth','LYNMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16187,'21421','Lynn','LYNN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16188,'25610','Lynn Lake','LYNN LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:20','1900-01-01 00:00:00',1,0,1),(16189,'21422','Lynnfield','LYNNFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:20','1900-01-01 00:00:00',1,0,1),(16190,'31158','Lynnhaven','LYNNHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16191,'31546','Lynnwood','LYNNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16192,'8503','Lynton','LYNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16193,'18643','Lynwood','LYNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:22','1900-01-01 00:00:00',1,0,1),(16194,'33486','Lyons','LYONS',NULL,'','United States','',0,0,231,'2016-10-17 11:16:22','1900-01-01 00:00:00',1,0,1),(16195,'5819','Lyons-la-foret','LYONS-LA-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16196,'43534','Lyon-villeurbanne','LYON-VILLEURBANNE',NULL,'','France','',0,0,76,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16197,'14851','Lysaker','LYSAKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16198,'7192','Lytham St Annes','LYTHAM ST ANNES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16199,'16369','Lytkarino','LYTKARINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16200,'30775','Lytle','LYTLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16201,'15125','Lyttelton','LYTTELTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16202,'43625','Lyttleton','LYTTLETON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16203,'16395','Lyubertsy','LYUBERTSY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16204,'16409','Lyublino','LYUBLINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16205,'25841','M Banza Congo','M BANZA CONGO',NULL,'','Angola','',0,0,6,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16206,'39258','Maagan','MAAGAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16207,'20068','Maalaea','MAALAEA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16208,'42901','Maale Hahamisha','MAALE HAHAMISHA',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16209,'11046','Maalot','MAALOT',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16210,'41462','Ma\'alot Moriya','MA\'ALOT MORIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16211,'1083','Maaloula','MAALOULA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16212,'36718','Maalula','MAALULA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16213,'10774','Maam Cross','MAAM CROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16214,'38857','Maanshan','MAANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16215,'38205','Maarsbergen','MAARSBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16216,'14684','Maarssen','MAARSSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16217,'24686','Maaseik','MAASEIK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16218,'24591','Maasland - Voerstreek','MAASLAND - VOERSTREEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16219,'14574','Maastricht','MAASTRICHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16220,'40369','Mabank','MABANK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16221,'39656','Mabibi','MABIBI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16222,'32576','Mabiligwe','MABILIGWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16223,'42944','Mabini','MABINI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16224,'19863','Mableton','MABLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16225,'44074','Mably','MABLY',NULL,'','France','',0,0,76,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16226,'26257','Mabuiag Island','MABUIAG ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16227,'32475','Mabula','MABULA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16228,'25135','Macae','MACAE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16229,'2687','Macanet De Cabrenys','MACANET DE CABRENYS',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16230,'25025','Macapa','MACAPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16231,'2406','Macas','MACAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16232,'22150','Macatawa','MACATAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16233,'13674','Macau','MACAU',NULL,'','Macau','Macau',0,0,128,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16234,'41835','Maccagno','MACCAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16235,'39213','Macchiagodena','MACCHIAGODENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16236,'19466','Macclenny','MACCLENNY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16237,'8504','Macclesfield','MACCLESFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16238,'8505','Macduff','MACDUFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16239,'15890','Macedo De Cavaleiros','MACEDO DE CAVALEIROS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16240,'43636','Macedon','MACEDON',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16241,'29409','Macedonia','MACEDONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16242,'25022','Maceio','MACEIO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16243,'41655','Maceira','MACEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16244,'12792','Macerata','MACERATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16245,'12067','Macerino','MACERINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16246,'2394','Machala','MACHALA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16247,'24639','Machelen','MACHELEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16248,'20635','Machesney Park','MACHESNEY PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16249,'15955','Machico','MACHICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16250,'13287','Machida','MACHIDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16251,'8506','Machynlleth','MACHYNLLETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16252,'15677','Macierzysz','MACIERZYSZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16253,'4746','Macinaggio','MACINAGGIO',NULL,'','France','',0,0,76,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16254,'37438','Macka','MACKA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16255,'26718','Mackay','MACKAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16256,'25474','Mackenzie','MACKENZIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16257,'22151','Mackinac Island','MACKINAC ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16258,'22152','Mackinaw City','MACKINAW CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16259,'34230','Macksville','MACKSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16260,'32476','Macleantown','MACLEANTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16261,'26258','Macleod','MACLEOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16262,'22153','Macomb','MACOMB',NULL,'','United States','',0,0,231,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16263,'12068','Macomer','MACOMER',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:34','1900-01-01 00:00:00',1,0,1),(16264,'19864','Macon','MACON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:34','1900-01-01 00:00:00',1,0,1),(16265,'4381','Macon-sennece','MACON-SENNECE',NULL,'','France','',0,0,76,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16266,'5069','Macot Le Plagne','MACOT LE PLAGNE',NULL,'','France','',0,0,76,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16267,'41514','Macreddin Village','MACREDDIN VILLAGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16268,'10963','Macroom','MACROOM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16269,'34552','Mactier','MACTIER',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16270,'38090','Macugnaga','MACUGNAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16271,'30035','Macungie','MACUNGIE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16272,'42191','Macuto','MACUTO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16273,'13109','Madaba','MADABA',NULL,'','Jordan','Madaba',0,0,111,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16274,'43113','Madalena','MADALENA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16275,'15575','Madang','MADANG',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16277,'38998','Madara','MADARA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16278,'39643','Maddaloni','MADDALONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16279,'14601','Made','MADE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16280,'29411','Madeira','MADEIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16281,'37136','Madeira','MADEIRA',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16282,'25475','Madeira Park','MADEIRA PARK',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16283,'36565','Madeira-calheta','MADEIRA-CALHETA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16284,'36567','Madeira-canico','MADEIRA-CANICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16285,'36569','Madeira-eira Do Serr','MADEIRA-EIRA DO SERR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16286,'36570','Madeira-funchal','MADEIRA-FUNCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16287,'36573','Madeira-garajau','MADEIRA-GARAJAU',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16288,'36575','Madeira-machico','MADEIRA-MACHICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16289,'36605','Madeira-porto Moniz','MADEIRA-PORTO MONIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16290,'36590','Madeira-ribeira Brav','MADEIRA-RIBEIRA BRAV',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16291,'36591','Madeira-sao Vicente','MADEIRA-SAO VICENTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16292,'7193','Madeley','MADELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16293,'27433','Madelia','MADELIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16294,'12069','Madesimo','MADESIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16295,'10554','Madgaon','MADGAON',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16296,'43850','Madhapur','MADHAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16297,'10555','Madhyamgram','MADHYAMGRAM',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16298,'40478','Madikeri','MADIKERI',NULL,'','India','Madikeri',17,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16299,'32577','Madikwe','MADIKWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16300,'37943','Madill','MADILL',NULL,'','United States','',0,0,231,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16301,'36656','Madina','MADINA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16302,'42631','Madinat Makadi','MADINAT MAKADI',NULL,'','Egypt','',0,0,65,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16303,'32732','Madison','MADISON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:41','1900-01-01 00:00:00',1,0,1),(16304,'30776','Madisonville','MADISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:45','1900-01-01 00:00:00',1,0,1),(16305,'23278','Madiswil','MADISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16306,'10301','Madiun','MADIUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16307,'38732','Madivaru','MADIVARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16308,'38411','Madonna Dellacqua','MADONNA DELLACQUA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16309,'44257','Madoogali','MADOOGALI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16310,'6478','Madrague De La Ville','MADRAGUE DE LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16311,'29700','Madras','MADRAS',NULL,'','United States','',0,0,231,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16312,'16005','Madre De Deus','MADRE DE DEUS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16313,'37891','Madremanya','MADREMANYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16314,'3000','Madrid','MADRID',NULL,'','Spain','Madrid',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16315,'40752','Madrona','MADRONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16316,'3642','Madronera','MADRONERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16317,'40864','Madumalai','MADUMALAI',NULL,'','India','',0,0,101,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16318,'26259','Madura','MADURA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16319,'10674','Madurai','MADURAI',NULL,'','India','Madurai',18,0,101,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16320,'13386','Maebashi','MAEBASHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16321,'8507','Maentwrog','MAENTWROG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16322,'40679','Maesycwmmer','MAESYCWMMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16323,'32319','Maewo','MAEWO',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16324,'20637','Maeystown','MAEYSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16325,'13628','Mafeteng','MAFETENG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16326,'4747','Maffliers','MAFFLIERS',NULL,'','France','',0,0,76,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16327,'37913','Maffrecourt','MAFFRECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16328,'17451','Mafia Island','MAFIA ISLAND',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16329,'32477','Mafikeng','MAFIKENG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16330,'44126','Mafra','MAFRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16331,'16362','Magadan','MAGADAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16332,'5937','Magalas','MAGALAS',NULL,'','France','',0,0,76,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16333,'32408','Magaliesberg','MAGALIESBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16334,'41611','Magaliesburg','MAGALIESBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16335,'15453','Magallanes Village','MAGALLANES VILLAGE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16336,'2907','Magalluf','MAGALLUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16337,'43493','Magaluf','MAGALUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16338,'2689','Magaz De Pisuerga','MAGAZ DE PISUERGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16339,'26077','Magdalena','MAGDALENA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16340,'28546','Magdalena','MAGDALENA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16341,'13952','Magdalena','MAGDALENA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16342,'15378','Magdalena Del Mar','MAGDALENA DEL MAR',NULL,'','Peru','',0,0,172,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16343,'2091','Magdeburg','MAGDEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16344,'27882','Magee','MAGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16345,'10296','Magelang','MAGELANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16346,'42131','Magenta','MAGENTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16347,'12071','Magenta','MAGENTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16348,'5213','Magescq','MAGESCQ',NULL,'','France','',0,0,76,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16349,'33927','Maggie Valley','MAGGIE VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16350,'23279','Magglingen','MAGGLINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16351,'36327','Maghera','MAGHERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16352,'12072','Magione','MAGIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16353,'12073','Magliana','MAGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16354,'12074','Magliano In Toscana','MAGLIANO IN TOSCANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16355,'12075','Maglie','MAGLIE',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16356,'33357','Magna','MAGNA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16357,'38686','Magnac Laval','MAGNAC LAVAL',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16358,'6110','Magnan','MAGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16359,'5103','Magnanville','MAGNANVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16360,'9689','Magnesia','MAGNESIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16361,'26260','Magnetic Island','MAGNETIC ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16362,'41394','Magnicourt-en-comte','MAGNICOURT-EN-COMTE',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16363,'20638','Magnificent Mile','MAGNIFICENT MILE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16364,'16314','Magnitogorsk','MAGNITOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16365,'18046','Magnolia','MAGNOLIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16366,'5471','Magny','MAGNY',NULL,'','France','',0,0,76,'2016-10-17 11:16:57','1900-01-01 00:00:00',1,0,1),(16367,'5472','Magny-cours','MAGNY-COURS',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16368,'5100','Magny-le-hongre','MAGNY-LE-HONGRE',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16369,'4748','Magny-les-hameaux','MAGNY-LES-HAMEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16370,'22783','Magog','MAGOG',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16371,'38153','Magoito','MAGOITO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16372,'42303','Magong','MAGONG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16373,'8508','Magor','MAGOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16374,'23609','Maguanying','MAGUANYING',NULL,'','China','',0,0,46,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16375,'37169','Mahabaleshwar','MAHABALESHWAR',NULL,'','India','Mahabaleshwar',5,0,101,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16376,'1766','Mahabalipuram','MAHABALIPURAM',NULL,'','India','Mahabalipuram',18,0,101,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16377,'16162','Mahaena','MAHAENA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16378,'41886','Mahajanga','MAHAJANGA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16379,'37330','Mahanoro','MAHANORO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16380,'30036','Mahanoy City','MAHANOY CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16381,'16120','Maharepa','MAHAREPA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16382,'38054','Mahdar Bin Usayyan','MAHDAR BIN USAYYAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16383,'17164','Mahdia','MAHDIA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16384,'41618','Mahe','MAHE',NULL,'','Seychelles','Mahe',0,0,188,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16385,'14265','Mahebourg','MAHEBOURG',NULL,'','Mauritius','Mahebourg',0,0,139,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16386,'15056','Mahendranagar','MAHENDRANAGAR',NULL,'','Nepal','',0,0,153,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16387,'37878','Maheri','MAHERI',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16388,'39264','Maheshwar','MAHESHWAR',NULL,'','India','Maheshwar',15,0,101,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16389,'10432','Mahikpur','MAHIKPUR',NULL,'','India','',0,0,101,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16390,'790','Mahlow','MAHLOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16391,'791','Mahlsdorf','MAHLSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16392,'36628','Mahmudia','MAHMUDIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16393,'27435','Mahnomen','MAHNOMEN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16394,'25890','Maho Beach','MAHO BEACH',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16395,'2908','Mahon','MAHON',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16396,'25730','Mahone Bay','MAHONE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16397,'20069','Mahukona','MAHUKONA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16398,'28328','Mahwah','MAHWAH',NULL,'','United States','',0,0,231,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16399,'37462','Maia','MAIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16400,'13463','Maiana','MAIANA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16401,'7194','Maida Vale-st. John\'s Wood','MAIDA VALE-ST. JOHN\'S WOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16402,'1452','Maidenhead','MAIDENHEAD',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16403,'26261','Maidstone','MAIDSTONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16404,'8510','Maidstone','MAIDSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16405,'23280','Maienfeld','MAIENFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16406,'40347','Maierà','MAIERÀ',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16407,'20070','Maili','MAILI',NULL,'','United States','',0,0,231,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16408,'39081','Maillen','MAILLEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16409,'1019','Maine Coast - Me','MAINE COAST - ME',NULL,'','United States','',0,0,231,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16410,'4382','Maine-et-loire','MAINE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16411,'19469','Maingate East','MAINGATE EAST',NULL,'','United States','',0,0,231,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16412,'38142','Mainstream','MAINSTREAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16413,'451','Maintal','MAINTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16414,'38824','Maintenon','MAINTENON',NULL,'','France','',0,0,76,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16415,'38422','Maintirano','MAINTIRANO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16416,'642','Mainz','MAINZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16417,'43100','Mainz-kastel','MAINZ-KASTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16418,'24142','Maio','MAIO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16419,'12076','Maiori','MAIORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16420,'42026','Maipu','MAIPU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16421,'23546','Maipu','MAIPU',NULL,'','Chile','',0,0,45,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16422,'26048','Maipú','MAIPÚ',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16423,'32195','Maiquetia','MAIQUETIA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16424,'3259','Mairena Del Aljarafe','MAIRENA DEL ALJARAFE',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16425,'38099','Mairiporã','MAIRIPORÃ',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16426,'37636','Maishofen','MAISHOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16427,'39288','Maisod','MAISOD',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16428,'5859','Maisons-alfort','MAISONS-ALFORT',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16429,'4383','Maisons-laffitte','MAISONS-LAFFITTE',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16430,'4384','Maisons-lès-chaource','MAISONS-LÈS-CHAOURCE',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16431,'15127','Maitai Bay','MAITAI BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16432,'23523','Maitencillo','MAITENCILLO',NULL,'','Chile','',0,0,45,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16433,'19471','Maitland','MAITLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16434,'5739','Maizieres-la-grande-paroisse','MAIZIERES-LA-GRANDE-PAROISSE',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16435,'6045','Maizieres-les-metz','MAIZIERES-LES-METZ',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16436,'3001','Majadahonda','MAJADAHONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16437,'16603','Majcichov','MAJCICHOV',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16438,'14159','Majkin','MAJKIN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16439,'1033','Majorca','MAJORCA',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16440,'35007','Majorca-cala Blava','MAJORCA-CALA BLAVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16441,'3981','Majstad','MAJSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16442,'37597','Majunga','MAJUNGA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16443,'14143','Majuro','MAJURO',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16444,'24052','Makabana','MAKABANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16445,'20071','Makaha','MAKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16446,'20072','Makakilo City','MAKAKILO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16447,'24026','Makala','MAKALA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16448,'20073','Makalawena','MAKALAWENA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16449,'10358','Makale','MAKALE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16450,'3866','Makale','MAKALE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16451,'20640','Makanda','MAKANDA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16452,'20074','Makapala','MAKAPALA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16453,'10021','Makarska','MAKARSKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16454,'10359','Makassar','MAKASSAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16455,'15530','Makati','MAKATI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16456,'20075','Makawao','MAKAWAO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16457,'16121','Makemo','MAKEMO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16458,'20076','Makena','MAKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16459,'7195','Makeney','MAKENEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16460,'16319','Makhachkala','MAKHACHKALA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16461,'13464','Makin','MAKIN',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16462,'16472','Makino','MAKINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16463,'36655','Makkah','MAKKAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16464,'25665','Makkovik','MAKKOVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16465,'6850','Makokou','MAKOKOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16466,'24053','Makoua','MAKOUA',NULL,'','Congo','',0,0,51,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16467,'43063','Makrinitsa','MAKRINITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16468,'9691','Makriyialos','MAKRIYIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16469,'9761','Makryammos','MAKRYAMMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16470,'13288','Makuhari','MAKUHARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16471,'17403','Makung','MAKUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16472,'13748','Makunufushi','MAKUNUFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16473,'24239','Mal Pais','MAL PAIS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16474,'32409','Mala Mala','MALA MALA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16475,'15517','Malabang','MALABANG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16476,'37740','Malabar Hill','MALABAR HILL',NULL,'','India','',0,0,101,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16477,'9394','Malabo','MALABO',NULL,'','Equatorial Guinea','',0,0,67,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16478,'15531','Malabon','MALABON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16479,'14357','Malacca','MALACCA',NULL,'','Malaysia','Malacca',0,0,132,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16480,'3260','Malaga','MALAGA',NULL,'','Spain','Malaga',0,0,199,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16481,'35099','Malaga-torre Del Mar','MALAGA-TORRE DEL MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16482,'25476','Malahat','MALAHAT',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16483,'42286','Malakal','MALAKAL',NULL,'','Palau','',0,0,167,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16484,'16370','Malakhovka','MALAKHOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16485,'4749','Malakoff','MALAKOFF',NULL,'','France','',0,0,76,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16486,'30777','Malakoff','MALAKOFF',NULL,'','United States','',0,0,231,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16487,'12077','Malalbergo','MALALBERGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16488,'12893','Malamocco','MALAMOCCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16489,'38316','Malanda','MALANDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16490,'10302','Malang','MALANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16491,'25859','Malange','MALANGE',NULL,'','Angola','',0,0,6,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16492,'3','Malargue','MALARGUE',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16493,'16834','Malarhojden','MALARHOJDEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16494,'37806','Malataverne','MALATAVERNE',NULL,'','France','',0,0,76,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16495,'39646','Malatiny','MALATINY',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16496,'17332','Malatya','MALATYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16497,'15478','Malay','MALAY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16498,'4385','Malay Le Grand','MALAY LE GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16499,'16442','Malaya Okhta','MALAYA OKHTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16500,'44046','Malbork','MALBORK',NULL,'','Poland','',0,0,174,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16501,'13588','Malbun','MALBUN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16502,'12078','Malcesine','MALCESINE',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16503,'792','Malchow','MALCHOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16504,'21424','Malden','MALDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16505,'13749','Maldives','MALDIVES',NULL,'','Maldives','Maldives',34,0,133,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16506,'8511','Maldon','MALDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16507,'17533','Maldonado','MALDONADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16508,'13773','Male','MALE',NULL,'','Maldives','Male',0,0,133,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16509,'32578','Malelane','MALELANE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16510,'9692','Maleme','MALEME',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16511,'724','Malente','MALENTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16512,'38343','Maleny','MALENY',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16513,'12080','Malfa','MALFA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16514,'3560','Malgrat De Mar','MALGRAT DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16515,'10022','Mali Losinj','MALI LOSINJ',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16516,'3128','Maliano','MALIANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16517,'18645','Malibu','MALIBU',NULL,'','United States','',0,0,231,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16518,'39824','Malin','MALIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16519,'13441','Malindi','MALINDI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16520,'10023','Malinska','MALINSKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16521,'39283','Malito','MALITO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16522,'26519','Mallacoota','MALLACOOTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16523,'8512','Mallaig','MALLAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16524,'6479','Mallemort','MALLEMORT',NULL,'','France','',0,0,76,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16525,'2347','Malling','MALLING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16526,'27079','Mallnitz','MALLNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16527,'34985','Mallorca-alaro','MALLORCA-ALARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16528,'34982','Mallorca-alcudia','MALLORCA-ALCUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16529,'34986','Mallorca-andratx','MALLORCA-ANDRATX',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16530,'35017','Mallorca-cala Bona','MALLORCA-CALA BONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16531,'35009','Mallorca-calas De Ma','MALLORCA-CALAS DE MA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16532,'35027','Mallorca-can Pastill','MALLORCA-CAN PASTILL',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16533,'36116','Mallorca-estellencs','MALLORCA-ESTELLENCS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16534,'36132','Mallorca-illetas','MALLORCA-ILLETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16535,'36153','Mallorca-llucmajor','MALLORCA-LLUCMAJOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16536,'36161','Mallorca-magalluf','MALLORCA-MAGALLUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16537,'36169','Mallorca-manacor','MALLORCA-MANACOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16538,'36180','Mallorca-paguera','MALLORCA-PAGUERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16539,'36192','Mallorca-palma','MALLORCA-PALMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16540,'36189','Mallorca-playa De Pa','MALLORCA-PLAYA DE PA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16541,'36193','Mallorca-portals Nou','MALLORCA-PORTALS NOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16542,'36195','Mallorca-porto Crist','MALLORCA-PORTO CRIST',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16543,'35063','Mallorca-sa Coma','MALLORCA-SA COMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16544,'35079','Mallorca-santa Maria','MALLORCA-SANTA MARIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16545,'35072','Mallorca-s\'illot','MALLORCA-S\'ILLOT',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16546,'10811','Mallow','MALLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16547,'3982','Malm','MALM',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16548,'24676','Malmedy','MALMEDY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16549,'8513','Malmesbury','MALMESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16550,'16871','Malmo','MALMO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16551,'14160','Maloelap','MALOELAP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16552,'23281','Maloja','MALOJA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16553,'4061','Malolo Island','MALOLO ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16554,'36211','Malololailai','MALOLOLAILAI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16555,'28933','Malone','MALONE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16556,'14808','Maloy','MALOY',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16557,'36166','Malpartida D.plasenc','MALPARTIDA D.PLASENC',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16558,'8514','Malpas','MALPAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16559,'38225','Malpe','MALPE',NULL,'','India','',0,0,101,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16560,'1559','Malpensa','MALPENSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16561,'43208','Malpica De Bergantinos','MALPICA DE BERGANTINOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16562,'28934','Malta','MALTA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16563,'14186','Malta','MALTA',NULL,'','Malta','',0,0,135,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16564,'17239','Maltepe','MALTEPE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16565,'8515','Malton','MALTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16566,'34553','Malton','MALTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16567,'23905','Malu','MALU',NULL,'','China','',0,0,46,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16568,'42433','Maluku Islands','MALUKU ISLANDS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16569,'40146','Malung','MALUNG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16570,'42945','Malvar','MALVAR',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16571,'18047','Malvern','MALVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16572,'26520','Malvern','MALVERN',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16573,'32521','Malvern','MALVERN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16574,'14992','Malvik','MALVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16575,'36629','Mamaia','MAMAIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16576,'10675','Mamallapuram','MAMALLAPURAM',NULL,'','India','',0,0,101,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16577,'36508','Mamanuca Group','MAMANUCA GROUP',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16578,'4062','Mamanuca Islands','MAMANUCA ISLANDS',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16579,'28935','Mamaroneck','MAMARONECK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16580,'15522','Mamburao','MAMBURAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16581,'24015','Mamfe','MAMFE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16582,'13086','Mammee Bay','MAMMEE BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16583,'33687','Mammoth Cave National Park','MAMMOTH CAVE NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16584,'14397','Mamoudzou','MAMOUDZOU',NULL,'','Mayotte','',0,0,140,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16585,'10180','Mampang Prapatan','MAMPANG PRAPATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16586,'10360','Mamuju','MAMUJU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16587,'4063','Mana Island','MANA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16588,'10370','Manado','MANADO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16589,'14446','Managua','MANAGUA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16590,'28329','Manahawkin','MANAHAWKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16591,'39446','Manakara','MANAKARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16592,'19472','Manalapan','MANALAPAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16593,'10556','Manali','MANALI',NULL,'','India','Honeymoon Manali | Manali Holiday Packages | Trip ',1,0,101,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16594,'24821','Manama','MANAMA',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16595,'37699','Mananara','MANANARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16596,'15040','Manang','MANANG',NULL,'','Nepal','',0,0,153,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16597,'40607','Mananjary','MANANJARY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16598,'39911','Manapouri','MANAPOURI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16599,'12081','Manarola','MANAROLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16600,'28331','Manasquan','MANASQUAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:33','1900-01-01 00:00:00',1,0,1),(16601,'31160','Manassas','MANASSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:33','1900-01-01 00:00:00',1,0,1),(16602,'8516','Manaton','MANATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16603,'25030','Manaus','MANAUS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16604,'17189','Manavgat','MANAVGAT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16605,'39696','Manawa','MANAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16606,'37392','Mancelona','MANCELONA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16607,'33688','Manchester','MANCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:17:35','1900-01-01 00:00:00',1,0,1),(16608,'8517','Manchester','MANCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:36','1900-01-01 00:00:00',1,0,1),(16609,'252','Manching','MANCHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16610,'12082','Manciano','MANCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16611,'33487','Mancos','MANCOS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16612,'38253','Mandabe','MANDABE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16613,'14776','Mandal','MANDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16614,'36392','Mandalay','MANDALAY',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16615,'34233','Mandalong','MANDALONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16616,'15532','Mandaluyong','MANDALUYONG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16617,'28071','Mandan','MANDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16619,'38460','Mandawa','MANDAWA',NULL,'','India','Mandawa',2,0,101,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16620,'42338','Mandela','MANDELA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16621,'4846','Mandelieu-la-napoule','MANDELIEU-LA-NAPOULE',NULL,'','France','',0,0,76,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16622,'24677','Manderfeld','MANDERFELD',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16623,'13082','Mandeville','MANDEVILLE',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16624,'21226','Mandeville','MANDEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16625,'40608','Mandjala','MANDJALA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16626,'37940','Mandraki','MANDRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16627,'38413','Mandritsara','MANDRITSARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16628,'40865','Mandu','MANDU',NULL,'','India','Mandu',15,0,101,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16629,'26598','Mandurah','MANDURAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16630,'38694','Manduria','MANDURIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16631,'11274','Manerba Del Garda','MANERBA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16632,'37640','Manerbio','MANERBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16633,'10557','Manesar','MANESAR',NULL,'','India','Manesar ',20,0,101,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16634,'12083','Manfredonia','MANFREDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16635,'24068','Mangaia','MANGAIA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16636,'42624','Mangalia','MANGALIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16637,'37161','Mangalore','MANGALORE',NULL,'','India','Mangalore',17,0,101,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16639,'25136','Mangaratiba','MANGARATIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16640,'16122','Mangareva','MANGAREVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16641,'15214','Mangatawhiri','MANGATAWHIRI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16642,'15215','Mangere','MANGERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16643,'10243','Manggis','MANGGIS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16644,'9892','Mangilao','MANGILAO',NULL,'','Guam','',0,0,90,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16645,'14278','Mangochi','MANGOCHI',NULL,'','Malawi','',0,0,131,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16646,'10244','Mangole','MANGOLE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16647,'37308','Mangonui','MANGONUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16648,'24881','Mangrove Cay','MANGROVE CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16649,'10245','Mangsit','MANGSIT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16650,'16084','Mangualde','MANGUALDE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16651,'43657','Manguri','MANGURI',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16652,'37493','Manguzi','MANGUZI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16653,'28937','Manhasset','MANHASSET',NULL,'','United States','',0,0,231,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16654,'28938','Manhattan','MANHATTAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:44','1900-01-01 00:00:00',1,0,1),(16655,'30038','Manheim','MANHEIM',NULL,'','United States','',0,0,231,'2016-10-17 11:17:45','1900-01-01 00:00:00',1,0,1),(16656,'6661','Manigod','MANIGOD',NULL,'','France','',0,0,76,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16657,'16123','Manihi','MANIHI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16658,'24069','Manihiki Island','MANIHIKI ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16659,'15553','Manila','MANILA',NULL,'','Philippines','Manila',0,0,173,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16660,'3261','Manilva','MANILVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16661,'26376','Maningrida','MANINGRIDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16662,'37166','Manipal','MANIPAL',NULL,'','INDIA','',17,0,101,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16663,'5820','Maniquerville','MANIQUERVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16664,'17334','Manisa','MANISA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16665,'3762','Manises','MANISES',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16666,'22155','Manistee','MANISTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16667,'22156','Manistique','MANISTIQUE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16668,'33488','Manitou Springs','MANITOU SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16669,'34554','Manitouwadge','MANITOUWADGE',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16670,'34555','Manitowaning','MANITOWANING',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16671,'31804','Manitowoc','MANITOWOC',NULL,'','United States','',0,0,231,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16672,'37751','Maniwaki','MANIWAKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16673,'24101','Manizales','MANIZALES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16674,'38929','Manja','MANJA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16675,'26599','Manjimup','MANJIMUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16676,'17404','Manjou','MANJOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16677,'21091','Mankato','MANKATO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16678,'17694','Manley Hot Springs','MANLEY HOT SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16679,'3561','Manlleu','MANLLEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16680,'34234','Manly','MANLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16681,'39317','Manneville-la-raoult','MANNEVILLE-LA-RAOULT',NULL,'','France','',0,0,76,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16682,'22591','Mannheim','MANNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16683,'30368','Manning','MANNING',NULL,'','United States','',0,0,231,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16684,'43666','Mannum','MANNUM',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16685,'12084','Manocalzati','MANOCALZATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16686,'17695','Manokotak','MANOKOTAK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16687,'10312','Manokwari','MANOKWARI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16688,'43725','Manoora','MANOORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16689,'6480','Manosque','MANOSQUE',NULL,'','France','',0,0,76,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16690,'2938','Manresa','MANRESA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16691,'32651','Mansa','MANSA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16692,'1667','Mansehra','MANSEHRA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16693,'30779','Mansfield','MANSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:17:53','1900-01-01 00:00:00',1,0,1),(16694,'26913','Mansfield','MANSFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:53','1900-01-01 00:00:00',1,0,1),(16695,'8518','Mansfield','MANSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:54','1900-01-01 00:00:00',1,0,1),(16696,'31547','Manson','MANSON',NULL,'','United States','',0,0,231,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16697,'22785','Mansonville','MANSONVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16698,'8519','Manston','MANSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16699,'2403','Manta','MANTA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16700,'41914','Manta Rota','MANTA ROTA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16701,'18650','Manteca','MANTECA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16702,'15969','Manteigas','MANTEIGAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16703,'11275','Mantello','MANTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16704,'20641','Manteno','MANTENO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16705,'33928','Manteo','MANTEO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16706,'4750','Mantes-la-jolie','MANTES-LA-JOLIE',NULL,'','France','',0,0,76,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16707,'33358','Manti','MANTI',NULL,'','United States','',0,0,231,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16708,'12085','Mantova','MANTOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16709,'5779','Mantry','MANTRY',NULL,'','France','',0,0,76,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16710,'43130','Mantua','MANTUA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16711,'3939','Mantyharju','MANTYHARJU',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16712,'24176','Manuel Antonio','MANUEL ANTONIO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16713,'43726','Manunda','MANUNDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16714,'40866','Manvar','MANVAR',NULL,'','India','',0,0,101,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16715,'40594','Manvel','MANVEL',NULL,'','United States','',0,0,231,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16716,'21228','Many','MANY',NULL,'','United States','',0,0,231,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16717,'41612','Manyeleti Game Reserve','MANYELETI GAME RESERVE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16718,'3413','Manzanares','MANZANARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16719,'11277','Manzania','MANZANIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16720,'32205','Manzanillo','MANZANILLO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16721,'13968','Manzanillo','MANZANILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16722,'29702','Manzanita','MANZANITA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16723,'37835','Manziana','MANZIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16724,'16910','Manzini','MANZINI',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16725,'2474','Maó','MAÓ',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16726,'23970','Maoming','MAOMING',NULL,'','China','',0,0,46,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16727,'34885','Maoxian','MAOXIAN',NULL,'','China','',0,0,46,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16728,'22157','Maple City','MAPLE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16729,'22949','Maple Creek','MAPLE CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16730,'39406','Mapleton','MAPLETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:02','1900-01-01 00:00:00',1,0,1),(16731,'30040','Mapleton','MAPLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:03','1900-01-01 00:00:00',1,0,1),(16732,'27440','Maplewood','MAPLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:03','1900-01-01 00:00:00',1,0,1),(16733,'13500','Mapo-dong','MAPO-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16734,'11278','Mappano','MAPPANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16735,'39127','Mapua','MAPUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16736,'10434','Mapusa','MAPUSA',NULL,'','India','Mapusa',11,0,101,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16737,'14221','Maputo','MAPUTO',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16738,'20240','Maquoketa','MAQUOKETA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16739,'25103','Maraba','MARABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16740,'32215','Maracaibo','MARACAIBO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16741,'32185','Maracay','MARACAY',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16742,'35955','Maragogi','MARAGOGI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16743,'25023','Maragoji','MARAGOJI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16744,'43025','Marahau','MARAHAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16745,'4387','Marais','MARAIS',NULL,'','France','',0,0,76,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16746,'32579','Maraisburg','MARAISBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16747,'13465','Marakei','MARAKEI',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16748,'41613','Marakele National Park','MARAKELE NATIONAL PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16749,'18161','Marana','MARANA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16750,'42916','Marananga','MARANANGA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16751,'12086','Maranello','MARANELLO',NULL,'','Italy','Maranello',0,0,107,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16752,'42843','Marang','MARANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16753,'6348','Marans','MARANS',NULL,'','France','',0,0,76,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16754,'1636','Marao','MARAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16755,'40867','Mararikulam','MARARIKULAM',NULL,'','India','',0,0,101,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16756,'12087','Maratea','MARATEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16757,'39389','Marathokampos','MARATHOKAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16758,'30780','Marathon','MARATHON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16759,'35263','Marathon','MARATHON',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16760,'34556','Marathon','MARATHON',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16761,'35266','Marathonas','MARATHONAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16762,'35954','Marau','MARAU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16763,'16550','Marau','MARAU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16764,'17130','Maraval','MARAVAL',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16765,'15554','Marawi','MARAWI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16766,'35847','Marawila','MARAWILA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16767,'8520','Marazion','MARAZION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16768,'3262','Marbella','MARBELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16769,'24218','Marbella','MARBELLA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16770,'26600','Marble Bar','MARBLE BAR',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:09','1900-01-01 00:00:00',1,0,1),(16771,'21427','Marblehead','MARBLEHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16772,'32116','Marbleton','MARBLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16773,'73','Marburg','MARBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16774,'27707','Marceline','MARCELINE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16775,'37589','Marcenay','MARCENAY',NULL,'','France','',0,0,76,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16776,'4388','Marcey-les-grèves','MARCEY-LES-GRÈVES',NULL,'','France','',0,0,76,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16777,'5780','Marchaux','MARCHAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16778,'40970','Marche','MARCHE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16779,'38597','Marchula','MARCHULA',NULL,'','India','',0,0,101,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16780,'8521','Marchwiel','MARCHWIEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16781,'4922','Marciac','MARCIAC',NULL,'','France','',0,0,76,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16782,'11280','Marciaga','MARCIAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16783,'12088','Marcialla','MARCIALLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16784,'12089','Marciana','MARCIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16785,'12091','Marcianise','MARCIANISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16786,'37441','Marcilla','MARCILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16787,'15641','Marcinowice','MARCINOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16788,'19474','Marco Island','MARCO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16789,'12894','Marcon','MARCON',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16790,'42230','Marcoola','MARCOOLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16791,'4751','Marcoussis','MARCOUSSIS',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16792,'6182','Marcq-en-baroeul','MARCQ-EN-BAROEUL',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16793,'4389','Marcy L Etoile','MARCY L ETOILE',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16794,'17335','Mardin','MARDIN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16795,'14424','Mare','MARE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16796,'32351','Mareb','MAREB',NULL,'','Yemen','',0,0,240,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16797,'11281','Marebbe','MAREBBE',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16798,'42002','Marebello Di Rimini','MAREBELLO DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16799,'42761','Marechal Deodoro','MARECHAL DEODORO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16800,'26418','Mareeba','MAREEBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16801,'20241','Marengo','MARENGO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16802,'6349','Marennes (Poitou-charentes)','MARENNES (POITOU-CHARENTES)',NULL,'','France','',0,0,76,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16803,'42642','Maresias','MARESIAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16804,'5860','Mareuil-les-meaux','MAREUIL-LES-MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16805,'30783','Marfa','MARFA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16806,'14187','Marfa','MARFA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16807,'25731','Margaree','MARGAREE',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16808,'26960','Margaret River','MARGARET RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16809,'27004','Margareten','MARGARETEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16810,'42965','Margaretting','MARGARETTING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16811,'28939','Margaretville','MARGARETVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16812,'8522','Margate','MARGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16813,'5214','Margaux','MARGAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16814,'12895','Marghera','MARGHERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16815,'12092','Margherita Di Savoia','MARGHERITA DI SAVOIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16816,'5010','Margny Les Compiegne','MARGNY LES COMPIEGNE',NULL,'','France','',0,0,76,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16817,'37799','Margon','MARGON',NULL,'','France','',0,0,76,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16818,'22786','Maria','MARIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16819,'24389','Maria Alm','MARIA ALM',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16820,'643','Maria Laach','MARIA LAACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16821,'27005','Mariahilf','MARIAHILF',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16822,'35569','Marian D\'agro','MARIAN D\'AGRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16823,'7200','Marianglas','MARIANGLAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16824,'39176','Marianka','MARIANKA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16825,'18048','Marianna','MARIANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16826,'24317','Marianske Lazne','MARIANSKE LAZNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16827,'24427','Mariatrost','MARIATROST',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16828,'39557','Mariaville','MARIAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16829,'24428','Mariazell','MARIAZELL',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16830,'37110','Marib','MARIB',NULL,'','Yemen','',0,0,240,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16831,'2303','Maribo','MARIBO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16832,'16642','Maribor','MARIBOR',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16833,'15758','Maricao','MARICAO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16834,'18163','Maricopa','MARICOPA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16835,'16761','Marieberg','MARIEBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16836,'16776','Mariefred','MARIEFRED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16837,'9366','Marie-galante','MARIE-GALANTE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16838,'3910','Mariehamn','MARIEHAMN',NULL,'','Finland','',0,0,75,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16839,'16872','Marieholm','MARIEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16840,'40577','Marienberg','MARIENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16841,'453','Mariendorf','MARIENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16842,'725','Marienfelde','MARIENFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16843,'533','Marienheide','MARIENHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16844,'36443','Mariental','MARIENTAL',NULL,'','Namibia','',0,0,151,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16845,'30041','Marienville','MARIENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16846,'16888','Mariestad','MARIESTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16847,'32924','Marietta','MARIETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16848,'12093','Marigliano','MARIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:24','1900-01-01 00:00:00',1,0,1),(16849,'6481','Marignane','MARIGNANE',NULL,'','France','',0,0,76,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16850,'9384','Marigot','MARIGOT',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16851,'2103','Marigot','MARIGOT',NULL,'','Dominica','',0,0,500,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16852,'13579','Marigot Bay','MARIGOT BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16853,'38879','Marijampole','MARIJAMPOLE',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16854,'15533','Marikina','MARIKINA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16855,'25209','Marilia','MARILIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16856,'3667','Marin','MARIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16857,'18652','Marin County','MARIN COUNTY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16858,'18653','Marina','MARINA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:26','1900-01-01 00:00:00',1,0,1),(16859,'32523','Marina Beach','MARINA BEACH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:26','1900-01-01 00:00:00',1,0,1),(16860,'15455','Marinduque','MARINDUQUE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:28','1900-01-01 00:00:00',1,0,1),(16861,'22158','Marine City','MARINE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16862,'41210','Marine Park','MARINE PARK',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16863,'19476','Marineland','MARINELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16864,'31805','Marinette','MARINETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16865,'25115','Maringa','MARINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16866,'15859','Marinha','MARINHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16867,'10848','Marino','MARINO',NULL,'','Ireland','',0,0,105,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16868,'20642','Marion','MARION',NULL,'','United States','',0,0,231,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16869,'18656','Mariposa','MARIPOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16870,'43026','Mariri','MARIRI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16871,'38375','Marisule','MARISULE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16872,'18050','Marked Tree','MARKED TREE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16873,'14753','Markelo','MARKELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16874,'8527','Markfield','MARKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:35','1900-01-01 00:00:00',1,0,1),(16875,'34557','Markham','MARKHAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:35','1900-01-01 00:00:00',1,0,1),(16876,'20643','Markham','MARKHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16877,'15696','Marki','MARKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16878,'34692','Markinch','MARKINCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16879,'1891','Markkleeberg','MARKKLEEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16880,'20937','Markle','MARKLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16881,'18657','Markleeville','MARKLEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16882,'74','Markranstädt','MARKRANSTÄDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16883,'1499','Marksville','MARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16884,'37701','Markt Schwaben','MARKT SCHWABEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16885,'253','Marktbreit','MARKTBREIT',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16886,'254','Marktheidenfeld','MARKTHEIDENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16887,'255','Marktredwitz','MARKTREDWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16888,'8529','Markyate','MARKYATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16889,'27254','Marl','MARL',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16890,'42710','Marla','MARLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:39','1900-01-01 00:00:00',1,0,1),(16891,'31350','Marlboro','MARLBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:39','1900-01-01 00:00:00',1,0,1),(16892,'21429','Marlborough','MARLBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16893,'15129','Marlborough','MARLBOROUGH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16894,'8530','Marlborough','MARLBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16895,'12103','Marlengo','MARLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16896,'21739','Marley','MARLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16897,'40459','Marliana','MARLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:41','1900-01-01 00:00:00',1,0,1),(16898,'30784','Marlin','MARLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:18:41','1900-01-01 00:00:00',1,0,1),(16899,'32008','Marlinton','MARLINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16900,'32925','Marlow','MARLOW',NULL,'','United States','',0,0,231,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16901,'8531','Marlow','MARLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16902,'36328','Marlow-on-thames','MARLOW-ON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:43','1900-01-01 00:00:00',1,0,1),(16903,'28335','Marlton','MARLTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:43','1900-01-01 00:00:00',1,0,1),(16904,'33931','Marlwood Acre','MARLWOOD ACRE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16905,'10705','Marmagao','MARMAGAO',NULL,'','India','',0,0,101,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16906,'5215','Marmande','MARMANDE',NULL,'','France','',0,0,76,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16907,'9694','Marmaras','MARMARAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16908,'17340','Marmaris','MARMARIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16909,'36806','Marmaris-icmeler','MARMARIS-ICMELER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16910,'3263','Marmolejo','MARMOLEJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16911,'28336','Marmora','MARMORA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16912,'5861','Marne-la-vallee','MARNE-LA-VALLEE',NULL,'','France','Marne-la-Vallee',0,0,76,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16913,'38633','Marnhull','MARNHULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16914,'3264','Maro','MARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16915,'39167','Maroantsetra','MAROANTSETRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16916,'13834','Maroma','MAROMA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16917,'9695','Maronia','MARONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16918,'26723','Maroochydore','MAROOCHYDORE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16919,'26263','Maroochydore-mooloolaba','MAROOCHYDORE-MOOLOOLABA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16920,'12104','Marostica','MAROSTICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16921,'12105','Marotta','MAROTTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16922,'24018','Maroua','MAROUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16923,'34235','Maroubra','MAROUBRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16924,'43196','Maroussi','MAROUSSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16925,'39481','Marquay','MARQUAY',NULL,'','France','',0,0,76,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16926,'16124','Marquesas Islands','MARQUESAS ISLANDS',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16927,'20243','Marquette','MARQUETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16928,'9843','Marquis','MARQUIS',NULL,'','Grenada','',0,0,88,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16929,'6183','Marquise','MARQUISE',NULL,'','France','',0,0,76,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16930,'13698','Marrakech','MARRAKECH',NULL,'','Morocco','',0,0,148,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16931,'938','Marrara','MARRARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16932,'42709','Marree','MARREE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16933,'21229','Marrero','MARRERO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16934,'34236','Marrickville','MARRICKVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16935,'30043','Mars','MARS',NULL,'','United States','',0,0,231,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16936,'2431','Marsa Alam','MARSA ALAM',NULL,'','Egypt','',0,0,65,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16937,'12846','Marsala','MARSALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16938,'14196','Marsalforn','MARSALFORN',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16939,'4893','Marsannay-la-cote','MARSANNAY-LA-COTE',NULL,'','France','',0,0,76,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16940,'14188','Marsascala','MARSASCALA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16941,'44038','Marsaskala','MARSASKALA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16942,'37309','Marsberg','MARSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16943,'35560','Marsciano','MARSCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16944,'8532','Marsden','MARSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16945,'37268','Marseillan','MARSEILLAN',NULL,'','France','',0,0,76,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16946,'6482','Marseille','MARSEILLE',NULL,'','France','',0,0,76,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16947,'24885','Marsh Harbour','MARSH HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:18:52','1900-01-01 00:00:00',1,0,1),(16948,'33933','Marshall','MARSHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:18:52','1900-01-01 00:00:00',1,0,1),(16949,'30044','Marshalls Creek','MARSHALLS CREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:18:54','1900-01-01 00:00:00',1,0,1),(16950,'20244','Marshalltown','MARSHALLTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:18:55','1900-01-01 00:00:00',1,0,1),(16951,'38623','Marsham','MARSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:55','1900-01-01 00:00:00',1,0,1),(16952,'27709','Marshfield','MARSHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:56','1900-01-01 00:00:00',1,0,1),(16953,'39388','Marsolan','MARSOLAN',NULL,'','France','',0,0,76,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16954,'16781','Marsta','MARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16955,'2193','Marstal','MARSTAL',NULL,'','Denmark','',0,0,59,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16956,'27710','Marston','MARSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16957,'8533','Marston','MARSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16958,'36671','Marstrand','MARSTRAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16959,'12106','Marta','MARTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16960,'38260','Martel','MARTEL',NULL,'','France','',0,0,76,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16961,'40426','Martellago','MARTELLAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16962,'22950','Martensville','MARTENSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16963,'21431','Martha\'s Vineyard','MARTHA\'S VINEYARD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16964,'4393','Martigne Briand','MARTIGNE BRIAND',NULL,'','France','',0,0,76,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16965,'6252','Martigne-sur-mayenne','MARTIGNE-SUR-MAYENNE',NULL,'','France','',0,0,76,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16966,'33','Martigny','MARTIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16967,'4864','Martigues','MARTIGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16968,'39073','Martillac','MARTILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16969,'33026','Martin','MARTIN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16970,'12107','Martina Franca','MARTINA FRANCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16971,'15130','Martinborough','MARTINBOROUGH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16972,'18659','Martinez','MARTINEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16973,'38904','Martinez De La Torre','MARTINEZ DE LA TORRE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16974,'36576','Martinho Do Porto','MARTINHO DO PORTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16975,'14231','Martinique','MARTINIQUE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16976,'29418','Martins Ferry','MARTINS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:02','1900-01-01 00:00:00',1,0,1),(16977,'32009','Martinsburg','MARTINSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:19:02','1900-01-01 00:00:00',1,0,1),(16978,'27999','Martinsdale','MARTINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16979,'40246','Martinsicuro','MARTINSICURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16980,'31163','Martinsville','MARTINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16981,'8535','Martock','MARTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16982,'3562','Martorell','MARTORELL',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16983,'14382','Marudi','MARUDI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16984,'43917','Marugame','MARUGAME',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16985,'13289','Maruko','MARUKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16986,'43851','Marungoor','MARUNGOOR',NULL,'','India','',0,0,101,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16987,'16017','Marvao','MARVAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16988,'38082','Marvejols','MARVEJOLS',NULL,'','France','',0,0,76,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16989,'15978','Marvila','MARVILA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16990,'17109','Mary','MARY',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16991,'19477','Mary Esther','MARY ESTHER',NULL,'','United States','',0,0,231,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16992,'43659','Mary River Wetland','MARY RIVER WETLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16993,'26914','Maryborough','MARYBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16994,'38499','Marybrook','MARYBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16995,'8536','Maryculter','MARYCULTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16996,'27711','Maryland Heights','MARYLAND HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16997,'7201','Marylebone','MARYLEBONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16998,'25666','Mary\'s Harbour','MARY\'S HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16999,'25667','Marystown','MARYSTOWN',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(17000,'26915','Marysville','MARYSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:07','1900-01-01 00:00:00',1,0,1),(17001,'29419','Marysville','MARYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:07','1900-01-01 00:00:00',1,0,1),(17002,'26725','Maryvale','MARYVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:08','1900-01-01 00:00:00',1,0,1),(17003,'20645','Maryville','MARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:08','1900-01-01 00:00:00',1,0,1),(17004,'2004','Marzahn','MARZAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:09','1900-01-01 00:00:00',1,0,1),(17005,'3983','Masaby','MASABY',NULL,'','Finland','',0,0,75,'2016-10-17 11:19:09','1900-01-01 00:00:00',1,0,1),(17006,'11047','Masada','MASADA',NULL,'','Israel','',0,0,106,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17007,'37442','Masai Mara','MASAI MARA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17008,'3763','Masalfasar','MASALFASAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17009,'44295','Masalfassar','MASALFASSAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17010,'10361','Masamba','MASAMBA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17011,'17462','Masasi','MASASI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17012,'43984','Masatepe','MASATEPE',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17013,'43985','Masaya','MASAYA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17014,'15521','Masbate','MASBATE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17015,'12108','Mascali','MASCALI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17016,'37644','Mascara','MASCARA',NULL,'','Algeria','',0,0,3,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17017,'34237','Mascot','MASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17018,'14018','Mascota','MASCOTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17019,'22787','Mascouche','MASCOUCHE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17020,'40251','Mascoutah','MASCOUTAH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17021,'22592','Maselheim','MASELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17022,'12109','Masera Di Padova','MASERA DI PADOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17023,'13629','Maseru','MASERU',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17024,'40600','Mashabei Sade','MASHABEI SADE',NULL,'','Israel','',0,0,106,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17025,'42219','Mashad','MASHAD',NULL,'','Iran','',0,0,103,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17026,'8537','Masham','MASHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17027,'19105','Mashantucket','MASHANTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17028,'35434','Mashhad','MASHHAD',NULL,'','Iran','',0,0,103,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17029,'40868','Mashobra','MASHOBRA',NULL,'','India','Mashobra',1,0,101,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17030,'21432','Mashpee','MASHPEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17031,'2693','Masía Aldamar','MASÍA ALDAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17032,'43852','Masinagudi','MASINAGUDI',NULL,'','India','',0,0,101,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17034,'15278','Masirah','MASIRAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17035,'24916','Maskall','MASKALL',NULL,'','Belize','',0,0,22,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17036,'3563','Masnou','MASNOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17037,'24664','Masnuy-saint-jean','MASNUY-SAINT-JEAN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17038,'32011','Mason','MASON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:14','1900-01-01 00:00:00',1,0,1),(17039,'3370','Maspalomas','MASPALOMAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17040,'28940','Maspeth','MASPETH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17041,'3564','Masquefa','MASQUEFA',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17042,'12855','Massa','MASSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17043,'43271','Massalfassar','MASSALFASSAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:16','1900-01-01 00:00:00',1,0,1),(17044,'31165','Massanutten','MASSANUTTEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:16','1900-01-01 00:00:00',1,0,1),(17045,'43107','Massanzago','MASSANZAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:17','1900-01-01 00:00:00',1,0,1),(17046,'28941','Massapequa','MASSAPEQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:17','1900-01-01 00:00:00',1,0,1),(17047,'12112','Massarosa','MASSAROSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17048,'28943','Massena','MASSENA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17049,'1979','Masserberg','MASSERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17050,'25480','Masset','MASSET',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17051,'34558','Massey','MASSEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17052,'4833','Massieux','MASSIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17053,'6350','Massignac','MASSIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17054,'29421','Massillon','MASSILLON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17055,'11289','Massino Visconti','MASSINO VISCONTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17056,'37859','Massouri','MASSOURI',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17057,'5131','Massy','MASSY',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17058,'15076','Masterton','MASTERTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17059,'24865','Mastic Point','MASTIC POINT',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17060,'43434','Mastihari','MASTIHARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17061,'13164','Masuda','MASUDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17062,'15592','Masurian Lakes','MASURIAN LAKES',NULL,'','Poland','',0,0,174,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17063,'32665','Masvingo','MASVINGO',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17064,'25043','Mata De Sao Joao','MATA DE SAO JOAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17065,'24027','Matadi','MATADI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17066,'14447','Matagalpa','MATAGALPA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17067,'22788','Matagami','MATAGAMI',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17068,'2694','Matagorda','MATAGORDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17069,'16163','Mataiva','MATAIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17070,'43027','Matakana','MATAKANA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17071,'9696','Matala','MATALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17072,'36164','Matalascanas','MATALASCANAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17073,'3461','Matalebreras','MATALEBRERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17074,'16521','Matam','MATAM',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17075,'36204','Matamanoa Island','MATAMANOA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17076,'43624','Matamata','MATAMATA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17077,'30045','Matamoras','MATAMORAS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17078,'14108','Matamoros','MATAMOROS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17079,'22789','Matane','MATANE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17080,'4064','Matangi Island','MATANGI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17081,'43086','Matanzas','MATANZAS',NULL,'','Cuba','',0,0,56,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17082,'22790','Matapedia','MATAPEDIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17083,'38334','Mataranka','MATARANKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17084,'3565','Mataro','MATARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17085,'15217','Matauri Bay','MATAURI BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17086,'7202','Matchams','MATCHAMS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17087,'14085','Matehuala','MATEHUALA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17088,'37795','Matelica','MATELICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17089,'38968','Matemo Island','MATEMO ISLAND',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17090,'12701','Matera','MATERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17091,'8538','Matfen','MATFEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17092,'21093','Matfield Green','MATFIELD GREEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17093,'43853','Matheran','MATHERAN',NULL,'','India','Matheran',5,0,101,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17094,'43634','Mathinna','MATHINNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17095,'30786','Mathis','MATHIS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17096,'10683','Mathura','MATHURA',NULL,'','India','Mathura',6,0,101,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17097,'38614','Matino','MATINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17098,'19478','Matlacha','MATLACHA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17099,'8539','Matlock','MATLOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17100,'17176','Matmata','MATMATA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17101,'16027','Matosinhos','MATOSINHOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17102,'40599','Matougues','MATOUGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17103,'10076','Matrahaza','MATRAHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17104,'35342','Matraszentimre','MATRASZENTIMRE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17105,'39951','Mátraszentimre','MÁTRASZENTIMRE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17106,'35882','Matrei','MATREI',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17107,'13630','Matsaile','MATSAILE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17108,'13290','Matsubara','MATSUBARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17109,'13291','Matsudo','MATSUDO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17110,'35740','Matsue','MATSUE',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17111,'13292','Matsumoto','MATSUMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17112,'42561','Matsuo','MATSUO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17113,'43052','Matsusaka','MATSUSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17114,'42687','Matsushima','MATSUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17115,'13293','Matsuyama','MATSUYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17116,'21433','Mattapan','MATTAPAN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17117,'12113','Mattarello','MATTARELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17118,'20646','Matteson','MATTESON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17119,'24860','Matthew Town','MATTHEW TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17120,'33934','Matthews','MATTHEWS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17121,'12114','Mattinata','MATTINATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17122,'20647','Mattoon','MATTOON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17123,'38443','Mattsee','MATTSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17124,'28944','Mattydale','MATTYDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17125,'30252','Matunuck','MATUNUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17126,'24989','Matupa','MATUPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17127,'32203','Maturin','MATURIN',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17128,'6773','Matzenheim','MATZENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17129,'6184','Maubeuge','MAUBEUGE',NULL,'','France','',0,0,76,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17130,'27108','Mauerbach','MAUERBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17131,'37485','Mauerstetten','MAUERSTETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17132,'25031','Maues','MAUES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17133,'4937','Mauguio','MAUGUIO',NULL,'','France','',0,0,76,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17134,'36917','Maui-hana','MAUI-HANA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17135,'36938','Maui-kaanapali','MAUI-KAANAPALI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17136,'36939','Maui-kahana','MAUI-KAHANA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17137,'36999','Maui-kahului','MAUI-KAHULUI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17138,'36936','Maui-kapalua','MAUI-KAPALUA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:32','1900-01-01 00:00:00',1,0,1),(17139,'36946','Maui-kihei','MAUI-KIHEI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:32','1900-01-01 00:00:00',1,0,1),(17140,'36953','Maui-lahaina','MAUI-LAHAINA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17141,'36969','Maui-maalaea','MAUI-MAALAEA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17142,'36980','Maui-makena','MAUI-MAKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17143,'36988','Maui-napili','MAUI-NAPILI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17144,'37056','Maui-wailea','MAUI-WAILEA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17145,'36971','Maui-wailuku','MAUI-WAILUKU',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17146,'24070','Mauke','MAUKE',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17147,'30370','Mauldin','MAULDIN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17148,'5821','Maulevrier','MAULEVRIER',NULL,'','France','',0,0,76,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17149,'29422','Maumee','MAUMEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17150,'18052','Maumelle','MAUMELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17151,'10353','Maumere','MAUMERE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17152,'25261','Maun','MAUN',NULL,'','Botswana','',0,0,28,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17153,'38868','Maunabo','MAUNABO',NULL,'','United States','',0,0,231,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17154,'20079','Maunaloa','MAUNALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17155,'16125','Maupiti','MAUPITI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17156,'23282','Maur','MAUR',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17157,'24482','Maurach','MAURACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17158,'5822','Maurepas','MAUREPAS',NULL,'','France','',0,0,76,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17159,'15131','Mauria River Valley','MAURIA RIVER VALLEY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17160,'40180','Mauriac','MAURIAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17161,'42162','Mauricie','MAURICIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17162,'14254','Mauritius','MAURITIUS',NULL,'','Mauritius','Mauritius',35,0,139,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17164,'36413','Mauritius-trou D\'eau','MAURITIUS-TROU D\'EAU',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17165,'5216','Maury','MAURY',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17166,'41386','Maussane-les Alpilles','MAUSSANE-LES ALPILLES',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17167,'4394','Maussane-les-alpilles','MAUSSANE-LES-ALPILLES',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17168,'36289','Maussanne Les Alpill','MAUSSANNE LES ALPILL',NULL,'','France','',0,0,76,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17169,'31808','Mauston','MAUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17170,'24390','Mauterndorf','MAUTERNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17171,'27080','Mauthen','MAUTHEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17172,'39864','Mauvezin','MAUVEZIN',NULL,'','France','',0,0,76,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17173,'5473','Maux','MAUX',NULL,'','France','',0,0,76,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17174,'38790','Mavillette','MAVILLETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17175,'42215','Mawatha','MAWATHA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17176,'8540','Mawdesley','MAWDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17177,'42256','Mawlamyine','MAWLAMYINE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17178,'37310','Mawson Lakes','MAWSON LAKES',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17179,'31166','Max Meadows','MAX MEADOWS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17180,'38035','Maxaranguape','MAXARANGUAPE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17181,'14128','Maxcanu','MAXCANU',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17182,'6046','Maxeville','MAXEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17183,'15759','Mayaguez','MAYAGUEZ',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17184,'28945','Maybrook','MAYBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17185,'27109','Mayerling','MAYERLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17186,'21094','Mayetta','MAYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17187,'8541','Mayfair','MAYFAIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17188,'34238','Mayfield','MAYFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17189,'25820','Mayfield','MAYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17190,'33690','Mayfield','MAYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:43','1900-01-01 00:00:00',1,0,1),(17191,'43854','Mayiladuthurai','MAYILADUTHURAI',NULL,'','India','',0,0,101,'2016-10-17 11:19:43','1900-01-01 00:00:00',1,0,1),(17192,'42080','Maymyo','MAYMYO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17193,'21434','Maynard','MAYNARD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17194,'25249','Maynards','MAYNARDS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17195,'25481','Mayne Island','MAYNE ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17196,'10889','Maynooth','MAYNOOTH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17197,'22980','Mayo','MAYO',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17198,'6839','Mayoumba','MAYOUMBA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17199,'32164','Mayreau Island','MAYREAU ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17200,'35883','Mayrhofen','MAYRHOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17201,'75','Mayschoss','MAYSCHOSS',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17202,'33691','Maysville','MAYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17203,'31809','Mayville','MAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17204,'28139','Maywood','MAYWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17205,'3265','Mazagon','MAZAGON',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17206,'31550','Mazama','MAZAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17207,'43957','Mazamitla','MAZAMITLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17208,'5328','Mazan','MAZAN',NULL,'','France','',0,0,76,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17209,'12115','Mazara Del Vallo','MAZARA DEL VALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17210,'6483','Mazargues','MAZARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17211,'3668','Mazaricos','MAZARICOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17212,'25840','Mazar-i-sharif','MAZAR-I-SHARIF',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17213,'3037','Mazarron','MAZARRON',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17214,'14094','Mazatlan','MAZATLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17215,'31810','Mazomanie','MAZOMANIE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17216,'39270','Mazotos','MAZOTOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17217,'38015','Mazzarino','MAZZARINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17218,'11290','Mazzaro','MAZZARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17219,'43154','Mazzeo','MAZZEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17220,'11291','Mazzetelli','MAZZETELLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17221,'12116','Mazzin','MAZZIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17222,'12117','Mazzolla','MAZZOLLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17223,'16911','Mbabane','MBABANE',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17224,'16551','Mbambanakira','MBAMBANAKIRA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17225,'24028','Mbandaka','MBANDAKA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17226,'17481','Mbarara','MBARARA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17227,'4093','Mbengga','MBENGGA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17228,'17463','Mbeya','MBEYA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17229,'6840','M\'bigou','M\'BIGOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17230,'43993','Mbodiene','MBODIENE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17231,'16526','Mbour','MBOUR',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17232,'24029','Mbuji-mayi','MBUJI-MAYI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17233,'28337','Mcafee','MCAFEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17234,'32926','Mcalester','MCALESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17235,'30787','Mcallen','MCALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:52','1900-01-01 00:00:00',1,0,1),(17236,'25482','Mcbride','MCBRIDE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17237,'20376','Mccall','MCCALL',NULL,'','United States','',0,0,231,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17238,'1515','Mccallen','MCCALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17239,'39738','Mccamey','MCCAMEY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:54','1900-01-01 00:00:00',1,0,1),(17240,'17697','Mccarthy','MCCARTHY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:54','1900-01-01 00:00:00',1,0,1),(17241,'30371','Mcclellanville','MCCLELLANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17242,'18661','Mccloud','MCCLOUD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17243,'27883','Mccomb','MCCOMB',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17244,'28140','Mccook','MCCOOK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17245,'30372','Mccormick','MCCORMICK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17246,'26264','Mccracken','MCCRACKEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17247,'32832','Mcdermitt','MCDERMITT',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17248,'33204','Mcdonald','MCDONALD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17249,'19870','Mcdonough','MCDONOUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17250,'24318','Mcely','MCELY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17251,'31167','Mcgaheysville','MCGAHEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17252,'18053','Mcgehee','MCGEHEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17253,'17698','Mcgrath','MCGRATH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:59','1900-01-01 00:00:00',1,0,1),(17254,'28947','Mcgraw','MCGRAW',NULL,'','United States','',0,0,231,'2016-10-17 11:19:59','1900-01-01 00:00:00',1,0,1),(17255,'30789','Mcgregor','MCGREGOR',NULL,'','United States','',0,0,231,'2016-10-17 11:20:00','1900-01-01 00:00:00',1,0,1),(17256,'28338','Mcguire Airforce Base','MCGUIRE AIRFORCE BASE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17257,'18164','Mcguireville','MCGUIREVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17258,'21740','Mchenry','MCHENRY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17259,'34559','Mckellar','MCKELLAR',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17260,'31168','Mckenney','MCKENNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17261,'33205','Mckenzie','MCKENZIE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17262,'18662','Mckinleyville','MCKINLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:03','1900-01-01 00:00:00',1,0,1),(17263,'30790','Mckinney','MCKINNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17264,'26460','Mclaren Vale','MCLAREN VALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17265,'20650','Mclean','MCLEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17266,'33935','Mcleansville','MCLEANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17267,'72952','Mcleodganj','MCLEODGANJ',NULL,'','India','',0,0,101,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17268,'22163','Mcmillan','MCMILLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17269,'29704','Mcminnville','MCMINNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:06','1900-01-01 00:00:00',1,0,1),(17270,'18165','Mcnary','MCNARY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:06','1900-01-01 00:00:00',1,0,1),(17271,'21095','Mcpherson','MCPHERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17272,'30791','Mcqueeney','MCQUEENEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17273,'19871','Mcrae','MCRAE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17274,'14197','Mdina','MDINA',NULL,'','Malta','',0,0,135,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17275,'22951','Meadow Lake','MEADOW LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17276,'1507','Meadowlands','MEADOWLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17277,'42225','Meads Bay','MEADS BAY',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17278,'18166','Meadview','MEADVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:20:09','1900-01-01 00:00:00',1,0,1),(17279,'30046','Meadville','MEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:09','1900-01-01 00:00:00',1,0,1),(17280,'40030','Meaford','MEAFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17281,'15860','Mealhada','MEALHADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17282,'1639','Mealhanda','MEALHANDA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17283,'3669','Meano','MEANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17284,'22164','Mears','MEARS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17285,'40306','Méaudre','MÉAUDRE',NULL,'','France','',0,0,76,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17286,'33936','Mebane','MEBANE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17287,'16513','Mecca','MECCA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17288,'30048','Mechanicsburg','MECHANICSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17289,'21741','Mechanicsville','MECHANICSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:12','1900-01-01 00:00:00',1,0,1),(17290,'24611','Mechelen','MECHELEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17291,'37837','Mecina Fondales','MECINA FONDALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17292,'76','Mecklenburger Seenplatte','MECKLENBURGER SEENPLATTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17293,'37755','Medebach','MEDEBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17294,'15897','Medelim','MEDELIM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17295,'24104','Medellin','MEDELLIN',NULL,'','Colombia','',0,0,49,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17296,'14647','Medemblik','MEDEMBLIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17297,'17173','Medenine','MEDENINE',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17298,'12118','Medesano','MEDESANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17299,'21435','Medfield','MEDFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17300,'21436','Medford','MEDFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17301,'13750','Medhufinolhu','MEDHUFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17302,'30049','Media','MEDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17303,'16223','Medias','MEDIAS',NULL,'','Romania','',0,0,179,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17304,'42328','Medicina','MEDICINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17305,'32117','Medicine Bow','MEDICINE BOW',NULL,'','United States','',0,0,231,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17306,'25336','Medicine Hat','MEDICINE HAT',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17307,'16482','Medina','MEDINA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17308,'29425','Medina','MEDINA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17309,'2695','Medina-sidonia','MEDINA-SIDONIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:18','1900-01-01 00:00:00',1,0,1),(17310,'2696','Mediodia','MEDIODIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17311,'39198','Medis','MEDIS',NULL,'','France','',0,0,76,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17312,'34835','Medjugorje','MEDJUGORJE',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17313,'12119','Medolago','MEDOLAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17314,'28074','Medora','MEDORA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17315,'39333','Medugorje','MEDUGORJE',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17316,'9971','Medulin','MEDULIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17317,'16462','Medvedkovo','MEDVEDKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17318,'38707','Medvode','MEDVODE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17319,'13751','Meedhupparu','MEEDHUPPARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17320,'26601','Meekatharra','MEEKATHARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17321,'33489','Meeker','MEEKER',NULL,'','United States','',0,0,231,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17322,'1892','Meerane','MEERANE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17323,'77','Meerbusch','MEERBUSCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17324,'36458','Meerkerk','MEERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17325,'22593','Meersburg','MEERSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17326,'13752','Meeru','MEERU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17327,'24687','Meeuwen','MEEUWEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17328,'39783','Megala Chorafia','MEGALA CHORAFIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17329,'43435','Megali Ammos','MEGALI AMMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17330,'9535','Megalochori','MEGALOCHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17331,'39250','Megas Gialos','MEGAS GIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17332,'6820','Megeve','MEGEVE',NULL,'','France','',0,0,76,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17333,'23283','Meggen','MEGGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17334,'1661','Meggido','MEGGIDO',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17335,'15057','Meghauli','MEGHAULI',NULL,'','Nepal','',0,0,153,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17336,'14161','Megit Island','MEGIT ISLAND',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17337,'13294','Meguro','MEGURO',NULL,'','Japan','',0,0,110,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17338,'14884','Mehamn','MEHAMN',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17339,'27713','Mehlville','MEHLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17340,'15932','Meia Praia','MEIA PRAIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17341,'24535','Meidling','MEIDLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17342,'23284','Meilen','MEILEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17343,'37276','Meina','MEINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17344,'1980','Meiningen','MEININGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17345,'22988','Meiringen','MEIRINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17346,'1942','Meisdorf','MEISDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17347,'37381','Meisenthal','MEISENTHAL',NULL,'','France','',0,0,76,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17348,'2092','Meissen','MEISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17349,'40455','Meissenheim','MEISSENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17350,'23939','Meixian','MEIXIAN',NULL,'','China','',0,0,46,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17351,'23971','Meizhou','MEIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17352,'3984','Mejlans','MEJLANS',NULL,'','Finland','',0,0,75,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17353,'41500','Mejorada Del Campo','MEJORADA DEL CAMPO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1);
INSERT INTO `tb_master_geo_city` VALUES (17354,'6851','Mekambo','MEKAMBO',NULL,'','Gabon','',0,0,80,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17355,'3867','Mekane Selam','MEKANE SELAM',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17356,'13701','Meknes','MEKNES',NULL,'','Morocco','Meknes',0,0,148,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17357,'17699','Mekoryuk','MEKORYUK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17358,'43546','Melaka','MELAKA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17359,'10181','Melanguane','MELANGUANE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17360,'27255','Melbeck','MELBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17361,'37986','Melbourn','MELBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17362,'19479','Melbourne','MELBOURNE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17363,'14920','Melbu','MELBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17364,'23285','Melchnau','MELCHNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17365,'726','Meldorf','MELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17366,'32330','Mele','MELE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17367,'12120','Melendugno','MELENDUGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17368,'12121','Melezzole','MELEZZOLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17369,'22952','Melfort','MELFORT',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17370,'24127','Melgar','MELGAR',NULL,'','Colombia','',0,0,49,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17371,'23286','Melide','MELIDE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17372,'2872','Melilla','MELILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17373,'43535','Melilli','MELILLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17374,'38448','Melissa','MELISSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17375,'39468','Melito Di Napoli','MELITO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17376,'40737','Melizzano','MELIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17377,'35884','Melk','MELK',NULL,'','Austria','Melk',0,0,14,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17378,'8542','Melksham','MELKSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17379,'5570','Mellac','MELLAC',NULL,'','France','',0,0,76,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17380,'27007','Mellau','MELLAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17381,'39175','Mellbystrand','MELLBYSTRAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17382,'27256','Melle','MELLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17383,'16889','Mellerud','MELLERUD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17384,'14198','Mellieha','MELLIEHA',NULL,'','Malta','',0,0,135,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17385,'1981','Mellingen','MELLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17386,'8543','Mellor','MELLOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17387,'3985','Mellungsby','MELLUNGSBY',NULL,'','Finland','',0,0,75,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17388,'32524','Melmoth','MELMOTH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17389,'2697','Meloneras','MELONERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17390,'14809','Meloyvaer','MELOYVAER',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17391,'27443','Melrose','MELROSE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17392,'8544','Melrose','MELROSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17393,'42708','Melrose','MELROSE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17394,'727','Melsdorf','MELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17395,'454','Melsungen','MELSUNGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17396,'8545','Meltham','MELTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17397,'38670','Melton','MELTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17398,'8546','Melton Mowbray','MELTON MOWBRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17399,'5863','Melun','MELUN',NULL,'','France','',0,0,76,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17400,'21098','Melvern','MELVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17401,'42682','Melvich','MELVICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17402,'26602','Melville','MELVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17403,'22953','Melville','MELVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17404,'28949','Melville','MELVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17405,'22165','Melvindale','MELVINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17406,'44231','Melzo','MELZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17407,'13165','Memanbetsu','MEMANBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17408,'256','Memmelsdorf','MEMMELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17409,'257','Memmingen','MEMMINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17410,'28141','Memorial Stadium','MEMORIAL STADIUM',NULL,'','United States','',0,0,231,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17411,'27714','Memphis','MEMPHIS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17412,'3868','Mena','MENA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17413,'18054','Mena','MENA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17414,'12122','Menaggio','MENAGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17415,'28950','Menands','MENANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17416,'38916','Menara','MENARA',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17417,'38822','Menard','MENARD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17418,'5938','Mende','MENDE',NULL,'','France','',0,0,76,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17419,'27885','Mendenhall','MENDENHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17420,'39875','Mendham','MENDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17421,'3869','Mendi','MENDI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17422,'18663','Mendocino','MENDOCINO',NULL,'','United States','',0,0,231,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17423,'31351','Mendon','MENDON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:38','1900-01-01 00:00:00',1,0,1),(17424,'20652','Mendota','MENDOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:39','1900-01-01 00:00:00',1,0,1),(17425,'26124','Mendoza','MENDOZA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:20:39','1900-01-01 00:00:00',1,0,1),(17426,'23287','Mendrisio','MENDRISIO',NULL,'','Switzerland','Mendrisio',0,0,210,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17427,'21438','Menemsha','MENEMSHA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17428,'24730','Menen','MENEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17429,'44075','Menerbes','MENERBES',NULL,'','France','',0,0,76,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17430,'4396','Ménerbes','MÉNERBES',NULL,'','France','',0,0,76,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17431,'12123','Menfi','MENFI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17432,'78','Mengershausen','MENGERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17433,'455','Mengerskirchen','MENGERSKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17434,'14391','Menggatal','MENGGATAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17435,'3266','Mengibar','MENGIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17436,'34888','Mengzi','MENGZI',NULL,'','China','',0,0,46,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17437,'43626','Meningie','MENINGIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17438,'10182','Menjangan Bay','MENJANGAN BAY',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17439,'18665','Menlo Park','MENLO PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17440,'4752','Mennecy','MENNECY',NULL,'','France','',0,0,76,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17441,'22167','Menominee','MENOMINEE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17442,'31812','Menomonee Falls','MENOMONEE FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17443,'31813','Menomonie','MENOMONIE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17444,'25847','Menongue','MENONGUE',NULL,'','Angola','',0,0,6,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17445,'35001','Menorca-cala Binianc','MENORCA-CALA BINIANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17446,'35015','Menorca-ciudadela','MENORCA-CIUDADELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17447,'36117','Menorca-fornells','MENORCA-FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17448,'36162','Menorca-mahon','MENORCA-MAHON',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17449,'36168','Menorca-mercadal','MENORCA-MERCADAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17450,'36199','Menorca-playa Son Bo','MENORCA-PLAYA SON BO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17451,'35100','Menorca-santo Tomas','MENORCA-SANTO TOMAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17452,'35081','Menorca-son Xoriguer','MENORCA-SON XORIGUER',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17453,'2304','Menstrup','MENSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17454,'11292','Mentana','MENTANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17455,'10289','Menteng','MENTENG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17456,'6663','Menthon-saint-bernard','MENTHON-SAINT-BERNARD',NULL,'','France','',0,0,76,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17457,'4847','Menton','MENTON',NULL,'','France','',0,0,76,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17458,'26521','Mentone','MENTONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17459,'29426','Mentor','MENTOR',NULL,'','United States','',0,0,231,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17460,'38573','Meolo','MEOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17461,'14497','Meppel','MEPPEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17462,'27257','Meppen','MEPPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17463,'8547','Meppershall','MEPPERSHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17464,'31814','Mequon','MEQUON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17465,'5023','Meracq','MERACQ',NULL,'','France','',0,0,76,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17466,'44258','Meradhoo','MERADHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17467,'1786','Merang','MERANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17468,'10313','Merauke','MERAUKE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17469,'21230','Meraux','MERAUX',NULL,'','United States','',0,0,231,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17470,'35574','Mercatale','MERCATALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17471,'18666','Merced','MERCED',NULL,'','United States','',0,0,231,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17472,'30793','Mercedes','MERCEDES',NULL,'','United States','',0,0,231,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17473,'17541','Mercedes','MERCEDES',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17474,'30051','Mercer','MERCER',NULL,'','United States','',0,0,231,'2016-10-17 11:20:50','1900-01-01 00:00:00',1,0,1),(17475,'30052','Mercersburg','MERCERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17476,'7204','Merchiston','MERCHISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17477,'6111','Mercues','MERCUES',NULL,'','France','',0,0,76,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17478,'10183','Merdey','MERDEY',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17479,'33490','Meredith','MEREDITH',NULL,'','United States','',0,0,231,'2016-10-17 11:20:52','1900-01-01 00:00:00',1,0,1),(17480,'4753','Mereville','MEREVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:20:52','1900-01-01 00:00:00',1,0,1),(17481,'37541','Mergozzo','MERGOZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17482,'6664','Meribel','MERIBEL',NULL,'','France','',0,0,76,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17483,'41385','Meribel-mottaret','MERIBEL-MOTTARET',NULL,'','France','',0,0,76,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17484,'14129','Merida','MERIDA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17485,'3644','Merida','MERIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17486,'32200','Merida','MERIDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17487,'19106','Meriden','MERIDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17488,'8548','Meriden','MERIDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17489,'27886','Meridian','MERIDIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:55','1900-01-01 00:00:00',1,0,1),(17490,'5217','Merignac','MERIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17491,'34240','Merimbula','MERIMBULA',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17492,'6484','Merindol','MERINDOL',NULL,'','France','',0,0,76,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17493,'15132','Merivale','MERIVALE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17494,'30795','Merkel','MERKEL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17495,'23288','Merligen','MERLIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17496,'29707','Merlin','MERLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17497,'23058','Merlischachen','MERLISCHACHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17498,'26141','Merlo','MERLO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17499,'26266','Merlynston','MERLYNSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17500,'26726','Mermaid Beach','MERMAID BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17501,'39919','Merom Golan','MEROM GOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17502,'11294','Merone','MERONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17503,'21099','Merriam','MERRIAM',NULL,'','United States','',0,0,231,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17504,'28951','Merrick','MERRICK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17505,'34560','Merrickville','MERRICKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17506,'42130','Merrijig','MERRIJIG',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17507,'31816','Merrill','MERRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:59','1900-01-01 00:00:00',1,0,1),(17508,'20939','Merrillville','MERRILLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:59','1900-01-01 00:00:00',1,0,1),(17509,'31817','Merrimac','MERRIMAC',NULL,'','United States','',0,0,231,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17510,'32737','Merrimack','MERRIMACK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17511,'10750','Merrion','MERRION',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17512,'25483','Merritt','MERRITT',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17513,'19480','Merritt Island','MERRITT ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17514,'42425','Mersa Matruh','MERSA MATRUH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17515,'1943','Merseburg','MERSEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17516,'17363','Mersin','MERSIN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17517,'14286','Mersing','MERSING',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17518,'39681','Mers-les-bains','MERS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17519,'39180','Mertesdorf','MERTESDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17520,'8549','Merthyr Tydfil','MERTHYR TYDFIL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17521,'38676','Mertola','MERTOLA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17522,'26267','Merty','MERTY',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:03','1900-01-01 00:00:00',1,0,1),(17523,'30053','Mertz Town','MERTZ TOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:03','1900-01-01 00:00:00',1,0,1),(17524,'30054','Mertztown','MERTZTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17525,'37421','Mery-sur-oise','MERY-SUR-OISE',NULL,'','France','',0,0,76,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17526,'17243','Merzifon','MERZIFON',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17527,'39621','Merzig','MERZIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:05','1900-01-01 00:00:00',1,0,1),(17528,'13694','Merzouga','MERZOUGA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:21:05','1900-01-01 00:00:00',1,0,1),(17529,'12124','Mesagne','MESAGNE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17530,'16183','Mesaieed','MESAIEED',NULL,'','Qatar','',0,0,177,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17531,'16074','Mesao Frio','MESAO FRIO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17532,'28547','Mescalero','MESCALERO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17533,'534','Meschede','MESCHEDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17534,'28548','Mesilla','MESILLA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17535,'38655','Mesnil-saint-pere','MESNIL-SAINT-PERE',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17536,'39424','Mesnil-val-plage','MESNIL-VAL-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17537,'39878','Mespelbrunn','MESPELBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17538,'40013','Mesquer','MESQUER',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17539,'25137','Mesquita','MESQUITA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17540,'30796','Mesquite','MESQUITE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17541,'5571','Messac','MESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17542,'24701','Messancy','MESSANCY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17543,'5218','Messanges','MESSANGES',NULL,'','France','',0,0,76,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17544,'9536','Messaria','MESSARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17545,'32580','Messina','MESSINA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17546,'13007','Messina','MESSINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17547,'9537','Messinia','MESSINIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17548,'39131','Messolonghi','MESSOLONGHI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17549,'43436','Messonghi','MESSONGHI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17550,'9538','Messongi','MESSONGI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17551,'2698','Mestas','MESTAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17552,'12896','Mestre','MESTRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17553,'38514','Mestrino','MESTRINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17554,'12125','Meta','META',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17555,'21231','Metairie','METAIRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17556,'9539','Metamorfosi','METAMORFOSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17557,'42329','Metaponto','METAPONTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17558,'25484','Metchosin','METCHOSIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17559,'43549','Metepec','METEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17560,'9697','Methoni','METHONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17561,'31552','Methow Valley','METHOW VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17562,'21440','Methuen','METHUEN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17563,'15218','Methven','METHVEN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17564,'22791','Metis-sur-mer','METIS-SUR-MER',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17565,'17700','Metlakatla','METLAKATLA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17566,'29708','Metolius','METOLIUS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17567,'20653','Metropolis','METROPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17568,'38829','Metsovo','METSOVO',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17569,'20654','Mettawa','METTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17570,'19872','Metter','METTER',NULL,'','United States','',0,0,231,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17571,'535','Mettingen','METTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17572,'682','Mettlach','METTLACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17573,'536','Mettmann','METTMANN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17574,'1653','Metula','METULA',NULL,'','Israel','',0,0,106,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17575,'26522','Metung','METUNG',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17576,'22594','Metzingen','METZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17577,'5085','Metz-tessy','METZ-TESSY',NULL,'','France','',0,0,76,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17578,'4397','Meudon','MEUDON',NULL,'','France','',0,0,76,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17579,'4754','Meulan','MEULAN',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17580,'4398','Meurthe-et-moselle','MEURTHE-ET-MOSELLE',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17581,'4399','Meuse','MEUSE',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17582,'42966','Mexborough','MEXBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17583,'30797','Mexia','MEXIA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17584,'13906','Mexicali','MEXICALI',NULL,'','Mexico','',0,0,141,'2016-10-17 11:21:17','1900-01-01 00:00:00',1,0,1),(17585,'27715','Mexico','MEXICO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:17','1900-01-01 00:00:00',1,0,1),(17586,'6048','Mexy','MEXY',NULL,'','France','',0,0,76,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17587,'17701','Meyers Chuck','MEYERS CHUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17588,'44248','Meyerton','MEYERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17589,'21100','Meyetta','MEYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17590,'4957','Meylan','MEYLAN',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17591,'5219','Meyrals','MEYRALS',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17592,'6485','Meyrargues','MEYRARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17593,'6486','Meyreuil','MEYREUIL',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17594,'23437','Meyrin','MEYRIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17595,'39944','Meyronne','MEYRONNE',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17596,'5939','Meyrueis','MEYRUEIS',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17597,'6665','Meyzieu','MEYZIEU',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17598,'39323','Mezokovesd','MEZOKOVESD',NULL,'','Hungary','',0,0,99,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17599,'10108','Mezotur','MEZOTUR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17600,'12126','Mezzana','MEZZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17601,'11296','Mezzegra','MEZZEGRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17602,'32640','Mfuwe','MFUWE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17603,'14199','Mgarr','MGARR',NULL,'','Malta','',0,0,135,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17604,'40418','Mhamid','MHAMID',NULL,'','Morocco','',0,0,148,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17605,'39112','Mhlambanyatsi','MHLAMBANYATSI',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17606,'17405','Mi Chih','MI CHIH',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17607,'13522','Mia-dong','MIA-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17608,'2699','Miami Platja','MIAMI PLATJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:23','1900-01-01 00:00:00',1,0,1),(17609,'40471','Miandrivazo','MIANDRIVAZO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17610,'12127','Miane','MIANE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17611,'15309','Mianwali','MIANWALI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17612,'23996','Mianyang','MIANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17613,'34887','Mianzhu','MIANZHU',NULL,'','China','',0,0,46,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17614,'17444','Miaoli','MIAOLI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17615,'19490','Micanopy','MICANOPY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17616,'7205','Michaelwood','MICHAELWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17617,'16268','Michajlovskoje','MICHAJLOVSKOJE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17618,'456','Michelstadt','MICHELSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17619,'793','Michendorf','MICHENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17620,'20940','Michigan City','MICHIGAN CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17621,'13582','Micoud','MICOUD',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17622,'9933','Mid Levels','MID LEVELS',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17623,'32478','Middelburg','MIDDELBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17624,'14697','Middelburg','MIDDELBURG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17625,'2194','Middelfart','MIDDELFART',NULL,'','Denmark','',0,0,59,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17626,'23610','Middle Chaoyang','MIDDLE CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17627,'9994','Middle Dalmatia','MIDDLE DALMATIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17628,'79','Middle Rhine','MIDDLE RHINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17629,'21441','Middleboro','MIDDLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:27','1900-01-01 00:00:00',1,0,1),(17630,'29429','Middleburg','MIDDLEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:21:28','1900-01-01 00:00:00',1,0,1),(17631,'20941','Middlebury','MIDDLEBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:29','1900-01-01 00:00:00',1,0,1),(17632,'21442','Middlefield','MIDDLEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17633,'8553','Middleham','MIDDLEHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17634,'26268','Middlemount','MIDDLEMOUNT',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17635,'33692','Middlesboro','MIDDLESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17636,'36329','Middlesborough','MIDDLESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17637,'1468','Middlesbrough','MIDDLESBROUGH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17638,'21443','Middleton','MIDDLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17639,'8555','Middleton','MIDDLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17640,'8558','Middlewich','MIDDLEWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:36','1900-01-01 00:00:00',1,0,1),(17641,'40407','Midge Point','MIDGE POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:36','1900-01-01 00:00:00',1,0,1),(17642,'42967','Midgham','MIDGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17643,'8559','Midhurst','MIDHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17644,'34561','Midland','MIDLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17645,'22168','Midland','MIDLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17646,'10812','Midleton','MIDLETON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:38','1900-01-01 00:00:00',1,0,1),(17647,'31173','Midlothian','MIDLOTHIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:38','1900-01-01 00:00:00',1,0,1),(17648,'7206','Midlothian','MIDLOTHIAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17649,'25337','Midnapore','MIDNAPORE',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17650,'17174','Midoun','MIDOUN',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17651,'18668','Midpines','MIDPINES',NULL,'','United States','',0,0,231,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17652,'32581','Midrand','MIDRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17653,'40729','Midsomer Norton','MIDSOMER NORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17654,'16835','Midsommarkransen','MIDSOMMARKRANSEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17655,'28954','Midtown','MIDTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17656,'33359','Midvale','MIDVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:41','1900-01-01 00:00:00',1,0,1),(17657,'7207','Mid-wales','MID-WALES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:41','1900-01-01 00:00:00',1,0,1),(17658,'19875','Midway','MIDWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:42','1900-01-01 00:00:00',1,0,1),(17659,'32929','Midwest City','MIDWEST CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17660,'39450','Miedzybrodzie Bialskie','MIEDZYBRODZIE BIALSKIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17661,'15728','Miedzyzdroje','MIEDZYZDROJE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17662,'39791','Mielenko','MIELENKO',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17663,'38297','Mielno','MIELNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17664,'24483','Mieming','MIEMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17665,'42397','Miercurea Ciuc','MIERCUREA CIUC',NULL,'','Romania','',0,0,179,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17666,'16224','Miercurea-ciuc','MIERCUREA-CIUC',NULL,'','Romania','',0,0,179,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17667,'3095','Mieres','MIERES',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17668,'14602','Mierlo','MIERLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17669,'37521','Mierzecice','MIERZECICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17670,'258','Miesbach','MIESBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17671,'30056','Mifflintown','MIFFLINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17672,'30057','Mifflinville','MIFFLINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:45','1900-01-01 00:00:00',1,0,1),(17673,'12129','Migliarino','MIGLIARINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:45','1900-01-01 00:00:00',1,0,1),(17674,'6351','Mignaloux-beauvoir','MIGNALOUX-BEAUVOIR',NULL,'','France','',0,0,76,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17675,'16269','Migolosci','MIGOLOSCI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17676,'42885','Mihara','MIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17677,'3267','Mijas','MIJAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17678,'14685','Mijdrecht','MIJDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17679,'40784','Mijoux','MIJOUX',NULL,'','France','',0,0,76,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17680,'3940','Mikkeli','MIKKELI',NULL,'','Finland','',0,0,75,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17681,'42283','Mikolajki','MIKOLAJKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17682,'43103','Mikri Vigla','MIKRI VIGLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17683,'41865','Mikulov','MIKULOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17684,'27445','Milaca','MILACA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17685,'37930','Milagros','MILAGROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:48','1900-01-01 00:00:00',1,0,1),(17686,'33210','Milan','MILAN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:48','1900-01-01 00:00:00',1,0,1),(17687,'12725','Milano Marittima','MILANO MARITTIMA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17688,'17341','Milas','MILAS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17689,'39291','Milawa','MILAWA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17690,'12130','Milazzo','MILAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17691,'33027','Milbank','MILBANK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17692,'21893','Milbridge','MILBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17693,'8560','Mildenhall','MILDENHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17694,'34241','Mildura','MILDURA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17695,'28000','Miles City','MILES CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17696,'30058','Milesburg','MILESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17697,'30059','Milford','MILFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17698,'8561','Milford','MILFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:53','1900-01-01 00:00:00',1,0,1),(17699,'10813','Milford','MILFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17700,'15133','Milford Sound','MILFORD SOUND',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17701,'14162','Mili','MILI',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17702,'26269','Milingimbi','MILINGIMBI',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17703,'24285','Miliou','MILIOU',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17704,'4400','Milky Way','MILKY WAY',NULL,'','France','',0,0,76,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17705,'14603','Mill','MILL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17706,'26270','Mill Park','MILL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:57','1900-01-01 00:00:00',1,0,1),(17707,'43673','Millaa Millaa','MILLAA MILLAA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:57','1900-01-01 00:00:00',1,0,1),(17708,'28142','Millard','MILLARD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:58','1900-01-01 00:00:00',1,0,1),(17709,'6112','Millau','MILLAU',NULL,'','France','',0,0,76,'2016-10-17 11:21:58','1900-01-01 00:00:00',1,0,1),(17710,'31174','Millboro Springs','MILLBORO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:59','1900-01-01 00:00:00',1,0,1),(17711,'18671','Millbrae','MILLBRAE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:59','1900-01-01 00:00:00',1,0,1),(17712,'28956','Millbrook','MILLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:00','1900-01-01 00:00:00',1,0,1),(17713,'29436','Millbury','MILLBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:01','1900-01-01 00:00:00',1,0,1),(17714,'33362','Millcreek','MILLCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:01','1900-01-01 00:00:00',1,0,1),(17715,'19110','Milldale','MILLDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:02','1900-01-01 00:00:00',1,0,1),(17716,'19876','Milledgeville','MILLEDGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:02','1900-01-01 00:00:00',1,0,1),(17717,'19877','Millen','MILLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:03','1900-01-01 00:00:00',1,0,1),(17718,'33028','Miller','MILLER',NULL,'','United States','',0,0,231,'2016-10-17 11:22:03','1900-01-01 00:00:00',1,0,1),(17719,'29437','Millersburg','MILLERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17720,'30061','Millersville','MILLERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17721,'2195','Millinge','MILLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17722,'33211','Millington','MILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17723,'21895','Millinocket','MILLINOCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17724,'21446','Millis','MILLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17725,'39324','Millom','MILLOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17726,'19229','Millsboro','MILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17727,'27008','Millstatt','MILLSTATT',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17728,'10822','Milltown','MILLTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17729,'28341','Millville','MILLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17730,'32479','Milnerton','MILNERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17731,'8563','Milngavie','MILNGAVIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17732,'12131','Milo','MILO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17733,'38452','Milon-la-chapelle','MILON-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17734,'9541','Milos','MILOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17735,'15610','Milowka','MILOWKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17736,'13975','Milpa Alta','MILPA ALTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17737,'18672','Milpitas','MILPITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17738,'30062','Milroy','MILROY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17739,'34242','Milsons Point','MILSONS POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:09','1900-01-01 00:00:00',1,0,1),(17740,'259','Miltenberg','MILTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:09','1900-01-01 00:00:00',1,0,1),(17741,'1469','Milton Keynes','MILTON KEYNES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17742,'7208','Milton-under-wychwood','MILTON-UNDER-WYCHWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17743,'41512','Miltown Malbay','MILTOWN MALBAY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17744,'31821','Milwaukee','MILWAUKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17745,'29709','Milwaukie','MILWAUKIE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:12','1900-01-01 00:00:00',1,0,1),(17746,'42886','Mimasaka','MIMASAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:12','1900-01-01 00:00:00',1,0,1),(17747,'6487','Mimet','MIMET',NULL,'','France','',0,0,76,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17748,'5220','Mimizan','MIMIZAN',NULL,'','France','',0,0,76,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17749,'41758','Mina Clavero','MINA CLAVERO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17750,'35742','Minabe','MINABE',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17751,'35746','Minakami','MINAKAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17752,'34563','Minaki','MINAKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17753,'13295','Minami','MINAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17754,'35741','Minamiawaji','MINAMIAWAJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17755,'35745','Minamichita','MINAMICHITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17756,'35747','Minamiizu','MINAMIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17757,'35735','Minamioguni','MINAMIOGUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17758,'37075','Minas','MINAS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17759,'13969','Minatitlan','MINATITLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17760,'13296','Minatomachi','MINATOMACHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17761,'17005','Minburi','MINBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17762,'8569','Minchinhampton','MINCHINHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17763,'15456','Mindanao','MINDANAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17764,'24143','Mindelo','MINDELO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17765,'28144','Minden','MINDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17766,'537','Minden','MINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17767,'15457','Mindoro','MINDORO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17768,'8570','Minehead','MINEHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17769,'30801','Mineola','MINEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:16','1900-01-01 00:00:00',1,0,1),(17770,'31175','Mineral','MINERAL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:16','1900-01-01 00:00:00',1,0,1),(17771,'39313','Mineral Del Monte','MINERAL DEL MONTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:17','1900-01-01 00:00:00',1,0,1),(17772,'16270','Mineralnye Vody','MINERALNYE VODY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17773,'32012','Mineralwells','MINERALWELLS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17774,'12132','Minerbio','MINERBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17775,'38821','Minerva','MINERVA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17776,'38990','Minervino Di Lecce','MINERVINO DI LECCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17777,'14315','Mines City','MINES CITY',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17778,'34564','Minett','MINETT',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17779,'23906','Minhang','MINHANG',NULL,'','China','',0,0,46,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17780,'43437','Minies','MINIES',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17781,'42946','Miniloc Island','MINILOC ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17782,'35765','Minimiboso','MINIMIBOSO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17783,'27447','Minneapolis','MINNEAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17784,'27448','Minneapolis-st. Paul Area','MINNEAPOLIS-ST. PAUL AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17785,'25611','Minnedosa','MINNEDOSA',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17786,'27449','Minnesota City','MINNESOTA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17787,'27450','Minnetonka','MINNETONKA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17788,'31824','Minocqua','MINOCQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17789,'42887','Minoh','MINOH',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17790,'20656','Minonk','MINONK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17791,'2701','Minorca','MINORCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17792,'12133','Minori','MINORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17793,'28075','Minot','MINOT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17794,'24898','Minsk','MINSK',NULL,'','Belarus','',0,0,20,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17795,'33937','Mint Hill','MINT HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17796,'43633','Mintaro','MINTARO',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17797,'34244','Minto','MINTO',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17798,'17702','Minto','MINTO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17799,'33492','Minturn','MINTURN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17800,'39670','Minturno','MINTURNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17801,'23289','Minusio','MINUSIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17802,'13618','Minuwangoda','MINUWANGODA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17803,'6856','Minvoul','MINVOUL',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17804,'22171','Mio','MIO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17805,'4401','Miomo','MIOMO',NULL,'','France','',0,0,76,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17806,'6666','Mionnay','MIONNAY',NULL,'','France','',0,0,76,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17807,'12897','Mira','MIRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17808,'22792','Mirabel','MIRABEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17809,'12134','Miradolo Terme','MIRADOLO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17810,'15412','Miraflores','MIRAFLORES',NULL,'','Peru','',0,0,172,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17811,'2971','Miraflores De La Sierra','MIRAFLORES DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17812,'19496','Miramar','MIRAMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17813,'13907','Miramar','MIRAMAR',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17814,'3764','Miramar','MIRAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:27','1900-01-01 00:00:00',1,0,1),(17815,'12726','Miramare','MIRAMARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:27','1900-01-01 00:00:00',1,0,1),(17816,'6352','Mirambeau','MIRAMBEAU',NULL,'','France','',0,0,76,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17817,'34405','Miramichi','MIRAMICHI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17818,'5221','Miramont-de-guyenne','MIRAMONT-DE-GUYENNE',NULL,'','France','',0,0,76,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17819,'18675','Miranda','MIRANDA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17820,'875','Miranda','MIRANDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17821,'34245','Miranda','MIRANDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17822,'3463','Miranda De Ebro','MIRANDA DE EBRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17823,'15891','Miranda Do Douro','MIRANDA DO DOURO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17824,'41652','Mirandela','MIRANDELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17825,'12898','Mirano','MIRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17826,'40411','Mirbat','MIRBAT',NULL,'','Oman','',0,0,165,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17827,'6049','Mirecourt','MIRECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17828,'38535','Miremont','MIREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17829,'6113','Mirepoix','MIREPOIX',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17830,'8572','Mirfield','MIRFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17831,'37874','Mirhleft','MIRHLEFT',NULL,'','Morocco','',0,0,148,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17832,'14383','Miri','MIRI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17833,'6667','Miribel','MIRIBEL',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17834,'13753','Mirihi','MIRIHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17835,'16300','Mirnyy','MIRNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17836,'15310','Mirpur Khas','MIRPUR KHAS',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17837,'40869','Mirzapur','MIRZAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17838,'16371','Misailovo','MISAILOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17839,'12135','Misano Adriatico','MISANO ADRIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17840,'13297','Misawa','MISAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17841,'20943','Mishawaka','MISHAWAKA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17842,'31825','Mishicot','MISHICOT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17843,'43918','Mishima','MISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17844,'39544','Misilmeri','MISILMERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17845,'42094','Misiones','MISIONES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17846,'7209','Miskin','MISKIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17847,'10096','Miskolc','MISKOLC',NULL,'','Hungary','',0,0,99,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17848,'10077','Miskolc-tapolca','MISKOLC-TAPOLCA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17849,'30254','Misquamicut','MISQUAMICUT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:33','1900-01-01 00:00:00',1,0,1),(17850,'6254','Missillac','MISSILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:22:33','1900-01-01 00:00:00',1,0,1),(17851,'25486','Mission','MISSION',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:34','1900-01-01 00:00:00',1,0,1),(17852,'34565','Mississauga','MISSISSAUGA',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:37','1900-01-01 00:00:00',1,0,1),(17853,'28001','Missoula','MISSOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:37','1900-01-01 00:00:00',1,0,1),(17854,'30804','Missouri City','MISSOURI CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17855,'22793','Mistassini','MISTASSINI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17856,'13005','Misterbianco','MISTERBIANCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17857,'8573','Mistley','MISTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17858,'9543','Mistra','MISTRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17859,'42330','Mistretta','MISTRETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17860,'13565','Misurata','MISURATA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17861,'12136','Misurina','MISURINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17862,'26461','Mitcham','MITCHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17863,'33030','Mitchell','MITCHELL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17864,'26369','Mitchell','MITCHELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17865,'44177','Mithimna','MITHIMNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17866,'9544','Mitilini','MITILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17867,'13393','Mito','MITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17868,'11048','Mitspeh Ramon','MITSPEH RAMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17869,'34246','Mittagong','MITTAGONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17870,'24560','Mittelberg','MITTELBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17871,'6774','Mittelhausen','MITTELHAUSEN',NULL,'','France','',0,0,76,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17872,'457','Mittelkalbach','MITTELKALBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17873,'260','Mittenwald','MITTENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17874,'794','Mittenwalde','MITTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17875,'261','Mitterfels','MITTERFELS',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17876,'262','Mitterfirmiansreut','MITTERFIRMIANSREUT',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17877,'40440','Mittersill','MITTERSILL',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17878,'263','Mitwitz','MITWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17879,'6857','Mitzic','MITZIC',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17880,'42619','Mitzpe Ramon','MITZPE RAMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17881,'18683','Mi-wuk Village','MI-WUK VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17882,'43179','Miyagi','MIYAGI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17883,'35711','Miyajima Island','MIYAJIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17884,'13168','Miyake Jima','MIYAKE JIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17885,'35744','Miyako Jima Island','MIYAKO JIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17886,'39604','Miyakojima, Okinawa','MIYAKOJIMA, OKINAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17887,'13299','Miyakonojo','MIYAKONOJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17888,'43919','Miyawaka','MIYAWAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17889,'13300','Miyazaki','MIYAZAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17890,'35743','Miyazu','MIYAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17891,'23893','Miyun','MIYUN',NULL,'','China','',0,0,46,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17892,'3870','Mizan Teferi','MIZAN TEFERI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17893,'16769','Mjolby','MJOLBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17894,'32480','Mkambati','MKAMBATI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17895,'32525','Mkuze','MKUZE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17896,'10024','Mlini','MLINI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17897,'44314','Mljet','MLJET',NULL,'','Croatia','',0,0,55,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17898,'32481','Mmabatho','MMABATHO',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17899,'16396','Mnevniki','MNEVNIKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17900,'33363','Moab','MOAB',NULL,'','United States','',0,0,231,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17901,'6848','Moabi','MOABI',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17902,'4099','Moala','MOALA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17903,'34247','Moama','MOAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17904,'43028','Moana','MOANA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17905,'41568','Moana','MOANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17906,'10184','Moanamani','MOANAMANI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17907,'6843','Moanda','MOANDA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17908,'24030','Moanda','MOANDA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17909,'27716','Moberly','MOBERLY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17910,'17917','Mobile','MOBILE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17911,'33032','Mobridge','MOBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:46','1900-01-01 00:00:00',1,0,1),(17912,'33938','Mocksville','MOCKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:46','1900-01-01 00:00:00',1,0,1),(17913,'31554','Moclips','MOCLIPS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17914,'39255','Moconesi','MOCONESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17915,'6668','Modane','MODANE',NULL,'','France','',0,0,76,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17916,'32582','Modderfontein','MODDERFONTEIN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17917,'18684','Modesto','MODESTO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:48','1900-01-01 00:00:00',1,0,1),(17918,'12847','Modica','MODICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17919,'27110','Modling','MODLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17920,'15645','Modlnica','MODLNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17921,'44047','Modlniczka','MODLNICZKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17922,'12137','Modugno','MODUGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17923,'26523','Moe','MOE',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17924,'5572','Moelan-sur-mer','MOELAN-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17925,'12138','Moena','MOENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17926,'1694','Moenchengladbach','MOENCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17927,'14604','Moerdijk','MOERDIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17928,'80','Moerfelden-walldorf','MOERFELDEN-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17929,'538','Moers','MOERS',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17930,'8574','Moffat','MOFFAT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17931,'37164','Moga','MOGA',NULL,'','India','',0,0,101,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17932,'3464','Mogarraz','MOGARRAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17933,'11301','Moggiona','MOGGIONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17934,'25210','Mogi Das Cruzes','MOGI DAS CRUZES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17935,'24896','Mogilev','MOGILEV',NULL,'','Belarus','',0,0,20,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17936,'12899','Mogliano Veneto','MOGLIANO VENETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17937,'36173','Mogro','MOGRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17938,'41381','Moguer','MOGUER',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17939,'38793','Mohale','MOHALE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17940,'40822','Mohali','MOHALI',NULL,'','India','Mohali',19,0,101,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17941,'43970','Mohammedia','MOHAMMEDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17942,'10559','Mohan','MOHAN',NULL,'','India','',0,0,101,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17943,'28959','Mohegan Lake','MOHEGAN LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17944,'24139','Moheli','MOHELI',NULL,'','Comoros','',0,0,50,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17945,'15311','Mohenjo Daro','MOHENJO DARO',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17946,'40574','Mohill','MOHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17947,'30064','Mohnton','MOHNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17948,'14860','Moi','MOI',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17949,'42707','Moina','MOINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17950,'12139','Moio Alcantara','MOIO ALCANTARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17951,'28960','Moira','MOIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17952,'14921','Mo-i-rana','MO-I-RANA',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17953,'4958','Moirans','MOIRANS',NULL,'','France','',0,0,76,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17954,'5110','Moissac','MOISSAC',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17955,'6488','Moissac-bellevue','MOISSAC-BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17956,'5864','Moissy-cramayel','MOISSY-CRAMAYEL',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17957,'5658','Moisy','MOISY',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17958,'18686','Mojave','MOJAVE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17959,'42798','Mojokerto','MOJOKERTO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17960,'18687','Mokelumne Hill','MOKELUMNE HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17961,'20657','Mokena','MOKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17962,'13631','Mokhotlong','MOKHOTLONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17963,'15697','Mokotow','MOKOTOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17964,'13501','Mokpo','MOKPO',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17965,'35812','Mokpo','MOKPO',NULL,'','South Korea','',0,0,197,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17966,'20080','Mokuleia','MOKULEIA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17967,'14402','Mokuti Lodge','MOKUTI LODGE',NULL,'','Namibia','',0,0,151,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17968,'37289','Molazzana','MOLAZZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17969,'2298','Molby','MOLBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17970,'8575','Mold','MOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17971,'14982','Molde','MOLDE',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17972,'43667','Mole Creek','MOLE CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17973,'14544','Molenhoek','MOLENHOEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17974,'41384','Molieres','MOLIERES',NULL,'','France','',0,0,76,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17975,'39963','Moliéres','MOLIÉRES',NULL,'','France','',0,0,76,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17976,'5222','Moliets-et-maa','MOLIETS-ET-MAA',NULL,'','France','',0,0,76,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17977,'12140','Molina Di Ledro','MOLINA DI LEDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17978,'39991','Molinaseca','MOLINASECA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17979,'20658','Moline','MOLINE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17980,'12141','Molinella','MOLINELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17981,'12142','Molini Di Tures','MOLINI DI TURES',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17982,'2702','Molins De Rei','MOLINS DE REI',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17983,'12143','Molise','MOLISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17984,'4402','Molitg-les-bains','MOLITG-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17985,'8576','Molland','MOLLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17986,'43855','Mollem','MOLLEM',NULL,'','India','',0,0,101,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17987,'2703','Mollet Del Valles','MOLLET DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17988,'8577','Mollington','MOLLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17989,'37687','Mollkirch','MOLLKIRCH',NULL,'','France','',0,0,76,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17990,'728','Molln','MOLLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17991,'41492','Mollo','MOLLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17992,'37945','Molló','MOLLÓ',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17993,'34248','Mollymook','MOLLYMOOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17994,'16890','Molndal','MOLNDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17995,'6775','Molsheim','MOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17996,'11302','Moltrasio','MOLTRASIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17997,'12144','Molveno','MOLVENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17998,'39921','Molville','MOLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(17999,'9545','Molyvos','MOLYVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18000,'11303','Mombaruzzo','MOMBARUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18001,'13442','Mombasa','MOMBASA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18002,'35780','Mombasa-bamburi Beac','MOMBASA-BAMBURI BEAC',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18003,'35781','Mombasa-diani','MOMBASA-DIANI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18004,'35782','Mombasa-kikambala','MOMBASA-KIKAMBALA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18005,'35784','Mombasa-nyali Beach','MOMBASA-NYALI BEACH',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18006,'35785','Mombasa-shanzu Beach','MOMBASA-SHANZU BEACH',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18007,'35786','Mombasa-tiwi','MOMBASA-TIWI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18008,'4100','Momi','MOMI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18009,'39165','Mompiche','MOMPICHE',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18010,'42081','Mon State','MON STATE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18011,'30065','Monaca','MONACA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18012,'3269','Monachil','MONACHIL',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18013,'1589','Monaco','MONACO',NULL,'','France','',0,0,76,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18014,'13715','Monaco','MONACO',NULL,'','Monaco','',0,0,145,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18015,'36227','Monaco-beausoleil','MONACO-BEAUSOLEIL',NULL,'','France','',0,0,76,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18016,'36238','Monaco-cap D\'ail','MONACO-CAP D\'AIL',NULL,'','France','',0,0,76,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18017,'13714','Monaco-ville','MONACO-VILLE',NULL,'','Monaco','Monaco-Ville',0,0,145,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18018,'30805','Monahans','MONAHANS',NULL,'','United States','',0,0,231,'2016-10-17 11:23:05','1900-01-01 00:00:00',1,0,1),(18019,'33493','Monarch','MONARCH',NULL,'','United States','',0,0,231,'2016-10-17 11:23:05','1900-01-01 00:00:00',1,0,1),(18020,'12900','Monastier Di Treviso','MONASTIER DI TREVISO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18021,'17165','Monastir','MONASTIR',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18022,'1470','Monastir- Skanes','MONASTIR- SKANES',NULL,'','TUNISIA','',0,0,220,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18023,'40709','Monastiraki','MONASTIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18024,'13169','Monbetsu','MONBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18025,'3566','Moncada','MONCADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18026,'12145','Moncalieri','MONCALIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18027,'16067','Moncao','MONCAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18028,'15933','Moncarapacho','MONCARAPACHO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18029,'6050','Moncel Les Luneville','MONCEL LES LUNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18030,'539','Monchengladbach','MONCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18031,'2033','Mönchengladbach','MÖNCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18032,'30373','Moncks Corner','MONCKS CORNER',NULL,'','United States','',0,0,231,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18033,'44076','Monclar-de-quercy','MONCLAR-DE-QUERCY',NULL,'','France','',0,0,76,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18034,'13961','Monclova','MONCLOVA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18035,'3765','Moncofar','MONCOFAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18036,'5107','Moncoutant','MONCOUTANT',NULL,'','France','',0,0,76,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18037,'28145','Moncton','MONCTON',NULL,'','United States','',0,0,231,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18038,'34406','Moncton','MONCTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18039,'37775','Moncucco Torinese','MONCUCCO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18040,'3270','Monda','MONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18041,'40062','Mondana','MONDANA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18042,'3670','Mondariz','MONDARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18043,'3414','Mondejar','MONDEJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18044,'41038','Mondello','MONDELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18045,'32410','Mondeor','MONDEOR',NULL,'','South Africa','',0,0,195,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18046,'4872','Mondeville','MONDEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18047,'39274','Mondim De Basto','MONDIM DE BASTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18048,'3567','Mondonedo','MONDONEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18049,'13651','Mondorf-les-bains','MONDORF-LES-BAINS',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18050,'31826','Mondovi','MONDOVI',NULL,'','United States','',0,0,231,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18051,'38447','Mondovi','MONDOVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18052,'39395','Mondragone','MONDRAGONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18053,'27138','Mondsee','MONDSEE',NULL,'','Austria','Mondsee',0,0,14,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18054,'42724','Mondulkiri','MONDULKIRI',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18055,'12146','Moneglia','MONEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18056,'3568','Monells','MONELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18057,'9794','Monemvasia','MONEMVASIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18058,'42495','Monemvassia','MONEMVASSIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18059,'30066','Monessen','MONESSEN',NULL,'','United States','',0,0,231,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18060,'5223','Monestier','MONESTIER',NULL,'','France','',0,0,76,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18061,'5474','Moneteau','MONETEAU',NULL,'','France','',0,0,76,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18062,'4404','Monetier-les-bains','MONETIER-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18063,'27717','Monett','MONETT',NULL,'','United States','',0,0,231,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18064,'44191','Moneymore','MONEYMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18065,'8578','Moneyreagh','MONEYREAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18066,'37872','Monfalcone','MONFALCONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18067,'5224','Monflanquin','MONFLANQUIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18068,'16018','Monforte','MONFORTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18069,'37431','Monforte Dalba','MONFORTE DALBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18070,'3671','Monforte De Lemos','MONFORTE DE LEMOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18071,'39285','Monfortinho','MONFORTINHO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18072,'9934','Mong Kok','MONG KOK',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18073,'3569','Mongat','MONGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18074,'32647','Mongu','MONGU',NULL,'','Zambia','',0,0,242,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18075,'540','Monheim','MONHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18076,'8579','Monifieth','MONIFIETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18077,'12147','Moniga Del Garda','MONIGA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18078,'2704','Monistrol De Montserrat','MONISTROL DE MONTSERRAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18079,'14279','Monkey Bay','MONKEY BAY',NULL,'','Malawi','',0,0,131,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18080,'26603','Monkey Mia','MONKEY MIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18081,'10849','Monkstown','MONKSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18082,'21743','Monkton','MONKTON',NULL,'','United States','',0,0,231,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18083,'8580','Monkton','MONKTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18084,'20660','Monmouth','MONMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:23:17','1900-01-01 00:00:00',1,0,1),(18085,'8581','Monmouth','MONMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:17','1900-01-01 00:00:00',1,0,1),(18086,'6669','Monnetier-mornex','MONNETIER-MORNEX',NULL,'','France','',0,0,76,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18087,'43346','Monnickendam','MONNICKENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18088,'16552','Mono Island','MONO ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18089,'38299','Monodendri','MONODENDRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18090,'31827','Monona','MONONA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18091,'12808','Monopoli','MONOPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18092,'5225','Monpazier','MONPAZIER',NULL,'','France','',0,0,76,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18093,'12148','Monreale','MONREALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:19','1900-01-01 00:00:00',1,0,1),(18094,'22172','Monroe','MONROE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:19','1900-01-01 00:00:00',1,0,1),(18095,'30067','Monroeville','MONROEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18096,'18688','Monrovia','MONROVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18097,'42269','Monrovia','MONROVIA',NULL,'','Liberia','',0,0,122,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18098,'24665','Mons','MONS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18099,'37354','Monsampolo Del Tronto','MONSAMPOLO DEL TRONTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18100,'43331','Monsanto','MONSANTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18101,'15778','Monsaraz','MONSARAZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18102,'42448','Monschau','MONSCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18103,'12149','Monselice','MONSELICE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18104,'6185','Mons-en-baroeul','MONS-EN-BAROEUL',NULL,'','France','',0,0,76,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18105,'12150','Monsummano','MONSUMMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18106,'14266','Mont Choisy','MONT CHOISY',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:23:25','1900-01-01 00:00:00',1,0,1),(18107,'37825','Monta','MONTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18108,'644','Montabaur','MONTABAUR',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18109,'8582','Montacute','MONTACUTE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18110,'11305','Montafia','MONTAFIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18111,'39383','Montagano','MONTAGANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18112,'38605','Montagnac','MONTAGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18113,'37343','Montagnac-montpezat','MONTAGNAC-MONTPEZAT',NULL,'','France','',0,0,76,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18114,'12151','Montagnana','MONTAGNANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18115,'6670','Montagnole','MONTAGNOLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18116,'4405','Montagny-lès-beaune','MONTAGNY-LÈS-BEAUNE',NULL,'','France','',0,0,76,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18117,'32386','Montagu','MONTAGU',NULL,'','South Africa','',0,0,195,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18118,'26850','Montagu Bay','MONTAGU BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18119,'22174','Montague','MONTAGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18120,'25821','Montague','MONTAGUE',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18121,'6114','Montaigu-de-quercy','MONTAIGU-DE-QUERCY',NULL,'','France','',0,0,76,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18122,'6671','Montailleur','MONTAILLEUR',NULL,'','France','',0,0,76,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18123,'12152','Montaione','MONTAIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18124,'11306','Montalbano','MONTALBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18125,'12154','Montalcino','MONTALCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18126,'13038','Montaldo Torinese','MONTALDO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18127,'37487','Montale','MONTALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18128,'16075','Montalegre','MONTALEGRE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18129,'28003','Montana City','MONTANA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18130,'3766','Montanejos','MONTANEJOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18131,'41692','Montano Lucino','MONTANO LUCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18132,'18689','Montara','MONTARA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18133,'37811','Montargil','MONTARGIL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18134,'5659','Montargis','MONTARGIS',NULL,'','France','',0,0,76,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18135,'12155','Montasola','MONTASOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18136,'28961','Montauk','MONTAUK',NULL,'','United States','',0,0,231,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18137,'40559','Montauro','MONTAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18138,'6489','Montauroux','MONTAUROUX',NULL,'','France','',0,0,76,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18139,'5475','Montbard','MONTBARD',NULL,'','France','',0,0,76,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18140,'5660','Montbazon','MONTBAZON',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18141,'5781','Montbeliard','MONTBELIARD',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18142,'38586','Montblanc','MONTBLANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18143,'4406','Montbonnot Saint Martin','MONTBONNOT SAINT MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18144,'6672','Montboucher-sur-jabron','MONTBOUCHER-SUR-JABRON',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18145,'2705','Montbrio Del Camp','MONTBRIO DEL CAMP',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18146,'6673','Montbrison','MONTBRISON',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18147,'6353','Montbron','MONTBRON',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18148,'38560','Montbrun-les-bains','MONTBRUN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18149,'41496','Montcada Reixac','MONTCADA REIXAC',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18150,'38449','Montcaret','MONTCARET',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18151,'6186','Montcavrel','MONTCAVREL',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18152,'5476','Montceau-les-mines','MONTCEAU-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18153,'5477','Montchanin','MONTCHANIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18154,'19231','Montchanin','MONTCHANIN',NULL,'','United States','',0,0,231,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18155,'4407','Montchavin','MONTCHAVIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:36','1900-01-01 00:00:00',1,0,1),(18157,'18690','Montclair','MONTCLAIR',NULL,'','United States','',0,0,231,'2016-10-17 11:23:36','1900-01-01 00:00:00',1,0,1),(18158,'6490','Montclar','MONTCLAR',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18159,'5940','Montclus','MONTCLUS',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18160,'41382','Mont-de-marsan','MONT-DE-MARSAN',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18161,'4408','Mont-dore','MONT-DORE',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18162,'41154','Monte Cara','MONTE CARA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18163,'13716','Monte Carlo','MONTE CARLO',NULL,'','Monaco','',0,0,145,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18164,'25104','Monte Dourado','MONTE DOURADO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18165,'16578','Monte Giardino','MONTE GIARDINO',NULL,'','San Marino','',0,0,184,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18166,'43812','Monte Patria','MONTE PATRIA',NULL,'','Chile','',0,0,45,'2016-10-17 11:23:39','1900-01-01 00:00:00',1,0,1),(18167,'33212','Monteagle','MONTEAGLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:40','1900-01-01 00:00:00',1,0,1),(18168,'3415','Monteagudo De Las Salinas','MONTEAGUDO DE LAS SALINAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18169,'18692','Montebello','MONTEBELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18170,'22799','Montebello','MONTEBELLO',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18171,'39220','Montebello Vicentino','MONTEBELLO VICENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18172,'11310','Montebonello','MONTEBONELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18173,'12162','Montecalvo In Foglia','MONTECALVO IN FOGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18174,'40551','Montecarlo','MONTECARLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18175,'12163','Montecassiano','MONTECASSIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18176,'1548','Montecatimi Terme','MONTECATIMI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18177,'1476','Montecatini','MONTECATINI',NULL,'','ITALY','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18178,'42331','Montecatini-fucecchio','MONTECATINI-FUCECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:43','1900-01-01 00:00:00',1,0,1),(18179,'18693','Montecito','MONTECITO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:43','1900-01-01 00:00:00',1,0,1),(18180,'11313','Montecopiolo','MONTECOPIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18181,'3271','Montecorto','MONTECORTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18182,'39398','Montecorvino Rovella','MONTECORVINO ROVELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18183,'12165','Montefalco','MONTEFALCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18184,'12166','Montefano','MONTEFANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18185,'3272','Montefrio','MONTEFRIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18186,'12167','Montegabbione','MONTEGABBIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18187,'35580','Monteggiori','MONTEGGIORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18188,'13091','Montego Bay','MONTEGO BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18189,'11314','Montegridolfo','MONTEGRIDOLFO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18190,'12168','Montegrotto Terme','MONTEGROTTO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18191,'5941','Monteils','MONTEILS',NULL,'','France','',0,0,76,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18192,'39069','Montejaque','MONTEJAQUE',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18193,'12169','Montelanico','MONTELANICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18194,'12170','Monteleone D\'orvieto','MONTELEONE D\'ORVIETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18195,'4907','Montelimar','MONTELIMAR',NULL,'','France','',0,0,76,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18196,'14439','Montelimar','MONTELIMAR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18197,'40522','Montellano','MONTELLANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18198,'32836','Montello','MONTELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18199,'12171','Montelupo Albese','MONTELUPO ALBESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18200,'39504','Montelupone','MONTELUPONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18201,'12173','Montemaggiore Al Metauro','MONTEMAGGIORE AL METAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18202,'39360','Montemarciano','MONTEMARCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18203,'12174','Montemerano','MONTEMERANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18204,'39637','Montemignaio','MONTEMIGNAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18205,'37752','Montemitro','MONTEMITRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18206,'40443','Montemor-o-novo','MONTEMOR-O-NOVO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18207,'12175','Montemurlo','MONTEMURLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18208,'1379','Montenegro','MONTENEGRO',NULL,'','MONTENEGRO','',0,0,466,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18209,'32364','Montenegro Coast','MONTENEGRO COAST',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18210,'42327','Montenero','MONTENERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18211,'11315','Montepaone Lido','MONTEPAONE LIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18212,'37809','Monteprandone','MONTEPRANDONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18213,'12176','Montepulciano','MONTEPULCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18214,'12746','Montereale Valcellina','MONTEREALE VALCELLINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18215,'12177','Monterenzio','MONTERENZIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18216,'18694','Monterey','MONTEREY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:50','1900-01-01 00:00:00',1,0,1),(18217,'24079','Monteria','MONTERIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18218,'12178','Monteriggioni','MONTERIGGIONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18219,'12179','Monteroni D\'arbia','MONTERONI D\'ARBIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18220,'43108','Monterosso - Sicily','MONTEROSSO - SICILY',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18221,'12182','Monterotondo','MONTEROTONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18222,'13908','Monterrey','MONTERREY',NULL,'','Mexico','',0,0,141,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18223,'25090','Montes Claros','MONTES CLAROS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18224,'15936','Montes De Alvor','MONTES DE ALVOR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18225,'41595','Montes De Malaga','MONTES DE MALAGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18226,'39654','Montesano Salentino','MONTESANO SALENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18227,'11316','Montescudaio','MONTESCUDAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18228,'12183','Montesilvano','MONTESILVANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18229,'12184','Montespertoli','MONTESPERTOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18230,'4755','Montesson','MONTESSON',NULL,'','France','',0,0,76,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18231,'40023','Monteux','MONTEUX',NULL,'','France','',0,0,76,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18232,'17921','Montevallo','MONTEVALLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18233,'12185','Montevarchi','MONTEVARCHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18234,'39741','Monteveglio','MONTEVEGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18235,'24231','Monteverde','MONTEVERDE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18236,'11317','Monteverde Nuovo','MONTEVERDE NUOVO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18237,'17535','Montevideo','MONTEVIDEO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18238,'27451','Montevideo','MONTEVIDEO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18239,'5865','Montevrain','MONTEVRAIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18240,'37692','Montezillon','MONTEZILLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18241,'20945','Montezuma','MONTEZUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18242,'912','Montezuma','MONTEZUMA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18243,'6491','Montfavet','MONTFAVET',NULL,'','France','',0,0,76,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18244,'3570','Montferrer','MONTFERRER',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18245,'3571','Montferri','MONTFERRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18246,'5942','Montferrier-sur-lez','MONTFERRIER-SUR-LEZ',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18247,'37788','Montfoort','MONTFOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18248,'4409','Montfort Le Gesnois','MONTFORT LE GESNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18249,'5573','Montfort-sur-meu','MONTFORT-SUR-MEU',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18250,'6492','Montgenevre','MONTGENEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18251,'4756','Montgeron','MONTGERON',NULL,'','France','',0,0,76,'2016-10-17 11:23:58','1900-01-01 00:00:00',1,0,1),(18252,'20946','Montgomery','MONTGOMERY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:58','1900-01-01 00:00:00',1,0,1),(18253,'8583','Montgomery','MONTGOMERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:00','1900-01-01 00:00:00',1,0,1),(18254,'25338','Montgomery - University Of Calgary','MONTGOMERY - UNIVERSITY OF CALGARY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:00','1900-01-01 00:00:00',1,0,1),(18255,'30068','Montgomeryville','MONTGOMERYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18256,'39449','Monthey','MONTHEY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18257,'4834','Monthieux','MONTHIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18258,'11318','Monticelli Terme','MONTICELLI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18259,'4757','Monticello','MONTICELLO',NULL,'','France','',0,0,76,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18260,'19498','Monticello','MONTICELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:24:02','1900-01-01 00:00:00',1,0,1),(18261,'12186','Montichiari','MONTICHIARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18262,'12187','Monticiano','MONTICIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18263,'12188','Montieri','MONTIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18264,'4904','Montignac','MONTIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18265,'12189','Montignoso','MONTIGNOSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18266,'5329','Montigny','MONTIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18267,'5478','Montigny-en-morvan','MONTIGNY-EN-MORVAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18268,'40299','Montigny-la-resle','MONTIGNY-LA-RESLE',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18269,'4758','Montigny-le-bretonneux','MONTIGNY-LE-BRETONNEUX',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18270,'38344','Montigny-le-roi','MONTIGNY-LE-ROI',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18271,'3273','Montilla','MONTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18272,'11319','Montirone','MONTIRONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18273,'35583','Montisi','MONTISI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18274,'5823','Montivilliers','MONTIVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18275,'22801','Mont-laurier','MONT-LAURIER',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18276,'4759','Montlhery','MONTLHERY',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18277,'44077','Montlivault','MONTLIVAULT',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18278,'5943','Mont-louis','MONT-LOUIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18279,'5661','Montlouis-sur-loire','MONTLOUIS-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18280,'5330','Montlucon','MONTLUCON',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18281,'6674','Montluel','MONTLUEL',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18282,'22802','Montmagny','MONTMAGNY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18283,'4410','Montmartre','MONTMARTRE',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18284,'40710','Montmelard','MONTMELARD',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18285,'6675','Montmelian','MONTMELIAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18286,'3572','Montmelo','MONTMELO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18287,'26524','Montmorency','MONTMORENCY',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18288,'6354','Montmorillon','MONTMORILLON',NULL,'','France','',0,0,76,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18289,'38768','Montone','MONTONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18290,'11320','Montopoli Val D Arno','MONTOPOLI VAL D ARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18291,'30807','Montopolis','MONTOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18292,'3465','Montorio','MONTORIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18293,'3573','Montornes Del Valles','MONTORNES DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18294,'38106','Montoro','MONTORO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18295,'37351','Montory','MONTORY',NULL,'','France','',0,0,76,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18296,'28965','Montour Falls','MONTOUR FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18297,'30069','Montoursville','MONTOURSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18298,'4411','Montparnasse','MONTPARNASSE',NULL,'','France','',0,0,76,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18299,'20378','Montpelier','MONTPELIER',NULL,'','United States','',0,0,231,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18300,'5944','Montpellier','MONTPELLIER',NULL,'','France','',0,0,76,'2016-10-17 11:24:16','1900-01-01 00:00:00',1,0,1),(18301,'22803','Montreal','MONTREAL',NULL,'','Canada','Montreal',0,0,39,'2016-10-17 11:24:16','1900-01-01 00:00:00',1,0,1),(18302,'35982','Montreal-dorval','MONTREAL-DORVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18303,'22805','Montreal-est','MONTREAL-EST',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18304,'22806','Montreal-nord','MONTREAL-NORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18305,'6255','Montrelais','MONTRELAIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18306,'6256','Montreuil-bellay','MONTREUIL-BELLAY',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18307,'6187','Montreuil-sur-mer','MONTREUIL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18308,'23290','Montreux','MONTREUX',NULL,'','Switzerland','Montreux',0,0,210,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18309,'5662','Montrichard','MONTRICHARD',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18310,'6676','Montriond','MONTRIOND',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18311,'2707','Mont-roig Del Camp','MONT-ROIG DEL CAMP',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18312,'6677','Montrond-les-bains','MONTROND-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18313,'8584','Montrose','MONTROSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18314,'33495','Montrose','MONTROSE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18315,'31177','Montross','MONTROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18316,'4760','Montrouge','MONTROUGE',NULL,'','France','',0,0,76,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18317,'22807','Mont-royal','MONT-ROYAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18318,'6115','Montrozier','MONTROZIER',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18319,'5824','Mont-saint-aignan','MONT-SAINT-AIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18320,'5479','Mont-saint-jean','MONT-SAINT-JEAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18321,'5741','Mont-saint-martin','MONT-SAINT-MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18322,'3574','Montseny','MONTSENY',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18323,'5945','Montseret','MONTSERET',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18324,'14227','Montserrat','MONTSERRAT',NULL,'','Montserrat','',0,0,147,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18325,'37340','Montsoreau','MONTSOREAU',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18326,'4761','Montsoult','MONTSOULT',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18327,'22808','Mont-tremblant','MONT-TREMBLANT',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18328,'2911','Montuiri','MONTUIRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18329,'28344','Montvale','MONTVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18330,'6821','Montvalezan','MONTVALEZAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18331,'38230','Montville','MONTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18332,'33497','Monument','MONUMENT',NULL,'','United States','',0,0,231,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18333,'42064','Monywa','MONYWA',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:24:25','1900-01-01 00:00:00',1,0,1),(18334,'12190','Monza','MONZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18335,'12191','Monzambano','MONZAMBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18336,'3334','Monzon','MONZON',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18337,'12192','Monzuno','MONZUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18338,'19111','Moodus','MOODUS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18339,'21896','Moody','MOODY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18340,'44259','Moofushi Island','MOOFUSHI ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18341,'26273','Moomba','MOOMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18342,'26525','Moonee Ponds','MOONEE PONDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18343,'26274','Moonlight Head','MOONLIGHT HEAD',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18344,'40079','Moonrooka','MOONROOKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18345,'26918','Moorabbin','MOORABBIN',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18346,'16126','Moorea','MOOREA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18347,'36532','Moorea-cooks Bay','MOOREA-COOKS BAY',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18348,'36533','Moorea-hauru Point','MOOREA-HAURU POINT',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18349,'36535','Moorea-maharepa','MOOREA-MAHAREPA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18350,'36534','Moorea-temae','MOOREA-TEMAE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18351,'32014','Moorefield','MOOREFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18352,'33940','Mooresville','MOORESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18353,'27454','Moorhead','MOORHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18354,'26526','Moorooduc','MOOROODUC',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18355,'264','Moosach','MOOSACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18356,'42236','Moosburg','MOOSBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18357,'39994','Moosburg','MOOSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18358,'32118','Moose','MOOSE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18359,'22954','Moose Jaw','MOOSE JAW',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18360,'22955','Moosejaw','MOOSEJAW',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:32','1900-01-01 00:00:00',1,0,1),(18361,'30071','Moosic','MOOSIC',NULL,'','United States','',0,0,231,'2016-10-17 11:24:32','1900-01-01 00:00:00',1,0,1),(18362,'5047','Mooslargue','MOOSLARGUE',NULL,'','France','',0,0,76,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18363,'34566','Moosonee','MOOSONEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18364,'19112','Moosup','MOOSUP',NULL,'','United States','',0,0,231,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18365,'42196','Moquehue','MOQUEHUE',NULL,'','Argentina','',0,0,10,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18366,'16836','Mora','MORA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18367,'3335','Mora De Rubielos','MORA DE RUBIELOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18368,'10684','Moradabad','MORADABAD',NULL,'','India','',0,0,101,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18369,'38407','Morafenobe','MORAFENOBE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18370,'18697','Moraga','MORAGA',NULL,'','United States','',0,0,231,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18371,'13619','Moragalla','MORAGALLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18372,'29441','Moraine','MORAINE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18373,'41428','Moraira','MORAIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18374,'9778','Moraitika','MORAITIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18375,'38609','Moralzarzal','MORALZARZAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18376,'31178','Moran','MORAN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18377,'39352','Morana','MORANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18378,'26275','Moranbah','MORANBAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18379,'6678','Morance','MORANCE',NULL,'','France','',0,0,76,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18380,'4762','Morangis','MORANGIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18381,'40201','Morannes','MORANNES',NULL,'','France','',0,0,76,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18382,'12193','Morano Calabro','MORANO CALABRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18383,'3002','Moratalaz','MORATALAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18384,'3038','Moratalla','MORATALLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18385,'13606','Moratuwa','MORATUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18386,'24292','Moravian Silesian','MORAVIAN SILESIAN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18387,'38600','Moravske Toplice','MORAVSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18388,'26604','Morawa','MORAWA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18389,'44048','Morawica','MORAWICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18390,'7211','Moray','MORAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18391,'9969','Morazan','MORAZAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18392,'43590','Morbisch Am See','MORBISCH AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18393,'38849','Morciano Di Leuca','MORCIANO DI LEUCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18394,'23291','Morcote','MORCOTE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18395,'12194','Mordano','MORDANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18396,'25612','Morden','MORDEN',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18397,'8585','Morden','MORDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18398,'36810','Mordogan','MORDOGAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18399,'14810','More Og Romsdal','MORE OG ROMSDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18400,'8586','Morecambe','MORECAMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18401,'34249','Moree','MOREE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18402,'44166','Moree','MOREE',NULL,'','Ghana','',0,0,84,'2016-10-17 11:24:41','1900-01-01 00:00:00',1,0,1),(18403,'33694','Morehead','MOREHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:41','1900-01-01 00:00:00',1,0,1),(18404,'23292','Morel','MOREL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18405,'14043','Morelia','MORELIA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18406,'25822','Morell','MORELL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18407,'3767','Morella','MORELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18408,'18698','Moreno Valley','MORENO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18409,'4413','Moret Sur Loing','MORET SUR LOING',NULL,'','France','',0,0,76,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18410,'42231','Moreton Island','MORETON ISLAND',NULL,'','Australia','Moreton Island',0,0,13,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18411,'7212','Moreton-in-marsh','MORETON-IN-MARSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18412,'31356','Moretown','MORETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18413,'40680','Morey-saint-denis','MOREY-SAINT-DENIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18414,'41016','Morfelden-walldorf','MORFELDEN-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18415,'31357','Morgan','MORGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:45','1900-01-01 00:00:00',1,0,1),(18416,'24886','Morgan\'s Bluff','MORGAN\'S BLUFF',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18417,'33943','Morganton','MORGANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18418,'30072','Morgantown','MORGANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18419,'5574','Morgat','MORGAT',NULL,'','France','',0,0,76,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18420,'15006','Morgedal','MORGEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18421,'37593','Morgenrothe-rautenkranz','MORGENROTHE-RAUTENKRANZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18422,'23060','Morges','MORGES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18423,'6051','Morhange','MORHANGE',NULL,'','France','',0,0,76,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18424,'28549','Moriarty','MORIARTY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18425,'6493','Morieres-les-avignon','MORIERES-LES-AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18426,'40533','Morigerati','MORIGERATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18427,'13301','Moriguchi','MORIGUCHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18428,'12195','Morimondo','MORIMONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18429,'13394','Morioka','MORIOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18430,'23293','Morissen','MORISSEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18431,'1893','Moritzburg','MORITZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18432,'42888','Moriyama','MORIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18433,'4913','Morlaix','MORLAIX',NULL,'','France','',0,0,76,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18434,'25339','Morley','MORLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18435,'7213','Morley','MORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18436,'38779','Morley','MORLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18437,'23061','Morlon','MORLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18438,'18169','Mormon Lake','MORMON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18439,'6494','Mornas','MORNAS',NULL,'','France','',0,0,76,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18440,'38837','Mornico Losana','MORNICO LOSANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18441,'8588','Morningside','MORNINGSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18442,'32526','Morningside','MORNINGSIDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18443,'40764','Morningside','MORNINGSIDE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18444,'26919','Mornington','MORNINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18445,'32482','Moroka','MOROKA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18446,'37708','Morombe','MOROMBE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18447,'26078','Moron','MORON',NULL,'','Argentina','',0,0,10,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18448,'39640','Morondava','MORONDAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18449,'18700','Morongo Valley','MORONGO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18450,'24140','Moroni','MORONI',NULL,'','Comoros','',0,0,50,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18451,'10185','Morotai Island','MOROTAI ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18452,'34250','Morpeth','MORPETH',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18453,'8589','Morpeth','MORPETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18454,'28146','Morrill','MORRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18455,'18057','Morrilton','MORRILTON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18456,'20662','Morris','MORRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18457,'25613','Morris','MORRIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18458,'34567','Morrisburg','MORRISBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:56','1900-01-01 00:00:00',1,0,1),(18459,'33498','Morrison','MORRISON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:56','1900-01-01 00:00:00',1,0,1),(18460,'28347','Morristown','MORRISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:57','1900-01-01 00:00:00',1,0,1),(18461,'33944','Morrisville','MORRISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:58','1900-01-01 00:00:00',1,0,1),(18462,'18701','Morro Bay','MORRO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18463,'24990','Morro De Sao Paulo','MORRO DE SAO PAULO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18464,'3112','Morro Del Jable','MORRO DEL JABLE',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18465,'37823','Morrovalle','MORROVALLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18466,'19881','Morrow','MORROW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18467,'6776','Morsbronn-les-bains','MORSBRONN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18468,'23294','Morschach','MORSCHACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18469,'5986','Morschwiller-le-bas','MORSCHWILLER-LE-BAS',NULL,'','France','',0,0,76,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18470,'39374','Mortagne-au-perche','MORTAGNE-AU-PERCHE',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18471,'6257','Mortagne-sur-sevre','MORTAGNE-SUR-SEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18472,'42771','Mortagua','MORTAGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18473,'39937','Mortain','MORTAIN',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18474,'11321','Mortelle','MORTELLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18475,'27458','Morton','MORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18476,'33697','Mortons Gap','MORTONS GAP',NULL,'','United States','',0,0,231,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18477,'25074','Morumbi','MORUMBI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18478,'34251','Moruya','MORUYA',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18479,'26920','Morwell','MORWELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18480,'37836','Mory','MORY',NULL,'','Poland','',0,0,174,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18481,'5086','Morzine','MORZINE',NULL,'','France','',0,0,76,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18482,'40278','Mosbach','MOSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18483,'33499','Mosca','MOSCA',NULL,'','United States','',0,0,231,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18484,'2912','Moscari','MOSCARI',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18485,'10025','Moscenicka Draga','MOSCENICKA DRAGA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18486,'12196','Mosciano','MOSCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18487,'20379','Moscow','MOSCOW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18488,'16271','Moscow','MOSCOW',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18489,'36644','Moscow-domodedovo','MOSCOW-DOMODEDOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18490,'36646','Moscow-nakhabino','MOSCOW-NAKHABINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18491,'36648','Moscow-sheremetyevo','MOSCOW-SHEREMETYEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18492,'81','Moselle - Nahe','MOSELLE - NAHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18493,'17704','Moser Bay','MOSER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:06','1900-01-01 00:00:00',1,0,1),(18494,'31557','Moses Lake','MOSES LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:06','1900-01-01 00:00:00',1,0,1),(18495,'11001','Mosfellsbaer','MOSFELLSBAER',NULL,'','Iceland','Mosfellsbaer',0,0,100,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18496,'1660','Moshav Neve Ativ','MOSHAV NEVE ATIV',NULL,'','Israel','',0,0,106,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18497,'37910','Moshi','MOSHI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18498,'31829','Mosinee','MOSINEE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18499,'14922','Mosjoen','MOSJOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18500,'9699','Moskhaton','MOSKHATON',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18501,'5411','Mosles','MOSLES',NULL,'','France','',0,0,76,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18502,'34252','Mosman','MOSMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18503,'5663','Mosnes','MOSNES',NULL,'','France','',0,0,76,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18504,'37098','Moso Island','MOSO ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18505,'10078','Mosonmagyarovar','MOSONMAGYAROVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18506,'14962','Moss','MOSS',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18507,'18702','Moss Beach','MOSS BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:25:09','1900-01-01 00:00:00',1,0,1),(18508,'34253','Moss Vale','MOSS VALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18509,'32387','Mossel Bay','MOSSEL BAY',NULL,'','South Africa','Mossel Bay',0,0,195,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18510,'24054','Mossendjo','MOSSENDJO',NULL,'','Congo','',0,0,51,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18511,'26729','Mossman','MOSSMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18512,'40338','Mossoro','MOSSORO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18513,'37624','Most','MOST',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18514,'38930','Most Na Soci','MOST NA SOCI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18515,'24892','Mostar','MOSTAR',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18516,'14811','Mosteroy','MOSTEROY',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18517,'3003','Mostoles','MOSTOLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18518,'38736','Mostov','MOSTOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18519,'3416','Mota Del Cuervo','MOTA DEL CUERVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18520,'32320','Mota Lava','MOTA LAVA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18521,'16770','Motala','MOTALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18522,'8590','Motherwell','MOTHERWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18523,'3417','Motilla Del Palancar','MOTILLA DEL PALANCAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18524,'27459','Motley','MOTLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18525,'39107','Motobu','MOTOBU',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18526,'40301','Motovun','MOTOVUN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18527,'3274','Motril','MOTRIL',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18528,'37250','Motshane','MOTSHANE',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18529,'11322','Motta Camastra','MOTTA CAMASTRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18530,'39415','Motten','MOTTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18531,'12197','Mottola','MOTTOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18532,'40925','Mottram St Andrew','MOTTRAM ST ANDREW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18533,'15134','Motueka','MOTUEKA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18534,'4415','Mouans Sartoux','MOUANS SARTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18535,'42353','Mouans-sartoux','MOUANS-SARTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18536,'5331','Moudeyres','MOUDEYRES',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18537,'6495','Mougins','MOUGINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18538,'6847','Mouila','MOUILA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18539,'32483','Mouille Point','MOUILLE POINT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18540,'6258','Mouilleron-le-captif','MOUILLERON-LE-CAPTIF',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18541,'6259','Moulay','MOULAY',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18542,'36387','Moulay Idriss','MOULAY IDRISS',NULL,'','Morocco','',0,0,148,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18543,'5227','Mouleydier','MOULEYDIER',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18544,'5332','Moulins','MOULINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18545,'17925','Moulton','MOULTON',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18546,'32739','Moultonborough','MOULTONBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18547,'19882','Moultrie','MOULTRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18548,'27719','Mound City','MOUND CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:17','1900-01-01 00:00:00',1,0,1),(18549,'21104','Moundridge','MOUNDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:17','1900-01-01 00:00:00',1,0,1),(18550,'27460','Mounds View','MOUNDS VIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:18','1900-01-01 00:00:00',1,0,1),(18551,'10435','Mount Abu','MOUNT ABU',NULL,'','India','Mount Abu',2,0,101,'2016-10-17 11:25:18','1900-01-01 00:00:00',1,0,1),(18552,'15135','Mount Albert','MOUNT ALBERT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:25:19','1900-01-01 00:00:00',1,0,1),(18553,'36371','Mount Athos-amoulian','MOUNT ATHOS-AMOULIAN',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:20','1900-01-01 00:00:00',1,0,1),(18554,'11324','Mount Etna','MOUNT ETNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:23','1900-01-01 00:00:00',1,0,1),(18555,'15577','Mount Hagen','MOUNT HAGEN',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:25:24','1900-01-01 00:00:00',1,0,1),(18556,'34568','Mount Hope','MOUNT HOPE',NULL,'','Canada','',0,0,39,'2016-10-17 11:25:25','1900-01-01 00:00:00',1,0,1),(18557,'41451','Mount Kenya National Park','MOUNT KENYA NATIONAL PARK',NULL,'','Kenya','',0,0,113,'2016-10-17 11:25:27','1900-01-01 00:00:00',1,0,1),(18558,'13620','Mount Lavinia','MOUNT LAVINIA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:25:27','1900-01-01 00:00:00',1,0,1),(18559,'37902','Mount Naeba Area','MOUNT NAEBA AREA',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:28','1900-01-01 00:00:00',1,0,1),(18560,'24857','Mount Thompson','MOUNT THOMPSON',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:25:35','1900-01-01 00:00:00',1,0,1),(18561,'24910','Mountain Pine Ridge','MOUNTAIN PINE RIDGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:25:42','1900-01-01 00:00:00',1,0,1),(18562,'28550','Mountainair','MOUNTAINAIR',NULL,'','United States','',0,0,231,'2016-10-17 11:25:44','1900-01-01 00:00:00',1,0,1),(18563,'30078','Mountainhome','MOUNTAINHOME',NULL,'','United States','',0,0,231,'2016-10-17 11:25:44','1900-01-01 00:00:00',1,0,1),(18564,'28352','Mountainside','MOUNTAINSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18565,'31562','Mountlake Terrace','MOUNTLAKE TERRACE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18566,'10791','Mountshannon','MOUNTSHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18567,'30079','Mountville','MOUNTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18568,'44178','Mouresi','MOURESI',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18569,'6496','Mouries','MOURIES',NULL,'','France','',0,0,76,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18570,'5866','Mouroux','MOUROUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18571,'9700','Mousata','MOUSATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18572,'24666','Mouscron','MOUSCRON',NULL,'','Belgium','',0,0,21,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18573,'8591','Mousehole','MOUSEHOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18574,'5575','Mousteru','MOUSTERU',NULL,'','France','',0,0,76,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18575,'6497','Moustiers-sainte-marie','MOUSTIERS-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18576,'10823','Moville','MOVILLE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18577,'37660','Moville','MOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18578,'40926','Moville, Co.donegal','MOVILLE, CO.DONEGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18579,'14136','Moyahua','MOYAHUA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18580,'39290','Moyard','MOYARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18581,'10186','Moyo Island','MOYO ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18582,'869','Moyobamba','MOYOBAMBA',NULL,'','Peru','',0,0,172,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18583,'37895','Moyvalley','MOYVALLEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18584,'40529','Mozaga','MOZAGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18585,'1479','Mozambique','MOZAMBIQUE',NULL,'','MOZAMBIQUE','',0,0,149,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18586,'3466','Mozarbez','MOZARBEZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18587,'42541','Mozirje','MOZIRJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18588,'11326','Mozzo','MOZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18589,'1740','Mpacha','MPACHA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18590,'1478','Mpumalanga-kruger Area','MPUMALANGA-KRUGER AREA',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18591,'15663','Mragowo','MRAGOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18592,'42063','Mrauk U','MRAUK U',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18593,'40279','Msambweni','MSAMBWENI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18594,'17219','Mt. Erciyes','MT. ERCIYES',NULL,'','Turkey','',0,0,222,'2016-10-17 11:25:50','1900-01-01 00:00:00',1,0,1),(18595,'26851','Mt. Field National Park','MT. FIELD NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:50','1900-01-01 00:00:00',1,0,1),(18596,'39912','Mtolle','MTOLLE',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18597,'37738','Mtubatuba','MTUBATUBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18598,'32527','Mtunzini','MTUNZINI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18599,'17464','Mtwara','MTWARA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18600,'42297','Muak Lek','MUAK LEK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18601,'13548','Muang Khong','MUANG KHONG',NULL,'','Laos','',0,0,118,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18602,'541','Much','MUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18603,'38114','Much Hadham','MUCH HADHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18604,'43247','Muchamiel','MUCHAMIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18605,'23787','Mudanjiang','MUDANJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18606,'20671','Muddy','MUDDY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18607,'7215','Mudeford','MUDEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18608,'34255','Mudgee','MUDGEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18609,'26732','Mudjimba','MUDJIMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18610,'29449','Mudsock','MUDSOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18612,'40468','Muehlen','MUEHLEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18613,'37414','Muellheim','MUELLHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18614,'44146','Muelsen','MUELSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18615,'39117','Muenchberg','MUENCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18616,'37484','Muenchwilen','MUENCHWILEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18617,'82','Muensing','MUENSING',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18618,'83','Muensterland','MUENSTERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18619,'863','Muerren','MUERREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18620,'39932','Mugena','MUGENA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18621,'2005','Muggelheim','MUGGELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18622,'39521','Muggia','MUGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18623,'17342','Mugla','MUGLA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18624,'40102','Mugnano Di Napoli','MUGNANO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18625,'43856','Muhamma','MUHAMMA',NULL,'','India','Muhamma',3,0,101,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18626,'37410','Muhlbach Am Hochkonig','MUHLBACH AM HOCHKONIG',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18627,'84','Muhldorf Am Inn','MUHLDORF AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18628,'22596','Muhlhausen','MUHLHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18629,'265','Muhltal','MUHLTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18630,'27010','Muhlviertel','MUHLVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18631,'3822','Muhu Island','MUHU ISLAND',NULL,'','Estonia','',0,0,69,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18632,'32262','Mui Ne','MUI NE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18633,'9906','Mui Wo','MUI WO',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18634,'5665','Muides-sur-loire','MUIDES-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18635,'7216','Muirhouse','MUIRHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18636,'32484','Muizenberg','MUIZENBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18637,'14384','Mukah','MUKAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18638,'32352','Mukalla','MUKALLA',NULL,'','Yemen','',0,0,240,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18639,'42592','Mukandgarh','MUKANDGARH',NULL,'','India','',0,0,101,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18641,'43073','Mukdahan','MUKDAHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18642,'32353','Mukeiras','MUKEIRAS',NULL,'','Yemen','',0,0,240,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18643,'31563','Mukilteo','MUKILTEO',NULL,'','United States','',0,0,231,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18644,'43857','Mukki','MUKKI',NULL,'','India','',0,0,101,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18645,'13302','Muko','MUKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18646,'44002','Mukono','MUKONO',NULL,'','Uganda','',0,0,226,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18648,'40870','Mukundgarh','MUKUNDGARH',NULL,'','India','',0,0,101,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18649,'31831','Mukwonago','MUKWONAGO',NULL,'','United States','',0,0,231,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18650,'13754','Mulaku Atoll','MULAKU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18651,'43858','Mulavukadu','MULAVUKADU',NULL,'','India','',0,0,101,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18652,'12198','Mulazzo','MULAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18653,'19501','Mulberry','MULBERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18654,'32583','Muldersdrif','MULDERSDRIF',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18655,'42833','Muldersdrift','MULDERSDRIFT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18656,'33700','Muldraugh','MULDRAUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18657,'32931','Muldrow','MULDROW',NULL,'','United States','',0,0,231,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18658,'37533','Mulege','MULEGE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18659,'30815','Muleshoe','MULESHOE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18660,'38130','Mulfingen','MULFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18661,'542','Mulheim','MULHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18662,'2035','Mülheim An Der Ruhr','MÜLHEIM AN DER RUHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18663,'6777','Mulhouse','MULHOUSE',NULL,'','France','',0,0,76,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18664,'10247','Mulia','MULIA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18665,'26282','Mulka','MULKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18666,'1623','Mull','MULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18667,'26961','Mullaloo','MULLALOO',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18668,'32019','Mullens','MULLENS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18669,'13652','Mullerthal','MULLERTHAL',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18670,'10943','Mullingar','MULLINGAR',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18671,'8594','Mullion','MULLION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18672,'10751','Mulranny','MULRANNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18673,'38606','Mulsanne','MULSANNE',NULL,'','France','',0,0,76,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18674,'15312','Multan','MULTAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18675,'43615','Mulungu','MULUNGU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18676,'144306','Mumbai','MUMBAI',NULL,'','India','Mumbai',5,0,101,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18677,'8595','Mumbles','MUMBLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18678,'28972','Mumford','MUMFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18679,'35748','Munakata','MUNAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18680,'40399','Munchendorf','MUNCHENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18681,'20949','Muncie','MUNCIE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18682,'30080','Muncy','MUNCY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18683,'16553','Munda','MUNDA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18684,'3714','Mundaka','MUNDAKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18685,'20673','Mundelein','MUNDELEIN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18686,'8596','Mundesley','MUNDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18687,'40139','Mundford','MUNDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18688,'37703','Mundolsheim','MUNDOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18689,'10248','Munduk','MUNDUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18690,'33701','Munfordville','MUNFORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18691,'26283','Mungeranie','MUNGERANIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18692,'41365','Mungia','MUNGIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18693,'3715','Munguia','MUNGUIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18694,'266','Munich','MUNICH',NULL,'','Germany','Munich',0,0,83,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18695,'22179','Munising','MUNISING',NULL,'','United States','',0,0,231,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18696,'29450','Munks Corners','MUNKS CORNERS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18697,'10561','Munnar','MUNNAR',NULL,'','India','Munnar',3,0,101,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18698,'267','Munnerstadt','MUNNERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18699,'43730','Munster','MUNSTER',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18700,'20950','Munster','MUNSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18701,'6052','Munster','MUNSTER',NULL,'','France','',0,0,76,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18702,'86','Munstertal','MUNSTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18703,'41878','Muntelier','MUNTELIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18704,'43112','Muntinlupa','MUNTINLUPA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18705,'37832','Munxar','MUNXAR',NULL,'','Malta','',0,0,135,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18706,'3927','Muonio','MUONIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18707,'23295','Muotathal','MUOTATHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18708,'40871','Muradabad','MURADABAD',NULL,'','India','',0,0,101,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18709,'42667','Muralto','MURALTO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18710,'12901','Murano','MURANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18711,'40419','Murarrie','MURARRIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18712,'43766','Murau','MURAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18713,'12826','Muravera','MURAVERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18714,'6778','Murbach','MURBACH',NULL,'','France','',0,0,76,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18715,'15220','Murchison','MURCHISON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18716,'36140','Murcia-l.manga D.mar','MURCIA-L.MANGA D.MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18717,'36146','Murcia-la Azohia','MURCIA-LA AZOHIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18718,'36157','Murcia-los Alcazares','MURCIA-LOS ALCAZARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18719,'36191','Murcia-puerto De Maz','MURCIA-PUERTO DE MAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18720,'35082','Murcia-s.pedro Pinat','MURCIA-S.PEDRO PINAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18721,'39841','Mur-de-barrez','MUR-DE-BARREZ',NULL,'','France','',0,0,76,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18722,'33034','Murdo','MURDO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18723,'6116','Muret','MURET',NULL,'','France','',0,0,76,'2016-10-17 11:26:14','1900-01-01 00:00:00',1,0,1),(18724,'33219','Murfreesboro','MURFREESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:14','1900-01-01 00:00:00',1,0,1),(18725,'41457','Murgia','MURGIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18726,'42983','Murguia','MURGUIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18727,'23296','Muri','MURI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18728,'24071','Muri Beach','MURI BEACH',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18729,'15313','Muridke','MURIDKE',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18730,'3130','Muriedas','MURIEDAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18731,'16323','Murino','MURINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18732,'16406','Murmansk','MURMANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18733,'87','Murnau','MURNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18734,'37800','Muro','MURO',NULL,'','France','',0,0,76,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18735,'960','Muro Alto','MURO ALTO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18736,'5333','Murol','MUROL',NULL,'','France','',0,0,76,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18737,'13303','Muroran, Japan','MURORAN, JAPAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18738,'3096','Muros De Nalon','MUROS DE NALON',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18739,'33952','Murphy','MURPHY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18740,'18708','Murphys','MURPHYS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18741,'20674','Murphysboro','MURPHYSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18742,'33702','Murray','MURRAY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18743,'26811','Murray Bridge','MURRAY BRIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:19','1900-01-01 00:00:00',1,0,1),(18744,'7217','Murrayfield','MURRAYFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:19','1900-01-01 00:00:00',1,0,1),(18745,'26285','Murraylands','MURRAYLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18746,'15314','Murree Hills','MURREE HILLS',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18747,'30376','Murrells Inlet','MURRELLS INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18748,'23297','Murren','MURREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18749,'22597','Murrhardt','MURRHARDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18750,'18709','Murrieta','MURRIETA',NULL,'','United States','',0,0,231,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18751,'41511','Murroe','MURROE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18752,'30081','Murrysville','MURRYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18753,'37757','Murs','MURS',NULL,'','France','',0,0,76,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18754,'16643','Murska','MURSKA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18755,'23298','Murten','MURTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18756,'36577','Murtosa','MURTOSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18757,'1637','Murtosa-torreira','MURTOSA-TORREIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18758,'3716','Murueta','MURUETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18759,'34256','Murwillumbah','MURWILLUMBAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18760,'43987','Musannah','MUSANNAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18761,'13418','Musashino','MUSASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18762,'15275','Muscat','MUSCAT',NULL,'','Oman','Muscat',0,0,165,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18763,'20255','Muscatine','MUSCATINE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18764,'17927','Muscle Shoals','MUSCLE SHOALS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18765,'3768','Museros','MUSEROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18766,'15813','Musgueira','MUSGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:24','1900-01-01 00:00:00',1,0,1),(18767,'22180','Muskegon','MUSKEGON',NULL,'','United States','',0,0,231,'2016-10-17 11:26:24','1900-01-01 00:00:00',1,0,1),(18768,'32932','Muskogee','MUSKOGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:25','1900-01-01 00:00:00',1,0,1),(18769,'1675','Muskoka','MUSKOKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18770,'34569','Muskrat Dam','MUSKRAT DAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18771,'17465','Musoma','MUSOMA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18772,'44303','Mussanah','MUSSANAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18773,'9274','Musselburgh','MUSSELBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18774,'5228','Mussidan','MUSSIDAN',NULL,'','France','',0,0,76,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18775,'11328','Mussolente','MUSSOLENTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18776,'10562','Mussoorie','MUSSOORIE',NULL,'','India','Mussoorie',9,0,101,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18777,'40379','Mustafapasa','MUSTAFAPASA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18778,'30816','Mustang Island','MUSTANG ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18779,'32165','Mustique Island','MUSTIQUE ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18780,'34257','Muswellbrook','MUSWELLBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18781,'15658','Muszyna','MUSZYNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18782,'32666','Mutare','MUTARE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18783,'8597','Muthill','MUTHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18784,'10314','Muting','MUTING',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18785,'43134','Mutrah','MUTRAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18786,'26422','Muttaburra','MUTTABURRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18787,'23299','Muttenz','MUTTENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18788,'39900','Mutters','MUTTERS',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18789,'28973','Muttontown','MUTTONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18790,'10440','Muttukadu','MUTTUKADU',NULL,'','India','',0,0,101,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18791,'2874','Mutxamel','MUTXAMEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18792,'6779','Mutzig','MUTZIG',NULL,'','France','',0,0,76,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18793,'3825','Muuga','MUUGA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18794,'2710','Muxika','MUXIKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18795,'8598','Muxton','MUXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18796,'15315','Muzaffarabad','MUZAFFARABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18797,'10563','Muzaffarpur','MUZAFFARPUR',NULL,'','India','',16,0,101,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18798,'17466','Mwanza','MWANZA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18799,'42129','Myall Lake','MYALL LAKE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18800,'9546','Mycenae','MYCENAE',NULL,'','Greece','Mycenae',0,0,86,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18801,'18710','Myers Flat','MYERS FLAT',NULL,'','United States','',0,0,231,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18802,'30082','Myerstown','MYERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:31','1900-01-01 00:00:00',1,0,1),(18803,'37444','Mykolaiv (Black Sea Coast)','MYKOLAIV (BLACK SEA COAST)',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:26:31','1900-01-01 00:00:00',1,0,1),(18804,'1472','Mykonos','MYKONOS',NULL,'','GREECE','Mykonos',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18805,'36364','Mykonos-agio Ioannis','MYKONOS-AGIO IOANNIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18806,'35226','Mykonos-elia','MYKONOS-ELIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18807,'35240','Mykonos-mykonos Town','MYKONOS-MYKONOS TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18808,'35275','Mykonos-ornos','MYKONOS-ORNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18809,'35280','Mykonos-platis Yialo','MYKONOS-PLATIS YIALO',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18810,'35297','Mykonos-st Stefanos','MYKONOS-ST STEFANOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18811,'24758','Mymensingh','MYMENSINGH',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18812,'38503','Myoko','MYOKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18813,'9547','Myrina','MYRINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18814,'9548','Myron, Myk','MYRON, MYK',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18815,'38748','Myrtees','MYRTEES',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18816,'30377','Myrtle Beach','MYRTLE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:33','1900-01-01 00:00:00',1,0,1),(18817,'40027','Myrtletown','MYRTLETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18818,'43438','Myrtos Bay','MYRTOS BAY',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18819,'40500','Mys Kamennyy','MYS KAMENNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18820,'15646','Myslenice','MYSLENICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18821,'10659','Mysore','MYSORE',NULL,'','India','Mysore',17,0,101,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18822,'19113','Mystic','MYSTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18823,'42494','Mystras','MYSTRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18825,'8599','Mytholmroyd','MYTHOLMROYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18826,'43439','Mytilene','MYTILENE',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18827,'9819','Mytilini','MYTILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18828,'16397','Mytishchi','MYTISHCHI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18829,'10986','Myvatn','MYVATN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18830,'32411','Mzamba','MZAMBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18831,'43229','Mzarr','MZARR',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18832,'14280','Mzuzu','MZUZU',NULL,'','Malawi','',0,0,131,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18833,'6841','N Dende','N DENDE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18834,'24006','N Gaoundere','N GAOUNDERE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18835,'25842','N Zeto','N ZETO',NULL,'','Angola','',0,0,6,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18836,'14723','Naaldwijk','NAALDWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18837,'20082','Naalehu','NAALEHU',NULL,'','United States','',0,0,231,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18838,'43404','Naama Bay','NAAMA BAY',NULL,'','Egypt','',0,0,65,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18839,'4022','Naantali','NAANTALI',NULL,'','Finland','',0,0,75,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18840,'14648','Naarden','NAARDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18841,'10890','Naas','NAAS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18842,'16273','Naberevnye Chelny','NABEREVNYE CHELNY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18843,'36792','Nabeul','NABEUL',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18844,'10315','Nabire','NABIRE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18845,'32584','Naboomspruit','NABOOMSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18846,'43405','Nabq Bay','NABQ BAY',NULL,'','Egypt','',0,0,65,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18847,'17144','Nabul','NABUL',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18848,'42623','Nachikatsuura','NACHIKATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18849,'35752','Nachi-katsuura','NACHI-KATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18850,'17467','Nachingwea','NACHINGWEA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18851,'37460','Nachod','NACHOD',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18852,'16837','Nacka','NACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18853,'30817','Nacogdoches','NACOGDOCHES',NULL,'','United States','',0,0,231,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18854,'10442','Naddi','NADDI',NULL,'','India','',0,0,101,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18855,'4065','Nadi','NADI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18856,'36206','Nadi-nadi Bay','NADI-NADI BAY',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18857,'13683','Nador','NADOR',NULL,'','Morocco','',0,0,148,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18858,'40823','Nadukani','NADUKANI',NULL,'','India','',0,0,101,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18859,'16476','Nadym','NADYM',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18860,'2305','Naestved','NAESTVED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18861,'9827','Nafpaktos','NAFPAKTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18862,'9791','Nafplion','NAFPLION',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18863,'15504','Naga','NAGA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18864,'35749','Nagahama','NAGAHAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18865,'26924','Nagambie','NAGAMBIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18866,'13304','Nagano','NAGANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18867,'10564','Nagappattinam','NAGAPPATTINAM',NULL,'','India','',0,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18868,'40824','Nagarhole','NAGARHOLE',NULL,'','India','',17,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18869,'36504','Nagarkot','NAGARKOT',NULL,'','Nepal','',0,0,153,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18870,'13400','Nagasaki','NAGASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18871,'43859','Nagaur','NAGAUR',NULL,'','India','Nagaur',2,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18872,'40872','Nagda','NAGDA',NULL,'','India','',0,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18873,'39253','Nagercoil','NAGERCOIL',NULL,'','India','',0,0,101,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18874,'13306','Nago','NAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18875,'13379','Nagoya','NAGOYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18876,'10565','Nagpur','NAGPUR',NULL,'','India','Nagpur',5,0,101,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18877,'33954','Nags Head','NAGS HEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18878,'32190','Naguanagua','NAGUANAGUA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18879,'10126','Nagykanizsa','NAGYKANIZSA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18880,'13426','Naha','NAHA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18881,'10187','Naha','NAHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18882,'25774','Nahanni Butte','NAHANNI BUTTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18883,'1650','Naharia','NAHARIA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18884,'43394','Nahariya','NAHARIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18885,'11066','Nahariyya','NAHARIYYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18886,'20083','Nahiku','NAHIKU',NULL,'','United States','',0,0,231,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18887,'42035','Nai Yang','NAI YANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18888,'4066','Naigani Island','NAIGANI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18889,'38593','Naila','NAILA',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18890,'8600','Nailsworth','NAILSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18891,'25668','Nain','NAIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18892,'1769','Nainital','NAINITAL',NULL,'','India','Nainital travel packages | Nainital Tour | Trip to',9,0,101,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18893,'8601','Nairn','NAIRN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18894,'13443','Nairobi','NAIROBI',NULL,'','Kenya','Nairobi',0,0,113,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18895,'6117','Najac','NAJAC',NULL,'','France','',0,0,76,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18896,'2967','Najera','NAJERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18897,'13170','Najio','NAJIO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18898,'43554','Najran','NAJRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18899,'13171','Nakagyo','NAKAGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18900,'13308','Nakano','NAKANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18901,'38389','Nakanojo','NAKANOJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18902,'13172','Nakanoshima - Osaka Castle','NAKANOSHIMA - OSAKA CASTLE',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18903,'13173','Nakashibetsu','NAKASHIBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18904,'1831','Nakensdorf','NAKENSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18905,'16418','Nakhodka','NAKHODKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18907,'17707','Naknek','NAKNEK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18909,'2306','Nakskov','NAKSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18910,'25487','Nakusp','NAKUSP',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18911,'10566','Nalagarh','NALAGARH',NULL,'','India','',0,0,101,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18912,'39422','Nalaguraidhoo','NALAGURAIDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18913,'16274','Nalchik','NALCHIK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18914,'32158','Namangan','NAMANGAN',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18915,'4101','Namatakula','NAMATAKULA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18916,'37611','Namba','NAMBA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18917,'26423','Nambour','NAMBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18918,'34258','Nambucca Heads','NAMBUCCA HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18919,'13481','Namhae','NAMHAE',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18920,'14403','Namib','NAMIB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18921,'25853','Namibe','NAMIBE',NULL,'','Angola','',0,0,6,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18922,'10343','Namlea','NAMLEA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18923,'14163','Namorik','NAMORIK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18924,'20381','Nampa','NAMPA',NULL,'','United States','',0,0,231,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18925,'6309','Nampont','NAMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18926,'14222','Nampula','NAMPULA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18927,'10344','Namrole','NAMROLE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18928,'14938','Namsos','NAMSOS',NULL,'','Norway','',0,0,164,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18929,'14164','Namu','NAMU',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18930,'25488','Namu','NAMU',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18931,'24711','Namur','NAMUR',NULL,'','Belgium','',0,0,21,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18932,'39078','Nanae','NANAE',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18933,'25489','Nanaimo','NANAIMO',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18934,'20084','Nanakuli','NANAKULI',NULL,'','United States','',0,0,231,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18935,'42387','Nanan','NANAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18936,'34890','Nan\'an','NAN\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18937,'36207','Nananu Island','NANANU ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18938,'42889','Nanao','NANAO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18939,'23733','Nanchang','NANCHANG',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18940,'23997','Nanchong','NANCHONG',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18941,'6053','Nancois-sur-ornain','NANCOIS-SUR-ORNAIN',NULL,'','France','',0,0,76,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18942,'10567','Nanded','NANDED',NULL,'','India','Nanded',5,0,101,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18943,'10444','Nangi','NANGI',NULL,'','India','',0,0,101,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18944,'39403','Nango','NANGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18945,'23972','Nanhai','NANHAI',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18946,'23708','Nanhui','NANHUI',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18947,'25801','Nanisivik','NANISIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18948,'13174','Naniwa','NANIWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18949,'23746','Nanjing','NANJING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18950,'39661','Nankan','NANKAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18951,'13175','Nanki Shirahama','NANKI SHIRAHAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18952,'1750','Nanking Nanjing','NANKING NANJING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18953,'23857','Nanning','NANNING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18954,'25491','Nanoose Bay','NANOOSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18955,'9862','Nanortalik','NANORTALIK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18956,'23774','Nanping','NANPING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18957,'39694','Nansha','NANSHA',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18958,'23613','Nanshan','NANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18959,'6498','Nans-les-pins','NANS-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18960,'21449','Nantasket Beach','NANTASKET BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18961,'4763','Nanterre','NANTERRE',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18962,'6260','Nantes','NANTES',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18963,'5101','Nanteuil Les Meaux','NANTEUIL LES MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18964,'41374','Nanteuil-les-meaux','NANTEUIL-LES-MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18965,'5229','Nantheuil','NANTHEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18966,'23747','Nantong','NANTONG',NULL,'','China','',0,0,46,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18967,'17406','Nantou','NANTOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18968,'6680','Nantua','NANTUA',NULL,'','France','',0,0,76,'2016-10-17 11:26:53','1900-01-01 00:00:00',1,0,1),(18969,'21450','Nantucket','NANTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:53','1900-01-01 00:00:00',1,0,1),(18970,'8602','Nantwich','NANTWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18971,'28974','Nanuet','NANUET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18972,'36208','Nanuya Lailai Island','NANUYA LAILAI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18973,'23795','Nanyang','NANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18974,'23688','Nanyuan','NANYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18975,'38402','Nanyuki','NANYUKI',NULL,'','Kenya','Nanyuki',0,0,113,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18976,'10445','Naoabad','NAOABAD',NULL,'','India','',0,0,101,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18977,'37987','Naousa','NAOUSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18978,'9549','Naoussa','NAOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:55','1900-01-01 00:00:00',1,0,1),(18979,'17708','Napakiak','NAPAKIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:55','1900-01-01 00:00:00',1,0,1),(18980,'34570','Napanee','NAPANEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18981,'17709','Napaskiak','NAPASKIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18982,'20675','Naperville','NAPERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18983,'40287','Napier','NAPIER',NULL,'','South Africa','Napier',0,0,195,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18984,'15221','Napier','NAPIER',NULL,'','New Zealand','Napier',0,0,157,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18985,'36511','Napier-hastings','NAPIER-HASTINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18986,'28975','Naples','NAPLES',NULL,'','United States','',0,0,231,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18987,'11329','Naples','NAPLES',NULL,'','Italy','Naples',0,0,107,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18988,'35490','Naples-castello D.ci','NAPLES-CASTELLO D.CI',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:58','1900-01-01 00:00:00',1,0,1),(18989,'35520','Naples-ercolano','NAPLES-ERCOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18990,'35536','Naples-giugliano In','NAPLES-GIUGLIANO IN',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18991,'35571','Naples-massa Lubrens','NAPLES-MASSA LUBRENS',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18992,'35591','Naples-nola','NAPLES-NOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18993,'29451','Napoleon','NAPOLEON',NULL,'','United States','',0,0,231,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18994,'20951','Nappanee','NAPPANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18995,'16133','Napuka','NAPUKA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18996,'13402','Nara','NARA',NULL,'','Japan','Nara',0,0,110,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18997,'26462','Naracoorte','NARACOORTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18998,'25492','Naramata','NARAMATA',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18999,'19504','Naranja','NARANJA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(19000,'24200','Naranjo','NARANJO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19001,'13309','Narashino','NARASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19002,'17072','Narathiwat','NARATHIWAT',NULL,'','Thailand','',0,0,215,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19003,'40003','Narberth','NARBERTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19004,'43665','Narbethong','NARBETHONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19005,'12200','Narbolia','NARBOLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19006,'5946','Narbonne','NARBONNE',NULL,'','France','',0,0,76,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19007,'5947','Narbonne-plage','NARBONNE-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19008,'24113','Nare','NARE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19009,'40873','Narendra Nagar','NARENDRA NAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19011,'26528','Naringal','NARINGAL',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19012,'13310','Narita','NARITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19013,'40874','Narlai','NARLAI',NULL,'','India','',0,0,101,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19014,'39936','Narni','NARNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19015,'13444','Narok','NAROK',NULL,'','Kenya','Narok',0,0,113,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19016,'3672','Naron','NARON',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19017,'34259','Narooma','NAROOMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19018,'38282','Narrabeen','NARRABEEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19019,'34260','Narrabri','NARRABRI',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19020,'26635','Narrabundah','NARRABUNDAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19021,'30255','Narragansett','NARRAGANSETT',NULL,'','United States','',0,0,231,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19022,'34261','Narrandera','NARRANDERA',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19023,'26529','Narre Warren','NARRE WARREN',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19024,'9851','Narsaq','NARSAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19025,'9863','Narsarsuaq','NARSARSUAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19026,'42264','Narssarssuag','NARSSARSSUAG',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19027,'13311','Naruto','NARUTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19028,'3827','Narva','NARVA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19029,'38620','Narva-joesuu','NARVA-JOESUU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19030,'14923','Narvik','NARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19031,'30083','Narvon','NARVON',NULL,'','United States','',0,0,231,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19032,'40565','Nasaker','NASAKER',NULL,'','Sweden','',0,0,209,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19033,'36524','Nasca','NASCA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19034,'43372','Nashik','NASHIK',NULL,'','India','Nashik',5,0,101,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19035,'32741','Nashua','NASHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19036,'33220','Nashville','NASHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:07','1900-01-01 00:00:00',1,0,1),(19038,'30819','Nassau Bay','NASSAU BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:09','1900-01-01 00:00:00',1,0,1),(19039,'31182','Nassawadox','NASSAWADOX',NULL,'','United States','',0,0,231,'2016-10-17 11:27:09','1900-01-01 00:00:00',1,0,1),(19040,'37374','Nassereith','NASSEREITH',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19041,'27011','Nassfeld','NASSFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19042,'16722','Nassjo','NASSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19043,'13312','Nasu','NASU',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19044,'15490','Nasugbu','NASUGBU',NULL,'','Philippines','',0,0,173,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19045,'40283','Nasushiobara','NASUSHIOBARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19046,'25262','Nata','NATA',NULL,'','Botswana','',0,0,28,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19047,'43176','Natadola','NATADOLA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19048,'37265','Natadola','NATADOLA',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19049,'25153','Natal','NATAL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19050,'35947','Natal-genipabu','NATAL-GENIPABU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19051,'35959','Natal-pipa','NATAL-PIPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19052,'35965','Natal-tibau Do Sul','NATAL-TIBAU DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19053,'1654','Natanya','NATANYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19054,'22810','Natashquan','NATASHQUAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19055,'27889','Natchez','NATCHEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19056,'21238','Natchitoches','NATCHITOCHES',NULL,'','United States','',0,0,231,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19057,'23300','Naters','NATERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19058,'43860','Nathdwara','NATHDWARA',NULL,'','India','',0,0,101,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19059,'33502','Nathrop','NATHROP',NULL,'','United States','',0,0,231,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19060,'42591','Nathuakhan','NATHUAKHAN',NULL,'','India','',0,0,101,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19061,'21452','Natick','NATICK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:13','1900-01-01 00:00:00',1,0,1),(19062,'31183','Natural Bridge','NATURAL BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:14','1900-01-01 00:00:00',1,0,1),(19063,'38410','Naturaliste','NATURALISTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:14','1900-01-01 00:00:00',1,0,1),(19064,'33503','Naturita','NATURITA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:15','1900-01-01 00:00:00',1,0,1),(19065,'12202','Naturno','NATURNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:15','1900-01-01 00:00:00',1,0,1),(19066,'11084','Naturns','NATURNS',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19067,'14038','Naucalpan','NAUCALPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19068,'24484','Nauders','NAUDERS',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19069,'19115','Naugatuck','NAUGATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19070,'40838','Naukuchiatal','NAUKUCHIATAL',NULL,'','India','',0,0,101,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19071,'458','Naumburg','NAUMBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19072,'1894','Naunhof','NAUNHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19073,'41637','Naupactus','NAUPACTUS',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19074,'9550','Nauplia','NAUPLIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19075,'44294','Naut Aran','NAUT ARAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19076,'37257','Nauta','NAUTA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19077,'20677','Nauvoo','NAUVOO',NULL,'','United States','',0,0,231,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19078,'3004','Navacerrada','NAVACERRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19079,'3005','Navalcarnero','NAVALCARNERO',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19080,'34571','Navan','NAVAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19081,'10913','Navan','NAVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19082,'1336','Navarra','NAVARRA',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19083,'19505','Navarre','NAVARRE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19084,'2712','Navarredonda De Gredos','NAVARREDONDA DE GREDOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19085,'5230','Navarrenx','NAVARRENX',NULL,'','France','',0,0,76,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19086,'3717','Navarrete','NAVARRETE',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19087,'43728','Navas','NAVAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19088,'3467','Navasfrias','NAVASFRIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19089,'30820','Navasota','NAVASOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19090,'3575','Navata','NAVATA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19091,'3131','Naveda','NAVEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19092,'25185','Navegantes','NAVEGANTES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19093,'3097','Navia','NAVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19094,'5480','Navilly','NAVILLY',NULL,'','France','',0,0,76,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19095,'14099','Navojoa','NAVOJOA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19096,'15507','Navotas','NAVOTAS',NULL,'','Philippines','',0,0,173,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19097,'15316','Nawab Shah','NAWAB SHAH',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19098,'40875','Nawalgarh','NAWALGARH',NULL,'','India','Nawalgarh',2,0,101,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19099,'20085','Nawiliwili Bay','NAWILIWILI BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19100,'1244','Naxos','NAXOS',NULL,'','GREECE','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19101,'36363','Naxos-agia Anna','NAXOS-AGIA ANNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19102,'36360','Naxos-agios Georgios','NAXOS-AGIOS GEORGIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19103,'35296','Naxos-stilida','NAXOS-STILIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19104,'39569','Naxxar','NAXXAR',NULL,'','Malta','',0,0,135,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19105,'43167','Nay Pyi Taw','NAY PYI TAW',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19106,'43779','Nayabazar','NAYABAZAR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19107,'41739','Nayarit','NAYARIT',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19108,'15980','Nazare','NAZARE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19109,'11049','Nazareth','NAZARETH',NULL,'','Israel','Nazareth',0,0,106,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19110,'15400','Nazca','NAZCA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19111,'4417','Nazelles-negron','NAZELLES-NEGRON',NULL,'','France','',0,0,76,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19112,'2450','Nazlat Khalifah','NAZLAT KHALIFAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19113,'42254','N\'djamena','N\'DJAMENA',NULL,'','Chad','',0,0,44,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19114,'24038','Ndjili','NDJILI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19115,'32646','Ndola','NDOLA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19116,'24031','Ndolo','NDOLO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19117,'36630','Neamt','NEAMT',NULL,'','Romania','',0,0,179,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19118,'40732','Neano','NEANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19119,'38864','Neapoli','NEAPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19120,'1037','Neapolitan Riviera','NEAPOLITAN RIVIERA',NULL,'','ITALY','',0,0,107,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19121,'20678','Near North Side','NEAR NORTH SIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19122,'8603','Neath','NEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19123,'4764','Neauphle-le-chateau','NEAUPHLE-LE-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19124,'40740','Nebouzat','NEBOUZAT',NULL,'','France','',0,0,76,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19125,'28147','Nebraska City','NEBRASKA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19126,'22598','Neckarsulm','NECKARSULM',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19127,'39828','Necochea','NECOCHEA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19128,'24092','Necocli','NECOCLI',NULL,'','Colombia','',0,0,49,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19129,'38809','Nedde','NEDDE',NULL,'','France','',0,0,76,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19130,'37649','Neddesitz','NEDDESITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19131,'33504','Nederland','NEDERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19132,'40116','Nedumangad','NEDUMANGAD',NULL,'','India','',0,0,101,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19133,'10447','Nedumbassery','NEDUMBASSERY',NULL,'','India','',0,0,101,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19134,'21453','Needham','NEEDHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19135,'8604','Needham Market','NEEDHAM MARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19136,'18714','Needles','NEEDLES',NULL,'','United States','',0,0,231,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19137,'38226','Neeleshwar','NEELESHWAR',NULL,'','India','',0,0,101,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19138,'40876','Neemrana','NEEMRANA',NULL,'','India','',0,0,101,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19139,'31832','Neenah','NEENAH',NULL,'','United States','',0,0,231,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19140,'25614','Neepawa','NEEPAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19141,'24640','Neerijse','NEERIJSE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19142,'17145','Nefta','NEFTA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19143,'16339','Nefteyugansk','NEFTEYUGANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19144,'25855','Negage','NEGAGE',NULL,'','Angola','',0,0,6,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19145,'39380','Negaunee','NEGAUNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19146,'41698','Negeri Sembilan','NEGERI SEMBILAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19147,'13621','Negombo','NEGOMBO',NULL,'','Sri Lanka','Negombo',0,0,200,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19148,'36378','Negombo-waikkal','NEGOMBO-WAIKKAL',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19149,'37571','Negotin','NEGOTIN',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19150,'12203','Negrar','NEGRAR',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19151,'13101','Negril','NEGRIL',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19152,'39129','Nei Pori','NEI PORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19153,'3468','Neila','NEILA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19154,'31833','Neillsville','NEILLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19155,'40356','Neive','NEIVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19156,'40100','Nejdek','NEJDEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19157,'3871','Nejjo','NEJJO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19158,'16509','Nejran','NEJRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19159,'3872','Nekemt','NEKEMT',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19160,'39464','Nekob','NEKOB',NULL,'','Morocco','',0,0,148,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19161,'31834','Nekoosa','NEKOOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19162,'2164','Nekso','NEKSO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19163,'10660','Nelamangala','NELAMANGALA',NULL,'','India','',0,0,101,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19164,'16085','Nelas','NELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19165,'42125','Nellim','NELLIM',NULL,'','Finland','',0,0,75,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19166,'10618','Nellore','NELLORE',NULL,'','India','Nellore',7,0,101,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19167,'31184','Nellysford','NELLYSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19168,'15222','Nelson','NELSON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19169,'34262','Nelson Bay','NELSON BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19170,'17710','Nelson Lagoon','NELSON LAGOON',NULL,'','United States','',0,0,231,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19171,'34408','Nelson-miramichi','NELSON-MIRAMICHI',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19172,'29452','Nelsonville','NELSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19173,'32585','Nelspruit','NELSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19174,'16327','Neman','NEMAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19175,'38246','Nembro','NEMBRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19176,'16415','Nemchinovka','NEMCHINOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19177,'10127','Nemesnep','NEMESNEP',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19178,'37456','Nemesvita','NEMESVITA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19179,'35590','Nemi','NEMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19180,'22811','Nemiscau','NEMISCAU',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19181,'5867','Nemours','NEMOURS',NULL,'','France','',0,0,76,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19182,'10932','Nenagh','NENAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19183,'17711','Nenana','NENANA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19184,'40422','Nendaz','NENDAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19185,'43943','Nendeln','NENDELN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19186,'683','Nennig','NENNIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19187,'9555','Neo Itilo','NEO ITILO',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19188,'21105','Neodesha','NEODESHA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19189,'27723','Neosho','NEOSHO',NULL,'','United States','',0,0,231,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19190,'15058','Nepalganj','NEPALGANJ',NULL,'','Nepal','',0,0,153,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19191,'34572','Nepean','NEPEAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19192,'33371','Nephi','NEPHI',NULL,'','United States','',0,0,231,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19193,'38631','Nepi','NEPI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19194,'15605','Neple','NEPLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19195,'19507','Neptune Beach','NEPTUNE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19196,'41907','Nerac','NERAC',NULL,'','France','',0,0,76,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19197,'38152','Neraida','NERAIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19198,'26733','Nerang','NERANG',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19199,'40697','Nerezine','NEREZINE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19200,'13313','Nerima','NERIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19201,'5334','Neris Les Bains','NERIS LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19202,'41373','Neris-les-bains','NERIS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19203,'3275','Nerja','NERJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19204,'12204','Nerola','NEROLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19205,'12206','Nerviano','NERVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19206,'16429','Neryungri','NERYUNGRI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19207,'14870','Nesbyen','NESBYEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19208,'41849','Nesjar','NESJAR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19209,'10987','Neskaupsstadur','NESKAUPSSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19210,'41481','Neskaupstadur','NESKAUPSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19211,'24796','Nessebar','NESSEBAR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19212,'268','Nesselwang','NESSELWANG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19213,'11063','Netanya','NETANYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19214,'8605','Nether Stowey','NETHER STOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19215,'8606','Netherton','NETHERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19216,'7218','Nethy Bridge','NETHY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19217,'545','Nettetal','NETTETAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19218,'9367','Nettle Bay','NETTLE BAY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19219,'12207','Nettuno','NETTUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19220,'24429','Neuberg An Der Murz','NEUBERG AN DER MURZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19221,'1832','Neubrandenburg','NEUBRANDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19222,'22599','Neuburg','NEUBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19223,'24430','Neudau','NEUDAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19224,'23302','Neuenkirch','NEUENKIRCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19225,'27258','Neuenkirchen','NEUENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19226,'645','Neuerburg','NEUERBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19227,'269','Neufahrn','NEUFAHRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19228,'6780','Neuf-brisach','NEUF-BRISACH',NULL,'','France','',0,0,76,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19229,'6055','Neufchateau','NEUFCHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19230,'39716','Neufchateau','NEUFCHATEAU',NULL,'','Belgium','',0,0,21,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19231,'5018','Neufchatel-hardelot','NEUFCHATEL-HARDELOT',NULL,'','France','',0,0,76,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19232,'795','Neuhardenberg','NEUHARDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19233,'39408','Neuhaus Am Inn','NEUHAUS AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19234,'22600','Neuhausen','NEUHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19235,'1895','Neuhermsdorf','NEUHERMSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19236,'271','Neuhof An Der Zenn','NEUHOF AN DER ZENN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19237,'38589','Neuhofen An Der Ybbs','NEUHOFEN AN DER YBBS',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19238,'5825','Neuilly','NEUILLY',NULL,'','France','',0,0,76,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19239,'5481','Neuilly-les-dijon','NEUILLY-LES-DIJON',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19240,'37690','Neuilly-plaisance','NEUILLY-PLAISANCE',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19241,'4765','Neuilly-sur-seine','NEUILLY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19242,'459','Neu-isenburg','NEU-ISENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19243,'22601','Neukirch','NEUKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19244,'38051','Neukirchen','NEUKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19245,'546','Neukirchen-vluyn','NEUKIRCHEN-VLUYN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19246,'2006','Neukolln','NEUKOLLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19247,'40021','Neum','NEUM',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19248,'44150','Neumarkt','NEUMARKT',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19249,'90','Neumuenster','NEUMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19250,'41628','Neumunster','NEUMUNSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19251,'40592','Neunburg Vorm Wald','NEUNBURG VORM WALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19252,'26131','Neuquen','NEUQUEN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19253,'22602','Neuravensburg','NEURAVENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19254,'273','Neureichenau','NEUREICHENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19255,'796','Neuruppin','NEURUPPIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19256,'27081','Neusach','NEUSACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19257,'39055','Neuschoenau','NEUSCHOENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19258,'27065','Neusiedl Am See','NEUSIEDL AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19259,'27012','Neusiedler Lake','NEUSIEDLER LAKE',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19260,'10079','Neusiedler Lake','NEUSIEDLER LAKE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:49','1900-01-01 00:00:00',1,0,1),(19261,'2032','Neuss','NEUSS',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:49','1900-01-01 00:00:00',1,0,1),(19262,'41728','Neustadt-glewe','NEUSTADT-GLEWE',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19263,'15','Neustift Im Stubaital','NEUSTIFT IM STUBAITAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19264,'39525','Neustrelitz','NEUSTRELITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19265,'2071','Neu-ulm','NEU-ULM',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19266,'38359','Neuveglise','NEUVEGLISE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19267,'39602','Neuvic','NEUVIC',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19268,'5335','Neuville','NEUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19269,'5007','Neuville-en-ferrain','NEUVILLE-EN-FERRAIN',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19270,'6681','Neuville-sur-saone','NEUVILLE-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19271,'40751','Neuwerk','NEUWERK',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19272,'39173','Neuwied','NEUWIED',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19273,'6499','Nevache','NEVACHE',NULL,'','France','',0,0,76,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19274,'20256','Nevada','NEVADA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19275,'5482','Nevers','NEVERS',NULL,'','France','',0,0,76,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19276,'28976','Neversink','NEVERSINK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19277,'25138','Neves','NEVES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19278,'37643','Nevez','NEVEZ',NULL,'','France','',0,0,76,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19279,'39019','Neviano','NEVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19280,'27461','Nevis','NEVIS',NULL,'','United States','',0,0,231,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19281,'13475','Nevis','NEVIS',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19282,'17349','Nevsehir','NEVSEHIR',NULL,'','Turkey','Nevsehir',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19283,'36809','Nevshehir','NEVSHEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19284,'36808','Nevshehir-kaymakli','NEVSHEHIR-KAYMAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19285,'15570','New Britain','NEW BRITAIN',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:27:59','1900-01-01 00:00:00',1,0,1),(19286,'14425','New Caledonia','NEW CALEDONIA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:28:00','1900-01-01 00:00:00',1,0,1),(19287,'13177','New Chitose Airport (Cts)','NEW CHITOSE AIRPORT (CTS)',NULL,'','Japan','',0,0,110,'2016-10-17 11:28:02','1900-01-01 00:00:00',1,0,1),(19288,'25735','New Glasgow','NEW GLASGOW',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:05','1900-01-01 00:00:00',1,0,1),(19289,'9907','New Kowloon','NEW KOWLOON',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:28:09','1900-01-01 00:00:00',1,0,1),(19290,'15140','New Lynn','NEW LYNN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:11','1900-01-01 00:00:00',1,0,1),(19291,'26852','New Norfolk','NEW NORFOLK',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:13','1900-01-01 00:00:00',1,0,1),(19292,'10948','New Ross','NEW ROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:16','1900-01-01 00:00:00',1,0,1),(19293,'21898','Newagen','NEWAGEN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:20','1900-01-01 00:00:00',1,0,1),(19294,'39992','Newark','NEWARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:22','1900-01-01 00:00:00',1,0,1),(19295,'36989','Newark-delaware','NEWARK-DELAWARE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:23','1900-01-01 00:00:00',1,0,1),(19296,'36990','Newark-new Jersey','NEWARK-NEW JERSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:23','1900-01-01 00:00:00',1,0,1),(19297,'7221','Newark-on-trent','NEWARK-ON-TRENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19298,'22185','Newaygo','NEWAYGO',NULL,'','United States','',0,0,231,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19299,'10949','Newbawn','NEWBAWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19300,'29714','Newberg','NEWBERG',NULL,'','United States','',0,0,231,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19301,'22186','Newberry','NEWBERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19302,'8608','Newbridge','NEWBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19303,'10950','Newbridge','NEWBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19304,'27727','Newburg','NEWBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:28:26','1900-01-01 00:00:00',1,0,1),(19305,'28988','Newburgh','NEWBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:28:26','1900-01-01 00:00:00',1,0,1),(19306,'8609','Newburgh','NEWBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:27','1900-01-01 00:00:00',1,0,1),(19307,'8610','Newbury','NEWBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:27','1900-01-01 00:00:00',1,0,1),(19308,'32744','Newbury','NEWBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:28','1900-01-01 00:00:00',1,0,1),(19309,'21459','Newburyport','NEWBURYPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:28:29','1900-01-01 00:00:00',1,0,1),(19310,'8611','Newby Bridge','NEWBY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:29','1900-01-01 00:00:00',1,0,1),(19311,'8613','Newcastle','NEWCASTLE',NULL,'','United Kingdom','Newcastle',0,0,229,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19312,'30825','Newcastle','NEWCASTLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19313,'34263','Newcastle','NEWCASTLE',NULL,'','Australia','Newcastle',0,0,13,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19314,'13478','Newcastle','NEWCASTLE',NULL,'','Saint Kitts And Nevis','Newcastle',0,0,202,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19315,'32528','Newcastle','NEWCASTLE',NULL,'','South Africa','Newcastle',0,0,195,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19316,'34409','Newcastle','NEWCASTLE',NULL,'','Canada','Newcastle',0,0,39,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19317,'1254','Newcastle Of Northern Ireland','NEWCASTLE OF NORTHERN IRELAND',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19318,'35399','Newcastle West','NEWCASTLE WEST',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19319,'41104','Newcastleton','NEWCASTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19320,'7222','Newcastle-under-lyme','NEWCASTLE-UNDER-LYME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19321,'1246','Newcastle-upon-tyne','NEWCASTLE-UPON-TYNE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19322,'29459','Newcomerstown','NEWCOMERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19323,'7223','Newcraighall','NEWCRAIGHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19324,'11076','Newe Ilan','NEWE ILAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19325,'33956','Newell','NEWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19326,'8615','Newent','NEWENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:34','1900-01-01 00:00:00',1,0,1),(19327,'28990','Newfane','NEWFANE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:34','1900-01-01 00:00:00',1,0,1),(19328,'28991','Newfield','NEWFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:28:35','1900-01-01 00:00:00',1,0,1),(19329,'18718','Newhall','NEWHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19330,'8616','Newham','NEWHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19331,'8617','Newhaven','NEWHAVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19332,'8618','Newington','NEWINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19333,'19124','Newington','NEWINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19334,'32586','Newington','NEWINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19335,'34265','Newington','NEWINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19336,'33957','Newland','NEWLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19337,'26607','Newman','NEWMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19338,'15141','Newmarket','NEWMARKET',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19339,'39026','Newmarket','NEWMARKET',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19340,'34575','Newmarket','NEWMARKET',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19341,'9289','Newmarket','NEWMARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19342,'10792','Newmarket On Fergus','NEWMARKET ON FERGUS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19343,'19885','Newnan','NEWNAN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19344,'7224','Newnham On Severn','NEWNHAM ON SEVERN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19345,'10906','Newport','NEWPORT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19346,'34266','Newport','NEWPORT',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:40','1900-01-01 00:00:00',1,0,1),(19347,'1248','Newport','NEWPORT',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:42','1900-01-01 00:00:00',1,0,1),(19348,'36334','Newport (Wales)','NEWPORT (WALES)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:42','1900-01-01 00:00:00',1,0,1),(19349,'1249','Newquay','NEWQUAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19350,'8621','Newry','NEWRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19351,'21900','Newry','NEWRY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19352,'17713','Newtok','NEWTOK',NULL,'','United States','',0,0,231,'2016-10-17 11:28:45','1900-01-01 00:00:00',1,0,1),(19353,'20258','Newton','NEWTON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:45','1900-01-01 00:00:00',1,0,1),(19354,'10922','Newton','NEWTON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:46','1900-01-01 00:00:00',1,0,1),(19355,'15225','Newton','NEWTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:46','1900-01-01 00:00:00',1,0,1),(19356,'8625','Newton-le-willows','NEWTON-LE-WILLOWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:49','1900-01-01 00:00:00',1,0,1),(19357,'8626','Newtonmore','NEWTONMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:49','1900-01-01 00:00:00',1,0,1),(19358,'21462','Newtonville','NEWTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19359,'30099','Newtown','NEWTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19360,'34267','Newtown','NEWTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19361,'8628','Newtownabbey','NEWTOWNABBEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19362,'8630','Newtownbreda','NEWTOWNBREDA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19363,'10752','Newtownmountkennedy','NEWTOWNMOUNTKENNEDY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19364,'44078','Neydens','NEYDENS',NULL,'','France','',0,0,76,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19365,'10570','Neyveli','NEYVELI',NULL,'','India','',0,0,101,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19366,'4418','Nezignan L Eveque','NEZIGNAN L EVEQUE',NULL,'','France','',0,0,76,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19367,'44003','Ngamba Island','NGAMBA ISLAND',NULL,'','Uganda','',0,0,226,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19368,'24055','Ngamoueri','NGAMOUERI',NULL,'','Congo','',0,0,51,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19369,'17060','Ngao','NGAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19370,'42062','Ngapali','NGAPALI',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19371,'15142','Ngaruawahia','NGARUAWAHIA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19372,'24075','Ngatangiia','NGATANGIIA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19373,'4067','Ngau','NGAU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19374,'42721','Nghe An','NGHE AN',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19375,'24032','Ngombe','NGOMBE',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19376,'43029','Ngongotaha','NGONGOTAHA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19377,'17468','Ngorongoro','NGORONGORO',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19378,'26286','Ngukurr','NGUKURR',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19379,'42412','Ngwesaung','NGWESAUNG',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19380,'32282','Nha Be','NHA BE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19381,'26530','Nhill','NHILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19382,'34576','Niagara Falls','NIAGARA FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19383,'28992','Niagara Falls','NIAGARA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19384,'34578','Niagara-on-the-lake','NIAGARA-ON-THE-LAKE',NULL,'','Canada','Niagara-on-the-Lake',0,0,39,'2016-10-17 11:28:54','1900-01-01 00:00:00',1,0,1),(19385,'19125','Niantic','NIANTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19386,'37758','Niassa','NIASSA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19387,'38985','Nibbiaia','NIBBIAIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19388,'2247','Nibe','NIBE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19389,'38369','Nibionno','NIBIONNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19390,'10448','Nibra','NIBRA',NULL,'','India','',0,0,101,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19391,'4419','Nice','NICE',NULL,'','France','Nice',0,0,76,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19392,'19510','Niceville','NICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19393,'12208','Nichelino','NICHELINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19394,'33705','Nicholasville','NICHOLASVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19395,'24887','Nicholls Town','NICHOLLS TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19396,'21109','Nickerson','NICKERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19397,'16275','Nicola','NICOLA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19398,'12209','Nicolosi','NICOLOSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19399,'24280','Nicosia','NICOSIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19400,'12995','Nicotera','NICOTERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19401,'24219','Nicoya','NICOYA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19402,'39287','Nida','NIDA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19403,'7227','Niddrie','NIDDRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19404,'24545','Niederalm','NIEDERALM',NULL,'','Austria','',0,0,14,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19405,'24485','Niederau','NIEDERAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19406,'1897','Niederau','NIEDERAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19407,'1622','Niederbronn Les Bain','NIEDERBRONN LES BAIN',NULL,'','France','',0,0,76,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19408,'6781','Niederbronn-les-bains','NIEDERBRONN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19409,'646','Niederfell','NIEDERFELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19410,'38751','Niederhaslach','NIEDERHASLACH',NULL,'','France','',0,0,76,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19411,'2041','Niederkassel','NIEDERKASSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19412,'460','Nieder-moos','NIEDER-MOOS',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19413,'461','Niedernhausen','NIEDERNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19414,'2007','Niederschonhausen','NIEDERSCHONHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19415,'22603','Niederstetten','NIEDERSTETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19416,'22604','Niederstotzingen','NIEDERSTOTZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19417,'93','Niederwerbe','NIEDERWERBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19418,'94','Niederwiesa','NIEDERWIESA',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19419,'647','Niederzissen','NIEDERZISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19420,'22605','Niefern','NIEFERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19421,'547','Nieheim','NIEHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19422,'797','Niemegk','NIEMEGK',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19423,'20','Niemeyer','NIEMEYER',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19424,'380','Niendorf','NIENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19425,'648','Nierstein','NIERSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19426,'6355','Nieuil','NIEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19427,'6009','Nieul','NIEUL',NULL,'','France','',0,0,76,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19428,'42837','Nieuw Vennep','NIEUW VENNEP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19429,'14686','Nieuwegein','NIEUWEGEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19430,'14649','Nieuwendam','NIEUWENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19431,'14724','Nieuwerkerk Aan Den Ijssel','NIEUWERKERK AAN DEN IJSSEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19432,'14562','Nieuweschans','NIEUWESCHANS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19433,'24667','Nieuwpoort','NIEUWPOORT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19434,'14650','Nieuw-vennep','NIEUW-VENNEP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19435,'14698','Nieuwvliet','NIEUWVLIET',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19436,'4420','Nievre','NIEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19437,'798','Niewitz','NIEWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19438,'43062','Niforeika','NIFOREIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19439,'39579','Niftrik','NIFTRIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19440,'43543','Nigata','NIGATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19441,'17353','Nigde','NIGDE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19442,'26377','Nightcliff','NIGHTCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19443,'17714','Nightmute','NIGHTMUTE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19444,'10188','Nihiwatu','NIHIWATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19445,'13403','Niigata','NIIGATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19446,'13178','Niiharu','NIIHARU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19447,'38693','Nijar','NIJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19448,'36461','Nijkerk','NIJKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19449,'14545','Nijmegen','NIJMEGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19450,'9705','Nikaia','NIKAIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19451,'9706','Nikiana','NIKIANA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19452,'35272','Nikiti','NIKITI',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19453,'13179','Nikko','NIKKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19454,'35728','Nikko-kinugawa','NIKKO-KINUGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19455,'42237','Niklasdorf','NIKLASDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19456,'17497','Nikolaev','NIKOLAEV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19457,'17715','Nikolai','NIKOLAI',NULL,'','United States','',0,0,231,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19458,'2008','Nikolassee','NIKOLASSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19459,'16372','Nikolo-khovanskoye','NIKOLO-KHOVANSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19460,'17716','Nikolski','NIKOLSKI',NULL,'','United States','',0,0,231,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19461,'16276','Nikolskoye','NIKOLSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19462,'16324','Nikulino','NIKULINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19463,'13466','Nikunau','NIKUNAU',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19464,'42844','Nilai','NILAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19465,'43861','Nilambur','NILAMBUR',NULL,'','India','',0,0,101,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19466,'43406','Nile Cruise','NILE CRUISE',NULL,'','Egypt','',0,0,65,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19467,'29461','Niles','NILES',NULL,'','United States','',0,0,231,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19468,'42590','Nileshwaram','NILESHWARAM',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19469,'40877','Nilgiris','NILGIRIS',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19470,'25139','Nilopolis','NILOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19471,'4002','Nilsia','NILSIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19472,'40878','Nimaj','NIMAJ',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19473,'5948','Nimes','NIMES',NULL,'','France','',0,0,76,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19474,'23709','Ningbo','NINGBO',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19475,'23775','Ningde','NINGDE',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19476,'34889','Ninghai','NINGHAI',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19477,'37087','Ninh Binh','NINH BINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19478,'17717','Ninilchik','NINILCHIK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19479,'20086','Ninole','NINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:09','1900-01-01 00:00:00',1,0,1),(19480,'28148','Niobrara','NIOBRARA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:09','1900-01-01 00:00:00',1,0,1),(19481,'24033','Nioki','NIOKI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19482,'6356','Niort','NIORT',NULL,'','France','',0,0,76,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19483,'22956','Nipawin','NIPAWIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19484,'18721','Nipomo','NIPOMO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19485,'32374','Nis','NIS',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19486,'13314','Niseko','NISEKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19487,'40537','Nishiizu','NISHIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19488,'13316','Nishinomiya','NISHINOMIYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19489,'37607','Nishinoomote','NISHINOOMOTE',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19490,'13317','Nishiwaki','NISHIWAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19491,'25340','Nisku','NISKU',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19492,'9556','Nissaki','NISSAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19493,'27467','Nisswa','NISSWA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19494,'42492','Nisyros','NISYROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19495,'25140','Niteroi','NITEROI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19496,'32022','Nitro','NITRO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19497,'649','Nittel','NITTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19498,'17113','Niuafo Ou','NIUAFO OU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19499,'17114','Niuatoputapu','NIUATOPUTAPU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19500,'3948','Nivala','NIVALA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19501,'24641','Nivelles','NIVELLES',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19502,'38371','Nivillac','NIVILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19503,'33506','Niwot','NIWOT',NULL,'','United States','',0,0,231,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19504,'27728','Nixa','NIXA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19505,'16340','Nizhnevartovsk','NIZHNEVARTOVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19506,'16246','Nizhniy Novgorod','NIZHNIY NOVGOROD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19507,'36517','Nizwa','NIZWA',NULL,'','Oman','Nizwa',0,0,165,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19508,'15280','Nizwá','NIZWÁ',NULL,'','Oman','',0,0,165,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19509,'41855','Njivice','NJIVICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19510,'24056','Nkayi','NKAYI',NULL,'','Congo','',0,0,51,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19511,'41656','N\'koob','N\'KOOB',NULL,'','Morocco','',0,0,148,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19512,'32529','Nkwalini','NKWALINI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19513,'3060','Noain','NOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19514,'3673','Noalla','NOALLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19515,'19126','Noank','NOANK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19516,'26463','Noarlunga','NOARLUNGA',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19517,'17718','Noatak','NOATAK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19518,'26734','Nobby','NOBBY',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19519,'34579','Nobel','NOBEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19520,'26531','Noble Park','NOBLE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19521,'20957','Noblesville','NOBLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19522,'35753','Noboribetsu','NOBORIBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19523,'12210','Nocera Superiore','NOCERA SUPERIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19524,'12212','Noceto','NOCETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19525,'12213','Noci','NOCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19526,'39514','Nods','NODS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19527,'95','Noerdlingen','NOERDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19528,'43099','Noeux Les Mines','NOEUX LES MINES',NULL,'','France','',0,0,76,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19529,'38284','Noeux-les-mines','NOEUX-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19530,'28551','Nogal','NOGAL',NULL,'','United States','',0,0,231,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19531,'18171','Nogales','NOGALES',NULL,'','United States','',0,0,231,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19532,'13925','Nogales','NOGALES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19533,'12214','Nogara','NOGARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19534,'6118','Nogaro','NOGARO',NULL,'','France','',0,0,76,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19535,'12947','Nogarole Rocca','NOGAROLE ROCCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19536,'16398','Nogatino','NOGATINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19537,'4421','Nogent Le Rotrou','NOGENT LE ROTROU',NULL,'','France','',0,0,76,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19538,'41370','Nogent-le-rotrou','NOGENT-LE-ROTROU',NULL,'','France','',0,0,76,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19539,'4766','Nogent-sur-marne','NOGENT-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19540,'16028','Nogueira','NOGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19541,'38244','Nogueira De Ramuin','NOGUEIRA DE RAMUIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19542,'684','Nohfelden','NOHFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19543,'10449','Noida','NOIDA',NULL,'','India','Noida',6,0,101,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19544,'24702','Noirefontaine','NOIREFONTAINE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19545,'6261','Noirmoutier','NOIRMOUTIER',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19546,'5868','Noisiel','NOISIEL',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19547,'4767','Noisy-le-grand','NOISY-LE-GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19548,'5666','Noizay','NOIZAY',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19549,'3132','Noja','NOJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19550,'16277','Nojabrxsk','NOJABRXSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19551,'3917','Nokia','NOKIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19552,'19511','Nokomis','NOKOMIS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19553,'37967','Nomaglio','NOMAGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19554,'40275','Nonant','NONANT',NULL,'','France','',0,0,76,'2016-10-17 11:29:25','1900-01-01 00:00:00',1,0,1),(19555,'21463','Nonantum','NONANTUM',NULL,'','United States','',0,0,231,'2016-10-17 11:29:25','1900-01-01 00:00:00',1,0,1),(19556,'17720','Nondalton','NONDALTON',NULL,'','United States','',0,0,231,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19557,'17066','Nong Khai','NONG KHAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19558,'23998','Nonghui','NONGHUI',NULL,'','China','',0,0,46,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19560,'13467','Nonouti','NONOUTI',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19561,'17074','Nonthaburi','NONTHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19562,'4104','Nontron','NONTRON',NULL,'','France','',0,0,76,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19563,'37539','Noonu Atoll','NOONU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19564,'14575','Noorbeek','NOORBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19565,'25835','Noord','NOORD',NULL,'','Aruba','',0,0,12,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19566,'32485','Noordhoek','NOORDHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19567,'41043','Noordwijk','NOORDWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19568,'14726','Noordwijkerhout','NOORDWIJKERHOUT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19569,'17721','Noorvik','NOORVIK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19570,'26736','Noosa','NOOSA',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19571,'26424','Noosaville','NOOSAVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19572,'14727','Nootdorp','NOOTDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19573,'41332','Nooverha','NOOVERHA',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19574,'16762','Nora','NORA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19575,'12216','Norcia','NORCIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19576,'18723','Norco','NORCO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:29','1900-01-01 00:00:00',1,0,1),(19577,'19886','Norcross','NORCROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:29','1900-01-01 00:00:00',1,0,1),(19578,'44025','Nord-aurdal','NORD-AURDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:31','1900-01-01 00:00:00',1,0,1),(19579,'41333','Nordberg','NORDBERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19580,'37471','Nordborg','NORDBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19581,'2263','Nordby','NORDBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19582,'27259','Norddeich','NORDDEICH',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19583,'40105','Norddorf','NORDDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19584,'18724','Norden','NORDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19585,'27260','Norden','NORDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19586,'27261','Nordenham','NORDENHAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19587,'27262','Norderney','NORDERNEY',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19588,'730','Norderstedt','NORDERSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19589,'16094','Nordeste','NORDESTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19590,'14983','Nordfjordeid','NORDFJORDEID',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19591,'39571','Nordhausen','NORDHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19592,'96','Nordholz-spieka','NORDHOLZ-SPIEKA',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19593,'2126','Nordjylland','NORDJYLLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19594,'276','Nordlingen','NORDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19595,'20383','Nordman','NORDMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19596,'43328','Nordreisa','NORDREISA',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19597,'14954','Nordstrand','NORDSTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19598,'14812','Nord-trondelag','NORD-TRONDELAG',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19599,'3098','Norena','NORENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19600,'39855','Noresund','NORESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19601,'21464','Norfolk','NORFOLK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19602,'7228','Norfolk','NORFOLK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19603,'14437','Norfolk Island','NORFOLK ISLAND',NULL,'','Norfolk Island','',0,0,162,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19604,'14900','Norheimsund','NORHEIMSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19605,'16278','Norilsk','NORILSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19606,'20680','Normal','NORMAL',NULL,'','United States','',0,0,231,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19607,'32934','Norman','NORMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19608,'7229','Norman Cross','NORMAN CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19609,'1400','Normandy','NORMANDY',NULL,'','FRANCE','',0,0,76,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19610,'26425','Normanton','NORMANTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19611,'26464','Normanville','NORMANVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19612,'2196','Norre Broby','NORRE BROBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19613,'20681','Norridge','NORRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:44','1900-01-01 00:00:00',1,0,1),(19614,'32121','Norris','NORRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19615,'30100','Norristown','NORRISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19616,'16656','Norrkoping','NORRKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19617,'16838','Norrtalje','NORRTALJE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19618,'26962','Norseman','NORSEMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19619,'32333','Norsup','NORSUP',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19620,'27263','Norten-hardenberg','NORTEN-HARDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19621,'2127','North Arhus','NORTH ARHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:47','1900-01-01 00:00:00',1,0,1),(19622,'13755','North Ari Atoll','NORTH ARI ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:29:47','1900-01-01 00:00:00',1,0,1),(19623,'22957','North Battleford','NORTH BATTLEFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:48','1900-01-01 00:00:00',1,0,1),(19624,'24778','North Black Sea Coast','NORTH BLACK SEA COAST',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:29:51','1900-01-01 00:00:00',1,0,1),(19625,'23616','North Chaoyang','NORTH CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:29:53','1900-01-01 00:00:00',1,0,1),(19626,'13842','North Coast','NORTH COAST',NULL,'','Mexico','',0,0,141,'2016-10-17 11:29:55','1900-01-01 00:00:00',1,0,1),(19627,'10451','North Dum-dum','NORTH DUM-DUM',NULL,'','India','',0,0,101,'2016-10-17 11:29:57','1900-01-01 00:00:00',1,0,1),(19628,'42015','North Eleuthera','NORTH ELEUTHERA',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:29:58','1900-01-01 00:00:00',1,0,1),(19629,'42628','North Labanon','NORTH LABANON',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:30:05','1900-01-01 00:00:00',1,0,1),(19630,'1255','North Portugal','NORTH PORTUGAL',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 11:30:12','1900-01-01 00:00:00',1,0,1),(19631,'1402','North Sardinia','NORTH SARDINIA',NULL,'','ITALY','',0,0,107,'2016-10-17 11:30:16','1900-01-01 00:00:00',1,0,1),(19632,'97','North Sea Coast (Lower Saxony)','NORTH SEA COAST (LOWER SAXONY)',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:17','1900-01-01 00:00:00',1,0,1),(19633,'24262','North Side','NORTH SIDE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 11:30:18','1900-01-01 00:00:00',1,0,1),(19634,'32223','North Sound','NORTH SOUND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:30:18','1900-01-01 00:00:00',1,0,1),(19635,'8640','Northallerton','NORTHALLERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19636,'26609','Northam','NORTHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19637,'21483','Northampton','NORTHAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19638,'1404','Northampton','NORTHAMPTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19639,'21484','Northborough','NORTHBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19640,'26963','Northbridge','NORTHBRIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19641,'20685','Northbrook','NORTHBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19642,'26426','Northcote','NORTHCOTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19643,'15226','Northcote','NORTHCOTE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19644,'24779','Northeast Bulgaria','NORTHEAST BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19645,'197','Northeast Lake District','NORTHEAST LAKE DISTRICT',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19646,'26854','Northeast Tasmania','NORTHEAST TASMANIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19647,'31367','Northeastern Vermont','NORTHEASTERN VERMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19648,'27264','Northeim','NORTHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19649,'28552','Northern Albuquerque','NORTHERN ALBUQUERQUE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19650,'22365','Northern Black Forest','NORTHERN BLACK FOREST',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19651,'2128','Northern City','NORTHERN CITY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19652,'9956','Northern Coast','NORTHERN COAST',NULL,'','Honduras','',0,0,97,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19653,'4424','Northern Corsica','NORTHERN CORSICA',NULL,'','France','',0,0,76,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19654,'9996','Northern Dalmatia','NORTHERN DALMATIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19655,'10988','Northern Iceland','NORTHERN ICELAND',NULL,'','Iceland','',0,0,100,'2016-10-17 11:30:30','1900-01-01 00:00:00',1,0,1),(19656,'15814','Northern Leiria','NORTHERN LEIRIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:30:30','1900-01-01 00:00:00',1,0,1),(19657,'11332','Northern Piedmont','NORTHERN PIEDMONT',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19658,'16681','Northern Stockholm County','NORTHERN STOCKHOLM COUNTY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19659,'26029','Northern United Arab Emirates','NORTHERN UNITED ARAB EMIRATES',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19660,'21485','Northfield','NORTHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:32','1900-01-01 00:00:00',1,0,1),(19661,'8642','Northfield','NORTHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:32','1900-01-01 00:00:00',1,0,1),(19662,'32023','Northfork','NORTHFORK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19663,'26737','Northgate','NORTHGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19664,'33508','Northglenn','NORTHGLENN',NULL,'','United States','',0,0,231,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19665,'40310','Northington','NORTHINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19666,'14475','North-kennemerland','NORTH-KENNEMERLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19667,'20686','Northlake','NORTHLAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19668,'1103','Northland Region','NORTHLAND REGION',NULL,'','NEW ZEALAND','',0,0,157,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19669,'8643','Northleach','NORTHLEACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19670,'27730','Northmoor','NORTHMOOR',NULL,'','United States','',0,0,231,'2016-10-17 11:30:35','1900-01-01 00:00:00',1,0,1),(19671,'8644','Northop','NORTHOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:35','1900-01-01 00:00:00',1,0,1),(19672,'29000','Northport','NORTHPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:30:36','1900-01-01 00:00:00',1,0,1),(19673,'18732','Northridge','NORTHRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:36','1900-01-01 00:00:00',1,0,1),(19674,'18733','Northstar','NORTHSTAR',NULL,'','United States','',0,0,231,'2016-10-17 11:30:37','1900-01-01 00:00:00',1,0,1),(19675,'29001','Northville','NORTHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:37','1900-01-01 00:00:00',1,0,1),(19676,'30830','Northwest - Six Flags','NORTHWEST - SIX FLAGS',NULL,'','United States','',0,0,231,'2016-10-17 11:30:38','1900-01-01 00:00:00',1,0,1),(19677,'24780','Northwest Bulgaria','NORTHWEST BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:30:39','1900-01-01 00:00:00',1,0,1),(19678,'16935','Northwest Point','NORTHWEST POINT',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:30:40','1900-01-01 00:00:00',1,0,1),(19679,'26855','Northwest Tasmania','NORTHWEST TASMANIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:40','1900-01-01 00:00:00',1,0,1),(19680,'8645','Northwich','NORTHWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19681,'8646','Northwold','NORTHWOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19682,'29476','Northwood','NORTHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19683,'31191','Norton','NORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:30:42','1900-01-01 00:00:00',1,0,1),(19684,'19130','Norwalk','NORWALK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:44','1900-01-01 00:00:00',1,0,1),(19685,'22190','Norway','NORWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19686,'25615','Norway House','NORWAY HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19687,'21487','Norwell','NORWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19688,'1405','Norwich','NORWICH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:46','1900-01-01 00:00:00',1,0,1),(19689,'29478','Norwich','NORWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:30:46','1900-01-01 00:00:00',1,0,1),(19690,'29479','Norwood','NORWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:47','1900-01-01 00:00:00',1,0,1),(19691,'24220','Nosara','NOSARA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19692,'13318','Noshiro','NOSHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19693,'39877','Nossentiner Hutte','NOSSENTINER HUTTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19694,'39187','Nossi-be','NOSSI-BE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19695,'40166','Noszvaj','NOSZVAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19696,'12217','Noto','NOTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19697,'43180','Noto','NOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19698,'15007','Notodden','NOTODDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19699,'41134','Notre Dame Du Portage','NOTRE DAME DU PORTAGE',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19700,'6682','Notre-dame-de-bellecombe','NOTRE-DAME-DE-BELLECOMBE',NULL,'','France','',0,0,76,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19701,'40194','Notre-dame-de-monts','NOTRE-DAME-DE-MONTS',NULL,'','France','',0,0,76,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19702,'39303','Notre-dame-du-bon-conseil','NOTRE-DAME-DU-BON-CONSEIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19703,'26532','Notting Hill','NOTTING HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19704,'1399','Nottingham','NOTTINGHAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19705,'23303','Nottwil','NOTTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19706,'42553','Nouakchott','NOUAKCHOTT',NULL,'','Mauritania','',0,0,138,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19707,'14432','Noumea','NOUMEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19708,'16644','Nova Gorica','NOVA GORICA',NULL,'','Slovenia','Nova Gorica',0,0,192,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19709,'12221','Novafeltria','NOVAFELTRIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19710,'10026','Novalja','NOVALJA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19711,'12800','Novara','NOVARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19712,'12222','Novate Milanese','NOVATE MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:54','1900-01-01 00:00:00',1,0,1),(19713,'18735','Novato','NOVATO',NULL,'','United States','',0,0,231,'2016-10-17 11:30:58','1900-01-01 00:00:00',1,0,1),(19714,'16304','Novaya Derevnya','NOVAYA DEREVNYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:30:58','1900-01-01 00:00:00',1,0,1),(19715,'36025','Nove Mesto Na Morave','NOVE MESTO NA MORAVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19716,'38255','Nove Zamky','NOVE ZAMKY',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19717,'11335','Novegro','NOVEGRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19718,'38937','Novello','NOVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19719,'12902','Noventa Di Piave','NOVENTA DI PIAVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19720,'6500','Noves','NOVES',NULL,'','France','',0,0,76,'2016-10-17 11:31:00','1900-01-01 00:00:00',1,0,1),(19721,'12223','Novi Ligure','NOVI LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19722,'36643','Novi Sad','NOVI SAD',NULL,'','Serbia','',0,0,468,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19723,'10027','Novi Vinodolski','NOVI VINODOLSKI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19724,'9972','Novigrad','NOVIGRAD',NULL,'','Croatia','',0,0,55,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19725,'16305','Novinki','NOVINKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19726,'44267','Novkhana','NOVKHANA',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19727,'36690','Novo Mesto','NOVO MESTO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19728,'39682','Novo Sancti Petri','NOVO SANCTI PETRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19729,'16280','Novoarchangelskoje','NOVOARCHANGELSKOJE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19730,'16373','Novogireyevo','NOVOGIREYEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19731,'16399','Novokhovrino','NOVOKHOVRINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19732,'16336','Novokuznetsk','NOVOKUZNETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19733,'16281','Novorossijsk','NOVOROSSIJSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19734,'16410','Novosibirsk','NOVOSIBIRSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19735,'41866','Novy Jicin','NOVY JICIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19736,'43996','Novy Smokovec','NOVY SMOKOVEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19737,'16282','Novyj Urengoj','NOVYJ URENGOJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19738,'39465','Nowogrod','NOWOGROD',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19739,'34274','Nowra','NOWRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19740,'15659','Nowy Sacz','NOWY SACZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19741,'38577','Noxen','NOXEN',NULL,'','United States','',0,0,231,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19742,'5667','Noyant-de-touraine','NOYANT-DE-TOURAINE',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19743,'6188','Noyelles-godault','NOYELLES-GODAULT',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19744,'6189','Noyelles-sous-lens','NOYELLES-SOUS-LENS',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19745,'6310','Noyelles-sur-mer','NOYELLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:31:04','1900-01-01 00:00:00',1,0,1),(19746,'4427','Noyers Sur Cher','NOYERS SUR CHER',NULL,'','France','',0,0,76,'2016-10-17 11:31:04','1900-01-01 00:00:00',1,0,1),(19747,'6311','Noyon','NOYON',NULL,'','France','',0,0,76,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19748,'26856','Nubeena','NUBEENA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19749,'4428','Nuces','NUCES',NULL,'','France','',0,0,76,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19750,'277','Nudlingen','NUDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19751,'39060','Nuenen','NUENEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19752,'42446','Nuerburg','NUERBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19753,'2081','Nuertingen','NUERTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19754,'41569','Nueva Andalucia','NUEVA ANDALUCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19755,'13976','Nueva Atzacoalco','NUEVA ATZACOALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19756,'43117','Nuevalos','NUEVALOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19757,'3807','Nuevo Horizonte','NUEVO HORIZONTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19758,'14109','Nuevo Laredo','NUEVO LAREDO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19759,'22606','Nufringen','NUFRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19760,'933','Nui Thanh','NUI THANH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19761,'17723','Nuiqsut','NUIQSUT',NULL,'','United States','',0,0,231,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19762,'4894','Nuits-saint-georges','NUITS-SAINT-GEORGES',NULL,'','France','',0,0,76,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19763,'17115','Nuku Alofa','NUKU ALOFA',NULL,'','Tonga','',0,0,218,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19764,'36540','Nuku Hiva','NUKU HIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19765,'36797','Nuku\'alofa','NUKU\'ALOFA',NULL,'','Tonga','',0,0,218,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19766,'4068','Nukubati Island','NUKUBATI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19767,'32159','Nukus','NUKUS',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19768,'14605','Nuland','NULAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19769,'17724','Nulato','NULATO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19770,'44265','Nulkaba','NULKABA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19771,'12224','Numana','NUMANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19772,'13319','Numazu','NUMAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19773,'548','Numbrecht','NUMBRECHT',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19774,'26296','Numbulwar','NUMBULWAR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19775,'10189','Numfoor','NUMFOOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19776,'17725','Nunapitchuk','NUNAPITCHUK',NULL,'','United States','',0,0,231,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19777,'26533','Nunawading','NUNAWADING',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19778,'34276','Nundle','NUNDLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19779,'8649','Nuneaton','NUNEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19780,'23547','Nunoa','NUNOA',NULL,'','Chile','',0,0,45,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19781,'14546','Nunspeet','NUNSPEET',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19782,'16134','Nunue','NUNUE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19783,'10249','Nunukan','NUNUKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19784,'12827','Nuoro','NUORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19785,'650','Nurburg','NURBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19786,'22367','Nuremberg','NUREMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19787,'36053','Nuremberg-fuerth','NUREMBERG-FUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19788,'26814','Nuriootpa','NURIOOTPA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19789,'4003','Nurmes','NURMES',NULL,'','Finland','',0,0,75,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19790,'278','Nurnberg','NURNBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19791,'43194','Nurtingen','NURTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19792,'22368','Nürtingen','NÜRTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19793,'11338','Nusenna','NUSENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19794,'39430','Nussdorf Am Inn','NUSSDORF AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19795,'8650','Nutfield','NUTFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19796,'9864','Nuuk','NUUK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19797,'13602','Nuwara Eliya','NUWARA ELIYA',NULL,'','Sri Lanka','Nuwara Eliya',0,0,200,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19798,'2456','Nuweiba','NUWEIBA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19799,'17726','Nyac','NYAC',NULL,'','United States','',0,0,231,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19800,'29003','Nyack','NYACK',NULL,'','United States','',0,0,231,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19801,'32667','Nyanga','NYANGA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19802,'41099','Nyaung Shwe','NYAUNG SHWE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19803,'36394','Nyaung-u','NYAUNG-U',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19804,'2197','Nyborg','NYBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19805,'2323','Nyby Strandhuse','NYBY STRANDHUSE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19806,'40348','Nyíregyháza','NYÍREGYHÁZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19807,'2308','Nykobing','NYKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19808,'16777','Nykoping','NYKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19809,'32587','Nylstroom','NYLSTROOM',NULL,'','South Africa','',0,0,195,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19810,'24354','Nymburk','NYMBURK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19811,'2264','Nymindegab','NYMINDEGAB',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19812,'16839','Nynashamn','NYNASHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19813,'34277','Nyngan','NYNGAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19814,'23304','Nyon','NYON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19815,'6683','Nyons','NYONS',NULL,'','France','',0,0,76,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19816,'40162','O Carballino','O CARBALLINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19817,'41489','O Grove','O GROVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19818,'39680','O Pino','O PINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19819,'33036','Oacoma','OACOMA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19820,'8651','Oadby','OADBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:17','1900-01-01 00:00:00',1,0,1),(19821,'36916','Oahu-honolulu','OAHU-HONOLULU',NULL,'','United States','',0,0,231,'2016-10-17 11:31:17','1900-01-01 00:00:00',1,0,1),(19822,'36942','Oahu-kapolei','OAHU-KAPOLEI',NULL,'','United States','',0,0,231,'2016-10-17 11:31:18','1900-01-01 00:00:00',1,0,1),(19823,'36978','Oahu-makaha','OAHU-MAKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:18','1900-01-01 00:00:00',1,0,1),(19824,'37059','Oahu-waikiki','OAHU-WAIKIKI',NULL,'','United States','',0,0,231,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19825,'36856','Oahu-waimanalo','OAHU-WAIMANALO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19826,'25616','Oak Bluff','OAK BLUFF',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19827,'20691','Oakbrook Terrace','OAKBROOK TERRACE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:25','1900-01-01 00:00:00',1,0,1),(19828,'21242','Oakdale','OAKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:25','1900-01-01 00:00:00',1,0,1),(19829,'8652','Oakham','OAKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:27','1900-01-01 00:00:00',1,0,1),(19830,'19522','Oakhurst','OAKHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:31:27','1900-01-01 00:00:00',1,0,1),(19831,'20692','Oakland','OAKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:31:28','1900-01-01 00:00:00',1,0,1),(19832,'26926','Oakleigh','OAKLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19833,'21111','Oakley','OAKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19834,'37596','Oakley','OAKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19835,'7242','Oakmere','OAKMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:34','1900-01-01 00:00:00',1,0,1),(19836,'30108','Oakmont','OAKMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:31:34','1900-01-01 00:00:00',1,0,1),(19837,'29719','Oakridge','OAKRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:35','1900-01-01 00:00:00',1,0,1),(19838,'18742','Oakville','OAKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:36','1900-01-01 00:00:00',1,0,1),(19839,'34583','Oakville','OAKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19840,'29480','Oakwood','OAKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19841,'26857','Oakwood','OAKWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19842,'15145','Oamaru','OAMARU',NULL,'','New Zealand','Oamaru',0,0,157,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19843,'13320','Obama','OBAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19844,'1407','Oban','OBAN',NULL,'','UNITED KINGDOM','Oban',0,0,469,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19845,'10250','Obano','OBANO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19846,'24431','Obdach','OBDACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19847,'23305','Ober Tschappina','OBER TSCHAPPINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19848,'279','Oberammergau','OBERAMMERGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19849,'24555','Oberau','OBERAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19850,'280','Oberaudorf','OBERAUDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19851,'462','Oberaula','OBERAULA',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19852,'463','Oberbreitzbach','OBERBREITZBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19853,'11339','Obereggen','OBEREGGEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19854,'23465','Oberentfelden','OBERENTFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19855,'23306','Obererlinsbach','OBERERLINSBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19856,'39195','Obergesteln','OBERGESTELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19857,'24558','Obergurgl','OBERGURGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19858,'22369','Oberharmersbach','OBERHARMERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19859,'44180','Oberharz Am Brocken','OBERHARZ AM BROCKEN',NULL,'','Greece','',0,0,86,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19860,'40092','Oberhaslach','OBERHASLACH',NULL,'','France','',0,0,76,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19861,'2036','Oberhausen','OBERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19862,'2094','Oberhof','OBERHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19863,'281','Oberkirch','OBERKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19864,'24536','Oberlaa','OBERLAA',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19865,'651','Oberlahr','OBERLAHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19866,'21112','Oberlin','OBERLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19867,'22370','Obermaiselstein','OBERMAISELSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19868,'6782','Obernai','OBERNAI',NULL,'','France','',0,0,76,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19869,'39788','Obernberg Am Brenner','OBERNBERG AM BRENNER',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19870,'282','Obernzell','OBERNZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19871,'464','Oberorke','OBERORKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19872,'283','Oberpfaffenhofen','OBERPFAFFENHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19873,'39037','Oberpullendorf','OBERPULLENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19874,'38506','Oberraden','OBERRADEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19875,'284','Oberried','OBERRIED',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19876,'2068','Oberschleissheim','OBERSCHLEISSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19877,'2009','Oberschoneweide','OBERSCHONEWEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19878,'285','Obersendling','OBERSENDLING',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19879,'286','Oberstaufen','OBERSTAUFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19880,'22371','Oberstdorf','OBERSTDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19881,'5043','Obersteigen','OBERSTEIGEN',NULL,'','France','',0,0,76,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19882,'23062','Oberstrass','OBERSTRASS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19883,'24393','Obertauern','OBERTAUERN',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19884,'38043','Oberterzen','OBERTERZEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19885,'685','Oberthal','OBERTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19886,'39767','Obertraun','OBERTRAUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19887,'287','Obertrubach','OBERTRUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19888,'27013','Obertrumersee','OBERTRUMERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19889,'465','Oberursel','OBERURSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19890,'39722','Oberwald','OBERWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19891,'44147','Oberwesel','OBERWESEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19892,'22372','Oberwiesenthal','OBERWIESENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19893,'44148','Oberwolfach','OBERWOLFACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19894,'29483','Obetz','OBETZ',NULL,'','United States','',0,0,231,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19895,'15981','Obidos','OBIDOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19896,'13321','Obihiro','OBIHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19897,'2097','Obock','OBOCK',NULL,'','Djibouti','',0,0,60,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19898,'38973','Obsteig','OBSTEIG',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19899,'42273','Obuasi','OBUASI',NULL,'','Ghana','',0,0,84,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19900,'38181','Obudu','OBUDU',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19901,'23063','Obwalden - Nidwalden','OBWALDEN - NIDWALDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19902,'24797','Obzor','OBZOR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19903,'19524','Ocala','OCALA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19904,'24119','Ocana','OCANA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19905,'37522','Ocana','OCANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19906,'12225','Occhiobello','OCCHIOBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19907,'18743','Occidental','OCCIDENTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19908,'12226','Occimiano','OCCIMIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19909,'25497','Ocean Falls','OCEAN FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:50','1900-01-01 00:00:00',1,0,1),(19910,'18745','Oceano','OCEANO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:53','1900-01-01 00:00:00',1,0,1),(19911,'13087','Ocho Rios','OCHO RIOS',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19912,'15698','Ochota','OCHOTA',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19913,'288','Ochsenfurt','OCHSENFURT',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19914,'22607','Ochsenhausen','OCHSENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19915,'16225','Ocna Sibiului','OCNA SIBIULUI',NULL,'','Romania','',0,0,179,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19916,'19525','Ocoee','OCOEE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19917,'39050','Oconnor','OCONNOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19918,'26611','O\'connor','O\'CONNOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19919,'31843','Oconomowoc','OCONOMOWOC',NULL,'','United States','',0,0,231,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19920,'31844','Oconto','OCONTO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:56','1900-01-01 00:00:00',1,0,1),(19921,'33963','Ocracoke','OCRACOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:56','1900-01-01 00:00:00',1,0,1),(19922,'13323','Odawara','ODAWARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19923,'14777','Odda','ODDA',NULL,'','Norway','Odda',0,0,164,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19924,'2154','Odder','ODDER',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19925,'30834','Odem','ODEM',NULL,'','United States','',0,0,231,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19926,'2198','Odense','ODENSE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19927,'21756','Odenton','ODENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19928,'22373','Odenwald','ODENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19929,'12903','Oderzo','ODERZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19930,'34584','Odessa','ODESSA',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19931,'27734','Odessa','ODESSA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19932,'17498','Odessa','ODESSA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19933,'8654','Odiham','ODIHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19934,'41651','Odivelas','ODIVELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19935,'14499','Odoorn','ODOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19936,'36631','Odorheiu Secuiesc','ODORHEIU SECUIESC',NULL,'','Romania','',0,0,179,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19937,'6119','Odos','ODOS',NULL,'','France','',0,0,76,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19938,'14728','Oegstgeest','OEGSTGEEST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19939,'20262','Oelwein','OELWEIN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19940,'26298','Oenpelli','OENPELLI',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19941,'23307','Oerlikon','OERLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19942,'37222','Oesterbybruk','OESTERBYBRUK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19943,'40001','Oestrich-winkel','OESTRICH-WINKEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19944,'24559','Oetz','OETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19945,'27014','Oetztal','OETZTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19946,'41838','Oeversee','OEVERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19947,'5782','Offemont','OFFEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19948,'466','Offenbach','OFFENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19949,'22608','Offenburg','OFFENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19950,'37669','Offida','OFFIDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19951,'15817','Ofir','OFIR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19952,'26155','Ofu Island','OFU ISLAND',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19953,'13324','Ogaki','OGAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19954,'28154','Ogallala','OGALLALA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19955,'33374','Ogden','OGDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:04','1900-01-01 00:00:00',1,0,1),(19956,'29008','Ogdensburg','OGDENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19957,'11340','Oggebbio','OGGEBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19958,'3276','Ogijares','OGIJARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19959,'20694','Oglesby','OGLESBY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19960,'42153','Ogliastra','OGLIASTRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19961,'34585','Ogoki','OGOKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19962,'37415','Ogori','OGORI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19963,'43527','Ogre','OGRE',NULL,'','Latvia','',0,0,119,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19964,'21903','Ogunquit','OGUNQUIT',NULL,'','United States','',0,0,231,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19965,'37511','Ohakune','OHAKUNE',NULL,'','New Zealand','Ohakune',0,0,157,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19966,'42689','Ohito','OHITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19967,'381','Ohlsdorf','OHLSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19968,'289','Ohlstadt','OHLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19969,'41852','Ohrid','OHRID',NULL,'','Macedonia','',0,0,129,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19970,'32588','Ohrigstad','OHRIGSTAD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19971,'9814','Oia','OIA',NULL,'','Greece','Oia',0,0,86,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19972,'25026','Oiapoque','OIAPOQUE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19973,'41471','Oiartzun','OIARTZUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19974,'39592','Oiso','OISO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19975,'5826','Oissel','OISSEL',NULL,'','France','',0,0,76,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19976,'14606','Oisterwijk','OISTERWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19977,'25243','Oistins','OISTINS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19978,'13404','Oita','OITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19979,'5668','Oizon','OIZON',NULL,'','France','',0,0,76,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19980,'42560','Oizumi','OIZUMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19981,'18747','Ojai','OJAI',NULL,'','United States','',0,0,231,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19982,'3277','Ojen','OJEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19983,'10316','Okaba','OKABA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19984,'43030','Okains Bay','OKAINS BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19985,'13180','Okamoto','OKAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19986,'43801','Okanagan Falls','OKANAGAN FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19987,'31570','Okanogan','OKANOGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19988,'14404','Okavango','OKAVANGO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19989,'20695','Okawville','OKAWVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19990,'42879','Okaya','OKAYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19991,'13405','Okayama','OKAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19992,'42690','Okazaki','OKAZAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19993,'15593','Okecie Airport','OKECIE AIRPORT',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19994,'19526','Okeechobee','OKEECHOBEE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19995,'8655','Okehampton','OKEHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19996,'32936','Okemah','OKEMAH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19997,'22194','Okemos','OKEMOS',NULL,'','United States','',0,0,231,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(19998,'15146','Okiato','OKIATO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(19999,'32486','Okiep','OKIEP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20000,'35709','Okinawa-ginowan','OKINAWA-GINOWAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20001,'35734','Okinawa-kunigamison','OKINAWA-KUNIGAMISON',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20002,'35750','Okinawa-nago','OKINAWA-NAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20003,'35704','Okinawa-naha','OKINAWA-NAHA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20004,'35756','Okinawa-onnason','OKINAWA-ONNASON',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20005,'35769','Okinawa-yomitan','OKINAWA-YOMITAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20006,'13182','Okino Erabu','OKINO ERABU',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20007,'43198','Okinoshima','OKINOSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20008,'32939','Okmulgee','OKMULGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:15','1900-01-01 00:00:00',1,0,1),(20009,'20263','Okoboji','OKOBOJI',NULL,'','United States','',0,0,231,'2016-10-17 11:32:15','1900-01-01 00:00:00',1,0,1),(20010,'27894','Okolona','OKOLONA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20011,'6844','Okondja','OKONDJA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20012,'25341','Okotoks','OKOTOKS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20013,'24057','Okoyo','OKOYO',NULL,'','Congo','',0,0,51,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20014,'39930','Okrug Donji','OKRUG DONJI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20015,'10191','Oksibil','OKSIBIL',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20016,'17220','Okurcalar','OKURCALAR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20017,'13390','Okushiri','OKUSHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20018,'10989','Olafsfjordur','OLAFSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20019,'11015','Olafsvik','OLAFSVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20020,'39048','Olaibar','OLAIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20021,'38575','Olakira Camp','OLAKIRA CAMP',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20022,'5949','Olargues','OLARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20023,'21113','Olathe','OLATHE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20024,'3061','Olave','OLAVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20025,'1898','Olbernhau','OLBERNHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20026,'1899','Olbersdorf','OLBERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20027,'12768','Olbia','OLBIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20028,'5336','Olby','OLBY',NULL,'','France','',0,0,76,'2016-10-17 11:32:19','1900-01-01 00:00:00',1,0,1),(20029,'290','Olching','OLCHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:19','1900-01-01 00:00:00',1,0,1),(20030,'14228','Old Towne','OLD TOWNE',NULL,'','Montserrat','',0,0,147,'2016-10-17 11:32:22','1900-01-01 00:00:00',1,0,1),(20031,'8658','Oldbury','OLDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20032,'14993','Olden','OLDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20033,'27265','Oldenburg','OLDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20034,'22374','Oldenburger Munsterland','OLDENBURGER MUNSTERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20035,'8659','Oldham','OLDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20036,'8660','Oldmeldrum','OLDMELDRUM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20037,'25342','Olds','OLDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20038,'19528','Oldsmar','OLDSMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20039,'29012','Olean','OLEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20040,'25826','O\'leary','O\'LEARY',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20041,'12936','Oleggio','OLEGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20042,'3674','Oleiros','OLEIROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20043,'6120','Olemps','OLEMPS',NULL,'','France','',0,0,76,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20044,'42747','Olerdola','OLERDOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20045,'38628','Olèrdola','OLÈRDOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20046,'3576','Olesa De Montserrat','OLESA DE MONTSERRAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20047,'38781','Oletta','OLETTA',NULL,'','France','',0,0,76,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20048,'17728','Olga Bay','OLGA BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20049,'16283','Olgino','OLGINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20050,'15937','Olhao','OLHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20051,'15938','Olhos De Agua','OLHOS DE AGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20052,'44260','Olhuveli','OLHUVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20053,'12227','Oliena','OLIENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20054,'25032','Olinda','OLINDA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20055,'40253','Olinda','OLINDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20056,'3062','Olite','OLITE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20057,'15818','Olivais Sul','OLIVAIS SUL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20058,'39519','Olivares','OLIVARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20059,'27895','Olive Branch','OLIVE BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:29','1900-01-01 00:00:00',1,0,1),(20060,'15861','Oliveira De Azemeis','OLIVEIRA DE AZEMEIS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:29','1900-01-01 00:00:00',1,0,1),(20061,'38391','Olivella','OLIVELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20062,'3645','Olivenza','OLIVENZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20063,'25499','Oliver','OLIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20064,'29013','Oliverea','OLIVEREA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20065,'5669','Olivet','OLIVET',NULL,'','France','',0,0,76,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20066,'12228','Oliveto Citra','OLIVETO CITRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20067,'27736','Olivette','OLIVETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20068,'27474','Olivia','OLIVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20069,'23308','Olivone','OLIVONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20070,'15379','Ollantaytambo','OLLANTAYTAMBO',NULL,'','Peru','',0,0,172,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20071,'5337','Olliergues','OLLIERGUES',NULL,'','France','',0,0,76,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20072,'41319','Olmedo','OLMEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20073,'4768','Olmeto','OLMETO',NULL,'','France','',0,0,76,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20074,'30836','Olmito','OLMITO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20075,'20696','Olney','OLNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20076,'37709','Olocau Del Rey','OLOCAU DEL REY',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20077,'16682','Olofstroem','OLOFSTROEM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20078,'36673','Olofstrom','OLOFSTROM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20079,'24348','Olomouc','OLOMOUC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20080,'15555','Olongapo','OLONGAPO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20081,'36269','Oloron-herrere','OLORON-HERRERE',NULL,'','France','',0,0,76,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20082,'5231','Oloron-sainte-marie','OLORON-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20083,'20089','Olowalu','OLOWALU',NULL,'','United States','',0,0,231,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20084,'32335','Olpoi','OLPOI',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20085,'549','Olsberg','OLSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20086,'2199','Olsted','OLSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20087,'15723','Olsztyn','OLSZTYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20088,'44049','Oltarzew','OLTARZEW',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20089,'23309','Olten','OLTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20090,'40511','Olvega','OLVEGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20091,'41947','Olvera','OLVERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20092,'31571','Olympia','OLYMPIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20093,'9557','Olympia','OLYMPIA',NULL,'','Greece','Olympia',0,0,86,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20094,'43664','Olympic Dam','OLYMPIC DAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20095,'31573','Olympic National Park','OLYMPIC NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20096,'43407','Om El Seid Hill','OM EL SEID HILL',NULL,'','Egypt','',0,0,65,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20097,'8661','Omagh','OMAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20098,'31574','Omak','OMAK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20099,'15147','Omapere','OMAPERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20100,'15227','Omarama','OMARAMA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20101,'36444','Omaruru','OMARURU',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20102,'6855','Omboue','OMBOUE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20103,'12229','Omegna','OMEGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20104,'34586','Omemee','OMEMEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20105,'13845','Ometusco','OMETUSCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20106,'13502','Omin-ni','OMIN-NI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20107,'10029','Omis','OMIS',NULL,'','Croatia','',0,0,55,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20108,'35329','Omisalj','OMISALJ',NULL,'','Croatia','Omisalj',0,0,55,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20109,'37417','Omkareshwar','OMKARESHWAR',NULL,'','India','',0,0,101,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20110,'14754','Ommen','OMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20111,'9964','Omoa','OMOA',NULL,'','Honduras','',0,0,97,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20112,'31845','Omro','OMRO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20113,'16411','Omsk','OMSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20114,'43921','Omura','OMURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20115,'31846','Onalaska','ONALASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:41','1900-01-01 00:00:00',1,0,1),(20116,'27475','Onamia','ONAMIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:41','1900-01-01 00:00:00',1,0,1),(20117,'31192','Onancock','ONANCOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20118,'42695','Onanole','ONANOLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20119,'42078','Onate','ONATE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20120,'38160','Onati','ONATI',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20121,'20264','Onawa','ONAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20122,'14418','Ondangwa','ONDANGWA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20123,'40324','Ondara','ONDARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20124,'5232','Ondres','ONDRES',NULL,'','France','',0,0,76,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20125,'15148','One Tree Hill','ONE TREE HILL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20126,'15149','Onehunga','ONEHUNGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20127,'33231','Oneida','ONEIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:44','1900-01-01 00:00:00',1,0,1),(20128,'28158','Oneill','ONEILL',NULL,'','United States','',0,0,231,'2016-10-17 11:32:44','1900-01-01 00:00:00',1,0,1),(20129,'28159','O\'neill','O\'NEILL',NULL,'','United States','',0,0,231,'2016-10-17 11:32:45','1900-01-01 00:00:00',1,0,1),(20130,'22195','Onekama','ONEKAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:45','1900-01-01 00:00:00',1,0,1),(20131,'17929','Oneonta','ONEONTA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:46','1900-01-01 00:00:00',1,0,1),(20132,'15150','Oneroa','ONEROA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20133,'41302','Ongayo','ONGAYO',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20134,'8662','Onich','ONICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20135,'33232','Only','ONLY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20136,'23443','Onnens','ONNENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20137,'4069','Ono-i-lau','ONO-I-LAU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20138,'13468','Onotoa','ONOTOA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20139,'21490','Onset','ONSET',NULL,'','United States','',0,0,231,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20140,'26612','Onslow','ONSLOW',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20141,'29721','Ontario','ONTARIO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20142,'24918','Ontario Village','ONTARIO VILLAGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:32:50','1900-01-01 00:00:00',1,0,1),(20143,'3154','Ontinyent','ONTINYENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20144,'22196','Ontonagon','ONTONAGON',NULL,'','United States','',0,0,231,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20145,'38208','Onuma','ONUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20146,'5670','Onzain','ONZAIN',NULL,'','France','',0,0,76,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20147,'14547','Ooij','OOIJ',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20148,'20090','Ookala','OOKALA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20149,'33233','Ooltewah','OOLTEWAH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20150,'24731','Oostduinkerke','OOSTDUINKERKE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20151,'40971','Oostende','OOSTENDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20152,'14548','Oosterbeek','OOSTERBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20153,'14607','Oosterhout','OOSTERHOUT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20154,'14517','Oosterwolde','OOSTERWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20155,'40513','Oostkamp','OOSTKAMP',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20156,'14518','Oost-vlieland','OOST-VLIELAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20157,'39768','Oostvoorne','OOSTVOORNE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20158,'1765','Ootacamund','OOTACAMUND',NULL,'','India','',0,0,101,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20159,'34278','Ootha','OOTHA',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20160,'14755','Ootmarsum','OOTMARSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20161,'40879','Ooty','OOTY',NULL,'','India','Ooty',18,0,101,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20162,'40009','Opalenica','OPALENICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20163,'19529','Opa-locka','OPA-LOCKA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20164,'10030','Opatija','OPATIJA',NULL,'','Croatia','Opatija',0,0,55,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20165,'21243','Opelousas','OPELOUSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20166,'12230','Opera','OPERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20167,'42411','Opfikon','OPFIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20168,'20091','Opihikao','OPIHIKAO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20169,'6501','Opio','OPIO',NULL,'','France','',0,0,76,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20170,'15652','Opole','OPOLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20171,'15228','Opononi','OPONONI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20172,'14939','Oppdal','OPPDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20173,'4431','Oppède','OPPÈDE',NULL,'','France','',0,0,76,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20174,'22609','Oppenau','OPPENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20175,'14813','Oppland','OPPLAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20176,'43018','Opua','OPUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20177,'36445','Opuwo','OPUWO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20178,'13096','Oracabessa','ORACABESSA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20179,'18175','Oracle','ORACLE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20180,'16226','Oradea','ORADEA',NULL,'','Romania','',0,0,179,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20181,'37801','Oraison','ORAISON',NULL,'','France','',0,0,76,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20182,'15229','Orakei','ORAKEI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20183,'38774','Oran','ORAN',NULL,'','Algeria','',0,0,3,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20184,'29485','Orange','ORANGE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20185,'5119','Orange','ORANGE',NULL,'','France','',0,0,76,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20186,'34279','Orange','ORANGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:59','1900-01-01 00:00:00',1,0,1),(20187,'24921','Orange Walk','ORANGE WALK',NULL,'','Belize','',0,0,22,'2016-10-17 11:33:02','1900-01-01 00:00:00',1,0,1),(20188,'30383','Orangeburg','ORANGEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:33:03','1900-01-01 00:00:00',1,0,1),(20189,'34587','Orangeville','ORANGEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20190,'14414','Oranjemund','ORANJEMUND',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20191,'25902','Oranjestad','ORANJESTAD',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20192,'25837','Oranjestad','ORANJESTAD',NULL,'','Aruba','',0,0,12,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20193,'14519','Oranjewoud','ORANJEWOUD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20194,'32487','Oranjezicht','ORANJEZICHT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20195,'10870','Oranmore','ORANMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20196,'39905','Orasac','ORASAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20197,'12231','Orbassano','ORBASSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20198,'4432','Orbec','ORBEC',NULL,'','France','',0,0,76,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20199,'12980','Orbetello','ORBETELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20200,'6783','Orbey','ORBEY',NULL,'','France','',0,0,76,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20201,'26536','Orbost','ORBOST',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20202,'16891','Orby','ORBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20203,'31575','Orcas','ORCAS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:06','1900-01-01 00:00:00',1,0,1),(20204,'31576','Orchards','ORCHARDS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20205,'10571','Orchha','ORCHHA',NULL,'','India','Orchha',15,0,101,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20206,'26738','Orchid Beach','ORCHID BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20207,'17407','Orchid Island','ORCHID ISLAND',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20208,'6502','Orcieres','ORCIERES',NULL,'','France','',0,0,76,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20209,'5338','Orcines','ORCINES',NULL,'','France','',0,0,76,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20210,'38070','Orco Feglino','ORCO FEGLINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20211,'3063','Orcoyen','ORCOYEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20212,'25881','Ordino','ORDINO',NULL,'','Andorra','',0,0,5,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20213,'43827','Ordos City','ORDOS CITY',NULL,'','China','',0,0,46,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20214,'2330','Ordrup','ORDRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20215,'17354','Ordu','ORDU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20216,'41945','Orduna','ORDUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20217,'3156','Orduña','ORDUÑA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20218,'10031','Orebic','OREBIC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20219,'16763','Orebro','OREBRO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20220,'16684','Orebro-bofors','OREBRO-BOFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20221,'37285','Orel','OREL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20222,'17509','Orel','OREL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20223,'6684','Orelle','ORELLE',NULL,'','France','',0,0,76,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20224,'33376','Orem','OREM',NULL,'','United States','',0,0,231,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20225,'3675','Orense','ORENSE',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20226,'39537','Orestiada','ORESTIADA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20227,'15230','Orewa','OREWA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20228,'11342','Orfengo Di Casalino','ORFENGO DI CASALINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20229,'43676','Orford','ORFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20230,'32750','Orford','ORFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20231,'8663','Orford','ORFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20232,'4769','Orgeval','ORGEVAL',NULL,'','France','',0,0,76,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20233,'2716','Orgiva','ORGIVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20234,'6503','Orgon','ORGON',NULL,'','France','',0,0,76,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20235,'13064','Oriago','ORIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20236,'2717','Orient','ORIENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20237,'9368','Orient Bay','ORIENT BAY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20238,'21491','Orient Heights','ORIENT HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20239,'19532','Orienta Gardens','ORIENTA GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20240,'33964','Oriental','ORIENTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20241,'23064','Origlio','ORIGLIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20242,'3771','Orihuela','ORIHUELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20243,'18755','Orinda','ORINDA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20244,'42491','Orini Nafpaktia','ORINI NAFPAKTIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20245,'29020','Oriskany','ORISKANY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20246,'12828','Oristano','ORISTANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20247,'13931','Orizaba','ORIZABA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20248,'14994','Orkanger','ORKANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20249,'43343','Orkney','ORKNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20250,'21906','Orland','ORLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:33:18','1900-01-01 00:00:00',1,0,1),(20251,'14814','Orland','ORLAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:18','1900-01-01 00:00:00',1,0,1),(20252,'19533','Orlando','ORLANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:19','1900-01-01 00:00:00',1,0,1),(20253,'34589','Orleans','ORLEANS',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:19','1900-01-01 00:00:00',1,0,1),(20254,'4982','Orleans','ORLEANS',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20255,'35169','Orleans-saran','ORLEANS-SARAN',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20256,'4770','Orly','ORLY',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20257,'15317','Ormara','ORMARA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20258,'9708','Ormilia','ORMILIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20259,'15556','Ormoc','ORMOC',NULL,'','Philippines','',0,0,173,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20260,'26299','Ormond','ORMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20261,'19536','Ormond Beach','ORMOND BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20262,'32412','Ormonde','ORMONDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20263,'44279','Ormont-dessus','ORMONT-DESSUS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20264,'8664','Ormskirk','ORMSKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20265,'5950','Ornaisons','ORNAISONS',NULL,'','France','',0,0,76,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20266,'36672','Ornskoldsvick','ORNSKOLDSVICK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20267,'16806','Ornskoldsvik','ORNSKOLDSVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20268,'901','Orocue','OROCUE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20269,'20384','Orofino','OROFINO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20270,'34411','Oromocto','OROMOCTO',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20271,'21907','Orono','ORONO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20272,'21908','Orono, Town Of','ORONO, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20273,'3418','Oropesa','OROPESA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20274,'12232','Orosei','OROSEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20275,'24205','Orosi','OROSI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20276,'3676','Oroso','OROSO',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20277,'31577','Oroville','OROVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20278,'26300','Orpheus Island','ORPHEUS ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:26','1900-01-01 00:00:00',1,0,1),(20279,'8665','Orphir','ORPHIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:26','1900-01-01 00:00:00',1,0,1),(20280,'30111','Orrtanna','ORRTANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:27','1900-01-01 00:00:00',1,0,1),(20281,'29487','Orrville','ORRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20282,'36674','Orsa','ORSA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20283,'686','Orscholz','ORSCHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20284,'23065','Orselina','ORSELINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20285,'14815','Orsta','ORSTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20286,'17343','Ortaca','ORTACA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20287,'5024','Orthez','ORTHEZ',NULL,'','France','',0,0,76,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20288,'12951','Ortisei','ORTISEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20289,'27478','Ortonville','ORTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20290,'6262','Orvault','ORVAULT',NULL,'','France','',0,0,76,'2016-10-17 11:33:30','1900-01-01 00:00:00',1,0,1),(20291,'30112','Orwigsburg','ORWIGSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20292,'13530','Oryu-dong','ORYU-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20293,'20266','Osage','OSAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20294,'35726','Osaka-kansai','OSAKA-KANSAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:32','1900-01-01 00:00:00',1,0,1),(20295,'25211','Osasco','OSASCO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:33:32','1900-01-01 00:00:00',1,0,1),(20296,'21114','Osawatomie','OSAWATOMIE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20297,'21115','Osborne','OSBORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20298,'16873','Osby','OSBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20299,'18065','Osceola','OSCEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:34','1900-01-01 00:00:00',1,0,1),(20300,'1944','Oschersleben','OSCHERSLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20301,'22197','Oscoda','OSCODA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20302,'14651','Osdorp','OSDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20303,'13447','Osh','OSH',NULL,'','Kyrgyzstan','',0,0,117,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20304,'14416','Oshakati','OSHAKATI',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20305,'34590','Oshawa','OSHAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20306,'31848','Oshkosh','OSHKOSH',NULL,'','United States','',0,0,231,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20307,'40880','Osian','OSIAN',NULL,'','India','Osian',2,0,101,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20308,'10060','Osijek','OSIJEK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20309,'12235','Osimo','OSIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20310,'20268','Oskaloosa','OSKALOOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20311,'14924','Oskarsborg','OSKARSBORG',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20312,'16731','Oskarshamn','OSKARSHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20313,'39090','Oskemen','OSKEMEN',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20314,'14955','Oslo','OSLO',NULL,'','Norway','Oslo',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20315,'36468','Oslo-asker','OSLO-ASKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20316,'15458','Oslob','OSLOB',NULL,'','Philippines','',0,0,173,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20317,'36471','Oslo-drammen','OSLO-DRAMMEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20318,'36472','Oslo-fornbeu','OSLO-FORNBEU',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20319,'36473','Oslo-gardermoen Airp','OSLO-GARDERMOEN AIRP',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20320,'36477','Oslo-hovik','OSLO-HOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20321,'36478','Oslo-kolbotn','OSLO-KOLBOTN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20322,'36481','Oslo-lorenskog','OSLO-LORENSKOG',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20323,'36485','Oslo-royken','OSLO-ROYKEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20324,'36487','Oslo-sandvika','OSLO-SANDVIKA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20325,'38120','Osmo','OSMO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20326,'36081','Osnabruck','OSNABRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20327,'22376','Osnabrucker Land','OSNABRUCKER LAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20328,'27266','Osnabrueck','OSNABRUECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20329,'23527','Osorno','OSORNO',NULL,'','Chile','',0,0,45,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20330,'3469','Osorno','OSORNO',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20331,'25500','Osoyoos','OSOYOOS',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20332,'41050','Osoyro','OSOYRO',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20333,'12236','Ospedaletti','OSPEDALETTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20334,'12237','Ospedaletto D\'alpinolo','OSPEDALETTO D\'ALPINOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20335,'12239','Ospedalicchio','OSPEDALICCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20336,'19537','Osprey','OSPREY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20337,'41364','Osseja','OSSEJA',NULL,'','France','',0,0,76,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20338,'31849','Osseo','OSSEO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:41','1900-01-01 00:00:00',1,0,1),(20339,'43234','Ossett','OSSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:41','1900-01-01 00:00:00',1,0,1),(20340,'27082','Ossiach','OSSIACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20341,'27015','Ossiacher Lake','OSSIACHER LAKE',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20342,'44232','Ossona','OSSONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20343,'37676','Ossuccio','OSSUCCIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20344,'16840','Ostberga','OSTBERGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20345,'550','Ostbevern','OSTBEVERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20346,'12240','Ostellato','OSTELLATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20347,'291','Osten','OSTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20348,'467','Osterfeld','OSTERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20349,'16685','Ostergotland','OSTERGOTLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20350,'40927','Osterley','OSTERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20351,'37741','Ostermundigen','OSTERMUNDIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20352,'38717','Osterode Am Harz','OSTERODE AM HARZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20353,'16712','Ostersund','OSTERSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20354,'21493','Osterville','OSTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20355,'22377','Ostfildern','OSTFILDERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20356,'14817','Ostfold - Vestfold','OSTFOLD - VESTFOLD',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20357,'653','Osthofen','OSTHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20358,'11344','Ostia - Pomezia','OSTIA - POMEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20359,'16874','Ostra Tommarp','OSTRA TOMMARP',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20360,'24349','Ostrava','OSTRAVA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20361,'37588','Ostravice','OSTRAVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20362,'37481','Ostringen','OSTRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20363,'44050','Ostroda','OSTRODA',NULL,'','Poland','',0,0,174,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20364,'16421','Ostrov','OSTROV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20365,'39923','Ostrov','OSTROV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20366,'1833','Ostseebad Ahrenshoop','OSTSEEBAD AHRENSHOOP',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20367,'12242','Ostuni','OSTUNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20368,'6784','Ostwald','OSTWALD',NULL,'','France','',0,0,76,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20369,'551','Ostwig','OSTWIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20370,'3278','Osuna','OSUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20371,'20699','Oswego','OSWEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20372,'8667','Oswestry','OSWESTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20373,'40928','Oswestry','OSWESTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20374,'38502','Oswiecim','OSWIECIM',NULL,'','Poland','',0,0,174,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20375,'43663','Otago','OTAGO',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20376,'15151','Otahuhu','OTAHUHU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20377,'15231','Otara','OTARA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20378,'42880','Otari','OTARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20379,'13330','Otaru','OTARU',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20380,'2399','Otavalo','OTAVALO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20381,'18758','Otay','OTAY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20382,'15232','Otematata','OTEMATATA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20383,'3834','Otepaa','OTEPAA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20384,'31578','Othello','OTHELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20385,'29723','Otis','OTIS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20386,'36446','Otjiwarongo','OTJIWARONGO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20387,'40469','Otocec','OTOCEC',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20388,'42542','Otocek','OTOCEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20389,'38236','Otofuke','OTOFUKE',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20390,'40365','Otongo','OTONGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20391,'12243','Otricoli','OTRICOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20392,'27480','Otsego','OTSEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20393,'14949','Otta','OTTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20394,'24537','Ottakring','OTTAKRING',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20395,'12244','Ottavia','OTTAVIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20396,'12245','Ottaviano','OTTAVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20397,'20700','Ottawa','OTTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20398,'34592','Ottawa','OTTAWA',NULL,'','Canada','Ottawa',0,0,39,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20399,'654','Otterberg','OTTERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20400,'8669','Otterburn','OTTERBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20401,'27267','Otterndorf','OTTERNDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20402,'8670','Ottershaw','OTTERSHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20403,'39191','Otterstadt','OTTERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20404,'27481','Ottertail','OTTERTAIL',NULL,'','United States','',0,0,231,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20405,'7246','Ottery St Mary','OTTERY ST MARY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20406,'6785','Ottmarsheim','OTTMARSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20407,'37903','Ottobeuren','OTTOBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20408,'292','Ottobrunn','OTTOBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20409,'26156','Ottoville','OTTOVILLE',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20410,'6786','Ottrott','OTTROTT',NULL,'','France','',0,0,76,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20411,'30113','Ottsville','OTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20412,'20269','Ottumwa','OTTUMWA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20413,'24093','Otu','OTU',NULL,'','Colombia','',0,0,49,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20414,'16164','Otumai','OTUMAI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20415,'24750','Ouagadougou','OUAGADOUGOU',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20416,'38404','Oualidia','OUALIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20417,'38285','Ouargla','OUARGLA',NULL,'','Algeria','',0,0,3,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20418,'13702','Ouarzazate','OUARZAZATE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20419,'35142','Ouchamps','OUCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20420,'38757','Oudega','OUDEGA',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20421,'24719','Oudenaarde','OUDENAARDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20422,'24732','Oudenburg','OUDENBURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20423,'24642','Oudergem','OUDERGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20424,'14652','Ouderkerk Aan De Amstel','OUDERKERK AAN DE AMSTEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20425,'14520','Oudkerk','OUDKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20426,'32488','Oudtshoorn','OUDTSHOORN',NULL,'','South Africa','Oudtshoorn',0,0,195,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20427,'24612','Oud-turnhout','OUD-TURNHOUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20428,'14426','Ouen Island','OUEN ISLAND',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20429,'24058','Ouesso','OUESSO',NULL,'','Congo','',0,0,51,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20430,'10871','Oughterard','OUGHTERARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20431,'5783','Ougney-douvot','OUGNEY-DOUVOT',NULL,'','France','',0,0,76,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20432,'13699','Ouirgane','OUIRGANE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20433,'5412','Ouistreham','OUISTREHAM',NULL,'','France','',0,0,76,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20434,'13705','Oujda','OUJDA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20435,'13700','Oukaimeden','OUKAIMEDEN',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20436,'3928','Oulanka','OULANKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20437,'6685','Oullins','OULLINS',NULL,'','France','',0,0,76,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20438,'8671','Oulton','OULTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20439,'3949','Oulu','OULU',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20440,'39002','Oulx','OULX',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20441,'37382','Ounara','OUNARA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20442,'8672','Oundle','OUNDLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20443,'9709','Ouranopolis','OURANOPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20444,'43455','Ouranoupolis','OURANOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20445,'33511','Ouray','OURAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20446,'1631','Ourem-fatima','OUREM-FATIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20447,'1256','Ourense','OURENSE',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20448,'25092','Ouro Preto','OURO PRETO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20449,'42164','Outaouais','OUTAOUAIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20450,'33965','Outer Banks','OUTER BANKS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20451,'7248','Outer Hebrides','OUTER HEBRIDES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20452,'36447','Outjo','OUTJO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20453,'41100','Outlane','OUTLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20454,'22958','Outlook','OUTLOOK',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20455,'9909','Outlying Islands','OUTLYING ISLANDS',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20456,'22816','Outremont','OUTREMONT',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20457,'14427','Ouvea','OUVEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20458,'26537','Ouyen','OUYEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20459,'17729','Ouzinkie','OUZINKIE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20460,'40767','Ovada','OVADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20461,'23524','Ovalle','OVALLE',NULL,'','Chile','',0,0,45,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20462,'28007','Ovando','OVANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20463,'15863','Ovar','OVAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20464,'11051','Ovda','OVDA',NULL,'','Israel','',0,0,106,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20465,'42904','Overath','OVERATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20466,'40213','Overberg','OVERBERG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20467,'38899','Överkalix','ÖVERKALIX',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20468,'27739','Overland','OVERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20469,'40012','Overlida','OVERLIDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20470,'22379','Oversee','OVERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20471,'8673','Overstrand','OVERSTRAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20472,'32839','Overton','OVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20473,'14653','Overtoomseveld','OVERTOOMSEVELD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20474,'3099','Oviedo','OVIEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20475,'19538','Oviedo','OVIEDO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20476,'40609','Ovifat','OVIFAT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20477,'13039','Oviglio','OVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20478,'35596','Ovindoli','OVINDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20479,'8674','Ovington','OVINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20480,'16086','Ovoa','OVOA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20481,'23310','Ovronnaz','OVRONNAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20482,'24059','Owando','OWANDO',NULL,'','Congo','',0,0,51,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20483,'32941','Owasso','OWASSO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20484,'27482','Owatonna','OWATONNA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20485,'29022','Owego','OWEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:12','1900-01-01 00:00:00',1,0,1),(20486,'34595','Owen Sound','OWEN SOUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:12','1900-01-01 00:00:00',1,0,1),(20487,'40320','Owens Cross Roads','OWENS CROSS ROADS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:13','1900-01-01 00:00:00',1,0,1),(20488,'33708','Owensboro','OWENSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:13','1900-01-01 00:00:00',1,0,1),(20489,'15152','Owhanake Bay','OWHANAKE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20490,'21758','Owings Mills','OWINGS MILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20491,'33710','Owingsville','OWINGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20492,'22199','Owosso','OWOSSO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:15','1900-01-01 00:00:00',1,0,1),(20493,'22200','Oxbow','OXBOW',NULL,'','United States','',0,0,231,'2016-10-17 11:34:15','1900-01-01 00:00:00',1,0,1),(20494,'16778','Oxelosund','OXELOSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:16','1900-01-01 00:00:00',1,0,1),(20495,'19137','Oxford','OXFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:16','1900-01-01 00:00:00',1,0,1),(20496,'1416','Oxford','OXFORD',NULL,'','UNITED KINGDOM','Oxford',0,0,469,'2016-10-17 11:34:18','1900-01-01 00:00:00',1,0,1),(20497,'9710','Oxilithos','OXILITHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:18','1900-01-01 00:00:00',1,0,1),(20498,'18759','Oxnard','OXNARD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20499,'21760','Oxon Hill','OXON HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20500,'6858','Oyem','OYEM',NULL,'','Gabon','',0,0,80,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20501,'25343','Oyen','OYEN',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20502,'14818','Oyer','OYER',NULL,'','Norway','',0,0,164,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20503,'37838','Oy-mittelberg','OY-MITTELBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20504,'22380','Oynhausen','OYNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20505,'6686','Oyonnax','OYONNAX',NULL,'','France','',0,0,76,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20506,'29023','Oyster Bay','OYSTER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20507,'17469','Oyster Bay','OYSTER BAY',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20508,'40216','Oyster Bay','OYSTER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20509,'25891','Oyster Pond','OYSTER POND',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20510,'36484','Oystese','OYSTESE',NULL,'','Norway','',0,0,164,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20511,'38944','Oyten','OYTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20512,'15459','Ozamis City','OZAMIS CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:22','1900-01-01 00:00:00',1,0,1),(20513,'27740','Ozark','OZARK',NULL,'','United States','',0,0,231,'2016-10-17 11:34:22','1900-01-01 00:00:00',1,0,1),(20514,'15699','Ozarow Mazowiecki','OZAROW MAZOWIECKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20515,'17319','Ozdere','OZDERE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20516,'16302','Ozerki','OZERKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20517,'30838','Ozona','OZONA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20518,'40127','Ozone Park','OZONE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20519,'13332','Ozu','OZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20520,'32321','Paama','PAAMA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20521,'32489','Paarl','PAARL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20522,'20092','Paauilo','PAAUILO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20523,'19539','Pablo Keys','PABLO KEYS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20524,'37914','Paceco','PACECO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20525,'40881','Pachewar','PACHEWAR',NULL,'','India','',0,0,101,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20526,'39977','Pachmarhi','PACHMARHI',NULL,'','India','Pachmarhi',15,0,101,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20527,'13779','Pachuca','PACHUCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20528,'39927','Paciano','PACIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20529,'27741','Pacific','PACIFIC',NULL,'','United States','',0,0,231,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20530,'4070','Pacific Harbour','PACIFIC HARBOUR',NULL,'','Fiji','',0,0,74,'2016-10-17 11:34:28','1900-01-01 00:00:00',1,0,1),(20531,'42128','Pacific Palms','PACIFIC PALMS',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20532,'18764','Pacifica','PACIFICA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20533,'42947','Pacijan Island','PACIJAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20534,'8676','Packington','PACKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20535,'31579','Packwood','PACKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20536,'15495','Paco','PACO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20537,'16008','Paco De Arcos','PACO DE ARCOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20538,'16029','Pacos De Ferreira','PACOS DE FERREIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20539,'10372','Padang','PADANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20540,'3823','Padaste','PADASTE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20541,'38730','Paddington','PADDINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20542,'12246','Padenghe Sul Garda','PADENGHE SUL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20543,'552','Paderborn','PADERBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20544,'11346','Paderno Del Grappa','PADERNO DEL GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20545,'35504','Padova-cittadella','PADOVA-CITTADELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20546,'36179','Padron','PADRON',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20547,'8677','Padstow','PADSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20548,'39675','Padthaway','PADTHAWAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20549,'33711','Paducah','PADUCAH',NULL,'','United States','',0,0,231,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20550,'12247','Padula','PADULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20551,'7250','Padworth','PADWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20552,'16165','Paea','PAEA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20553,'40483','Paese','PAESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20554,'12991','Paestum','PAESTUM',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20555,'22381','Paewesin','PAEWESIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20556,'43378','Pag','PAG',NULL,'','Croatia','',0,0,55,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20557,'15557','Pagadian','PAGADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20558,'12248','Paganica','PAGANICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20559,'30385','Pageland','PAGELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20560,'24929','Paget','PAGET',NULL,'','Bermuda','',0,0,24,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20561,'26157','Pago Pago','PAGO PAGO',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20562,'33512','Pagosa Springs','PAGOSA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20563,'15516','Pagsanjan','PAGSANJAN',NULL,'','Philippines','Pagsanjan',0,0,173,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20564,'42948','Pagudpud','PAGUDPUD',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20565,'20093','Pahala','PAHALA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20566,'38439','Pahalgam','PAHALGAM',NULL,'','India','Pahalgam',13,0,101,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20567,'32122','Pahaska','PAHASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20568,'20094','Pahoa','PAHOA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20569,'32840','Pahrump','PAHRUMP',NULL,'','United States','',0,0,231,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20570,'17047','Pai','PAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20571,'39273','Paide','PAIDE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20572,'8678','Paignton','PAIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20573,'15233','Paihia','PAIHIA',NULL,'','New Zealand','Paihia',0,0,157,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20574,'42725','Pailin','PAILIN',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20575,'4023','Paimio','PAIMIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20576,'4897','Paimpol','PAIMPOL',NULL,'','France','',0,0,76,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20577,'40690','Paimpont','PAIMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20578,'29489','Painesville','PAINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:40','1900-01-01 00:00:00',1,0,1),(20579,'8679','Painswick','PAINSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:40','1900-01-01 00:00:00',1,0,1),(20580,'33713','Paintsville','PAINTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20581,'24100','Paipa','PAIPA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20582,'8680','Paisley','PAISLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20583,'26301','Paisley','PAISLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20584,'14433','Paita','PAITA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20585,'849','Paja Blanca','PAJA BLANCA',NULL,'','Panama','',0,0,169,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20586,'16756','Pajala','PAJALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20587,'3808','Pajara','PAJARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20588,'35813','Paju','PAJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20589,'17071','Pak Chong','PAK CHONG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20590,'38301','Paka','PAKA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20591,'43886','Pakem','PAKEM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20592,'40787','Pakostane','PAKOSTANE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20593,'1776','Paksane','PAKSANE',NULL,'','Laos','',0,0,118,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20594,'13542','Pakse','PAKSE',NULL,'','Laos','',0,0,118,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20595,'15234','Pakuranga','PAKURANGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20596,'30840','Palacios','PALACIOS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20597,'41572','Palacios De La Valduerna','PALACIOS DE LA VALDUERNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20598,'41944','Palafolls','PALAFOLLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20599,'12250','Palagiano','PALAGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20600,'12251','Palaia','PALAIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20601,'9711','Palaion Faliron','PALAION FALIRON',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20602,'43456','Palairos','PALAIROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20603,'4773','Palaiseau','PALAISEAU',NULL,'','France','',0,0,76,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20604,'10452','Palakkad','PALAKKAD',NULL,'','India','Palakkad',3,0,101,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20605,'3578','Palamos','PALAMOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20606,'10572','Palampur','PALAMPUR',NULL,'','India','Palampur',1,0,101,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20607,'42272','Palandoken','PALANDOKEN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20608,'13635','Palanga','PALANGA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20609,'10330','Palangkaraya','PALANGKARAYA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20610,'14140','Palanque','PALANQUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20611,'2720','Palas De Rei','PALAS DE REI',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20612,'20702','Palatine','PALATINE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20613,'19540','Palatka','PALATKA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20614,'11085','Palau','PALAU',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20615,'15565','Palau','PALAU',NULL,'','Palau','',0,0,167,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20616,'5951','Palavas-les-flots','PALAVAS-LES-FLOTS',NULL,'','France','',0,0,76,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20617,'15460','Palawan','PALAWAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20618,'11349','Palazzolo Sull\'oglio','PALAZZOLO SULL\'OGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20619,'12252','Palazzuolo Sul Senio','PALAZZUOLO SUL SENIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20620,'39536','Palekastro','PALEKASTRO',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20621,'10373','Palembang','PALEMBANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20622,'3470','Palencia','PALENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20623,'13937','Palenque','PALENQUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20624,'29027','Palenville','PALENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20625,'40265','Paleohora','PALEOHORA',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20626,'9560','Paleokastritsa','PALEOKASTRITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20627,'44181','Paleoxari','PALEOXARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20628,'35450','Palermo-alcamo','PALERMO-ALCAMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20629,'35494','Palermo-castellammar','PALERMO-CASTELLAMMAR',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20630,'35503','Palermo-cinisi','PALERMO-CINISI',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20631,'35668','Palermo-termini Imer','PALERMO-TERMINI IMER',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20632,'35675','Palermo-trabia','PALERMO-TRABIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20633,'35690','Palermo-villagrazia','PALERMO-VILLAGRAZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20634,'38981','Paleros','PALEROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20635,'42958','Palese','PALESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20636,'30841','Palestine','PALESTINE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20637,'35598','Palestrina','PALESTRINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20638,'973','Palhoca','PALHOCA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20639,'39513','Pali','PALI',NULL,'','India','Pali',2,0,101,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20640,'12253','Palinuro','PALINURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20641,'42589','Palitana','PALITANA',NULL,'','India','Palitana',16,0,101,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20642,'35597','Pallanza','PALLANZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20643,'3579','Palleja','PALLEJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20644,'15153','Palliser Bay','PALLISER BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20645,'15491','Pallocan','PALLOCAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20646,'19541','Palm Bay','PALM BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20647,'25832','Palm Beach','PALM BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 11:34:53','1900-01-01 00:00:00',1,0,1),(20648,'37077','Palm Island','PALM ISLAND',NULL,'','Saint Vincent And The Grenadines','',0,0,204,'2016-10-17 11:34:57','1900-01-01 00:00:00',1,0,1),(20649,'19552','Palma Sola','PALMA SOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20650,'39595','Palmadula','PALMADULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20651,'38622','Palmanova','PALMANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20652,'24240','Palmar','PALMAR',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20653,'14255','Palmar','PALMAR',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20654,'24249','Palmares','PALMARES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20655,'41112','Palmas','PALMAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20656,'18769','Palmdale','PALMDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20657,'3677','Palmeira','PALMEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20658,'16059','Palmela','PALMELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20659,'17730','Palmer','PALMER',NULL,'','United States','',0,0,231,'2016-10-17 11:35:01','1900-01-01 00:00:00',1,0,1),(20660,'10251','Palmerah','PALMERAH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20661,'10850','Palmerston','PALMERSTON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20662,'39530','Palmerston','PALMERSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20663,'34597','Palmerston','PALMERSTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20664,'15235','Palmerston North','PALMERSTON NORTH',NULL,'','New Zealand','Palmerston North',0,0,157,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20665,'30114','Palmerton','PALMERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20666,'19888','Palmetto','PALMETTO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:03','1900-01-01 00:00:00',1,0,1),(20667,'24876','Palmetto Point','PALMETTO POINT',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:35:03','1900-01-01 00:00:00',1,0,1),(20668,'12707','Palmi','PALMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20669,'30115','Palmyra','PALMYRA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20670,'16932','Palmyra','PALMYRA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20671,'40882','Palni','PALNI',NULL,'','India','',0,0,101,'2016-10-17 11:35:05','1900-01-01 00:00:00',1,0,1),(20672,'18770','Palo Alto','PALO ALTO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20673,'914','Palo Seco','PALO SECO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20674,'40325','Palombara Sabina','PALOMBARA SABINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20675,'20703','Palos Heights','PALOS HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20676,'3580','Pals','PALS',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20677,'10364','Palu','PALU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20678,'15461','Pamalican Island','PAMALICAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20679,'34281','Pambula','PAMBULA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20680,'10303','Pamekasan','PAMEKASAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20681,'38279','Pamhagen','PAMHAGEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20682,'6121','Pamiers','PAMIERS',NULL,'','France','',0,0,76,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20683,'30842','Pampa','PAMPA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20684,'32206','Pampatar','PAMPATAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20685,'3064','Pamplona','PAMPLONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20686,'24781','Pamporovo','PAMPOROVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20687,'17190','Pamukkale','PAMUKKALE',NULL,'','Turkey','Pamukkale',0,0,222,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20688,'39762','Panagitsa','PANAGITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20689,'9882','Panajachel','PANAJACHEL',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20690,'10706','Panaji','PANAJI',NULL,'','India','Panaji',11,0,101,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20691,'24221','Panama','PANAMA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20692,'15342','Panama','PANAMA',NULL,'','Panama','',0,0,169,'2016-10-17 11:35:09','1900-01-01 00:00:00',1,0,1),(20693,'19554','Panama City','PANAMA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:35:09','1900-01-01 00:00:00',1,0,1),(20694,'11352','Panarea','PANAREA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20695,'38178','Pancevo','PANCEVO',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20696,'10573','Panchgani','PANCHGANI',NULL,'','India','Panchgani',5,0,101,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20697,'17408','Panchiao','PANCHIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20698,'10453','Panchkula','PANCHKULA',NULL,'','India','',20,0,101,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20699,'13953','Pancho Villa','PANCHO VILLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20700,'10454','Panchur','PANCHUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20701,'10252','Pancoran','PANCORAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20702,'3471','Pancorbo','PANCORBO',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20703,'15505','Pandacan','PANDACAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20704,'44242','Pandan','PANDAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20705,'35370','Pandeglang','PANDEGLANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20706,'26303','Pandie Pandie','PANDIE PANDIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20707,'2724','Pandorado','PANDORADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20708,'3100','Panes','PANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20709,'13642','Panevezys','PANEVEZYS',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20710,'43044','Pangandaran','PANGANDARAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20711,'8681','Pangbourne','PANGBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20712,'23894','Panggezhuang','PANGGEZHUANG',NULL,'','China','',0,0,46,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20713,'10331','Pangkalanbuun','PANGKALANBUUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20714,'10253','Pangkalpinang','PANGKALPINANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20715,'1779','Pangkor','PANGKOR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20716,'15462','Panglao Island','PANGLAO ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20717,'25802','Pangnirtung','PANGNIRTUNG',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20718,'43862','Pangot','PANGOT',NULL,'','India','',0,0,101,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20719,'23528','Panguipulli','PANGUIPULLI',NULL,'','Chile','',0,0,45,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20720,'33377','Panguitch','PANGUITCH',NULL,'','United States','',0,0,231,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20721,'12747','Panicale','PANICALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20722,'10695','Panihati','PANIHATI',NULL,'','India','',0,0,101,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20723,'15318','Panjgur','PANJGUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20724,'23617','Panjin','PANJIN',NULL,'','China','',0,0,46,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20725,'39386','Panker','PANKER',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20726,'2010','Pankow','PANKOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20727,'15236','Panmure','PANMURE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20728,'40107','Panna','PANNA',NULL,'','India','',0,0,101,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20729,'9712','Panorama','PANORAMA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20730,'25501','Panorama','PANORAMA',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20731,'40545','Panormos (Crete)','PANORMOS (CRETE)',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20732,'42033','Pansea','PANSEA',NULL,'','Thailand','',0,0,215,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20733,'14319','Pantai Cenang','PANTAI CENANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20734,'42762','Pantanal','PANTANAL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20735,'12254','Pantelleria','PANTELLERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20736,'19890','Panthersville','PANTHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20737,'2476','Panticosa','PANTICOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20738,'4774','Pantin','PANTIN',NULL,'','France','',0,0,76,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20739,'10574','Pantnagar','PANTNAGAR',NULL,'','India','Pantnagar',9,0,101,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20740,'41479','Panton','PANTON',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20741,'37247','Panvel','PANVEL',NULL,'','India','Panvel',5,0,101,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20742,'23618','Panyu','PANYU',NULL,'','China','',0,0,46,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20743,'12255','Panzano','PANZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20744,'12256','Paola','PAOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20745,'21118','Paola','PAOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:18','1900-01-01 00:00:00',1,0,1),(20746,'33515','Paonia','PAONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:18','1900-01-01 00:00:00',1,0,1),(20747,'7251','Papa Westray','PAPA WESTRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:19','1900-01-01 00:00:00',1,0,1),(20748,'20097','Papaaloa','PAPAALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:19','1900-01-01 00:00:00',1,0,1),(20749,'20098','Papaikou','PAPAIKOU',NULL,'','United States','',0,0,231,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20750,'41224','Papallacta','PAPALLACTA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20751,'13997','Papanoa','PAPANOA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20752,'15237','Papanui','PAPANUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20753,'16166','Papao','PAPAO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20754,'40640','Papar','PAPAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20755,'15154','Papatoetoe','PAPATOETOE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20756,'16167','Papeete','PAPEETE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20757,'42010','Papenburg','PAPENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20758,'14729','Papendrecht','PAPENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20759,'16135','Papenoo','PAPENOO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20760,'16168','Papetoai','PAPETOAI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20761,'24272','Paphos','PAPHOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20762,'28160','Papillion','PAPILLION',NULL,'','United States','',0,0,231,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20763,'44264','Para','PARA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20764,'15319','Para Chinar','PARA CHINAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20765,'38617','Parabiago','PARABIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20766,'40217','Parabita','PARABITA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20767,'26304','Paraburdoo','PARABURDOO',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20768,'41296','Paracas','PARACAS',NULL,'','Peru','',0,0,172,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20769,'42706','Parachilna','PARACHILNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20770,'33516','Parachute','PARACHUTE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20771,'10455','Paradeep','PARADEEP',NULL,'','India','',0,0,101,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20772,'32841','Paradise','PARADISE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:23','1900-01-01 00:00:00',1,0,1),(20773,'43662','Paradise Bay','PARADISE BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20774,'24838','Paradise Island','PARADISE ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20775,'25670','Paradise River','PARADISE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20776,'4438','Paradiski','PARADISKI',NULL,'','France','',0,0,76,'2016-10-17 11:35:26','1900-01-01 00:00:00',1,0,1),(20777,'6504','Paradou','PARADOU',NULL,'','France','',0,0,76,'2016-10-17 11:35:26','1900-01-01 00:00:00',1,0,1),(20778,'18067','Paragould','PARAGOULD',NULL,'','United States','',0,0,231,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20779,'40883','Paragpur','PARAGPUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20780,'38321','Paraiso','PARAISO',NULL,'','Panama','',0,0,169,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20781,'24222','Paraiso','PARAISO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20782,'39541','Paraiso','PARAISO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20783,'9561','Parakila,lesvos','PARAKILA,LESVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20784,'24275','Paralimni','PARALIMNI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20785,'35284','Paralio Astros','PARALIO ASTROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20786,'16584','Paramaribo','PARAMARIBO',NULL,'','Suriname','',0,0,206,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20787,'28367','Paramus','PARAMUS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20788,'26118','Parana','PARANA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20789,'39539','Paranagua','PARANAGUA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20790,'41988','Paranapanema','PARANAPANEMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20791,'38947','Parañaque','PARAÑAQUE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20792,'9562','Paranga','PARANGA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20793,'39755','Parap','PARAP',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20794,'15077','Paraparaumu','PARAPARAUMU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20795,'10254','Parapat','PARAPAT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20796,'16554','Parasi','PARASI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20797,'12257','Paratico','PARATICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20798,'35956','Paraty','PARATY',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20799,'41300','Parauta','PARAUTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20800,'10575','Paravur','PARAVUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20801,'41363','Paray Le Monial','PARAY LE MONIAL',NULL,'','France','',0,0,76,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20802,'5483','Paray-le-monial','PARAY-LE-MONIAL',NULL,'','France','',0,0,76,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20803,'5671','Parcay-meslay','PARCAY-MESLAY',NULL,'','France','',0,0,76,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20804,'15939','Parchal','PARCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20805,'1841','Parchim','PARCHIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20806,'38912','Parcines','PARCINES',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20807,'24350','Pardubice','PARDUBICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20808,'16030','Paredes','PAREDES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20809,'38581','Parent','PARENT',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20810,'4439','Parentis En Born','PARENTIS EN BORN',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20811,'41362','Parentis-en-born','PARENTIS-EN-BORN',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20812,'43457','Parga','PARGA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20813,'4024','Pargas','PARGAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20814,'12258','Parghelia','PARGHELIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20815,'16443','Pargolovo','PARGOLOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20816,'12259','Pariana','PARIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20817,'5576','Parigne','PARIGNE',NULL,'','France','',0,0,76,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20818,'5413','Parigny','PARIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20819,'9563','Parikia','PARIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20820,'24991','Parintins','PARINTINS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20821,'11354','Parioli - Normentano','PARIOLI - NORMENTANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20822,'4775','Paris','PARIS',NULL,'','France','Paris',0,0,76,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20823,'33234','Paris','PARIS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20824,'29727','Parkdale','PARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:39','1900-01-01 00:00:00',1,0,1),(20825,'18180','Parker','PARKER',NULL,'','United States','',0,0,231,'2016-10-17 11:35:40','1900-01-01 00:00:00',1,0,1),(20826,'33716','Parkers Lake','PARKERS LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:41','1900-01-01 00:00:00',1,0,1),(20827,'32025','Parkersburg','PARKERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:35:41','1900-01-01 00:00:00',1,0,1),(20828,'34282','Parkes','PARKES',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20829,'8682','Parkgate','PARKGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20830,'32589','Parkhurst','PARKHURST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20831,'33967','Parkland','PARKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20832,'39690','Parklea','PARKLEA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20833,'35402','Parknasilla','PARKNASILLA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20834,'18772','Parkside','PARKSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20835,'29030','Parksville','PARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20836,'25502','Parksville','PARKSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20837,'32590','Parktown','PARKTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20838,'27744','Parkville','PARKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20839,'26927','Parkville','PARKVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20840,'2972','Parla','PARLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20841,'12728','Parma','PARMA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20842,'29490','Parma','PARMA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20843,'41755','Parnaiba','PARNAIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20844,'42490','Parnassos - Amfiklia','PARNASSOS - AMFIKLIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20845,'26305','Parndana','PARNDANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20846,'27066','Parndorf','PARNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20847,'15238','Parnell','PARNELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20848,'3830','Parnu','PARNU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20849,'25255','Paro','PARO',NULL,'','Bhutan','Paro',0,0,25,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20850,'35225','Paros-drios','PAROS-DRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20851,'35270','Paros-naousa','PAROS-NAOUSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20852,'35277','Paros-parika','PAROS-PARIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20853,'32490','Parow','PAROW',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20854,'33380','Parowan','PAROWAN',NULL,'','United States','',0,0,231,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20855,'8683','Parracombe','PARRACOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20856,'43579','Parramata','PARRAMATA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20857,'34283','Parramatta','PARRAMATTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20858,'39151','Parrano','PARRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20859,'13962','Parras De La Fuente','PARRAS DE LA FUENTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20860,'30386','Parris Island','PARRIS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20861,'24155','Parrita','PARRITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20862,'16936','Parrot Cay','PARROT CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20863,'33235','Parrottsville','PARROTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20864,'34599','Parry Sound','PARRY SOUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20865,'293','Parsberg','PARSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20866,'42905','Parsdorf','PARSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20867,'33518','Parshall','PARSHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:35:50','1900-01-01 00:00:00',1,0,1),(20868,'28369','Parsippany','PARSIPPANY',NULL,'','United States','',0,0,231,'2016-10-17 11:35:50','1900-01-01 00:00:00',1,0,1),(20869,'21120','Parsons','PARSONS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:51','1900-01-01 00:00:00',1,0,1),(20870,'6357','Parthenay','PARTHENAY',NULL,'','France','',0,0,76,'2016-10-17 11:35:51','1900-01-01 00:00:00',1,0,1),(20871,'40448','Parthenonas','PARTHENONAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20872,'37598','Parwanoo','PARWANOO',NULL,'','India','Parwanoo',1,0,101,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20873,'25870','Pas De La Casa','PAS DE LA CASA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20874,'30848','Pasadena','PASADENA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20875,'2725','Pasaron De La Vera','PASARON DE LA VERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20876,'15497','Pasay','PASAY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20877,'27898','Pascagoula','PASCAGOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20878,'31581','Pasco','PASCO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20879,'4441','Pas-de-calais','PAS-DE-CALAIS',NULL,'','France','',0,0,76,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20880,'1842','Pasewalk','PASEWALK',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20881,'38462','Pasiano Di Pordenone','PASIANO DI PORDENONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20882,'15511','Pasig','PASIG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20883,'295','Pasing','PASING',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20884,'15320','Pasni','PASNI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20885,'26111','Paso De La Patria','PASO DE LA PATRIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20886,'18774','Paso Robles','PASO ROBLES',NULL,'','United States','',0,0,231,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20887,'41135','Paspebiac','PASPEBIAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:56','1900-01-01 00:00:00',1,0,1),(20888,'28371','Passaic','PASSAIC',NULL,'','United States','',0,0,231,'2016-10-17 11:35:56','1900-01-01 00:00:00',1,0,1),(20889,'296','Passau','PASSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20890,'12260','Passignano Sul Trasimeno','PASSIGNANO SUL TRASIMENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20891,'25161','Passo Fundo','PASSO FUNDO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20892,'12261','Pastena','PASTENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20893,'24116','Pasto','PASTO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20894,'10304','Pasuruan','PASURUAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20895,'15647','Paszkowka','PASZKOWKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20896,'18181','Patagonia','PATAGONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20897,'15059','Patan','PATAN',NULL,'','Nepal','Patan',0,0,153,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20898,'17222','Patara','PATARA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20899,'42587','Pataudi','PATAUDI',NULL,'','India','',0,0,101,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20900,'29031','Patchogue','PATCHOGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20901,'8684','Patchway','PATCHWAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20902,'38380','Pateley Bridge','PATELEY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20903,'3772','Paterna','PATERNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20904,'38568','Paternoster','PATERNOSTER',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20905,'31582','Pateros','PATEROS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20906,'28372','Paterson','PATERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20907,'32491','Paterson','PATERSON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20908,'14500','Paterswolde','PATERSWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20909,'40826','Pathankot','PATHANKOT',NULL,'','India','Pathankot ',19,0,101,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20910,'42061','Pathein','PATHEIN',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20912,'43339','Pathumthani','PATHUMTHANI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20913,'38275','Pathumwan','PATHUMWAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20914,'10666','Patiala','PATIALA',NULL,'','India','Patiala',19,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20915,'15760','Patillas','PATILLAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20916,'16169','Patio','PATIO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20917,'9825','Patmos','PATMOS',NULL,'','Greece','Patmos',0,0,86,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20918,'10576','Patna','PATNA',NULL,'','India','Patna',24,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20920,'43863','Patnitop','PATNITOP',NULL,'','India','Patnitop',13,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20921,'9566','Patras','PATRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20922,'10990','Patreksfjordur','PATREKSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20923,'4442','Patrimonio','PATRIMONIO',NULL,'','France','',0,0,76,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20924,'17100','Pattani','PATTANI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20925,'17011','Pattaya','PATTAYA',NULL,'','Thailand','Pattaya',0,0,215,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20926,'37672','Pattensen','PATTENSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20927,'21244','Patterson','PATTERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20928,'12262','Patti','PATTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20929,'8685','Pattingham','PATTINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20930,'39793','Paty','PATY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20931,'13909','Patzcuaro','PATZCUARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20932,'15239','Pauanui','PAUANUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20933,'15394','Paucartambo','PAUCARTAMBO',NULL,'','Peru','',0,0,172,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20934,'36264','Pau-gan','PAU-GAN',NULL,'','France','',0,0,76,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20935,'5233','Pauillac','PAUILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20936,'15956','Paul Do Mar','PAUL DO MAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20937,'25776','Paulatuk','PAULATUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20938,'25212','Paulinia','PAULINIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20939,'36279','Pau-lons','PAU-LONS',NULL,'','France','',0,0,76,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20940,'32531','Paulpietersburg','PAULPIETERSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20941,'32943','Pauls Valley','PAULS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20942,'20099','Pauwalu','PAUWALU',NULL,'','United States','',0,0,231,'2016-10-17 11:36:06','1900-01-01 00:00:00',1,0,1),(20943,'20100','Pauwela','PAUWELA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:06','1900-01-01 00:00:00',1,0,1),(20944,'13438','Pavlodar','PAVLODAR',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20945,'41693','Pavone Canavese','PAVONE CANAVESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20946,'24178','Pavones','PAVONES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20947,'22202','Paw Paw','PAW PAW',NULL,'','United States','',0,0,231,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20948,'19139','Pawcatuck','PAWCATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:36:08','1900-01-01 00:00:00',1,0,1),(20949,'30387','Pawleys Island','PAWLEYS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:36:08','1900-01-01 00:00:00',1,0,1),(20950,'30261','Pawtucket','PAWTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20951,'42489','Paxi','PAXI',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20952,'30117','Paxinos','PAXINOS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20953,'28161','Paxton','PAXTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20954,'10136','Payangan','PAYANGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20955,'27111','Payerbach','PAYERBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20956,'43780','Paynes Bay','PAYNES BAY',NULL,'','Barbados','',0,0,19,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20957,'18777','Paynes Creek','PAYNES CREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20958,'27485','Paynesville','PAYNESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20959,'41361','Payrac','PAYRAC',NULL,'','France','',0,0,76,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20960,'17537','Paysandu','PAYSANDU',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20961,'33381','Payson','PAYSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20962,'24782','Pazardzik','PAZARDZIK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20963,'24486','Paznaun','PAZNAUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20964,'21494','Peabody','PEABODY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20965,'25344','Peace River','PEACE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20966,'18183','Peach Springs','PEACH SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20967,'25503','Peachland','PEACHLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20968,'19891','Peachtree City','PEACHTREE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20969,'7253','Peak District','PEAK DISTRICT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20970,'18184','Pearce','PEARCE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20971,'40754','Pearisburg','PEARISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20972,'27900','Pearl','PEARL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:16','1900-01-01 00:00:00',1,0,1),(20973,'847','Pearl Islands','PEARL ISLANDS',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:17','1900-01-01 00:00:00',1,0,1),(20974,'30849','Pearland','PEARLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:36:18','1900-01-01 00:00:00',1,0,1),(20975,'27901','Pearlington','PEARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:18','1900-01-01 00:00:00',1,0,1),(20976,'30850','Pearsall','PEARSALL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20977,'7254','Peaslake','PEASLAKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20978,'8686','Peasmarsh','PEASMARSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20979,'34601','Peawanuck','PEAWANUCK',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20980,'18778','Pebble Beach','PEBBLE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20981,'10255','Pecatu','PECATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20982,'41684','Peccioli','PECCIOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20983,'12263','Pecetto Torinese','PECETTO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20984,'15940','Pechao','PECHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20985,'16463','Pechki','PECHKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20986,'29033','Peconic','PECONIC',NULL,'','United States','',0,0,231,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20987,'30851','Pecos','PECOS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20988,'10097','Pecs','PECS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:22','1900-01-01 00:00:00',1,0,1),(20989,'27745','Peculiar','PECULIAR',NULL,'','United States','',0,0,231,'2016-10-17 11:36:22','1900-01-01 00:00:00',1,0,1),(20990,'40179','Pedace','PEDACE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20991,'12264','Pedara','PEDARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20992,'39413','Pedasi','PEDASI',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20993,'12265','Pedemonte','PEDEMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20994,'24144','Pedra Badejo','PEDRA BADEJO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20995,'12266','Pedraces','PEDRACES',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20996,'3773','Pedralba','PEDRALBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20997,'3472','Pedraza','PEDRAZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20998,'17732','Pedro Bay','PEDRO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20999,'44286','Pedro Gonzalez','PEDRO GONZALEZ',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21000,'15898','Pedrogao Pequeno','PEDROGAO PEQUENO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21001,'32207','Pedrogonzalez','PEDROGONZALEZ',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21002,'39659','Pedrola','PEDROLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21003,'1325','Peebles','PEEBLES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21004,'29034','Peekskill','PEEKSKILL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21005,'39036','Peer','PEER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21006,'43864','Peermade-','PEERMADE-',NULL,'','India','',0,0,101,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21007,'43458','Pefkos','PEFKOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21008,'25739','Peggys Cove','PEGGYS COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21009,'297','Pegnitz','PEGNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21010,'41648','Pego','PEGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21011,'3774','Pego','PEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21012,'39436','Pegognaga','PEGOGNAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21013,'2726','Peguera Del Madrona','PEGUERA DEL MADRONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21014,'22817','Peidmont - Saint-sauveur-des-monts','PEIDMONT - SAINT-SAUVEUR-DES-MONTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21015,'37422','Peigney','PEIGNEY',NULL,'','France','',0,0,76,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21016,'37370','Peillon','PEILLON',NULL,'','France','',0,0,76,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21017,'17409','Peinan','PEINAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21018,'27268','Peine','PEINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21019,'12267','Peio','PEIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21020,'4443','Peisey-nancroix','PEISEY-NANCROIX',NULL,'','France','',0,0,76,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21021,'27269','Peissen','PEISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21022,'38862','Peiting','PEITING',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21023,'17410','Peitou','PEITOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21024,'43887','Pejarakan','PEJARAKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21025,'42799','Pekalongan','PEKALONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21026,'10357','Pekanbaru','PEKANBARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21027,'20708','Pekin','PEKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21028,'43888','Pekutatan','PEKUTATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21029,'37512','Pelabravo','PELABRAVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21030,'14358','Pelabuhan Kelang','PELABUHAN KELANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21031,'42342','Pelabuhan Ratu','PELABUHAN RATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21032,'10290','Pelabuhanratu','PELABUHANRATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21033,'35600','Pelago','PELAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21034,'1778','Pelana-weligama','PELANA-WELIGAMA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21035,'23488','Pelequen','PELEQUEN',NULL,'','Chile','',0,0,45,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21036,'17936','Pelham','PELHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:36:30','1900-01-01 00:00:00',1,0,1),(21037,'17733','Pelican','PELICAN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:30','1900-01-01 00:00:00',1,0,1),(21038,'26306','Pelican Waters','PELICAN WATERS',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21039,'3280','Peligros','PELIGROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21040,'9568','Pelion','PELION',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21041,'35307','Pelion-visitsa','PELION-VISITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21042,'20272','Pella','PELLA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21043,'39156','Pelling','PELLING',NULL,'','India','Pelling',25,0,101,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21044,'11357','Pellio Intelvi','PELLIO INTELVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21045,'22203','Pellston','PELLSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21046,'25803','Pelly Bay','PELLY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21047,'1327','Peloponesse','PELOPONESSE',NULL,'','GREECE','',0,0,86,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21048,'43382','Peloponnese','PELOPONNESE',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21049,'25162','Pelotas','PELOTAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21050,'4444','Pelvoux','PELVOUX',NULL,'','France','',0,0,76,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21051,'8688','Pelynt','PELYNT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21052,'14219','Pemba','PEMBA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21053,'17452','Pemba Island','PEMBA ISLAND',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21054,'25504','Pemberton','PEMBERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21055,'28373','Pemberton','PEMBERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21056,'26613','Pemberton','PEMBERTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21057,'31851','Pembine','PEMBINE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21058,'24930','Pembroke','PEMBROKE',NULL,'','Bermuda','',0,0,24,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21059,'21495','Pembroke','PEMBROKE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21060,'34602','Pembroke','PEMBROKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:36','1900-01-01 00:00:00',1,0,1),(21061,'8689','Pembroke','PEMBROKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:37','1900-01-01 00:00:00',1,0,1),(21062,'7255','Pembrokeshire Coast National Park','PEMBROKESHIRE COAST NATIONAL PARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21063,'40885','Pemeyangste','PEMEYANGSTE',NULL,'','India','',0,0,101,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21064,'10192','Pemuteran','PEMUTERAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21065,'37325','Penacaballera','PENACABALLERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21066,'15906','Penacova','PENACOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21067,'41528','Penafiel','PENAFIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21068,'16031','Penafiel','PENAFIEL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21069,'2727','Peñafiel','PEÑAFIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21070,'8691','Penally','PENALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21071,'42776','Penalva Do Castelo','PENALVA DO CASTELO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21072,'3072','Peñamellera Baja','PEÑAMELLERA BAJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21073,'42846','Penampang','PENAMPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21074,'14321','Penang','PENANG',NULL,'','Malaysia','Penang',0,0,132,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21075,'8692','Penarth','PENARTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21076,'32027','Pence Springs','PENCE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21077,'40827','Pench','PENCH',NULL,'','India','',0,0,101,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21078,'8693','Pencoed','PENCOED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21079,'8694','Pencraig','PENCRAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21080,'17310','Pendik','PENDIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21081,'8695','Pendlebury','PENDLEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21082,'30388','Pendleton','PENDLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21083,'37928','Penestin','PENESTIN',NULL,'','France','',0,0,76,'2016-10-17 11:36:42','1900-01-01 00:00:00',1,0,1),(21084,'29036','Penfield','PENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21085,'9935','Peng Chau','PENG CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21086,'25186','Penha','PENHA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21087,'41998','Penia Di Canazei','PENIA DI CANAZEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21088,'15982','Peniche','PENICHE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21089,'8696','Penicuik','PENICUIK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21090,'15941','Penina','PENINA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21091,'2728','Peniscola','PENISCOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:44','1900-01-01 00:00:00',1,0,1),(21092,'8697','Penkridge','PENKRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:44','1900-01-01 00:00:00',1,0,1),(21093,'12268','Penna In Teverina','PENNA IN TEVERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21094,'34284','Pennant Hills','PENNANT HILLS',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21095,'26465','Penneshaw','PENNESHAW',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21096,'28374','Pennington','PENNINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21097,'32413','Pennington','PENNINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21098,'28376','Pennsauken','PENNSAUKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:46','1900-01-01 00:00:00',1,0,1),(21099,'32028','Pennsboro','PENNSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21100,'28377','Pennsville','PENNSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21101,'26466','Penola','PENOLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21102,'15335','Penonome','PENONOME',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21103,'24072','Penrhyn Island','PENRHYN ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21104,'8698','Penrith','PENRITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21105,'34285','Penrith','PENRITH',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21106,'34286','Penrose','PENROSE',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21107,'19558','Pensacola','PENSACOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21108,'8699','Pensford','PENSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:49','1900-01-01 00:00:00',1,0,1),(21109,'7256','Pensilva','PENSILVA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:49','1900-01-01 00:00:00',1,0,1),(21110,'25506','Penticton','PENTICTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21111,'8700','Pentraeth','PENTRAETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21112,'8701','Pentre-foelas','PENTRE-FOELAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21113,'5577','Pentrez','PENTREZ',NULL,'','France','',0,0,76,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21114,'22204','Pentwater','PENTWATER',NULL,'','United States','',0,0,231,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21115,'16416','Penza','PENZA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21116,'8702','Penzance','PENZANCE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21117,'42445','Penzberg','PENZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21118,'27016','Penzing','PENZING',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21119,'20709','Peoria','PEORIA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21120,'20274','Peosta','PEOSTA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:53','1900-01-01 00:00:00',1,0,1),(21121,'20102','Pepeekeo','PEPEEKEO',NULL,'','United States','',0,0,231,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21122,'24678','Pepinster','PEPINSTER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21123,'40714','Pepowo','PEPOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21124,'29492','Pepper Pike','PEPPER PIKE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21125,'43661','Peppers Palm','PEPPERS PALM',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21126,'27486','Pequot Lakes','PEQUOT LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21127,'2477','Peralada','PERALADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21128,'22818','Perce','PERCE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21129,'39309','Perchtoldsdorf','PERCHTOLDSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21130,'20275','Percival','PERCIVAL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21131,'19561','Perdido Bay','PERDIDO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21132,'9767','Perdika','PERDIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21133,'38214','Pere','PERE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21134,'24122','Pereira','PEREIRA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21135,'37479','Perelada','PERELADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21136,'42431','Perello','PERELLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21137,'12269','Peretola','PERETOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21138,'38723','Pereybere','PEREYBERE',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21139,'27139','Perg','PERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21140,'12270','Pergine Valdarno','PERGINE VALDARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21141,'27487','Perham','PERHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21142,'42857','Perhentian Islands','PERHENTIAN ISLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21143,'38649','Periana','PERIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21144,'9569','Perigiali','PERIGIALI',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21145,'42974','Perignat Les Sarlieve','PERIGNAT LES SARLIEVE',NULL,'','France','',0,0,76,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21146,'41360','Perigny','PERIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21147,'5234','Perigueux','PERIGUEUX',NULL,'','France','',0,0,76,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21148,'3678','Perillo','PERILLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21149,'19893','Perimeter Center','PERIMETER CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21150,'34287','Perisher Valley','PERISHER VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21151,'9570','Perissa','PERISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21152,'9715','Peristerion','PERISTERION',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21153,'37954','Perito Moreno','PERITO MORENO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21154,'9571','Perivolos','PERIVOLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21155,'10456','Periwar Tiger Reserve','PERIWAR TIGER RESERVE',NULL,'','India','',0,0,101,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21156,'43320','Periyar','PERIYAR',NULL,'','India','',0,0,101,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21157,'31372','Perkinsville','PERKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21158,'30118','Perkiomenville','PERKIOMENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:02','1900-01-01 00:00:00',1,0,1),(21159,'44153','Perl','PERL',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21160,'40414','Perledo','PERLEDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21161,'39234','Perlora','PERLORA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21162,'16417','Perm','PERM',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21163,'43784','Pernambuco','PERNAMBUCO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21164,'6505','Pernes-les-fontaines','PERNES-LES-FONTAINES',NULL,'','France','',0,0,76,'2016-10-17 11:37:04','1900-01-01 00:00:00',1,0,1),(21165,'42250','Pernik','PERNIK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:37:04','1900-01-01 00:00:00',1,0,1),(21166,'43897','Pernis','PERNIS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:37:05','1900-01-01 00:00:00',1,0,1),(21167,'12272','Pero','PERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:05','1900-01-01 00:00:00',1,0,1),(21168,'5952','Perols','PEROLS',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21169,'6312','Peronne','PERONNE',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21170,'9572','Peroulades','PEROULADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21171,'16473','Perovo','PEROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21172,'5953','Perpignan','PERPIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21173,'8703','Perranporth','PERRANPORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21174,'5484','Perreux','PERREUX',NULL,'','France','',0,0,76,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21175,'18779','Perris','PERRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21176,'4898','Perros-guirec','PERROS-GUIREC',NULL,'','France','',0,0,76,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21177,'19894','Perry','PERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:08','1900-01-01 00:00:00',1,0,1),(21178,'30119','Perryopolis','PERRYOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:10','1900-01-01 00:00:00',1,0,1),(21179,'29493','Perrysburg','PERRYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:11','1900-01-01 00:00:00',1,0,1),(21180,'29494','Perrysville','PERRYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:11','1900-01-01 00:00:00',1,0,1),(21181,'30852','Perryton','PERRYTON',NULL,'','United States','',0,0,231,'2016-10-17 11:37:12','1900-01-01 00:00:00',1,0,1),(21182,'21763','Perryville','PERRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:12','1900-01-01 00:00:00',1,0,1),(21183,'33236','Persey','PERSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21184,'8704','Pershore','PERSHORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21185,'8705','Perth','PERTH',NULL,'','United Kingdom','Perth',0,0,229,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21186,'28378','Perth Amboy','PERTH AMBOY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21187,'38995','Perth-andover','PERTH-ANDOVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21188,'35924','Perth-como','PERTH-COMO',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21189,'34813','Perth-scarborough','PERTH-SCARBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21190,'34817','Perth-sorrento','PERTH-SORRENTO',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21191,'1328','Perth-south Western','PERTH-SOUTH WESTERN',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21192,'24487','Pertisau','PERTISAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21193,'6506','Pertuis','PERTUIS',NULL,'','France','',0,0,76,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21194,'35599','Perugia-passignano S','PERUGIA-PASSIGNANO S',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21195,'981','Peruibe','PERUIBE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21196,'12793','Pesaro','PESARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21197,'18780','Pescadero','PESCADERO',NULL,'','United States','',0,0,231,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21198,'38580','Pescaglia','PESCAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:19','1900-01-01 00:00:00',1,0,1),(21199,'12983','Pescara','PESCARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:19','1900-01-01 00:00:00',1,0,1),(21200,'35506','Pescara-citta Sant\'a','PESCARA-CITTA SANT\'A',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21201,'35537','Pescara-guilianova','PESCARA-GUILIANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21202,'37949','Pescasseroli','PESCASSEROLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21203,'12274','Peschici','PESCHICI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21204,'12275','Peschiera Del Garda','PESCHIERA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21205,'12276','Pescia','PESCIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21206,'37191','Pescocostanzo','PESCOCOSTANZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21207,'38317','Pescosolido','PESCOSOLIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21208,'15321','Peshawar','PESHAWAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21209,'16076','Peso Da Regua','PESO DA REGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21210,'16346','Pesochnyy','PESOCHNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21211,'5235','Pessac','PESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21212,'9573','Petalidi','PETALIDI',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21213,'14345','Petaling Jaya','PETALING JAYA',NULL,'','Malaysia','Petaling Jaya',0,0,132,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21214,'18781','Petaluma','PETALUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21215,'34604','Petawawa','PETAWAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21216,'1793','Petchburi','PETCHBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21217,'35312','Peten','PETEN',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21218,'32224','Peter Island','PETER ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21219,'32238','Peterborg','PETERBORG',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21220,'34605','Peterborough','PETERBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21221,'7257','Peterborough','PETERBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21222,'32751','Peterborough','PETERBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21223,'8706','Peterhead','PETERHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21224,'37912','Peterlee','PETERLEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21225,'40308','Petersberg','PETERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21226,'33237','Petersburg','PETERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21227,'8707','Petersfield','PETERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:26','1900-01-01 00:00:00',1,0,1),(21228,'553','Petershagen','PETERSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21229,'21496','Petersham','PETERSHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21230,'8708','Petham','PETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21231,'42265','Petionville','PETIONVILLE',NULL,'','Haiti','',0,0,95,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21232,'32167','Petit St. Vincent','PETIT ST. VINCENT',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21233,'5236','Petit-bersac','PETIT-BERSAC',NULL,'','France','',0,0,76,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21234,'4445','Petite-foret','PETITE-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21235,'41368','Petite-ile','PETITE-ILE',NULL,'','Reunion','',0,0,178,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21236,'10193','Petitenget','PETITENGET',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21237,'22819','Petite-riviera-saint-francois','PETITE-RIVIERA-SAINT-FRANCOIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21238,'40673','Petone','PETONE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21239,'22206','Petoskey','PETOSKEY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:29','1900-01-01 00:00:00',1,0,1),(21240,'2915','Petra','PETRA',NULL,'','Spain','Petra',0,0,199,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21241,'13106','Petra','PETRA',NULL,'','Jordan','Petra',0,0,111,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21242,'37315','Petralia Soprana','PETRALIA SOPRANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21243,'41192','Petrcane','PETRCANE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21244,'41414','Petrer','PETRER',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21245,'1347','Petrified Forest - Az','PETRIFIED FOREST - AZ',NULL,'','United States','',0,0,231,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21246,'12279','Petrignano','PETRIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21247,'16444','Petrodvorets','PETRODVORETS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21248,'42488','Petrohori','PETROHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21249,'23529','Petrohue','PETROHUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21250,'25124','Petrolina','PETROLINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21251,'13440','Petropavlovsk','PETROPAVLOVSK',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21252,'16333','Petropavlovsk-kamchatsky','PETROPAVLOVSK-KAMCHATSKY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21253,'25163','Petropolis','PETROPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21254,'12280','Petrosino','PETROSINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21255,'9717','Petroupolis','PETROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21256,'32370','Petrovac','PETROVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21257,'16422','Petrovskoye','PETROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21258,'16334','Petrozavodsk','PETROZAVODSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21259,'11363','Pettenasco','PETTENASCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21260,'8709','Pettistree','PETTISTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21261,'24488','Pettneu Am Arlberg','PETTNEU AM ARLBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21262,'19204','Petworth','PETWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21263,'38341','Petworth','PETWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21264,'23530','Peulla','PEULLA',NULL,'','Chile','Peulla',0,0,45,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21265,'16317','Pevek','PEVEK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21266,'27747','Pevely','PEVELY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21267,'8710','Pevensey','PEVENSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21268,'31852','Pewaukee','PEWAUKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21269,'38964','Pewsey','PEWSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21270,'43844','Peyia','PEYIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21271,'6507','Peymeinade','PEYMEINADE',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21272,'6508','Peypin','PEYPIN',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21273,'4446','Peyragudes','PEYRAGUDES',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21274,'5237','Peyrehorade','PEYREHORADE',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21275,'6122','Peyreleau','PEYRELEAU',NULL,'','France','',0,0,76,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21276,'5954','Pezenas','PEZENAS',NULL,'','France','',0,0,76,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21277,'23311','Pfaffikon','PFAFFIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21278,'22610','Pfahlbronn','PFAHLBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21279,'22611','Pfalzgrafenweiler','PFALZGRAFENWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21280,'22382','Pfinztal','PFINZTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21281,'30853','Pflugerville','PFLUGERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21282,'22612','Pforzheim','PFORZHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21283,'298','Pfronten','PFRONTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21284,'22613','Pfullendorf','PFULLENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21285,'22614','Pfullingen','PFULLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21286,'38983','Phagwara','PHAGWARA',NULL,'','India','',0,0,101,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21287,'17012','Phala Beach','PHALA BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21288,'32591','Phalaborwa','PHALABORWA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21289,'35428','Phalodi','PHALODI',NULL,'','India','Phalodi',2,0,101,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21290,'42821','Phan Rang-thap Cham','PHAN RANG-THAP CHAM',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21291,'15041','Phaplu','PHAPLU',NULL,'','Nepal','',0,0,153,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21292,'30854','Pharr','PHARR',NULL,'','United States','',0,0,231,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21293,'17041','Phasi Charoen','PHASI CHAROEN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21294,'41704','Phayao','PHAYAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21295,'18782','Phelan','PHELAN',NULL,'','United States','',0,0,231,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21296,'29038','Phelps','PHELPS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:40','1900-01-01 00:00:00',1,0,1),(21297,'17938','Phenix City','PHENIX CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:40','1900-01-01 00:00:00',1,0,1),(21299,'16959','Phetchabun','PHETCHABUN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21300,'16960','Phetchaburi','PHETCHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21301,'27902','Philadelphia','PHILADELPHIA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21302,'32030','Philippi','PHILIPPI',NULL,'','United States','',0,0,231,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21303,'30123','Philipsburg','PHILIPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21304,'25903','Philipsburg','PHILIPSBURG',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21305,'26636','Phillip','PHILLIP',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:44','1900-01-01 00:00:00',1,0,1),(21306,'31854','Phillips','PHILLIPS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:44','1900-01-01 00:00:00',1,0,1),(21307,'21121','Phillipsburg','PHILLIPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21308,'32414','Phinda','PHINDA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21309,'10457','Phinga','PHINGA',NULL,'','India','',0,0,101,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21310,'21909','Phippsburg','PHIPPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21311,'17064','Phitsanulok','PHITSANULOK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21313,'13448','Phnom Penh','PHNOM PENH',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21314,'9574','Phocis','PHOCIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21315,'30124','Phoenixville','PHOENIXVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:48','1900-01-01 00:00:00',1,0,1),(21316,'1777','Phonesavanh','PHONESAVANH',NULL,'','Laos','',0,0,118,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21317,'17061','Phrae','PHRAE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21318,'9575','Phthiotis','PHTHIOTIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21319,'17093','Phuket','PHUKET',NULL,'','Thailand','Phuket',28,0,215,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21320,'32296','Phuoc Loc Xa','PHUOC LOC XA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21321,'12729','Piacenza','PIACENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21322,'43732','Pialba','PIALBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21323,'4776','Piana','PIANA',NULL,'','France','',0,0,76,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21324,'39182','Piana Degli Albanesi','PIANA DEGLI ALBANESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21325,'37284','Piancastagnaio','PIANCASTAGNAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21326,'35601','Piancavallo','PIANCAVALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21327,'35602','Pianella','PIANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21328,'12281','Pianezza','PIANEZZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21329,'39872','Pianopoli','PIANOPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21330,'12283','Pianoro','PIANORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21331,'17131','Piarco','PIARCO',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21332,'39394','Piaseczno','PIASECZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21333,'15700','Piastow','PIASTOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21334,'25044','Piata','PIATA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21335,'36633','Piatra Neamt','PIATRA NEAMT',NULL,'','Romania','',0,0,179,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21336,'24992','Piaui','PIAUI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21337,'12284','Piazza Armerina','PIAZZA ARMERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21338,'3155','Picaña','PICAÑA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21339,'41278','Picanya','PICANYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21340,'27903','Picayune','PICAYUNE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21341,'38744','Piccione','PICCIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21342,'12285','Picerno','PICERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21343,'15819','Picheleira','PICHELEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21344,'37763','Pichidangui','PICHIDANGUI',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21345,'37581','Pichilemu','PICHILEMU',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21346,'13846','Pichilingue','PICHILINGUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21347,'24432','Pichl Bei Schladming','PICHL BEI SCHLADMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21348,'27017','Pichl-preunegg','PICHL-PREUNEGG',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21349,'24334','Picin','PICIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21350,'30389','Pickens','PICKENS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21351,'8711','Pickering','PICKERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21352,'34607','Pickering','PICKERING',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21353,'29495','Pickerington','PICKERINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21354,'34608','Pickle Lake','PICKLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21355,'33238','Pickwick Dam','PICKWICK DAM',NULL,'','United States','',0,0,231,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21356,'15820','Pico Island','PICO ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21357,'18783','Pico Rivera','PICO RIVERA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21358,'34609','Picton','PICTON',NULL,'','Canada','Picton',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21359,'15155','Picton','PICTON',NULL,'','New Zealand','Picton',0,0,157,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21360,'25740','Pictou','PICTOU',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21361,'38725','Pidhirtsi','PIDHIRTSI',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21362,'13954','Pie De La Cuesta','PIE DE LA CUESTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21363,'25213','Piedade','PIEDADE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21364,'22820','Piedmont','PIEDMONT',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21365,'2729','Piedras Blancas','PIEDRAS BLANCAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:58','1900-01-01 00:00:00',1,0,1),(21366,'13990','Piedras Negras','PIEDRAS NEGRAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:58','1900-01-01 00:00:00',1,0,1),(21367,'12286','Piegaro','PIEGARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21368,'3941','Pieksamaki','PIEKSAMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21369,'12287','Pienza','PIENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21370,'12288','Pierantonio','PIERANTONIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21371,'20385','Pierce','PIERCE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21372,'36336','Piercebridge','PIERCEBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21373,'43081','Pieria','PIERIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21374,'33038','Pierre','PIERRE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21375,'6687','Pierre-benite','PIERRE-BENITE',NULL,'','France','',0,0,76,'2016-10-17 11:38:01','1900-01-01 00:00:00',1,0,1),(21376,'38438','Pierrefeu-du-var','PIERREFEU-DU-VAR',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21377,'41358','Pierrefitte-nestalas','PIERREFITTE-NESTALAS',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21378,'22821','Pierrefonds','PIERREFONDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21379,'39237','Pierrefonds','PIERREFONDS',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21380,'6688','Pierrelatte','PIERRELATTE',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21381,'38098','Piesendorf','PIESENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21382,'36706','Piestany','PIESTANY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21383,'32532','Pietermaritzburg','PIETERMARITZBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21384,'35604','Pietra Ligure','PIETRA LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21385,'37195','Pietralunga','PIETRALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21386,'4777','Pietranera','PIETRANERA',NULL,'','France','',0,0,76,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21387,'12289','Pietrasanta','PIETRASANTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:04','1900-01-01 00:00:00',1,0,1),(21388,'38977','Pietrelcina','PIETRELCINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:04','1900-01-01 00:00:00',1,0,1),(21389,'38860','Pievepelago','PIEVEPELAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21390,'11368','Pievescola','PIEVESCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21391,'24839','Pigeon Cay','PIGEON CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21392,'13574','Pigeon Island','PIGEON ISLAND',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21393,'17120','Pigeon Point','PIGEON POINT',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21394,'16907','Piggs Peak','PIGGS PEAK',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21395,'12293','Pignola','PIGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21396,'16170','Pihaena','PIHAENA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21397,'4025','Pihtipudas','PIHTIPUDAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21398,'34610','Pikangikum','PIKANGIKUM',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21399,'37926','Pikermi','PIKERMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21400,'21764','Pikesville','PIKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21401,'29496','Piketon','PIKETON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21402,'33240','Pikeville','PIKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:08','1900-01-01 00:00:00',1,0,1),(21403,'15666','Pila','PILA',NULL,'','Poland','',0,0,174,'2016-10-17 11:38:08','1900-01-01 00:00:00',1,0,1),(21404,'13060','Pila','PILA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21405,'32593','Pilanesberg','PILANESBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21406,'37119','Pilanesburg','PILANESBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21407,'26102','Pilar','PILAR',NULL,'','Argentina','',0,0,10,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21408,'3775','Pilar De La Horadada','PILAR DE LA HORADADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21409,'11369','Pilastro','PILASTRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21410,'8','Pilbara','PILBARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21411,'32415','Pilgrims Rest','PILGRIMS REST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21412,'41943','Pilona','PILONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21413,'38807','Pilos','PILOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21414,'33969','Pilot Mountain','PILOT MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21415,'7258','Pimlico','PIMLICO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:11','1900-01-01 00:00:00',1,0,1),(21416,'26079','Pinamar','PINAMAR',NULL,'','Argentina','',0,0,10,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21417,'34944','Pinar Del Rio','PINAR DEL RIO',NULL,'','Cuba','',0,0,56,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21418,'12730','Pinarella','PINARELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21419,'25345','Pincher Creek','PINCHER CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21420,'20713','Pinckneyville','PINCKNEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21421,'42207','Pindamonhangaba','PINDAMONHANGABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:13','1900-01-01 00:00:00',1,0,1),(21422,'42060','Pindaya','PINDAYA',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:38:13','1900-01-01 00:00:00',1,0,1),(21423,'16937','Pine Cay','PINE CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:38:15','1900-01-01 00:00:00',1,0,1),(21424,'34611','Pine Grove','PINE GROVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:15','1900-01-01 00:00:00',1,0,1),(21425,'33971','Pinebluff','PINEBLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:38:18','1900-01-01 00:00:00',1,0,1),(21426,'33972','Pinecrest','PINECREST',NULL,'','United States','',0,0,231,'2016-10-17 11:38:18','1900-01-01 00:00:00',1,0,1),(21427,'2730','Pineda De Mar','PINEDA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21428,'32123','Pinedale','PINEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21429,'21497','Pinehurst','PINEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21430,'19567','Pinellas Park','PINELLAS PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:38:20','1900-01-01 00:00:00',1,0,1),(21431,'12294','Pinerolo','PINEROLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21432,'11370','Pineta Mare','PINETA MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21433,'12295','Pineto','PINETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21434,'18189','Pinetop','PINETOP',NULL,'','United States','',0,0,231,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21435,'18190','Pinetop-lakeside','PINETOP-LAKESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21436,'42661','Pinetown','PINETOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21437,'33974','Pineville','PINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21438,'5742','Piney','PINEY',NULL,'','France','',0,0,76,'2016-10-17 11:38:23','1900-01-01 00:00:00',1,0,1),(21439,'43828','Pingdingshan','PINGDINGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:38:23','1900-01-01 00:00:00',1,0,1),(21440,'23807','Pingfang','PINGFANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21441,'23710','Pinghu','PINGHU',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21442,'23817','Pingjiang','PINGJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21443,'34892','Pingliang','PINGLIANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21444,'17411','Pingtung','PINGTUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21445,'23918','Pingyao','PINGYAO',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21446,'41781','Pinhais','PINHAIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21447,'16032','Pinhao','PINHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21448,'15970','Pinhel','PINHEL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21449,'40828','Pinjore','PINJORE',NULL,'','India','Pinjore',20,0,101,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21450,'731','Pinneberg','PINNEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21451,'8712','Pinner','PINNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21452,'18785','Pinole','PINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21453,'28554','Pinos Altos','PINOS ALTOS',NULL,'','United States','',0,0,231,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21454,'3337','Pinseque','PINSEQUE',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21455,'43813','Pinto','PINTO',NULL,'','Chile','',0,0,45,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21456,'3006','Pinto','PINTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21457,'27018','Pinzgau','PINZGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21458,'12296','Pinzolo','PINZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21459,'12856','Piombino','PIOMBINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21460,'33241','Pioneer','PIONEER',NULL,'','United States','',0,0,231,'2016-10-17 11:38:27','1900-01-01 00:00:00',1,0,1),(21461,'23312','Piotta','PIOTTA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:38:27','1900-01-01 00:00:00',1,0,1),(21462,'40259','Piove Di Sacco','PIOVE DI SACCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21463,'30126','Pipersville','PIPERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21464,'32031','Pipestem','PIPESTEM',NULL,'','United States','',0,0,231,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21465,'27490','Pipestone','PIPESTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:29','1900-01-01 00:00:00',1,0,1),(21466,'29497','Piqua','PIQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:29','1900-01-01 00:00:00',1,0,1),(21467,'25214','Piracicaba','PIRACICABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21468,'16171','Pirae','PIRAE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21469,'9576','Piraeus','PIRAEUS',NULL,'','Greece','Piraeus',0,0,86,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21470,'37633','Piraino','PIRAINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21471,'36691','Piran','PIRAN',NULL,'','Slovenia','Piran',0,0,192,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21472,'40150','Pirgadikia','PIRGADIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21473,'42156','Piriapolis','PIRIAPOLIS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21474,'1900','Pirna','PIRNA',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21475,'32376','Pirot','PIROT',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21476,'10033','Pirovac','PIROVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21477,'39369','Pirque','PIRQUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21478,'12857','Pisa','PISA',NULL,'','Italy','Pisa',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21479,'15395','Pisac','PISAC',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21480,'35584','Pisa-montopoli Val D','PISA-MONTOPOLI VAL D',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21481,'35609','Pisa-pontedera','PISA-PONTEDERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21482,'35629','Pisa-riparbella','PISA-RIPARBELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21483,'35656','Pisa-s.giuliano Term','PISA-S.GIULIANO TERM',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21484,'28381','Piscataway','PISCATAWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21485,'39154','Pischanka','PISCHANKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21486,'40477','Pisciotta','PISCIOTTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21487,'15401','Pisco','PISCO',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21488,'29042','Piseco','PISECO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21489,'36026','Pisek','PISEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21490,'38587','Písek','PÍSEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21491,'18787','Pismo Beach','PISMO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21492,'9577','Piso Livadi','PISO LIVADI',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21493,'24282','Pissouri','PISSOURI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21494,'14130','Piste','PISTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21495,'12988','Pisticci','PISTICCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21496,'35550','Pistoia-le Piastre','PISTOIA-LE PIASTRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21497,'8713','Pitcaple','PITCAPLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21498,'16757','Pitea','PITEA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21499,'36634','Pitesti','PITESTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21500,'5672','Pithiviers','PITHIVIERS',NULL,'','France','',0,0,76,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21501,'12298','Pitigliano','PITIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21502,'37440','Pitkin','PITKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21503,'1335','Pitlochry','PITLOCHRY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21504,'28382','Pitman','PITMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21505,'37791','Pitres','PITRES',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21506,'25507','Pitt Meadows','PITT MEADOWS',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21507,'33242','Pittman Center','PITTMAN CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21508,'33975','Pittsboro','PITTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:38','1900-01-01 00:00:00',1,0,1),(21509,'32752','Pittsburg','PITTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:38:38','1900-01-01 00:00:00',1,0,1),(21510,'30127','Pittsburgh','PITTSBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:38:40','1900-01-01 00:00:00',1,0,1),(21511,'20714','Pittsfield','PITTSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:41','1900-01-01 00:00:00',1,0,1),(21512,'29043','Pittsford','PITTSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:43','1900-01-01 00:00:00',1,0,1),(21513,'28383','Pittsgrove','PITTSGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:44','1900-01-01 00:00:00',1,0,1),(21514,'30130','Pittston','PITTSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:44','1900-01-01 00:00:00',1,0,1),(21515,'28384','Pittstown','PITTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21516,'26742','Pittsworth','PITTSWORTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21517,'15424','Piura','PIURA',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21518,'35605','Pizzo','PIZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21519,'24911','Placencia','PLACENCIA',NULL,'','Belize','',0,0,22,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21520,'42427','Placencia','PLACENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21521,'25671','Placentia','PLACENTIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21522,'18789','Placentia','PLACENTIA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21523,'18790','Placerville','PLACERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21524,'19568','Placida','PLACIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:48','1900-01-01 00:00:00',1,0,1),(21525,'28555','Placitas','PLACITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:38:48','1900-01-01 00:00:00',1,0,1),(21526,'5011','Plailly','PLAILLY',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21527,'40254','Plaine','PLAINE',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21528,'14267','Plaine Magnien','PLAINE MAGNIEN',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21529,'5128','Plainfaing','PLAINFAING',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21530,'31855','Plainfield','PLAINFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:50','1900-01-01 00:00:00',1,0,1),(21531,'28386','Plainsboro','PLAINSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:52','1900-01-01 00:00:00',1,0,1),(21532,'29045','Plainview','PLAINVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:38:52','1900-01-01 00:00:00',1,0,1),(21533,'19141','Plainville','PLAINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:53','1900-01-01 00:00:00',1,0,1),(21534,'22208','Plainwell','PLAINWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:38:53','1900-01-01 00:00:00',1,0,1),(21535,'4778','Plaisir','PLAISIR',NULL,'','France','',0,0,76,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21536,'9718','Plakias','PLAKIAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21537,'5578','Plancoet','PLANCOET',NULL,'','France','',0,0,76,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21538,'6509','Plan-de-cuques','PLAN-DE-CUQUES',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21539,'6510','Plan-de-la-tour','PLAN-DE-LA-TOUR',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21540,'37828','Planegg','PLANEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21541,'5579','Planguenoual','PLANGUENOUAL',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21542,'33041','Plankinton','PLANKINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21543,'40481','Plan-les-ouates','PLAN-LES-OUATES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21544,'30858','Plano','PLANO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21545,'19569','Plant City','PLANT CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:38:57','1900-01-01 00:00:00',1,0,1),(21546,'19570','Plantation','PLANTATION',NULL,'','United States','',0,0,231,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21547,'36210','Plantation Island','PLANTATION ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21548,'19142','Plantsville','PLANTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21549,'21247','Plaquemine','PLAQUEMINE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21550,'14576','Plasmolen','PLASMOLEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21551,'42497','Plastiras','PLASTIRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21552,'35325','Plat','PLAT',NULL,'','Croatia','',0,0,55,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21553,'42486','Platamon','PLATAMON',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21554,'35606','Platamona','PLATAMONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21555,'22822','Plateau Mont Royal - Quartier Latin','PLATEAU MONT ROYAL - QUARTIER LATIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21556,'4448','Plateau-d\'assy','PLATEAU-D\'ASSY',NULL,'','France','',0,0,76,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21557,'17738','Platinum','PLATINUM',NULL,'','United States','',0,0,231,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21558,'24268','Platres','PLATRES',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:39:01','1900-01-01 00:00:00',1,0,1),(21559,'27748','Platte City','PLATTE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:01','1900-01-01 00:00:00',1,0,1),(21560,'31856','Platteville','PLATTEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:02','1900-01-01 00:00:00',1,0,1),(21561,'29046','Plattsburgh','PLATTSBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:02','1900-01-01 00:00:00',1,0,1),(21562,'43459','Platys Gialos','PLATYS GIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21563,'1843','Plau','PLAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21564,'799','Plaue','PLAUE',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21565,'1901','Plauen','PLAUEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21566,'16606','Plavec','PLAVEC',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21567,'878','Playa Bavaro','PLAYA BAVARO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:39:04','1900-01-01 00:00:00',1,0,1),(21568,'24179','Playa Bejuco','PLAYA BEJUCO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:39:04','1900-01-01 00:00:00',1,0,1),(21569,'14077','Playa Del Carmen','PLAYA DEL CARMEN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21570,'42173','Playa Del Este','PLAYA DEL ESTE',NULL,'','Cuba','',0,0,56,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21571,'18792','Playa Del Rey','PLAYA DEL REY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21572,'42192','Playa Grande','PLAYA GRANDE',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:39:06','1900-01-01 00:00:00',1,0,1),(21573,'41298','Playa Montelimar','PLAYA MONTELIMAR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21574,'41729','Playacar','PLAYACAR',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21575,'43497','Playas De Fornells','PLAYAS DE FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21576,'13780','Playas De Rosarito','PLAYAS DE ROSARITO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21577,'30861','Pleasanton','PLEASANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:39:10','1900-01-01 00:00:00',1,0,1),(21578,'29048','Pleasantville','PLEASANTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:12','1900-01-01 00:00:00',1,0,1),(21579,'38919','Pleidelsheim','PLEIDELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21580,'32268','Pleiku','PLEIKU',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21581,'299','Pleinfeld','PLEINFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21582,'3719','Plencia','PLENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21583,'4449','Pleneuf Val Andre','PLENEUF VAL ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21584,'44079','Pleneuf-val-andre','PLENEUF-VAL-ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21585,'28008','Plentywood','PLENTYWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21586,'9721','Plepi','PLEPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21587,'5580','Plerin','PLERIN',NULL,'','France','',0,0,76,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21588,'27083','Plescherken','PLESCHERKEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21589,'11374','Plesio','PLESIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21590,'22823','Plessisville','PLESSISVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21591,'32492','Plettenberg Bay','PLETTENBERG BAY',NULL,'','South Africa','Plettenberg Bay',0,0,195,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21592,'41355','Pleudihen-sur-rance','PLEUDIHEN-SUR-RANCE',NULL,'','France','',0,0,76,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21593,'5581','Pleugueneuc','PLEUGUENEUC',NULL,'','France','',0,0,76,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21594,'4899','Pleumeur-bodou','PLEUMEUR-BODOU',NULL,'','France','',0,0,76,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21595,'24805','Pleven','PLEVEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21596,'300','Pliening','PLIENING',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21597,'22615','Pliezhausen','PLIEZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21598,'40989','Plitvice','PLITVICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21599,'37854','Ploaghe','PLOAGHE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21600,'22616','Plochingen','PLOCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21601,'15668','Plock','PLOCK',NULL,'','Poland','',0,0,174,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21602,'5582','Ploemel','PLOEMEL',NULL,'','France','',0,0,76,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21603,'5583','Ploemeur','PLOEMEUR',NULL,'','France','',0,0,76,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21604,'37706','Ploen','PLOEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21605,'39810','Plogoff','PLOGOFF',NULL,'','France','',0,0,76,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21606,'16227','Ploiesti','PLOIESTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21607,'9820','Plomarion','PLOMARION',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21608,'6056','Plombieres-les-bains','PLOMBIERES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21609,'42075','Plon','PLON',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21610,'5584','Ploneour-lanvern','PLONEOUR-LANVERN',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21611,'4450','Plorec Sur Arguenon','PLOREC SUR ARGUENON',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21612,'42355','Plorec-sur-arguenon','PLOREC-SUR-ARGUENON',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21613,'5585','Ploubazlanec','PLOUBAZLANEC',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21614,'44080','Plouescat','PLOUESCAT',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21615,'39846','Plougasnou','PLOUGASNOU',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21616,'4914','Plougastel-daoulas','PLOUGASTEL-DAOULAS',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21617,'39126','Plougonvelin','PLOUGONVELIN',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21618,'5586','Plouharnel','PLOUHARNEL',NULL,'','France','',0,0,76,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21619,'5587','Plouider','PLOUIDER',NULL,'','France','',0,0,76,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21620,'24808','Plovdiv','PLOVDIV',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21621,'31858','Plover','PLOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21622,'30131','Plumsteadville','PLUMSTEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:22','1900-01-01 00:00:00',1,0,1),(21623,'5588','Plurien','PLURIEN',NULL,'','France','',0,0,76,'2016-10-17 11:39:22','1900-01-01 00:00:00',1,0,1),(21624,'22209','Plymouth','PLYMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:23','1900-01-01 00:00:00',1,0,1),(21625,'8715','Plymouth','PLYMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:23','1900-01-01 00:00:00',1,0,1),(21626,'17138','Plymouth','PLYMOUTH',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:39:24','1900-01-01 00:00:00',1,0,1),(21627,'8716','Plympton','PLYMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21628,'26815','Plympton','PLYMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21629,'24335','Plzen','PLZEN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21630,'1774','Pnh Phnom Penh','PNH PHNOM PENH',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21631,'9910','Po Lin','PO LIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21632,'26858','Poatina','POATINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21633,'1902','Pobershau','POBERSHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21634,'2746','Poblenou','POBLENOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21635,'20278','Pocahontas','POCAHONTAS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21636,'25346','Pocahontas','POCAHONTAS',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:29','1900-01-01 00:00:00',1,0,1),(21637,'21500','Pocasset','POCASSET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:29','1900-01-01 00:00:00',1,0,1),(21638,'20386','Pocatello','POCATELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21639,'44006','Pochaiv','POCHAIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21640,'14442','Pochomil','POCHOMIL',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21641,'21765','Pocomoke City','POCOMOKE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21642,'25075','Pocone','POCONE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21643,'30133','Pocono Manor','POCONO MANOR',NULL,'','United States','',0,0,231,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21644,'30134','Poconos','POCONOS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21645,'955','Pocos De Caldas','POCOS DE CALDAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21646,'16607','Podbrezova','PODBREZOVA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21647,'16645','Podcetrtek','PODCETRTEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21648,'41867','Podebrady','PODEBRADY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21649,'39088','Podenzana','PODENZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21650,'12299','Podenzano','PODENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21651,'41191','Podgora','PODGORA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21652,'32371','Podgorica','PODGORICA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21653,'15595','Podlachia','PODLACHIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21654,'16522','Podor','PODOR',NULL,'','Senegal','',0,0,187,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21655,'10034','Podstrana','PODSTRANA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21656,'41805','Poertschach','POERTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21657,'12300','Poggiardo','POGGIARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21658,'12301','Poggibonsi','POGGIBONSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21659,'12302','Poggio A Caiano','POGGIO A CAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21660,'11375','Poggioreale Del Carso','POGGIOREALE DEL CARSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21661,'44299','Pogradeci','POGRADECI',NULL,'','Albania','',0,0,2,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21662,'13503','Pohang','POHANG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21663,'42287','Pohnpei','POHNPEI',NULL,'','Micronesia','',0,0,143,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21664,'41882','Pohorje','POHORJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21665,'16204','Poiana Brasov','POIANA BRASOV',NULL,'','Romania','',0,0,179,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21666,'19571','Poinciana','POINCIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:35','1900-01-01 00:00:00',1,0,1),(21667,'41904','Poindimie','POINDIMIE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:39:35','1900-01-01 00:00:00',1,0,1),(21668,'36347','Point Salines','POINT SALINES',NULL,'','Grenada','',0,0,88,'2016-10-17 11:39:40','1900-01-01 00:00:00',1,0,1),(21669,'14268','Pointe Aux Cannoniers','POINTE AUX CANNONIERS',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21670,'22824','Pointe Claire','POINTE CLAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21671,'24060','Pointe Noire','POINTE NOIRE',NULL,'','Congo','',0,0,51,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21672,'9385','Pointe-a-pitre','POINTE-A-PITRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21673,'22825','Pointe-au-pic','POINTE-AU-PIC',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21674,'22826','Pointe-aux-trembles','POINTE-AUX-TREMBLES',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21675,'41136','Pointe-claire','POINTE-CLAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21676,'22827','Pointe-du-lac','POINTE-DU-LAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21677,'38088','Pointe-noire','POINTE-NOIRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21678,'42765','Pointon','POINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21679,'22959','Points North Landing','POINTS NORTH LANDING',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21680,'2747','Poio','POIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21681,'42726','Poipet','POIPET',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:39:43','1900-01-01 00:00:00',1,0,1),(21682,'6358','Poitiers','POITIERS',NULL,'','France','',0,0,76,'2016-10-17 11:39:43','1900-01-01 00:00:00',1,0,1),(21683,'36262','Poitiers-futuroscope','POITIERS-FUTUROSCOPE',NULL,'','France','',0,0,76,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21684,'9911','Pok Fu Lam','POK FU LAM',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21685,'20964','Pokagon Lake','POKAGON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21686,'36512','Pokeno','POKENO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21687,'15060','Pokhara','POKHARA',NULL,'','Nepal','Pokhara',0,0,153,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21689,'34288','Pokolbin','POKOLBIN',NULL,'','Australia','Pokolbin',0,0,13,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21690,'16374','Pokrovsko-streshnevo','POKROVSKO-STRESHNEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21691,'16425','Pokrovskoye','POKROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21692,'3101','Pola De Lena','POLA DE LENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21693,'18191','Polacca','POLACCA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:46','1900-01-01 00:00:00',1,0,1),(21694,'29498','Poland','POLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:39:46','1900-01-01 00:00:00',1,0,1),(21695,'28009','Polaris','POLARIS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21696,'8717','Polegate','POLEGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21697,'43865','Polibetta','POLIBETTA',NULL,'','India','',0,0,101,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21698,'9579','Polichrono','POLICHRONO',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21699,'12304','Policoro','POLICORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21700,'12305','Polignano A Mare','POLIGNANO A MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21701,'39631','Poligny','POLIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21702,'24265','Polis','POLIS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21703,'12306','Polizzi Generosa','POLIZZI GENEROSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21704,'17742','Polk Inlet','POLK INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21705,'41797','Pollein','POLLEIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21706,'41558','Pollenca','POLLENCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21707,'2917','Pollensa','POLLENSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21708,'38270','Pollica','POLLICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21709,'27140','Polling Im Innkreis','POLLING IM INNKREIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21710,'18801','Pollock Pines','POLLOCK PINES',NULL,'','United States','',0,0,231,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21711,'39016','Pollonia','POLLONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21712,'8718','Polmont','POLMONT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21713,'20716','Polo','POLO',NULL,'','United States','',0,0,231,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21714,'1743','Polokwane','POLOKWANE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21716,'13589','Polonnaruwa','POLONNARUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21717,'8719','Polperro','POLPERRO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21718,'8720','Polsham','POLSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21719,'28010','Polson','POLSON',NULL,'','United States','',0,0,231,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21720,'8721','Polstead','POLSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21721,'17519','Poltava','POLTAVA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21722,'12769','Poltu Quatu','POLTU QUATU',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21723,'12307','Polvica','POLVICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21724,'16284','Polyarnyj','POLYARNYJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21725,'16445','Polyustrovo','POLYUSTROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21726,'17014','Pom Prap Sattru Phai','POM PRAP SATTRU PHAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21727,'10256','Pomalaa','POMALAA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21728,'12308','Pomarance','POMARANCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21729,'15821','Pombal','POMBAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21730,'9997','Pomena','POMENA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21731,'29499','Pomeroy','POMEROY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:54','1900-01-01 00:00:00',1,0,1),(21732,'19143','Pomfret','POMFRET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:54','1900-01-01 00:00:00',1,0,1),(21733,'12310','Pomigliano D\'arco','POMIGLIANO D\'ARCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21734,'301','Pommelsbrunn','POMMELSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21735,'28391','Pomona','POMONA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21736,'24798','Pomorie','POMORIE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21737,'19572','Pompano Beach','POMPANO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21738,'11376','Pompeii','POMPEII',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21739,'4451','Pompidou Centre - Notre Dame (3 And 4)','POMPIDOU CENTRE - NOTRE DAME (3 AND 4)',NULL,'','France','',0,0,76,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21740,'28392','Pompton Plains','POMPTON PLAINS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21741,'32945','Ponca City','PONCA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21742,'15761','Ponce','PONCE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:39:58','1900-01-01 00:00:00',1,0,1),(21743,'19573','Ponce Inlet','PONCE INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:58','1900-01-01 00:00:00',1,0,1),(21744,'21248','Ponchatoula','PONCHATOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:59','1900-01-01 00:00:00',1,0,1),(21745,'20388','Ponderay','PONDERAY',NULL,'','United States','',0,0,231,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21746,'3473','Ponferrada','PONFERRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21747,'32594','Pongola','PONGOLA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21748,'40678','Ponnampet','PONNAMPET',NULL,'','India','',0,0,101,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21749,'25347','Ponoka','PONOKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21750,'12311','Ponsacco','PONSACCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21751,'15240','Ponsonby','PONSONBY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21752,'41056','Ponta Delgada','PONTA DELGADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21753,'41155','Ponta Do Sol','PONTA DO SOL',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21754,'25116','Ponta Grossa','PONTA GROSSA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21755,'5239','Pontaillac','PONTAILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21756,'6057','Pont-a-mousson','PONT-A-MOUSSON',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21757,'5784','Pontarlier','PONTARLIER',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21758,'12312','Pontassieve','PONTASSIEVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21759,'5414','Pontaubault','PONTAUBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21760,'5827','Pont-audemer','PONT-AUDEMER',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21761,'40991','Pontault Combault','PONTAULT COMBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21762,'4453','Pontault-combault','PONTAULT-COMBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21763,'38305','Pontaumur','PONTAUMUR',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21764,'44081','Pont-aven','PONT-AVEN',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21765,'39775','Pont-de-salars','PONT-DE-SALARS',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21766,'40601','Pont-du-chateau','PONT-DU-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21767,'41647','Ponte De Lima','PONTE DE LIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21768,'23066','Ponte Tresa','PONTE TRESA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:05','1900-01-01 00:00:00',1,0,1),(21769,'19574','Ponte Vedra','PONTE VEDRA',NULL,'','United States','',0,0,231,'2016-10-17 11:40:05','1900-01-01 00:00:00',1,0,1),(21770,'39799','Pontebba','PONTEBBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:06','1900-01-01 00:00:00',1,0,1),(21771,'12319','Pontecagnano','PONTECAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:06','1900-01-01 00:00:00',1,0,1),(21772,'41434','Pontedeume','PONTEDEUME',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21773,'8722','Pontefract','PONTEFRACT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21774,'12321','Pontelatone','PONTELATONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21775,'12322','Pontenure','PONTENURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21776,'11378','Ponteranica','PONTERANICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21777,'7259','Ponterwyd','PONTERWYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21778,'43071','Pontetaro Di Noceto','PONTETARO DI NOCETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21779,'3679','Pontevedra','PONTEVEDRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21780,'36171','Pontevedra-mondariz','PONTEVEDRA-MONDARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21781,'5673','Pontgouin','PONTGOUIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:09','1900-01-01 00:00:00',1,0,1),(21782,'22211','Pontiac','PONTIAC',NULL,'','United States','',0,0,231,'2016-10-17 11:40:09','1900-01-01 00:00:00',1,0,1),(21783,'10328','Pontianak','PONTIANAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21784,'5589','Pontivy','PONTIVY',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21785,'5590','Pont-l\'abbe','PONT-L\'ABBE',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21786,'23067','Pont-la-ville','PONT-LA-VILLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21787,'5415','Pont-l\'eveque','PONT-L\'EVEQUE',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21788,'4966','Pontlevoy','PONTLEVOY',NULL,'','France','',0,0,76,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21789,'4780','Pontoise','PONTOISE',NULL,'','France','',0,0,76,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21790,'38396','Pontons','PONTONS',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21791,'20718','Pontoon Beach','PONTOON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21792,'5416','Pontorson','PONTORSON',NULL,'','France','',0,0,76,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21793,'27904','Pontotoc','PONTOTOC',NULL,'','United States','',0,0,231,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21794,'5485','Pontoux','PONTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21795,'23313','Pontresina','PONTRESINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21796,'38139','Pontrieux','PONTRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21797,'40124','Pont-saint-esprit','PONT-SAINT-ESPRIT',NULL,'','France','',0,0,76,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21798,'37318','Pont-saint-martin','PONT-SAINT-MARTIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21799,'7260','Pontyclun','PONTYCLUN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21800,'8723','Pontypool','PONTYPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21801,'8724','Pontypridd','PONTYPRIDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21802,'12323','Ponza','PONZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21803,'35619','Ponzano Romano','PONZANO ROMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21804,'11380','Ponziane Islands','PONZIANE ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21805,'9240','Poole','POOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21806,'19897','Pooler','POOLER',NULL,'','United States','',0,0,231,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21807,'8725','Pooley Bridge','POOLEY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21808,'7261','Pool-in-wharfedale','POOL-IN-WHARFEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21809,'10458','Poovar','POOVAR',NULL,'','India','Poovar',3,0,101,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21810,'24103','Popayan','POPAYAN',NULL,'','Colombia','',0,0,49,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21811,'38304','Poperinge','POPERINGE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21812,'35610','Popiglio','POPIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21813,'27750','Poplar Bluff','POPLAR BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21814,'34612','Poplar Hill','POPLAR HILL',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21815,'40144','Popoli','POPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21816,'12324','Poppi','POPPI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21817,'42277','Poprad','POPRAD',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21818,'19144','Poquetanuck','POQUETANUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21819,'10577','Porbandar','PORBANDAR',NULL,'','India','Porbandar',16,0,101,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21820,'12325','Porcari','PORCARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21821,'10063','Porec','POREC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21822,'26539','Porepunkah','POREPUNKAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21823,'35538','Poretta Terme','PORETTA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21824,'4026','Pori','PORI',NULL,'','Finland','',0,0,75,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21825,'44015','Porirua','PORIRUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21826,'32208','Porlamar','PORLAMAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21827,'8726','Porlock','PORLOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21828,'6263','Pornic','PORNIC',NULL,'','France','',0,0,76,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21829,'6264','Pornichet','PORNICHET',NULL,'','France','',0,0,76,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21830,'15660','Poronim','PORONIM',NULL,'','Poland','',0,0,174,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21831,'9788','Poros','POROS',NULL,'','Greece','Poros',0,0,86,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21832,'12327','Porotto','POROTTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21833,'2749','Porreres','PORRERES',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21834,'12328','Porretta Terme','PORRETTA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21835,'41401','Porrino','PORRINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:22','1900-01-01 00:00:00',1,0,1),(21836,'15008','Porsgrunn','PORSGRUNN',NULL,'','Norway','',0,0,164,'2016-10-17 11:40:22','1900-01-01 00:00:00',1,0,1),(21837,'13083','Port Antonio','PORT ANTONIO',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:40:24','1900-01-01 00:00:00',1,0,1),(21838,'882','Port Au Prince','PORT AU PRINCE',NULL,'','Haiti','',0,0,95,'2016-10-17 11:40:25','1900-01-01 00:00:00',1,0,1),(21839,'40677','Port Berge','PORT BERGE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:40:26','1900-01-01 00:00:00',1,0,1),(21840,'14359','Port Dickson','PORT DICKSON',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:40:29','1900-01-01 00:00:00',1,0,1),(21841,'36793','Port El Kantaoui','PORT EL KANTAOUI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:40:29','1900-01-01 00:00:00',1,0,1),(21842,'6853','Port Gentil','PORT GENTIL',NULL,'','Gabon','',0,0,80,'2016-10-17 11:40:30','1900-01-01 00:00:00',1,0,1),(21843,'14438','Port Harcourt','PORT HARCOURT',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:40:31','1900-01-01 00:00:00',1,0,1),(21844,'14269','Port Louis','PORT LOUIS',NULL,'','Mauritius','Port Louis',0,0,139,'2016-10-17 11:40:35','1900-01-01 00:00:00',1,0,1),(21845,'15579','Port Moresby','PORT MORESBY',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:40:36','1900-01-01 00:00:00',1,0,1),(21846,'17121','Port Of Spain','PORT OF SPAIN',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:40:37','1900-01-01 00:00:00',1,0,1),(21847,'40909','Port Sudan','PORT SUDAN',NULL,'','Sudan','',0,0,205,'2016-10-17 11:40:41','1900-01-01 00:00:00',1,0,1),(21848,'32306','Port Vila','PORT VILA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:40:42','1900-01-01 00:00:00',1,0,1),(21849,'554','Porta Westfalica','PORTA WESTFALICA',NULL,'','Germany','',0,0,83,'2016-10-17 11:40:43','1900-01-01 00:00:00',1,0,1),(21850,'37668','Portacomaro','PORTACOMARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21851,'8730','Portadown','PORTADOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21852,'8731','Portaferry','PORTAFERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21853,'20965','Portage','PORTAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:45','1900-01-01 00:00:00',1,0,1),(21854,'44016','Portage','PORTAGE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:45','1900-01-01 00:00:00',1,0,1),(21855,'27751','Portageville','PORTAGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:46','1900-01-01 00:00:00',1,0,1),(21856,'28077','Portal','PORTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:40:47','1900-01-01 00:00:00',1,0,1),(21857,'16020','Portalegre','PORTALEGRE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:48','1900-01-01 00:00:00',1,0,1),(21858,'28556','Portales','PORTALES',NULL,'','United States','',0,0,231,'2016-10-17 11:40:48','1900-01-01 00:00:00',1,0,1),(21859,'9723','Portaria','PORTARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21860,'40755','Portbail','PORTBAIL',NULL,'','France','',0,0,76,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21861,'5038','Port-barcares','PORT-BARCARES',NULL,'','France','',0,0,76,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21862,'42657','Port-boise','PORT-BOISE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21863,'8732','Portbury','PORTBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21864,'4456','Port-camargue','PORT-CAMARGUE',NULL,'','France','',0,0,76,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21865,'6359','Port-d\'envaux','PORT-D\'ENVAUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21866,'4873','Port-en-bessin','PORT-EN-BESSIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21867,'41351','Port-en-bessin-huppain','PORT-EN-BESSIN-HUPPAIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21868,'20966','Porter','PORTER',NULL,'','United States','',0,0,231,'2016-10-17 11:40:52','1900-01-01 00:00:00',1,0,1),(21869,'25743','Porter\'s Lake','PORTER\'S LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:52','1900-01-01 00:00:00',1,0,1),(21870,'18804','Porterville','PORTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21871,'4458','Portes Les Valence','PORTES LES VALENCE',NULL,'','France','',0,0,76,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21872,'8733','Portesham','PORTESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21873,'5240','Portet','PORTET',NULL,'','France','',0,0,76,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21874,'6123','Portet-sur-garonne','PORTET-SUR-GARONNE',NULL,'','France','',0,0,76,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21875,'8734','Port-eynon','PORT-EYNON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21876,'8736','Porthcawl','PORTHCAWL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21877,'8737','Porthmadog','PORTHMADOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21878,'4781','Porticcio','PORTICCIO',NULL,'','France','',0,0,76,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21879,'12329','Portico Di Romagna','PORTICO DI ROMAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21880,'16205','Portile De Fier','PORTILE DE FIER',NULL,'','Romania','',0,0,179,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21881,'15943','Portimao','PORTIMAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21882,'7262','Portinscale','PORTINSCALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21883,'5955','Portiragnes','PORTIRAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21884,'11382','Portisco','PORTISCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21885,'22216','Portland','PORTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21886,'7263','Portland','PORTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:57','1900-01-01 00:00:00',1,0,1),(21887,'26928','Portland','PORTLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:40:58','1900-01-01 00:00:00',1,0,1),(21888,'5956','Port-la-nouvelle','PORT-LA-NOUVELLE',NULL,'','France','',0,0,76,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21889,'10753','Portlaoise','PORTLAOISE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21890,'5785','Port-lesney','PORT-LESNEY',NULL,'','France','',0,0,76,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21891,'8738','Portloe','PORTLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21892,'7264','Portmeirion','PORTMEIRION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21893,'4782','Porto','PORTO',NULL,'','France','',0,0,76,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21894,'25093','Porto Alegre','PORTO ALEGRE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21895,'25848','Porto Amboim','PORTO AMBOIM',NULL,'','Angola','',0,0,6,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21896,'9581','Porto Carras','PORTO CARRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21897,'8739','Portobello','PORTOBELLO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:06','1900-01-01 00:00:00',1,0,1),(21898,'43991','Portobelo','PORTOBELO',NULL,'','Panama','',0,0,169,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21899,'12909','Portobuffole','PORTOBUFFOLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21900,'12336','Portoferraio','PORTOFERRAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21901,'12337','Portofino','PORTOFINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21902,'40040','Portogruaro','PORTOGRUARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21903,'9583','Porto-heli','PORTO-HELI',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21904,'18805','Portola','PORTOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21905,'41349','Portomarin','PORTOMARIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21906,'35696','Portonovo','PORTONOVO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21907,'3680','Portonovo','PORTONOVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21908,'11391','Portopalo Di Capo Passero','PORTOPALO DI CAPO PASSERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21909,'16619','Portoroz','PORTOROZ',NULL,'','Slovenia','Portoroz',0,0,192,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21910,'12829','Portoscuso','PORTOSCUSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21911,'4887','Porto-vecchio','PORTO-VECCHIO',NULL,'','France','',0,0,76,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21912,'12338','Portovenere','PORTOVENERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21913,'2404','Portoviejo','PORTOVIEJO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21914,'36600','Porto-vila Nova De G','PORTO-VILA NOVA DE G',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21915,'8740','Portpatrick','PORTPATRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21916,'8741','Portree','PORTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21917,'8742','Portrush','PORTRUSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21918,'40929','Portrush, Co. Antrim','PORTRUSH, CO. ANTRIM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21919,'39034','Port-saint-pere','PORT-SAINT-PERE',NULL,'','France','',0,0,76,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21920,'10824','Portsalon','PORTSALON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21921,'26542','Portsea','PORTSEA',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21922,'30262','Portsmouth','PORTSMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21923,'2105','Portsmouth','PORTSMOUTH',NULL,'','Dominica','',0,0,500,'2016-10-17 11:41:12','1900-01-01 00:00:00',1,0,1),(21924,'8743','Portsmouth','PORTSMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:13','1900-01-01 00:00:00',1,0,1),(21925,'38302','Portsonachan','PORTSONACHAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21926,'8744','Portstewart','PORTSTEWART',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21927,'7265','Portswood','PORTSWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21928,'35614','Portu Sa Ruxi (Sardi','PORTU SA RUXI (SARDI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21929,'25674','Portugal Cove','PORTUGAL COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21930,'3720','Portugalete','PORTUGALETE',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21931,'43246','Portugos','PORTUGOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21932,'10872','Portumna','PORTUMNA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21933,'43814','Porvenir','PORVENIR',NULL,'','Chile','',0,0,45,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21934,'3986','Porvoo','PORVOO',NULL,'','Finland','',0,0,75,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21935,'12339','Posada','POSADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21936,'26127','Posadas','POSADAS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21937,'23472','Poschiavo','POSCHIAVO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21938,'37189','Posedarje','POSEDARJE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21939,'40829','Poshina','POSHINA',NULL,'','India','',0,0,101,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21940,'3929','Posio','POSIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21941,'12340','Positano','POSITANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21942,'10365','Poso','POSO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21943,'37535','Possidonia','POSSIDONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21944,'22383','Possneck','POSSNECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21945,'39505','Posta Fibreno','POSTA FIBRENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21946,'8745','Postbridge','POSTBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21947,'14245','Poste De Flacq','POSTE DE FLACQ',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21948,'42444','Postmuenster','POSTMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21949,'302','Postmunster','POSTMUNSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21950,'16646','Postojna','POSTOJNA',NULL,'','Slovenia','Postojna',0,0,192,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21951,'41788','Postolowo','POSTOLOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21952,'25675','Postville','POSTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21953,'32947','Poteau','POTEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21954,'12702','Potenza','POTENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21955,'3133','Potes','POTES',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21956,'40029','Poti','POTI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21957,'43060','Potidea','POTIDEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21958,'42647','Potlogi','POTLOGI',NULL,'','Romania','',0,0,179,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21959,'21767','Potomac','POTOMAC',NULL,'','United States','',0,0,231,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21960,'9585','Potos','POTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21961,'27752','Potosi','POTOSI',NULL,'','United States','',0,0,231,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21962,'24955','Potosi','POTOSI',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21963,'24223','Potrero','POTRERO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21964,'29055','Potsdam','POTSDAM',NULL,'','United States','',0,0,231,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21965,'2083','Potsdam','POTSDAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21966,'8746','Pott Shrigley','POTT SHRIGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21967,'8747','Potters Bar','POTTERS BAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21968,'8748','Potton','POTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21969,'34291','Potts Point','POTTS POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21970,'30870','Pottsboro','POTTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21971,'30137','Pottstown','POTTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21972,'30138','Pottsville','POTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:24','1900-01-01 00:00:00',1,0,1),(21973,'29056','Poughkeepsie','POUGHKEEPSIE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:24','1900-01-01 00:00:00',1,0,1),(21974,'5486','Pougues-les-eaux','POUGUES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:41:25','1900-01-01 00:00:00',1,0,1),(21975,'5487','Pouilly-en-auxois','POUILLY-EN-AUXOIS',NULL,'','France','',0,0,76,'2016-10-17 11:41:25','1900-01-01 00:00:00',1,0,1),(21976,'38844','Pouilly-sur-loire','POUILLY-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21977,'1618','Pouligny Notre Dame','POULIGNY NOTRE DAME',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21978,'5674','Pouligny-notre-dame','POULIGNY-NOTRE-DAME',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21979,'31590','Poulsbo','POULSBO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21980,'31376','Poultney','POULTNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21981,'37302','Poulton-le-fylde','POULTON-LE-FYLDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21982,'14434','Poum','POUM',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21983,'29058','Pound Ridge','POUND RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21984,'31202','Pounding Mill','POUNDING MILL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21985,'8749','Poundon','POUNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21986,'38202','Pounta','POUNTA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21987,'21','Pouso Alegre','POUSO ALEGRE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21988,'6265','Pouzauges','POUZAUGES',NULL,'','France','',0,0,76,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21989,'11392','Pove Del Grappa','POVE DEL GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21990,'39479','Povegliano','POVEGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21991,'38062','Poviglio','POVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21992,'41646','Povoa De Lanhoso','POVOA DE LANHOSO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21993,'16096','Povoacao','POVOACAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21994,'22830','Povungnituk','POVUNGNITUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21995,'18806','Poway','POWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21996,'19899','Powder Springs','POWDER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:41:31','1900-01-01 00:00:00',1,0,1),(21997,'33522','Powderhorn','POWDERHORN',NULL,'','United States','',0,0,231,'2016-10-17 11:41:31','1900-01-01 00:00:00',1,0,1),(21998,'32124','Powell','POWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:32','1900-01-01 00:00:00',1,0,1),(21999,'25515','Powell River','POWELL RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:33','1900-01-01 00:00:00',1,0,1),(22000,'7266','Powmill','POWMILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:33','1900-01-01 00:00:00',1,0,1),(22001,'31377','Pownal','POWNAL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22002,'40580','Poysdorf','POYSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22003,'13781','Poza Rica','POZA RICA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22004,'15724','Poznan','POZNAN',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22005,'3281','Pozo Alcon','POZO ALCON',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22006,'12341','Pozza Di Fassa','POZZA DI FASSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22007,'12342','Pozzallo','POZZALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22008,'40538','Pozzilli','POZZILLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22009,'12343','Pozzolengo','POZZOLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22010,'12344','Pozzuoli','POZZUOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22011,'11393','Pozzuolo Martesana','POZZUOLO MARTESANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22012,'43309','Pra Loup','PRA LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22013,'42083','Prachinburi','PRACHINBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22015,'17087','Prachuap Khiri Khan','PRACHUAP KHIRI KHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22016,'12749','Pradamano','PRADAMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22017,'4459','Pradelles Cabardes','PRADELLES CABARDES',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22018,'5339','Prades','PRADES',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22019,'6512','Pradet','PRADET',NULL,'','France','',0,0,76,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22020,'37367','Prado','PRADO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22021,'39157','Prado - Parc Chanot','PRADO - PARC CHANOT',NULL,'','France','',0,0,76,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22022,'3282','Prado Del Rey','PRADO DEL REY',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22023,'15596','Praga Poludnie','PRAGA POLUDNIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22024,'13040','Pragelato','PRAGELATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22025,'40830','Pragpur','PRAGPUR',NULL,'','India','',0,0,101,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22026,'24332','Prague','PRAGUE',NULL,'','Czech Republic','Prague',0,0,58,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22027,'26929','Prahran','PRAHRAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22028,'24145','Praia','PRAIA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22029,'24995','Praia','PRAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22030,'11394','Praiano','PRAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:39','1900-01-01 00:00:00',1,0,1),(22031,'15042','Prakashpur','PRAKASHPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22032,'6822','Pralognan-la-vanoise','PRALOGNAN-LA-VANOISE',NULL,'','France','',0,0,76,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22033,'38494','Pralormo','PRALORMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22034,'6513','Pra-loup','PRA-LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22035,'16961','Pran Buri','PRAN BURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22037,'23314','Prangins','PRANGINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22038,'41617','Praslin','PRASLIN',NULL,'','Seychelles','Praslin',0,0,188,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22039,'12750','Prata Di Pordenone','PRATA DI PORDENONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22040,'38009','Pratdip','PRATDIP',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22041,'4460','Prats De Mollo La Preste','PRATS DE MOLLO LA PRESTE',NULL,'','France','',0,0,76,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22042,'2755','Prats I Sansor','PRATS I SANSOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22043,'21123','Pratt','PRATT',NULL,'','United States','',0,0,231,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22044,'23315','Pratteln','PRATTELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22045,'17940','Prattville','PRATTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22046,'64264','Pratunam','PRATUNAM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22047,'39986','Prauthoy','PRAUTHOY',NULL,'','France','',0,0,76,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22048,'43792','Pravets','PRAVETS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22049,'3104','Pravia','PRAVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22050,'28012','Pray','PRAY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22051,'6124','Prayssac','PRAYSSAC',NULL,'','France','',0,0,76,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22052,'23316','Praz','PRAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22053,'41899','Praz Sur Arly','PRAZ SUR ARLY',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22054,'15959','Prazeres','PRAZERES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22055,'5087','Praz-sur-arly','PRAZ-SUR-ARLY',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22056,'38567','Prechacq-les-bains','PRECHACQ-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22057,'23317','Preda','PREDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22058,'12348','Predazzo','PREDAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22059,'37575','Preddvor','PREDDVOR',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22060,'16228','Predeal','PREDEAL',NULL,'','Romania','',0,0,179,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22061,'39757','Predlitz-turrach','PREDLITZ-TURRACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22062,'1844','Preetz','PREETZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22063,'6266','Prefailles','PREFAILLES',NULL,'','France','',0,0,76,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22064,'12910','Preganziol','PREGANZIOL',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22065,'11396','Pregnana Milanese','PREGNANA MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22066,'41309','Prellezo','PRELLEZO',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22067,'43866','Prem Nagar','PREM NAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22068,'37863','Prémanon','PRÉMANON',NULL,'','France','',0,0,76,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22069,'44082','Premesques','PREMESQUES',NULL,'','France','',0,0,76,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22070,'2756','Premia De Dalt','PREMIA DE DALT',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22071,'31864','Prentice','PRENTICE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22072,'41868','Prerov','PREROV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22073,'39699','Pre-saint-didier','PRE-SAINT-DIDIER',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22074,'8750','Prescot','PRESCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22075,'31865','Prescott','PRESCOTT',NULL,'','United States','',0,0,231,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22076,'11397','Presezzo','PRESEZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22077,'33042','Presho','PRESHO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22078,'12349','Presicce','PRESICCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22079,'41991','Presidente Prudente','PRESIDENTE PRUDENTE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22080,'30872','Presidio','PRESIDIO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22081,'40501','Presov','PRESOV',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22082,'39812','Presque Isle','PRESQUE ISLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22083,'27020','Presseggersee','PRESSEGGERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22084,'8751','Prestatyn','PRESTATYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22085,'8752','Prestbury','PRESTBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22086,'7267','Presteigne','PRESTEIGNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22087,'1343','Preston','PRESTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22088,'26543','Preston','PRESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:56','1900-01-01 00:00:00',1,0,1),(22089,'27492','Preston','PRESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:41:56','1900-01-01 00:00:00',1,0,1),(22090,'43736','Prestons','PRESTONS',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:57','1900-01-01 00:00:00',1,0,1),(22091,'33719','Prestonsburg','PRESTONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:41:57','1900-01-01 00:00:00',1,0,1),(22092,'8753','Prestwich','PRESTWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22093,'1167','Prestwick','PRESTWICK',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22094,'32595','Pretoria','PRETORIA',NULL,'','South Africa','Pretoria',0,0,195,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22095,'34292','Pretty Beach','PRETTY BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22096,'37540','Prevelly','PREVELLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22097,'23068','Preverenges','PREVERENGES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22098,'23069','Prevessin','PREVESSIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22099,'6689','Prevessin','PREVESSIN',NULL,'','France','',0,0,76,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22100,'44083','Prevessin-moens','PREVESSIN-MOENS',NULL,'','France','',0,0,76,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22101,'9724','Preveza','PREVEZA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22102,'37389','Pribylina','PRIBYLINA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22103,'33384','Price','PRICE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22104,'17941','Priceville','PRICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22105,'25348','Priddis','PRIDDIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22106,'40741','Priego','PRIEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22107,'43337','Prien Am Chiemsee','PRIEN AM CHIEMSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22108,'14176','Prilep','PRILEP',NULL,'','Macedonia, FYR Of','',0,0,191,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22109,'34293','Primbee','PRIMBEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22110,'32843','Primm','PRIMM',NULL,'','United States','',0,0,231,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22111,'13910','Primo Tapia','PRIMO TAPIA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22112,'24799','Primorsko','PRIMORSKO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22113,'9973','Primosten','PRIMOSTEN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22114,'22960','Prince Albert','PRINCE ALBERT',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22115,'44193','Princes Risborough','PRINCES RISBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:04','1900-01-01 00:00:00',1,0,1),(22116,'25109','Princesa Isabel','PRINCESA ISABEL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:42:04','1900-01-01 00:00:00',1,0,1),(22117,'21769','Princess Anne','PRINCESS ANNE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22118,'25518','Princeton','PRINCETON',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22119,'28393','Princeton','PRINCETON',NULL,'','United States','',0,0,231,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22120,'16582','Principe Island','PRINCIPE ISLAND',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22121,'29736','Prineville','PRINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22122,'40520','Pringle Bay','PRINGLE BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22123,'9850','Prins Christian Sund','PRINS CHRISTIAN SUND',NULL,'','Greenland','',0,0,87,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22124,'27494','Prior Lake','PRIOR LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22125,'11398','Priora','PRIORA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22126,'32377','Pristina','PRISTINA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22127,'39118','Privlaka','PRIVLAKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22128,'1539','Prizba','PRIZBA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22129,'468','Probbach','PROBBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22130,'35371','Probolinggo','PROBOLINGGO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22131,'8755','Probus','PROBUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22132,'12350','Procchio','PROCCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22133,'12351','Procida','PROCIDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22134,'27495','Proctor','PROCTOR',NULL,'','United States','',0,0,231,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22135,'31378','Proctorsville','PROCTORSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22136,'36585','Proenca A Nova','PROENCA A NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22137,'15899','Proenca-a-nova','PROENCA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22138,'9725','Profitis Ilias','PROFITIS ILIAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22139,'13885','Progreso','PROGRESO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22140,'37391','Projan','PROJAN',NULL,'','France','',0,0,76,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22141,'38171','Propata','PROPATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22142,'4888','Propriano','PROPRIANO',NULL,'','France','',0,0,76,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22143,'26427','Proserpine','PROSERPINE',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22144,'33722','Prospect','PROSPECT',NULL,'','United States','',0,0,231,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22145,'26817','Prospect','PROSPECT',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22146,'13078','Prospect','PROSPECT',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:42:16','1900-01-01 00:00:00',1,0,1),(22147,'30393','Prosperity','PROSPERITY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:17','1900-01-01 00:00:00',1,0,1),(22148,'31591','Prosser','PROSSER',NULL,'','United States','',0,0,231,'2016-10-17 11:42:17','1900-01-01 00:00:00',1,0,1),(22149,'11399','Provaglio D\'iseo','PROVAGLIO D\'ISEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22150,'39717','Provatas','PROVATAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22151,'30263','Providence','PROVIDENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22152,'902','Providencia','PROVIDENCIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22153,'16938','Providenciales','PROVIDENCIALES',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22154,'6190','Proville','PROVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22155,'21501','Provincetown','PROVINCETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22156,'5869','Provins','PROVINS',NULL,'','France','',0,0,76,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22157,'33387','Provo','PROVO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22158,'25349','Provost','PROVOST',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:21','1900-01-01 00:00:00',1,0,1),(22159,'22217','Prudenville','PRUDENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:21','1900-01-01 00:00:00',1,0,1),(22160,'17754','Prudhoe Bay','PRUDHOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22161,'24319','Pruhonice','PRUHONICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22162,'37186','Prullans','PRULLANS',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22163,'15701','Pruszkow','PRUSZKOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22164,'38674','Prvic Luka','PRVIC LUKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22165,'32948','Pryor','PRYOR',NULL,'','United States','',0,0,231,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22166,'15672','Przemysl','PRZEMYSL',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22167,'15673','Przeworsk','PRZEWORSK',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22168,'39522','Psakoudia','PSAKOUDIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22169,'43461','Psarou Beach','PSAROU BEACH',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22170,'40723','Psathopirgos','PSATHOPIRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22171,'42485','Psathopyrgos','PSATHOPYRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22172,'9726','Psikhikon','PSIKHIKON',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22173,'16423','Pskov','PSKOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22174,'42484','Ptolemaida','PTOLEMAIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22175,'37617','Ptuj','PTUJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22176,'20107','Puako','PUAKO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22177,'15435','Pucallpa','PUCALLPA',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22178,'24394','Puch Bei Hallein','PUCH BEI HALLEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22179,'38397','Puchberg Am Schneeberg','PUCHBERG AM SCHNEEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22180,'37724','Puchenstuben','PUCHENSTUBEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22181,'303','Puchheim','PUCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22182,'38045','Pucisca','PUCISCA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22183,'15622','Puck','PUCK',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22184,'23512','Pucon','PUCON',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22185,'23619','Pudong Airport','PUDONG AIRPORT',NULL,'','China','',0,0,46,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22186,'8756','Pudsey','PUDSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22187,'10459','Puducherry','PUDUCHERRY',NULL,'','India','',0,0,101,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22188,'14067','Puebla','PUEBLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22189,'3776','Puebla De Farnals','PUEBLA DE FARNALS',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22190,'33523','Pueblo','PUEBLO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:27','1900-01-01 00:00:00',1,0,1),(22191,'15413','Pueblo Libre','PUEBLO LIBRE',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:27','1900-01-01 00:00:00',1,0,1),(22192,'23548','Puente Alto','PUENTE ALTO',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22193,'40482','Puente De Genave','PUENTE DE GENAVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22194,'14047','Puente De Ixtla','PUENTE DE IXTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22195,'37882','Puerto Angel','PUERTO ANGEL',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22196,'43217','Puerto Arenas','PUERTO ARENAS',NULL,'','Chile','Puerto Arenas',0,0,45,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22197,'32180','Puerto Ayacucho','PUERTO AYACUCHO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22198,'2387','Puerto Ayora','PUERTO AYORA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22199,'9880','Puerto Barrios','PUERTO BARRIOS',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22200,'24094','Puerto Berrio','PUERTO BERRIO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22201,'14450','Puerto Cabezas','PUERTO CABEZAS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:42:30','1900-01-01 00:00:00',1,0,1),(22202,'9957','Puerto Cortes','PUERTO CORTES',NULL,'','Honduras','',0,0,97,'2016-10-17 11:42:30','1900-01-01 00:00:00',1,0,1),(22203,'15437','Puerto Galera','PUERTO GALERA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22204,'15380','Puerto General San Martin','PUERTO GENERAL SAN MARTIN',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22205,'24242','Puerto Jimenez','PUERTO JIMENEZ',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22206,'2362','Puerto Plata','PUERTO PLATA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22207,'951','Puerto Quijarro','PUERTO QUIJARRO',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22208,'15733','Puerto Rico','PUERTO RICO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22209,'3419','Puertollano','PUERTOLLANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:34','1900-01-01 00:00:00',1,0,1),(22210,'6514','Puget','PUGET',NULL,'','France','',0,0,76,'2016-10-17 11:42:34','1900-01-01 00:00:00',1,0,1),(22211,'42333','Pugnochiuso','PUGNOCHIUSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22212,'20108','Puhi','PUHI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22213,'3582','Puigcerda','PUIGCERDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22214,'2924','Puigpunyent','PUIGPUNYENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22215,'4880','Puilboreau','PUILBOREAU',NULL,'','France','',0,0,76,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22216,'5241','Pujols','PUJOLS',NULL,'','France','',0,0,76,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22217,'20109','Pukalani','PUKALANI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22218,'25621','Pukatawagan','PUKATAWAGAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22219,'20110','Pukoo','PUKOO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22220,'10035','Pula','PULA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22221,'12786','Pula','PULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22222,'42847','Pulai','PULAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:38','1900-01-01 00:00:00',1,0,1),(22223,'29059','Pulaski','PULASKI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:38','1900-01-01 00:00:00',1,0,1),(22224,'42848','Pulau Besar','PULAU BESAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:39','1900-01-01 00:00:00',1,0,1),(22225,'8757','Pulborough','PULBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:40','1900-01-01 00:00:00',1,0,1),(22226,'8758','Pulford','PULFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22227,'555','Pulheim','PULHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22228,'17412','Puli','PULI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22229,'5488','Puligny-montrachet','PULIGNY-MONTRACHET',NULL,'','France','',0,0,76,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22230,'31592','Pullman','PULLMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22231,'12352','Pulsano','PULSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22232,'37121','Pumba','PUMBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22233,'16172','Punaauia','PUNAAUIA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22234,'15242','Punakaiki','PUNAKAIKI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22235,'20112','Punaluu (Hawaii)','PUNALUU (HAWAII)',NULL,'','United States','',0,0,231,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22236,'9999','Punat','PUNAT',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22237,'39949','Punchbowl','PUNCHBOWL',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22238,'10652','Pune','PUNE',NULL,'','India','Pune',5,0,101,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22239,'4035','Punkaharju','PUNKAHARJU',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22240,'11400','Punta Ala','PUNTA ALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22241,'44235','Punta Allen','PUNTA ALLEN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22242,'23480','Punta Arenas','PUNTA ARENAS',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22243,'15464','Punta Bunga','PUNTA BUNGA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22244,'2375','Punta Cana','PUNTA CANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22245,'917','Punta Cocles','PUNTA COCLES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22246,'17534','Punta Del Este','PUNTA DEL ESTE',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22247,'19584','Punta Gorda','PUNTA GORDA',NULL,'','United States','',0,0,231,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22248,'24925','Punta Gorda','PUNTA GORDA',NULL,'','Belize','',0,0,22,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22249,'38339','Punta Hermosa','PUNTA HERMOSA',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22250,'38660','Puntallana','PUNTALLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22251,'24183','Puntarenas','PUNTARENAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22252,'41121','Punto Fijo','PUNTO FIJO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22253,'30139','Punxsutawney','PUNXSUTAWNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:47','1900-01-01 00:00:00',1,0,1),(22254,'32950','Purcell','PURCELL',NULL,'','United States','',0,0,231,'2016-10-17 11:42:47','1900-01-01 00:00:00',1,0,1),(22255,'29060','Purchase','PURCHASE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22256,'29061','Purdys','PURDYS',NULL,'','United States','',0,0,231,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22257,'40045','Purfleet','PURFLEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22258,'33526','Purgatory - Durango','PURGATORY - DURANGO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22259,'2155','Purhus','PURHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22260,'10663','Puri','PURI',NULL,'','India','Puri',8,0,101,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22261,'42732','Puriscal','PURISCAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22262,'8759','Puriton','PURITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22263,'38294','Purkersdorf','PURKERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22264,'29062','Purling','PURLING',NULL,'','United States','',0,0,231,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22265,'26120','Purmamarca','PURMAMARCA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22266,'14654','Purmerend','PURMEREND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22267,'8760','Purton','PURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22268,'35372','Purwakarta','PURWAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22269,'10297','Purwokerto','PURWOKERTO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22270,'10578','Pushkar','PUSHKAR',NULL,'','India','Pushkar',2,0,101,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22271,'37991','Pushkin','PUSHKIN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22272,'6690','Pusignan','PUSIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22274,'16285','Puskinskaya - Tverskaya','PUSKINSKAYA - TVERSKAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22275,'43173','Putao','PUTAO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22276,'1845','Putbus','PUTBUS',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22277,'4784','Puteaux','PUTEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22278,'37375','Puthenthope','PUTHENTHOPE',NULL,'','India','',0,0,101,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22279,'23776','Putian','PUTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22280,'12353','Putignano','PUTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22281,'16375','Putilkovo','PUTILKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22282,'29506','Put-in-bay','PUT-IN-BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22283,'19147','Putnam','PUTNAM',NULL,'','United States','',0,0,231,'2016-10-17 11:42:53','1900-01-01 00:00:00',1,0,1),(22284,'31379','Putney','PUTNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:53','1900-01-01 00:00:00',1,0,1),(22285,'14322','Putra World Trade Centre','PUTRA WORLD TRADE CENTRE',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22286,'14323','Putrajaya','PUTRAJAYA',NULL,'','Malaysia','Putrajaya',0,0,132,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22287,'38552','Puttaparthi','PUTTAPARTHI',NULL,'','India','Puttaparthi',7,0,101,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22289,'14608','Putten','PUTTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22290,'38923','Puttgarden','PUTTGARDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22291,'34893','Putuoshan','PUTUOSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22292,'10257','Putussibau','PUTUSSIBAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22293,'304','Putzbrunn','PUTZBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22294,'20114','Puuiki','PUUIKI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:55','1900-01-01 00:00:00',1,0,1),(22295,'20115','Puunene','PUUNENE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:55','1900-01-01 00:00:00',1,0,1),(22296,'41900','Puy Saint Vincent','PUY SAINT VINCENT',NULL,'','France','',0,0,76,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22297,'31594','Puyallup','PUYALLUP',NULL,'','United States','',0,0,231,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22298,'23796','Puyang','PUYANG',NULL,'','China','',0,0,46,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22299,'4461','Puy-de-dome','PUY-DE-DOME',NULL,'','France','',0,0,76,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22300,'23533','Puyehue','PUYEHUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22301,'40585','Puygiron','PUYGIRON',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22302,'5242','Puymirol','PUYMIROL',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22303,'4462','Puy-saint-vincent','PUY-SAINT-VINCENT',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22304,'3778','Puzol','PUZOL',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22305,'8761','Pwllheli','PWLLHELI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22306,'37436','Pyatigorsk','PYATIGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22307,'42059','Pyay','PYAY',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22308,'35815','Pyeongchang','PYEONGCHANG',NULL,'','South Korea','',0,0,197,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22309,'41719','Pyha','PYHA',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22310,'35122','Pyhatunturi','PYHATUNTURI',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22311,'42483','Pylos','PYLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22312,'39209','Pyoseon-ri','PYOSEON-RI',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22313,'34294','Pyrmont','PYRMONT',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22314,'44051','Pyrzowice','PYRZOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22315,'9587','Pythagorio','PYTHAGORIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22316,'42058','Pyun U Lwin','PYUN U LWIN',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22317,'13632','Qacha\'s Nek','QACHA\'S NEK',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22318,'16499','Qaisumah','QAISUMAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22319,'37364','Qamea Island','QAMEA ISLAND',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22320,'43147','Qaraoun','QARAOUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22321,'14189','Qawra','QAWRA',NULL,'','Malta','',0,0,135,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22322,'23907','Qibao','QIBAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22323,'34895','Qidong','QIDONG',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22324,'23844','Qiemo','QIEMO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22325,'23621','Qieshikou','QIESHIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22326,'23919','Qingcheng','QINGCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22327,'23928','Qingdao','QINGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22328,'23622','Qinghuayuan','QINGHUAYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22329,'23908','Qingpu','QINGPU',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22330,'23561','Qingtao','QINGTAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22331,'23689','Qingtian','QINGTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22332,'23623','Qingyang','QINGYANG',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22333,'23624','Qingyuan','QINGYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22334,'23625','Qinhangdao','QINHANGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22335,'23808','Qinhuangdao','QINHUANGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22336,'23986','Qionghai','QIONGHAI',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22337,'23788','Qiqihar','QIQIHAR',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22338,'11052','Qiryat Anavim','QIRYAT ANAVIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22339,'32361','Qishn','QISHN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22340,'34897','Qitai','QITAI',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22341,'35435','Qom','QOM',NULL,'','Iran','',0,0,103,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22342,'25519','Quadra Island','QUADRA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22343,'30140','Quakertown','QUAKERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22344,'40777','Qualiano','QUALIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22345,'25520','Qualicum','QUALICUM',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22346,'30873','Quanah','QUANAH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22347,'935','Quang Binh','QUANG BINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22348,'41695','Quangzhou','QUANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22349,'31205','Quantico','QUANTICO',NULL,'','United States','',0,0,231,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22350,'23777','Quanzhou','QUANZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22351,'22831','Quaqtaq','QUAQTAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22352,'12354','Quarrata','QUARRATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22353,'5489','Quarre-les-tombes','QUARRE-LES-TOMBES',NULL,'','France','',0,0,76,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22354,'9936','Quarry Bay','QUARRY BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22355,'15945','Quarteira','QUARTEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22356,'9370','Quartier D Orleans','QUARTIER D ORLEANS',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:43:05','1900-01-01 00:00:00',1,0,1),(22357,'12355','Quarto','QUARTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:05','1900-01-01 00:00:00',1,0,1),(22358,'18195','Quartzsite','QUARTZSITE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22359,'25522','Quathiaski Cove','QUATHIASKI COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22360,'43968','Quatre-bornes','QUATRE-BORNES',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22361,'965','Quatro Barras','QUATRO BARRAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22362,'38806','Quattordio','QUATTORDIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22363,'34295','Queanbeyan','QUEANBEYAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22364,'22833','Quebec','QUEBEC',NULL,'','Canada','Quebec city',0,0,39,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22365,'15762','Quebradillas','QUEBRADILLAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22366,'31380','Quechee','QUECHEE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22367,'8762','Quedgeley','QUEDGELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:08','1900-01-01 00:00:00',1,0,1),(22368,'1945','Quedlinburg','QUEDLINBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:08','1900-01-01 00:00:00',1,0,1),(22369,'29063','Queens','QUEENS',NULL,'','United States','',0,0,231,'2016-10-17 11:43:09','1900-01-01 00:00:00',1,0,1),(22370,'29066','Queensbury','QUEENSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:10','1900-01-01 00:00:00',1,0,1),(22371,'26544','Queenscliff','QUEENSCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22372,'41824','Queensland Central Coast','QUEENSLAND CENTRAL COAST',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22373,'15156','Queenstown','QUEENSTOWN',NULL,'','New Zealand','Queenstown',0,0,157,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22374,'21770','Queenstown','QUEENSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22375,'26861','Queenstown','QUEENSTOWN',NULL,'','Australia','Queenstown',0,0,13,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22376,'1112','Queenstown/southern Lakes','QUEENSTOWN/SOUTHERN LAKES',NULL,'','NEW ZEALAND','',0,0,157,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22377,'36586','Queijas','QUEIJAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22378,'3721','Quejana','QUEJANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22379,'14225','Quelimane','QUELIMANE',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22380,'42763','Quellon','QUELLON',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22381,'14020','Quemaro','QUEMARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22382,'24243','Quepos','QUEPOS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22383,'2768','Queralbs','QUERALBS',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22384,'12357','Quercegrossa','QUERCEGROSSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22385,'13854','Queretaro','QUERETARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22386,'25523','Quesnel','QUESNEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22387,'5591','Questembert','QUESTEMBERT',NULL,'','France','',0,0,76,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22388,'4895','Quetigny','QUETIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22389,'15322','Quetta','QUETTA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22390,'5417','Quetteville','QUETTEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22391,'35313','Quetzaltenango','QUETZALTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22392,'38056','Quevert','QUEVERT',NULL,'','France','',0,0,76,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22393,'42213','Quezon','QUEZON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22394,'23929','Qufu','QUFU',NULL,'','China','',0,0,46,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22395,'42091','Qui Nhon','QUI NHON',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22396,'15465','Quiapo','QUIAPO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22397,'24109','Quibdo','QUIBDO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22398,'5592','Quiberon','QUIBERON',NULL,'','France','',0,0,76,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22399,'27270','Quickborn','QUICKBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22400,'12358','Quiliano','QUILIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22401,'22961','Quill Lake','QUILL LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22402,'39907','Quillan','QUILLAN',NULL,'','France','',0,0,76,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22403,'26080','Quilmes','QUILMES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22404,'26428','Quilpie','QUILPIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22405,'40631','Quilty','QUILTY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22406,'24121','Quimbaya','QUIMBAYA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22407,'5593','Quimper','QUIMPER',NULL,'','France','',0,0,76,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22408,'5594','Quimperle','QUIMPERLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22409,'10793','Quin','QUIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22410,'31595','Quinault','QUINAULT',NULL,'','United States','',0,0,231,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22411,'40311','Quincieux','QUINCIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22412,'21502','Quincy','QUINCY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:18','1900-01-01 00:00:00',1,0,1),(22413,'32322','Quine Hill','QUINE HILL',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:43:20','1900-01-01 00:00:00',1,0,1),(22414,'4993','Quineville','QUINEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:20','1900-01-01 00:00:00',1,0,1),(22415,'17755','Quinhagak','QUINHAGAK',NULL,'','United States','',0,0,231,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22416,'6125','Quint','QUINT',NULL,'','France','',0,0,76,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22417,'36588','Quinta Do Lago','QUINTA DO LAGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22418,'23549','Quinta Normal','QUINTA NORMAL',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22419,'39553','Quintana De Soba','QUINTANA DE SOBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22420,'3475','Quintanaduenas','QUINTANADUENAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22421,'38368','Quintanilla De Arriba','QUINTANILLA DE ARRIBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22422,'21124','Quinter','QUINTER',NULL,'','United States','',0,0,231,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22423,'23502','Quintero','QUINTERO',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22424,'34620','Quinte\'s Isle - Prince Edward County','QUINTE\'S ISLE - PRINCE EDWARD COUNTY',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22425,'37505','Quinto Vicentino','QUINTO VICENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22426,'43221','Quirimbas','QUIRIMBAS',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22427,'34296','Quirindi','QUIRINDI',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22428,'30875','Quitman','QUITMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22429,'2408','Quito','QUITO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22430,'43829','Qujing','QUJING',NULL,'','China','',0,0,46,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22431,'29068','Quogue','QUOGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22432,'8763','Quorndon','QUORNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22433,'7268','Quothquan','QUOTHQUAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22434,'34974','Quseir','QUSEIR',NULL,'','Egypt','',0,0,65,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22435,'32298','Quy Nhon','QUY NHON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22436,'23711','Quzhou','QUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22437,'43767','Raabs An Der Thaya','RAABS AN DER THAYA',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22438,'3950','Raahe','RAAHE',NULL,'','Finland','',0,0,75,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22439,'37193','Raalte','RAALTE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22440,'14609','Raamsdonksveer','RAAMSDONKSVEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22441,'41229','Raattvik','RAATTVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22442,'9974','Rab','RAB',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22443,'10001','Rabac','RABAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22444,'3583','Rabade','RABADE',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22445,'35345','Rabafuzes','RABAFUZES',NULL,'','Hungary','',0,0,99,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22446,'13706','Rabat','RABAT',NULL,'','Morocco','Rabat',0,0,148,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22447,'27112','Rabenstein','RABENSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22448,'4071','Rabi','RABI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22449,'39882','Racale','RACALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22450,'12359','Racalmuto','RACALMUTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22451,'12360','Racconigi','RACCONIGI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22452,'19586','Raccoon Key','RACCOON KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22453,'21250','Raceland','RACELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22454,'26744','Raceview','RACEVIEW',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22455,'15637','Raciborz','RACIBORZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22456,'31866','Racine','RACINE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22457,'39487','Racines','RACINES',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22458,'38262','Rackeve','RACKEVE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22459,'41295','Radauti','RADAUTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22460,'33723','Radcliff','RADCLIFF',NULL,'','United States','',0,0,231,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22461,'8764','Radcliffe','RADCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22462,'12971','Radda In Chianti','RADDA IN CHIANTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22463,'1903','Radeberg','RADEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22464,'1904','Radebeul','RADEBEUL',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22465,'1905','Radefeld','RADEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22466,'36692','Radenci','RADENCI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22467,'27084','Radenthein','RADENTHEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22468,'556','Radevormwald','RADEVORMWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22469,'37974','Radicondoli','RADICONDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22470,'22835','Radisson','RADISSON',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22471,'25524','Radium Hot Springs','RADIUM HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22472,'30141','Radnor','RADNOR',NULL,'','United States','',0,0,231,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22473,'42673','Radolfzell','RADOLFZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22474,'40228','Radom','RADOM',NULL,'','Poland','',0,0,174,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22475,'16647','Radovljica','RADOVLJICA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22476,'24395','Radstadt','RADSTADT',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22477,'8765','Radstock','RADSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22478,'16286','Raduzhnyi','RADUZHNYI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22479,'10579','Rae Bareli','RAE BARELI',NULL,'','India','',0,0,101,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22480,'25778','Rae Lakes','RAE LAKES',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22481,'33977','Raeford','RAEFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22482,'8766','Raemoir','RAEMOIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22483,'44017','Raetihi','RAETIHI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22484,'3339','Rafales','RAFALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22485,'16514','Rafha','RAFHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22486,'9727','Rafina','RAFINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22487,'23318','Rafz','RAFZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22488,'35626','Ragalna','RAGALNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22489,'37577','Raggal','RAGGAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22490,'42921','Raglan','RAGLAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22491,'12849','Ragusa','RAGUSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22492,'35579','Ragusa-modica','RAGUSA-MODICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22493,'10368','Raha','RAHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22494,'27271','Rahden','RAHDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22495,'10852','Raheny','RAHENY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22496,'15323','Rahim Yar Khan','RAHIM YAR KHAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22497,'382','Rahlstedt','RAHLSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22498,'28395','Rahway','RAHWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22499,'16137','Raiatea','RAIATEA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22500,'40457','Raichak','RAICHAK',NULL,'','India','',0,0,101,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22501,'17015','Railay Beach','RAILAY BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22502,'30142','Railroad','RAILROAD',NULL,'','United States','',0,0,231,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22503,'38672','Rainbow Beach','RAINBOW BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22504,'25350','Rainbow Lake','RAINBOW LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22505,'32034','Rainelle','RAINELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22506,'33247','Raines','RAINES',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22507,'17942','Rainsville','RAINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22508,'10580','Raipur','RAIPUR',NULL,'','India','Raipur',46,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22509,'732','Raisdorf','RAISDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22510,'10619','Rajahmundry','RAJAHMUNDRY',NULL,'','India','Rajahmundry',7,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22511,'10637','Rajkot','RAJKOT',NULL,'','India','Rajkot',16,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22512,'3682','Rajo','RAJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22513,'10581','Rajpur','RAJPUR',NULL,'','India','',0,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22514,'10582','Rajsamand','RAJSAMAND',NULL,'','India','Rajsamand',2,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22515,'24760','Rajshahi','RAJSHAHI',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22516,'38338','Rajula','RAJULA',NULL,'','India','',0,0,101,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22517,'15243','Rakaia Gorge','RAKAIA GORGE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22518,'41607','Rakek','RAKEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22519,'4102','Rakiraki','RAKIRAKI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22520,'42540','Rakiura','RAKIURA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22521,'38867','Rakovica','RAKOVICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22522,'3828','Rakvere','RAKVERE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22523,'33248','Raleigh','RALEIGH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22524,'25676','Raleigh','RALEIGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:40','1900-01-01 00:00:00',1,0,1),(22525,'1846','Ralswiek','RALSWIEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22526,'10460','Ramagundam','RAMAGUNDAM',NULL,'','India','',0,0,101,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22527,'3135','Ramales De La Victoria','RAMALES DE LA VICTORIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22528,'39839','Ramallo','RAMALLO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22529,'11073','Ramat Gan','RAMAT GAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22530,'6515','Ramatuelle','RAMATUELLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22531,'4785','Rambouillet','RAMBOUILLET',NULL,'','France','',0,0,76,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22532,'7269','Rame','RAME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22533,'15043','Ramechap','RAMECHAP',NULL,'','Nepal','',0,0,153,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22534,'16464','Ramenki','RAMENKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22535,'39628','Rameshwaram','RAMESHWARAM',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22536,'40832','Ramgarh','RAMGARH',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22537,'22618','Rammingen','RAMMINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22538,'10583','Ramnagar','RAMNAGAR',NULL,'','India','Ramnagar',9,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22539,'36635','Ramnicu Valcea','RAMNICU VALCEA',NULL,'','Romania','',0,0,179,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22540,'39301','Ramoji Film City','RAMOJI FILM CITY',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22541,'16475','Ramon','RAMON',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22542,'18808','Ramona','RAMONA',NULL,'','United States','',0,0,231,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22543,'4920','Ramonville-saint-agne','RAMONVILLE-SAINT-AGNE',NULL,'','France','',0,0,76,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22544,'39859','Ramot','RAMOT',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22545,'17122','Rampalnagas Village','RAMPALNAGAS VILLAGE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22546,'17756','Rampart','RAMPART',NULL,'','United States','',0,0,231,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22547,'24433','Ramsau','RAMSAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22548,'305','Ramsau','RAMSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22549,'34621','Ramsayville','RAMSAYVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22550,'8767','Ramsbottom','RAMSBOTTOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22551,'23319','Ramsen','RAMSEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22552,'28396','Ramsey','RAMSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:46','1900-01-01 00:00:00',1,0,1),(22553,'8768','Ramsey','RAMSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:46','1900-01-01 00:00:00',1,0,1),(22554,'8769','Ramsgate','RAMSGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22555,'34297','Ramsgate','RAMSGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22556,'10951','Ramsgrange','RAMSGRANGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22557,'36675','Ramundberget','RAMUNDBERGET',NULL,'','Sweden','',0,0,209,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22558,'35429','Ranakpur','RANAKPUR',NULL,'','India','',2,0,101,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22559,'42850','Ranau','RANAU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22560,'23525','Rancagua','RANCAGUA',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22561,'32125','Ranchester','RANCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22562,'10584','Ranchi','RANCHI',NULL,'','India','Ranchi',48,0,101,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22563,'1818','Rancho','RANCHO',NULL,'','United States','',0,0,231,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22564,'28557','Ranchos De Taos','RANCHOS DE TAOS',NULL,'','United States','',0,0,231,'2016-10-17 11:43:52','1900-01-01 00:00:00',1,0,1),(22565,'37366','Randa','RANDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:52','1900-01-01 00:00:00',1,0,1),(22566,'39104','Randaberg','RANDABERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22567,'21771','Randallstown','RANDALLSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22568,'5340','Randan','RANDAN',NULL,'','France','',0,0,76,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22569,'40730','Randazzo','RANDAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22570,'32596','Randburg','RANDBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22571,'2156','Randers','RANDERS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22572,'31597','Randle','RANDLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22573,'21504','Randolph','RANDOLPH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22574,'34298','Randwick','RANDWICK',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:55','1900-01-01 00:00:00',1,0,1),(22575,'5418','Ranes','RANES',NULL,'','France','',0,0,76,'2016-10-17 11:43:55','1900-01-01 00:00:00',1,0,1),(22576,'42102','Rangali','RANGALI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:43:56','1900-01-01 00:00:00',1,0,1),(22577,'39442','Rangeley','RANGELEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:56','1900-01-01 00:00:00',1,0,1),(22578,'33527','Rangely','RANGELY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22579,'8770','Rangeworthy','RANGEWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22580,'36542','Rangiroa','RANGIROA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22581,'24761','Rangpur','RANGPUR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22582,'37171','Ranikhet','RANIKHET',NULL,'','India','Ranikhet',9,0,101,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22583,'37165','Ranipet','RANIPET',NULL,'','INDIA','',0,0,101,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22584,'25805','Rankin Inlet','RANKIN INLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22585,'24523','Rankweil','RANKWEIL',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22586,'13759','Rannalhi','RANNALHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22587,'41440','Ranohira','RANOHIRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22588,'36778','Ranong','RANONG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22589,'38706','Ransbach-baumbach','RANSBACH-BAUMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22590,'10317','Ransiki','RANSIKI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22591,'25882','Ransol','RANSOL',NULL,'','Andorra','',0,0,5,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22592,'10362','Rantepao','RANTEPAO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22593,'43321','Ranthambore','RANTHAMBORE',NULL,'','India','',0,0,101,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22594,'20723','Rantoul','RANTOUL',NULL,'','United States','',0,0,231,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22595,'733','Rantum','RANTUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22596,'12362','Rapale','RAPALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22597,'12363','Rapallo','RAPALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22598,'31207','Raphine','RAPHINE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:01','1900-01-01 00:00:00',1,0,1),(22599,'39679','Rapolano Terme','RAPOLANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:02','1900-01-01 00:00:00',1,0,1),(22600,'12364','Rapolla','RAPOLLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:02','1900-01-01 00:00:00',1,0,1),(22601,'23320','Rapperswil','RAPPERSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22603,'28397','Raritan','RARITAN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22604,'24076','Rarotonga','RAROTONGA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22605,'25909','Ras Al Khaimah','RAS AL KHAIMAH',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22606,'34975','Ras El Sudr','RAS EL SUDR',NULL,'','Egypt','',0,0,65,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22607,'3009','Rascafria','RASCAFRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22608,'14819','Rasta','RASTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22609,'38918','Rasun Di Sopra','RASUN DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22610,'42727','Ratanakiri','RATANAKIRI',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22611,'40403','Ratbor','RATBOR',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22612,'10462','Rathdana','RATHDANA',NULL,'','India','',0,0,101,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22613,'687','Rathen','RATHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22614,'10899','Rathkeale','RATHKEALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22615,'10853','Rathmines','RATHMINES',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22616,'10825','Rathmullan','RATHMULLAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22617,'557','Ratingen','RATINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22618,'10585','Ratnagiri','RATNAGIRI',NULL,'','India','Ratnagiri',5,0,101,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22619,'37966','Rattvik','RATTVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22620,'306','Rauenberg','RAUENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22621,'11012','Raufarhofn','RAUFARHOFN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22622,'3987','Rauha','RAUHA',NULL,'','Finland','',0,0,75,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22623,'15009','Rauland','RAULAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22624,'4027','Rauma','RAUMA',NULL,'','Finland','',0,0,75,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22625,'15158','Raumati Beach','RAUMATI BEACH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22626,'469','Raunheim','RAUNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22627,'38107','Rauris','RAURIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22628,'12365','Ravello','RAVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22629,'7270','Ravelston','RAVELSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22630,'8771','Ravenglass','RAVENGLASS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22631,'29507','Ravenna','RAVENNA',NULL,'','United States','',0,0,231,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22632,'12733','Ravenna','RAVENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22633,'39236','Ravensbourne','RAVENSBOURNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22634,'8772','Ravenscar','RAVENSCAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22635,'39013','Ravensdale','RAVENSDALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22636,'8773','Ravenstonedale','RAVENSTONEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22637,'32036','Ravenswood','RAVENSWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22638,'2324','Ravnsbaek','RAVNSBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22639,'43616','Rawa Mazowiecka','RAWA MAZOWIECKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22640,'42032','Rawai','RAWAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22641,'15324','Rawala Kot','RAWALA KOT',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22642,'15325','Rawalpindi','RAWALPINDI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22643,'32126','Rawlins','RAWLINS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22644,'41756','Rawson','RAWSON',NULL,'','Argentina','',0,0,10,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22645,'8774','Rayleigh','RAYLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22646,'31598','Raymond','RAYMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:44:11','1900-01-01 00:00:00',1,0,1),(22647,'34299','Raymond Terrace','RAYMOND TERRACE',NULL,'','Australia','Raymond Terrace',0,0,13,'2016-10-17 11:44:11','1900-01-01 00:00:00',1,0,1),(22648,'30878','Raymondville','RAYMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:12','1900-01-01 00:00:00',1,0,1),(22649,'21251','Rayne','RAYNE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:12','1900-01-01 00:00:00',1,0,1),(22650,'21505','Raynham','RAYNHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:44:13','1900-01-01 00:00:00',1,0,1),(22651,'4466','Rayol-canadel-sur-mer','RAYOL-CANADEL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:44:13','1900-01-01 00:00:00',1,0,1),(22653,'27753','Raytown','RAYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:14','1900-01-01 00:00:00',1,0,1),(22654,'5243','Razac-sur-l\'isle','RAZAC-SUR-L\'ISLE',NULL,'','France','',0,0,76,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22655,'42251','Razgrad','RAZGRAD',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22656,'24783','Razlog','RAZLOG',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22657,'13092','Reading','READING',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22658,'8775','Reading','READING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22659,'30143','Reading','READING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22660,'21507','Readville','READVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22661,'17531','Real De San Carlos','REAL DE SAN CARLOS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22662,'40314','Realmont','REALMONT',NULL,'','France','',0,0,76,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22663,'12366','Realmonte','REALMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22664,'23321','Realp','REALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22665,'36433','Rebak Besar Island','REBAK BESAR ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22666,'2248','Rebild','REBILD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22667,'13333','Rebun','REBUN',NULL,'','Japan','',0,0,110,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22668,'12367','Recanati','RECANATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22669,'37239','Recco','RECCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22670,'35404','Recess','RECESS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22671,'1906','Rechenberg-bienenmuhle','RECHENBERG-BIENENMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22672,'25045','Recife','RECIFE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22673,'23463','Reckingen','RECKINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22674,'22386','Recklinghausen','RECKLINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22675,'23550','Recoleta','RECOLETA',NULL,'','Chile','',0,0,45,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22676,'6191','Recques-sur-hem','RECQUES-SUR-HEM',NULL,'','France','',0,0,76,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22677,'1161','Red Centre - Northern Territory','RED CENTRE - NORTHERN TERRITORY',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 11:44:21','1900-01-01 00:00:00',1,0,1),(22678,'1737','Red Sea','RED SEA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:44:25','1900-01-01 00:00:00',1,0,1),(22679,'40065','Reda','REDA',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:25','1900-01-01 00:00:00',1,0,1),(22680,'39902','Redagno','REDAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22681,'19901','Redan','REDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22682,'14325','Redang Island','REDANG ISLAND',NULL,'','Malaysia','Redang Island',0,0,132,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22683,'8776','Redbourn','REDBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22684,'8777','Redbridge','REDBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22685,'8778','Redcar','REDCAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22686,'32323','Redcliffe','REDCLIFFE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22687,'26745','Redcliffe','REDCLIFFE',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22688,'37568','Redcross','REDCROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22689,'18817','Redding','REDDING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22690,'8779','Redditch','REDDITCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22691,'24997','Redencao','REDENCAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22692,'40282','Redentora','REDENTORA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22693,'34300','Redfern','REDFERN',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22694,'33045','Redfield','REDFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:29','1900-01-01 00:00:00',1,0,1),(22695,'22220','Redford','REDFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:29','1900-01-01 00:00:00',1,0,1),(22696,'31867','Redgranite','REDGRANITE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22697,'8780','Redhill','REDHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22698,'6058','Reding','REDING',NULL,'','France','',0,0,76,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22699,'19587','Redington Beach','REDINGTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:31','1900-01-01 00:00:00',1,0,1),(22700,'26746','Redland Bay','REDLAND BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:31','1900-01-01 00:00:00',1,0,1),(22701,'18819','Redlands','REDLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22702,'8781','Redlynch','REDLYNCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22703,'26747','Redlynch','REDLYNCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22704,'29738','Redmond','REDMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22705,'40785','Redondo','REDONDO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22706,'18820','Redondo Beach','REDONDO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22707,'38433','Redruth','REDRUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:34','1900-01-01 00:00:00',1,0,1),(22708,'33529','Redstone','REDSTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:34','1900-01-01 00:00:00',1,0,1),(22709,'18821','Redway','REDWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:35','1900-01-01 00:00:00',1,0,1),(22710,'18822','Redwood City','REDWOOD CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:35','1900-01-01 00:00:00',1,0,1),(22711,'43287','Redworth','REDWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:36','1900-01-01 00:00:00',1,0,1),(22712,'14820','Reed','REED',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:36','1900-01-01 00:00:00',1,0,1),(22713,'18823','Reedley','REEDLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:37','1900-01-01 00:00:00',1,0,1),(22714,'27754','Reeds Spring','REEDS SPRING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:37','1900-01-01 00:00:00',1,0,1),(22715,'31868','Reedsburg','REEDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:44:38','1900-01-01 00:00:00',1,0,1),(22716,'29739','Reedsport','REEDSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:44:38','1900-01-01 00:00:00',1,0,1),(22717,'30146','Reedsville','REEDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:39','1900-01-01 00:00:00',1,0,1),(22718,'8782','Reepham','REEPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:39','1900-01-01 00:00:00',1,0,1),(22719,'43651','Refer','REFER',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22720,'39520','Reform','REFORM',NULL,'','United States','',0,0,231,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22721,'13855','Reforma - Zona Rosa','REFORMA - ZONA ROSA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22722,'30880','Refugio','REFUGIO',NULL,'','United States','',0,0,231,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22723,'35627','Regello','REGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22724,'3584','Regencos','REGENCOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22725,'307','Regensburg','REGENSBURG',NULL,'','Germany','Regensburg',0,0,83,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22726,'23322','Regensdorf','REGENSDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22727,'12368','Reggello','REGGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22728,'12369','Reggiolo','REGGIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22729,'31208','Regina','REGINA',NULL,'','United States','',0,0,231,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22730,'1643','Regina','REGINA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22731,'22962','Regina','REGINA',NULL,'','Canada','',0,0,39,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22732,'19902','Register','REGISTER',NULL,'','United States','',0,0,231,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22733,'43200','Reguengos De Monsaraz','REGUENGOS DE MONSARAZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22734,'44084','Rehainviller','REHAINVILLER',NULL,'','France','',0,0,76,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22735,'40781','Rehau','REHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22736,'21508','Rehoboth','REHOBOTH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22737,'308','Reichelshofen','REICHELSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:45','1900-01-01 00:00:00',1,0,1),(22738,'27113','Reichenau','REICHENAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22739,'1907','Reichenbach','REICHENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22740,'40198','Reichenfels','REICHENFELS',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22741,'37762','Reichenschwand','REICHENSCHWAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22742,'38640','Reid','REID',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:47','1900-01-01 00:00:00',1,0,1),(22743,'33981','Reidsville','REIDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:47','1900-01-01 00:00:00',1,0,1),(22744,'8783','Reigate','REIGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22745,'39160','Reignac-sur-indre','REIGNAC-SUR-INDRE',NULL,'','France','',0,0,76,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22746,'22621','Reilingen','REILINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22747,'16686','Reimersholme','REIMERSHOLME',NULL,'','Sweden','',0,0,209,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22748,'4996','Reims','REIMS',NULL,'','France','',0,0,76,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22749,'734','Reinbek','REINBEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22750,'22622','Reinhardsachsen','REINHARDSACHSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22751,'30147','Reinholds','REINHOLDS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22752,'2011','Reinickendorf','REINICKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:52','1900-01-01 00:00:00',1,0,1),(22753,'3136','Reinosa','REINOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:55','1900-01-01 00:00:00',1,0,1),(22754,'27272','Reinsehlen','REINSEHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:56','1900-01-01 00:00:00',1,0,1),(22755,'2086','Reinstorf','REINSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:56','1900-01-01 00:00:00',1,0,1),(22756,'21772','Reisterstown','REISTERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:57','1900-01-01 00:00:00',1,0,1),(22757,'38945','Rekowo Gorne','REKOWO GORNE',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22758,'3779','Relleu','RELLEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22759,'735','Rellingen','RELLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22760,'655','Remagen','REMAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22761,'6313','Remaisnil','REMAISNIL',NULL,'','France','',0,0,76,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22762,'14476','Rembrandtplein','REMBRANDTPLEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22763,'13653','Remich','REMICH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22764,'20969','Remington','REMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22765,'559','Remscheid','REMSCHEID',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22766,'22387','Remshalden','REMSHALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22767,'15159','Remuera','REMUERA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22768,'14893','Rena','RENA',NULL,'','Norway','',0,0,164,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22769,'23503','Renaca','RENACA',NULL,'','Chile','',0,0,45,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22770,'23551','Renca','RENCA',NULL,'','Chile','',0,0,45,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22771,'25862','Rendezvous Bay','RENDEZVOUS BAY',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22772,'41534','Renedo De Cabuerniga','RENEDO DE CABUERNIGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22773,'23323','Renens','RENENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22774,'14699','Renesse','RENESSE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22775,'34623','Renfrew','RENFREW',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22776,'8784','Renfrew','RENFREW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22777,'7271','Renfrewshire','RENFREWSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22778,'33724','Renfro Valley','RENFRO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22779,'7272','Renishaw','RENISHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22780,'14763','Renkum','RENKUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22781,'26818','Renmark','RENMARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22782,'16555','Rennell Island','RENNELL ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22783,'30881','Renner','RENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22784,'41347','Rennes-chantepie','RENNES-CHANTEPIE',NULL,'','France','',0,0,76,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22785,'27085','Rennweg','RENNWEG',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:04','1900-01-01 00:00:00',1,0,1),(22786,'30148','Renovo','RENOVO',NULL,'','United States','',0,0,231,'2016-10-17 11:45:05','1900-01-01 00:00:00',1,0,1),(22787,'20970','Rensselaer','RENSSELAER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:06','1900-01-01 00:00:00',1,0,1),(22788,'31600','Renton','RENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22789,'10964','Renvyle','RENVYLE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22790,'39711','Reocin','REOCIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22791,'22836','Repentigny','REPENTIGNY',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22792,'16248','Repino','REPINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22793,'6691','Replonges','REPLONGES',NULL,'','France','',0,0,76,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22794,'27755','Republic','REPUBLIC',NULL,'','United States','',0,0,231,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22795,'25806','Repulse Bay','REPULSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22796,'9912','Repulse Bay','REPULSE BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22797,'3780','Requena','REQUENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22798,'38199','Rerik','RERIK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22799,'33983','Research Triangle Park','RESEARCH TRIANGLE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:10','1900-01-01 00:00:00',1,0,1),(22800,'18824','Reseda','RESEDA',NULL,'','United States','',0,0,231,'2016-10-17 11:45:10','1900-01-01 00:00:00',1,0,1),(22801,'25144','Resende','RESENDE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22802,'26546','Reservoir','RESERVOIR',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22803,'26092','Resistencia','RESISTENCIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22804,'16238','Resita','RESITA',NULL,'','Romania','',0,0,179,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22805,'25807','Resolute','RESOLUTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22806,'7273','Restalrig','RESTALRIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22807,'15830','Restelo','RESTELO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22808,'9272','Retford','RETFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22809,'9588','Rethimnon','RETHIMNON',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22810,'43462','Rethymno-adelianos Campos','RETHYMNO-ADELIANOS CAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22811,'43463','Rethymno-skaleta','RETHYMNO-SKALETA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22812,'24613','Retie','RETIE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22813,'2769','Retiro - Prado','RETIRO - PRADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22814,'310','Rettenbach','RETTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22815,'27114','Retz','RETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22816,'4985','Reunion','REUNION',NULL,'','France','',0,0,76,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22817,'16187','Reunion','REUNION',NULL,'','Reunion','',0,0,178,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22818,'3585','Reus','REUS',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22819,'23070','Reussbuehl','REUSSBUEHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22820,'24524','Reuthe','REUTHE',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22821,'22623','Reutlingen','REUTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22822,'16376','Reutov','REUTOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22823,'24491','Reutte','REUTTE',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22824,'6126','Revel','REVEL',NULL,'','France','',0,0,76,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22825,'25525','Revelstoke','REVELSTOKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22826,'21509','Revere','REVERE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22827,'3137','Revilla','REVILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22828,'12911','Revine Lago','REVINE LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22829,'13985','Revolucion','REVOLUCION',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22830,'13856','Revolución','REVOLUCIÓN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22831,'10586','Rewa','REWA',NULL,'','India','Rewa',15,0,101,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22832,'40064','Rewal','REWAL',NULL,'','Poland','',0,0,174,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22833,'38703','Rewari','REWARI',NULL,'','India','Rewari',20,0,101,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22834,'20391','Rexburg','REXBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:16','1900-01-01 00:00:00',1,0,1),(22835,'34624','Rexdale','REXDALE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22836,'10991','Reydarfjoerdur','REYDARFJOERDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22837,'10992','Reydarfjordur','REYDARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22838,'11005','Reykholt','REYKHOLT',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22839,'11009','Reykjavik','REYKJAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22840,'26470','Reynella','REYNELLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22841,'29509','Reynoldsburg','REYNOLDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22842,'8785','Reynoldston','REYNOLDSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22843,'14110','Reynosa','REYNOSA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22844,'13669','Rezekne','REZEKNE',NULL,'','Latvia','',0,0,119,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22845,'12371','Rezzato','REZZATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22846,'8786','Rhayader','RHAYADER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22847,'560','Rheda-wiedenbruck','RHEDA-WIEDENBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22848,'40313','Rheden','RHEDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22849,'40570','Rheinau','RHEINAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22850,'23324','Rheinau','RHEINAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22851,'1692','Rheindahlen','RHEINDAHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22852,'39526','Rheine','RHEINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22853,'40643','Rheinfelden','RHEINFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22854,'23429','Rheinfelden','RHEINFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22855,'800','Rheinsberg','RHEINSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22856,'801','Rheinsberg-glienicke','RHEINSBERG-GLIENICKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22857,'29071','Rhinebeck','RHINEBECK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22858,'29072','Rhinecliff','RHINECLIFF',NULL,'','United States','',0,0,231,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22859,'22389','Rhinehesse - Palatinate','RHINEHESSE - PALATINATE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:22','1900-01-01 00:00:00',1,0,1),(22860,'39512','Rhineland','RHINELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:22','1900-01-01 00:00:00',1,0,1),(22861,'31869','Rhinelander','RHINELANDER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22862,'12372','Rho','RHO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22863,'40112','Rhodes','RHODES',NULL,'','South Africa','Rhodes',0,0,195,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22864,'36357','Rhodes-afandou','RHODES-AFANDOU',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22865,'35228','Rhodes-faliraki','RHODES-FALIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22866,'35236','Rhodes-ialyssos','RHODES-IALYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22867,'35239','Rhodes-ixia','RHODES-IXIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22868,'35244','Rhodes-kalithea','RHODES-KALITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22869,'35252','Rhodes-kremasti','RHODES-KREMASTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22870,'35257','Rhodes-lindos','RHODES-LINDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22871,'35288','Rhodes-rhodes Town','RHODES-RHODES TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22872,'24784','Rhodopes','RHODOPES',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22873,'30882','Rhome','RHOME',NULL,'','United States','',0,0,231,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22874,'8787','Rhondda','RHONDDA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22875,'8788','Rhoose','RHOOSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22876,'9335','Rhos On Sea','RHOS ON SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22877,'14326','Rhu Tapai','RHU TAPAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22878,'41094','Rhyl','RHYL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22879,'38537','Riace','RIACE',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22880,'3586','Rialp','RIALP',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22881,'18825','Rialto','RIALTO',NULL,'','United States','',0,0,231,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22882,'40526','Rianxo','RIANXO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22883,'10258','Riau','RIAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22884,'3478','Riaza','RIAZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22885,'3722','Ribabellosa','RIBABELLOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22886,'39730','Ribadedeva','RIBADEDEVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22887,'3587','Ribadeo','RIBADEO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22888,'3105','Ribadesella','RIBADESELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22889,'3066','Ribaforada','RIBAFORADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22890,'16648','Ribcev Laz','RIBCEV LAZ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22891,'2266','Ribe','RIBE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22892,'6314','Ribeauville','RIBEAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22893,'3683','Ribeira','RIBEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22894,'25215','Ribeirao Preto','RIBEIRAO PRETO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22895,'39710','Ribera','RIBERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22896,'5244','Riberac','RIBERAC',NULL,'','France','',0,0,76,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22897,'24947','Riberalta','RIBERALTA',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22898,'38220','Ribes De Freser','RIBES DE FRESER',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22899,'1847','Ribnitz','RIBNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22900,'12374','Ricadi','RICADI',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22901,'24320','Ricany','RICANY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22902,'15160','Riccarton','RICCARTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22903,'11404','Riccione','RICCIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:31','1900-01-01 00:00:00',1,0,1),(22904,'38737','Riccò Del Golfo Di Spezia','RICCÒ DEL GOLFO DI SPEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:31','1900-01-01 00:00:00',1,0,1),(22905,'32388','Richards Bay','RICHARDS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22906,'16518','Richard-toll','RICHARD-TOLL',NULL,'','Senegal','',0,0,187,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22907,'30394','Richburg','RICHBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22908,'5675','Richelieu','RICHELIEU',NULL,'','France','',0,0,76,'2016-10-17 11:45:34','1900-01-01 00:00:00',1,0,1),(22909,'29510','Richfield','RICHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:34','1900-01-01 00:00:00',1,0,1),(22910,'31383','Richford','RICHFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:36','1900-01-01 00:00:00',1,0,1),(22911,'22221','Richland','RICHLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:37','1900-01-01 00:00:00',1,0,1),(22912,'31210','Richlands','RICHLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:45:39','1900-01-01 00:00:00',1,0,1),(22913,'31211','Richmond','RICHMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:40','1900-01-01 00:00:00',1,0,1),(22914,'26862','Richmond','RICHMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:41','1900-01-01 00:00:00',1,0,1),(22915,'42375','Richmond Upon Thames','RICHMOND UPON THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:48','1900-01-01 00:00:00',1,0,1),(22916,'29074','Richmondville','RICHMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:48','1900-01-01 00:00:00',1,0,1),(22917,'20725','Richton Park','RICHTON PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:49','1900-01-01 00:00:00',1,0,1),(22918,'33726','Richwood','RICHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:49','1900-01-01 00:00:00',1,0,1),(22919,'8791','Rickmansworth','RICKMANSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:50','1900-01-01 00:00:00',1,0,1),(22920,'16841','Riddarholmen','RIDDARHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22921,'43898','Ridderkerk','RIDDERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22922,'18828','Ridgecrest','RIDGECREST',NULL,'','United States','',0,0,231,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22923,'27759','Ridgedale','RIDGEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:52','1900-01-01 00:00:00',1,0,1),(22924,'28399','Ridgefield','RIDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:52','1900-01-01 00:00:00',1,0,1),(22925,'27907','Ridgeland','RIDGELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:54','1900-01-01 00:00:00',1,0,1),(22926,'21774','Ridgely','RIDGELY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:54','1900-01-01 00:00:00',1,0,1),(22927,'30396','Ridgeway','RIDGEWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:55','1900-01-01 00:00:00',1,0,1),(22928,'29075','Ridgewood','RIDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:56','1900-01-01 00:00:00',1,0,1),(22929,'33531','Ridgway','RIDGWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:57','1900-01-01 00:00:00',1,0,1),(22930,'38551','Ried Im Innkreis','RIED IM INNKREIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:57','1900-01-01 00:00:00',1,0,1),(22931,'23071','Riederalp','RIEDERALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22932,'2045','Riedstadt','RIEDSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22933,'30150','Riegelsville','RIEGELSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22934,'38894','Riemst','RIEMST',NULL,'','Belgium','',0,0,21,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22935,'22390','Riesa','RIESA',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22936,'23072','Riesbach','RIESBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22937,'2038','Riesenbeck','RIESENBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22938,'12375','Rieti','RIETI',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22939,'24492','Rietz','RIETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22940,'6127','Rieupeyroux','RIEUPEYROUX',NULL,'','France','',0,0,76,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22941,'40569','Rieux-minervois','RIEUX-MINERVOIS',NULL,'','France','',0,0,76,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22942,'24525','Riezlern','RIEZLERN',NULL,'','Austria','',0,0,14,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22943,'24034','Rifflart','RIFFLART',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22944,'33532','Rifle','RIFLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22945,'13670','Riga','RIGA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22946,'22837','Rigaud','RIGAUD',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22947,'20393','Rigby','RIGBY',NULL,'','United States','',0,0,231,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22948,'20394','Riggins','RIGGINS',NULL,'','United States','',0,0,231,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22949,'865','Rigi-kaltbad','RIGI-KALTBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22950,'25678','Rigolet','RIGOLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22951,'11405','Rigomagno','RIGOMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22952,'13760','Rihiveli','RIHIVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22953,'3918','Riihimaki','RIIHIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22954,'10036','Rijeka','RIJEKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22955,'14756','Rijssen','RIJSSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22956,'14730','Rijswijk','RIJSWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22957,'40798','Riksgransen','RIKSGRANSEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22958,'4468','Rillieux-la-pape','RILLIEUX-LA-PAPE',NULL,'','France','',0,0,76,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22959,'15414','Rimac','RIMAC',NULL,'','Peru','',0,0,172,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22960,'311','Rimbach','RIMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22961,'25352','Rimbey','RIMBEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22962,'16842','Rimbo','RIMBO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22963,'22838','Rimouski','RIMOUSKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22964,'18196','Rimrock','RIMROCK',NULL,'','United States','',0,0,231,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22965,'16649','Rimske Toplice','RIMSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22966,'312','Rimsting','RIMSTING',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22967,'15763','Rincon','RINCON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22968,'37244','Rincon','RINCON',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22969,'19906','Rincon','RINCON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22970,'13857','Rincon De Guayabitos','RINCON DE GUAYABITOS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22971,'35045','Rincon De La Victori','RINCON DE LA VICTORI',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22972,'26051','Rincon De Los Sauces','RINCON DE LOS SAUCES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22973,'32757','Rindge','RINDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22974,'10754','Ring Of Kerry','RING OF KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22975,'13640','Ringaudai','RINGAUDAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22976,'14950','Ringebu','RINGEBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22977,'23325','Ringgenberg','RINGGENBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22978,'19907','Ringgold','RINGGOLD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22979,'23628','Ringha','RINGHA',NULL,'','China','',0,0,46,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22980,'16556','Ringi Cove','RINGI COVE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22981,'2278','Ringkobing','RINGKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22982,'14365','Ringlet','RINGLET',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22983,'8792','Ringmer','RINGMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22984,'10854','Ringsend','RINGSEND',NULL,'','Ireland','',0,0,105,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22985,'22624','Ringsheim','RINGSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22986,'2331','Ringsted','RINGSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22987,'28401','Ringwood','RINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22988,'8793','Ringwood','RINGWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22989,'26370','Ringwood','RINGWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22990,'2299','Rinkenaes','RINKENAES',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22991,'37401','Rinn','RINN',NULL,'','Austria','',0,0,14,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22992,'27273','Rinteln','RINTELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22993,'40258','Río Claro','RÍO CLARO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22994,'15764','Rio Grande','RIO GRANDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:46:11','1900-01-01 00:00:00',1,0,1),(22995,'2369','Rio San Juan','RIO SAN JUAN',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22996,'34969','Riobamba','RIOBAMBA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22997,'41524','Riofrio','RIOFRIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22998,'24110','Riohacha','RIOHACHA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(22999,'15430','Rioja','RIOJA',NULL,'','Peru','',0,0,172,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23000,'12830','Riola Sardo','RIOLA SARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23001,'12378','Riolo Terme','RIOLO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23002,'5957','Riols','RIOLS',NULL,'','France','',0,0,76,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23003,'5020','Riom','RIOM',NULL,'','France','',0,0,76,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23004,'12379','Riomaggiore','RIOMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23005,'2771','Riomar','RIOMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23006,'4469','Riom-es-montagnes','RIOM-ES-MONTAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23007,'24095','Rionegro','RIONEGRO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23008,'3106','Riospaso','RIOSPASO',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23009,'39421','Ripalimosani','RIPALIMOSANI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:16','1900-01-01 00:00:00',1,0,1),(23010,'29076','Ripley','RIPLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:46:16','1900-01-01 00:00:00',1,0,1),(23011,'8794','Ripley','RIPLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:17','1900-01-01 00:00:00',1,0,1),(23012,'3588','Ripollet','RIPOLLET',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:18','1900-01-01 00:00:00',1,0,1),(23013,'8795','Ripon','RIPON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:19','1900-01-01 00:00:00',1,0,1),(23014,'18830','Ripon','RIPON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:19','1900-01-01 00:00:00',1,0,1),(23015,'39061','Riposto','RIPOSTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23016,'6787','Riquewihr','RIQUEWIHR',NULL,'','France','',0,0,76,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23017,'8796','Risca','RISCA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23018,'10587','Rishikesh','RISHIKESH',NULL,'','India','Rishikesh',9,0,101,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23019,'13186','Rishiri','RISHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23020,'10696','Rishra','RISHRA',NULL,'','India','',0,0,101,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23021,'39336','Rising Fawn','RISING FAWN',NULL,'','United States','',0,0,231,'2016-10-17 11:46:21','1900-01-01 00:00:00',1,0,1),(23022,'40428','Risor','RISOR',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:21','1900-01-01 00:00:00',1,0,1),(23023,'4841','Risoul','RISOUL',NULL,'','France','',0,0,76,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23024,'43310','Ritten','RITTEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23025,'31604','Ritzville','RITZVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23026,'43090','Riudecaneys','RIUDECANEYS',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23027,'3589','Riudellots De La Selva','RIUDELLOTS DE LA SELVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23028,'42003','Rivabella Di Rimini','RIVABELLA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23029,'12383','Rivalta Di Torino','RIVALTA DI TORINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23030,'38060','Rivarolo Canavese','RIVAROLO CANAVESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23031,'14448','Rivas','RIVAS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23032,'42004','Rivazzurra Di Rimini','RIVAZZURRA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23033,'6360','Rivedoux-plage','RIVEDOUX-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23034,'17539','Rivera','RIVERA',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:46:26','1900-01-01 00:00:00',1,0,1),(23035,'18831','Riverbank','RIVERBANK',NULL,'','United States','',0,0,231,'2016-10-17 11:46:26','1900-01-01 00:00:00',1,0,1),(23036,'29077','Riverdale','RIVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:27','1900-01-01 00:00:00',1,0,1),(23037,'23629','Riverfront - Shamian Island','RIVERFRONT - SHAMIAN ISLAND',NULL,'','China','',0,0,46,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23038,'29078','Riverhead','RIVERHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23039,'25527','Rivers Inlet','RIVERS INLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23040,'27760','Riverside','RIVERSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:29','1900-01-01 00:00:00',1,0,1),(23041,'33391','Riverton','RIVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:32','1900-01-01 00:00:00',1,0,1),(23042,'25623','Riverton','RIVERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:33','1900-01-01 00:00:00',1,0,1),(23043,'26311','Rivervale','RIVERVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:33','1900-01-01 00:00:00',1,0,1),(23044,'22222','Riverview','RIVERVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:46:34','1900-01-01 00:00:00',1,0,1),(23045,'20728','Riverwoods','RIVERWOODS',NULL,'','United States','',0,0,231,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23046,'5958','Rivesaltes','RIVESALTES',NULL,'','France','',0,0,76,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23047,'30889','Riviera','RIVIERA',NULL,'','United States','',0,0,231,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23048,'14080','Riviera Maya','RIVIERA MAYA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:46:37','1900-01-01 00:00:00',1,0,1),(23049,'22839','Riviere Du Loup','RIVIERE DU LOUP',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:37','1900-01-01 00:00:00',1,0,1),(23050,'14270','Riviere Noire','RIVIERE NOIRE',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23051,'22841','Riviere-du-loup','RIVIERE-DU-LOUP',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23052,'11409','Rivisondoli','RIVISONDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23053,'12384','Rivoli','RIVOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23054,'32597','Rivonia','RIVONIA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23055,'24643','Rixensart','RIXENSART',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23056,'6788','Rixheim','RIXHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23057,'16483','Riyadh','RIYADH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23058,'32354','Riyan','RIYAN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23059,'17356','Rize','RIZE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23060,'23930','Rizhao','RIZHAO',NULL,'','China','',0,0,46,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23061,'14778','Rjukan','RJUKAN',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23062,'32228','Road Town','ROAD TOWN',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23063,'6692','Roanne','ROANNE',NULL,'','France','',0,0,76,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23064,'17944','Roanoke','ROANOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:40','1900-01-01 00:00:00',1,0,1),(23065,'9968','Roatan','ROATAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23066,'27502','Robbinsdale','ROBBINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23067,'33987','Robbinsville','ROBBINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23068,'41799','Robecchetto Con Induno','ROBECCHETTO CON INDUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23069,'39325','Robertson','ROBERTSON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23070,'26749','Robertson','ROBERTSON',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23071,'34412','Robertville','ROBERTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23072,'24679','Robertville','ROBERTVILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23073,'22842','Roberval','ROBERVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23074,'38680','Robina','ROBINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23075,'26312','Robinhood','ROBINHOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23076,'20729','Robinson','ROBINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23077,'36212','Robinson Crusoe Isl','ROBINSON CRUSOE ISL',NULL,'','Fiji','',0,0,74,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23078,'43815','Robinson Crusoe Island','ROBINSON CRUSOE ISLAND',NULL,'','Chile','',0,0,45,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23079,'27909','Robinsonville','ROBINSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:46','1900-01-01 00:00:00',1,0,1),(23080,'26313','Robinvale','ROBINVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:46','1900-01-01 00:00:00',1,0,1),(23081,'27911','Robisonville','ROBISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23082,'41939','Robledillo De Gata','ROBLEDILLO DE GATA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23083,'3010','Robledo De Chavela','ROBLEDO DE CHAVELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23084,'25624','Roblin','ROBLIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23085,'25528','Robson Street - West End','ROBSON STREET - WEST END',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23086,'30891','Robstown','ROBSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:46:48','1900-01-01 00:00:00',1,0,1),(23087,'4984','Rocamadour','ROCAMADOUR',NULL,'','France','',0,0,76,'2016-10-17 11:46:48','1900-01-01 00:00:00',1,0,1),(23088,'40731','Roccacasale','ROCCACASALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23089,'12385','Roccalumera','ROCCALUMERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23090,'12386','Roccamena','ROCCAMENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23091,'12387','Roccaraso','ROCCARASO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23092,'40750','Roccasecca','ROCCASECCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23093,'12388','Roccastrada','ROCCASTRADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23094,'12389','Roccatederighi','ROCCATEDERIGHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23095,'12391','Rocchetta Nervina','ROCCHETTA NERVINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23096,'8797','Rocester','ROCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23097,'8798','Rochdale','ROCHDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23098,'31605','Roche Harbor','ROCHE HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23099,'5676','Rochecorbon','ROCHECORBON',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23100,'24712','Rochefort','ROCHEFORT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23101,'5341','Rochefort','ROCHEFORT',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23102,'5595','Rochefort-en-terre','ROCHEFORT-EN-TERRE',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23103,'40067','Rochefort-sur-nenon','ROCHEFORT-SUR-NENON',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23104,'6693','Rochegude','ROCHEGUDE',NULL,'','France','',0,0,76,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23105,'24703','Rochehaut','ROCHEHAUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23106,'5787','Rochejean','ROCHEJEAN',NULL,'','France','',0,0,76,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23107,'20730','Rochelle','ROCHELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23108,'44085','Rochemaure','ROCHEMAURE',NULL,'','France','',0,0,76,'2016-10-17 11:46:54','1900-01-01 00:00:00',1,0,1),(23109,'27761','Rocheport','ROCHEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:46:55','1900-01-01 00:00:00',1,0,1),(23110,'20731','Rochester','ROCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:46:55','1900-01-01 00:00:00',1,0,1),(23111,'8799','Rochester','ROCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:57','1900-01-01 00:00:00',1,0,1),(23112,'28561','Rociada','ROCIADA',NULL,'','United States','',0,0,231,'2016-10-17 11:47:00','1900-01-01 00:00:00',1,0,1),(23113,'24889','Rock Sound','ROCK SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:03','1900-01-01 00:00:00',1,0,1),(23114,'29514','Rockbridge','ROCKBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23115,'8801','Rockcliffe','ROCKCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23116,'30892','Rockdale','ROCKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23117,'34302','Rockdale','ROCKDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:07','1900-01-01 00:00:00',1,0,1),(23118,'20734','Rockford','ROCKFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:07','1900-01-01 00:00:00',1,0,1),(23119,'26750','Rockhampton','ROCKHAMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:08','1900-01-01 00:00:00',1,0,1),(23120,'26615','Rockingham','ROCKINGHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:08','1900-01-01 00:00:00',1,0,1),(23121,'33988','Rockingham','ROCKINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:47:09','1900-01-01 00:00:00',1,0,1),(23122,'34628','Rockland','ROCKLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:09','1900-01-01 00:00:00',1,0,1),(23123,'21511','Rockland','ROCKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:10','1900-01-01 00:00:00',1,0,1),(23124,'19594','Rockledge','ROCKLEDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:11','1900-01-01 00:00:00',1,0,1),(23125,'18834','Rocklin','ROCKLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:47:11','1900-01-01 00:00:00',1,0,1),(23126,'19909','Rockmart','ROCKMART',NULL,'','United States','',0,0,231,'2016-10-17 11:47:12','1900-01-01 00:00:00',1,0,1),(23127,'21778','Rockville','ROCKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:15','1900-01-01 00:00:00',1,0,1),(23128,'30894','Rockwall','ROCKWALL',NULL,'','United States','',0,0,231,'2016-10-17 11:47:16','1900-01-01 00:00:00',1,0,1),(23129,'30895','Rockwell','ROCKWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:47:17','1900-01-01 00:00:00',1,0,1),(23130,'30151','Rockwood','ROCKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:17','1900-01-01 00:00:00',1,0,1),(23131,'27764','Rocky Comfort','ROCKY COMFORT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:18','1900-01-01 00:00:00',1,0,1),(23132,'25353','Rocky Mountain House','ROCKY MOUNTAIN HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:20','1900-01-01 00:00:00',1,0,1),(23133,'33992','Rodanthe','RODANTHE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23134,'2309','Rodby','RODBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23135,'2310','Rodbyhavn','RODBYHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23136,'656','Rodder','RODDER',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23137,'471','Rodelheim','RODELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23138,'14501','Roden','RODEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23139,'657','Rodenbach','RODENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23140,'12392','Rodengo','RODENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23141,'18835','Rodeo','RODEO',NULL,'','United States','',0,0,231,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23142,'36087','Rodermark','RODERMARK',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23143,'4858','Rodez','RODEZ',NULL,'','France','',0,0,76,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23144,'2046','Rodgau','RODGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23145,'12393','Rodi Garganico','RODI GARGANICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23146,'12394','Rodigo','RODIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23147,'13575','Rodney Bay','RODNEY BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23148,'14257','Rodrigues Island','RODRIGUES ISLAND',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23149,'40669','Rodvig','RODVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23150,'28404','Roebling','ROEBLING',NULL,'','United States','',0,0,231,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23151,'22391','Roedermark','ROEDERMARK',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23152,'14577','Roermond','ROERMOND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23153,'14821','Roervik','ROERVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23154,'43945','Roeser','ROESER',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23155,'37900','Roesrath','ROESRATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23156,'313','Roetz','ROETZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23157,'14822','Rogaland','ROGALAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23158,'16650','Rogaska Slatina','ROGASKA SLATINA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23159,'27505','Rogers','ROGERS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23160,'25529','Rogers Pass','ROGERS PASS',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:27','1900-01-01 00:00:00',1,0,1),(23161,'17945','Rogersville','ROGERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:27','1900-01-01 00:00:00',1,0,1),(23162,'37980','Roggenburg','ROGGENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23163,'14926','Rognan','ROGNAN',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23164,'21779','Rognel Heights','ROGNEL HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23165,'38760','Rognonas','ROGNONAS',NULL,'','France','',0,0,76,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23166,'40025','Rogny-les-sept-ecluses','ROGNY-LES-SEPT-ECLUSES',NULL,'','France','',0,0,76,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23167,'29742','Rogue River','ROGUE RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23168,'10463','Rohet','ROHET',NULL,'','India','',0,0,101,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23169,'44155','Rohlstorf','ROHLSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23170,'18836','Rohnert Park','ROHNERT PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23171,'37345','Rohr','ROHR',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23172,'855','Rohrmoos-schladming','ROHRMOOS-SCHLADMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23173,'10640','Rohtak','ROHTAK',NULL,'','India','',0,0,101,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23175,'6361','Roiffe','ROIFFE',NULL,'','France','',0,0,76,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23176,'4470','Roissy','ROISSY',NULL,'','France','',0,0,76,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23177,'4786','Roissy-en-france','ROISSY-EN-FRANCE',NULL,'','France','',0,0,76,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23178,'3781','Rojales','ROJALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23179,'10089','Rojtokmuzsaj','ROJTOKMUZSAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23180,'10194','Rokot','ROKOT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23181,'5743','Rolampont','ROLAMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23182,'32952','Roland','ROLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23183,'2249','Rold','ROLD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23184,'3040','Roldan','ROLDAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23185,'23326','Rolle','ROLLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23186,'24840','Rolle Town','ROLLE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23187,'4787','Rolleboise','ROLLEBOISE',NULL,'','France','',0,0,76,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23188,'8802','Rollesby','ROLLESBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23189,'26429','Rolleston','ROLLESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23190,'24858','Rolleville','ROLLEVILLE',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23191,'20736','Rolling Meadows','ROLLING MEADOWS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23192,'30896','Rollingwood','ROLLINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23193,'26752','Roma','ROMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23194,'39217','Romainmotier','ROMAINMOTIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23195,'4788','Romainville','ROMAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23196,'36636','Roman','ROMAN',NULL,'','Romania','',0,0,179,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23197,'24593','Roman Pais','ROMAN PAIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23198,'4472','Romaneche Thorins','ROMANECHE THORINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23199,'23327','Romanshorn','ROMANSHORN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:38','1900-01-01 00:00:00',1,0,1),(23200,'6694','Romans-sur-isere','ROMANS-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 11:47:38','1900-01-01 00:00:00',1,0,1),(23201,'35532','Rome-genzano','ROME-GENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23202,'35581','Rome-monte Porzio Ca','ROME-MONTE PORZIO CA',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23203,'20737','Romeoville','ROMEOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23204,'40930','Romford','ROMFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23205,'43215','Romilla','ROMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23206,'5744','Romilly-sur-seine','ROMILLY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23207,'32041','Romney','ROMNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23208,'5677','Romorantin-lanthenay','ROMORANTIN-LANTHENAY',NULL,'','France','',0,0,76,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23209,'472','Romrod','ROMROD',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23210,'8803','Romsey','ROMSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23211,'22227','Romulus','ROMULUS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:43','1900-01-01 00:00:00',1,0,1),(23212,'31218','Ronald Reagan National Airport','RONALD REAGAN NATIONAL AIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:43','1900-01-01 00:00:00',1,0,1),(23213,'28015','Ronan','RONAN',NULL,'','United States','',0,0,231,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23214,'12912','Roncade','RONCADE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23215,'6362','Ronce-les-bains','RONCE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23216,'11412','Ronchi','RONCHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23217,'6192','Ronchin','RONCHIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23218,'12396','Ronciglione','RONCIGLIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23219,'23328','Ronco Bedretto','RONCO BEDRETTO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23220,'12734','Roncofreddo','RONCOFREDDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23221,'11413','Roncola','RONCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23222,'6193','Roncq','RONCQ',NULL,'','France','',0,0,76,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23223,'3011','Ronda','RONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23224,'25078','Rondonopolis','RONDONOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23225,'14165','Rongelap','RONGELAP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23226,'29085','Ronkonkoma','RONKONKOMA',NULL,'','United States','',0,0,231,'2016-10-17 11:47:47','1900-01-01 00:00:00',1,0,1),(23227,'30152','Ronks','RONKS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23228,'2165','Ronne','RONNE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23229,'16695','Ronneby','RONNEBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23230,'27274','Ronnenberg','RONNENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23231,'12397','Ronzone','RONZONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23232,'32598','Roodepoort','ROODEPOORT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23233,'42588','Roopangarh','ROOPANGARH',NULL,'','India','',0,0,101,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23234,'44221','Roorkee','ROORKEE',NULL,'','India','',0,0,101,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23235,'14610','Roosendaal','ROOSENDAAL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23236,'33392','Roosevelt','ROOSEVELT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23237,'10755','Rooskey','ROOSKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23238,'34303','Rooty Hill','ROOTY HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23239,'6516','Roquebilliere','ROQUEBILLIERE',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23240,'4848','Roquebrune Cap Martin','ROQUEBRUNE CAP MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23241,'4849','Roquebrune-cap-martin','ROQUEBRUNE-CAP-MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23242,'4473','Roquebrune-sur-argens','ROQUEBRUNE-SUR-ARGENS',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23243,'5245','Roquefort','ROQUEFORT',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23244,'4474','Roquefort-les-pins','ROQUEFORT-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23245,'5246','Roques','ROQUES',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23246,'38414','Rorkes Drift','RORKES DRIFT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23247,'14995','Roros','ROROS',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23248,'23475','Rorschach','RORSCHACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23249,'23074','Rorschacherberg','RORSCHACHERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23250,'3684','Rosal','ROSAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23251,'18837','Rosamond','ROSAMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23252,'26314','Rosanna','ROSANNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23253,'37554','Rosario','ROSARIO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23254,'26148','Rosario','ROSARIO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23255,'44243','Rosario','ROSARIO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23256,'31606','Rosario','ROSARIO',NULL,'','United States','',0,0,231,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23257,'39459','Rosate','ROSATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23258,'29087','Roscoe','ROSCOE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23259,'5596','Roscoff','ROSCOFF',NULL,'','France','',0,0,76,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23260,'10923','Roscommon','ROSCOMMON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23261,'41510','Roscrea','ROSCREA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:55','1900-01-01 00:00:00',1,0,1),(23262,'13088','Rose Hall','ROSE HALL',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:47:55','1900-01-01 00:00:00',1,0,1),(23263,'27506','Roseau','ROSEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:47:56','1900-01-01 00:00:00',1,0,1),(23264,'2099','Roseau','ROSEAU',NULL,'','Dominica','',0,0,500,'2016-10-17 11:47:56','1900-01-01 00:00:00',1,0,1),(23265,'32495','Rosebank','ROSEBANK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23266,'9315','Rosebank','ROSEBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23267,'5','Roseberth','ROSEBERTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23268,'26548','Rosebud','ROSEBUD',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23269,'29743','Roseburg','ROSEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23270,'21781','Rosedale','ROSEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:58','1900-01-01 00:00:00',1,0,1),(23271,'34304','Rosehill','ROSEHILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:59','1900-01-01 00:00:00',1,0,1),(23272,'26315','Rosella Plains','ROSELLA PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:59','1900-01-01 00:00:00',1,0,1),(23273,'20738','Roselle','ROSELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:00','1900-01-01 00:00:00',1,0,1),(23274,'18838','Rosemead','ROSEMEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:00','1900-01-01 00:00:00',1,0,1),(23275,'20739','Rosemont','ROSEMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:01','1900-01-01 00:00:00',1,0,1),(23276,'27508','Rosemount','ROSEMOUNT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:01','1900-01-01 00:00:00',1,0,1),(23277,'30898','Rosenberg','ROSENBERG',NULL,'','United States','',0,0,231,'2016-10-17 11:48:02','1900-01-01 00:00:00',1,0,1),(23278,'29088','Rosendale','ROSENDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23279,'22392','Rosengarten Sieversen','ROSENGARTEN SIEVERSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23280,'314','Rosenheim','ROSENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23281,'473','Rosenthal','ROSENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23282,'2480','Roses','ROSES',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23283,'35630','Roseto Degli Abruzzi','ROSETO DEGLI ABRUZZI',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23284,'32','Rosetown','ROSETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23285,'26863','Rosevears','ROSEVEARS',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23286,'18839','Roseville','ROSEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23287,'33993','Rosewood','ROSEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23288,'42620','Rosh Pina','ROSH PINA',NULL,'','Israel','',0,0,106,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23289,'11053','Rosh-pina','ROSH-PINA',NULL,'','Israel','',0,0,106,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23290,'12398','Rosia','ROSIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23291,'12399','Rosignano Marittimo','ROSIGNANO MARITTIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23292,'2286','Roskilde','ROSKILDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23293,'2340','Roslev','ROSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23294,'37240','Roslin','ROSLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23295,'21513','Roslindale','ROSLINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23296,'15244','Roslyn','ROSLYN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23297,'29089','Roslyn','ROSLYN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23298,'14611','Rosmalen','ROSMALEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23299,'39410','Rosman','ROSMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23300,'40017','Rosmaninhal','ROSMANINHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23301,'40992','Rosny Sous Bois','ROSNY SOUS BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23302,'4789','Rosny-sous-bois','ROSNY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23303,'12913','Rosolina','ROSOLINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23304,'12400','Rossano','ROSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23305,'1908','Rossau','ROSSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23306,'38572','Rossbach','ROSSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23307,'10757','Rosscarbery','ROSSCARBERY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23308,'22393','Rossdorf','ROSSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23309,'23329','Rossens','ROSSENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23310,'10926','Rosses Point','ROSSES POINT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23311,'8804','Rossett','ROSSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23312,'29515','Rossford','ROSSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23313,'22394','Rosshaupten','ROSSHAUPTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23314,'39085','Rossiglione','ROSSIGLIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23315,'23330','Rossiniere','ROSSINIERE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23316,'25530','Rossland','ROSSLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23317,'10952','Rosslare','ROSSLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23318,'44194','Rosslea','ROSSLEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23319,'31220','Rosslyn','ROSSLYN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23320,'10759','Rossnowlagh','ROSSNOWLAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23321,'9291','Ross-on-wye','ROSS-ON-WYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23322,'14927','Rost','ROST',NULL,'','Norway','',0,0,164,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23323,'11414','Rosta','ROSTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23324,'22395','Rostock','ROSTOCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23325,'16377','Rostokino','ROSTOKINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23326,'16477','Rostov','ROSTOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23327,'39298','Rostov-na-donu','ROSTOV-NA-DONU',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23328,'19911','Roswell','ROSWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23329,'8805','Rosyth','ROSYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23330,'14208','Rota','ROTA',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23331,'3285','Rota','ROTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23332,'27275','Rotenburg','ROTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23333,'1719','Rothaurach','ROTHAURACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23334,'8806','Rothbury','ROTHBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23335,'34305','Rothbury','ROTHBURY',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23336,'22229','Rothbury','ROTHBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23337,'316','Rothenberg','ROTHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23338,'23075','Rothenburg','ROTHENBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23339,'1044','Rothenburg','ROTHENBURG',NULL,'','GERMANY','',0,0,83,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23340,'36103','Rothenburg-uffenheim','ROTHENBURG-UFFENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23341,'8807','Rotherham','ROTHERHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23342,'7275','Rotherwick','ROTHERWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23343,'8809','Rothesay','ROTHESAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23344,'34413','Rothesay','ROTHESAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23345,'8810','Rothley','ROTHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23346,'23430','Rothrist','ROTHRIST',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23347,'31876','Rothschild','ROTHSCHILD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23348,'10259','Roti','ROTI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23349,'16173','Rotoava','ROTOAVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23350,'15161','Rotorua','ROTORUA',NULL,'','New Zealand','Rotorua',0,0,157,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23351,'1946','Rotta','ROTTA',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23352,'2066','Rottach-egern','ROTTACH-EGERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23353,'22625','Rottenburg','ROTTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23354,'14731','Rotterdam','ROTTERDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23355,'29090','Rotterdam','ROTTERDAM',NULL,'','United States','',0,0,231,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23356,'38941','Rotthalmuenster','ROTTHALMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23357,'26316','Rottnest Island','ROTTNEST ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23358,'22626','Rottweil','ROTTWEIL',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23359,'6194','Roubaix','ROUBAIX',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23360,'4475','Roucas Blanc','ROUCAS BLANC',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23361,'5092','Rouen','ROUEN',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23362,'5048','Rouffach','ROUFFACH',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23363,'6129','Rouffiac-tolosan','ROUFFIAC-TOLOSAN',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23364,'23331','Rougemont','ROUGEMONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23365,'5745','Rouilly-sacey','ROUILLY-SACEY',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23366,'40617','Roullet-saint-estèphe','ROULLET-SAINT-ESTÈPHE',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23367,'4476','Roumazieres-loubert','ROUMAZIERES-LOUBERT',NULL,'','France','',0,0,76,'2016-10-17 11:48:25','1900-01-01 00:00:00',1,0,1),(23368,'34629','Round Lake','ROUND LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:25','1900-01-01 00:00:00',1,0,1),(23369,'10873','Roundstone','ROUNDSTONE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:27','1900-01-01 00:00:00',1,0,1),(23370,'28016','Roundup','ROUNDUP',NULL,'','United States','',0,0,231,'2016-10-17 11:48:27','1900-01-01 00:00:00',1,0,1),(23371,'10465','Rourkela','ROURKELA',NULL,'','India','Rourkela',8,0,101,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23372,'29093','Rouses Point','ROUSES POINT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23373,'24785','Rousse','ROUSSE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23374,'6517','Rousset','ROUSSET',NULL,'','France','',0,0,76,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23375,'37675','Roussospiti','ROUSSOSPITI',NULL,'','Greece','',0,0,86,'2016-10-17 11:48:29','1900-01-01 00:00:00',1,0,1),(23376,'6195','Rouvignies','ROUVIGNIES',NULL,'','France','',0,0,76,'2016-10-17 11:48:29','1900-01-01 00:00:00',1,0,1),(23377,'38124','Rouvres-en-xaintois','ROUVRES-EN-XAINTOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23378,'22845','Rouyn-noranda','ROUYN-NORANDA',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23379,'3930','Rovaniemi','ROVANIEMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23380,'11416','Roveleto Di Cadeo','ROVELETO DI CADEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23381,'38563','Rovere Veronese','ROVERE VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23382,'12401','Rovereto','ROVERETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23383,'12402','Rovetta','ROVETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23384,'12403','Rovigo','ROVIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23385,'10037','Rovinj','ROVINJ',NULL,'','Croatia','',0,0,55,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23386,'23332','Rovio','ROVIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23387,'17499','Rovno','ROVNO',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23388,'8811','Rowardennan','ROWARDENNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:32','1900-01-01 00:00:00',1,0,1),(23389,'21514','Rowe','ROWE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:32','1900-01-01 00:00:00',1,0,1),(23390,'33994','Rowland','ROWLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:48:33','1900-01-01 00:00:00',1,0,1),(23391,'26819','Rowland Flat','ROWLAND FLAT',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:33','1900-01-01 00:00:00',1,0,1),(23392,'8812','Rowlands Castle','ROWLANDS CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:34','1900-01-01 00:00:00',1,0,1),(23393,'30901','Rowlett','ROWLETT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:34','1900-01-01 00:00:00',1,0,1),(23394,'8813','Rowton','ROWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23395,'26549','Rowville','ROWVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23396,'15560','Roxas City','ROXAS CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23397,'33995','Roxboro','ROXBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23398,'21516','Roxbury','ROXBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:36','1900-01-01 00:00:00',1,0,1),(23399,'15044','Royal Chitwan National Park','ROYAL CHITWAN NATIONAL PARK',NULL,'','Nepal','',0,0,153,'2016-10-17 11:48:37','1900-01-01 00:00:00',1,0,1),(23400,'7276','Royal Leamington Spa','ROYAL LEAMINGTON SPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:37','1900-01-01 00:00:00',1,0,1),(23401,'43655','Royal Pines','ROYAL PINES',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23402,'6363','Royan','ROYAN',NULL,'','France','',0,0,76,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23403,'5342','Royat','ROYAT',NULL,'','France','',0,0,76,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23404,'8815','Roybridge','ROYBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23405,'40558','Royeres','ROYERES',NULL,'','France','',0,0,76,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23406,'37306','Royersford','ROYERSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23407,'3988','Royla','ROYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:41','1900-01-01 00:00:00',1,0,1),(23408,'30902','Royse City','ROYSE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:41','1900-01-01 00:00:00',1,0,1),(23409,'19912','Royston','ROYSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23410,'8816','Royston','ROYSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23411,'7277','Rozel Bay','ROZEL BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23412,'40130','Rozmberk Nad Vltavou','ROZMBERK NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23413,'40294','Roznov Pod Radhostem','ROZNOV POD RADHOSTEM',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23414,'37774','Roztoky','ROZTOKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23415,'12404','Rubano','RUBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23416,'5870','Rubelles','RUBELLES',NULL,'','France','',0,0,76,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23417,'3479','Rubena','RUBENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23418,'18841','Rubidoux','RUBIDOUX',NULL,'','United States','',0,0,231,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23419,'12405','Rubiera','RUBIERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23420,'17760','Ruby','RUBY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23421,'31221','Ruckersville','RUCKERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23422,'317','Ruckholz','RUCKHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23423,'318','Rudersdorf','RUDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23424,'36090','Rudesheim','RUDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23425,'7278','Rudford','RUDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23426,'7279','Rudge','RUDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23427,'37183','Rudloe','RUDLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23428,'22397','Rudolfshaus Bei Kirn','RUDOLFSHAUS BEI KIRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23429,'23431','Rudolfstetten','RUDOLFSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23430,'802','Rudow','RUDOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23431,'658','Ruedesheim Am Rhein','RUEDESHEIM AM RHEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23432,'4790','Rueil','RUEIL',NULL,'','France','',0,0,76,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23433,'17413','Rueili Village','RUEILI VILLAGE',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23434,'5678','Rueil-la-gadeliere','RUEIL-LA-GADELIERE',NULL,'','France','',0,0,76,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23435,'4791','Rueil-malmaison','RUEIL-MALMAISON',NULL,'','France','',0,0,76,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23436,'27276','Rueper','RUEPER',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23437,'23076','Rueschlikon','RUESCHLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23438,'3480','Ruesga','RUESGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23439,'8817','Rufford','RUFFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23440,'11418','Ruffre','RUFFRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23441,'12406','Rufina','RUFINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23442,'29745','Rufus','RUFUS',NULL,'','United States','',0,0,231,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23443,'23748','Rugao','RUGAO',NULL,'','China','',0,0,46,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23444,'8818','Rugby','RUGBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23445,'28080','Rugby','RUGBY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23446,'8819','Rugeley','RUGELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23447,'42009','Rugen','RUGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23448,'4478','Rugy','RUGY',NULL,'','France','',0,0,76,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23449,'40612','Ruhla','RUHLA',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23450,'38378','Ruhpolding','RUHPOLDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23451,'319','Ruhstorf','RUHSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23452,'23712','Rui\'an','RUI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23453,'28563','Ruidoso','RUIDOSO',NULL,'','United States','',0,0,231,'2016-10-17 11:48:52','1900-01-01 00:00:00',1,0,1),(23454,'34898','Ruili','RUILI',NULL,'','China','',0,0,46,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23455,'14502','Ruinerwold','RUINERWOLD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23456,'8820','Ruislip','RUISLIP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23457,'4028','Ruissalo','RUISSALO',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23458,'4039','Ruka','RUKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23459,'3900','Rukatunturi','RUKATUNTURI',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23460,'37881','Rukavac','RUKAVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23461,'32378','Ruma','RUMA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23462,'17223','Rumelihisarc','RUMELIHISARC',NULL,'','Turkey','',0,0,222,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23463,'30265','Rumford','RUMFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:54','1900-01-01 00:00:00',1,0,1),(23464,'38126','Rumia','RUMIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:48:54','1900-01-01 00:00:00',1,0,1),(23465,'23333','Rumlang','RUMLANG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23466,'11419','Rumo','RUMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23467,'13089','Runaway Bay','RUNAWAY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23468,'8821','Runcorn','RUNCORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23469,'14417','Rundu','RUNDU',NULL,'','Namibia','',0,0,151,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23470,'4792','Rungis','RUNGIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23471,'2180','Rungsted','RUNGSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23472,'28405','Runnemede','RUNNEMEDE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:56','1900-01-01 00:00:00',1,0,1),(23473,'18842','Running Springs','RUNNING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:48:56','1900-01-01 00:00:00',1,0,1),(23474,'20395','Rupert','RUPERT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23475,'42585','Rupnagar','RUPNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23476,'561','Ruppichteroth','RUPPICHTEROTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23477,'3832','Rupsi','RUPSI',NULL,'','Estonia','',0,0,69,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23478,'10588','Rupsi','RUPSI',NULL,'','India','',0,0,101,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23479,'16138','Rurutu','RURUTU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23480,'41219','Ruschlikon','RUSCHLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23481,'34306','Rushcutters Bay','RUSHCUTTERS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23482,'8822','Rushden','RUSHDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23483,'36338','Rushford','RUSHFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23484,'20977','Rushville','RUSHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23485,'43289','Rushyford','RUSHYFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:59','1900-01-01 00:00:00',1,0,1),(23486,'30903','Rusk','RUSK',NULL,'','United States','',0,0,231,'2016-10-17 11:48:59','1900-01-01 00:00:00',1,0,1),(23487,'19596','Ruskin','RUSKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23488,'8824','Rusper','RUSPER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23489,'21126','Russell','RUSSELL',NULL,'','United States','',0,0,231,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23490,'15245','Russell','RUSSELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23491,'25625','Russell','RUSSELL',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23492,'33728','Russellville','RUSSELLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23493,'475','Russelsheim','RUSSELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23494,'22398','Rüsselsheim','RÜSSELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23495,'12735','Russi','RUSSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23496,'17761','Russian Mission','RUSSIAN MISSION',NULL,'','United States','',0,0,231,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23497,'15163','Russley - Christchurch International Airport (Chc)','RUSSLEY - CHRISTCHURCH INTERNATIONAL AIRPORT (CHC)',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23498,'22627','Rust','RUST',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23499,'27067','Rust','RUST',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23500,'32599','Rustenburg','RUSTENBURG',NULL,'','South Africa','Rustenburg',0,0,195,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23501,'25828','Rusticoville','RUSTICOVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23502,'8825','Rustington','RUSTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23503,'21254','Ruston','RUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:49:05','1900-01-01 00:00:00',1,0,1),(23504,'42881','Rusutsu','RUSUTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:05','1900-01-01 00:00:00',1,0,1),(23505,'37379','Rute','RUTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23506,'23077','Rute','RUTE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23507,'10354','Ruteng','RUTENG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23508,'22399','Ruthen Kallenhardt','RUTHEN KALLENHARDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23509,'18843','Rutherford','RUTHERFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:49:07','1900-01-01 00:00:00',1,0,1),(23510,'43745','Rutherford','RUTHERFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:07','1900-01-01 00:00:00',1,0,1),(23511,'33996','Rutherfordton','RUTHERFORDTON',NULL,'','United States','',0,0,231,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23512,'39606','Rutherglen','RUTHERGLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23513,'26550','Rutherglen','RUTHERGLEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23514,'8826','Ruthin','RUTHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23515,'7280','Rutland','RUTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23516,'31386','Rutland','RUTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23517,'26317','Rutland Plains','RUTLAND PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23518,'14549','Ruurlo','RUURLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23519,'5746','Ruvigny','RUVIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23520,'12407','Ruvo Di Puglia','RUVO DI PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23521,'15286','Ruwi','RUWI',NULL,'','Oman','',0,0,165,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23522,'37735','Ruyton Xi Towns','RUYTON XI TOWNS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23523,'24298','Ruzyne Airport (Prg)','RUZYNE AIRPORT (PRG)',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23524,'16427','Ryazan','RYAZAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23525,'16474','Rybatskaya','RYBATSKAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23526,'8827','Ryde','RYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23527,'34307','Ryde','RYDE',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23528,'26931','Rye','RYE',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:12','1900-01-01 00:00:00',1,0,1),(23529,'8828','Rye','RYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:12','1900-01-01 00:00:00',1,0,1),(23530,'15628','Rzepin','RZEPIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:49:13','1900-01-01 00:00:00',1,0,1),(23531,'15718','Rzeszow','RZESZOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:49:13','1900-01-01 00:00:00',1,0,1),(23532,'41561','S Agaro','S AGARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23533,'43502','S Algar','S ALGAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23534,'14760','S Hertogenbosch','S HERTOGENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23535,'38629','S Horta','S HORTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23536,'43503','S Illot','S ILLOT',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23537,'35074','S.miguel De Salinas','S.MIGUEL DE SALINAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23538,'32355','Sa Dah','SA DAH',NULL,'','Yemen','',0,0,240,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23539,'42822','Sa Pa','SA PA',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23540,'24396','Saalbach','SAALBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23541,'39962','Saalburg','SAALBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23542,'44138','Saalekreis','SAALEKREIS',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23543,'39572','Saales','SAALES',NULL,'','France','',0,0,76,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23544,'1947','Saalfeld','SAALFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23545,'24397','Saalfelden','SAALFELDEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23546,'23078','Saanenmoeser','SAANENMOESER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23547,'25531','Saanichton','SAANICHTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23548,'43365','Saarbrucken','SAARBRUCKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23549,'688','Saarbruecken','SAARBRUECKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23550,'3901','Saariselka','SAARISELKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23551,'4043','Saariselkä','SAARISELKÄ',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23552,'43873','Saariselkae','SAARISELKAE',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23553,'689','Saarlouis','SAARLOUIS',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23554,'23079','Saas','SAAS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23555,'35994','Saas-fee','SAAS-FEE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23556,'25892','Saba','SABA',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23557,'10260','Saba','SABA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23558,'39204','Sabac','SABAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23559,'3591','Sabadell','SABADELL',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23560,'41701','Sabah','SABAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23562,'40034','Sabang','SABANG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23563,'12409','Sabaudia','SABAUDIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23564,'12410','Sabbioneta','SABBIONETA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23565,'1744','Sabi Sabi','SABI SABI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23566,'32600','Sabie','SABIE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23567,'3341','Sabinanigo','SABINANIGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23568,'13963','Sabinas','SABINAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:49:19','1900-01-01 00:00:00',1,0,1),(23569,'39692','Sabine National Forest Area','SABINE NATIONAL FOREST AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:19','1900-01-01 00:00:00',1,0,1),(23570,'3286','Sabiote','SABIOTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23571,'40659','Sables-dor-les-pins','SABLES-DOR-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23572,'5061','Sable-sur-sarthe','SABLE-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23573,'5959','Sabran','SABRAN',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23574,'5247','Sabres','SABRES',NULL,'','France','',0,0,76,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23575,'2158','Sabro','SABRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23576,'16077','Sabrosa','SABROSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23577,'20283','Sabula','SABULA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23578,'16414','Saburovo','SABUROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23579,'43151','Sacele','SACELE',NULL,'','Romania','',0,0,179,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23580,'34630','Sachigo Lake','SACHIGO LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23581,'23334','Sachseln','SACHSELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23582,'5747','Sachy','SACHY',NULL,'','France','',0,0,76,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23583,'29097','Sackets Harbor','SACKETS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:49:23','1900-01-01 00:00:00',1,0,1),(23584,'4793','Saclay','SACLAY',NULL,'','France','',0,0,76,'2016-10-17 11:49:23','1900-01-01 00:00:00',1,0,1),(23585,'18844','Sacramento','SACRAMENTO',NULL,'','United States','',0,0,231,'2016-10-17 11:49:25','1900-01-01 00:00:00',1,0,1),(23586,'36525','Sacred Valley','SACRED VALLEY',NULL,'','Peru','',0,0,172,'2016-10-17 11:49:25','1900-01-01 00:00:00',1,0,1),(23587,'12411','Sacrofano','SACROFANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23588,'3685','Sada','SADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23589,'28407','Saddle Brook','SADDLE BROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23590,'42882','Sado','SADO',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23591,'10589','Sadri','SADRI',NULL,'','India','Sadri',2,0,101,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23592,'36486','Saebo','SAEBO',NULL,'','Norway','',0,0,164,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23593,'39750','Saeby','SAEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23594,'2435','Safaga','SAFAGA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23595,'41446','Safat','SAFAT',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23596,'35419','Safed','SAFED',NULL,'','Israel','',0,0,106,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23597,'19597','Safety Harbor','SAFETY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23598,'16790','Saffle','SAFFLE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23599,'18198','Safford','SAFFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23600,'8829','Saffron Walden','SAFFRON WALDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23601,'13684','Safi','SAFI',NULL,'','Morocco','',0,0,148,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23602,'36721','Safita','SAFITA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23603,'17369','Safranbolu','SAFRANBOLU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23604,'13334','Saga','SAGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23605,'13397','Sagamihara','SAGAMIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23606,'21517','Sagamore','SAGAMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23607,'1848','Sagard','SAGARD',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23608,'2774','S\'agaro','S\'AGARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23609,'10855','Saggart','SAGGART',NULL,'','Ireland','',0,0,105,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23610,'42851','Sagil','SAGIL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:49:31','1900-01-01 00:00:00',1,0,1),(23611,'27767','Saginaw','SAGINAW',NULL,'','United States','',0,0,231,'2016-10-17 11:49:31','1900-01-01 00:00:00',1,0,1),(23612,'20396','Sagle','SAGLE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:32','1900-01-01 00:00:00',1,0,1),(23613,'42356','Sagone','SAGONE',NULL,'','France','',0,0,76,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23614,'15780','Sagres','SAGRES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23615,'41137','Saguenay','SAGUENAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23616,'3782','Sagunto','SAGUNTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23617,'10105','Sagvar','SAGVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23618,'3481','Sahagun','SAHAGUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23619,'9937','Sai Kung','SAI KUNG',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23620,'26318','Saibai Island','SAIBAI ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23621,'43148','Saida','SAIDA',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23622,'39511','Saidia','SAIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23623,'41216','Saidnaya','SAIDNAYA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23624,'24762','Saidpur','SAIDPUR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23625,'15326','Saidu Sharif','SAIDU SHARIF',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23626,'23335','Saignelegier','SAIGNELEGIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23627,'37151','Saigon And South','SAIGON AND SOUTH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23628,'38846','Sailauf','SAILAUF',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23629,'40779','Saillagouse','SAILLAGOUSE',NULL,'','France','',0,0,76,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23630,'23336','Saillon','SAILLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23631,'26551','Saint Albans','SAINT ALBANS',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23632,'883','Saint Ann','SAINT ANN',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:49:36','1900-01-01 00:00:00',1,0,1),(23633,'43031','Saint Arnaud','SAINT ARNAUD',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:36','1900-01-01 00:00:00',1,0,1),(23634,'16188','Saint Benoit','SAINT BENOIT',NULL,'','Reunion','',0,0,178,'2016-10-17 11:49:37','1900-01-01 00:00:00',1,0,1),(23635,'893','Saint Croix Island','SAINT CROIX ISLAND',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:49:38','1900-01-01 00:00:00',1,0,1),(23636,'32417','Saint Francis Bay','SAINT FRANCIS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:40','1900-01-01 00:00:00',1,0,1),(23637,'41599','Saint George\'s','SAINT GEORGE\'S',NULL,'','Grenada','',0,0,88,'2016-10-17 11:49:40','1900-01-01 00:00:00',1,0,1),(23638,'18846','Saint Helena','SAINT HELENA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:42','1900-01-01 00:00:00',1,0,1),(23639,'43445','Saint James','SAINT JAMES',NULL,'','Barbados','',0,0,19,'2016-10-17 11:49:43','1900-01-01 00:00:00',1,0,1),(23640,'876','Saint John\'s','SAINT JOHN\'S',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:49:43','1900-01-01 00:00:00',1,0,1),(23641,'43201','Saint Louis','SAINT LOUIS',NULL,'','Senegal','',0,0,187,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23642,'888','Saint Lucia','SAINT LUCIA',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23643,'877','Saint Maarten','SAINT MAARTEN',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23644,'1641','Saint Petersburg','SAINT PETERSBURG',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:49','1900-01-01 00:00:00',1,0,1),(23645,'39391','Saint-affrique','SAINT-AFFRIQUE',NULL,'','France','',0,0,76,'2016-10-17 11:49:53','1900-01-01 00:00:00',1,0,1),(23646,'40727','Saint-affrique-les-montagnes','SAINT-AFFRIQUE-LES-MONTAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23647,'5490','Saint-albain','SAINT-ALBAIN',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23648,'5597','Saint-alban','SAINT-ALBAN',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23649,'22864','Saint-alexis-des-monts','SAINT-ALEXIS-DES-MONTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23650,'44086','Saint-amand-les-eaux','SAINT-AMAND-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23651,'38084','Saint-amans-soult','SAINT-AMANS-SOULT',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23652,'5491','Saint-amour-bellevue','SAINT-AMOUR-BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23653,'5960','Saint-andre','SAINT-ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23654,'4517','Saint-andré-des-eaux','SAINT-ANDRÉ-DES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23655,'5961','Saint-andre-de-valborgne','SAINT-ANDRE-DE-VALBORGNE',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23656,'39946','Saint-andre-les-alpes','SAINT-ANDRE-LES-ALPES',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23657,'5249','Saint-antoine','SAINT-ANTOINE',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23658,'22865','Saint-antonin','SAINT-ANTONIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23659,'40635','Saint-apollinaire','SAINT-APOLLINAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23660,'41341','Saint-apollinaire','SAINT-APOLLINAIRE',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23661,'4972','Saint-arcons-d\'allier','SAINT-ARCONS-D\'ALLIER',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23662,'38014','Saint-armel','SAINT-ARMEL',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23663,'41340','Saint-arnoult','SAINT-ARNOULT',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23664,'5419','Saint-aubin-sur-mer','SAINT-AUBIN-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23665,'5093','Saint-aubin-sur-scie','SAINT-AUBIN-SUR-SCIE',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23666,'5962','Saint-aunes','SAINT-AUNES',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23667,'44087','Saint-avertin','SAINT-AVERTIN',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23668,'41338','Saint-avold','SAINT-AVOLD',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23669,'6520','Saint-aygulf','SAINT-AYGULF',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23670,'5598','Saint-barnabe','SAINT-BARNABE',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23671,'34417','Saint-basile','SAINT-BASILE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23672,'41337','Saint-beauzeil','SAINT-BEAUZEIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23673,'4518','Saint-benoît','SAINT-BENOÎT',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23674,'5088','Saint-blaise','SAINT-BLAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23675,'41336','Saint-bonnet-de-mure','SAINT-BONNET-DE-MURE',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23676,'39404','Saint-bonnet-en-champsaur','SAINT-BONNET-EN-CHAMPSAUR',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23677,'5343','Saint-bonnet-le-froid','SAINT-BONNET-LE-FROID',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23678,'44088','Saint-bon-tarentaise','SAINT-BON-TARENTAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23679,'5963','Saint-bres','SAINT-BRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23680,'4976','Saint-brevin-les-pins','SAINT-BREVIN-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23681,'5599','Saint-briac-sur-mer','SAINT-BRIAC-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23682,'6268','Saint-brice','SAINT-BRICE',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23683,'44089','Saint-brice-en-cogles','SAINT-BRICE-EN-COGLES',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23684,'44090','Saint-brice-sous-foret','SAINT-BRICE-SOUS-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23685,'4519','Saint-brice-sous-forêt','SAINT-BRICE-SOUS-FORÊT',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23686,'4520','Saint-brieuc','SAINT-BRIEUC',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23687,'22866','Saint-bruno-de-montarville','SAINT-BRUNO-DE-MONTARVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23688,'39700','Saint-calais','SAINT-CALAIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23689,'6521','Saint-cannat','SAINT-CANNAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23690,'38430','Saint-caradec','SAINT-CARADEC',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23691,'40296','Saint-cergues','SAINT-CERGUES',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23692,'6522','Saint-chaffrey','SAINT-CHAFFREY',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23693,'6698','Saint-chamond','SAINT-CHAMOND',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23694,'6811','Saint-christol','SAINT-CHRISTOL',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23695,'41335','Saint-clement-de-riviere','SAINT-CLEMENT-DE-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23696,'4521','Saint-clément-de-rivière','SAINT-CLÉMENT-DE-RIVIÈRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23697,'5420','Saint-contest','SAINT-CONTEST',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23698,'5250','Saint-cyprien','SAINT-CYPRIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23699,'39381','Saint-cyr-au-mont-dor','SAINT-CYR-AU-MONT-DOR',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23700,'4522','Saint-cyr-l\'école','SAINT-CYR-L\'ÉCOLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23701,'5114','Saint-cyr-sur-mer','SAINT-CYR-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23702,'16196','Saint-denis','SAINT-DENIS',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23703,'39645','Saint-denis-le-gast','SAINT-DENIS-LE-GAST',NULL,'','France','',0,0,76,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23704,'37627','Saint-denis-le-thiboult','SAINT-DENIS-LE-THIBOULT',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23705,'39884','Saint-desirat','SAINT-DESIRAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23706,'4523','Saint-didier','SAINT-DIDIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23707,'4524','Saint-didier-au-mont-d Or','SAINT-DIDIER-AU-MONT-D OR',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23708,'41330','Saint-die','SAINT-DIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23709,'41328','Saint-dizier','SAINT-DIZIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23710,'41327','Saint-doulchard','SAINT-DOULCHARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23711,'41410','Sainte Luce','SAINTE LUCE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:11','1900-01-01 00:00:00',1,0,1),(23712,'41441','Sainte Marie','SAINTE MARIE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:50:11','1900-01-01 00:00:00',1,0,1),(23713,'22871','Sainte-adele','SAINTE-ADELE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23714,'5828','Sainte-adresse','SAINTE-ADRESSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23715,'37292','Sainte-anastasie','SAINTE-ANASTASIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23716,'14241','Sainte-anne','SAINTE-ANNE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23717,'39432','Sainte-anne-dauray','SAINTE-ANNE-DAURAY',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23718,'4526','Sainte-anne-la-palud','SAINTE-ANNE-LA-PALUD',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23719,'24594','Sainte-catherine','SAINTE-CATHERINE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23720,'37532','Sainte-colombe','SAINTE-COLOMBE',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23721,'5964','Sainte-enimie','SAINTE-ENIMIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23722,'22873','Sainte-eustache','SAINTE-EUSTACHE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23723,'22874','Sainte-famille','SAINTE-FAMILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23724,'39229','Sainte-florine','SAINTE-FLORINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23725,'22875','Sainte-foy - Sillery','SAINTE-FOY - SILLERY',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23726,'38355','Sainte-foy-daigrefeuille','SAINTE-FOY-DAIGREFEUILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23727,'5051','Sainte-foy-les-lyon','SAINTE-FOY-LES-LYON',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23728,'6699','Sainte-foy-tarentaise','SAINTE-FOY-TARENTAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23729,'41326','Saint-egreve','SAINT-EGREVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23730,'4959','Saint-égrève','SAINT-ÉGRÈVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23731,'22876','Sainte-helene-de-bagot','SAINTE-HELENE-DE-BAGOT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23732,'40000','Sainte-hermine','SAINTE-HERMINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23733,'22877','Sainte-julie','SAINTE-JULIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23734,'6700','Sainte-luce','SAINTE-LUCE',NULL,'','France','',0,0,76,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23735,'14242','Sainte-luce','SAINTE-LUCE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23736,'44091','Sainte-luce-sur-loire','SAINTE-LUCE-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23737,'4527','Sainte-lucie-de-porto-vecchio','SAINTE-LUCIE-DE-PORTO-VECCHIO',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23738,'44092','Sainte-marie-de-re','SAINTE-MARIE-DE-RE',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23739,'4528','Sainte-marie-de-ré','SAINTE-MARIE-DE-RÉ',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23740,'5965','Sainte-marie-la-mer','SAINTE-MARIE-LA-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23741,'5251','Sainte-marthe','SAINTE-MARTHE',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23742,'41288','Sainte-maxime','SAINTE-MAXIME',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23743,'5421','Sainte-mere-eglise','SAINTE-MERE-EGLISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23744,'6315','Sainte-preuve','SAINTE-PREUVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23745,'9386','Sainte-rose','SAINTE-ROSE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23746,'6364','Saintes','SAINTES',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23747,'5252','Sainte-sabine','SAINTE-SABINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23748,'5748','Sainte-savine','SAINTE-SAVINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23749,'6523','Saintes-maries-de-la-mer','SAINTES-MARIES-DE-LA-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23750,'39248','Sainte-suzanne','SAINTE-SUZANNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23751,'22878','Sainte-therese','SAINTE-THERESE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23752,'40778','Saint-etienne','SAINT-ETIENNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:22','1900-01-01 00:00:00',1,0,1),(23753,'38367','Saint-etienne-de-maurs','SAINT-ETIENNE-DE-MAURS',NULL,'','France','',0,0,76,'2016-10-17 11:50:22','1900-01-01 00:00:00',1,0,1),(23754,'38836','Saint-etienne-du-gres','SAINT-ETIENNE-DU-GRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23755,'41325','Saint-etienne-du-rouvray','SAINT-ETIENNE-DU-ROUVRAY',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23756,'6524','Saint-etienne-en-devoluy','SAINT-ETIENNE-EN-DEVOLUY',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23757,'4530','Saint-étienne-les-orgues','SAINT-ÉTIENNE-LES-ORGUES',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23758,'42737','Saint-fargeau-ponthierry','SAINT-FARGEAU-PONTHIERRY',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23759,'22879','Saint-faustin','SAINT-FAUSTIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23760,'4889','Saint-florent','SAINT-FLORENT',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23761,'41627','Saint-francois','SAINT-FRANCOIS',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23762,'5071','Saint-francois-longchamp','SAINT-FRANCOIS-LONGCHAMP',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23763,'4970','Saint-galmier','SAINT-GALMIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23764,'5253','Saint-genies','SAINT-GENIES',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23765,'6130','Saint-geniez-d\'olt','SAINT-GENIEZ-D\'OLT',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23766,'41324','Saint-genis-laval','SAINT-GENIS-LAVAL',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23767,'6701','Saint-genis-pouilly','SAINT-GENIS-POUILLY',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23768,'38207','Saint-georges-de-didonne','SAINT-GEORGES-DE-DIDONNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23769,'41323','Saint-germain En-laye','SAINT-GERMAIN EN-LAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23770,'5104','Saint-germain-en-laye','SAINT-GERMAIN-EN-LAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23771,'4795','Saint-germain-les-corbeil','SAINT-GERMAIN-LES-CORBEIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23772,'37478','Saint-gervais','SAINT-GERVAIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23773,'5492','Saint-gervais-en-valliere','SAINT-GERVAIS-EN-VALLIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23774,'41317','Saint-gervais-la-foret','SAINT-GERVAIS-LA-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23775,'4531','Saint-gervais-la-forêt','SAINT-GERVAIS-LA-FORÊT',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23776,'44093','Saint-gervais-les-bains','SAINT-GERVAIS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23777,'41369','Saint-gilles-les-bains','SAINT-GILLES-LES-BAINS',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23778,'4796','Saint-gratien','SAINT-GRATIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23779,'5254','Saint-gregoire','SAINT-GREGOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23780,'41316','Saint-herblain','SAINT-HERBLAIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23781,'37506','Saint-hilaire','SAINT-HILAIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23782,'6269','Saint-hilaire-de-riez','SAINT-HILAIRE-DE-RIEZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23783,'40618','Saint-hilaire-dozilhan','SAINT-HILAIRE-DOZILHAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23784,'40277','Saint-hippolyte','SAINT-HIPPOLYTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23785,'38145','Saint-hippolyte','SAINT-HIPPOLYTE',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23786,'38957','Saint-hippolyte-le-graveron','SAINT-HIPPOLYTE-LE-GRAVERON',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23787,'38031','Saint-jacques','SAINT-JACQUES',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23788,'5600','Saint-jacques-de-la-lande','SAINT-JACQUES-DE-LA-LANDE',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23789,'5344','Saint-jacques-des-blats','SAINT-JACQUES-DES-BLATS',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23790,'42124','Saint-jean-cap-ferrat','SAINT-JEAN-CAP-FERRAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:32','1900-01-01 00:00:00',1,0,1),(23791,'6702','Saint-jean-d\'ardieres','SAINT-JEAN-D\'ARDIERES',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23792,'41314','Saint-jean-d\'arves','SAINT-JEAN-D\'ARVES',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23793,'5255','Saint-jean-de-blaignac','SAINT-JEAN-DE-BLAIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23794,'5966','Saint-jean-de-la-blaquiere','SAINT-JEAN-DE-LA-BLAQUIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23795,'41313','Saint-jean-de-luz','SAINT-JEAN-DE-LUZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23796,'40523','Saint-jean-de-matha','SAINT-JEAN-DE-MATHA',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23797,'6270','Saint-jean-de-monts','SAINT-JEAN-DE-MONTS',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23798,'37999','Saint-jean-de-sixt','SAINT-JEAN-DE-SIXT',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23799,'41312','Saint-jean-de-vedas','SAINT-JEAN-DE-VEDAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23800,'6802','Saint-jean-de-védas','SAINT-JEAN-DE-VÉDAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23801,'39003','Saint-jean-du-gard','SAINT-JEAN-DU-GARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23802,'37721','Saint-jean-la-vetre','SAINT-JEAN-LA-VETRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23803,'5679','Saint-jean-le-blanc','SAINT-JEAN-LE-BLANC',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23804,'44094','Saint-jean-le-braye','SAINT-JEAN-LE-BRAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23805,'39613','Saint-jean-le-centenier','SAINT-JEAN-LE-CENTENIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23806,'42149','Saint-jean-port-joli','SAINT-JEAN-PORT-JOLI',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23807,'40383','Saint-jean-saverne','SAINT-JEAN-SAVERNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23808,'22880','Saint-jean-sur-richelieu','SAINT-JEAN-SUR-RICHELIEU',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23809,'6271','Saint-joachim','SAINT-JOACHIM',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23810,'4532','Saint-jorioz','SAINT-JORIOZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23811,'22881','Saint-joseph-de-la-rive','SAINT-JOSEPH-DE-LA-RIVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23812,'4941','Saint-jouan-des-guerets','SAINT-JOUAN-DES-GUERETS',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23813,'4797','Saint-julien','SAINT-JULIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23814,'39265','Saint-julien-chapteuil','SAINT-JULIEN-CHAPTEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23815,'5256','Saint-julien-de-crempse','SAINT-JULIEN-DE-CREMPSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23816,'6703','Saint-julien-en-genevois','SAINT-JULIEN-EN-GENEVOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23817,'37697','Saint-julien-le-vendomois','SAINT-JULIEN-LE-VENDOMOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23818,'5126','Saint-junien','SAINT-JUNIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23819,'22882','Saint-lambert','SAINT-LAMBERT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23820,'41311','Saint-lary Soulan','SAINT-LARY SOULAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23821,'38013','Saint-lary-espiaube','SAINT-LARY-ESPIAUBE',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23822,'22883','Saint-laurent','SAINT-LAURENT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23823,'5039','Saint-laurent-de-cerdans','SAINT-LAURENT-DE-CERDANS',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23824,'37824','Saint-laurent-de-la-cabrerisse','SAINT-LAURENT-DE-LA-CABRERISSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23825,'5052','Saint-laurent-de-mure','SAINT-LAURENT-DE-MURE',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23826,'5967','Saint-laurent-des-arbres','SAINT-LAURENT-DES-ARBRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23827,'43514','Saint-laurent-du-var','SAINT-LAURENT-DU-VAR',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23828,'4533','Saint-laurent-nouan','SAINT-LAURENT-NOUAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23829,'22884','Saint-leonard','SAINT-LEONARD',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23830,'38656','Saint-léonard','SAINT-LÉONARD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23831,'16197','Saint-leu','SAINT-LEU',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23832,'22885','Saint-liboire','SAINT-LIBOIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23833,'4534','Saint-lieux-lès-lavaur','SAINT-LIEUX-LÈS-LAVAUR',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23834,'44095','Saint-lo','SAINT-LO',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23835,'39302','Saint-louet-sur-seulles','SAINT-LOUET-SUR-SEULLES',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23836,'5680','Saint-louis','SAINT-LOUIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23837,'42011','Saint-louis','SAINT-LOUIS',NULL,'','Senegal','',0,0,187,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23838,'40409','Saint-loup-lamairé','SAINT-LOUP-LAMAIRÉ',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23839,'41310','Saint-luce-sur-loire','SAINT-LUCE-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23840,'37827','Saint-lyphard','SAINT-LYPHARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23841,'40345','Saint-lys','SAINT-LYS',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23842,'6365','Saint-maixent-l\'ecole','SAINT-MAIXENT-L\'ECOLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23843,'40206','Saint-mamet','SAINT-MAMET',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23844,'5493','Saint-marcel','SAINT-MARCEL',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23845,'6704','Saint-marcellin','SAINT-MARCELLIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23846,'38463','Saint-mard','SAINT-MARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23847,'4874','Saint-martin-aux-chartrains','SAINT-MARTIN-AUX-CHARTRAINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23848,'6196','Saint-martin-boulogne','SAINT-MARTIN-BOULOGNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23849,'4535','Saint-martin-d\' Uriage','SAINT-MARTIN-D\' URIAGE',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23850,'6705','Saint-martin-d\'ardeche','SAINT-MARTIN-D\'ARDECHE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23851,'44096','Saint-martin-de-belleville','SAINT-MARTIN-DE-BELLEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23852,'6366','Saint-martin-de-re','SAINT-MARTIN-DE-RE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23853,'6706','Saint-martin-d\'hères','SAINT-MARTIN-D\'HÈRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23854,'5829','Saint-martin-du-manoir','SAINT-MARTIN-DU-MANOIR',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23855,'44097','Saint-martin-du-vivier','SAINT-MARTIN-DU-VIVIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23856,'5494','Saint-martin-en-bresse','SAINT-MARTIN-EN-BRESSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23857,'5749','Saint-martin-sur-le-pre','SAINT-MARTIN-SUR-LE-PRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23858,'5346','Saint-martin-valmeroux','SAINT-MARTIN-VALMEROUX',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23859,'4798','Saint-maur-des-fosses','SAINT-MAUR-DES-FOSSES',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23860,'23337','Saint-maurice','SAINT-MAURICE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23861,'6707','Saint-maurice-de-beynost','SAINT-MAURICE-DE-BEYNOST',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23862,'6526','Saint-maximin-la-sainte-baume','SAINT-MAXIMIN-LA-SAINTE-BAUME',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23863,'5602','Saint-meloir-des-ondes','SAINT-MELOIR-DES-ONDES',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23864,'40951','Saint-michel Des Saints','SAINT-MICHEL DES SAINTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23865,'6272','Saint-michel-chef-chef','SAINT-MICHEL-CHEF-CHEF',NULL,'','France','',0,0,76,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23866,'22886','Saint-michel-des-saints','SAINT-MICHEL-DES-SAINTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23867,'5681','Saint-michel-sur-loire','SAINT-MICHEL-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23868,'4536','Saint-nicolas','SAINT-NICOLAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23869,'40368','Saint-nicolas','SAINT-NICOLAS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23870,'40761','Saint-nicolas-de-la-grave','SAINT-NICOLAS-DE-LA-GRAVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23871,'5422','Saint-nicolas-des-bois','SAINT-NICOLAS-DES-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23872,'41304','Saint-nicolas-les Arras','SAINT-NICOLAS-LES ARRAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23873,'6708','Saint-nizier-du-moucherotte','SAINT-NIZIER-DU-MOUCHEROTTE',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23874,'35168','Saint-omer','SAINT-OMER',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23875,'37600','Saint-omer-en-chaussee','SAINT-OMER-EN-CHAUSSEE',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23876,'44098','Saint-onen-la-chapelle','SAINT-ONEN-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:55','1900-01-01 00:00:00',1,0,1),(23877,'37350','Saint-ouen-laumône','SAINT-OUEN-LAUMÔNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:55','1900-01-01 00:00:00',1,0,1),(23878,'5682','Saint-ouen-les-vignes','SAINT-OUEN-LES-VIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23879,'5871','Saint-ouen-sur-morin','SAINT-OUEN-SUR-MORIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23880,'6367','Saint-palais-sur-mer','SAINT-PALAIS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23881,'39082','Saint-pancrace','SAINT-PANCRACE',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23882,'37992','Saint-pardoux-la-croisille','SAINT-PARDOUX-LA-CROISILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23883,'44099','Saint-paterne','SAINT-PATERNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23884,'5603','Saint-patrice','SAINT-PATRICE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23885,'39458','Saint-paul-de-fenouillet','SAINT-PAUL-DE-FENOUILLET',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23886,'44100','Saint-paul-de-vence','SAINT-PAUL-DE-VENCE',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23887,'6527','Saint-paul-en-foret','SAINT-PAUL-EN-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23888,'4965','Saint-paul-les-dax','SAINT-PAUL-LES-DAX',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23889,'4908','Saint-paul-trois-chateaux','SAINT-PAUL-TROIS-CHATEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:50:59','1900-01-01 00:00:00',1,0,1),(23890,'40353','Saint-pée-sur-nivelle','SAINT-PÉE-SUR-NIVELLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:59','1900-01-01 00:00:00',1,0,1),(23891,'5496','Saint-philibert','SAINT-PHILIBERT',NULL,'','France','',0,0,76,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23892,'12412','Saint-pierre','SAINT-PIERRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23893,'16189','Saint-pierre','SAINT-PIERRE',NULL,'','Reunion','',0,0,178,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23894,'4537','Saint-pierre-d Entremont','SAINT-PIERRE-D ENTREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23895,'40792','Saint-pierre-dalbigny','SAINT-PIERRE-DALBIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23896,'5968','Saint-pierre-des-champs','SAINT-PIERRE-DES-CHAMPS',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23897,'5683','Saint-pierre-des-corps','SAINT-PIERRE-DES-CORPS',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23898,'6368','Saint-pierre-d\'oleron','SAINT-PIERRE-D\'OLERON',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23899,'44101','Saint-pierre-du-perray','SAINT-PIERRE-DU-PERRAY',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23900,'5830','Saint-pierre-du-vauvray','SAINT-PIERRE-DU-VAUVRAY',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23901,'5750','Saint-pierremont','SAINT-PIERREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23902,'37622','Saint-pierre-quiberon','SAINT-PIERRE-QUIBERON',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23903,'38087','Saint-pierre-sur-mer','SAINT-PIERRE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23904,'44102','Saint-pol-de-leon','SAINT-POL-DE-LEON',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23905,'6197','Saint-pol-sur-mer','SAINT-POL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23906,'4538','Saint-pons-de-thomières','SAINT-PONS-DE-THOMIÈRES',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23907,'5684','Saint-prest','SAINT-PREST',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23908,'6369','Saint-preuil','SAINT-PREUIL',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23909,'38886','Saint-priest-en-jarez','SAINT-PRIEST-EN-JAREZ',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23910,'4800','Saint-prix','SAINT-PRIX',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23911,'5604','Saint-quay-portrieux','SAINT-QUAY-PORTRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23912,'5685','Saint-quentin','SAINT-QUENTIN',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23913,'41293','Saint-quentin-en-yvelines','SAINT-QUENTIN-EN-YVELINES',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23914,'6709','Saint-quentin-fallavier','SAINT-QUENTIN-FALLAVIER',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23915,'6710','Saint-quentin-sur-isere','SAINT-QUENTIN-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23916,'4994','Saint-quentin-sur-le-homme','SAINT-QUENTIN-SUR-LE-HOMME',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23917,'5257','Saint-raphael','SAINT-RAPHAEL',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23918,'4540','Saint-remy-de-provence','SAINT-REMY-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23919,'39787','Saint-rhemy-en-bosses','SAINT-RHEMY-EN-BOSSES',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23920,'6316','Saint-riquier','SAINT-RIQUIER',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23921,'37403','Saint-romain-de-colbosc','SAINT-ROMAIN-DE-COLBOSC',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23922,'39781','Saint-romain-la-motte','SAINT-ROMAIN-LA-MOTTE',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23923,'22887','Saint-romuald','SAINT-ROMUALD',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23924,'5062','Saint-saturnin','SAINT-SATURNIN',NULL,'','France','',0,0,76,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23925,'5120','Saint-saturnin-les-apt','SAINT-SATURNIN-LES-APT',NULL,'','France','',0,0,76,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23926,'4542','Saint-saturnin-lès-avignon','SAINT-SATURNIN-LÈS-AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23927,'4543','Saint-sauveur-de-landemont','SAINT-SAUVEUR-DE-LANDEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23928,'6370','Saint-saviol','SAINT-SAVIOL',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23929,'4978','Saint-sebastien-sur-loire','SAINT-SEBASTIEN-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23930,'6131','Saint-sernin-sur-rance','SAINT-SERNIN-SUR-RANCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23931,'23338','Saint-sulpice','SAINT-SULPICE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23932,'6010','Saint-sylvestre','SAINT-SYLVESTRE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23933,'5258','Saint-sylvestre-sur-lot','SAINT-SYLVESTRE-SUR-LOT',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23934,'4910','Saint-symphorien-le-chateau','SAINT-SYMPHORIEN-LE-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23935,'5102','Saint-thibault-des-vignes','SAINT-THIBAULT-DES-VIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23936,'5969','Saint-thibery','SAINT-THIBERY',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23937,'38121','Saint-trinit','SAINT-TRINIT',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23938,'44270','Saint-trojan-les-bains','SAINT-TROJAN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23939,'5423','Saint-vaast-la-hougue','SAINT-VAAST-LA-HOUGUE',NULL,'','France','',0,0,76,'2016-10-17 11:51:14','1900-01-01 00:00:00',1,0,1),(23940,'41291','Saint-valery-en-caux','SAINT-VALERY-EN-CAUX',NULL,'','France','',0,0,76,'2016-10-17 11:51:14','1900-01-01 00:00:00',1,0,1),(23941,'6528','Saint-vallier-de-thiey','SAINT-VALLIER-DE-THIEY',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23942,'6011','Saint-viance','SAINT-VIANCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23943,'41290','Saint-victor','SAINT-VICTOR',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23944,'5970','Saint-victor-de-malcap','SAINT-VICTOR-DE-MALCAP',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23945,'6529','Saint-victoret','SAINT-VICTORET',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23946,'5259','Saint-vincent-de-cosse','SAINT-VINCENT-DE-COSSE',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23947,'4801','Saint-witz','SAINT-WITZ',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23948,'40534','Saint-yrieix-la-perche','SAINT-YRIEIX-LA-PERCHE',NULL,'','France','',0,0,76,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23949,'41289','Saint-yrieix-sur-charente','SAINT-YRIEIX-SUR-CHARENTE',NULL,'','France','',0,0,76,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23950,'14209','Saipan','SAIPAN',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23951,'13187','Saitama','SAITAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23952,'38813','Saix','SAIX',NULL,'','France','',0,0,76,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23953,'17016','Saiyoke','SAIYOKE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23954,'13335','Sakai','SAKAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23955,'17372','Sakarya','SAKARYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23956,'13336','Sakata','SAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23957,'17068','Sakon Nakhon','SAKON NAKHON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23958,'16812','Sala','SALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23959,'22889','Salaberry De Valleyfield','SALABERRY DE VALLEYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23960,'17017','Saladan','SALADAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23961,'30906','Salado','SALADO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23962,'17018','Salak Kok','SALAK KOK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23963,'15285','Salalah','SALALAH',NULL,'','Oman','Salalah',0,0,165,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23964,'29099','Salamanca','SALAMANCA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23965,'3482','Salamanca','SALAMANCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23966,'13955','Salamanca','SALAMANCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23967,'29100','Salamanca, Town Of','SALAMANCA, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23968,'34308','Salamander Bay','SALAMANDER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23969,'3592','Salardu','SALARDU',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23970,'41936','Salas','SALAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23971,'42800','Salatiga','SALATIGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23972,'5260','Salaunes','SALAUNES',NULL,'','France','',0,0,76,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23973,'6711','Salavas','SALAVAS',NULL,'','France','',0,0,76,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23974,'15402','Salaverry','SALAVERRY',NULL,'','Peru','',0,0,172,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23975,'16813','Salbohed','SALBOHED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23976,'5686','Salbris','SALBRIS',NULL,'','France','',0,0,76,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23977,'8835','Salcombe','SALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23978,'8836','Salcott','SALCOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23979,'40142','Saldanha','SALDANHA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23980,'15892','Saldanha','SALDANHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23981,'26552','Sale','SALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23982,'8837','Sale','SALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23983,'32341','Salelologa','SALELOLOGA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23984,'10590','Salem','SALEM',NULL,'','India','Salem',18,0,101,'2016-10-17 11:51:27','1900-01-01 00:00:00',1,0,1),(23985,'12415','Salemi','SALEMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23986,'41227','Salen','SALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23987,'8838','Salen','SALEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23988,'12992','Salerno','SALERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23989,'35458','Salerno-ascea Marina','SALERNO-ASCEA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23990,'5348','Salers','SALERS',NULL,'','France','',0,0,76,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23991,'12914','Salgareda','SALGAREDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23992,'23339','Salgesch','SALGESCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23993,'16609','Salgovce','SALGOVCE',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23994,'40237','Salice Salentino','SALICE SALENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23995,'18847','Salida','SALIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:32','1900-01-01 00:00:00',1,0,1),(23996,'6530','Saliers','SALIERS',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23997,'42358','Salies-de-bearn','SALIES-DE-BEARN',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23998,'5261','Salies-de-béarn','SALIES-DE-BÉARN',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23999,'14281','Salima','SALIMA',NULL,'','Malawi','',0,0,131,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24000,'14190','Salina','SALINA',NULL,'','Malta','',0,0,135,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24001,'12417','Salina','SALINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24002,'33394','Salina','SALINA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24003,'18848','Salinas','SALINAS',NULL,'','United States','',0,0,231,'2016-10-17 11:51:36','1900-01-01 00:00:00',1,0,1),(24004,'2379','Salinas','SALINAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:51:36','1900-01-01 00:00:00',1,0,1),(24005,'16567','Salinitas','SALINITAS',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:51:37','1900-01-01 00:00:00',1,0,1),(24006,'40066','Salins-les-bains','SALINS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:51:37','1900-01-01 00:00:00',1,0,1),(24007,'8840','Salisbury','SALISBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:38','1900-01-01 00:00:00',1,0,1),(24008,'2106','Salisbury','SALISBURY',NULL,'','Dominica','',0,0,500,'2016-10-17 11:51:38','1900-01-01 00:00:00',1,0,1),(24009,'3931','Salla','SALLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24010,'6712','Sallanches','SALLANCHES',NULL,'','France','',0,0,76,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24011,'14478','Salland','SALLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24012,'5971','Salleles-d\'aude','SALLELES-D\'AUDE',NULL,'','France','',0,0,76,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24013,'2777','Sallent De Gallego','SALLENT DE GALLEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24014,'32953','Sallisaw','SALLISAW',NULL,'','United States','',0,0,231,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24015,'22890','Salluit','SALLUIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24016,'24538','Salmannsdorf','SALMANNSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24017,'42212','Salmiyah','SALMIYAH',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24018,'20397','Salmon','SALMON',NULL,'','United States','',0,0,231,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24019,'25532','Salmon Arm','SALMON ARM',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24020,'2481','Salobrena','SALOBRENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24021,'4865','Salon-de-provence','SALON-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24022,'3593','Salou','SALOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24023,'1058','Saloum','SALOUM',NULL,'','SENEGAL','',0,0,187,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24024,'38486','Salperwick','SALPERWICK',NULL,'','France','',0,0,76,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24025,'44236','Salsipuedes','SALSIPUEDES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24026,'35642','Salsomaggiore','SALSOMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24027,'3594','Salt','SALT',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24028,'38675','Salt','SALT',NULL,'','Jordan','',0,0,111,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24029,'16939','Salt Cay','SALT CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24030,'32534','Salt Rock','SALT ROCK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24031,'13093','Salt Spring','SALT SPRING',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24032,'25533','Salt Spring Island','SALT SPRING ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24033,'26139','Salta','SALTA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24034,'8841','Saltash','SALTASH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24035,'8842','Saltburn-by-the-sea','SALTBURN-BY-THE-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24036,'3287','Salteras','SALTERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24037,'8843','Saltford','SALTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24038,'10760','Salthill','SALTHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24039,'33254','Saltillo','SALTILLO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24040,'14068','Saltillo','SALTILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24041,'12419','Saltino','SALTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24042,'17523','Salto','SALTO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24043,'36011','Salto Del Laja','SALTO DEL LAJA',NULL,'','Chile','',0,0,45,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24044,'37220','Saltsjo Boo','SALTSJO BOO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24045,'16843','Saltsjobaden','SALTSJOBADEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24046,'31224','Saltville','SALTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24047,'16378','Saltykovka','SALTYKOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24048,'33998','Saluda','SALUDA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24049,'25065','Salvador','SALVADOR',NULL,'','Brazil','',0,0,30,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24050,'41993','Salvaterra','SALVATERRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24051,'12421','Salvaterra Di Casalgrande','SALVATERRA DI CASALGRANDE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24052,'33999','Salvo','SALVO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24053,'1059','Saly','SALY',NULL,'','SENEGAL','',0,0,187,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24054,'44001','Salybia','SALYBIA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24055,'321','Salzburg','SALZBURG',NULL,'','Germany','Salzburg',0,0,83,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24056,'27277','Salzgitter','SALZGITTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24057,'2352','Samana','SAMANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24058,'16433','Samara','SAMARA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24059,'12423','Samarate','SAMARATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24060,'10334','Samarinda','SAMARINDA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24061,'32156','Samarkand','SAMARKAND',NULL,'','Uzbekistan','Samarkand',0,0,232,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24062,'6132','Samatan','SAMATAN',NULL,'','France','',0,0,76,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24063,'17311','Samatya','SAMATYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24064,'40182','Sambava','SAMBAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24065,'39508','Samburu','SAMBURU',NULL,'','Kenya','Samburu',0,0,113,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24066,'23081','Samedan','SAMEDAN',NULL,'','Switzerland','Samedan',0,0,210,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24067,'7286','Samford Peverell','SAMFORD PEVERELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24068,'9781','Sami','SAMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24069,'3686','Samieira','SAMIEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24070,'8844','Samlesbury','SAMLESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24071,'31608','Sammamish','SAMMAMISH',NULL,'','United States','',0,0,231,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24072,'38962','Sammichele Di Bari','SAMMICHELE DI BARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24073,'23340','Samnaun','SAMNAUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24074,'32338','Samoa','SAMOA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24075,'44283','Samoa Point','SAMOA POINT',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24076,'37104','Samoa-apia','SAMOA-APIA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24077,'37105','Samoa-mulifanua','SAMOA-MULIFANUA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24078,'37103','Samoa-saanapu','SAMOA-SAANAPU',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24079,'37107','Samoa-savai\'i Island','SAMOA-SAVAI\'I ISLAND',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24080,'37106','Samoa-siumu','SAMOA-SIUMU',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24081,'10467','Samode','SAMODE',NULL,'','India','',0,0,101,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24082,'41287','Samoens','SAMOENS',NULL,'','France','',0,0,76,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24083,'6713','Samoëns','SAMOËNS',NULL,'','France','',0,0,76,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24084,'38271','Samokov','SAMOKOV',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24085,'41642','Samora Correia','SAMORA CORREIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24086,'42482','Samothraki','SAMOTHRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24087,'15492','Sampaloc','SAMPALOC',NULL,'','Philippines','',0,0,173,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24088,'12424','Sampieri','SAMPIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24089,'17358','Samsun','SAMSUN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24090,'22401','Samtens','SAMTENS',NULL,'','Germany','',0,0,83,'2016-10-17 11:51:57','1900-01-01 00:00:00',1,0,1),(24091,'17077','Samut Prakan','SAMUT PRAKAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:57','1900-01-01 00:00:00',1,0,1),(24092,'41174','San Andres','SAN ANDRES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:51:58','1900-01-01 00:00:00',1,0,1),(24093,'24888','San Andros','SAN ANDROS',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:51:58','1900-01-01 00:00:00',1,0,1),(24094,'43396','San Anton','SAN ANTON',NULL,'','Malta','',0,0,135,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24095,'42782','San Antonio','SAN ANTONIO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24096,'32212','San Antonio','SAN ANTONIO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24097,'14210','San Antonio','SAN ANTONIO',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24098,'16109','San Bernardino','SAN BERNARDINO',NULL,'','Paraguay','',0,0,171,'2016-10-17 11:52:02','1900-01-01 00:00:00',1,0,1),(24099,'23552','San Bernardo','SAN BERNARDO',NULL,'','Chile','',0,0,45,'2016-10-17 11:52:03','1900-01-01 00:00:00',1,0,1),(24100,'17123','San Fernando','SAN FERNANDO',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:52:10','1900-01-01 00:00:00',1,0,1),(24101,'15765','San German','SAN GERMAN',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:52:12','1900-01-01 00:00:00',1,0,1),(24102,'24902','San Ignacio','SAN IGNACIO',NULL,'','Belize','',0,0,22,'2016-10-17 11:52:15','1900-01-01 00:00:00',1,0,1),(24103,'43696','San Ignacio','SAN IGNACIO',NULL,'','Honduras','',0,0,97,'2016-10-17 11:52:15','1900-01-01 00:00:00',1,0,1),(24104,'14449','San Juan Del Sur','SAN JUAN DEL SUR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:52:19','1900-01-01 00:00:00',1,0,1),(24105,'16579','San Marino','SAN MARINO',NULL,'','San Marino','',0,0,184,'2016-10-17 11:52:24','1900-01-01 00:00:00',1,0,1),(24106,'16573','San Miguel','SAN MIGUEL',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:52:27','1900-01-01 00:00:00',1,0,1),(24107,'25833','San Nicolas','SAN NICOLAS',NULL,'','Aruba','',0,0,12,'2016-10-17 11:52:27','1900-01-01 00:00:00',1,0,1),(24108,'41653','Sana','SANA',NULL,'','Yemen','',0,0,240,'2016-10-17 11:52:37','1900-01-01 00:00:00',1,0,1),(24109,'32356','Sana\'a','SANA\'A',NULL,'','Yemen','',0,0,240,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24110,'13337','Sanada','SANADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24111,'10345','Sanana','SANANA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24112,'11435','Sanarica','SANARICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24113,'1596','Sanary','SANARY',NULL,'','France','',0,0,76,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24114,'6531','Sanary-sur-mer','SANARY-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24115,'32761','Sanbornton','SANBORNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24116,'23630','Sanbu','SANBU',NULL,'','China','',0,0,46,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24117,'41286','Sancerre','SANCERRE',NULL,'','France','',0,0,76,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24118,'37907','Sanchi','SANCHI',NULL,'','India','Sanchi',15,0,101,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24119,'17414','Sanchung','SANCHUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24120,'3139','Sancibrian','SANCIBRIAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24121,'41201','Sancti Spiritus','SANCTI SPIRITUS',NULL,'','Cuba','',0,0,56,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24122,'42918','Sanctuary Cove','SANCTUARY COVE',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24123,'5497','Sancy','SANCY',NULL,'','France','',0,0,76,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24124,'22628','Sand','SAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24125,'35762','Sanda','SANDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24126,'14393','Sandakan','SANDAKAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24127,'14985','Sandane','SANDANE',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24128,'24813','Sandanski','SANDANSKI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24129,'7287','Sanday','SANDAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24130,'8845','Sandbach','SANDBACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24131,'562','Sandebeck','SANDEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24132,'15026','Sandefjord','SANDEFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24133,'30915','Sanderson','SANDERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24134,'8846','Sanderstead','SANDERSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24135,'19913','Sandersville','SANDERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24136,'19599','Sandestin','SANDESTIN',NULL,'','United States','',0,0,231,'2016-10-17 11:52:44','1900-01-01 00:00:00',1,0,1),(24137,'7288','Sandford-on-thames','SANDFORD-ON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:44','1900-01-01 00:00:00',1,0,1),(24138,'26753','Sandgate','SANDGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24139,'3989','Sandhamn','SANDHAMN',NULL,'','Finland','',0,0,75,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24140,'28568','Sandia','SANDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24141,'8847','Sandiacre','SANDIACRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:46','1900-01-01 00:00:00',1,0,1),(24142,'21521','Sandisfield','SANDISFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:52:46','1900-01-01 00:00:00',1,0,1),(24143,'15032','Sandnes','SANDNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24144,'14928','Sandnessjoen','SANDNESSJOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24145,'38219','Sandoeverken','SANDOEVERKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24146,'8848','Sandown','SANDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24147,'32601','Sandown','SANDOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24148,'20398','Sandpoint','SANDPOINT',NULL,'','United States','',0,0,231,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24149,'12478','Sandrigo','SANDRIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24150,'26932','Sandringham','SANDRINGHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24151,'15030','Sandsli','SANDSLI',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24152,'25534','Sandspit','SANDSPIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24153,'32602','Sandton','SANDTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24154,'6823','Sandur','SANDUR',NULL,'','Faroe Islands','',0,0,73,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24155,'29517','Sandusky','SANDUSKY',NULL,'','United States','',0,0,231,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24156,'2166','Sandvig','SANDVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24157,'16791','Sandviken','SANDVIKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24158,'43187','Sandwell','SANDWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24159,'21522','Sandwich','SANDWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24160,'8849','Sandwich','SANDWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:52','1900-01-01 00:00:00',1,0,1),(24161,'8850','Sandy','SANDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:52','1900-01-01 00:00:00',1,0,1),(24162,'26866','Sandy Bay','SANDY BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24163,'13079','Sandy Bay','SANDY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24164,'25863','Sandy Ground','SANDY GROUND',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24165,'34633','Sandy Lake','SANDY LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24166,'16949','Sandy Point','SANDY POINT',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24167,'21921','Sanford','SANFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:52:54','1900-01-01 00:00:00',1,0,1),(24168,'12479','Sangano','SANGANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24169,'3688','Sangenjo','SANGENJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24170,'30916','Sanger','SANGER',NULL,'','United States','',0,0,231,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24171,'37846','Sangerhausen','SANGERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24172,'2409','Sangolqui','SANGOLQUI',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24173,'37400','Sangudo','SANGUDO',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24174,'36829','Sanhsia','SANHSIA',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24175,'23973','Sanhua','SANHUA',NULL,'','China','',0,0,46,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24176,'19601','Sanibel','SANIBEL',NULL,'','United States','',0,0,231,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24177,'25808','Sanikiluaq','SANIKILUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24178,'40544','Sanjo','SANJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24179,'10591','Sankrail','SANKRAIL',NULL,'','India','',0,0,101,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24180,'39734','Sankt Andreasberg','SANKT ANDREASBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24181,'24595','Sankt-vith','SANKT-VITH',NULL,'','Belgium','',0,0,21,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24182,'17364','Sanliurfa','SANLIURFA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24183,'35057','Sanlucar De Barramed','SANLUCAR DE BARRAMED',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24184,'23797','Sanmenxia','SANMENXIA',NULL,'','China','',0,0,46,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24185,'23778','Sanming','SANMING',NULL,'','China','',0,0,46,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24186,'14202','Sannat','SANNAT',NULL,'','Malta','',0,0,135,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24187,'40125','Sannicandro Di Bari','SANNICANDRO DI BARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24188,'39704','Sannicola','SANNICOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24189,'41283','Sannois','SANNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24190,'4545','Sannois-ermont','SANNOIS-ERMONT',NULL,'','France','',0,0,76,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24191,'8851','Sanquhar','SANQUHAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24192,'17022','Sansai','SANSAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24193,'12480','Sansepolcro','SANSEPOLCRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24194,'17415','Sansia','SANSIA',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24195,'25883','Sant Julia De Loria','SANT JULIA DE LORIA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:53:07','1900-01-01 00:00:00',1,0,1),(24196,'15383','Santa','SANTA',NULL,'','Peru','',0,0,172,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24197,'24948','Santa Ana','SANTA ANA',NULL,'','Bolivia','Santa Ana',0,0,26,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24198,'16557','Santa Ana','SANTA ANA',NULL,'','Solomon Islands','Santa Ana',0,0,193,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24199,'15475','Santa Ana','SANTA ANA',NULL,'','Philippines','Santa Ana',0,0,173,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24200,'32181','Santa Barbara','SANTA BARBARA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:53:09','1900-01-01 00:00:00',1,0,1),(24201,'26058','Santa Catalina','SANTA CATALINA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:53:10','1900-01-01 00:00:00',1,0,1),(24202,'41622','Santa Catarina','SANTA CATARINA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:53:10','1900-01-01 00:00:00',1,0,1),(24203,'42658','Santa Clara','SANTA CLARA',NULL,'','Panama','',0,0,169,'2016-10-17 11:53:11','1900-01-01 00:00:00',1,0,1),(24204,'39996','Santa Cruz','SANTA CRUZ',NULL,'','Aruba','',0,0,12,'2016-10-17 11:53:14','1900-01-01 00:00:00',1,0,1),(24205,'23491','Santa Cruz','SANTA CRUZ',NULL,'','Chile','',0,0,45,'2016-10-17 11:53:14','1900-01-01 00:00:00',1,0,1),(24206,'10468','Santa Cruz Domestic Airport (Bom)','SANTA CRUZ DOMESTIC AIRPORT (BOM)',NULL,'','India','',0,0,101,'2016-10-17 11:53:16','1900-01-01 00:00:00',1,0,1),(24207,'9876','Santa Elena','SANTA ELENA',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:53:16','1900-01-01 00:00:00',1,0,1),(24208,'15766','Santa Isabel','SANTA ISABEL',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24209,'2436','Santa Katarina','SANTA KATARINA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24210,'1085','Santa Lucia','SANTA LUCIA',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24211,'24147','Santa Maria','SANTA MARIA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:19','1900-01-01 00:00:00',1,0,1),(24212,'24130','Santa Marta','SANTA MARTA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:53:22','1900-01-01 00:00:00',1,0,1),(24213,'9959','Santa Rosa Copan','SANTA ROSA COPAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:53:25','1900-01-01 00:00:00',1,0,1),(24214,'41284','Santaella','SANTAELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:27','1900-01-01 00:00:00',1,0,1),(24215,'12493','Sant\'agata Di Militello','SANT\'AGATA DI MILITELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:27','1900-01-01 00:00:00',1,0,1),(24216,'12495','Sant\'agnello','SANT\'AGNELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24217,'12496','Sant\'alessio Siculo','SANT\'ALESSIO SICULO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24218,'37264','Santa-lucia-di-moriani','SANTA-LUCIA-DI-MORIANI',NULL,'','France','',0,0,76,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24219,'15961','Santana','SANTANA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24220,'39318','Santanatolia Di Narco','SANTANATOLIA DI NARCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24221,'3140','Santander','SANTANDER',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24222,'35088','Santander-suances','SANTANDER-SUANCES',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24223,'38044','Santandrea Apostolo Dello Ionio','SANTANDREA APOSTOLO DELLO IONIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24224,'37779','Santandria','SANTANDRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24225,'38261','Santangelo A Fasanella','SANTANGELO A FASANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24226,'12832','Sant\'anna Arresi','SANT\'ANNA ARRESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24227,'38722','Santantimo','SANTANTIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24228,'12833','Sant\'antioco','SANT\'ANTIOCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24229,'35648','Sant\'antonio Abate','SANT\'ANTONIO ABATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24230,'2931','Santany','SANTANY',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24231,'41282','Santanyi','SANTANYI',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24232,'16050','Santarem','SANTAREM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24233,'25105','Santarem','SANTAREM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24234,'12497','Sante Marie','SANTE MARIE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24235,'18899','Santee','SANTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:32','1900-01-01 00:00:00',1,0,1),(24236,'34002','Santeetlah','SANTEETLAH',NULL,'','United States','',0,0,231,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24237,'12498','Sant\'elia Fiumerapido','SANT\'ELIA FIUMERAPIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24238,'5498','Santenay','SANTENAY',NULL,'','France','',0,0,76,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24239,'37927','Santeramo In Colle','SANTERAMO IN COLLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24240,'12499','Sant\'eufemia Lamezia','SANT\'EUFEMIA LAMEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24241,'23555','Santiago','SANTIAGO',NULL,'','Chile','Santiago',0,0,45,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24242,'13941','Santiago','SANTIAGO',NULL,'','Mexico','Santiago',0,0,141,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24243,'2359','Santiago','SANTIAGO',NULL,'','Dominican Republic','Santiago',0,0,61,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24244,'15345','Santiago','SANTIAGO',NULL,'','Panama','Santiago',0,0,169,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24245,'2806','Santiago Bernabeu - Castellana','SANTIAGO BERNABEU - CASTELLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24246,'1638','Santiago Cacem','SANTIAGO CACEM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24247,'34945','Santiago De Cuba','SANTIAGO DE CUBA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:53:35','1900-01-01 00:00:00',1,0,1),(24248,'26149','Santiago Del Estero','SANTIAGO DEL ESTERO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:53:35','1900-01-01 00:00:00',1,0,1),(24249,'36137','Santiago-la Estrada','SANTIAGO-LA ESTRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24250,'12500','Sant\'ilario D\'enza','SANT\'ILARIO D\'ENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24251,'3141','Santillana','SANTILLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24252,'5499','Santilly','SANTILLY',NULL,'','France','',0,0,76,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24253,'12501','Santissima Annunziata','SANTISSIMA ANNUNZIATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24254,'24148','Santo Antao','SANTO ANTAO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24255,'24191','Santo Domingo','SANTO DOMINGO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24256,'2360','Santo Domingo','SANTO DOMINGO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24257,'37089','Santo-aore Island','SANTO-AORE ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:39','1900-01-01 00:00:00',1,0,1),(24258,'37091','Santo-bokissa Island','SANTO-BOKISSA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:39','1900-01-01 00:00:00',1,0,1),(24259,'38454','Santomobono Imagna','SANTOMOBONO IMAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24260,'7289','Santon','SANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24261,'35053','Santona','SANTONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24262,'12505','Sant\'onofrio','SANT\'ONOFRIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24263,'37556','Santorcaz','SANTORCAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24264,'40947','Santorini','SANTORINI',NULL,'','Greece','Santorini',0,0,86,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24265,'36367','Santorini-akrotiri','SANTORINI-AKROTIRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24266,'35291','Santorini-fira Town','SANTORINI-FIRA TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24267,'35237','Santorini-imerovigli','SANTORINI-IMEROVIGLI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24268,'35247','Santorini-kamari','SANTORINI-KAMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24269,'35265','Santorini-monolithos','SANTORINI-MONOLITHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24270,'35273','Santorini-oia','SANTORINI-OIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24271,'35283','Santorini-perissa','SANTORINI-PERISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24272,'35285','Santorini-perivoloes','SANTORINI-PERIVOLOES',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24273,'14655','Santpoort-noord','SANTPOORT-NOORD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24274,'10857','Santry','SANTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24275,'15767','Santurce','SANTURCE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24276,'2810','Santurtzi','SANTURTZI',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24277,'10276','Sanur','SANUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24278,'41276','Sanxenxo','SANXENXO',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24279,'41158','Sao Felipe','SAO FELIPE',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:43','1900-01-01 00:00:00',1,0,1),(24280,'40341','São Pedro Do Sul','SÃO PEDRO DO SUL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:44','1900-01-01 00:00:00',1,0,1),(24281,'16583','Sao Tome Island','SAO TOME ISLAND',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 11:53:44','1900-01-01 00:00:00',1,0,1),(24282,'4546','Saone-et-loire','SAONE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24283,'32270','Sapa','SAPA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24284,'17277','Sapanca','SAPANCA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24285,'28574','Sapello','SAPELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24286,'19915','Sapelo Island','SAPELO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:53:46','1900-01-01 00:00:00',1,0,1),(24287,'35646','Sappada','SAPPADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:46','1900-01-01 00:00:00',1,0,1),(24288,'34003','Sapphire','SAPPHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24289,'34309','Sapphire Coast','SAPPHIRE COAST',NULL,'','Australia','',0,0,13,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24290,'13391','Sapporo','SAPPORO',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24291,'35707','Sapporo-chitose','SAPPORO-CHITOSE',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24292,'35718','Sapporo-jozankei','SAPPORO-JOZANKEI',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24293,'12712','Sapri','SAPRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24294,'32956','Sapulpa','SAPULPA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24295,'44459','Saputara','SAPUTARA',NULL,'','India','',0,0,101,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24296,'37338','Saquarema','SAQUAREMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24297,'32324','Sara','SARA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24298,'43074','Saraburi','SARABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24299,'24893','Sarajevo','SARAJEVO',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24300,'17947','Saraland','SARALAND',NULL,'','United States','',0,0,231,'2016-10-17 11:53:49','1900-01-01 00:00:00',1,0,1),(24301,'29102','Saranac Lake','SARANAC LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24302,'43561','Saranda','SARANDA',NULL,'','Albania','',0,0,2,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24303,'25869','Sarande','SARANDE',NULL,'','Albania','',0,0,2,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24304,'16249','Saransk','SARANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24305,'44284','Saraotou','SARAOTOU',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24306,'24228','Sarapiqui','SARAPIQUI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24307,'19603','Sarasota','SARASOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24308,'32132','Saratoga','SARATOGA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:51','1900-01-01 00:00:00',1,0,1),(24309,'16449','Saratov','SARATOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24310,'13543','Saravan','SARAVAN',NULL,'','Laos','',0,0,118,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24311,'12506','Sarcedo','SARCEDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24312,'4802','Sarcelles','SARCELLES',NULL,'','France','',0,0,76,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24313,'39685','Sardar Samand','SARDAR SAMAND',NULL,'','India','',0,0,101,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24314,'12834','Sardara','SARDARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24315,'42584','Sardargarh','SARDARGARH',NULL,'','India','',0,0,101,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24317,'43311','Sardinia-bosa','SARDINIA-BOSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24318,'27912','Sardis','SARDIS',NULL,'','United States','',0,0,231,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24319,'5262','Sare','SARE',NULL,'','France','',0,0,76,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24320,'10592','Sarenga','SARENGA',NULL,'','India','',0,0,101,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24321,'2811','S\'argamassa','S\'ARGAMASSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:56','1900-01-01 00:00:00',1,0,1),(24322,'33535','Sargents','SARGENTS',NULL,'','United States','',0,0,231,'2016-10-17 11:53:56','1900-01-01 00:00:00',1,0,1),(24323,'21922','Sargentville','SARGENTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24324,'15327','Sargodha','SARGODHA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24325,'17224','Sarigerme','SARIGERME',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24326,'44317','Sarikamis','SARIKAMIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24327,'26431','Sarina','SARINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24328,'42582','Sariska National Park','SARISKA NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24329,'7290','Sark','SARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24330,'40619','Sarkisla','SARKISLA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24331,'4905','Sarlat-la-caneda','SARLAT-LA-CANEDA',NULL,'','France','',0,0,76,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24332,'10318','Sarmi','SARMI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24333,'12507','Sarnano','SARNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24334,'34634','Sarnia','SARNIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24335,'13056','Sarnonico','SARNONICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24336,'9592','Saronic Islands','SARONIC ISLANDS',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24337,'12509','Saronno','SARONNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24338,'14963','Sarpsborg','SARPSBORG',NULL,'','Norway','',0,0,164,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24339,'41905','Sarramea','SARRAMEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24340,'6133','Sarrazac','SARRAZAC',NULL,'','France','',0,0,76,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24341,'40701','Sarre','SARRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24342,'4547','Sarreguemines','SARREGUEMINES',NULL,'','France','',0,0,76,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24343,'2812','Sarria','SARRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24344,'2814','Sarrià De Ter','SARRIÀ DE TER',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24345,'2815','Sarria-sant Gervasi','SARRIA-SANT GERVASI',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24346,'10593','Sarsa','SARSA',NULL,'','India','',0,0,101,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24347,'27278','Sarstedt','SARSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24348,'35649','Sarteano','SARTEANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24349,'27510','Sartell','SARTELL',NULL,'','United States','',0,0,231,'2016-10-17 11:54:02','1900-01-01 00:00:00',1,0,1),(24350,'39608','Sartene','SARTENE',NULL,'','France','',0,0,76,'2016-10-17 11:54:02','1900-01-01 00:00:00',1,0,1),(24351,'4803','Sartrouville','SARTROUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24352,'10115','Sarvar','SARVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24353,'12510','Sarzana','SARZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24354,'5605','Sarzeau','SARZEAU',NULL,'','France','',0,0,76,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24355,'18200','Sasabe','SASABE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24356,'10667','Sasan','SASAN',NULL,'','India','',0,0,101,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24357,'39500','Sasang','SASANG',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24358,'22631','Sasbachwalden','SASBACHWALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24359,'13401','Sasebo','SASEBO',NULL,'','Japan','',0,0,110,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24360,'22963','Saskatoon','SASKATOON',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24361,'43654','Sassafras','SASSAFRAS',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24362,'12835','Sassari','SASSARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24363,'14732','Sassenheim','SASSENHEIM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24364,'5831','Sassetot-le-mauconduit','SASSETOT-LE-MAUCONDUIT',NULL,'','France','',0,0,76,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24365,'12511','Sassetta','SASSETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24366,'22403','Sassnitz','SASSNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24367,'12513','Sassuolo','SASSUOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24368,'3343','Sastago','SASTAGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24369,'21129','Satanta','SATANTA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24370,'38480','Satara','SATARA',NULL,'','South Africa','Satara',0,0,195,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24371,'19605','Satellite Beach','SATELLITE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24372,'6714','Sathonay-village','SATHONAY-VILLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24373,'23438','Satigny','SATIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24374,'6715','Satillieu','SATILLIEU',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24375,'38702','Satna','SATNA',NULL,'','India','Satna',15,0,101,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24376,'6716','Satolas','SATOLAS',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24377,'38016','Satriano','SATRIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24378,'39941','Satsuma','SATSUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24379,'42581','Sattal','SATTAL',NULL,'','India','',0,0,101,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24380,'27143','Sattledt','SATTLEDT',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24381,'16229','Satu Mare','SATU MARE',NULL,'','Romania','',0,0,179,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24382,'41702','Satun','SATUN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24383,'12514','Saturnia','SATURNIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24384,'5264','Saubusse','SAUBUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24385,'41931','Saucelle','SAUCELLE',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24386,'14969','Sauda','SAUDA',NULL,'','Norway','',0,0,164,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24387,'10993','Saudarkrokur','SAUDARKROKUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24388,'322','Sauerlach','SAUERLACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24389,'22404','Sauerland','SAUERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24390,'22236','Saugatuck','SAUGATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24391,'29105','Saugerties','SAUGERTIES',NULL,'','United States','',0,0,231,'2016-10-17 11:54:12','1900-01-01 00:00:00',1,0,1),(24392,'21523','Saugus','SAUGUS',NULL,'','United States','',0,0,231,'2016-10-17 11:54:12','1900-01-01 00:00:00',1,0,1),(24393,'31878','Saukville','SAUKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:14','1900-01-01 00:00:00',1,0,1),(24394,'6717','Saulce-sur-rhone','SAULCE-SUR-RHONE',NULL,'','France','',0,0,76,'2016-10-17 11:54:14','1900-01-01 00:00:00',1,0,1),(24395,'37466','Saulges','SAULGES',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24396,'5500','Saulieu','SAULIEU',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24397,'4549','Saulon La Rue','SAULON LA RUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24398,'44103','Saulon-la-rue','SAULON-LA-RUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24399,'40953','Sault Ste Marie','SAULT STE MARIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24400,'22237','Sault Ste. Marie','SAULT STE. MARIE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24401,'42975','Saulx Les Chartreux','SAULX LES CHARTREUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24402,'4804','Saulx-les-chartreux','SAULX-LES-CHARTREUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24403,'6532','Saumane-de-vaucluse','SAUMANE-DE-VAUCLUSE',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24404,'4988','Saumur','SAUMUR',NULL,'','France','',0,0,76,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24405,'8852','Saundersfoot','SAUNDERSFOOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24406,'7291','Saunton','SAUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24407,'15045','Sauraha','SAURAHA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24408,'38393','Saurbaer','SAURBAER',NULL,'','Iceland','',0,0,100,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24409,'25860','Saurimo','SAURIMO',NULL,'','Angola','',0,0,6,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24410,'18901','Sausalito','SAUSALITO',NULL,'','United States','',0,0,231,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24411,'6789','Sausheim','SAUSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24412,'39083','Sausset-les-pins','SAUSSET-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24413,'39396','Sautee','SAUTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24414,'39286','Sautens','SAUTENS',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24415,'6273','Sautron','SAUTRON',NULL,'','France','',0,0,76,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24416,'5265','Sauveterre','SAUVETERRE',NULL,'','France','',0,0,76,'2016-10-17 11:54:21','1900-01-01 00:00:00',1,0,1),(24417,'4551','Sauveterre-de-bearn','SAUVETERRE-DE-BEARN',NULL,'','France','',0,0,76,'2016-10-17 11:54:21','1900-01-01 00:00:00',1,0,1),(24418,'4552','Sauveterre-de-comminges','SAUVETERRE-DE-COMMINGES',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24419,'6134','Sauveterre-de-rouergue','SAUVETERRE-DE-ROUERGUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24420,'5501','Sauvigny-le-bois','SAUVIGNY-LE-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24421,'41690','Sauze D Oulx','SAUZE D OULX',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24422,'40208','Sauzon','SAUZON',NULL,'','France','',0,0,76,'2016-10-17 11:54:23','1900-01-01 00:00:00',1,0,1),(24423,'27513','Savage','SAVAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:23','1900-01-01 00:00:00',1,0,1),(24424,'25834','Savaneta','SAVANETA',NULL,'','Aruba','',0,0,12,'2016-10-17 11:54:24','1900-01-01 00:00:00',1,0,1),(24425,'13069','Savanna La Mar','SAVANNA LA MAR',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:54:25','1900-01-01 00:00:00',1,0,1),(24426,'19916','Savannah','SAVANNAH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:25','1900-01-01 00:00:00',1,0,1),(24427,'24877','Savannah Sound','SAVANNAH SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24428,'13550','Savannakhet','SAVANNAKHET',NULL,'','Laos','',0,0,118,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24429,'38149','Savas','SAVAS',NULL,'','France','',0,0,76,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24430,'13041','Savelletri','SAVELLETRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24431,'32133','Savery','SAVERY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24432,'12516','Savigliano','SAVIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24433,'5266','Savignac-les-eglises','SAVIGNAC-LES-EGLISES',NULL,'','France','',0,0,76,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24434,'39842','Savignano Sul Rubicone','SAVIGNANO SUL RUBICONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24435,'6718','Savigneux','SAVIGNEUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24436,'40499','Savignone','SAVIGNONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24437,'23347','Savigny','SAVIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24438,'4553','Savigny Sur Braye','SAVIGNY SUR BRAYE',NULL,'','France','',0,0,76,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24439,'5872','Savigny-le-temple','SAVIGNY-LE-TEMPLE',NULL,'','France','',0,0,76,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24440,'4805','Savigny-sur-orge','SAVIGNY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24441,'16559','Savo','SAVO',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24442,'38668','Savoca','SAVOCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24443,'23348','Savognin','SAVOGNIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24444,'25535','Savona','SAVONA',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24445,'12781','Savona','SAVONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24446,'3942','Savonlinna','SAVONLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24447,'5688','Savonnieres','SAVONNIERES',NULL,'','France','',0,0,76,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24448,'17763','Savoonga','SAVOONGA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24449,'33046','Savoy','SAVOY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24450,'16723','Savsjo','SAVSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24451,'10038','Savudrija','SAVUDRIJA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24452,'4072','Savusavu','SAVUSAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24453,'10594','Sawai Madhopur','SAWAI MADHOPUR',NULL,'','India','Sawai Madhopur',2,0,101,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24455,'8853','Sawbridgeworth','SAWBRIDGEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24456,'7292','Sawrey','SAWREY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24457,'34310','Sawtell','SAWTELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24458,'8854','Sawtry','SAWTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24459,'10261','Sawu','SAWU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:54:36','1900-01-01 00:00:00',1,0,1),(24460,'22238','Sawyer','SAWYER',NULL,'','United States','',0,0,231,'2016-10-17 11:54:36','1900-01-01 00:00:00',1,0,1),(24461,'31387','Saxtons River','SAXTONS RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24462,'13190','Sayama','SAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24463,'32958','Sayre','SAYRE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24464,'14021','Sayula','SAYULA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24465,'14053','Sayulita','SAYULITA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24466,'37109','Say\'un','SAY\'UN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24467,'37473','Saze','SAZE',NULL,'','France','',0,0,76,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24468,'38553','Scafati','SCAFATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24469,'11442','Scala','SCALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24470,'12517','Scalea','SCALEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24471,'34004','Scaly Mountain','SCALY MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24472,'26867','Scamander','SCAMANDER',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24473,'17764','Scammon Bay','SCAMMON BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24474,'12965','Scandicci','SCANDICCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24475,'12518','Scansano','SCANSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24476,'25626','Scanterbury','SCANTERBURY',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24477,'11443','Scanzano Jonico','SCANZANO JONICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24478,'40168','Scanzorosciate','SCANZOROSCIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24479,'34636','Scarborough','SCARBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24480,'9341','Scarborough','SCARBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24481,'21923','Scarborough','SCARBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24482,'17139','Scarborough','SCARBOROUGH',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24483,'12519','Scario','SCARIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24484,'7293','Scarista','SCARISTA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24485,'12520','Scarlino','SCARLINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24486,'37754','Scarmagno','SCARMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24487,'12521','Scarperia','SCARPERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24488,'10794','Scarriff','SCARRIFF',NULL,'','Ireland','',0,0,105,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24489,'29106','Scarsdale','SCARSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24490,'12522','Scauri','SCAURI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24491,'12952','Scena','SCENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24492,'38993','Scerni','SCERNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24493,'24644','Schaarbeek','SCHAARBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24494,'737','Schackendorf','SCHACKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24495,'43768','Schaerding','SCHAERDING',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24496,'23349','Schaffhausen','SCHAFFHAUSEN',NULL,'','Switzerland','Schaffhausen',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24497,'14656','Schagen','SCHAGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24498,'22633','Schallstadt','SCHALLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24499,'38211','S-chanf','S-CHANF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24500,'23350','Schangnau','SCHANGNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24501,'1849','Schaprode','SCHAPRODE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24502,'38096','Scharbeutz','SCHARBEUTZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24503,'27144','Scharding','SCHARDING',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24504,'37251','Scharnitz','SCHARNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24505,'20746','Schaumburg','SCHAUMBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24506,'24556','Scheffau Am Wilden Kaiser','SCHEFFAU AM WILDEN KAISER',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24507,'22891','Schefferville','SCHEFFERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24508,'12523','Scheggino','SCHEGGINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24509,'44156','Scheibenberg','SCHEIBENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24510,'37188','Scheidegg','SCHEIDEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24511,'1909','Schellerhau','SCHELLERHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24512,'738','Schellhorn','SCHELLHORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24513,'14657','Schellingwoude','SCHELLINGWOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24514,'30154','Schellsburg','SCHELLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24515,'29107','Schenectady','SCHENECTADY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24516,'739','Schenefeld','SCHENEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24517,'24645','Schepdaal','SCHEPDAAL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24518,'20980','Schererville','SCHERERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24519,'564','Schermbeck','SCHERMBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24520,'30917','Schertz','SCHERTZ',NULL,'','United States','',0,0,231,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24521,'22409','Schesslitz','SCHESSLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24522,'41044','Scheveningen','SCHEVENINGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24523,'14733','Schiedam','SCHIEDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24524,'565','Schieder-schwalenberg','SCHIEDER-SCHWALENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24525,'38697','Schiefling Am See','SCHIEFLING AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24526,'1948','Schierke','SCHIERKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24527,'43899','Schiermonnikoog','SCHIERMONNIKOOG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24528,'13026','Schignano','SCHIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24529,'39445','Schildow','SCHILDOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24530,'20748','Schiller Park','SCHILLER PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24531,'27279','Schillig','SCHILLIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24532,'323','Schillingsfurst','SCHILLINGSFURST',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24533,'6790','Schiltigheim','SCHILTIGHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24534,'40584','Schindellegi','SCHINDELLEGI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24535,'35558','Schio','SCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24536,'14658','Schiphol','SCHIPHOL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24537,'6791','Schirmeck','SCHIRMECK',NULL,'','France','',0,0,76,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24538,'1910','Schkeuditz','SCHKEUDITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24539,'1949','Schkopau','SCHKOPAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24540,'476','Schlangenbad','SCHLANGENBAD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24541,'23351','Schlatt','SCHLATT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24542,'37677','Schleching','SCHLECHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24543,'566','Schleiden','SCHLEIDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24544,'40218','Schlemmin','SCHLEMMIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24545,'23352','Schlieren','SCHLIEREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24546,'324','Schliersee','SCHLIERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24547,'39982','Schlossbockelheim','SCHLOSSBOCKELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24548,'22634','Schluchsee','SCHLUCHSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24549,'22410','Schluechtern','SCHLUECHTERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24550,'42442','Schluesselfeld','SCHLUESSELFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24551,'325','Schlusselfeld','SCHLUSSELFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24552,'1983','Schmalkalden','SCHMALKALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24553,'567','Schmallenberg','SCHMALLENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24554,'803','Schmargendorf','SCHMARGENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24555,'2012','Schmockwitz','SCHMOCKWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24556,'22411','Schmoelln','SCHMOELLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24557,'40093','Schnaittach','SCHNAITTACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24558,'326','Schneeberg','SCHNEEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24559,'327','Schneizlreuth','SCHNEIZLREUTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24560,'36093','Schnelldorf','SCHNELLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24561,'22635','Schnetzenhausen','SCHNETZENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24562,'27280','Schneverdingen','SCHNEVERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24563,'14243','Schoelcher','SCHOELCHER',NULL,'','Martinique','',0,0,137,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24564,'43264','Schoenberg','SCHOENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24565,'38332','Schoenberg Am Kamp','SCHOENBERG AM KAMP',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24566,'40775','Schoenberg-lachtal','SCHOENBERG-LACHTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24567,'39887','Schoenebeck','SCHOENEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24568,'41014','Schoenefeld','SCHOENEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24569,'23082','Schoenengrund','SCHOENENGRUND',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24570,'22412','Schoenwald','SCHOENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24571,'31879','Schofield','SCHOFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:00','1900-01-01 00:00:00',1,0,1),(24572,'29108','Schoharie','SCHOHARIE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:00','1900-01-01 00:00:00',1,0,1),(24573,'42481','Schoinoussa','SCHOINOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24574,'22636','Schomberg','SCHOMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24575,'22637','Schonach','SCHONACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24576,'328','Schonau Am Konigssee','SCHONAU AM KONIGSSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24577,'22470','Schonberg','SCHONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24578,'22413','Schöneck','SCHÖNECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24579,'804','Schonefeld','SCHONEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24580,'23353','Schonenwerd','SCHONENWERD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24581,'805','Schonewalde','SCHONEWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24582,'806','Schonheide','SCHONHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24583,'2057','Schönmünzach','SCHÖNMÜNZACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24584,'36','Schonried','SCHONRIED',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24585,'41626','Schonwald','SCHONWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24586,'40762','Schoonlo','SCHOONLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24587,'14659','Schoorl','SCHOORL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24588,'24527','Schoppernau','SCHOPPERNAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24589,'2088','Schöppingen','SCHÖPPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24590,'1911','Schopsdorf','SCHOPSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24591,'1850','Schorssow','SCHORSSOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24592,'39125','Schortens','SCHORTENS',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24593,'41619','Schotten','SCHOTTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24594,'22638','Schramberg','SCHRAMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24595,'21257','Schriever','SCHRIEVER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24596,'27026','Schroecken','SCHROECKEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:05','1900-01-01 00:00:00',1,0,1),(24597,'27514','Schroeder','SCHROEDER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:05','1900-01-01 00:00:00',1,0,1),(24598,'29109','Schroon Lake','SCHROON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24599,'24528','Schruns','SCHRUNS',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24600,'14700','Schuddebeurs','SCHUDDEBEURS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24601,'39207','Schuettorf','SCHUETTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24602,'30918','Schulenburg','SCHULENBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24603,'23354','Schupfen','SCHUPFEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24604,'37773','Schuttrange','SCHUTTRANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24605,'28162','Schuyler','SCHUYLER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24606,'329','Schwabach','SCHWABACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24607,'22639','Schwabisch Gmund','SCHWABISCH GMUND',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24608,'42441','Schwaebisch Hall','SCHWAEBISCH HALL',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24609,'330','Schwaig','SCHWAIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24610,'331','Schwaig-oberding','SCHWAIG-OBERDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24611,'23083','Schwamendingen','SCHWAMENDINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24612,'22641','Schwanheim','SCHWANHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24613,'27281','Schwarmstedt','SCHWARMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24614,'38427','Schwartbuck','SCHWARTBUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24615,'27027','Schwarzenberg','SCHWARZENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24616,'22642','Schwarzenberg','SCHWARZENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24617,'333','Schwarzenbruck','SCHWARZENBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24618,'23355','Schwarzenburg','SCHWARZENBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24619,'807','Schwarzheide','SCHWARZHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24620,'1984','Schwarzmuhle','SCHWARZMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24621,'27116','Schwechat','SCHWECHAT',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24622,'660','Schwedelbach','SCHWEDELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24623,'808','Schwedt','SCHWEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24624,'23356','Schwefelbergbad','SCHWEFELBERGBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24625,'334','Schweinfurt','SCHWEINFURT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24626,'335','Schweitenkirchen','SCHWEITENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24627,'20400','Schweitzer Mountain','SCHWEITZER MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24628,'38950','Schwendt','SCHWENDT',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24629,'1851','Schwerin','SCHWERIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24630,'22643','Schwetzingen','SCHWETZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24631,'22644','Schwieberdingen','SCHWIEBERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24632,'1950','Schwielowsee','SCHWIELOWSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24633,'23357','Schwyz','SCHWYZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24634,'12850','Sciacca','SCIACCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24635,'12524','Scicli','SCICLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24636,'6719','Sciez','SCIEZ',NULL,'','France','',0,0,76,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24637,'40489','Scilla','SCILLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24638,'29519','Scio','SCIO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24639,'6720','Scionzier','SCIONZIER',NULL,'','France','',0,0,76,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24640,'33399','Scipio','SCIPIO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:15','1900-01-01 00:00:00',1,0,1),(24641,'21524','Scituate','SCITUATE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:15','1900-01-01 00:00:00',1,0,1),(24642,'12525','Scoglitti','SCOGLITTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24643,'8855','Scole','SCOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24644,'7294','Scone','SCONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24645,'34311','Scone','SCONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24646,'12526','Scopello','SCOPELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24647,'8856','Scorton','SCORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24648,'12920','Scorze','SCORZE',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24649,'9271','Scotch Corner','SCOTCH CORNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24650,'8857','Scotforth','SCOTFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24651,'21786','Scotland','SCOTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:55:18','1900-01-01 00:00:00',1,0,1),(24652,'30156','Scotrun','SCOTRUN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:19','1900-01-01 00:00:00',1,0,1),(24653,'19920','Scottdale','SCOTTDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:20','1900-01-01 00:00:00',1,0,1),(24654,'7295','Scottish Borders','SCOTTISH BORDERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:21','1900-01-01 00:00:00',1,0,1),(24655,'18902','Scotts Valley','SCOTTS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:21','1900-01-01 00:00:00',1,0,1),(24656,'28163','Scottsbluff','SCOTTSBLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:55:22','1900-01-01 00:00:00',1,0,1),(24657,'17948','Scottsboro','SCOTTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:23','1900-01-01 00:00:00',1,0,1),(24658,'20981','Scottsburg','SCOTTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:55:24','1900-01-01 00:00:00',1,0,1),(24659,'18201','Scottsdale','SCOTTSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:24','1900-01-01 00:00:00',1,0,1),(24660,'31226','Scottsville','SCOTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:25','1900-01-01 00:00:00',1,0,1),(24661,'30157','Scranton','SCRANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:55:26','1900-01-01 00:00:00',1,0,1),(24662,'12753','Scritto','SCRITTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:26','1900-01-01 00:00:00',1,0,1),(24663,'8858','Scunthorpe','SCUNTHORPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:27','1900-01-01 00:00:00',1,0,1),(24664,'23358','Scuol','SCUOL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:27','1900-01-01 00:00:00',1,0,1),(24665,'31611','Seabeck','SEABECK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:29','1900-01-01 00:00:00',1,0,1),(24666,'30919','Seabrook','SEABROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:29','1900-01-01 00:00:00',1,0,1),(24667,'32763','Seabrook, Town Of','SEABROOK, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:55:31','1900-01-01 00:00:00',1,0,1),(24668,'8859','Seaford','SEAFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24669,'19237','Seaford','SEAFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24670,'30920','Seagoville','SEAGOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24671,'19606','Seagrove Beach','SEAGROVE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24672,'9244','Seaham','SEAHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24673,'9248','Seahouses','SEAHOUSES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24674,'18904','Seal Beach','SEAL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:55:34','1900-01-01 00:00:00',1,0,1),(24675,'8860','Seale','SEALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:35','1900-01-01 00:00:00',1,0,1),(24676,'34006','Sealevel','SEALEVEL',NULL,'','United States','',0,0,231,'2016-10-17 11:55:35','1900-01-01 00:00:00',1,0,1),(24677,'30921','Sealy','SEALY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:36','1900-01-01 00:00:00',1,0,1),(24678,'29520','Seaman','SEAMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:36','1900-01-01 00:00:00',1,0,1),(24679,'18076','Searcy','SEARCY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24680,'21925','Searsport','SEARSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24681,'8861','Seascale','SEASCALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24682,'19607','Seaside','SEASIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:38','1900-01-01 00:00:00',1,0,1),(24683,'31612','Seatac','SEATAC',NULL,'','United States','',0,0,231,'2016-10-17 11:55:40','1900-01-01 00:00:00',1,0,1),(24684,'8862','Seaton','SEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:41','1900-01-01 00:00:00',1,0,1),(24685,'31615','Seattle-tacoma International Airport (Sea)','SEATTLE-TACOMA INTERNATIONAL AIRPORT (SEA)',NULL,'','United States','',0,0,231,'2016-10-17 11:55:42','1900-01-01 00:00:00',1,0,1),(24686,'31616','Seaview','SEAVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:55:42','1900-01-01 00:00:00',1,0,1),(24687,'8864','Seaview','SEAVIEW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:43','1900-01-01 00:00:00',1,0,1),(24688,'21926','Sebasco Estates','SEBASCO ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 11:55:43','1900-01-01 00:00:00',1,0,1),(24689,'19608','Sebastian','SEBASTIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24690,'26933','Sebastopol','SEBASTOPOL',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24691,'18906','Sebastopol','SEBASTOPOL',NULL,'','United States','',0,0,231,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24692,'14327','Seberang Jaya','SEBERANG JAYA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24693,'24439','Sebersdorf','SEBERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24694,'13566','Sebha','SEBHA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24695,'19609','Sebring','SEBRING',NULL,'','United States','',0,0,231,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24696,'28414','Secaucus','SECAUCUS',NULL,'','United States','',0,0,231,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24697,'25536','Sechelt','SECHELT',NULL,'','Canada','',0,0,39,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24698,'478','Seckbach','SECKBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24699,'5008','Seclin','SECLIN',NULL,'','France','',0,0,76,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24700,'34814','Second Valley','SECOND VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24701,'32603','Secunda','SECUNDA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24702,'10595','Secunderabad','SECUNDERABAD',NULL,'','India','',0,0,101,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24703,'33536','Sedalia','SEDALIA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24704,'4854','Sedan','SEDAN',NULL,'','France','',0,0,76,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24705,'8865','Sedbergh','SEDBERGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24706,'41089','Sedberhg','SEDBERHG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24707,'34007','Sedgefield','SEDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24708,'8866','Sedgefield','SEDGEFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24709,'11061','Sedom','SEDOM',NULL,'','Israel','',0,0,106,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24710,'18202','Sedona','SEDONA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:50','1900-01-01 00:00:00',1,0,1),(24711,'31617','Sedro Woolley','SEDRO WOOLLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24712,'23359','Sedrun','SEDRUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24713,'15287','Seeb','SEEB',NULL,'','Oman','',0,0,165,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24714,'23360','Seebach','SEEBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24715,'25354','Seebe','SEEBE',NULL,'','Canada','',0,0,39,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24716,'27089','Seeboden','SEEBODEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24717,'38250','Seebruck','SEEBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24718,'42190','Seeduwa','SEEDUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24719,'24399','Seeham','SEEHAM',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24720,'14415','Seeheim','SEEHEIM',NULL,'','Namibia','',0,0,151,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24721,'21525','Seekonk','SEEKONK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24722,'28018','Seeley Lake','SEELEY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24723,'13595','Seeluwa','SEELUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24724,'27282','Seesen','SEESEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24725,'6721','Seez','SEEZ',NULL,'','France','',0,0,76,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24726,'17191','Seferihisar','SEFERIHISAR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24727,'19610','Seffner','SEFFNER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24728,'38465','Segalaherang','SEGALAHERANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24729,'16560','Sege','SEGE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24730,'11444','Segonzano','SEGONZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24731,'38922','Segorbe','SEGORBE',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24732,'6135','Segos','SEGOS',NULL,'','France','',0,0,76,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24733,'30922','Segovia','SEGOVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24734,'2816','Segovia','SEGOVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24735,'35038','Segovia-el Espinar','SEGOVIA-EL ESPINAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24736,'13027','Segrate','SEGRATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24737,'6274','Segré','SEGRÉ',NULL,'','France','',0,0,76,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24738,'2818','Seguero','SEGUERO',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24739,'30923','Seguin','SEGUIN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24740,'6533','Seguret','SEGURET',NULL,'','France','',0,0,76,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24741,'27283','Sehnde','SEHNDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24742,'13633','Sehonghong','SEHONGHONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24743,'15971','Seia','SEIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24744,'11445','Seiano Di Vico Equen','SEIANO DI VICO EQUEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24745,'22414','Seiffen','SEIFFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24746,'5267','Seignosse','SEIGNOSSE',NULL,'','France','',0,0,76,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24747,'4921','Seilh','SEILH',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24748,'37985','Seilhac','SEILHAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24749,'5689','Seillac','SEILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24750,'6534','Seillans','SEILLANS',NULL,'','France','',0,0,76,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24751,'4030','Seinajoki','SEINAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24752,'24924','Seine Bight Village','SEINE BIGHT VILLAGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24753,'4556','Seine-et-marne','SEINE-ET-MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24754,'4557','Seine-maritime','SEINE-MARITIME',NULL,'','France','',0,0,76,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24755,'41999','Seis Am Schlern','SEIS AM SCHLERN',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24756,'6136','Seix','SEIX',NULL,'','France','',0,0,76,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24757,'32357','Seiyun','SEIYUN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24758,'13634','Sekake','SEKAKE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24759,'43889','Sekotong Barat','SEKOTONG BARAT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24760,'37993','Selah','SELAH',NULL,'','United States','',0,0,231,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24761,'17765','Selawik','SELAWIK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24762,'33047','Selby','SELBY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24763,'8867','Selby','SELBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24764,'10040','Selce','SELCE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24765,'39493','Selci','SELCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24766,'17320','Selcuk','SELCUK',NULL,'','Turkey','Selcuk',0,0,222,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24767,'17766','Seldovia','SELDOVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24768,'25263','Selebi-phikwe','SELEBI-PHIKWE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24769,'43890','Selemadeg','SELEMADEG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24770,'24039','Selembao','SELEMBAO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24771,'6792','Selestat','SELESTAT',NULL,'','France','',0,0,76,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24772,'11003','Selfoss','SELFOSS',NULL,'','Iceland','',0,0,100,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24773,'336','Seligenstadt','SELIGENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24774,'18204','Seligman','SELIGMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24775,'17240','Selimiye','SELIMIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24776,'30159','Selinsgrove','SELINSGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24777,'11446','Selinunte','SELINUNTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24778,'29111','Selkirk','SELKIRK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24779,'8868','Selkirk','SELKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24780,'25627','Selkirk','SELKIRK',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24781,'20982','Sellersburg','SELLERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24782,'3609','Selles','SELLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24783,'5690','Selles-saint-denis','SELLES-SAINT-DENIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24784,'40749','Sellia Marina','SELLIA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:10','1900-01-01 00:00:00',1,0,1),(24785,'34008','Selma','SELMA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:10','1900-01-01 00:00:00',1,0,1),(24786,'33257','Selmer','SELMER',NULL,'','United States','',0,0,231,'2016-10-17 11:56:12','1900-01-01 00:00:00',1,0,1),(24787,'44105','Selonnet','SELONNET',NULL,'','France','',0,0,76,'2016-10-17 11:56:13','1900-01-01 00:00:00',1,0,1),(24788,'44010','Selous Game Reserve','SELOUS GAME RESERVE',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:56:13','1900-01-01 00:00:00',1,0,1),(24789,'12528','Selvino','SELVINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24790,'42852','Semanggol','SEMANGGOL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24791,'10298','Semarang','SEMARANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24792,'44106','Semecourt','SEMECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24793,'4558','Semécourt','SEMÉCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24794,'19611','Seminole','SEMINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:15','1900-01-01 00:00:00',1,0,1),(24795,'10195','Seminyak','SEMINYAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24796,'809','Semlin','SEMLIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24797,'24541','Semmering','SEMMERING',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24798,'11447','Semogo','SEMOGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24799,'13624','Semongkong','SEMONGKONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24800,'3787','Sempere','SEMPERE',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24801,'39498','Šempeter Pri Gorici','ŠEMPETER PRI GORICI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24802,'14328','Semporna','SEMPORNA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24803,'40157','Semproniano','SEMPRONIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24804,'37398','Semur-en-auxois','SEMUR-EN-AUXOIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24805,'12529','Senago','SENAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24806,'27913','Senatobia','SENATOBIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24807,'10262','Senayan','SENAYAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24808,'41556','Sencelles','SENCELLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24809,'13338','Sendai','SENDAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24810,'568','Sendenhorst','SENDENHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24811,'38839','Senec','SENEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24812,'30403','Seneca','SENECA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24813,'29521','Senecaville','SENECAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:21','1900-01-01 00:00:00',1,0,1),(24814,'38166','Seneffe','SENEFFE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:56:21','1900-01-01 00:00:00',1,0,1),(24815,'10197','Senen','SENEN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24816,'42238','Senftenberg','SENFTENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24817,'42440','Senftenberg','SENFTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24818,'41809','Sengkurong','SENGKURONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24819,'12981','Senigallia','SENIGALLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24820,'6198','Senlis','SENLIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24821,'40641','Sennariolo','SENNARIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24822,'4559','Sennecey Le Grand','SENNECEY LE GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24823,'5502','Sennecey-les-dijon','SENNECEY-LES-DIJON',NULL,'','France','',0,0,76,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24824,'22892','Senneterre','SENNETERRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24825,'22893','Senneville','SENNEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:24','1900-01-01 00:00:00',1,0,1),(24826,'19922','Senoia','SENOIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:24','1900-01-01 00:00:00',1,0,1),(24827,'39600','Sens-beaujeu','SENS-BEAUJEU',NULL,'','France','',0,0,76,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24828,'16531','Sentosa Island','SENTOSA ISLAND',NULL,'','Singapore','',0,0,190,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24829,'14346','Sentul','SENTUL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24830,'35067','Seo De Urgel','SEO DE URGEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24831,'13504','Seogwipo','SEOGWIPO',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24832,'35819','Seoul','SEOUL',NULL,'','South Korea','Seoul',0,0,197,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24833,'36435','Sepang','SEPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24834,'38254','Sepino','SEPINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24835,'43652','Seppeltsfield','SEPPELTSFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24836,'41144','Sept Iles','SEPT ILES',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24837,'38122','Septeme','SEPTEME',NULL,'','France','',0,0,76,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24838,'6535','Septemes-les-vallons','SEPTEMES-LES-VALLONS',NULL,'','France','',0,0,76,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24839,'22894','Sept-iles','SEPT-ILES',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24840,'5751','Sept-saulx','SEPT-SAULX',NULL,'','France','',0,0,76,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24841,'41930','Sepulveda','SEPULVEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24842,'18908','Sepulveda','SEPULVEDA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24843,'31618','Sequim','SEQUIM',NULL,'','United States','',0,0,231,'2016-10-17 11:56:28','1900-01-01 00:00:00',1,0,1),(24844,'18909','Sequoia National Park','SEQUOIA NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:28','1900-01-01 00:00:00',1,0,1),(24845,'10291','Serang','SERANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24846,'36436','Serdang','SERDANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24847,'5973','Serdinya','SERDINYA',NULL,'','France','',0,0,76,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24848,'9391','Sere Kunda','SERE KUNDA',NULL,'','Gambia','',0,0,81,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24849,'12530','Seregno','SEREGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24850,'14360','Seremban','SEREMBAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24851,'41209','Serengeti National Park','SERENGETI NATIONAL PARK',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24852,'6722','Serezin-du-rhone','SEREZIN-DU-RHONE',NULL,'','France','',0,0,76,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24853,'24494','Serfaus','SERFAUS',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24854,'20284','Sergeant Bluff','SERGEANT BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24855,'25009','Sergipe','SERGIPE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24856,'35653','Seriate','SERIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24857,'42480','Serifos','SERIFOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24858,'6536','Serignan-du-comtat','SERIGNAN-DU-COMTAT',NULL,'','France','',0,0,76,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24859,'44269','Sernhac','SERNHAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24860,'15876','Serpa','SERPA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24861,'15837','Serra Da Estrela','SERRA DA ESTRELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24862,'12531','Serra De\' Conti','SERRA DE\' CONTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24863,'4560','Serra Di Ferro','SERRA DI FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24864,'43055','Serra-di-ferro','SERRA-DI-FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24865,'1855','Serrahn','SERRAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24866,'38970','Serralunga Dalba','SERRALUNGA DALBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24867,'12532','Serrano','SERRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24868,'11448','Serrara','SERRARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24869,'38241','Serravalle','SERRAVALLE',NULL,'','San Marino','',0,0,184,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24870,'12533','Serravalle Pistoiese','SERRAVALLE PISTOIESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24871,'6812','Serre Chevalier','SERRE CHEVALIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24872,'12535','Serre Di Rapolano','SERRE DI RAPOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24873,'41280','Serre-chevalier','SERRE-CHEVALIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24874,'9593','Serres','SERRES',NULL,'','Greece','',0,0,86,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24875,'40707','Serres-castet','SERRES-CASTET',NULL,'','France','',0,0,76,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24876,'42359','Serriera','SERRIERA',NULL,'','France','',0,0,76,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24877,'5873','Serris','SERRIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24878,'40542','Serrungarina','SERRUNGARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24879,'13567','Sert','SERT',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24880,'10319','Serui','SERUI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24881,'37486','Servoz','SERVOZ',NULL,'','France','',0,0,76,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24882,'10263','Seseh','SESEH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24883,'13625','Seshute\'s','SESHUTE\'S',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24884,'16062','Sesimbra','SESIMBRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24885,'14405','Sesriem','SESRIEM',NULL,'','Namibia','',0,0,151,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24886,'38210','Sessa','SESSA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24887,'12536','Sessa Aurunca','SESSA AURUNCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24888,'42665','Sestao','SESTAO',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:38','1900-01-01 00:00:00',1,0,1),(24889,'38625','Sesto','SESTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:38','1900-01-01 00:00:00',1,0,1),(24890,'11086','Sestri Levante','SESTRI LEVANTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24891,'12539','Sestriere','SESTRIERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24892,'41689','Sestrilevante','SESTRILEVANTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24893,'16446','Sestroretsk','SESTRORETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24894,'10061','Sesvete','SESVETE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24895,'2819','Setcases','SETCASES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24896,'5974','Sete','SETE',NULL,'','France','',0,0,76,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24897,'37579','Setenil De Las Bodegas','SETENIL DE LAS BODEGAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24898,'12540','Settecamini','SETTECAMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24899,'12541','Settignano','SETTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24900,'12542','Settimo Torinese','SETTIMO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24901,'43790','Setting Point','SETTING POINT',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24902,'8869','Settle','SETTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24903,'13191','Settsu','SETTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24904,'16063','Setubal','SETUBAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24905,'3610','Seva','SEVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24906,'39880','Sevan','SEVAN',NULL,'','Armenia','',0,0,11,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24907,'17520','Sevastopol','SEVASTOPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24908,'34010','Seven Devils','SEVEN DEVILS',NULL,'','United States','',0,0,231,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24909,'34312','Seven Hills','SEVEN HILLS',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24910,'15164','Seven Mile Point','SEVEN MILE POINT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24911,'8870','Sevenoaks','SEVENOAKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24912,'14578','Sevenum','SEVENUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24913,'21787','Severn','SEVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:44','1900-01-01 00:00:00',1,0,1),(24914,'21788','Severna Park','SEVERNA PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:44','1900-01-01 00:00:00',1,0,1),(24915,'17500','Severodoneck','SEVERODONECK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24916,'41190','Sevid','SEVID',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24917,'35054','Sevilia-sanlucar La','SEVILIA-SANLUCAR LA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24918,'3291','Seville','SEVILLE',NULL,'','Spain','Seville',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24919,'34995','Seville-benacazon','SEVILLE-BENACAZON',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24920,'34999','Seville-bormujos','SEVILLE-BORMUJOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24921,'35025','Seville-constantina','SEVILLE-CONSTANTINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24922,'35035','Seville-dos Hermanas','SEVILLE-DOS HERMANAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24923,'35089','Seville-valencina De','SEVILLE-VALENCINA DE',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24924,'35935','Sevlievo','SEVLIEVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24925,'4806','Sevran','SEVRAN',NULL,'','France','',0,0,76,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24926,'6723','Sevrier','SEVRIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:48','1900-01-01 00:00:00',1,0,1),(24927,'33259','Sewanee','SEWANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:48','1900-01-01 00:00:00',1,0,1),(24928,'28165','Seward','SEWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:56:49','1900-01-01 00:00:00',1,0,1),(24929,'38726','Sewen','SEWEN',NULL,'','France','',0,0,76,'2016-10-17 11:56:49','1900-01-01 00:00:00',1,0,1),(24930,'30160','Sewickley','SEWICKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24931,'43891','Sewon','SEWON',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24932,'37781','Sexau','SEXAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24933,'16921','Seychelles','SEYCHELLES',NULL,'','Seychelles','',0,0,188,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24934,'10994','Seydisfjordur','SEYDISFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24935,'20983','Seymour','SEYMOUR',NULL,'','United States','',0,0,231,'2016-10-17 11:56:51','1900-01-01 00:00:00',1,0,1),(24936,'26934','Seymour','SEYMOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:51','1900-01-01 00:00:00',1,0,1),(24937,'6537','Seyne','SEYNE',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24938,'6724','Seynod','SEYNOD',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24939,'4960','Seyssins','SEYSSINS',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24940,'6725','Seythenex','SEYTHENEX',NULL,'','France','',0,0,76,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24941,'16651','Sezana','SEZANA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24942,'42750','Sezena','SEZENA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24943,'38187','Sezimovo Usti','SEZIMOVO USTI',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24944,'17179','Sfax','SFAX',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24945,'39773','Shaar Hagolan','SHAAR HAGOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24946,'35790','Shaba National Park','SHABA NATIONAL PARK',NULL,'','Kenya','',0,0,113,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24947,'29750','Shady Cove','SHADY COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24948,'30926','Shafter','SHAFTER',NULL,'','United States','',0,0,231,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24949,'8871','Shaftesbury','SHAFTESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24950,'31388','Shaftsbury','SHAFTSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:55','1900-01-01 00:00:00',1,0,1),(24951,'17768','Shageluk','SHAGELUK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:55','1900-01-01 00:00:00',1,0,1),(24952,'14349','Shah Alam','SHAH ALAM',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24953,'10596','Shahdara','SHAHDARA',NULL,'','India','',0,0,101,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24954,'42580','Shahpura','SHAHPURA',NULL,'','India','',0,0,101,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24955,'37123','Shakaland','SHAKALAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24956,'25264','Shakawe','SHAKAWE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24957,'39068','Shakhty','SHAKHTY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24958,'3873','Shakiso','SHAKISO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24959,'27515','Shakopee','SHAKOPEE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24960,'17769','Shaktoolik','SHAKTOOLIK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:57','1900-01-01 00:00:00',1,0,1),(24961,'7297','Shaldon','SHALDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:57','1900-01-01 00:00:00',1,0,1),(24962,'19612','Shalimar','SHALIMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24963,'34011','Shallotte','SHALLOTTE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24964,'9941','Sham Shui Po','SHAM SHUI PO',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24965,'25628','Shamattawa','SHAMATTAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24966,'39452','Shamirpet','SHAMIRPET',NULL,'','India','',0,0,101,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24967,'30161','Shamokin','SHAMOKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24968,'30927','Shamrock','SHAMROCK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:00','1900-01-01 00:00:00',1,0,1),(24969,'42538','Shamwari','SHAMWARI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24970,'10814','Shanagarry','SHANAGARRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24971,'29114','Shandaken','SHANDAKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24972,'23909','Shanghai','SHANGHAI',NULL,'','China','Shanghai',0,0,46,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24973,'43562','Shangjin','SHANGJIN',NULL,'','Albania','',0,0,2,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24974,'34924','Shangrila','SHANGRILA',NULL,'','China','',0,0,46,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24975,'23713','Shangyu','SHANGYU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24976,'23789','Shangzhi','SHANGZHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24977,'23633','Shangzhou','SHANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24978,'23809','Shanhaiguan','SHANHAIGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24979,'8872','Shanklin','SHANKLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24980,'40934','Shannon, Co.clare','SHANNON, CO.CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24981,'41509','Shannonbridge','SHANNONBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24982,'34904','Shanshan','SHANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24983,'23920','Shantou','SHANTOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24984,'34637','Shanty Bay','SHANTY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24985,'42633','Shanxi','SHANXI',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24986,'23974','Shaoguan','SHAOGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24987,'23818','Shaoshan','SHAOSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24988,'23714','Shaoxing','SHAOXING',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24989,'8873','Shap','SHAP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24990,'8874','Shapwick','SHAPWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24991,'8875','Shardlow','SHARDLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24992,'37812','Shari','SHARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24993,'25910','Sharjah','SHARJAH',NULL,'','United Arab Emirates','Sharjah',0,0,228,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24994,'37744','Shark Bay','SHARK BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24995,'2412','Sharm El Sheikh','SHARM EL SHEIKH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24996,'34012','Sharonbrook','SHARONBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:06','1900-01-01 00:00:00',1,0,1),(24997,'32604','Sharpeville','SHARPEVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:57:07','1900-01-01 00:00:00',1,0,1),(24998,'34013','Sharpsburg','SHARPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:57:07','1900-01-01 00:00:00',1,0,1),(24999,'30164','Shartlesville','SHARTLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:08','1900-01-01 00:00:00',1,0,1),(25000,'16500','Sharurah','SHARURAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25001,'23831','Shashi','SHASHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25002,'35322','Shatin','SHATIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25003,'7298','Shatterling','SHATTERLING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25004,'32960','Shattuck','SHATTUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25005,'9942','Shau Kei Wan','SHAU KEI WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25006,'22964','Shaunavon','SHAUNAVON',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25007,'35420','Shavei Zion','SHAVEI ZION',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25008,'31880','Shawano','SHAWANO',NULL,'','United States','',0,0,231,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25009,'22895','Shawinigan','SHAWINIGAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25010,'21132','Shawnee','SHAWNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:11','1900-01-01 00:00:00',1,0,1),(25011,'16379','Shchelkovo','SHCHELKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25012,'16380','Shcherbinka','SHCHERBINKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25013,'31881','Sheboygan','SHEBOYGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25014,'8876','Shedfield','SHEDFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25015,'34418','Shediac','SHEDIAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25016,'8877','Sheering','SHEERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25017,'8878','Sheerness','SHEERNESS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25018,'11064','Shefayim','SHEFAYIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25019,'21527','Sheffield','SHEFFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:16','1900-01-01 00:00:00',1,0,1),(25020,'37147','Sheffield','SHEFFIELD',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:57:16','1900-01-01 00:00:00',1,0,1),(25021,'38881','Shefford','SHEFFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25022,'40834','Shekavati','SHEKAVATI',NULL,'','India','',0,0,101,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25023,'23975','Shekou','SHEKOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25024,'27771','Shelbina','SHELBINA',NULL,'','United States','',0,0,231,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25025,'31390','Shelburne','SHELBURNE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:18','1900-01-01 00:00:00',1,0,1),(25026,'29526','Shelby','SHELBY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:19','1900-01-01 00:00:00',1,0,1),(25027,'33730','Shelbyville','SHELBYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:21','1900-01-01 00:00:00',1,0,1),(25028,'20285','Sheldon','SHELDON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:23','1900-01-01 00:00:00',1,0,1),(25029,'16381','Shelepikha','SHELEPIKHA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:24','1900-01-01 00:00:00',1,0,1),(25030,'18910','Shell Beach','SHELL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:24','1900-01-01 00:00:00',1,0,1),(25031,'18911','Shelter Island','SHELTER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:57:26','1900-01-01 00:00:00',1,0,1),(25032,'31619','Shelton','SHELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:27','1900-01-01 00:00:00',1,0,1),(25033,'20287','Shenandoah','SHENANDOAH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:28','1900-01-01 00:00:00',1,0,1),(25034,'15247','Shenandoah','SHENANDOAH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:57:28','1900-01-01 00:00:00',1,0,1),(25035,'23910','Shenxiang','SHENXIANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25036,'23636','Shenyang','SHENYANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25037,'23976','Shenzhen','SHENZHEN',NULL,'','China','Shenzhen',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25038,'25355','Shepard','SHEPARD',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25039,'32044','Shepherdstown','SHEPHERDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:31','1900-01-01 00:00:00',1,0,1),(25040,'26935','Shepparton','SHEPPARTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:31','1900-01-01 00:00:00',1,0,1),(25041,'8880','Shepperton','SHEPPERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25042,'39820','Shepshed','SHEPSHED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25043,'40305','Shepton Beauchamp','SHEPTON BEAUCHAMP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25044,'21528','Sherborn','SHERBORN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25045,'8882','Sherborne','SHERBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25046,'26553','Sherbrook','SHERBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25047,'22896','Sherbrooke','SHERBROOKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25048,'28020','Sheridan','SHERIDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:34','1900-01-01 00:00:00',1,0,1),(25049,'8883','Sheringham','SHERINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:35','1900-01-01 00:00:00',1,0,1),(25050,'30930','Sherman','SHERMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:35','1900-01-01 00:00:00',1,0,1),(25051,'29118','Sherrill','SHERRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:57:37','1900-01-01 00:00:00',1,0,1),(25052,'36462','S-hertogenbosch','S-HERTOGENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:57:38','1900-01-01 00:00:00',1,0,1),(25053,'28081','Sherwood','SHERWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:38','1900-01-01 00:00:00',1,0,1),(25054,'25356','Sherwood Park','SHERWOOD PARK',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25055,'23638','Sheshan','SHESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25056,'9343','Shetland','SHETLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25057,'9943','Sheung Wan','SHEUNG WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25058,'37111','Shibam','SHIBAM',NULL,'','Yemen','',0,0,240,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25059,'42883','Shibata','SHIBATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25060,'8884','Shifnal','SHIFNAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25061,'43988','Shigar','SHIGAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25062,'34901','Shigatse','SHIGATSE',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25063,'17446','Shihlin','SHIHLIN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25064,'23810','Shijiazhuang','SHIJIAZHUANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25065,'23895','Shijingshan','SHIJINGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25066,'35757','Shikabe','SHIKABE',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25067,'37614','Shikotsu-toya National Park Area','SHIKOTSU-TOYA NATIONAL PARK AREA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25068,'23639','Shilibao','SHILIBAO',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25069,'42385','Shilin - Stone Forest','SHILIN - STONE FOREST',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25070,'3874','Shillavo','SHILLAVO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25071,'8885','Shillingford','SHILLINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25072,'30167','Shillington','SHILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25073,'10654','Shillong','SHILLONG',NULL,'','India','Shillong',42,0,101,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25074,'20751','Shiloh','SHILOH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25075,'23640','Shilong','SHILONG',NULL,'','China','',0,0,46,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25076,'43925','Shimada','SHIMADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25077,'13339','Shimajiri','SHIMAJIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25078,'13192','Shimamoto','SHIMAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25079,'13340','Shimizu','SHIMIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25080,'13341','Shimoda','SHIMODA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25081,'44223','Shimoga','SHIMOGA',NULL,'','India','',0,0,101,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25082,'13193','Shimogyo','SHIMOGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25083,'13194','Shimojishima','SHIMOJISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25084,'43939','Shimoni','SHIMONI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25085,'35760','Shimonoseki','SHIMONOSEKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25086,'42873','Shimukappu','SHIMUKAPPU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25087,'17416','Shindian','SHINDIAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25088,'38326','Shinonsen','SHINONSEN',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25089,'42874','Shintoku','SHINTOKU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25090,'43926','Shintomi','SHINTOMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25091,'17470','Shinyanga','SHINYANGA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25092,'17417','Shioulin','SHIOULIN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25093,'8886','Shipley','SHIPLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25094,'30168','Shippensburg','SHIPPENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25095,'15165','Ships Cove','SHIPS COVE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25096,'20985','Shipshewana','SHIPSHEWANA',NULL,'','United States','',0,0,231,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25097,'40744','Shipston On Stour','SHIPSTON ON STOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:48','1900-01-01 00:00:00',1,0,1),(25098,'8887','Shipton','SHIPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:48','1900-01-01 00:00:00',1,0,1),(25099,'35436','Shiraz','SHIRAZ',NULL,'','Iran','',0,0,103,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25100,'10597','Shirdi','SHIRDI',NULL,'','India','Shirdi',5,0,101,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25101,'3875','Shire','SHIRE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25102,'8888','Shiremoor','SHIREMOOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25103,'29119','Shirley','SHIRLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25104,'41088','Shirley -Solihull','SHIRLEY -SOLIHULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25105,'13342','Shiroko','SHIROKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25106,'23779','Shishi','SHISHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25107,'17771','Shishmaref','SHISHMAREF',NULL,'','United States','',0,0,231,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25108,'42579','Shivpatinagar','SHIVPATINAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25109,'37666','Shivpuri','SHIVPURI',NULL,'','India','Shivpuri',15,0,101,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25110,'43830','Shiyan','SHIYAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25111,'37233','Shizukishi','SHIZUKISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25112,'35761','Shizukuishi','SHIZUKUISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25113,'13411','Shizuoka','SHIZUOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25114,'43563','Shkodra','SHKODRA',NULL,'','Albania','',0,0,2,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25115,'34313','Shoal Bay','SHOAL BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25116,'13343','Shonai','SHONAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25117,'22415','Shopsdorf','SHOPSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25118,'8889','Shoreditch','SHOREDITCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25119,'31391','Shoreham','SHOREHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25120,'8890','Shoreham-by-sea','SHOREHAM-BY-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25121,'31620','Shoreline','SHORELINE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25122,'11077','Shoresh','SHORESH',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25123,'27516','Shoreview','SHOREVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25124,'20752','Shorewood','SHOREWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:54','1900-01-01 00:00:00',1,0,1),(25125,'28415','Short Hills','SHORT HILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:57:54','1900-01-01 00:00:00',1,0,1),(25126,'17952','Shorter','SHORTER',NULL,'','United States','',0,0,231,'2016-10-17 11:57:55','1900-01-01 00:00:00',1,0,1),(25127,'20401','Shoshone','SHOSHONE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25128,'17418','Shoufeng','SHOUFENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25129,'43380','Shoumen','SHOUMEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25130,'18205','Show Low','SHOW LOW',NULL,'','United States','',0,0,231,'2016-10-17 11:57:57','1900-01-01 00:00:00',1,0,1),(25131,'21259','Shreveport','SHREVEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:57:58','1900-01-01 00:00:00',1,0,1),(25132,'30169','Shrewsbury','SHREWSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:58','1900-01-01 00:00:00',1,0,1),(25133,'7300','Shrewsbury','SHREWSBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:59','1900-01-01 00:00:00',1,0,1),(25134,'40113','Shrewton','SHREWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:59','1900-01-01 00:00:00',1,0,1),(25135,'10697','Shrirampur','SHRIRAMPUR',NULL,'','India','',0,0,101,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25136,'7301','Shropshire','SHROPSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25137,'43831','Shuangfu','SHUANGFU',NULL,'','China','',0,0,46,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25138,'2451','Shubra Al Khaymah','SHUBRA AL KHAYMAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25139,'24815','Shumen','SHUMEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25140,'43927','Shunan','SHUNAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25141,'23641','Shunde','SHUNDE',NULL,'','China','',0,0,46,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25142,'17772','Shungnak','SHUNGNAK',NULL,'','United States','',0,0,231,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25143,'23896','Shunyi','SHUNYI',NULL,'','China','',0,0,46,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25144,'8891','Shurdington','SHURDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25145,'8892','Shustoke','SHUSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25146,'26321','Shute Harbour','SHUTE HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25147,'16447','Shuvalovo','SHUVALOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25148,'13344','Shuzenji','SHUZENJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25149,'40835','Siana','SIANA',NULL,'','India','',0,0,101,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25150,'38125','Siargao','SIARGAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25151,'21530','Siasconset','SIASCONSET',NULL,'','United States','',0,0,231,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25152,'44244','Siaton','SIATON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25153,'41443','Siauliai','SIAULIAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25154,'38939','Siavonga','SIAVONGA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25155,'12543','Sibari','SIBARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25156,'9975','Sibenik','SIBENIK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25157,'15328','Sibi','SIBI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25158,'20289','Sibley','SIBLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25159,'10598','Sibpur','SIBPUR',NULL,'','India','',0,0,101,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25160,'37710','Sibson','SIBSON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25161,'14385','Sibu','SIBU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25162,'25537','Sicamous','SICAMOUS',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25163,'12544','Siculiana','SICULIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25164,'9594','Sidari','SIDARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25165,'8893','Sidcup','SIDCUP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25166,'37925','Siderno','SIDERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25167,'17167','Sidi Bou Said','SIDI BOU SAID',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25168,'13708','Sidi Brahim','SIDI BRAHIM',NULL,'','Morocco','',0,0,148,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25169,'43567','Sidi Fredj','SIDI FREDJ',NULL,'','Algeria','',0,0,3,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25170,'1742','Sidi-bou-said','SIDI-BOU-SAID',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25171,'8894','Sidmouth','SIDMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25172,'29529','Sidney','SIDNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:07','1900-01-01 00:00:00',1,0,1),(25173,'25538','Sidney','SIDNEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:08','1900-01-01 00:00:00',1,0,1),(25174,'27284','Sieber','SIEBER',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25175,'15674','Siedlce','SIEDLCE',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25176,'569','Siegburg','SIEGBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25177,'570','Siegen','SIEGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25178,'22416','Siegerland','SIEGERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25179,'337','Siegsdorf','SIEGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25180,'13452','Siem Reap','SIEM REAP',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25181,'2013','Siemensstadt','SIEMENSSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25182,'43628','Siemianowice Slaskie','SIEMIANOWICE SLASKIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25183,'35510','Siena-colle Di Val D','SIENA-COLLE DI VAL D',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25184,'35585','Siena-monteriggioni','SIENA-MONTERIGGIONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25185,'35691','Siena-monticiano','SIENA-MONTICIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25186,'741','Sierksdorf','SIERKSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25187,'40128','Sierning','SIERNING',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:12','1900-01-01 00:00:00',1,0,1),(25188,'18914','Sierra City','SIERRA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:12','1900-01-01 00:00:00',1,0,1),(25189,'35163','Sierra Di Ferro','SIERRA DI FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:58:13','1900-01-01 00:00:00',1,0,1),(25190,'2824','Sierras De Aralar Y Urbasa','SIERRAS DE ARALAR Y URBASA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25191,'23362','Sierre','SIERRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25192,'19613','Siesta Key','SIESTA KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25193,'44052','Siewierz','SIEWIERZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25194,'24400','Siezenheim','SIEZENHEIM',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25195,'40291','Sigean','SIGEAN',NULL,'','France','',0,0,76,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25196,'16231','Sighisoara','SIGHISOARA',NULL,'','Romania','',0,0,179,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25197,'8895','Sighthill','SIGHTHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25198,'13613','Sigiriya','SIGIRIYA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25199,'10995','Siglufjordur','SIGLUFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25200,'18915','Signal Hill','SIGNAL HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25201,'37944','Signes','SIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:58:17','1900-01-01 00:00:00',1,0,1),(25202,'20290','Sigourney','SIGOURNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25203,'40290','Sigoyer','SIGOYER',NULL,'','France','',0,0,76,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25204,'23363','Sigriswil','SIGRISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25205,'16657','Sigtuna','SIGTUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25206,'3421','Siguenza','SIGUENZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25207,'13671','Sigulda','SIGULDA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25208,'13453','Sihanoukville','SIHANOUKVILLE',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25209,'35821','Siheung','SIHEUNG',NULL,'','South Korea','',0,0,197,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25210,'13523','Sihung-dong','SIHUNG-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25211,'4004','Siilinjarvi','SIILINJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25212,'17360','Siirt','SIIRT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25213,'23911','Sijing','SIJING',NULL,'','China','',0,0,46,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25214,'17098','Sikao','SIKAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25215,'27773','Sikeston','SIKESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25216,'9728','Sikinos','SIKINOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25217,'40788','Silandro','SILANDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25218,'13991','Silao','SILAO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25219,'10599','Silchar','SILCHAR',NULL,'','India','Silchar',10,0,101,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25220,'41070','Sile','SILE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25221,'12921','Silea','SILEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25222,'34016','Siler City','SILER CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25223,'39507','Silherovice','SILHEROVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25224,'16922','Silhouette Island','SILHOUETTE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25225,'18916','Silicon Valley','SILICON VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25226,'17300','Silifke','SILIFKE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25227,'37168','Siliguri','SILIGURI',NULL,'','India','Siliguri',12,0,101,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25228,'24810','Silistra','SILISTRA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25229,'17312','Silivri','SILIVRI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25230,'2159','Silkeborg','SILKEBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25231,'2487','Silleda','SILLEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25232,'38888','Sillian','SILLIAN',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25233,'4562','Silly En Gouffern','SILLY EN GOUFFERN',NULL,'','France','',0,0,76,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25234,'18078','Siloam Springs','SILOAM SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25235,'17023','Silom - Sathom','SILOM - SATHOM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25237,'23084','Sils-maria','SILS-MARIA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25238,'33538','Silt','SILT',NULL,'','United States','',0,0,231,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25239,'37591','Siltakyla','SILTAKYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25240,'23364','Silvaplana','SILVAPLANA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25241,'10629','Silvassa','SILVASSA',NULL,'','India','Silvassa',47,0,101,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25242,'33539','Silvercreek','SILVERCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:58:30','1900-01-01 00:00:00',1,0,1),(25243,'31621','Silverdale','SILVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:58:30','1900-01-01 00:00:00',1,0,1),(25244,'33541','Silverton','SILVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:31','1900-01-01 00:00:00',1,0,1),(25245,'15947','Silves','SILVES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:32','1900-01-01 00:00:00',1,0,1),(25246,'12548','Silvi Marina','SILVI MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25247,'39038','Silz','SILZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25248,'23948','Simao','SIMAO',NULL,'','China','',0,0,46,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25249,'34638','Simcoe','SIMCOE',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25250,'42336','Simeri Crichi','SIMERI CRICHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25251,'11450','Simeri-crichi','SIMERI-CRICHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25252,'17517','Simferopol','SIMFEROPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25253,'18917','Simi Valley','SIMI VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25254,'6538','Simiane-collongue','SIMIANE-COLLONGUE',NULL,'','France','',0,0,76,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25255,'15061','Simikot','SIMIKOT',NULL,'','Nepal','Simikot',0,0,153,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25256,'23749','Siming','SIMING',NULL,'','China','',0,0,46,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25257,'10641','Simla','SIMLA',NULL,'','India','',0,0,101,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25258,'38105','Simmerath','SIMMERATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25259,'24539','Simmering','SIMMERING',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25260,'8896','Simonburn','SIMONBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25261,'32497','Simon\'s Town','SIMON\'S TOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25262,'7302','Simonstone','SIMONSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25263,'40378','Simontornya','SIMONTORNYA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25264,'25893','Simpson Bay','SIMPSON BAY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25265,'30404','Simpsonville','SIMPSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25266,'15062','Simra','SIMRA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25267,'16875','Simrishamn','SIMRISHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25268,'19155','Simsbury','SIMSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25269,'16232','Sinaia','SINAIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25270,'12549','Sinalunga','SINALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25271,'9596','Sinarades','SINARADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25272,'2250','Sindal','SINDAL',NULL,'','Denmark','',0,0,59,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25273,'22645','Sindelfingen','SINDELFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25274,'24786','Sinemoretz','SINEMORETZ',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25275,'16064','Sines','SINES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25276,'3932','Sinetta','SINETTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25277,'2932','Sineu','SINEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25278,'16532','Singapore','SINGAPORE',NULL,'','Singapore','Singapore',33,0,190,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25279,'10264','Singaraja','SINGARAJA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25280,'19615','Singer Island','SINGER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25281,'10200','Singkep','SINGKEP',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25282,'34314','Singleton','SINGLETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25283,'37242','Siniscola','SINISCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25284,'38456','Sinjhuang','SINJHUANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25285,'44313','Sinop','SINOP',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25286,'37715','Sins','SINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25287,'14956','Sinsen','SINSEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25288,'22647','Sinsheim','SINSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25289,'14660','Sint Maarten','SINT MAARTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25290,'41097','Sint Niklaas','SINT NIKLAAS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25291,'24646','Sint-agatha-berchem','SINT-AGATHA-BERCHEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25292,'24647','Sint-gillis','SINT-GILLIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25293,'24648','Sint-jans-molenbeek','SINT-JANS-MOLENBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25294,'24614','Sint-katelijne-waver','SINT-KATELIJNE-WAVER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25295,'24649','Sint-lambrechts-woluwe','SINT-LAMBRECHTS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25296,'24720','Sint-laureins','SINT-LAUREINS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25297,'38066','Sint-martens-latem','SINT-MARTENS-LATEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25298,'24746','Sint-niklaas','SINT-NIKLAAS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25299,'30932','Sinton','SINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25300,'24650','Sint-pieters-woluwe','SINT-PIETERS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25301,'16012','Sintra','SINTRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25302,'24651','Sint-stevens-woluwe','SINT-STEVENS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25303,'24688','Sint-truiden','SINT-TRUIDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25304,'661','Sinzig','SINZIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25305,'10106','Siofok','SIOFOK',NULL,'','Hungary','',0,0,99,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25306,'23365','Sion','SION',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25307,'20291','Sioux Center','SIOUX CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:58:43','1900-01-01 00:00:00',1,0,1),(25308,'34639','Sioux Lookout','SIOUX LOOKOUT',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:45','1900-01-01 00:00:00',1,0,1);
/*!40000 ALTER TABLE `tb_master_geo_city` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_master_geo_country`
--

DROP TABLE IF EXISTS `tb_master_geo_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_master_geo_country` (
  `contsysId` int NOT NULL AUTO_INCREMENT,
  `contId` int NOT NULL,
  `title` varchar(256) NOT NULL,
  `code` varchar(100) NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`contsysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_master_geo_country`
--

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

--
-- Table structure for table `tb_mp_stdmarkup_accom`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_accom`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_accom` (
  `AgencySysId` bigint NOT NULL,
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `MPType` smallint NOT NULL,
  `ItemSourceType` smallint NOT NULL DEFAULT '0',
  `AccomType` smallint NOT NULL DEFAULT '0',
  `IsForCancellation` tinyint NOT NULL DEFAULT '0',
  `CustGrSysId` bigint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL DEFAULT '0',
  `IsSameForAll` tinyint NOT NULL DEFAULT '0',
  `StdMarkUpPer` decimal(18,2) NOT NULL,
  `MarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TaxPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupVal` decimal(18,0) NOT NULL DEFAULT '0',
  `CommssionType` smallint NOT NULL DEFAULT '0',
  `CommssionVal` decimal(18,2) NOT NULL DEFAULT '0.00',
  `DiscountPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountVal` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountMsg` varchar(50) NOT NULL,
  `Details` varchar(500) NOT NULL,
  `ValidTill` datetime(3) NOT NULL,
  `IsServiceChrgIncludeInTax` tinyint NOT NULL DEFAULT '0',
  `ApproveDate` datetime(3) NOT NULL,
  `CreateDate` datetime(3) NOT NULL,
  `UpdateDate` datetime(3) NOT NULL,
  `IsApproved` tinyint NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`MPType`,`ItemSourceType`,`AccomType`,`IsForCancellation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_accom`
--

LOCK TABLES `tb_mp_stdmarkup_accom` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_accom` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_accom` VALUES (19,1,2,1,1,0,0,1,1,0,0.00,1000.00,0,0,0,0,0.00,0,0,'','','2021-06-25 15:43:46.000',0,'2021-06-25 15:43:46.000','2021-06-25 15:43:46.000','2021-06-25 15:43:46.000',1,0,1),(19,1,2,1,2,0,0,1,1,0,0.00,500.00,0,0,0,0,0.00,0,0,'','','2021-06-25 15:43:46.000',0,'2021-06-25 15:43:46.000','2021-06-25 15:43:46.000','2021-06-25 15:43:46.000',1,0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_accom` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_air`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_air`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_air` (
  `AgencySysId` bigint NOT NULL,
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `MPType` smallint NOT NULL,
  `ItemSourceType` varchar(55) NOT NULL,
  `AirType` smallint NOT NULL DEFAULT '0',
  `AccomType` int DEFAULT NULL,
  `IsForCancellation` tinyint NOT NULL DEFAULT '0',
  `CustGrSysId` bigint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL DEFAULT '0',
  `IsSameForAll` tinyint NOT NULL DEFAULT '0',
  `StdMarkUpPer` decimal(18,2) NOT NULL,
  `MarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TaxPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupVal` decimal(18,0) NOT NULL DEFAULT '0',
  `CommssionType` smallint NOT NULL DEFAULT '0',
  `CommssionVal` decimal(18,2) NOT NULL DEFAULT '0.00',
  `DiscountPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountVal` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountMsg` varchar(50) NOT NULL,
  `Details` varchar(500) NOT NULL,
  `ValidTill` datetime(3) NOT NULL,
  `IsServiceChrgIncludeInTax` tinyint NOT NULL DEFAULT '0',
  `ApproveDate` datetime(3) NOT NULL,
  `CreateDate` datetime(3) DEFAULT NULL,
  `UpdateDate` datetime(3) DEFAULT NULL,
  `IsApproved` tinyint NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`MPType`,`ItemSourceType`,`AirType`,`IsForCancellation`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_air`
--

LOCK TABLES `tb_mp_stdmarkup_air` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_air` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_air` VALUES (5293,5293,2,'1',0,1,0,0,1,2,0,10.00,0.00,0,0,0,0,0.00,0,0,'0','0','2023-07-20 00:00:00.000',0,'2023-07-20 00:00:00.000',NULL,NULL,1,0,1),(5293,5293,2,'2',0,2,0,0,1,2,0,10.00,0.00,0,0,0,0,0.00,0,0,'0','0','2023-07-20 00:00:00.000',0,'2023-07-20 00:00:00.000',NULL,NULL,1,0,1),(10816,5293,2,'1',1,NULL,0,0,1,1,0,500.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-02-01 19:27:19.000',0,'2022-02-01 19:27:19.000','2022-02-01 19:27:19.000','2022-02-01 19:27:19.000',1,0,1),(10816,5293,2,'1',2,NULL,0,0,1,1,0,1000.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-02-01 19:27:19.000',0,'2022-02-01 19:27:19.000','2022-02-01 19:27:19.000','2022-02-01 19:27:19.000',1,0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_air` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_bus`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_bus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_bus` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MarkUp` float NOT NULL,
  `percentGST` int NOT NULL,
  `CreateDate` datetime(3) DEFAULT NULL,
  `UpdateDate` datetime(3) DEFAULT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_bus`
--

LOCK TABLES `tb_mp_stdmarkup_bus` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_bus` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_bus` VALUES (1,1,0,18,'2022-11-18 11:22:26.000','2022-11-18 11:22:26.000',0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_bus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_car`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_car`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_car` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int DEFAULT NULL,
  `MarkUp` float NOT NULL,
  `percentGST` int NOT NULL,
  `CreateDate` datetime DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` datetime DEFAULT CURRENT_TIMESTAMP,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_car`
--

LOCK TABLES `tb_mp_stdmarkup_car` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_car` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_car` VALUES (1,1,0,18,'2022-11-22 10:52:37','2022-11-22 10:52:41',0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_car` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_shared_proposal`
--

DROP TABLE IF EXISTS `tb_shared_proposal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_shared_proposal` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `MasterAgencySysId` int NOT NULL,
  `FlightNumber` varchar(100) NOT NULL,
  `AirlineName` varchar(100) DEFAULT NULL,
  `TravelDate` datetime DEFAULT NULL,
  `SearchTraceId` varchar(250) NOT NULL,
  `NetFare` float NOT NULL DEFAULT '0',
  `Commission` float NOT NULL DEFAULT '0',
  `NetPrice` float NOT NULL DEFAULT '0',
  `FinalPrice` float NOT NULL DEFAULT '0',
  `ExtraMarkup` float NOT NULL DEFAULT '0',
  `ExtraMarkupOnGST` float NOT NULL DEFAULT '0',
  `UserSysId` int NOT NULL,
  `CustEmail` varchar(100) NOT NULL,
  `CustName` varchar(100) NOT NULL,
  `CustMobile` varchar(100) DEFAULT NULL,
  `flightData` longtext,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_shared_proposal`
--

LOCK TABLES `tb_shared_proposal` WRITE;
/*!40000 ALTER TABLE `tb_shared_proposal` DISABLE KEYS */;
INSERT INTO `tb_shared_proposal` VALUES (1,6078,5293,'SG-8157','SpiceJet','2021-12-16 06:20:00','89a66-6efb4-56c1c-44178',9301.62,0,9301.62,9301.62,0,0,7110,'','Ashish Upadhyay','9899923966','{\"FlightNumber\":\"SG-8157\",\"SegFlightNumberArr\":\"SG-8157\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"89a66-6efb4-56c1c-44178\",\"apiTraceId\":\"4-4120415910_0DELBOMSG8157_24719254386577\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:40\",\"TravelDate\":\"2021-12-16T06:20\",\"LocalFromTime\":\"2021-12-16 06:20\",\"FromUTCTime\":\"2021-12-16T06:20\",\"LocalToTime\":\"2021-12-16 08:40\",\"ToUTCTime\":\"2021-12-16T08:40\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 16 Dec\",\"ArrivalDateTxt\":\"Thu, 16 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Mumbai\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":110,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":9301.62,\"PublishedFareTxt\":\"9,302\",\"ApiResultIndex\":\"4-4120415910_0DELBOMSG8157_24719254386577\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":7800,\"Tax\":1469.4,\"YQTax\":0,\"OtherCharges\":1030,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9269.4,\"PublishedFare\":9301.62,\"PublishedFareAgent\":9301.62,\"OfferedFareAgent\":9301.62,\"OfferedFare\":9054.900000000001,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"10.72\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4120415910_0DELBOMSG8157_24719254390937\",\"ApiResultIndex\":\"4-4120415910_0DELBOMSG8157_24719254390937\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"fareIdentifierSP\":\"COUPON\",\"SeatAvailable\":85,\"classOfBooking\":\"DD\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1469.4,\"TotalBaseFare\":9269.4,\"BaseFareCal\":9090.900000000001,\"BaseFare\":7800,\"CommissionEarned\":203.78,\"TDS\":10.72,\"MF\":30,\"YQ\":0,\"AGST\":404,\"MFT\":5.4,\"OT\":1030,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":203.78,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36,\"PublishFare\":9301.62,\"CostToCustomer\":9301.62,\"BaseFareCal\":9090.900000000001,\"intCommisionEarnedForAgency\":210.72,\"CostToCompany\":9090.900000000001,\"intOfferedFare\":9054.900000000001,\"intPublishFare\":9269.4,\"TripjackMarkup\":0,\"TripjackCommission\":203.78,\"TripjackTDS\":\"10.72\",\"BR\":\"=\",\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-12-16T08:40\",\"SegFlightNumber\":\"SG-8157\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-12-16T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":110,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:40\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2021-12-03 14:56:40','2021-12-03 14:56:40',0,0),(2,6078,5293,'SG-8157','SpiceJet','2021-12-16 06:20:00','89a66-6efb4-56c1c-44178',9301.62,0,9301.62,9301.62,0,0,7110,'','Ashish Upadhyay','9899923966','{\"FlightNumber\":\"SG-8157\",\"SegFlightNumberArr\":\"SG-8157\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"89a66-6efb4-56c1c-44178\",\"apiTraceId\":\"4-4120415910_0DELBOMSG8157_24719254386577\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:20\",\"ArrivalTime\":\"08:40\",\"TravelDate\":\"2021-12-16T06:20\",\"LocalFromTime\":\"2021-12-16 06:20\",\"FromUTCTime\":\"2021-12-16T06:20\",\"LocalToTime\":\"2021-12-16 08:40\",\"ToUTCTime\":\"2021-12-16T08:40\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 16 Dec\",\"ArrivalDateTxt\":\"Thu, 16 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Mumbai\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":110,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":9301.62,\"PublishedFareTxt\":\"9,302\",\"ApiResultIndex\":\"4-4120415910_0DELBOMSG8157_24719254386577\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":7800,\"Tax\":1469.4,\"YQTax\":0,\"OtherCharges\":1030,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":9269.4,\"PublishedFare\":9301.62,\"PublishedFareAgent\":9301.62,\"OfferedFareAgent\":9301.62,\"OfferedFare\":9054.900000000001,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"10.72\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4120415910_0DELBOMSG8157_24719254390937\",\"ApiResultIndex\":\"4-4120415910_0DELBOMSG8157_24719254390937\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"fareIdentifierSP\":\"COUPON\",\"SeatAvailable\":85,\"classOfBooking\":\"DD\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1469.4,\"TotalBaseFare\":9269.4,\"BaseFareCal\":9090.900000000001,\"BaseFare\":7800,\"CommissionEarned\":203.78,\"TDS\":10.72,\"MF\":30,\"YQ\":0,\"AGST\":404,\"MFT\":5.4,\"OT\":1030,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":203.78,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36,\"PublishFare\":9301.62,\"CostToCustomer\":9301.62,\"BaseFareCal\":9090.900000000001,\"intCommisionEarnedForAgency\":210.72,\"CostToCompany\":9090.900000000001,\"intOfferedFare\":9054.900000000001,\"intPublishFare\":9269.4,\"TripjackMarkup\":0,\"TripjackCommission\":203.78,\"TripjackTDS\":\"10.72\",\"BR\":\"=\",\"Agencycommission\":203.78,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":9301.62,\"CostToAgent\":9301.62,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2021-12-16T08:40\",\"SegFlightNumber\":\"SG-8157\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2021-12-16T06:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":110,\"strDepartureDtTime\":\"06:20\",\"strArrivalDtTime\":\"08:40\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2021-12-03 14:56:41','2021-12-03 14:56:41',0,0),(3,6078,5293,'SG-2950','SpiceJet','2022-01-07 12:15:00','ff524-b90de-c76f3-35a18',3267.1,0,3267.1,3267.1,0,0,7110,'mice.support@ineedtrip.co.in','Vikram Kumar','09717745579','{\"FlightNumber\":\"SG-2950\",\"SegFlightNumberArr\":\"SG-2950\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsTJFlightAPI\":\"1\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"ff524-b90de-c76f3-35a18\",\"apiTraceId\":\"4-9653835017_0DELVNSSG2950_34389181689744\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"12:15\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-01-07T12:15\",\"LocalFromTime\":\"2022-01-07 12:15\",\"FromUTCTime\":\"2022-01-07T12:15\",\"LocalToTime\":\"2022-01-07 14:10\",\"ToUTCTime\":\"2022-01-07T14:10\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Fri, 07 Jan\",\"ArrivalDateTxt\":\"Fri, 07 Jan\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"28449\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"VNS\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Varanasi\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":3267.1,\"PublishedFareTxt\":\"3,267\",\"ApiResultIndex\":\"4-9653835017_0DELVNSSG2950_34389181689744\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"logo\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2549,\"Tax\":666.7,\"YQTax\":0,\"OtherCharges\":515,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":134,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3215.7,\"PublishedFare\":3267.1,\"PublishedFareAgent\":3267.1,\"OfferedFareAgent\":3267.1,\"OfferedFare\":3149.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9653835017_0DELVNSSG2950_34389181691005\",\"ApiResultIndex\":\"4-9653835017_0DELVNSSG2950_34389181691005\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"fareIdentifierSP\":\"COUPON\",\"SeatAvailable\":11,\"classOfBooking\":\"DD\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":66.6,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3267.1,\"CostToAgent\":3267.1,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":666.7,\"TotalBaseFare\":3215.7,\"BaseFareCal\":3167.1,\"BaseFare\":2549,\"CommissionEarned\":66.6,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":134,\"MFT\":2.7,\"OT\":515,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":66.6,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3267.1,\"CostToAgent\":3267.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":66.6,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3267.1,\"CostToCustomer\":3267.1,\"BaseFareCal\":3167.1,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3167.1,\"intOfferedFare\":3149.1,\"intPublishFare\":3215.7,\"TripjackMarkup\":0,\"TripjackCommission\":66.6,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":66.6,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3267.1,\"CostToAgent\":3267.1,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0,\"TDSApplied\":1}}],\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-01-07T14:10\",\"SegFlightNumber\":\"SG-2950\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-01-07T12:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"12:15\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/partner.ineedtrip.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"IsSeriesFareData\":false,\"ExtraMarkup\":\"0\",\"ExtraMarkupOnGST\":0}','2022-01-05 17:36:13','2022-01-05 17:36:13',0,0);
/*!40000 ALTER TABLE `tb_shared_proposal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_tbb2c_contactus_address`
--

DROP TABLE IF EXISTS `tb_tbb2c_contactus_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_contactus_address` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `address` varchar(255) DEFAULT NULL,
  `IsPublish` char(3) DEFAULT NULL,
  `IsMarkForDel` char(3) DEFAULT NULL,
  PRIMARY KEY (`DesSysId`),
  UNIQUE KEY `DesSysId` (`DesSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_contactus_address`
--

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

--
-- Table structure for table `tb_tbb2c_destinations`
--

DROP TABLE IF EXISTS `tb_tbb2c_destinations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_destinations` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `ContinentId` int DEFAULT NULL,
  `sightseeingIds` varchar(256) DEFAULT NULL,
  `description` text,
  `otherDescription` text,
  `regionDescription` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `similarDestinations` varchar(256) DEFAULT NULL,
  `FAQ` text,
  `whyUseUs` text,
  `topTravelBlog` text,
  `popularPackages` varchar(256) DEFAULT NULL,
  `seotitle` varchar(256) DEFAULT NULL,
  `destinationImage` varchar(256) DEFAULT NULL,
  `DesId` int DEFAULT NULL,
  `IsFeatured` int DEFAULT NULL,
  `DisplayOnFooter` tinyint(1) DEFAULT NULL,
  `DisplayIndex` smallint DEFAULT NULL,
  `Title` varchar(450) DEFAULT NULL,
  `region_id` bigint DEFAULT NULL,
  `stateId` int DEFAULT NULL,
  `Activities` varchar(200) DEFAULT NULL,
  `Tours` int DEFAULT NULL,
  `Hotels` int DEFAULT NULL,
  `DetailText` text,
  `Image` varchar(765) DEFAULT NULL,
  `Bannerimg` varchar(765) DEFAULT NULL,
  `Countries` text,
  `CountryIds` varchar(765) DEFAULT NULL,
  `DestDescription` text,
  `UpdateDate` datetime DEFAULT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `CreatedBy` bigint DEFAULT NULL,
  `UpdatedBy` bigint DEFAULT NULL,
  `IsPublish` char(3) DEFAULT NULL,
  `IsActive` char(3) DEFAULT NULL,
  `IsMarkForDel` char(3) DEFAULT NULL,
  `packageListTitle` varchar(500) DEFAULT NULL,
  `packageListKeyword` varchar(500) DEFAULT NULL,
  `packageListDescription` varchar(500) DEFAULT NULL,
  `destinationTitle` varchar(500) DEFAULT NULL,
  `destinationKeyword` varchar(500) DEFAULT NULL,
  `destinationDescription` varchar(500) DEFAULT NULL,
  `package_list_header` varchar(2000) DEFAULT NULL,
  `package_list_footer` varchar(2000) DEFAULT NULL,
  `destination_header` varchar(2000) DEFAULT NULL,
  `destination_footer` varchar(2000) DEFAULT NULL,
  `DisplayOnHeader` tinyint(1) NOT NULL DEFAULT '0',
  `exploreHomeDestination` int DEFAULT '0',
  `Keyword` varchar(250) DEFAULT NULL,
  `Metatag` varchar(250) DEFAULT NULL,
  `seoHcontent` text,
  `seoFcontent` text,
  `heading1` text,
  `heading2` text,
  `destIcon` varchar(256) DEFAULT NULL,
  `displayOnActivity` int NOT NULL DEFAULT '1',
  PRIMARY KEY (`DesSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=306 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_destinations`
--

LOCK TABLES `tb_tbb2c_destinations` WRITE;
/*!40000 ALTER TABLE `tb_tbb2c_destinations` DISABLE KEYS */;
INSERT INTO `tb_tbb2c_destinations` VALUES (1,NULL,NULL,'Nainital Package: If you are planning to visit Nainital tourist places. Book Nainital trip and get exciting deals of Nainital holiday and Honeymoon packages at INeedTrip.',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\">Hoping for a\r\nvacation blessed with scenic natural grandeur and wilderness? Not far from\r\nDelhi, the perfect weekend vacation to take pleasure in with your friends and\r\nfamily, Nainital is a scintillating gem in the Himalayan necklace.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Located in\r\nUttarakhand, it attracts many national and international tourists every year.\r\nBeing a popular tourist spot there are many places where tourists can spend\r\ntheir leisure time. Many people after spending their vacation in Nainital\r\ndecide to come back again and again. While many are even attached to this\r\nbeautiful hill station for its peace and serenity in the environment and\r\nweather that they seldom want to go back.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">From the\r\nbalcony of your hotel room, sipping a cup of tea, acknowledge the stunning\r\nviews of the Himalayas. After, you enjoy your breakfast head down for the day.\r\nEnjoy the many activities and visit the local sights you must not miss out. We\r\nhave jotted down some top <b>Nainital\r\nTourist Places</b> to visit:<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Top places to visit in Nainital<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Naina Devi\r\nTemple<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">A well-known\r\nShakti Peeth of Hindu religion and draws followers from every part of the\r\ncountry. Situated on the Naina hillock close to the northern shore of the Naini\r\nLake, the Naina Devi Temple is quite possibly the most worshipped temple in\r\nNorthern India. It is believed that this is the place where the eyes of Sati\'s\r\nbody fell when Lord Shiva was carrying her. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Naini Lake</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Located\r\nright in the middle of Nainital town near the Naina Devi temple, the Naini Lake\r\nis one of the principal tourist attractions for the travelers in Nainital. This\r\nlake has its own history. You can enjoy boating and yachting here.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Boat House Club</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The Boat\r\nHouse Club is one of the must-visit spots in Nainital, a major fascination for\r\nthe travelers in Nainital. It was made during the nineteenth century, with a\r\nwooden floored bar. You can get a glittering outlook of the lake from this Boat\r\nHouse Club. Rejoice yourself with a <b>Nainital\r\nTrip</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Nainital Zoo</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Did you know\r\nthat Nainital has a zoo of its own and draws in countless sightseers\r\nconsistently towards it? You can get a glimpse of some of the uncommon species\r\nof animals, who used to live at the high heights and they are currently\r\nexceptionally uncommon or are nearly on the edge of extinction.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Eco Cave Gardens</b></span></i><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Did you ever\r\nthink about where the early men lived? Eco Cave Garden is a real fascination\r\nfor the sightseers; whoever visits Nainital must definitely visit this place.\r\nIt has been spread out without extreme manicuring. Altogether, there are around\r\nsix caves here, a great opportunity for the adventurous to explore. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Popular <b>Nainital Tour Package</b> will help to make\r\nyour vacation hassle free.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Tiffin Top (Dorothy\'s Seat)</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Also,\r\npopularly known as Dorothy\'s Seat, it is situated on the Ayarpatta Hills,\r\noffering a ravishing 360 degree perspective of the Lake District. It was named\r\nDorothy\'s Seat by a British Army Officer in the memory of his wife Dorothy\r\nKellet who passed away due to septicemia. One of the well-known picnic spots in\r\nNainital, the Tiffin Top is where you can partake in the astounding view of\r\nNainital from its top point. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>The Mall Road</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Renamed as\r\nthe Govind Ballabh Pant Marg, this road is quite possibly the most dynamic spot\r\nin Nainital. It is situated parallel to the lake, interfacing the two\r\nterminations of the town. Built during the British colonial rule, the Mall Road\r\nis the main road which goes through the center of the Nainital town. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Nainital Ropeway</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The aerial\r\nropeway takes you from Mallital, close to Mall Road, to Snow View Point which\r\noffers quite possibly the most bewildering sights in Nainital. One of the\r\nessential travelers in Nainital, explicitly for family vacationers, is the\r\nNainital Ropeway that many tourists indulge in to get a glimpse of the town all\r\nat once. Enjoy a three-minute ride over the enchanting scene of Nainital!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Is your next\r\n<b>Nainital Trip</b> on? Book from ‘I Need\r\nTrip’ for best deals and offers!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Naina Peak</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Naina Peak\r\nis known for its stunning viewpoint of the town, the Himalayas and moreover,\r\nthe massive breadths of the Terai spaces of Kumaon. Situated at an elevation of\r\n2,615 km, the Nanda Devi Peak and the mountains of the Tibet border are\r\nnoticeable from the highest point of this peak. Otherwise called the China Peak\r\n(before the 1962 Indo-China war), it is arranged at a 10 km distance from the\r\nTallital Bus Stand of Nainital. Do visit this spot on your get-away to\r\nNainital!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Bhimtal Lake</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">One of the\r\nrenowned lakes situated in the town of Bhimtal. The reason behind why it is so\r\nwell-known is because it is a stonework dam worked in the year 1883 which\r\nempowered the perfect storage facility. It has a catchment space of around\r\n17.12 sq km which is very enormous. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">&nbsp;</span></i><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Sattal</span></i></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Sattal as\r\nthe name suggests, it is a collection of 7 freshwater lakes in the lower\r\nHimalayan range. The spot is close to Bhimtal which is a famous town in the\r\nlocale of Nainital. With the increase in pollution level, Sattal is one of the\r\nfew clean and pristine freshwater lakes in our country. Enjoy yourself with the\r\nbest <b>Nainital Tour Package</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Khurpatal Lake</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Concealed in\r\nthe external Himalayan Range, the region is generally well known for its\r\nemerald blue-green lake, the Khurpatal Lake. Encircled by grand pine trees and\r\nthick vegetation, this interesting area is a heaven for nature and photography\r\nlovers. A quiet escape near Nainital, Khurpatal is quite possibly the most\r\ntranquil spot to visit in Nainital.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Sariyatal</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Nainital as\r\nwe all know is well known for its different attractive lakes, and Sariyatal is\r\nan astounding emerald green lake, perhaps the most tranquil spots to visit in\r\nNainital to partake in the excellence of the lakes in the slope town. The ideal\r\nspot to appreciate chilly waters, splendid scenes, and serene climate,\r\nSariyatal is amazingly famous with honeymooners and a paradise for nature\r\nenthusiasts.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Naukuchiatal</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Naukuchiatal,\r\nin a real sense signifies\' lake of nine corners’ is an exemplary slope station\r\nbegat after the lake. It is believed to be the deepest lake in Nainital. An\r\nexcellent serene spot, the region is a center of intriguing activities for\r\nthose in search of thrill.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Kamal Tal</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">It is a\r\nlittle lake, traversed over just 200 meters. Although it is a small lake, its\r\nbeauty is worth appreciating. A plentiful sum of lotuses blossom here during\r\nlotus season, which is the reason the lake is named as Kamal Tal or the Lotus\r\nLake. Kamal Tal Lake is one of the most loved spots to visit in Nainital for\r\nsome. In case you are searching for a tranquil time frame to go through with\r\nfamily or your life partner. Is your <b>Nainital\r\nTrip</b> on?<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Garud Tal</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">One of the\r\nseven lakes of popular Sat tal (seven lakes) is Garud Tal is a well-known\r\ntourist place as well. Set at an elevation of 4500 ft above ocean level, Garur\r\nTal is strangely associated with the wide range of various six lakes of Sat\r\nTal. Encircled by thick timberland and pine trees from every one of its sides,\r\nthis lake stays immaculate.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Kainchi Dham</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Another\r\npopular religious site to visit in Nainital is the Kainchi Dham. Set close by a\r\nflickering stream, the temple is devoted to Lord Hanuman and is visited by a\r\nfew adherents and worshippers often. It was built in 1962 by Neem Karoli Baba,\r\nalso the founder of Hanuman Garhi. A temple and an ashram, Kainchi Dham is\r\nimmersed by flourishing vegetation and sublime slopes. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>St John\'s Church</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Named by a\r\nbishop from Kolkata, the church returns you to an authentic time while giving\r\nyou all an opportunity to get it together and reflect on yourself. Quite\r\npossibly the most visited traveler in Nainital, St John Church, otherwise\r\ncalled St John\'s the Wilderness, is a beautiful old church built during the\r\n1800s. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Raj Bhawan- Governor’s House</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The Raj\r\nBhawan is quite possibly the most prescribed spot to visit in Nainital. It was\r\nbuilt by the British as a residence for the Governor of then North West\r\nProvince of India. Raj Bhawan was built as a copy of Buckingham Palace in a\r\nVictorian Gothic style by the architect F.W Stevens. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Hanuman Garhi</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The Hanuman\r\nGarhi is located at a height of 1950 meters. It is perhaps the most significant\r\nreligious place to visit in Nainital. The temple is committed to the Hindu God,\r\nLord Hanuman, who is the God of power and energy, and is believed to be a\r\nrebirth of Lord Shiva. It is only 3 kilometers from the main center of\r\nNainital.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Bhotia Market (Tibet Market)</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Bhotia\r\nMarket is quite possibly the most well-known shopping centre. It is situated close\r\nto the Naina Devi Temple. This spot is the joy of every shopaholic as you can\r\npurchase a great deal of astonishing apparel at great bartered costs. In case\r\nyou are searching for wonderful scarves, elegant bags, winter garments like\r\ncloaks or ethnic things, this is where you should visit. Enjoy your shopping\r\nwhile in Nainital on a vacation! Explore more with the best <b>Nainital Tour Package</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Astronomical Observatory</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Aryabhatta\r\nResearch Institute of Observational Sciences is among the stand-out touring places\r\nin Nainital. The Observatory is an incredible spot to visit in case you are\r\ngoing with youngsters. The Astronomical Observatory is one of the main research\r\ncenters in India for Astrophysics, Astronomy, and Atmospheric Science. It is\r\nonly 9 kilometers from Nainital on Manora Peak.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Nearby\r\ndestinations: Jim Corbett National Park, Mukteshwar Temple, Pangot<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Best Time to Visit</b></span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Nainital is\r\na year round tourist’s destination, yet March and June are considered to be the\r\nbest months. It gets hefty snowfall in winter and transforms into a white\r\nwonderland, making it the most sought destination to celebrate Christmas and\r\nNew Year. Find out about the best <b>Nainital\r\nPackage</b> for the perfect vacation!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>How to reach?</b></span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>By Flight</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The nearest\r\nairport to Nainital is Pantnagar Airport. It is around 70 km away from\r\nNainital. From here you have to either travel by bus or hire a local taxi.\r\nTourists can also reach Delhi IGI Airport and take a bus or hire a taxi to\r\ntravel around 300 km.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>By train</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">You can\r\narrive at Kathgodam Railway Station via train. It is only 23 km away from\r\nNainital. Most of the cities in India have trains to Kathgodam railway station.\r\nOne of the best options is Ranikhet Express which runs from New Delhi and\r\nKathgodam. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>By road</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">If you are\r\ncoming from New Delhi, you can cover the 300 km route by bus. You can take a\r\ntransport from Delhi Kashmiri Gate ISBT and reach your destination within 7\r\nhours approximately.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Where to stay?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Spend your\r\ntime sitting above the hypnotizing range of the grand Himalayas while you rest\r\nin the solace of your room. Experience excellence through your own eyes as the\r\nartist laureate sees it. Take a deep breath and inhale the natural air in these\r\nunblemished mountains with your loved ones.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">And if you have\r\nthe option of the cozy rooms to cuddle in, you surely will enjoy your vacation.\r\nSo here we are trying to help you to cuddle in the coziest rooms.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b><i>Top places\r\nto stay, experience a great getaway for a relaxing holiday:</i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Dynasty Resort</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Hotel Chevron Fairhavens, Nainital</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Bhikampur Lodge by Howard – Nainital</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Cygnett Resort Mountain Breeze</span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">La Niwasa by Shivraj</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Hotel Classic The Mall</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Shervani Hilltop package</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\">Road Trip<span style=\"color:black\"> to\r\n     the Hills of Nainital</span><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Opt for the\r\nbest <b>Nainital package</b>…</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18892,0,0,NULL,'Nainital',1,NULL,NULL,5,NULL,NULL,'1_1617177553.jpg','1_1614076897.jpg','India','101',NULL,'2021-02-22 18:46:16','2021-02-22 18:46:16',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Nainital Tourist Place, Book Nainital Package, Nainital Tours, Tour Package Nainital, Book Nainital Trip, Places to Visit in Nainital, Jim Corbett Package','Nainital Packages, Nainital Tour Package, Nainital Tourist Places','','',NULL,NULL,NULL,0),(2,NULL,NULL,'Dubai Tour Package: Explore Dubai honeymoon and holiday package at affordable price. Plan your Dubai trip with Ineedtrip.com and get best desert safari deals from India.',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\">Looking for\r\na luxurious escapade to spend your vacation? Dubai, the destination full of\r\nluxury, meets all your requirements. Located in the&nbsp;Middle East, it is one\r\nof the most preferred holiday destinations in the world. Comprising stunning\r\narchitectures designed with a modern touch and luxury outlets of high-end\r\nbrands from around the world. For a chill out vacation at the flawless beaches,\r\nstay at the luxurious beachside resorts and have an enthralling experience.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The <b>Dubai Tour Packages</b> would provide the\r\nbest experience. On choosing the <b>Dubai\r\nTours</b>, you get to experience an amalgamation of traditions, urbanization\r\nand true beauty of the nation. If you are fond of knowing the stories of\r\nplaces, then a <b>Dubai Trip</b> would\r\ndefinitely make your soul happy.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The city is\r\nnot only friendly to solo travelers but is a great spot for friends and family.\r\nAnd with a <b>Dubai</b> <b>Holiday Package</b>, enjoy the most from\r\nyour vacation. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Best places to visit &amp; things to do in\r\nDubai<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Before you\r\nembark on a vacation to Dubai, we have rounded up the places to visit and best\r\nthings to do in Dubai: <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Dubai Parks\r\nand Resorts<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">This\r\nextraordinary spot has three amazing theme parks and one water park. Some\r\nincredible options in Dubai Parks and Resorts include the Motiongate Dubai,\r\nBollywood Parks Dubai, and Legoland Water Park. There\'s diversion in abundance\r\nfor movie enthusiasts, thrilling rides, water rides and roller coasters. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>The Dubai\r\nMall<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The Dubai\r\nMall is a giant hub of unlimited shopping options and activities! Aside from\r\nshops and restaurants, the mall has a 22-screen multiplex movie theatre, an\r\naquarium with exotic marine creatures, the Sega Republic theme park, an ice\r\nskating rink, and substantially more. The aquarium, specifically, is one of the\r\nbest underwater marine displays in the world. You can also track down the best\r\ngold adornments in the Gold Souk or just check in the latest footwear at Level\r\nShoes. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>The Dubai\r\nFountain<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The Dubai\r\nFountain is the world\'s tallest performing wellspring in Downtown Dubai. Get a\r\nglimpse of the enthralling water, music and light show, a view nowhere else.\r\nThe Dubai Fountain is set on the 30 acre artificial Burj Lake. The wellspring\r\nis enlightened by millions of lights, and the shooting water sports reach as\r\nhigh as a 50-story building. It\'s a breathtaking spectacle and do plan it\r\nduring your downtown trip.&nbsp;&nbsp; <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>The Jumeirah\r\nMosque<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Embracing an\r\n\'Open Doors, Open Minds\' policy, the mosque invites guests of all religion to\r\nrespect and learn about Islam and the local culture while admiring the\r\nmagnificence of the mosque. Perhaps the most notable milestone in Dubai is the\r\nJumeirah Mosque. This amazingly designed medieval Fatimid styled mosque has\r\nbeen built with great care and devotion, extraordinary consideration has been\r\nset to Arabic calligraphy, multifaceted fine art, and mosaics motivated by\r\nnature.&nbsp; <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>The Palm\r\nIslands<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Worked to\r\ndraw in sightseers from around the world, the Palm Islands in Dubai are amazing\r\naccomplishments of great engineering ideas and technique. Know how they were\r\nconstructed and observe some of the details. The Palm Islands in Dubai\r\ncomprises three man-made islands constructed on the coast of Dubai in the UAE,\r\none of the most spellbinding engineering projects undertaken. These three\r\nislands are Palm Jumeirah, Palm Jebel Ali, and Deira Islands. A true <b>Dubai Holiday Package</b> offers you to\r\nhave fun and relax!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>The Lost\r\nChambers Aquarium in Dubai\'s Atlantis <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">For\r\nmillennia, individuals have been looking for the lost city of Atlantis. Find\r\nsecrets of the profound and pick up interesting specifics about marine life.\r\nEnvision the adventure of dozing underwater and bathing while the fishes watch\r\nout for you without really going into the ocean. The grand Atlantis resort\r\nallows you an opportunity to partake in this and considerably more. Take a\r\nbackground visit or dive in with an aquarium expert to spot around 65,000\r\nmarine creatures swimming in the Ambassador Lagoon. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Burj Al Arab\r\n<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Everybody\r\nknows it\'s a notable hotel, but do you realize exactly how noteworthy it truly\r\nis? Let’s find out. Burj Al Arab Jumeirah is 321 m tall. It is estimated to be\r\n14 m taller than the Eiffel Tower. Standing tall on its own island, Burj Al\r\nArab Jumeirah highlights suites with a great view of the sea, 9 signature\r\nrestaurants and a spa centre.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Gold Souk\r\nmarket in Dubai<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Gold Souk\r\nmarket is situated in Deira in the old part of Dubai. This traditional market\r\noffers many stores selling essentially gold adornments, also silver and other\r\nvaluable stone jewelry in complex Arab and Indian designs. Guests usually spend\r\nan entire day here! <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Unlimited\r\namazing experiences in the desert in Dubai<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Whether you\r\nwant to enjoy a luxury overnight stay, or hoping to raise your adrenaline\r\nlevels with a desert safari you will discover a lot to do in this desert city.\r\nMake a note of the desert safari activities in Dubai.<o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Morning Desert Safari</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Overnight Desert Safari</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Desert Safari with BBQ Dinner</span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Camping with Barbeque Dinner and Belly Dancing</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Quad Biking</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Hot Air Balloon in Dubai</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Hummer Desert Safari</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Camel Safari in Dubai</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Evening 4x4 Desert Safari</span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Dune Buggy</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Sandboarding</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Dune Bashing</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Fat Biking</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Al Maha Desert Resort</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Private Night Safari and </span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\">Stargazing<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Luxury Dinner in Desert</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Falconry Experience in Dubai</span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin;color:black\">Ktm Desert Dirt Bike Ride in\r\n     Dubai For Beginners</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">For those\r\nkeen on mind blowing voyage, there are various adventurous <b>Dubai Tour Packages</b>. Where else would you be able to venture into a\r\nMiddle Eastern desert brimming with secret, on a guided <b>Desert Safari Dubai</b> tour other than in the UAE? <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Wondering how to go to Dubai?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The best way\r\nto reach Dubai is via air. Flights from around the world fly down to Dubai.\r\nSome well-known airports in Dubai are Dubai International Airport which is\r\nsituated in Dubai itself, Abu Dhabi International Airport, and Al Maktoum International\r\nAirport which is 32 km southwest of Dubai in Jebel Ali. Another airport is\r\nSharjah International Airport which is situated in Sharjah. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Best time to go to Dubai&nbsp; <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The best\r\nseason to visit Dubai is during the winter months i.e. from November to March\r\nwhen the temperature is sensible and sightseers can explore without any\r\nobstacle. The city offers the tourists an incredible encounter however it is\r\nimportant that one picks the best season to visit Dubai from India for their\r\nvacation.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Where you might want to enjoy a luxurious\r\nstay?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Most\r\nvacationers going to Dubai are more acquainted with the Burj Al Arab hotel,\r\nintended to resemble the traditional Arab sailing ship. The Burj Al Arab is\r\nreliably casted a ballot as quite possibly the most lavish hotels in the world,\r\nthus, you don\'t need to stress over the nature of the services, simply pause\r\nfor a minute and partake in the shocking perspectives and services that this\r\nhotel has to offer. Or hoping to check in the Jumeirah Beach Hotel which is\r\npopular for its interesting wave-like architecture, it additionally claims a\r\nprivate crescent-shaped beach that offers tremendous activities for water\r\nsports enthusiasts.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Why choose a Dubai tour package?</b></span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Travelling\r\nin the new normal, this enthusiastic nation has thought of various ways of\r\nholidaying while staying safe. This is drawing in voyagers from across the\r\nworld to experience the thriving getaways of Dubai.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The\r\ntranscending high rises, big shopping malls, desert safari tours, and other\r\nbest in class entertainment zones are the features of all <b>Dubai tour packages</b>. Every one of the awe inspiring spots in Dubai\r\nis included in the <b>Dubai Trip Package</b>\r\nwith flight and without flight. Visit this fascinating destination for the love\r\nof horizons and culture; you get to have an encounter you have never\r\nexperienced before!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Check out\r\nthe exclusive holiday tours such as <b>Dubai\r\nHoliday Package</b>, <b>Dubai Honeymoon\r\nPackage</b>, <b>Dubai Trip Package</b>, and\r\n<b>Desert Safari Dubai</b>. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Settling on\r\na <b>Dubai Trip</b> package can help you\r\nsave money, as you get better deals with airlines and hotels, activities,\r\nsightseeing and more. It is more affordable than going all alone. And if you\r\nare planning for a romantic getaway go for a <b>Dubai honeymoon package</b>, to save and enjoy more.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>So how about\r\nHoneymooning in Dubai?</b></span></i><b><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Dubai is the\r\nideal honeymoon destination for couples glancing to honeymoon in quick moving\r\ncosmopolitan cities with loads of excitement everywhere. When you book a <b>Dubai honeymoon package</b>, you actually\r\nbook a trip to an extraordinary heaven that melds its local Arabian traditions\r\nwith the entirety of the extravagances of the West. Dubai is a cultural centre\r\nwhere you can meet people from around the world. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Then, there\r\nis the rough magnificence of the desert and the adventurous activities you can\r\nindulge in during your <b>Dubai trip</b>,\r\nwhether you plan on partaking in a day or taking a desert safari to watch the\r\noutlandish moves of a belly-dancer. <b>Dubai\r\ntour packages</b> guarantee to help you create memories.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">For your\r\nhoneymoon in Dubai there are a lot of sensational activities filled into your <b>Dubai Honeymoon Package</b>, from going for\r\nshopping at the gigantic Dubai Mall to cruising along the Dubai Creek in a dhow\r\nwhile partaking in a romantic dinner and taking off to the observation deck at\r\nthe Burj Khalifa to add a thrill of excitement to your honeymoon vacation. <o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Note: Before\r\nyou leave for Dubai it is important to get 2 doses of vaccine and you must also\r\nhave a negative RT-PCR test report.&nbsp;<o:p></o:p></span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8219,1,1,NULL,'Dubai',0,NULL,NULL,6,NULL,NULL,'2_1710331847.webp','2_1710331847.webp','United Arab Emirates','228',NULL,'2021-02-22 18:46:16','2021-02-22 18:46:16',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Book Dubai Package, Dubai Packages, Dubai Tour, Dubai Holidays, Honeymoon Package Dubai, Trip Package Dubai, Book Desert Safari Dubai, Book Dubai Trip, Safari Deals Dubai.','Book Dubai Tours, Holiday Package, Dubai Honeymoon Package from India.','','',NULL,NULL,NULL,1),(3,NULL,NULL,'\"Embark on a sacred journey to Yamunotri with iNeedTrip. Visit the holy temple, trek through scenic trails, and experience spiritual serenity in the Himalayas.\"',NULL,'<p>Yamunotri is a revered pilgrimage destination situated in the Garhwal region of the Indian state of Uttarakhand. It is one of the Char Dham pilgrimage sites and holds immense religious significance for Hindus. The temple of Yamunotri is dedicated to the goddess Yamuna, who is considered the sacred river Yamuna\'s source. Here are some key highlights of Yamunotri:</p><p>1. Location:</p><p>Yamunotri is located in the Uttarkashi district of Uttarakhand, in the western Himalayas. It is situated at an altitude of approximately 3,293 meters (10,804 feet) above sea level, making it one of the higher Char Dham shrines.</p><p>2. Yamunotri Temple:</p><p>The main attraction of Yamunotri is the ancient Yamunotri Temple, which is dedicated to Goddess Yamuna. The temple is a beautiful stone structure with intricate carvings and is perched in a serene location surrounded by snow-capped peaks and lush greenery.</p><p>3. Yamunotri Temple Opening and Closing Dates:</p><p>The temple typically opens in late April or early May and closes on the day of Diwali, which usually falls in October or November. The temple remains closed during the harsh winter months due to heavy snowfall.</p><p>4. Trek to Yamunotri:</p><p>The journey to Yamunotri often begins at the town of Hanuman Chatti, which is the last roadhead before the temple. From there, pilgrims can choose to trek for approximately 6 kilometers (3.7 miles) to reach Yamunotri. Mules and palanquins are also available for those who prefer not to trek.</p><p>5. Surya Kund and Divya Shila:</p><p>Near the Yamunotri Temple, there are two hot springs known as Surya Kund and Gauri Kund. Pilgrims traditionally cook rice and potatoes in these hot springs by wrapping them in cloth. After offering them to the goddess, they are distributed as prasad (blessed food). The Divya Shila, a large rock pillar, is also worshipped as it is believed to be the source of the Yamuna River.</p><p>6. Scenic Beauty:</p><p>Yamunotri is surrounded by breathtaking natural beauty, including lush meadows, dense forests, and snow-clad peaks. The trekking route offers stunning views of the Garhwal Himalayas.</p><p>7. Religious Significance:</p><p>The Yamuna River is considered one of the holiest rivers in Hinduism, and Yamunotri is its source. Pilgrims visit the temple to take a holy dip in the icy-cold waters of the Yamuna River, which is believed to cleanse one\'s sins and grant salvation.</p><p>8. Char Dham Yatra:</p><p>Yamunotri is one of the four sacred destinations of the Char Dham Yatra, which also includes Gangotri, Kedarnath, and Badrinath. Pilgrims undertake this journey to seek spiritual enlightenment and divine blessings.</p><p>9. Weather:</p><p>Due to its high altitude, Yamunotri experiences cold weather throughout the year. Summers (May to June) are the best time to visit, as the weather is relatively pleasant. Winters are extremely harsh, and the temple remains closed.</p><p>10. Accommodation:</p><p>- Accommodation options in Yamunotri include guesthouses and ashrams that provide basic amenities for pilgrims.</p><p>Visiting Yamunotri is not just a religious journey but also an opportunity to connect with the natural beauty of the Himalayas and immerse oneself in the spiritual ambiance of this sacred place. Pilgrims from all over India and the world come to Yamunotri seeking blessings and inner peace at the source of the holy Yamuna River.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,30178,0,NULL,NULL,'Yamunotri',0,NULL,NULL,NULL,NULL,NULL,'3_1695730093.png','3_1695730093.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Yamunotri Yatra, religious pilgrimage, Himalayan spirituality','\"Yamunotri\'s Sacred Journey with iNeedTrip\"','','',NULL,NULL,NULL,0),(4,NULL,NULL,'\"Indulge in a Himalayan retreat in Uttarkashi with iNeedTrip. Enjoy pristine landscapes, sacred temples, and the tranquility of Uttarakhand.\"',NULL,'<p>Uttarkashi is a serene and spiritually significant town located in the Indian state of Uttarakhand. Nestled in the Garhwal Himalayas, it is known for its natural beauty, religious significance, and proximity to the source of the holy River Ganges. Uttarkashi is a popular destination for pilgrims, trekkers, and nature enthusiasts. Here are some key highlights of Uttarkashi:</p><p>1. Pilgrimage Destinations:</p><p>Uttarkashi is often referred to as the \"Kashi of the North\" due to its spiritual significance. The town is home to numerous temples and ashrams. The most famous temple in Uttarkashi is the Kashi Vishwanath Temple, dedicated to Lord Shiva. Other important temples include the Bhairav Temple, Kuteti Devi Temple, and the Gangotri Temple, which serves as a base for the revered Char Dham Yatra pilgrimage.</p><p>2. Gangotri:</p><p>Uttarkashi serves as a gateway to the sacred town of Gangotri, which is approximately 100 kilometers away. Gangotri is the origin of the River Ganges, and the Gangotri Temple is a major pilgrimage site for Hindus. The trek from Gangotri to Gaumukh, the glacier from which the Ganges emerges, is a popular trekking route.</p><p>3. Natural Beauty:</p><p>Uttarkashi is surrounded by lush green valleys, dense forests, and the majestic Himalayan peaks. The town is an ideal destination for nature lovers and trekkers who seek adventure amidst scenic landscapes.</p><p>4. Trekking and Adventure:</p><p>Uttarkashi serves as a base for numerous trekking and mountaineering expeditions. Popular trekking routes in the region include the Dayara Bugyal Trek, Dodital Trek, and Yamunotri Saptarishi Kund Trek. The region is also known for its opportunities for river rafting and camping.</p><p>5. Nehru Institute of Mountaineering (NIM):</p><p>The town is home to the prestigious Nehru Institute of Mountaineering, where aspiring mountaineers and adventurers from around the world come to receive training and guidance.</p><p>6. Maneri Dam:</p><p>The Maneri Dam, located near Uttarkashi, is a hydroelectric project and a picturesque spot for picnics. The dam is built on the Bhagirathi River and offers stunning views of the surrounding hills.</p><p>7. Char Dham Yatra:</p><p>Uttarkashi serves as a crucial stop on the Char Dham Yatra pilgrimage circuit, which includes Yamunotri, Gangotri, Kedarnath, and Badrinath. Pilgrims often use Uttarkashi as a base to embark on this sacred journey.</p><p>8. Accessibility:</p><p>Uttarkashi can be reached by road from major cities in Uttarakhand, including Dehradun and Rishikesh. The nearest airport is Jolly Grant Airport in Dehradun.</p><p>9. Local Cuisine:</p><p>Uttarkashi offers a taste of traditional Garhwali cuisine. Popular dishes include Aloo Ke Gutke, Jhangora Ki Kheer, and local preparations of rajma (kidney beans) and leafy greens.</p><p>10. Spiritual Retreats:</p><p>- Many ashrams and spiritual retreat centers are located in Uttarkashi, offering opportunities for meditation, yoga, and spiritual rejuvenation.</p><p>In summary, Uttarkashi is a serene and spiritually significant town that offers a unique blend of natural beauty, religious heritage, and adventure opportunities. Whether you\'re on a pilgrimage, trekking expedition, or simply seeking a tranquil escape in the Himalayas, Uttarkashi provides a peaceful and spiritually enriching experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,28264,0,NULL,NULL,'Uttarkashi',0,NULL,NULL,NULL,NULL,NULL,'4_1695729424.png','4_1695729424.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Uttarkashi vacations, Uttarakhand beauty, mountain escape','\"Uttarkashi\'s Himalayan Retreat with iNeedTrip\"','','',NULL,NULL,NULL,0),(5,NULL,NULL,'\"Embark on a Periyar Wildlife adventure in Thekkady with iNeedTrip. Spot elephants, diverse fauna, and explore the lush Western Ghats of Kerala.\"',NULL,'<p>Thekkady, located in the southern Indian state of Kerala, is a picturesque and serene destination known for its lush greenery, abundant wildlife, and pristine landscapes. It is home to the famous Periyar National Park and Wildlife Sanctuary, making it a haven for nature enthusiasts and wildlife lovers. Here\'s an overview of Thekkady:</p><p>Geography and Location:</p><p>Thekkady is situated in the Idukki district of Kerala, near the border with the neighboring state of Tamil Nadu. It is part of the Western Ghats, a UNESCO World Heritage Site known for its biodiversity and stunning landscapes. The town is nestled amidst the Western Ghats, offering panoramic views of rolling hills and dense forests.</p><p>Periyar National Park and Wildlife Sanctuary:</p><p>The main attraction of Thekkady is the Periyar National Park, which is spread over 925 square kilometers (356 square miles) and is home to a rich diversity of flora and fauna. The centerpiece of the sanctuary is the Periyar Lake, an artificial lake created by the Mullaperiyar Dam. Visitors can take boat rides on the lake to spot wildlife along its shores, including elephants, deer, bison, and various bird species.</p><p>Wildlife Safari:</p><p>Thekkady is renowned for its wildlife safaris, which provide a unique opportunity to observe animals in their natural habitat. Jeep safaris and guided treks are available, allowing visitors to explore the forested areas and increase their chances of spotting elusive creatures like tigers and leopards. Elephant safaris are also popular and offer a unique way to traverse the jungle.</p><p>Flora and Fauna:</p><p>Periyar National Park is home to a wide range of wildlife, including Asian elephants, Indian gaurs (bison), sambar deer, barking deer, wild boars, and the occasional tiger and leopard. The sanctuary is also a birdwatcher\'s paradise, with over 300 species of birds, making it an excellent destination for ornithologists.</p><p>Boat Cruises:</p><p>The boat cruises on Periyar Lake are one of the major highlights of Thekkady. These cruises take you through the heart of the sanctuary and provide an opportunity to witness wildlife in a tranquil setting. The early morning and late afternoon cruises are ideal for spotting animals as they come to the water\'s edge to drink.</p><p>Spice Plantations:</p><p>Thekkady is known for its spice plantations, where you can learn about the cultivation and processing of spices like cardamom, pepper, cloves, and cinnamon. Many plantations offer guided tours where you can see how these spices are grown and harvested.</p><p>Kalaripayattu and Cultural Shows:</p><p>Kalaripayattu, an ancient martial art form, is practiced and showcased in Thekkady. You can attend performances and demonstrations of this dynamic and acrobatic martial art. Additionally, there are cultural shows that feature traditional dance and music from Kerala.</p><p>Access and Accommodation:</p><p>The nearest major town to Thekkady is Kumily, which is well-connected by road. The nearest railway station is Kottayam, and the nearest airport is Madurai in Tamil Nadu, both of which are around 140 kilometers (87 miles) away. Thekkady offers a range of accommodation options, from budget guesthouses to luxury resorts, ensuring that visitors can find suitable lodging for their needs.</p><p>Thekkady is a tranquil and rejuvenating destination where visitors can immerse themselves in the beauty of nature, witness diverse wildlife, and experience the rich culture of Kerala. Whether you\'re interested in adventure, wildlife, or simply seeking a peaceful getaway in the lap of nature, Thekkady has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,27156,0,NULL,NULL,'Thekkady',0,NULL,NULL,NULL,NULL,NULL,'5_1695810840.png','5_1695810840.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Thekkady safari, Kerala wildlife, Periyar Tiger Reserve','\"Thekkady\'s Periyar Wildlife with iNeedTrip\"','','',NULL,NULL,NULL,0),(6,NULL,NULL,'\"Embark on a spiritual retreat in Rudraprayag with iNeedTrip. Visit ancient temples, serene rivers, and experience the Himalayan spirituality.\"',NULL,'<p>Rudraprayag is a scenic town situated in the Indian state of Uttarakhand. It is one of the Panch Prayag, which refers to the five confluences of the Alaknanda River, a major tributary of the Ganges. Rudraprayag is the meeting point of the Alaknanda River and the Mandakini River. This charming town is not only known for its religious significance but also for its stunning natural beauty, making it a popular destination for both pilgrims and tourists. Here are some key highlights of Rudraprayag:</p><p>1. Confluence of Rivers:</p><p>The town\'s name, Rudraprayag, is derived from two words: \"Rudra,\" which is another name for Lord Shiva, and \"Prayag,\" meaning confluence. Rudraprayag is believed to be the place where Lord Shiva performed his famous Tandava dance, and it\'s considered a sacred site for Hindus due to the confluence of the two rivers.</p><p>2. Temples:</p><p>Rudraprayag is home to several temples that are of great religious and architectural significance. The most famous temple in the town is the Rudranath Temple, dedicated to Lord Shiva. Other notable temples include the Chamunda Devi Temple and the Koteshwar Temple.</p><p>3. Scenic Beauty:</p><p>The town is surrounded by picturesque landscapes, including lush green hills, dense forests, and the majestic Himalayan mountains. The confluence of the Alaknanda and Mandakini rivers creates a stunning natural backdrop.</p><p>4. Pilgrimage Destination:</p><p>Rudraprayag is an important pilgrimage destination for devotees traveling to the Char Dham Yatra, which includes visits to the four sacred shrines of Yamunotri, Gangotri, Kedarnath, and Badrinath. Many pilgrims stop in Rudraprayag as they journey to these sacred sites.</p><p>5. Adventure Activities:</p><p>The region around Rudraprayag offers opportunities for adventure activities such as trekking, camping, and white-water rafting. The town is a great base for exploring the nearby Himalayan trails.</p><p>6. Accessibility:</p><p>Rudraprayag is well-connected by road to major cities like Haridwar and Dehradun. The nearest railway station is at Rishikesh, and the nearest airport is the Jolly Grant Airport in Dehradun.</p><p>7. Rudraprayag Hydroelectric Plant:</p><p>The town is home to the Rudraprayag Hydroelectric Plant, which generates electricity from the waters of the Alaknanda River. The plant plays a crucial role in Uttarakhand\'s energy production.</p><p>8. Char Dham Yatra Base:</p><p>Rudraprayag serves as a base for the Char Dham Yatra, and many pilgrims use the town as a starting point for their journey to the sacred shrines.</p><p>9. Peaceful Atmosphere:</p><p>Rudraprayag offers a serene and tranquil atmosphere, making it an ideal place for meditation and spiritual retreats. The sound of the flowing rivers adds to the peaceful ambiance.</p><p>In summary, Rudraprayag is a place of religious significance, natural beauty, and adventure. Whether you\'re a pilgrim seeking spiritual solace, an adventure enthusiast looking to explore the Himalayas, or a nature lover craving scenic beauty, Rudraprayag has something to offer to all kinds of travelers. It provides a unique blend of spirituality and natural splendor in the lap of the majestic Himalayan mountains.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34295,0,NULL,NULL,'Rudraprayag',0,NULL,NULL,NULL,NULL,NULL,'6_1695726006.png','6_1695726006.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Rudraprayag Yatra, religious tourism, Himalayan pilgrimage','\"Rudraprayag\'s Spiritual Retreat with iNeedTrip\"','','',NULL,NULL,NULL,0),(7,NULL,NULL,'\"Experience tea gardens paradise in Munnar with iNeedTrip. Visit lush tea plantations, pristine lakes, and enjoy the beauty of Kerala\'s Western Ghats.\"',NULL,'<p>Munnar is a breathtaking hill station nestled in the Western Ghats of the Indian state of Kerala. Known for its lush tea plantations, cool climate, and stunning landscapes, Munnar is often referred to as the \"Kashmir of South India.\" It\'s a popular destination for nature lovers, honeymooners, and those seeking a peaceful retreat. Here are some key highlights of Munnar:</p><p>1. Tea Plantations:</p><p>Munnar is renowned for its vast tea estates, which blanket the hills and valleys in vibrant shades of green. Visitors can take guided tours of tea factories to learn about the tea-making process and sample some of the finest teas in the world.</p><p>The scenic beauty of the tea gardens is best experienced during the monsoon season when the plantations are covered in mist and the landscape looks ethereal.</p><p>2. Munnar\'s Scented Beauty:</p><p>The town is famous for its aromatic spice plantations, including cardamom, cinnamon, and cloves. A visit to these spice gardens allows you to witness the cultivation and harvesting of these aromatic spices.</p><p>3. Anamudi Peak:</p><p>Anamudi Peak, the highest peak in South India, is located near Munnar. Trekkers and adventure enthusiasts often visit this peak to enjoy panoramic views of the surrounding Western Ghats and the Anamudi Shola National Park.</p><p>4. Eravikulam National Park:</p><p>Eravikulam National Park, home to the endangered Nilgiri Tahr, is a significant attraction near Munnar. The park is also known for its vibrant flora and fauna and offers trekking opportunities.</p><p>The Neelakurinji flower, which blooms once every 12 years, carpets the hillsides of the park, creating a spectacular natural phenomenon.</p><p>5. Mattupetty Dam and Lake:</p><p>Mattupetty Dam, located near Munnar, is a popular spot for boating and picnics. The serene Mattupetty Lake, surrounded by lush greenery and rolling hills, offers a peaceful retreat.</p><p>6. Attukal Waterfalls:</p><p>Attukal Waterfalls is a beautiful cascade situated about 9 kilometers from Munnar. The surrounding forests and lush greenery make it a great place for nature walks and photography.</p><p>7. Religious Sites:</p><p>Munnar is home to various temples and churches. The Attukal Bhagavathy Temple, St. Thomas Marthoma Church, and the Christ Church are some of the notable religious sites.</p><p>8. Wildlife Sanctuaries:</p><p>Besides Eravikulam National Park, Munnar is also close to other wildlife sanctuaries like Chinnar Wildlife Sanctuary and Salim Ali Bird Sanctuary, which are rich in biodiversity and offer opportunities for wildlife spotting and birdwatching.</p><p>9. Weather:</p><p>Munnar enjoys a cool and pleasant climate throughout the year. Summers are mild, making it a popular summer getaway, while the winter months bring cooler temperatures.</p><p>10. Adventure Activities:</p><p>- Munnar offers various adventure activities, including trekking, mountain biking, and paragliding, making it an ideal destination for adventure enthusiasts.</p><p>11. Accessibility:</p><p>- The nearest major airports to Munnar are Cochin International Airport (approximately 110 kilometers away) and Madurai International Airport (around 140 kilometers away). The town is well-connected by road and can be reached by bus or taxi from nearby cities.</p><p>In summary, Munnar is a nature lover\'s paradise with its captivating landscapes, lush plantations, and opportunities for outdoor activities. Whether you\'re sipping on freshly brewed tea amidst the rolling hills or exploring the abundant flora and fauna of the Western Ghats, Munnar offers a serene and rejuvenating escape in the lap of nature.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18697,0,NULL,NULL,'Munnar',0,NULL,NULL,NULL,NULL,NULL,'7_1695641206.png','7_1695641206.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Munnar tours, Kerala tea gardens, Western Ghats beauty','\"Munnar\'s Tea Gardens Paradise with iNeedTrip\"','','',NULL,NULL,NULL,0),(8,NULL,NULL,'Mauritius Package:  Explore Mauritius tours and honeymoon package at affordable price. Plan your Mauritius trip with Ineedtrip.com and get best holiday deals from India.',NULL,'<p>Mauritius is a beautiful island nation located in the Indian Ocean, off the eastern coast of Africa. Known for its stunning beaches, lush landscapes, and diverse culture, Mauritius is a popular tourist destination that offers a blend of natural beauty and cultural richness. Here\'s an overview of what makes Mauritius a captivating and enchanting place:</p><p>Geography and Location:</p><p>Mauritius is situated about 2,000 kilometers (1,200 miles) off the southeast coast of Africa, in the southwestern Indian Ocean.</p><p>The country consists of the main island of Mauritius, along with several smaller islands and islets, including Rodrigues, Agalega, and Cargados Carajos Shoals.</p><p>Natural Beauty:</p><p>Mauritius is renowned for its breathtaking beaches, with pristine white sands and crystal-clear turquoise waters. Popular beach destinations include Trou-aux-Biches, Belle Mare, and Le Morne.</p><p>The island\'s interior is characterized by lush green landscapes, rolling hills, waterfalls, and dramatic volcanic formations.</p><p>Coral Reefs and Marine Life:</p><p>Mauritius boasts vibrant coral reefs that are teeming with marine life, making it a paradise for snorkelers and divers.</p><p>The Blue Bay Marine Park, located on the southeast coast, is known for its colorful coral gardens and abundant fish species.</p><p>Culture and Heritage:</p><p>Mauritius is a culturally diverse nation, with influences from Africa, Europe, India, and China. This diversity is reflected in its cuisine, festivals, and traditions.</p><p>The island celebrates various cultural festivals, including Diwali, Eid, Chinese New Year, and Holi, offering visitors a chance to experience different cultural celebrations.</p><p>Cuisine:</p><p>Mauritian cuisine is a delightful fusion of flavors from various cultures. It features a mix of Creole, Indian, Chinese, and French dishes.</p><p>Popular dishes include dholl puri (a type of flatbread), fish vindaye (fish in a spicy marinade), and rougaille (a tomato-based stew).</p><p>Outdoor Activities:</p><p>Mauritius offers a wide range of outdoor activities, from hiking in Black River Gorges National Park to zip-lining in the lush forests of Casela Nature Park.</p><p>Water sports enthusiasts can enjoy windsurfing, kiteboarding, paddleboarding, and big-game fishing.</p><p>Island Hopping:</p><p>Mauritius provides opportunities for island hopping, allowing visitors to explore nearby islets and their unique attractions. Île aux Cerfs is a popular destination known for its beautiful beaches and water sports.</p><p>Luxury Resorts:</p><p>Mauritius is home to a variety of luxury resorts and hotels that cater to travelers seeking a pampered and tranquil experience. These resorts often feature overwater bungalows and spa facilities.</p><p>Historical Sites:</p><p>The capital city of Port Louis offers historical sites like Aapravasi Ghat, a UNESCO World Heritage Site that played a significant role in the history of indentured labor migration.</p><p>The Citadel Fort Adelaide provides panoramic views of the city and harbor.</p><p>Accessibility:</p><p>Sir Seewoosagur Ramgoolam International Airport is the main gateway to Mauritius, with numerous international flights connecting the island to major cities around the world.</p><p>In summary, Mauritius is a tropical paradise known for its stunning beaches, vibrant marine life, cultural diversity, and a wide range of outdoor activities. Whether you\'re seeking relaxation at a luxury resort, adventure in the great outdoors, or a taste of diverse cuisines, Mauritius offers a wealth of experiences for travelers looking to explore this enchanting island nation.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,17162,0,0,NULL,'Mauritius',0,NULL,NULL,10,NULL,NULL,'8_1630317590.jpg','8_1694691873.png','Mauritius','139',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mauritius Tour Packages','Mauritius Tour Packages','','',NULL,NULL,NULL,0),(9,NULL,NULL,'\"Experience backwater bliss in Kumarakom with iNeedTrip. Cruise through tranquil waters, lush paddy fields, and coconut groves in Kerala.\"',NULL,'<p>Kumarakom is a serene and enchanting village situated in the southern Indian state of Kerala. Nestled on the banks of Lake Vembanad, the largest lake in Kerala, Kumarakom is renowned for its picturesque backwaters, lush green landscapes, and abundant birdlife. It is a tranquil destination that offers a perfect escape for travelers seeking relaxation, natural beauty, and a glimpse into Kerala\'s unique culture.</p><p>Key Highlights of Kumarakom:</p><p>Backwaters: Kumarakom is famous for its backwaters, a network of canals, lagoons, and lakes that offer a serene and idyllic setting. The best way to explore these backwaters is by taking a traditional Kerala houseboat cruise. These houseboats, also known as Kettuvallams, provide a unique and leisurely way to experience the scenic beauty of the backwaters, with opportunities to spot various bird species and witness local life along the shores.</p><p>Kumarakom Bird Sanctuary: Spread over 14 acres, the Kumarakom Bird Sanctuary is a haven for birdwatchers. It\'s home to a wide variety of resident and migratory birds, including herons, egrets, kingfishers, and even the iconic Siberian crane. The best time to visit for birdwatching is during the winter months when migratory birds flock to the sanctuary.</p><p>Vembanad Lake: Lake Vembanad is the centerpiece of Kumarakom\'s natural beauty. It\'s not only a vital water source for the region but also a hub for fishing and water-based activities. The annual Nehru Trophy Boat Race, featuring snake boats (traditional long boats) racing on the lake, is a popular event that attracts thousands of spectators.</p><p>Kumarakom Beach: The village also has a beautiful beach with pristine sand and calm waters, perfect for a leisurely stroll or a relaxing day in the sun. The beach provides a serene setting to enjoy the views of the lake and the coconut palms that line the shore.</p><p>Ayurvedic Retreats: Kumarakom is known for its traditional Ayurvedic treatments and wellness centers. Travelers can rejuvenate their mind and body with massages, therapies, and herbal treatments offered by trained practitioners.</p><p>Cuisine: Kerala is renowned for its delicious and spicy cuisine, and Kumarakom is no exception. While visiting, don\'t miss the opportunity to savor local dishes like fish curry, appam (rice pancakes), and coconut-based dishes. Many resorts and restaurants offer authentic Kerala cuisine.</p><p>Boating and Canoeing: Apart from houseboat cruises, Kumarakom offers opportunities for boating and canoeing in the backwaters. It\'s a peaceful way to explore the smaller canals and get up close to the local way of life.</p><p>Village Tours: Take a guided tour of the nearby villages to get a glimpse of traditional Kerala life. You can observe activities like coir-making, toddy tapping, and fishing, which are an integral part of the local culture and economy.</p><p>Accessibility: Kumarakom is well-connected to major cities in Kerala and can be reached by road. The nearest major airport is Cochin International Airport, which is approximately 85 kilometers away.</p><p>In summary, Kumarakom is a tranquil paradise where you can unwind amidst the lush greenery, calm backwaters, and abundant birdlife. Whether you\'re looking for a relaxing escape, a cultural immersion, or a taste of Kerala\'s culinary delights, Kumarakom offers a unique and memorable experience that showcases the natural beauty and warm hospitality of Kerala.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14578,0,NULL,NULL,'Kumarakom',0,NULL,NULL,NULL,NULL,NULL,NULL,'9_1695638123.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kumarakom houseboat, Kerala backwaters, tranquil retreat','\"Kumarakom\'s Backwater Bliss with iNeedTrip\"','','',NULL,NULL,NULL,0),(10,NULL,NULL,'\"Embark on a spiritual pilgrimage to Kedarnath with iNeedTrip. Visit the sacred temple and experience divine serenity in the Himalayas.\"',NULL,'<p>Kedarnath is a sacred town and pilgrimage site located in the Rudraprayag district of the northern Indian state of Uttarakhand. Nestled in the Garhwal Himalayas at an elevation of approximately 3,583 meters (11,755 feet) above sea level, Kedarnath is renowned for its ancient Hindu temple dedicated to Lord Shiva. This town holds great religious and spiritual significance and is part of the Char Dham Yatra, one of the holiest pilgrimage circuits in Hinduism.</p><p>Key Features and Significance:</p><p>Kedarnath Temple: The Kedarnath Temple, often referred to as the Kedarnath Mandir, is the primary attraction and spiritual center of the town. It is one of the 12 Jyotirlingas (sacred abodes of Lord Shiva) in India. The temple is believed to have been built by the eighth-century Hindu philosopher and theologian, Adi Shankaracharya. The architecture of the temple is simple yet elegant, with a pyramid-like structure made of massive stone slabs.</p><p>Pilgrimage Destination: Kedarnath is one of the four sacred sites comprising the Char Dham Yatra, which also includes Badrinath, Gangotri, and Yamunotri. Pilgrims embark on this arduous journey to seek the blessings of Lord Shiva and cleanse themselves of their sins. The yatra typically begins in late April or early May and continues until November when the temple is accessible due to the harsh Himalayan winters.</p><p>Natural Beauty: Apart from its religious significance, Kedarnath is known for its breathtaking natural beauty. Surrounded by towering snow-capped peaks, lush meadows, and the Mandakini River, the town offers stunning vistas at every turn. The serene environment and pristine landscapes make it a perfect destination for meditation and spiritual reflection.</p><p>Trekking and Adventure: Kedarnath serves as the base for several trekking routes that lead to picturesque destinations in the region. The most famous trek is the Kedarnath Trek, which takes you through scenic trails, dense forests, and alongside glistening rivers. Other trekking options include the Vasuki Tal, Chorabari Tal, and the trek to the source of the Mandakini River.</p><p>Chorabari Tal (Gandhi Sarovar): Chorabari Tal, also known as Gandhi Sarovar, is a glacial lake located just a few kilometers from Kedarnath. It is named after Mahatma Gandhi, who visited the lake during his journey to Kedarnath. The lake is surrounded by mesmerizing views of the Himalayas and is a popular trekking destination.</p><p>Accessibility: Kedarnath is not accessible by road, and the nearest motorable point is Gaurikund, about 16 kilometers (10 miles) away. From Gaurikund, visitors have to trek or hire mules or palanquins to reach Kedarnath. Helicopter services are also available for those seeking a quicker way to reach the temple town.</p><p>Spiritual Experience: For many, a visit to Kedarnath is not just a physical journey but a spiritual one. The trek and the aura of devotion that surrounds the temple create a sense of spiritual awakening and connection with the divine.</p><p>Challenges and Renewal: Kedarnath faced a devastating natural disaster in 2013 when heavy rains and flooding caused significant damage to the town and temple. However, remarkable efforts have been made to rebuild and restore Kedarnath, making it accessible to pilgrims once again.</p><p>In summary, Kedarnath is a place of profound religious significance, natural beauty, and spiritual introspection. It continues to attract thousands of devotees and trekkers from around the world who seek a divine connection and an opportunity to experience the awe-inspiring grandeur of the Himalayas. The journey to Kedarnath is not just a physical endeavor but a spiritual pilgrimage that leaves a lasting impression on the hearts and souls of those who make the trek.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13758,0,NULL,NULL,'Kedarnath',0,NULL,NULL,NULL,NULL,NULL,'10_1695635754.png','10_1695635754.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kedarnath Yatra, religious tourism, Himalayan pilgrimage','\"Kedarnath\'s Spiritual Pilgrimage with iNeedTrip\"','','',NULL,NULL,NULL,0),(11,NULL,NULL,'Haridwar Tour Package: Book customize Haridwar holiday tour package at best price with Ineedtrip.com. Click now to get exclusive deals on Haridwar vacation packages.',NULL,'<p style=\"text-align: justify; \">As you venture into the city of Haridwar you\'ll be invited with the tolls of the temple bells and the spiritual reciting of the priests. The Haridwar city has a religious importance as the holy river Ganga enters the Indo-Gangetic Plains of North India without precedent for Haridwar. Thereby in the past it was known as Gangadwara\' amazing in each sense. Haridwar fills in as the Gateway to the Char Dhams of Uttarakhand. Haridwar Package for a spiritual vacation!</p><p style=\"text-align: justify; \">Haridwar is probably the best spot to make a beeline for in case you are in a mission for harmony and spirituality. One can visit around the temples, walk around the riverbanks, have a sacred dip in the Ganges or partake in the tranquil surrounding of this heavenly place.&nbsp;&nbsp;</p><p style=\"text-align: justify; \"><b>Places to visit in Haridwar&nbsp;</b></p><p style=\"text-align: justify; \">The starting points of the city traces all the way back to the old Hindu texts. It is one of the 7 spots where drops of the holy water of life erupted from the Churning of the Seas or Samundra Manthan by the Devas and the Asuras leading to its creation. In the ancient times Haridwar was under the rule of the dynasties like the Mauryas and the Kushana and is referenced in the texts of the Chinese traveler Hieun Tsang. Haridwar Tour Package for a serene holiday experience!</p><p style=\"text-align: justify; \">The city is found 314 meters above the sea level and is a famous traveler destination. With the passing of time, it has become something other than a religious city, where individuals crowded to perform submersion of the cinders or took a plunge in the water to wash away their transgressions. With the passage of time it became yoga, cultural and spiritual center and has turned into an excellent center point for learning the Sanskrit language. Modern Haridwar is represents the culture of India and consequently offers a lot to its guests. Haridwar Tour Package for a hassle-free tour around the city!</p><p style=\"text-align: justify; \"><b>Best places that one must see in this holy city.&nbsp;&nbsp;</b></p><p style=\"text-align: justify; \">Har Ki Pauri, Mansa Devi Temple, Chandi Devi Temple, Shanti Kunj, Anandamayi Ashram, Gau Ghat, Vishnu Ghat, Birla Ghat, Kushavarta Ghat, Rajaji Tiger Reserve, Swami Vivekanand Park, Bara Bazaar, Bhuma Niketan Temple, Bharat Mata Temple, Bhimagoda Tank, Gauri Shankar Mahadev Temple, Adbhut Mandir, Daksh Prajapati Mandir, Vaishno Devi Temple, Bilkeshwar Mahadev Temple, Maya Devi Temple, Patanjali Yogpeeth Haridwar, Pawan Dham, Doodhadhari Barfani Temple, Prem Nagar Ashram, Sureshwari Devi Temple, Jai Ram Ashram, Saptrishi Ashram, Neel Dhara Pakshi Vihar. Travel Package to Haridwar is waiting to lure you!</p><p style=\"text-align: justify; \"><b>Things to do in Haridwar</b></p><p style=\"text-align: justify; \">If you are thinking about what to do in Haridwar on your spiritual trip, here are some intriguing things that you should not miss during your vacation in Haridwar. When you arrive at this holy city, it is not difficult to lose yourself in the tides of people that pass through the city consistently so fix an agenda before you plan your visit. Opt for Haridwar Tour Package for a thrilling experience! There are many activities in Hardiwar one can enjoy during their visit to this sacred spot.</p><p style=\"text-align: justify; \">1.<span style=\"white-space:pre\">	</span>Enjoy at the Fun Valley Water Park&nbsp;</p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Have a nice day at the Crystal World</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Meditation and Yoga</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Take a Spiritual Bath in the Holy water Ganges</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Attain spirituality by praying</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Ayurvedic Treatments</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Bird watching And Photography Tour</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Temple Hopping&nbsp;</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Wildlife Safari&nbsp;</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>Enjoy shopping in the local market&nbsp;</p><p style=\"text-align: justify; \">11.<span style=\"white-space:pre\">	</span>Rafting&nbsp;</p><p style=\"text-align: justify; \">12.<span style=\"white-space:pre\">	</span>Waterfall Rappelling</p><p style=\"text-align: justify; \">13.<span style=\"white-space:pre\">	</span>Bungee Jumping&nbsp;</p><p style=\"text-align: justify; \">14.<span style=\"white-space:pre\">	</span>Mountain Biking</p><p style=\"text-align: justify; \">15.<span style=\"white-space:pre\">	</span>Ziplining&nbsp;</p><p style=\"text-align: justify; \"><b>Food to try out in Haridwar</b></p><p style=\"text-align: justify; \">Haridwar is a heaven for foodies other than being a historical residence. The street food in Haridwar includes everything from papri chaat to chhole bhatura to all that is delectable and lip-smacking. What\'s more, not only Har Ki Pauri but places like Devpura and Ranipur in Haridwar are lined by various slows down and restaurants that offer famous North Indian food. From kachoris, samosas, to tempting jalebis, this spot has everything! Discover how best you can treat your belly in this lovely little town. Slobbering as of now?&nbsp;</p><p style=\"text-align: justify; \"><b>Food to savor in Haridwar:</b></p><p style=\"text-align: justify; \">Aloo Puri, Kachori, Rasmalai, Rabri, Chole Bhature, Lassi, Chaat, Samosas, Fruit chaat, Kulfi, Parathas, Dosa, Mulberry baskets, Malai Laddoo, Golgappe, Rolls, Rabri Faluda, Aloo Tikki, Jalebi, Pakodas, Bhelpuri. Haridwar Tour Package for a wonderful vacation!</p><p style=\"text-align: justify; \"><b>Where to shop in Haridwar?</b></p><p style=\"text-align: justify; \">It is beyond difficult to leave Haridwar without stuffing into your sack probably the most fascinating things created. The divine Ganges, various incredibly famous ashrams, and ancient temples make Haridwar one of the most venerated pilgrimage centers in India. For the most part, vacationers come here for an otherworldly encounter, and consequently shopping in this holy town isn\'t on their list. However, when you come to know about the assortments, the quality, and the craftsmanship on offer, you will need to go on a shopping binge, before you leave the spot. Travel Package to Haridwar for an enjoyable experience!</p><p style=\"text-align: justify; \">For voyagers, it can be the most sudden gift shopping an open door in Haridwar. Have some unfilled space in your backpack and start on your keepsake shopping in Haridwar. Complex cut stone idols, beads, copper and brass puja utensils, glass bangles, cane baskets, and adornments are the absolute most famous things to buy in Haridwar. Go for Haridwar Tour Package for an exciting experience! However, before that, you should know where to go to buy your things.&nbsp;</p><p style=\"text-align: justify; \"><b>Most popular marketplaces in and around Haridwar:</b></p><p style=\"text-align: justify; \">1.<span style=\"white-space:pre\">	</span>Moti Bazaar</p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Jwalapur&nbsp; market</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Bara Bazaar</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Kankhal bazaar</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>State Government Emporiums&nbsp;</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Main Bazaar&nbsp;</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Supertech Pentagon Mall</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Raghunath Mall</p><p style=\"text-align: justify; \"><b>Things to buy in Haridwar:</b></p><p style=\"text-align: justify; \">1.<span style=\"white-space:pre\">	</span>Puja Items</p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Rudraksha</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>God Idols / Statues</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Dresses for God Statues</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Metal Utensils</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Glass Bangles</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Gemstones</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Rosaries</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Precious Stones</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>Semi-Precious Stones</p><p style=\"text-align: justify; \">11.<span style=\"white-space:pre\">	</span>Handicrafts</p><p style=\"text-align: justify; \">12.<span style=\"white-space:pre\">	</span>Sandalwood</p><p style=\"text-align: justify; \">13.<span style=\"white-space:pre\">	</span>Handloom</p><p style=\"text-align: justify; \">14.<span style=\"white-space:pre\">	</span>Bangles</p><p style=\"text-align: justify; \">15.<span style=\"white-space:pre\">	</span>Kum Kum (Sindoor)</p><p style=\"text-align: justify; \">16.<span style=\"white-space:pre\">	</span>Lockets / Pendants</p><p style=\"text-align: justify; \">17.<span style=\"white-space:pre\">	</span>Ayurvedic Medicines</p><p style=\"text-align: justify; \">18.<span style=\"white-space:pre\">	</span>Cane Products</p><p style=\"text-align: justify; \">19.<span style=\"white-space:pre\">	</span>Cane Baskets</p><p style=\"text-align: justify; \">20.<span style=\"white-space:pre\">	</span>Pickle / Achaar</p><p style=\"text-align: justify; \"><b>Best time to enjoy your visit to Haridwar</b></p><p style=\"text-align: justify; \"><b>Summer (March - June)</b></p><p style=\"text-align: justify; \">Summer is the best season to visit Haridwar, the climate is for the most part more sultry than the hills with temperatures around 35 - 45 degrees Celsius. The annual Magh Mela or festival is held in the late spring in Haridwar. This is additionally a chance to enjoy the Ganga Arti at the Har Ki Pauri, the greatest milestone in Haridwar, making this the best season to visit Haridwar. For those looking for a break from the spiritual outing, you can go to the Chilla wildlife sanctuary or the Bara Bazaar. Haridwar Holiday Packages for an awe-inspiring vacation!</p><p style=\"text-align: justify; \"><b>Monsoon (July - September)</b></p><p style=\"text-align: justify; \">During the monsoon months, there is heavy rainfall. In the month of July, when the downpour simply starts to set in, the courageous heart pilgrims head for the Kanwar Mela. The Kanwar Mela is the alone assessed to draw 3 million pioneers each year. August is the rainiest month in Haridwar and definitely not advisable to travel as a pilgrim as the river waters are overflowing.&nbsp;</p><p style=\"text-align: justify; \"><b>Winter (October - February)</b></p><p style=\"text-align: justify; \">Pilgrims head to Haridwar to wash away their sins in the holy river Ganges. Dropping temperatures throughout the cold weather months turn the freezing cold water for a plunge. In any case, this doesn\'t dissuade the pilgrims. They actually come to Haridwar to seek blessings even in winter, covered with weighty woolen clothes. This is an ideal opportunity to seek blessings in this pilgrim town. Chandi Devi temple, the Daksha MahadevTemple, Bhimagoda tank, the Manasa Devi temple, and a lot more set on hillocks encompassing Haridwar are must-visit. Haridwar Holiday Packages offers a hassle-free experience!</p><p style=\"text-align: justify; \"><b>How to reach Haridwar?</b></p><p style=\"text-align: justify; \">Haridwar is well connected to all the major cities of India by road and rail. The nearest airport is Dehradun which is around 226 km away. Haridwar Holiday Packages are waiting for you!</p><p style=\"text-align: justify; \"><b>By air: </b>Jolly Grant airport in Dehradun is the nearest airport which is around 226 km away. Taxis, private cars, state road transport buses are accessible from the air terminal to arrive at Haridwar.</p><p style=\"text-align: justify; \"><b>By train: </b>Haridwar is well connected by trains. Indeed, most sightseers come to Haridwar by train. The Haridwar railway station is located in the main city center.&nbsp;</p><p style=\"text-align: justify; \"><b>By road: </b>Haridwar is well connected by roads to all the major cities of India. One can easily get a direct bus to Haridwar.&nbsp;</p><p style=\"text-align: justify; \"><b>Plan your pilgrimage trip to Haridwar for a spiritual experience</b></p><p style=\"text-align: justify; \">Is it right to say that you are getting ready for a religious tour in India? Many travelers from across the globe love to visit India for its unique religion and culture. There are many sacred destinations in India where people can give proper respect and pray to the divinities. Haridwar holds a very strong religious importance. There are many sacred spots to visit here for those who wish to encounter mysticism. Plan your pilgrimage trip to Haridwar through \'I Need Trip\' for encountering a holistic retreat. Haridwar Tour Package for a holy experience near the river Ganges!</p><div style=\"text-align: justify; \"><br></div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11530,0,NULL,NULL,'Haridwar',0,NULL,NULL,10,NULL,NULL,'11_1641469240.jpg','11_1695470138.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Book Haridwar Trip, Haridwar Package, Holiday Haridwar, Haridwar Tour, Haridwar vacation, Vacation Tour Haridwar, Haridwar Exclusive Deals.','Explore Haridwar Holiday Packages, Vacation Tour Packages Haridwar','','',NULL,NULL,NULL,0),(12,NULL,NULL,'\"Embark on a spiritual hideaway in Guptakshi with iNeedTrip. Visit the hidden temples, serene rivers, and experience Himalayan spirituality.\"',NULL,'<p>Guptakashi, a serene and sacred town in the Garhwal region of Uttarakhand, India, is a hidden gem nestled in the Himalayas. Known for its spiritual significance, stunning landscapes, and proximity to several revered temples, Guptakashi is a destination that beckons both pilgrims and nature enthusiasts. In this blog, we\'ll embark on a virtual journey to explore the spiritual sanctuaries and natural wonders that make Guptakashi an enchanting destination.</p><p>Vishwanath Temple:</p><p>Guptakashi is home to the ancient Vishwanath Temple, dedicated to Lord Shiva. This temple is considered one of the holiest shrines in the region and attracts devotees from far and wide.</p><p>Ardhanareshwar Temple:</p><p>Located near the Vishwanath Temple, the Ardhanareshwar Temple celebrates Lord Shiva in his androgynous form, symbolizing the unity of the divine masculine and feminine energies.</p><p>Chopta Valley:</p><p>Known as the \"Mini Switzerland of India,\" Chopta is a picturesque destination near Guptakashi. It offers breathtaking views of the Himalayas and serves as a base for treks to Tungnath and Chandrashila.</p><p>Tungnath Temple:</p><p>A trek from Chopta takes you to the Tungnath Temple, one of the Panch Kedar shrines. It\'s the highest Shiva temple in the world and is surrounded by captivating alpine meadows.</p><p>Chandrashila Peak:</p><p>The Chandrashila Peak trek is renowned for its panoramic views of the Himalayas, including the Nanda Devi and Trishul peaks. It\'s a rewarding trek that culminates with breathtaking vistas.</p><p>Sonprayag:</p><p>Sonprayag, a scenic spot where the Mandakini and Basukini rivers converge, is an important pilgrimage site. It\'s the starting point for the trek to Kedarnath.</p><p>Kedarnath Temple:</p><p>Guptakashi serves as a base for the revered Kedarnath Temple, dedicated to Lord Shiva. Pilgrims undertake a challenging trek to reach this sacred shrine, situated amidst the stunning Kedarnath Valley.</p><p>Panch Kedar Yatra:</p><p>Guptakashi is part of the Panch Kedar Yatra, a pilgrimage circuit that includes the five temples of Lord Shiva—Kedarnath, Tungnath, Rudranath, Madhyamaheshwar, and Kalpeshwar.</p><p>Local Culture and Cuisine:</p><p>Immerse yourself in the local culture by interacting with the warm and welcoming residents. Savor traditional Garhwali cuisine and experience the hospitality of the Himalayan people.</p><p>Majestic Scenery:</p><p>Guptakashi is surrounded by stunning vistas of lush forests, snow-capped peaks, and crystal-clear rivers. The serene ambiance and pristine nature make it a perfect retreat.</p><p>Conclusion:</p><p>Guptakashi, with its spiritual sanctuaries, Himalayan landscapes, and trekking adventures, is a destination that offers a harmonious blend of spirituality and natural beauty. Whether you\'re seeking divine blessings at the Vishwanath Temple, embarking on treks to high-altitude shrines, or simply reveling in the tranquil Himalayan atmosphere, Guptakashi offers a unique and soul-soothing experience. It\'s a place where spirituality and serenity converge, inviting you to explore the spiritual and natural treasures of the Garhwal Himalayas. For those in search of a spiritual retreat and an encounter with the Himalayan splendor, Guptakashi stands as a timeless and revered destination.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34396,0,NULL,NULL,'Guptakashi',0,NULL,NULL,NULL,NULL,NULL,'12_1695469336.png','12_1695469336.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Guptakshi Yatra, religious tourism, Himalayan pilgrimage','\"Guptakshi\'s Spiritual Hideaway with iNeedTrip\"','','',NULL,NULL,NULL,0),(13,NULL,NULL,'\"Experience a Himalayan pilgrimage to Gangotri with iNeedTrip. Visit the sacred source of the Ganges River and explore serene Himalayan landscapes.\"',NULL,'<p>Nestled in the Garhwal Himalayas of Uttarakhand, India, Gangotri is a sacred destination and the origin of the holy river Ganges (Ganga). It\'s a place of great religious significance for Hindus and a starting point for the Char Dham Yatra pilgrimage, which includes visits to Gangotri, Yamunotri, Kedarnath, and Badrinath. In this blog, we\'ll embark on a virtual journey to explore the spiritual and natural wonders of Gangotri.</p><p>Gangotri Temple:</p><p>The Gangotri Temple is the focal point of the town and is dedicated to Goddess Ganga. It is believed to be the spot where King Bhagirath meditated to bring the Ganges from heaven to earth to cleanse the souls of his ancestors. The temple\'s architecture is simple yet striking, with a magnificent view of the Bhagirathi River.</p><p>Bhagirathi Shila:</p><p>Bhagirathi Shila, located near the temple, is a sacred rock where King Bhagirath is said to have offered penance to Lord Shiva. It\'s an important pilgrimage spot for devotees.</p><p>Gaumukh:</p><p>The Gaumukh Glacier, about 19 kilometers from Gangotri, is the source of the River Ganges. The glacier resembles a cow\'s mouth, and it\'s a challenging trekking destination for adventure enthusiasts.</p><p>Surya Kund:</p><p>Surya Kund is a natural hot water spring near the Gangotri Temple. Pilgrims take a dip in its sacred waters before entering the temple as a purification ritual.</p><p>Submerged Shivalinga:</p><p>In the winter, when the temple is closed due to heavy snowfall, a submerged Shivalinga (Lord Shiva\'s idol) can be seen in the Bhagirathi River. This sight is considered highly auspicious.</p><p>Ganges Aarti:</p><p>The Ganges Aarti at Gangotri is a mesmerizing spectacle that takes place every evening at the temple. Devotees gather to witness the ritual, where lamps are offered to the river, creating a spiritual and serene atmosphere.</p><p>Natural Beauty:</p><p>Gangotri is surrounded by pristine natural beauty, with snow-capped peaks, lush forests, and crystal-clear rivers. The Bhagirathi River flows through the town, offering beautiful views and serene sounds of flowing water.</p><p>Char Dham Yatra:</p><p>Gangotri serves as the first stop on the Char Dham Yatra pilgrimage, which takes you through the sacred shrines of Yamunotri, Kedarnath, and Badrinath. It\'s a spiritual journey that offers a profound and transformative experience.</p><p>Conclusion:</p><p>Gangotri, with its spiritual significance and breathtaking natural beauty, is a destination that draws pilgrims, adventure seekers, and nature enthusiasts alike. Whether you\'re offering prayers at the Gangotri Temple, trekking to the Gaumukh Glacier, or immersing yourself in the spiritual aura of the Ganges Aarti, Gangotri offers a profound and soul-stirring experience. It\'s a place where the divine presence of the holy river Ganges is palpable, and the majestic Himalayas stand as a testament to nature\'s grandeur. For those seeking a spiritual awakening and a connection with the sacred Ganges, Gangotri stands as a timeless and revered destination in the heart of the Garhwal Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10105,0,NULL,NULL,'Gangotri',0,NULL,NULL,NULL,NULL,NULL,'13_1695467031.png','13_1695467031.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gangotri Yatra, religious tourism, Himalayan pilgrimage','\"Gangotri\'s Himalayan Pilgrimage with iNeedTrip\"','','',NULL,NULL,NULL,0),(14,NULL,NULL,'Cochin Packages - Book your Cochin tour package at the best price with iNeedTrip. Click to book customized cheap Cochin holiday packages & get exciting deals now.',NULL,'<p>With palm-lined beaches, alluring backwaters, eye-soothing lush green landscapes and a unique lifestyle, <strong>KERALA</strong>, a.k.a &lsquo;God&rsquo;s own country&rsquo; is not just a destination, it&rsquo;s an experience. And to make the most of this experience, you need to know the what&rsquo;s, how&rsquo;s, where&rsquo;s of Kerala. But how will you find these? Fret not, we&rsquo;re here to help you with everything you need to know about Kerala in this destination overview and we&rsquo;ll also share the best Kerala honeymoon packages designed by us. We at iNeedtrip have designed these Kerala Honeymoon packages with the thought that you get to visit and witness all the beauty that Kerala has to offer and have a trip of a lifetime.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,6561,0,NULL,NULL,'Cochin',0,NULL,NULL,NULL,NULL,NULL,'14_1630317845.jpg','14_1695464419.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Cochin Tour Packages, Cochin Holiday Packages, Cochin Honeymoon Packages','Cochin Tour Packages, Book Cochin Holiday Packages - INT','','',NULL,NULL,NULL,0),(15,NULL,NULL,'Barkot Packages - Book your Barkot tour package at the best price with  I Need Trip. Click to book customized cheap Barkot holiday packages & get exciting deals now.',NULL,'<p>Nestled in the enchanting Garhwal region of Uttarakhand, Barkot is a serene and picturesque destination that serves as the gateway to several prominent pilgrimage sites and offers stunning views of the Himalayas. Surrounded by lush forests, gushing rivers, and a tranquil ambiance, Barkot beckons travelers seeking spiritual solace and natural beauty. In this blog, we\'ll explore the serene charms and spiritual significance of Barkot.</p><p>Yamunotri Dham:</p><p>Barkot is the starting point for the sacred journey to Yamunotri, one of the Char Dham pilgrimage sites in Hinduism. Devotees embark on a trek to Yamunotri Dham, where they pay homage to Goddess Yamuna and take a dip in the hot water springs known as the \"Yamunotri Kund.\"</p><p>Surya Kund:</p><p>Surya Kund, a hot water spring near Yamunotri, is an ideal place to experience the natural thermal baths. The steaming water, surrounded by snow-capped peaks, offers a soothing and rejuvenating experience.</p><p>Char Dham Yatra:</p><p>Barkot serves as a crucial stopover for pilgrims embarking on the Char Dham Yatra, which includes visits to Yamunotri, Gangotri, Kedarnath, and Badrinath. The town provides essential facilities for travelers before they head to these sacred destinations.</p><p>Hanuman Chatti:</p><p>Located just a short distance from Barkot, Hanuman Chatti is a picturesque spot where the Hanuman Temple is perched on the banks of the Yamuna River. It\'s a peaceful place to seek blessings and enjoy scenic views.</p><p>Trekking and Adventure:</p><p>Barkot offers opportunities for trekking and adventure enthusiasts. The trek from Barkot to Yamunotri is both spiritually enriching and a nature lover\'s delight, passing through forests and offering stunning vistas.</p><p>Pristine Natural Beauty:</p><p>The town is surrounded by thick forests, glistening rivers, and snow-clad peaks. Nature lovers can explore the beauty of this region through short hikes and nature walks.</p><p>Local Culture and Cuisine:</p><p>Experience the local Garhwali culture and savor traditional dishes like Aloo Ke Gutke (spicy potato curry) and Mandua Roti (finger millet bread) in the town\'s eateries.</p><p>Conclusion:</p><p>Barkot, with its spiritual significance and breathtaking natural beauty, is a destination that offers a profound and soul-stirring experience. Whether you\'re a devout pilgrim seeking spiritual enlightenment, a nature enthusiast in search of serene landscapes, or an adventure seeker ready to trek through the Garhwal Himalayas, Barkot has something to offer everyone. It\'s a place where the stresses of everyday life fade away, and the serene beauty of the Himalayas and the spiritual aura of sacred sites beckon you to explore and connect with your inner self. For those in pursuit of spiritual bliss and natural tranquility, Barkot stands as a gateway to a world of serenity and spiritual exploration.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34474,0,NULL,NULL,'Barkot',0,NULL,NULL,NULL,NULL,NULL,'15_1695462799.png','15_1695462799.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Barkot Tour Packages, Barkot Holiday Packages, Barkot Honeymoon Packages','Barkot Tour Packages, Book Barkot Holiday Packages - INT','','',NULL,NULL,NULL,0),(16,NULL,NULL,'Badrinath Packages - Book your Badrinath tour package at the best price with iNeedTrip. Click to book customized cheap Badrinath holiday packages & get exciting deals now.',NULL,'<p>Badrinath, nestled in the majestic Himalayas of the Uttarakhand state in India, is a revered pilgrimage destination and a haven for spiritual seekers. This sacred town is known for its ancient temples, serene landscapes, and a sense of divine tranquility that envelopes every visitor. In this blog, we\'ll embark on a spiritual journey to explore the significance and serene beauty of Badrinath.</p><p>Badrinath Temple:</p><p>At the heart of Badrinath lies the revered Badrinath Temple, dedicated to Lord Vishnu in his Badri form. This ancient temple, with its striking architecture and intricate stone carvings, is believed to have been established by Adi Shankaracharya in the 8th century. It\'s one of the Char Dham pilgrimage sites and attracts devotees from all over the world.</p><p>Tapt Kund:</p><p>The Tapt Kund, a natural thermal spring, is located near the temple and is believed to have healing properties. Pilgrims take a dip in its warm waters before entering the temple as a ritual cleansing.</p><p>Mana Village:</p><p>The quaint village of Mana, located just a few kilometers from Badrinath, is often regarded as the last Indian village on the Indo-Tibetan border. It\'s a peaceful place to explore and offers insights into the local way of life.</p><p>Vasudhara Falls:</p><p>A trek of about 6 km from Mana village leads to the stunning Vasudhara Falls, which are believed to be a source of spiritual energy. The sight of the waterfall, surrounded by lush greenery, is a treat for nature enthusiasts.</p><p>Charan Paduka:</p><p>Charan Paduka, a rock bearing the footprints of Lord Vishnu, is another significant pilgrimage spot. It\'s located just 3 km from Badrinath and offers panoramic views of the surrounding mountains.</p><p>Neelkanth Peak:</p><p>The Neelkanth Peak, also known as the \"Garhwal Queen,\" stands tall as a backdrop to Badrinath. Its snow-clad beauty is awe-inspiring, and it\'s a trekking destination for adventure enthusiasts.</p><p>Pilgrimage Season:</p><p>The best time to visit Badrinath is from May to June and September to October when the weather is pleasant and the temple is accessible. During the winter months, the temple remains closed due to heavy snowfall.</p><p>Conclusion:</p><p>Badrinath, with its spiritual significance and breathtaking Himalayan vistas, is a destination that offers a profound and soul-stirring experience. Whether you\'re a devout pilgrim seeking spiritual enlightenment, a nature enthusiast in search of serene landscapes, or an adventure seeker ready to trek through the Himalayas, Badrinath has something to offer everyone. It\'s a place where you can connect with divinity and marvel at the grandeur of the natural world, all in the heart of the Himalayas. For those in pursuit of a spiritual journey and a tranquil retreat, Badrinath stands as a divine abode where the soul finds solace and the heart finds peace.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2001,0,0,NULL,'Badrinath',0,NULL,NULL,5,NULL,NULL,'16_1630317115.jpg','16_1614331854.jpg','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Badrinath Tour Packages, Badrinath Holiday Packages, Badrinath Honeymoon Packages','Badrinath Tour Packages, Book Badrinath Holiday Packages - INT','','',NULL,NULL,NULL,0),(17,NULL,NULL,'Alleppey Packages - Book your Alleppey tour package at the best price with I Need Trip. Click to book customized cheap Alleppey holiday packages & get exciting deals now.',NULL,'<p>Alleppey, also known as Alappuzha, is a serene and picturesque destination located in the southern Indian state of Kerala. Often referred to as the \"Venice of the East,\" Alleppey is renowned for its mesmerizing backwaters, tranquil lagoons, lush paddy fields, and a unique network of canals. This enchanting town offers travelers a blissful escape into a world of natural beauty and cultural richness. In this blog, we\'ll take you on a virtual journey to discover the many delights of Alleppey.</p><p>Houseboat Cruises:</p><p>One of the most iconic experiences in Alleppey is a houseboat cruise along its backwaters. You can rent a traditional Kerala houseboat, also known as a \"kettuvallam,\" to leisurely drift along the serene canals, surrounded by lush greenery and picturesque villages. These houseboats come equipped with all modern amenities, allowing you to enjoy the tranquil beauty of the backwaters in comfort.</p><p>Alleppey Beach:</p><p>Alleppey Beach, with its golden sands and mesmerizing sunsets, is a popular spot for relaxation and rejuvenation. Take a leisurely stroll along the beach, indulge in beachside activities, and witness the famous Alappuzha pier extending into the Arabian Sea.</p><p>Kumarakom Bird Sanctuary:</p><p>Located a short distance from Alleppey, the Kumarakom Bird Sanctuary is a haven for birdwatchers and nature enthusiasts. Explore the lush mangroves and wetlands, where you can spot a wide variety of migratory and local bird species, including herons, kingfishers, and more.</p><p>Marari Beach:</p><p>Just a short drive from Alleppey, Marari Beach is a serene and less-crowded alternative to Alleppey Beach. This pristine stretch of coastline offers a peaceful atmosphere and is perfect for unwinding by the sea.</p><p>Alleppey Backwater Festival:</p><p>If your visit aligns with the Alleppey Backwater Festival, you\'re in for a treat. This annual event, usually held in August, showcases traditional snake boat races, cultural performances, and a vibrant atmosphere along the backwaters.</p><p>Delicious Cuisine:</p><p>Savor the delectable flavors of Kerala cuisine while in Alleppey. Don\'t miss trying local dishes like seafood curry, appam (rice pancakes), and traditional Kerala thali at local restaurants and eateries.</p><p>Conclusion:</p><p>Alleppey is a destination that invites you to unwind, rejuvenate, and connect with the beauty of nature. Whether you\'re cruising along its enchanting backwaters, basking in the sun on its pristine beaches, or exploring its rich biodiversity, Alleppey offers a unique blend of tranquility and cultural richness. It\'s a place where you can escape the hustle and bustle of city life and immerse yourself in the serene beauty of Kerala\'s backwaters. For those seeking a peaceful and enchanting retreat, Alleppey is a true paradise waiting to be explored.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,670,0,NULL,NULL,'Alleppey',0,NULL,NULL,2,NULL,NULL,'17_1695456261.png','17_1695456261.png','India','101',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Alleppey Tour Packages, Alleppey Holiday Packages, Alleppey Honeymoon Packages','Alleppey Tour Packages, Book Alleppey Holiday Packages - INT','','',NULL,NULL,NULL,0),(18,NULL,NULL,'Abu Dhabi Packages - Book your Abu Dhabi tour package at the best price with I Need Trip. Click to book customized cheap Abu Dhabi holiday packages & get exciting deals now.',NULL,'<p>A symphony in concrete, water and the subtle play of reflected light, the incredible structure was inspired by the region’s rich architectural traditions and the museum’s unique location, where the Arabian sky meets the sands of Saadiyat Island and the waters of the Arabian Gulf. Considered one of the modern urban wonders of the world, Louvre Abu Dhabi is not only the Arab world’s first universal museum but also a powerful symbol of the United Arab Emirates’ ambition and achievement.</p><p>A symphony in concrete, water and the subtle play of reflected light, the incredible structure was inspired by the region’s rich architectural traditions and the museum’s unique location, where the Arabian sky meets the sands of Saadiyat Island and the waters of the Arabian Gulf. Considered one of the modern urban wonders of the world, Louvre Abu Dhabi is not only the Arab world’s first universal museum but also a powerful symbol of the United Arab Emirates’ ambition and achievement.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,105,1,1,NULL,'Abu Dhabi',0,NULL,NULL,1,NULL,NULL,'18_1710330550.webp','18_1710330550.webp','United Arab Emirates','228',NULL,'2021-02-26 12:00:38','2021-02-26 12:00:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Abu Dhabi Tour Packages, Abu Dhabi Holiday Packages, Abu Dhabi Honeymoon Packages','Abu Dhabi Tour Packages, Book Abu Dhabi Holiday Packages - INT','','',NULL,NULL,NULL,0),(19,NULL,NULL,'\"Experience the ultimate entertainment oasis in Sun City, South Africa. Enjoy resorts, golf, safaris, and the vibrancy of this African paradise.\"',NULL,'<p>Sun City: South Africa\'s Oasis of Entertainment and Luxury<br></p><p>Nestled amidst the lush landscapes of South Africa\'s North West Province, Sun City stands as a beacon of opulence, leisure, and entertainment. Often referred to as Africa\'s Kingdom of Pleasure, this world-class resort complex has garnered international acclaim for its luxurious amenities, captivating attractions, and stunning natural surroundings.</p><p>A Resort Oasis:</p><p>Sun City offers a unique blend of leisure and adventure, making it a favored destination for travelers seeking an escape from the everyday. The resort boasts a range of accommodation options, from exquisite luxury hotels to self-catering villas, ensuring that guests are pampered and comfortable.</p><p>The Palace of the Lost City:</p><p>The crown jewel of Sun City is undoubtedly The Palace of the Lost City, a lavish hotel that pays homage to the mythical African kingdom of ancient legend. With its grand architecture, intricate mosaics, and regal design, The Palace offers guests a regal experience like no other.</p><p>Entertainment Extravaganza:</p><p>Sun City is a playground of entertainment, featuring a dazzling array of attractions for visitors of all ages. The Valley of Waves is a waterpark paradise with thrilling slides, a sandy beach, and a wave pool. The resort also hosts the Sun City Theatre, where world-class performances and shows captivate audiences year-round.</p><p>Golfing Paradise:</p><p>Golf enthusiasts will find two world-class golf courses at Sun City. The Gary Player Country Club and the Lost City Golf Course are beautifully designed and set against the backdrop of the Pilanesberg Mountains, providing an exceptional golfing experience.</p><p>Safari Adventures:</p><p>Sun City\'s proximity to the Pilanesberg National Park makes it an excellent base for wildlife enthusiasts. Embark on guided safaris to spot the Big Five (lion, elephant, buffalo, leopard, and rhinoceros) and other incredible African wildlife.</p><p>Cultural Experiences:</p><p>Visitors can immerse themselves in South African culture by attending traditional performances, exploring local craft markets, and interacting with indigenous communities.</p><p>Shopping and Dining:</p><p>Sun City offers a variety of dining options, from international cuisine to South African delicacies. You can also indulge in retail therapy at the resort\'s shopping centers, where you\'ll find everything from designer boutiques to unique African souvenirs.</p><p>Relaxation and Wellness:</p><p>For those seeking relaxation, Sun City\'s luxurious spas and wellness centers provide rejuvenating treatments and therapies amidst serene surroundings.</p><p>Championship Events:</p><p>The resort often hosts major international events, including golf tournaments and music festivals, drawing celebrities and enthusiasts from around the world.</p><p>A Commitment to Sustainability:</p><p>Sun City is dedicated to responsible tourism and environmental sustainability, emphasizing conservation efforts and community engagement.</p><p>Sun City is not just a destination; it\'s an experience that combines luxury, adventure, and entertainment in a breathtaking African setting. Whether you\'re seeking relaxation by the pool, the thrill of water slides, encounters with wildlife, or a taste of South African culture, Sun City offers it all in a setting that feels like a paradise carved out of the African landscape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,26381,0,NULL,NULL,'Sun City',0,NULL,NULL,NULL,NULL,NULL,'19_1695193333.png','19_1695193333.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Sun City South Africa\r\n South African entertainment oasis\r\nSun City resorts\r\nSun City golf\r\n African paradise','\"Sun City, South Africa: The Ultimate Entertainment Oasis\"','','',NULL,NULL,NULL,0),(20,NULL,NULL,'\"Visit Oudtshoorn, South Africa, known as the ostrich capital. Explore ostrich farms, Cango Caves, and the Karoo\'s unique charm.\"',NULL,'<p>Oudtshoorn: The Ostrich Capital of the World</p><p>Oudtshoorn is a charming town nestled in the Klein Karoo region of South Africa\'s Western Cape Province. Known for its warm hospitality, unique ostrich-related attractions, and stunning natural beauty, Oudtshoorn offers visitors a delightful blend of culture, history, and adventure. Here\'s an exploration of what makes Oudtshoorn a captivating destination:</p><p>1. Ostrich Farms:</p><p>Oudtshoorn is often hailed as the \"Ostrich Capital of the World.\" The town\'s history is deeply intertwined with ostrich farming, which boomed in the late 19th century due to the demand for ostrich feathers in the fashion industry. Visitors can tour ostrich farms to learn about these fascinating birds, feed them, and even ride on their backs.</p><p>2. Cango Caves:</p><p>The nearby Cango Caves are a geological wonder, featuring a series of dripstone caverns adorned with stunning stalactites and stalagmites. Guided tours take visitors deep into the underground chambers, allowing them to explore the mesmerizing formations.</p><p>3. Wildlife Encounters:</p><p>In addition to ostriches, Oudtshoorn offers opportunities for wildlife enthusiasts to see meerkats in their natural habitat through guided tours. The surrounding region also provides game drives for a chance to spot other African wildlife.</p><p>4. Swartberg Pass:</p><p>The Swartberg Pass, a dramatic mountain pass near Oudtshoorn, is renowned for its breathtaking scenery. The drive along this rugged route offers panoramic views and is a favorite among adventure seekers and photographers.</p><p>5. Cultural Experiences:</p><p>Oudtshoorn is home to a mix of cultural influences, including Afrikaans, English, and indigenous South African communities. The town hosts cultural events and festivals that celebrate this diversity, offering visitors a chance to experience local traditions and cuisine.</p><p>6. Historical Landmarks:</p><p>Explore historical landmarks like the Dutch Reformed Church, which boasts stunning neo-Gothic architecture, and the CP Nel Museum, which offers insights into the town\'s history and the ostrich feather industry.</p><p>7. Adventure Activities:</p><p>Oudtshoorn is an adventure lover\'s paradise, with activities ranging from hiking and mountain biking in the surrounding Swartberg and Outeniqua mountains to paragliding and hot air ballooning.</p><p>8. Wine Tasting:</p><p>The Klein Karoo wine route, with its picturesque vineyards, invites wine enthusiasts to savor locally produced wines and ports in a serene setting.</p><p>9. Scenic Beauty:</p><p>The Klein Karoo region\'s semi-arid landscape, framed by imposing mountains, offers stunning vistas and is ideal for photography and nature enthusiasts.</p><p>10. Festivals and Events:</p><p>&nbsp;Oudtshoorn hosts various events throughout the year, including the Klein Karoo National Arts Festival, showcasing South African arts and culture.</p><p>Oudtshoorn\'s unique blend of cultural heritage, natural beauty, and the allure of ostriches make it a captivating destination in South Africa. Whether you\'re exploring underground caves, interacting with wildlife, or enjoying outdoor adventures, Oudtshoorn welcomes visitors with its warm hospitality and offers an unforgettable South African experience in the heart of the Klein Karoo.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20426,0,NULL,NULL,'Oudtshoorn',0,NULL,NULL,NULL,NULL,NULL,'20_1694777290.png','20_1694777290.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Oudtshoorn South Africa\r\nOstrich capital\r\nOstrich farms in South Africa\r\nCango Caves\r\nKaroo charm','Oudtshoorn, South Africa: The Ostrich Capital\"','','',NULL,NULL,NULL,0),(21,NULL,NULL,'\"Embark on a wildlife safari in Kruger National Park, South Africa. Witness the \'Big Five,\' diverse ecosystems, and the wonders of the bushveld.\"',NULL,'<p>Kruger National Park is one of Africa\'s most renowned and iconic wildlife conservation areas, located in the northeastern part of South Africa. Established in 1898, it is not only the oldest national park on the African continent but also one of the largest, covering an expansive area of nearly 20,000 square kilometers (7,523 square miles). Kruger National Park is celebrated for its incredible biodiversity, pristine landscapes, and the opportunity to witness the \"Big Five\" and countless other wildlife species in their natural habitat. Here is a closer look at what makes Kruger National Park a world-famous destination:</p><p>Geography and Location:</p><p>Kruger National Park is situated in the northeastern corner of South Africa, sharing borders with Zimbabwe to the north and Mozambique to the east. The park spans across the provinces of Limpopo and Mpumalanga and is easily accessible from Johannesburg and other major cities in South Africa. The Crocodile River forms the park\'s southern boundary, while the Limpopo River forms its northern border.</p><p>Biodiversity:</p><p>Kruger National Park is renowned for its remarkable diversity of flora and fauna. It is home to an impressive array of wildlife species, including:</p><p>The Big Five: African elephant, lion, leopard, buffalo, and rhinoceros. These animals were historically considered the most challenging to hunt on foot and are now prized for their conservation value.</p><p>Other Wildlife: Kruger is also inhabited by cheetahs, wild dogs, hippos, crocodiles, various antelope species, zebras, giraffes, and an astonishing variety of bird species, making it a haven for birdwatchers.</p><p>Landscape and Ecosystems:</p><p>The park\'s terrain varies from dense bushveld to open savannas, riverine forests, and rugged mountains. Several major rivers, including the Sabie, Olifants, and Crocodile Rivers, traverse the park, providing a lifeline for its wildlife.</p><p>Game Viewing:</p><p>Kruger National Park offers some of the best game viewing opportunities in Africa. Visitors can explore the park in their own vehicles or join guided game drives led by experienced rangers. Night drives are also available, allowing visitors to observe nocturnal creatures in action. The park\'s well-maintained road network and numerous rest camps make it accessible for travelers of all interests and budgets.</p><p>Accommodations:</p><p>Kruger National Park provides a range of accommodation options, from luxury lodges and private camps to more budget-friendly rest camps and camping sites. Staying within the park allows visitors to immerse themselves in the African wilderness, with wildlife often visible from the campgrounds.</p><p>Conservation Efforts:</p><p>Kruger National Park is dedicated to the conservation of its rich biodiversity. It actively participates in efforts to protect endangered species, combat poaching, and promote sustainable tourism. The park is also involved in important research initiatives aimed at understanding and preserving Africa\'s wildlife.</p><p>Cultural and Historical Sites:</p><p>In addition to its natural wonders, Kruger National Park also offers cultural experiences. The park is home to several archaeological sites, such as rock art paintings and ancient settlements, providing insights into the history of human habitation in the area.</p><p>In conclusion, Kruger National Park is a wildlife enthusiast\'s dream destination, offering an opportunity to witness Africa\'s most iconic animals in their natural habitat. Its extraordinary biodiversity, beautiful landscapes, and conservation efforts make it a must-visit for travelers seeking an unforgettable safari experience in South Africa.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14524,0,0,NULL,'Kruger National Park',0,NULL,NULL,NULL,NULL,NULL,'21_1694687781.png','21_1694687781.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kruger National Park South Africa\r\nAfrican wildlife safaris\r\nKruger \'Big Five\'\r\nSouth African bushveld\r\nKruger Park ecosystems','\"Kruger National Park, South Africa: Wildlife Safari Wonderland\"','','',NULL,NULL,NULL,0),(22,NULL,NULL,'\"Discover the lagoon beauty of Knysna on South Africa\'s Garden Route. Explore indigenous forests, coastal vistas, and South African hospitality.\"',NULL,'<p>Knysna is a picturesque town located along the Garden Route on the southern coast of South Africa. Nestled between the Outeniqua Mountains and the Indian Ocean, Knysna is renowned for its stunning natural beauty, lush forests, and a charming, laid-back atmosphere. Here\'s a closer look at this captivating South African destination:</p><p>Geography and Location:</p><p>Knysna is situated in the Western Cape province of South Africa, approximately halfway between Cape Town and Port Elizabeth. It is part of the Garden Route, a famous coastal route known for its scenic landscapes and outdoor recreational opportunities. The town is positioned along the shores of the Knysna Lagoon, a tidal estuary, and is surrounded by indigenous forests and coastal cliffs.</p><p>Natural Beauty:</p><p>The breathtaking natural beauty of Knysna is one of its primary attractions. Visitors are drawn to its lush, green surroundings, with the indigenous forests of the Garden Route National Park and the rugged coastline offering countless opportunities for outdoor exploration and adventure.</p><p>Knysna Heads: The town is flanked by two towering sandstone cliffs known as the Knysna Heads. These imposing geological formations frame the entrance to the Knysna Lagoon and create a dramatic and iconic vista.</p><p>Knysna Lagoon: The Knysna Lagoon is a stunning tidal estuary surrounded by mangroves and steep cliffs. It\'s a popular spot for water-based activities such as boating, sailing, and kayaking.</p><p>Hiking and Nature Trails: The surrounding forests and mountains provide numerous hiking trails, including the famous Otter Trail. These trails allow visitors to explore the region\'s rich biodiversity, which includes unique plant species and birdlife.</p><p>Cultural Diversity:</p><p>Knysna is a town known for its cultural diversity, with a mix of different ethnicities and backgrounds contributing to the local culture. The town has a rich history, and its heritage can be explored through various museums and cultural centers. The presence of indigenous Khoi-San communities and European settlers has left an indelible mark on Knysna\'s identity.</p><p>Economy and Tourism:</p><p>Tourism plays a significant role in Knysna\'s economy. The town\'s natural beauty and outdoor activities make it a popular destination for tourists seeking adventure, relaxation, and a connection to nature. Accommodations range from luxury resorts and boutique hotels to guesthouses and campgrounds, catering to a diverse range of visitors.</p><p>Cuisine:</p><p>Knysna is renowned for its seafood, and it\'s often referred to as the \"Oyster Capital of South Africa.\" The Knysna oysters, in particular, are a local delicacy and a must-try for seafood enthusiasts. The town\'s restaurants and cafes offer a wide range of culinary delights, including fresh seafood dishes, traditional South African cuisine, and international fare.</p><p>Annual Events:</p><p>Knysna hosts several annual events that attract visitors from around the world. The Knysna Oyster Festival, held in July, is a highlight, featuring a variety of sports events, food festivals, and live entertainment. The Knysna Arts Festival is another notable cultural event celebrating local art, music, and theater.</p><p>In summary, Knysna is a South African gem known for its natural beauty, cultural diversity, and outdoor recreational opportunities. Whether you\'re interested in hiking through lush forests, savoring fresh seafood, or simply enjoying the stunning coastal views, Knysna offers a memorable experience for travelers seeking a taste of South Africa\'s beauty and hospitality.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14261,0,NULL,NULL,'Knysna',0,NULL,NULL,NULL,NULL,NULL,'22_1694685575.png','22_1694685575.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Knysna South Africa\r\nGarden Route beauty\r\nKnysna forests\r\nSouth African coast\r\nGarden Route attractions','\"Knysna, South Africa: Lagoon Beauty on the Garden Route\"','','',NULL,NULL,NULL,0),(23,NULL,NULL,'\"Experience the vibrancy of Johannesburg, South Africa. Discover its rich history, cultural diversity, and the spirit of the \'City of Gold.\'\"',NULL,'<p>Johannesburg, often referred to as Jo\'burg or Jozi, is the largest city in South Africa and a dynamic metropolis that represents the country\'s spirit of resilience and diversity. Known as the \"City of Gold\" due to its mining heritage, Johannesburg is a city that has evolved from its complex past to become a thriving cultural and economic hub. Here\'s a glimpse into what makes Johannesburg an intriguing destination:</p><p>Key Highlights:</p><p>Apartheid Museum: Gain deep insights into South Africa\'s history of apartheid at this poignant museum. It features interactive exhibits, photographs, and artifacts that tell the story of the nation\'s struggle for freedom and equality.</p><p>Soweto: Explore this historic township, known for its role in the anti-apartheid movement. Visit Vilakazi Street, home to both Nelson Mandela and Desmond Tutu, and learn about the township\'s vibrant culture and history.</p><p>Maboneng Precinct: Immerse yourself in Johannesburg\'s contemporary arts and culture scene at Maboneng. This vibrant precinct boasts art galleries, boutiques, street art, and a bustling Sunday market.</p><p>Constitution Hill: Discover the site of the Old Fort Prison Complex, now a museum and the Constitutional Court of South Africa. It\'s a place of historical significance and human rights advocacy.</p><p>Lion Park: Get up close with Africa\'s iconic big cats at this wildlife sanctuary. You can even have the unique opportunity to interact with lion cubs.</p><p>Johannesburg Zoo: Spend a day with a diverse range of animals at this family-friendly zoo, home to over 320 species.</p><p>Gold Reef City: Step back in time to the 19th century at this theme park and entertainment complex built around an old gold mine. Enjoy thrilling rides, explore a gold mine, and experience the Gold Reef City Casino.</p><p>Neighbourgoods Market: On Saturdays, the Braamfontein district comes alive with this bustling market. Sample gourmet street food, shop for local crafts, and soak in the vibrant atmosphere.</p><p>Mandela House: Visit the former home of Nelson Mandela in Soweto, now a museum dedicated to his life and legacy. Explore the history of South Africa\'s struggle against apartheid.</p><p>Cradle of Humankind: Embark on a journey through time at this UNESCO World Heritage Site, which boasts caves containing some of the world\'s oldest hominid fossils.</p><p>Johannesburg Botanical Garden: Find tranquility in the heart of the city at this lush garden, home to a wide variety of plants and bird species.</p><p>Melville: Enjoy the bohemian vibe of this trendy suburb, known for its eclectic mix of restaurants, bars, and live music venues.</p><p>Rosebank Art and Craft Market: Shop for souvenirs, arts, and crafts at this vibrant market. It\'s a great place to find unique South African gifts.</p><p>Montecasino: Experience the thrill of gaming, catch a show, or dine at one of the many restaurants in this Tuscan-style entertainment complex.</p><p>Johannesburg\'s Culinary Scene: Savor South African flavors at local restaurants, from traditional dishes like bunny chow to international cuisine.</p><p>Johannesburg is a city of contrasts, where modern skyscrapers stand alongside historical sites, and diverse communities contribute to a rich tapestry of cultures. Whether you\'re delving into the city\'s history, exploring its vibrant arts scene, or simply enjoying its cosmopolitan atmosphere, Johannesburg offers a unique South African experience that\'s both enriching and inspiring.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13189,0,NULL,NULL,'Johannesburg',0,NULL,NULL,NULL,NULL,NULL,'23_1694671620.png','23_1694671620.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Johannesburg South Africa\r\nJohannesburg history\r\nSouth African culture\r\nJohannesburg attractions\r\nCity of Gold','\"Johannesburg, South Africa: The Vibrant City of Gold\"','','',NULL,NULL,NULL,0),(24,NULL,NULL,'\"Discover George, the gateway to South Africa\'s famous Garden Route. Explore lush forests, pristine beaches, and outdoor adventures.\"',NULL,'<p>George, located in the Western Cape province of South Africa, is often referred to as the \"Gateway to the Garden Route.\" This picturesque city serves as an excellent starting point for exploring one of the country\'s most scenic and diverse regions, the Garden Route. Here\'s a closer look at what makes George and its surroundings a must-visit destination:</p><p>Key Highlights:&nbsp;&nbsp;&nbsp;&nbsp;</p><p>Natural Beauty: George is surrounded by lush forests, majestic mountains, and pristine beaches, making it a paradise for nature enthusiasts. The Outeniqua Mountains provide excellent hiking and mountain biking opportunities, while the coastline offers beautiful beaches like Victoria Bay and Wilderness Beach.</p><p>Garden Route: As the entry point to the Garden Route, George offers access to an enchanting stretch of coastal landscapes, charming towns, and nature reserves. Explore the famous Knysna Heads, Tsitsikamma National Park, and Storms River Mouth for breathtaking scenery and outdoor adventures.</p><p>Golfing Paradise: George is known for its world-class golf courses, including the Fancourt Golf Estate, which has hosted prestigious golf tournaments. Golfers can enjoy teeing off against stunning backdrops.</p><p>Outdoor Activities: Whether you\'re into hiking, birdwatching, paragliding, or water sports, George has a wide range of outdoor activities to offer. Don\'t miss the opportunity to canoe along the serene Kaaimans River or go fishing in the picturesque Outeniqua Mountains.</p><p>Historic Landmarks: Explore the rich history of George by visiting landmarks like the Montagu Pass Old Toll House, George Museum, and the historic buildings in the city center.</p><p>Botanical Gardens: The George Botanical Garden is a tranquil oasis filled with indigenous flora, walking trails, and picnic spots. It\'s a perfect place for a leisurely stroll and connecting with nature.</p><p>Local Cuisine: Enjoy South African cuisine at George\'s restaurants and cafes. Try traditional dishes like bobotie, boerewors, and malva pudding, paired with regional wines.</p><p>Craft Breweries: George has a growing craft beer scene, with several microbreweries offering unique and flavorful beers. Take a brewery tour and sample local brews.</p><p>Festivals: George hosts various festivals and events throughout the year, celebrating music, food, and culture. The George Old Car Show and the Outeniqua Family Market are popular local gatherings.</p><p>Accessibility: The George Airport provides convenient access to the city, making it an ideal starting point for exploring the Garden Route.</p><p>George, South Africa, with its natural beauty, outdoor adventures, and cultural richness, offers a diverse range of experiences for travelers. Whether you\'re an adventure seeker, a nature lover, or someone looking to unwind in a scenic setting, George and the Garden Route have something special to offer. Plan your visit to this remarkable destination and immerse yourself in the beauty of the Western Cape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10294,0,NULL,NULL,'George',0,NULL,NULL,NULL,NULL,NULL,'24_1694605128.png','24_1694605128.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'George South Africa\r\nGarden Route gateway\r\nGeorge outdoor adventures\r\nSouth African nature\r\nGarden Route attractions','\"George, South Africa: Gateway to the Garden Route\"','','',NULL,NULL,NULL,0),(25,NULL,NULL,'Cape Town Packages - Book your Cape Town tour package at the best price with iNeedTrip. Click to book customized cheap Cape Town holiday packages & get exciting deals now.',NULL,'<p>Cape Town, South Africa: Where Natural Beauty Meets Cultural Vibrancy</p><p>Nestled at the southwestern tip of South Africa, Cape Town is a city that effortlessly combines breathtaking natural scenery with a rich tapestry of cultures and history. With its stunning landscapes, diverse wildlife, vibrant neighborhoods, and a blend of old-world charm and modern sophistication, Cape Town is a captivating destination that offers something for every traveler. Here\'s an overview of what makes Cape Town a truly remarkable place to visit:</p><p>1. Table Mountain: Dominating the city\'s skyline, Table Mountain is one of the New7Wonders of Nature and an iconic symbol of Cape Town. Visitors can hike to the summit for panoramic views of the city, the surrounding ocean, and the nearby peaks of the Twelve Apostles.</p><p>2. Cape Peninsula: Explore the Cape Peninsula, home to the stunning Cape Point and the Cape of Good Hope. The dramatic coastal landscapes, pristine beaches, and diverse flora and fauna make this region a must-visit. Don\'t miss the opportunity to see African penguins at Boulders Beach.</p><p>3. Robben Island: Discover the historical significance of Robben Island, where Nelson Mandela was imprisoned for 18 years during apartheid. Take a guided tour to gain insight into South Africa\'s struggle for freedom.</p><p>4. V&amp;A Waterfront: The Victoria &amp; Alfred Waterfront is a bustling hub of activity, offering a mix of shopping, dining, entertainment, and cultural attractions. It\'s also the departure point for boat trips to Robben Island.</p><p>5. Kirstenbosch National Botanical Garden: Located at the eastern foot of Table Mountain, Kirstenbosch is acclaimed for its diverse flora and beautifully landscaped gardens. It\'s a serene place to explore and enjoy a picnic.</p><p>6. Stellenbosch and Winelands: Take a short drive to Stellenbosch and other nearby winelands, where you can indulge in wine tasting at world-class vineyards and savor delectable cuisine at charming restaurants.</p><p>7. District Six Museum: Learn about the history of apartheid and the forced removals of the District Six community at this poignant museum, which stands as a testament to the resilience of its former residents.</p><p>8. Bo-Kaap: Wander through the colorful streets of Bo-Kaap, known for its vibrant houses and Cape Malay heritage. You can also learn about the local cuisine and culture through cooking classes and tours.</p><p>9. Muizenberg Beach: Renowned for its colorful beach huts and gentle waves, Muizenberg is a popular spot for beginner surfers. The beach offers a relaxed atmosphere and is great for families.</p><p>10. Cultural Diversity: Cape Town\'s cultural diversity is reflected in its neighborhoods and culinary offerings. Explore areas like Woodstock for street art, Observatory for a bohemian vibe, and Sea Point for seaside leisure.</p><p>11. Township Tours: Gain insight into life in the townships by taking guided tours that provide a deeper understanding of the challenges and triumphs faced by residents.</p><p>12. Culinary Delights: Cape Town boasts a vibrant food scene with a wide range of dining options. Sample local dishes like bobotie, bunny chow, and fresh seafood at waterfront restaurants.</p><p>13. Outdoor Adventures: Adventure enthusiasts can enjoy activities such as hiking, paragliding, shark cage diving, and even safari tours in nearby wildlife reserves.</p><p>14. Mild Climate: Cape Town enjoys a Mediterranean climate with mild, wet winters and warm, dry summers, making it an attractive year-round destination.</p><p>Cape Town\'s unique blend of natural beauty, historical significance, and cultural richness makes it a destination that leaves a lasting impression on all who visit. Whether you\'re exploring its natural wonders, learning about its complex history, or simply savoring its culinary delights, Cape Town invites you to immerse yourself in its captivating allure and discover why it\'s often referred to as one of the world\'s most beautiful cities.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5069,0,0,NULL,'Cape Town',0,NULL,NULL,NULL,NULL,NULL,'25_1691149303.jpg','25_1694590283.png','South Africa','195',NULL,'2021-02-26 18:45:49','2021-02-26 18:45:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Cape Town Tour Packages, Cape Town Holiday Packages, Cape Town Honeymoon Packages','Cape Town Tour Packages, Book Cape Town Holiday Packages - INT','','',NULL,NULL,NULL,0),(26,NULL,NULL,'\"Begin your Maldives adventure in Male, the gateway to paradise. Explore coral reefs, white-sand beaches, and the natural wonders of the Indian Ocean.\"',NULL,'<p>Malé, often simply referred to as Male, is the capital and largest city of the Maldives, an island nation located in the Indian Ocean. As the political, economic, and cultural center of the Maldives, Male is a fascinating and unique destination with a rich history, vibrant culture, and stunning coastal beauty. Here\'s an overview of what makes Male a captivating city:</p><p>Geography and Location:</p><p>Male is located on one of the 26 coral atolls that make up the Maldives. It is situated on North Malé Atoll, and the city occupies the entire island.</p><p>The Maldives, known for its crystal-clear waters, coral reefs, and overwater bungalows, is a popular destination for travelers seeking tropical paradise.</p><p>Historical Significance:</p><p>Male has a rich history dating back over 800 years. It has served as the political and economic center of the Maldives for centuries.</p><p>Historical sites such as Hukuru Miskiy (Friday Mosque) and the Presidential Palace offer insights into the city\'s past.</p><p>Urban Hub:</p><p>Male is a bustling urban center, characterized by narrow streets, colorful buildings, and a lively atmosphere. Despite its small size, it is one of the most densely populated cities in the world.</p><p>Visitors can explore the local markets, street food stalls, and shops selling Maldivian handicrafts and souvenirs.</p><p>Cultural and Religious Sites:</p><p>Hukuru Miskiy (Friday Mosque) is an ancient mosque constructed in 1656 and is an architectural masterpiece. It features intricate woodcarvings and coral stone walls.</p><p>The Islamic Center in Male is another impressive structure and houses the Grand Friday Mosque, one of the largest mosques in the world.</p><p>Marine Life and Water Sports:</p><p>The Maldives is famous for its stunning coral reefs and marine biodiversity. While Male itself may not offer the best snorkeling and diving opportunities, it serves as a gateway to the nearby atolls and resorts.</p><p>Visitors can enjoy water sports such as snorkeling, scuba diving, and fishing, as well as boat trips to explore the surrounding islands.</p><p>Cuisine:</p><p>Maldivian cuisine is influenced by Indian, Sri Lankan, and Arabic flavors. Seafood, coconut, and rice are staples of the local diet.</p><p>Visitors can savor traditional dishes such as mas huni (tuna salad), garudhiya (fish soup), and roshi (flatbread).</p><p>Economic Hub:</p><p>Male is not only the political capital but also the economic center of the Maldives. It hosts government offices, financial institutions, and businesses, contributing significantly to the country\'s economy.</p><p>Transportation:</p><p>Ibrahim Nasir International Airport, located on a nearby island, provides international air access to the Maldives. From there, travelers can reach Male by boat or seaplane.</p><p>The city has a well-organized public transportation system, including taxis, buses, and ferry services to nearby islands and resorts.</p><p>Environmental Concerns:</p><p>Rising sea levels and environmental degradation pose challenges to the Maldives, including Male. The country is at the forefront of climate change discussions due to its vulnerability to sea-level rise.</p><p>In summary, Male is more than just a gateway to the Maldives\' idyllic island resorts. It\'s a vibrant city with a unique culture, rich history, and a role as the administrative heart of the nation. While visitors may not find sandy beaches in Male itself, the city offers a glimpse into the Maldivian way of life and serves as a convenient starting point for exploring the natural beauty of the surrounding atolls.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16508,0,NULL,NULL,'Male',0,NULL,NULL,NULL,NULL,NULL,'26_1694691149.png','26_1694691149.png','Maldives','133',NULL,'2021-03-04 13:34:29','2021-03-04 13:34:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Male Maldives\r\nMaldives gateway\r\nMaldivian coral reefs\r\nWhite-sand beaches\r\nIndian Ocean wonders','\"Male, Maldives: The Gateway to Paradise\"','','',NULL,NULL,NULL,0),(28,NULL,NULL,'\"Experience the convergence of history and art in Saint Petersburg, Russia. Explore the Hermitage Museum, historic palaces, and Russian cultural splendor.\"',NULL,'<p>Saint Petersburg, often referred to as the \"Venice of the North,\" is a city of unparalleled beauty and cultural richness. Situated in the northwest of Russia on the banks of the Neva River, Saint Petersburg is a city steeped in history, boasting an array of world-class museums, magnificent palaces, and a unique blend of architectural styles. Explore the treasures of this splendid city, and you\'ll uncover a wealth of art, history, and grandeur.</p><p>Historical Significance:</p><p>Founded by Peter the Great in 1703, Saint Petersburg served as the imperial capital of Russia for more than two centuries. Its history is intertwined with the grandeur of the Russian Empire, making it a living testament to the country\'s past. The city\'s historical center is a UNESCO World Heritage Site, showcasing its architectural heritage.</p><p>Cultural Enrichment:</p><p>Saint Petersburg is a cultural epicenter, home to some of the world\'s most renowned museums and theaters. The Hermitage Museum, housed in the opulent Winter Palace, is one of the largest and most prestigious art museums globally, with a collection spanning centuries of art and culture. The Mariinsky Theatre, known for its ballet and opera performances, continues to enchant audiences with its world-class productions.</p><p>Architectural Marvels:</p><p>The city\'s architectural beauty is breathtaking. The Church of the Savior on Spilled Blood, with its colorful domes and intricate mosaics, is a masterpiece of Russian Revival architecture. The Peter and Paul Fortress, where the city\'s history began, is an iconic symbol of Saint Petersburg.</p><p>Venetian-Inspired Canals:</p><p>Saint Petersburg\'s network of canals and bridges gives it a distinct Venetian ambiance. A boat tour along the canals provides a unique perspective of the city\'s elegant architecture, particularly during the \"White Nights\" of summer when the city remains bathed in daylight.</p><p>Palatial Grandeur:</p><p>The city is replete with magnificent palaces, including the grand Catherine Palace in Tsarskoye Selo (Pushkin) and the opulent Yusupov Palace. The Summer Garden, designed by Peter the Great, is a tranquil oasis amidst the urban bustle.</p><p>White Nights Festival:</p><p>Saint Petersburg\'s \"White Nights\" in June and July are a magical phenomenon when the sun barely sets, casting a luminous glow over the city. The White Nights Festival is a cultural extravaganza featuring classical concerts, ballet performances, and fireworks, adding to the city\'s allure.</p><p>Conclusion:</p><p>Saint Petersburg, with its rich history, cultural treasures, and architectural marvels, is a city that captures the essence of Russia\'s past and present. It\'s a place where history, art, and elegance converge, inviting travelers to immerse themselves in its grandeur. Explore Saint Petersburg, and you\'ll discover a city that epitomizes the splendor of Russian culture and history.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,23644,0,NULL,NULL,'Saint Petersburg',0,NULL,NULL,NULL,NULL,NULL,'28_1695109137.png','28_1695109137.png','Russian Federation','181',NULL,'2021-03-04 14:34:18','2021-03-04 14:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Saint Petersburg Russia\r\nHermitage Museum\r\nRussian history and art\r\nSaint Petersburg palaces\r\nRussian cultural splendor','\"Saint Petersburg, Russia: Where History and Art Converge\"','','',NULL,NULL,NULL,0),(29,NULL,NULL,'Here are the top reasons to visit Moscow, so you can start planning your trip to Moscow. Book Moscow tour package from India at best rates.',NULL,'<p style=\"text-align: justify; \">The radiant design, beautiful sight, Slavic spirit and a happy country are only some of the things Russia is popular for. Spreading more than two mainlands and lining 14 nations, Russia is an exceptional mix of cultures and influences. The city of Moscow is the biggest historical, cultural, and authoritative city in the whole Russian Federation.</p><p style=\"text-align: justify; \">The capital of the largest country on earth is viewed as very fast, exuberant, swarmed, and enchanted with its various historical neighborhoods and secret diamonds. The roads here are much occupied, and the traffic is extreme; climate conditions may differ from cold to sweltering, and you can never anticipate it. In spite of these environmental conditions, the city stays an astonishing and beautiful one, and there are most certainly an entire host of motivations to come here at least once in a lifetime. Moscow Holiday Package for a unique experience is what you need!</p><p style=\"text-align: justify; \"><b><i>Here are the top reasons to visit Moscow, so you can start planning your trip now.</i></b></p><p style=\"text-align: justify; \"><b>Best places to visit in Moscow</b></p><p style=\"text-align: justify;\">The Russian capital is bursting at the seams with history, art, and culture, and it\'s the ideal spot for a short or long break. Architectural designs that figure out how to be surprised and multifaceted simultaneously, galleries with mind-boggling varieties of art, and flavorsome restaurants and smooth bars make Moscow a lively and must-visit capital city. A considerable lot of the attractions are located within the Garden Ring, the wide road that encloses the downtown area. In any case, wander off outside, you\'ll be compensated for certain cool and uncommon activities in Moscow as well. Moscow Honeymoon Package will truly help you have a romantic and gala time.</p><p style=\"text-align: justify; \"><b>Top places to visit in Moscow:</b></p><p style=\"text-align: justify;\">Moscow’s Red Square, the Moscow Kremlin, St. Basil’s Cathedral, State Tretyakov Gallery, Lenin’s Mausoleum, Bolshoi Theatre, State Historical Museum, Gorky Central Park of Culture and Leisure, Arbat Street, All-Russia Exhibition Centre, The Moscow Planetarium, Glavniy Botanicheskiy Sad Run Im. N.v. Tsitsino, Ostankino TV Tower, Sparrow Hills, Neskuchny Garden, Museum of Cosmonautics, Novodevichy Convent,&nbsp; Armoury Chamber, Monument to Minin and Pozharsky, Kolomenskoye, Pushkin State Museum of Fine Arts, Grand Kremlin Palace, Tsaritsyno museum-reserve, Garden Ring, Granovitaya Palata, Losiny Ostrov National Park, Usadba Izmaylovo, Poklonnaya Hill, Ivan the Great Bell-Tower, Muzeon Park of Art, Moscow Zoo, Kuskovo Summer Palace, Dormition Cathedral, Tverskaya Street, Cathedral of Christ the Saviour, Dream Island, Terem Palace, Museum of the Great Patriotic War, Sokolniki Park, Alexander Garden.</p><p style=\"text-align: justify; \"><b>Things to do in Moscow</b></p><p style=\"text-align: justify;\">As a lively capital and Europe\'s biggest city, Moscow is a mixture of history, brimming with world-popular locales. Russia\'s capital was only a community when it was first recorded 800 years prior, but there is enough here today to keep you occupied for a really long time. Here is a definitive amateur rundown of activities in Moscow, from investigating the Kremlin and St. Basil\'s Cathedral to getting a trolley from Sparrow Hills or skating in Gorky Park. Choose for Moscow Tour Package to enjoy all the activities!</p><p style=\"text-align: justify; \">The capital of Russia, a superstate and worldwide superpower, doesn\'t disillusion. In Moscow, imitable engineering and majestic glory go after consideration with Communist monuments and political powerhouses. Because of the intricacy of its history, Moscow\'s spellbinding historic center is best found on a directed touring visit. While it\'s a city loaded up with alternate extremes, there stays no lack of activities in Moscow for a wide range of explorers from the individuals who want cultural submersion to those searching for an epic night out, you\'ll be ruined for choices. Also, if you don\'t know where to begin, here\'s a rundown of ideas! But otherwise, you can opt for Moscow Package!</p><p style=\"text-align: justify; \"><b>Top things to do in Moscow:</b></p><p style=\"text-align: justify;\">1.&nbsp; &nbsp; &nbsp; &nbsp;Hop on hop off tour Moscow</p><p style=\"text-align: justify;\">2.&nbsp; &nbsp; &nbsp; &nbsp;Moscow river cruise dinner</p><p style=\"text-align: justify;\">3.&nbsp; &nbsp; &nbsp; &nbsp;Panorama 360 Moscow&nbsp;</p><p style=\"text-align: justify;\">4.&nbsp; &nbsp; &nbsp; &nbsp;Moscow Walking Tour</p><p style=\"text-align: justify;\">5.&nbsp; &nbsp; &nbsp; &nbsp;Moscow Food Tour&nbsp;</p><p style=\"text-align: justify;\">6.&nbsp; &nbsp; &nbsp; &nbsp;Moscow Folk Dance Show Kostroma</p><p style=\"text-align: justify;\">7.&nbsp; &nbsp; &nbsp; &nbsp;Metro Tour Moscow</p><p style=\"text-align: justify;\">8.&nbsp; &nbsp; &nbsp; &nbsp;Moscow Local And Metro Tour</p><p style=\"text-align: justify;\">9.&nbsp; &nbsp; &nbsp; &nbsp;Kremlin Armoury Tour</p><p style=\"text-align: justify; \"><b>Where to go shopping in Moscow?</b></p><p style=\"text-align: justify;\">Design is by a wide margin one of the most thrilling things one can enjoy, and Moscow is somewhere that doesn\'t disappoint in such a manner. For those fashion enthusiasts, travelers shopping in Moscow can be a gift. There are malls with the biggest brands displaying their best, road fashion brands for everything Russian, and there are shop stores as well.</p><p style=\"text-align: justify;\">Moscow GUM is an enormous shopping market where you can get luxury brands, while at Tsvetnoy Central Market; you can outdo high-end brands. The creative brands can be found concealed in Kuxnetsky Most. If you explore the streets of the city, you will experience heaps of souvenir stores appealing to you to experience Russia. Moscow Travel Package for a more close experience!</p><p style=\"text-align: justify; \"><b>Top places to shop in Moscow:</b><br></p><p style=\"text-align: justify;\">1.&nbsp; &nbsp; &nbsp; &nbsp;GUM</p><p style=\"text-align: justify;\">2.&nbsp; &nbsp; &nbsp; &nbsp;TsUM</p><p style=\"text-align: justify;\">3.&nbsp; &nbsp; &nbsp; &nbsp;Okhotny Ryad Shopping Centre</p><p style=\"text-align: justify;\">4.&nbsp; &nbsp; &nbsp; &nbsp;Arbatskaya Street</p><p style=\"text-align: justify;\">5.&nbsp; &nbsp; &nbsp; &nbsp;Izmailovo Market</p><p style=\"text-align: justify;\">6.&nbsp; &nbsp; &nbsp; &nbsp;Eliseevsky</p><p style=\"text-align: justify;\">7.&nbsp; &nbsp; &nbsp; &nbsp;Central Children’s Store</p><p style=\"text-align: justify;\">8.&nbsp; &nbsp; &nbsp; &nbsp;Kuznetsky Most</p><p style=\"text-align: justify;\">9.&nbsp; &nbsp; &nbsp; &nbsp;Aviapark Mall</p><p style=\"text-align: justify;\">10.&nbsp; &nbsp;Falcon Design Factory</p><p style=\"text-align: justify;\">11.&nbsp; &nbsp;Gorbushka Market</p><p style=\"text-align: justify;\">12.&nbsp; &nbsp;Tverskaya&nbsp;</p><p style=\"text-align: justify;\">13.&nbsp; &nbsp;Artplay Design And Architecture Centre</p><p style=\"text-align: justify;\">14.&nbsp; &nbsp;Vintage Voyage</p><p style=\"text-align: justify;\">15.&nbsp; &nbsp;European Mall</p><p style=\"text-align: justify; \"><b>The local food to try in Moscow</b></p><p style=\"text-align: justify;\">Russian cooking is based on the cooking of the rural population that needed to manage a brutal, extreme winter. Traditional Russian food is intended to fill individuals out in anticipation of the long winter ahead and has a bigger number of carbs and fat than proteins.</p><p style=\"text-align: justify; \"><b>Top best food to try in Moscow:</b></p><p style=\"text-align: justify;\">Pelmeni, Blini, Borscht, Pirogi, Solyanka, Medovukha, Tula Gingerbread, Alenka chocolate, Caviar, Russian vodka.</p><p style=\"text-align: justify; \"><b>How to reach Moscow?</b><br></p><p style=\"text-align: justify;\">Moscow is one of the most important cities in the world and is served by 3 fundamental international airports: Sheremetyevo International Airport, Domodedovo Airport, and Vnukovo International Airport. It tends to be reached from virtually all international airports all around the world and all the major airlines of the world operate daily flights to Moscow.</p><p style=\"text-align: justify; \"><b>Best time to visit Moscow</b></p><p style=\"text-align: justify;\">To visit Moscow, you should know that it has a sticky continental climate. The colder time of year, from December to January, records a normal temperature from - 10ºC to 0ºC. In February the thermometer can go down to - 25ºC, so assuming you generally want to avoid the cold, don\'t pick this month. During summer, the normal temperature is somewhere in the range of 18ºC and 30ºC, with August being the coolest month.</p><p style=\"text-align: justify;\">In spring, the temperatures are very charming, a normal of 20ºC, and in harvest time they range between - 2ºC and 12ºC. The best time to visit Moscow is throughout the mid-year, in spite of the fact that it harmonizes with the traveler\'s high season. Recall that throughout the spring the melting occurs; there will be mud all over. Also, if you are not cold, you can jump on the great costs and the quietness of fall to visit this city. Moscow Holiday Package for a fun and exhilarating vacation!</p><p style=\"text-align: justify;\"><b>Want to visit Moscow?</b></p><p style=\"text-align: justify;\">The spot is a winter wonderland. Moscow is the one spot that is at its captivating best during winter. The city gets impeccably covered with white cover of snow. Petrovsky Park and Terketskiy Lesopark are the best places to visit in Moscow during winters. These are the highest point of Moscow\'s tourist destinations among snow-lovers. Click wonderful snow shots in the hypnotizing and beautiful views. Make your companions wonder about the degree of entertainment you had. Moscow Tour Package will surely make you happy!</p><p style=\"text-align: justify;\">Adventure activities are one of the best things to do. The spot is ideally suited for holidaying with companions or family. You can perform submerged undertakings, climb a stone divider, do skating, and experience loads of fun and thrilling activities. Get the adrenaline surge by visiting these astonishing and enthusiastic spots to go to Moscow.</p><p style=\"text-align: justify;\">Subsequent to visiting such marvelous places of interest in Moscow, Russia, time to have some unwinding. Partake in your visit to the resorts and get yourself a spa massage. What is so exceptional with regards to the spa here? You get to deliver all your stress and exhaustion in a rich climate. You are presented with the best services and treated with organic products like flower oil and substantially more. Why not pick Moscow Honeymoon Package for the perfect romantic and pampering vacation?</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18488,0,NULL,NULL,'Moscow',0,NULL,NULL,10,NULL,NULL,'29_1652515210.jpg','29_1694766088.png','Russian Federation','181',NULL,'2021-03-04 14:34:18','2021-03-04 14:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Moscow Tour, Tour to Moscow, Moscow Holidays, Holiday Package Moscow, Moscow Honeymoon Package, Holiday Package to Moscow, Moscow Travel Package.','Book Moscow Holiday and Honeymoon Tour package from Delhi, India','','',NULL,NULL,NULL,0),(30,NULL,NULL,'\"Indulge in Himalayan serenity in Mukteshwar with iNeedTrip. Enjoy panoramic views, apple orchards, and the tranquility of Uttarakhand.\"',NULL,'<p>Mukteshwar is a tranquil hill station and town located in the Nainital district of the Indian state of Uttarakhand. Nestled in the Kumaon Himalayas, Mukteshwar is renowned for its natural beauty, lush forests, and panoramic views of the surrounding peaks. This picturesque destination offers a serene and offbeat alternative to the more crowded hill stations in India. Here are some key highlights of Mukteshwar:</p><p>1. Natural Beauty and Scenic Views:</p><p>Mukteshwar is known for its breathtaking views of the snow-capped peaks of the Nanda Devi, Trishul, and Panchachuli mountain ranges. The town provides numerous vantage points and viewpoints from which to admire these vistas, including the popular Chauli Ki Jali and Mukteshwar Temple viewpoints.</p><p>The lush green landscapes, terraced fields, and pristine forests make it a haven for nature lovers and photographers.</p><p>2. Mukteshwar Temple:</p><p>The town is named after the Mukteshwar Temple, an ancient Hindu temple dedicated to Lord Shiva. The temple\'s architecture is a blend of the Nagara and Chaula styles and is an important pilgrimage site.</p><p>The temple complex also houses a beautiful white marble idol of Lord Shiva and a Shivling (a symbolic representation of Lord Shiva).</p><p>3. Adventure Activities:</p><p>Mukteshwar offers opportunities for adventure activities like trekking and rock climbing. The nearby Bhalu Gaad Waterfall trek is a popular choice for trekkers and nature enthusiasts.</p><p>The town\'s rocky terrain makes it ideal for rock climbing and rappelling.</p><p>4. Fruit Orchards:</p><p>The region around Mukteshwar is known for its fruit orchards, particularly apple, plum, and apricot. The sight of these orchards in full bloom during spring is a visual treat.</p><p>5. Meditation and Yoga Retreats:</p><p>Mukteshwar has a serene and spiritual atmosphere, making it a popular destination for meditation and yoga retreats. Several ashrams and wellness centers offer programs for those seeking inner peace and relaxation.</p><p>6. Little River Cafe:</p><p>The Little River Cafe, situated in Mukteshwar, is a charming café known for its delectable food and beautiful views. It\'s a great place to savor a cup of tea or enjoy a meal while taking in the scenic beauty.</p><p>7. Accessibility:</p><p>Mukteshwar is approximately 51 kilometers from Nainital and is well-connected by road. The nearest railway station is in Kathgodam, about 64 kilometers away, and the nearest airport is Pantnagar Airport, around 105 kilometers away.</p><p>8. Offbeat and Peaceful Atmosphere:</p><p>Unlike some of the more popular hill stations, Mukteshwar offers a peaceful and offbeat atmosphere, making it an ideal destination for those seeking solitude and tranquility.</p><p>In summary, Mukteshwar is a hidden gem in the Kumaon region of Uttarakhand, offering a perfect blend of natural beauty, spirituality, and adventure. Whether you\'re drawn to its scenic vistas, ancient temples, or the opportunity for spiritual growth, Mukteshwar provides a serene and rejuvenating experience amidst the Himalayan landscape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34550,0,NULL,NULL,'Mukteshwar',0,NULL,NULL,NULL,NULL,NULL,'30_1695640896.png','30_1695640896.png','India','101',NULL,'2021-03-09 10:51:05','2021-03-09 10:51:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mukteshwar vacations, Uttarakhand beauty, mountain escape','\"Mukteshwar\'s Himalayan Serenity with iNeedTrip\"','','',NULL,NULL,NULL,0),(31,NULL,NULL,'\"Embark on an Andaman adventure in Port Blair with iNeedTrip. Explore historic sites, serene beaches, and the natural beauty of the Andamans.\"',NULL,'<p>Port Blair is the capital city of the Indian union territory of the Andaman and Nicobar Islands. It is located on the eastern coast of South Andaman Island and serves as the administrative, cultural, and economic hub of the region. Port Blair is not only known for its natural beauty but also for its historical significance as a colonial penal colony during British rule and its role in India\'s struggle for independence. Here are some key highlights of Port Blair:</p><p>1. Cellular Jail:</p><p>Perhaps the most famous landmark in Port Blair is the Cellular Jail, also known as Kala Pani. This colonial-era prison was used by the British to exile political prisoners, and it holds a significant place in India\'s freedom struggle. Today, it serves as a museum and a reminder of India\'s fight for independence.</p><p>2. Ross Island:</p><p>Ross Island, located just a short boat ride from Port Blair, was once the administrative headquarters of the British in the Andaman Islands. The island is now a historical site with ruins, a museum, and beautiful colonial-era buildings.</p><p>3. Water Sports:</p><p>Port Blair offers various water sports and activities, including snorkeling, scuba diving, parasailing, and sea walking. The clear waters surrounding the islands are perfect for exploring the vibrant marine life and coral reefs.</p><p>4. Corbyn\'s Cove Beach:</p><p>Corbyn\'s Cove is a popular beach near Port Blair known for its serene ambiance and water sports facilities. It\'s a great place to relax and enjoy the coastal scenery.</p><p>5. Chidiya Tapu:</p><p>Chidiya Tapu, or Bird Island, is a beautiful spot for birdwatching and nature walks. It\'s known for its lush greenery and panoramic sunset views.</p><p>6. Museums:</p><p>Port Blair is home to several museums that provide insights into the history and culture of the Andaman and Nicobar Islands. The Samudrika Naval Marine Museum and the Anthropological Museum are worth visiting.</p><p>7. Historical Sites:</p><p>Apart from Cellular Jail and Ross Island, Port Blair has other historical sites like the Japanese Bunkers from World War II, which are a testament to the island\'s wartime history.</p><p>8. Fisheries Museum:</p><p>The Fisheries Museum showcases the rich marine life of the Andaman Sea. It features a wide range of marine species and is an educational experience for visitors.</p><p>9. Shopping:</p><p>The local markets in Port Blair offer a variety of handicrafts, jewelry, clothing, and souvenirs, making it a good place to shop for local products.</p><p>10. Eco-Tourism:</p><p>- The Andaman Islands are known for their pristine natural beauty and biodiversity. Port Blair is a gateway to several eco-tourism destinations and activities, such as trekking and island hopping.</p><p>11. Andaman Jail Museum:</p><p>- Located in Port Blair, this museum provides insights into the history of the Cellular Jail and the lives of the political prisoners who were incarcerated there.</p><p>12. Cellular Jail Light and Sound Show:</p><p>- The Cellular Jail hosts a captivating light and sound show in the evenings that narrates the history of the jail and the struggle for independence.</p><p>13. Accessibility:</p><p>- Port Blair is accessible by air and sea. Veer Savarkar International Airport connects the islands to the mainland, and regular ferry services operate between Port Blair and major islands in the archipelago.</p><p>In summary, Port Blair is a unique blend of historical significance, natural beauty, and adventure. It offers a glimpse into India\'s past, the opportunity to explore stunning beaches and marine life, and a chance to experience the Andaman and Nicobar Islands\' cultural diversity. Whether you\'re interested in history, water sports, or simply soaking in the tranquil island atmosphere, Port Blair has something for every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,32511,0,NULL,NULL,'Port Blair',0,NULL,NULL,NULL,NULL,NULL,'31_1695724448.png','31_1695724448.png','India','101',NULL,'2021-03-09 16:28:18','2021-03-09 16:28:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Port Blair tours, Andaman adventure, island exploration','\"Port Blair\'s Andaman Adventure with iNeedTrip\"','','',NULL,NULL,NULL,0),(32,NULL,NULL,'\"Escape to a tropical retreat on Neil Island with iNeedTrip. Enjoy pristine beaches, vibrant coral reefs, and a serene getaway in the Andamans.\"',NULL,'<p>Neil Island, also known as Shaheed Dweep, is a beautiful island paradise situated in the Andaman and Nicobar archipelago of India. It is located approximately 40 kilometers northeast of Port Blair, the capital of the Andaman and Nicobar Islands. Neil Island is known for its pristine beaches, crystal-clear waters, vibrant coral reefs, and a tranquil ambiance that makes it a perfect destination for those seeking a serene tropical getaway. Here are some key highlights of Neil Island:</p><p>1. Natural Beauty:</p><p>Neil Island is celebrated for its natural beauty and unspoiled landscapes. The island is relatively small, making it easy to explore on foot or by bicycle. It offers lush greenery, coconut palm-fringed beaches, and a laid-back atmosphere that allows visitors to unwind and connect with nature.</p><p>2. Beaches:</p><p>Neil Island boasts some of the most stunning beaches in the Andaman and Nicobar Islands. Some of the must-visit beaches include:</p><p>Laxmanpur Beach: Known for its stunning sunsets and long stretches of white sandy shores.</p><p>Bharatpur Beach: Famous for its vibrant coral reefs and underwater marine life, making it an excellent spot for snorkeling.</p><p>Sitapur Beach: Known for its natural rock formations, and it\'s a great place for sunrise views.</p><p>3. Snorkeling and Scuba Diving:</p><p>The coral reefs around Neil Island are teeming with colorful marine life. Snorkeling and scuba diving are popular activities here, offering a chance to explore the underwater world and swim among various species of fish, turtles, and vibrant coral formations.</p><p>4. Natural Rock Formations:</p><p>Natural formations like the Natural Bridge, Howrah Bridge, and the Natural Coral Bridge are intriguing geological features that have been shaped by the forces of nature over time.</p><p>5. Cycling and Exploration:</p><p>One of the best ways to explore Neil Island is by renting a bicycle. The island\'s small size and relatively flat terrain make it perfect for leisurely cycling. You can ride through scenic villages, lush paddy fields, and pristine beaches.</p><p>6. Serenity and Relaxation:</p><p>Neil Island is an ideal destination for those seeking peace and tranquility. The island has limited commercialization and a slow-paced lifestyle, allowing visitors to relax and rejuvenate amidst nature.</p><p>7. Accessibility:</p><p>To reach Neil Island, travelers typically take a ferry from Port Blair, which is the gateway to the Andaman and Nicobar Islands. The ferry ride offers scenic views of the Andaman Sea.</p><p>8. Conservation Efforts:</p><p>Neil Island has made efforts to promote eco-tourism and marine conservation. Visitors are encouraged to respect the natural environment and protect the fragile coral reefs.</p><p>9. Accommodation:</p><p>Neil Island offers a range of accommodations, from simple beachfront huts to comfortable resorts, catering to different budgets and preferences.</p><p>In summary, Neil Island is a tranquil tropical paradise that offers a peaceful escape from the hustle and bustle of everyday life. Whether you\'re lounging on pristine beaches, exploring underwater ecosystems, or simply enjoying the island\'s serene atmosphere, Neil Island provides an idyllic setting for a memorable vacation in the Andaman and Nicobar Islands.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34567,0,NULL,NULL,'Neil Island',0,NULL,NULL,NULL,NULL,NULL,'32_1695641912.png','32_1695641912.png','India','101',NULL,'2021-03-09 16:28:18','2021-03-09 16:28:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Neil Island vacations, Andaman beauty, beach paradise','\"Neil Island\'s Tropical Retreat with iNeedTrip\"','','',NULL,NULL,NULL,0),(33,NULL,NULL,' \"Escape to the tropical paradise of Havelock Island with iNeedTrip. Enjoy pristine beaches, coral reefs, and underwater adventures.\"\r\n',NULL,'<p>The <strong>ANDAMAN</strong>&nbsp;archipelago consists of over 300 islands and is one of the best places to visit in the Indian Republic. These islands were initially inhabited by multiple groups of tribes which suffered displacement and exploitation during the colonial period. Tourists get to experience and learn about its history at the Anthropological Museum and Kalapani Museum.</p>\r\n\r\n<p>The crystal-clear waters, picturesque beaches, and the rich heritage make Andaman Islands the perfect destination for you. If you have always wanted to visit paradise, alone or with your soul mate, Andaman is calling! We, at ineedtrip, have designed our Andaman Tour Packages keeping you in mind and we are confident that a memorable experience awaits you there which you will cherish for the rest of your life.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11658,0,NULL,NULL,'Havelock Island',0,NULL,NULL,NULL,NULL,NULL,'33_1630317808.jpg','33_1695470299.png','India','101',NULL,'2021-03-09 16:28:18','2021-03-09 16:28:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,' Havelock Island, Andaman, beach paradise',' \"Havelock Island\'s Tropical Escape with iNeedTrip\"','','',NULL,NULL,NULL,0),(34,NULL,NULL,'Delhi Packages - Book your Delhi tour package at the best price with iNeedTrip. Click to book customized cheap Delhi holiday packages & get exciting deals now.',NULL,'<p>Delhi, the capital of India, is a vibrant and multifaceted destination that offers a rich tapestry of history, culture, and modernity. With a history dating back millennia and a dynamic present, Delhi is a city that welcomes travelers with open arms. In this blog, we\'ll embark on a virtual journey to explore the diverse attractions and experiences that make Delhi a captivating destination.</p><p>Historic Landmarks:</p><p>Delhi is home to a plethora of historic landmarks that trace the city\'s rich heritage. Explore the grandeur of the Red Fort, a UNESCO World Heritage Site, and the Jama Masjid, one of India\'s largest mosques. Don\'t miss the Humayun\'s Tomb, an architectural masterpiece that inspired the Taj Mahal.</p><p>India Gate:</p><p>India Gate, an iconic war memorial, stands tall as a tribute to Indian soldiers who sacrificed their lives in World War I. The surrounding lawns make it a popular spot for picnics and evening strolls.</p><p>Qutub Minar:</p><p>The Qutub Minar complex boasts the world\'s tallest brick minaret and is a UNESCO World Heritage Site. Explore the intricately carved pillars and the historic Iron Pillar, known for its rust-resistant properties.</p><p>Lotus Temple:</p><p>The Lotus Temple, with its unique lotus-shaped architecture, is a Bahá\'í House of Worship and a tranquil place for meditation and reflection.</p><p>Cultural Diversity:</p><p>Delhi is a melting pot of cultures, languages, and cuisines. Explore the bustling markets of Chandni Chowk, where you can savor street food like parathas, chaats, and jalebis.</p><p>Akshardham Temple:</p><p>Akshardham Temple, a marvel of modern architecture, is a spiritual and cultural center that showcases India\'s art, culture, and spirituality through exhibitions, musical fountain shows, and more.</p><p>Diverse Neighborhoods:</p><p>Delhi\'s neighborhoods offer diverse experiences. From the bustling streets of Connaught Place to the serene landscapes of Lodhi Gardens, each area has its own charm.</p><p>Museums and Galleries:</p><p>Visit the National Museum, the National Gallery of Modern Art, and the Nehru Memorial Museum and Library to delve into India\'s rich history and artistry.</p><p>Modern Delhi:</p><p>Delhi\'s modern side is exemplified by its contemporary malls, world-class restaurants, and thriving nightlife. Places like Cyber Hub in Gurugram and Hauz Khas Village are popular for their dining and entertainment options.</p><p>Lodging Options:</p><p>Delhi offers a wide range of lodging options, from luxurious hotels to budget-friendly guesthouses and hostels, ensuring comfortable stays for travelers with varying budgets.</p><p>Conclusion:</p><p>Delhi, with its juxtaposition of ancient heritage and modernity, is a destination that appeals to travelers of all interests. Whether you\'re a history buff, a culture enthusiast, a foodie, or a shopaholic, Delhi has something to offer. It\'s a place where tradition and innovation coexist harmoniously, inviting you to explore the dynamic heart of India. For those seeking a kaleidoscope of experiences and a journey through time, Delhi stands as a vibrant and captivating destination that leaves an indelible mark on every traveler\'s heart.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7701,0,NULL,NULL,'Delhi',0,NULL,NULL,NULL,NULL,NULL,'34_1695465672.png','34_1695465672.png','India','101',NULL,'2021-03-18 20:11:35','2021-03-18 20:11:35',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Delhi Tour Packages, Delhi Holiday Packages, Delhi Honeymoon Packages','Delhi Tour Packages, Book Delhi Holiday Packages - INT','','',NULL,NULL,NULL,0),(35,NULL,NULL,'Dehradun Packages - Book your Dehradun tour package at the best price with iNeedTrip. Click to book customized cheap Dehradun holiday packages & get exciting deals now.',NULL,'<p>Dehradun, the capital city of the Indian state of Uttarakhand, is a picturesque destination nestled in the foothills of the Himalayas. Known for its scenic beauty, pleasant climate, and vibrant culture, Dehradun offers travelers a perfect blend of nature, spirituality, and adventure. In this blog, we\'ll embark on a virtual journey to explore the natural wonders and cultural richness of Dehradun.</p><p>Robber\'s Cave (Gucchupani):</p><p>Robber\'s Cave, also known as Gucchupani, is a natural limestone cave with a river flowing inside it. A unique and mystical place, it\'s perfect for a leisurely walk through the cool waters and rock formations.</p><p>Tapkeshwar Temple:</p><p>Dedicated to Lord Shiva, the Tapkeshwar Temple is nestled in a cave where water droplets continuously drip on the shiva lingam. The temple\'s serene surroundings make it an ideal place for spiritual contemplation.</p><p>Sahastradhara:</p><p>Sahastradhara, which means \"thousand-fold spring,\" is a breathtaking waterfall known for its therapeutic properties. The water here is rich in minerals and is believed to have medicinal benefits.</p><p>Forest Research Institute (FRI):</p><p>The Forest Research Institute, with its colonial architecture and lush green campus, is not just a research institution but also a beautiful place to explore. The institute\'s museum showcases the diverse flora and fauna of India.</p><p>Mindrolling Monastery:</p><p>The Mindrolling Monastery is a Tibetan Buddhist monastery known for its grand stupa, lush gardens, and peaceful ambiance. Visitors can meditate, explore the temple, and enjoy panoramic views from the top.</p><p>Malsi Deer Park:</p><p>Malsi Deer Park is a serene wildlife sanctuary where you can spot deer, peacocks, and a variety of bird species. It\'s a great place for a family picnic and nature enthusiasts.</p><p>Adventure Activities:</p><p>Dehradun offers numerous adventure activities, including trekking, paragliding, and river rafting. Nearby destinations like Mussoorie and Rishikesh are popular for these thrilling adventures.</p><p>Local Cuisine:</p><p>Savor local Garhwali and Kumaoni cuisine at Dehradun\'s eateries. Try dishes like Aloo Ke Gutke, Phaanu, and Singodi, a sweet dessert made from condensed milk.</p><p>Conclusion:</p><p>Dehradun, with its natural beauty, spiritual sanctuaries, and adventure opportunities, is a destination that caters to diverse interests. Whether you\'re exploring mystical caves, seeking solace in temples, or embarking on thrilling adventures, Dehradun has something for everyone. It\'s a place where nature\'s wonders, spiritual serenity, and outdoor excitement converge, inviting you to immerse yourself in the splendid tapestry of Uttarakhand\'s treasures. For those seeking a tranquil and adventurous escape, Dehradun stands as a gateway to the enchanting Himalayan foothills.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7680,0,NULL,NULL,'Dehradun',0,NULL,NULL,NULL,NULL,NULL,'35_1695465318.png','35_1695465318.png','India','101',NULL,'2021-04-08 14:23:50','2021-04-08 14:23:50',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dehradun Tour Packages, Dehradun Holiday Packages, Dehradun Honeymoon Packages','Dehradun Tour Packages, Book Dehradun Holiday Packages - INT','','',NULL,NULL,NULL,0),(36,NULL,NULL,'Shimla Tour Package: Ineedtrip offers best deals to Shimla holiday and honeymoon packages. Click now to get exclusive Shimla deals and get best Shimla trip package.',NULL,'<p><b>A Short Guide to Shimla Trip</b> - As you go for a stroll in the midst of nature in Shimla town, you will feel the freshness all around. You will be charmed by the twittering birds and the regular tune around. You will feel propelled by the local hill culture and the adoration with which the occupants of this town will welcome you. Shimla has been an important place all through modern Indian history.&nbsp;</p><p>The British effect on the culture, architecture, and general way of life of individuals here is all very noticeable. There are many spots in Shimla that can be visited on a vacation. It is a famous tourist destination for its Victorian architecture, which can be seen in a specific part of the Ridge and the Mall Road. Shimla is otherwise called one of the best romantic places for honeymooners. Shimla Honeymoon Package will surely woo you!</p><p><b>Interesting places to visit in Shimla&nbsp;</b></p><p>Clearly, most of us have Shimla on our list of must-do. This wonderful hill station is settled in the grand state of Himachal Pradesh. The land has transcended mountains, historic sites, and beautiful perspectives. Shimla has plenty of spots to visit that make the best approach to everyone’s agenda. A trip to Shimla can be somewhat overwhelming given the number of vacationer spots in and around the locale. If you, as well, are overpowered with the number of attractions on the hill station, here are probably the best places to visit in Shimla. Are you ready for a Shimla Tour?</p><p><b>Best places to visit in Shimla:&nbsp;</b></p><p>The Ridge, Mall Road, Jakhoo Hill, Green Valley, Christ Church, Kufri, Viceregal Lodge, Himalayan Bird Park, Tara Devi Temple, Kali Bari Temple, Chadwick Waterfall, Shimla State Museum, Kalka Shimla Toy Train, Annandale, Kuthar Fort, Scandal Point, Summer Hill, Shaily Peak, Manjathal Sanctuary, Water Catchment Wildlife Sanctuary, Gurudwara Sahib, Gaiety Heritage Cultural Complex, Gorton Castle, Sankat Mochan Temple, Bantony Castle, Himalayan Nature Park, St. Michael\'s Cathedral Catholic Church, Army Heritage Museum, Kamna Devi Temple, Rani Jhansi Park, Baba Bhalku Railway Museum, Shimla Reserve Forest Sanctuary,&nbsp; Prospect Hill, Rothney Castle, Hawa Ghar. Shimla Tour Package lets you experience all the important places.</p><p><b>Thrilling Things to do in Shimla</b></p><p>Hypnotizing scenic beauty, warm friendliness, exciting winter sports, and wonderful climatic conditions are only a part of the encounters sitting tight for you in Shimla, India’s dearest and most notable hill station. It is where thrill-seekers can track down their sport while the city additionally draws in nature lovers, history buffs, and solo explorers with its numerous attractions. From trekking, hiking, and camping to touring and ice-skating, there is what should be done in Shimla. Go for Shimla Package for a thrilling vacation!</p><p>1.<span style=\"white-space:pre\">	</span>Jakhu ropeway</p><p>2.<span style=\"white-space:pre\">	</span>Hip Hip Hurray Amusement Park</p><p>3.<span style=\"white-space:pre\">	</span>Chill out at the Mall Road</p><p>4.<span style=\"white-space:pre\">	</span>Enjoy the Kalka – Shimla Toy Train ride</p><p>5.<span style=\"white-space:pre\">	</span>Go for trekking</p><p>6.<span style=\"white-space:pre\">	</span>Enjoy camping under the stars</p><p>7.<span style=\"white-space:pre\">	</span>Enjoy hiking to Jakhu Hill and the temple</p><p>8.<span style=\"white-space:pre\">	</span>Enjoy ice skating at Shimla Ice Skating Club</p><p>9.<span style=\"white-space:pre\">	</span>Paragliding</p><p>10.<span style=\"white-space:pre\">	</span>River Rafting</p><p>11.<span style=\"white-space:pre\">	</span>Go Birdwatching at the Water Catchment Sanctuary</p><p>12.<span style=\"white-space:pre\">	</span>Stroll around in Shimla Ridge</p><p>13.<span style=\"white-space:pre\">	</span>Enjoy shopping in Lakkar Bazaar</p><p><b>Shopping in Shimla</b></p><p>As you probably are aware, Shimla is the most famous summer location in India in view of its lovely climate and grand magnificence. However, individuals visiting Shimla often ask what should one purchase in Shimla. There are many attractions to visit in Shimla, including some local markets, which are incredible spots for shopping. Shimla Tour Package for an exciting holiday experience!</p><p><b>Some of the popular sites for shopping in Shimla are:&nbsp;</b></p><p>1.<span style=\"white-space:pre\">	</span>Mall Road</p><p>2.<span style=\"white-space:pre\">	</span>Himachal Emporium</p><p>3.<span style=\"white-space:pre\">	</span>Tibetan Market</p><p>4.<span style=\"white-space:pre\">	</span>Lakkar Bazaar</p><p>5.<span style=\"white-space:pre\">	</span>Middle Bazar</p><p>6.<span style=\"white-space:pre\">	</span>Lower Bazar</p><p>7.<span style=\"white-space:pre\">	</span>Ram Bazar</p><p><b>Things to buy in Shimla:</b></p><p>1.<span style=\"white-space:pre\">	</span>Local Handicrafts</p><p>2.<span style=\"white-space:pre\">	</span>Wooden antiques</p><p>3.<span style=\"white-space:pre\">	</span>Shimla fruit products</p><p>4.<span style=\"white-space:pre\">	</span>Tibetan Jewellery</p><p>5.<span style=\"white-space:pre\">	</span>Himachali Caps and Hats</p><p>6.<span style=\"white-space:pre\">	</span>Woolen Items</p><p>7.<span style=\"white-space:pre\">	</span>Handmade Items&nbsp;</p><p>8.<span style=\"white-space:pre\">	</span>Paintings&nbsp;</p><p>9.<span style=\"white-space:pre\">	</span>Pottery Items</p><p><b>Traditional food to eat in Shimla</b></p><p>Delicious local food of Shimla, charming hills, mountain air, tall pine trees, and steaming hot, tasty food and refreshments to take care of an appetite amplified by the environmental elements. Simply the mix we search for in hill stations. Other than that some hill stations make a superior showing of giving the most delectable choice to exciting food. Notwithstanding its prevalence, there isn\'t anything that reasonably beats Shimla when it includes mouth-watering food of all assortments. Shimla Tour Package to enjoy the best!</p><p>From many years old street food destinations to cafes with huge loads of in-demand food to fine-feast cafés in five-star properties, there’s something in Shimla for visitors of each type. On your next outing to this beautiful state don\'t pass up a portion of the mouth-watering suppers that they offer to you.&nbsp;</p><p><b>List of famous food of Shimla:</b></p><p>Madra, Dham, Sidu, Thupka, Babru, Chha Gosht, Mash Daal, Chicken Anardana, Tudkiya Bhath, Bhey or Spicy Lotus stems, Aktori, Kullu Trout fish</p><p>How to reach Shimla?</p><p><b>By Air</b></p><p>Situated 22 km away from Shimla, the Jubbarhatti airport is very much linked to all the major places of India. The other airports are Chandigarh Airport and Delhi airport.</p><p><b>By Rail</b></p><p>The closest station is Kalka which interfaces the city to major parts of the country by rail line. There are a decent number of trains from the cities like Delhi and Calcutta. From Kalka station, one can take the delight of toy train also as can hire private cabs to investigate the excellence of this city. Shimla Holiday Packages for a serene and secluded vacation!</p><p><b>By Road</b></p><p>Shimla is very much associated with the cities like Delhi, Chandigarh, Dehradun, and Kalka by roadways. You can hire taxis, or state buses to arrive at the hill station from these cities. There are even private bus services from the close-by spots to Shimla like Ambala (154 km), Delhi (370 km), Kullu (235 km), and Manali (280 km). From the capital of India, one can even take luxury buses and cabs which will give a comfortable travel experience. Nothing is better than opting for Shimla Tour Package!</p><p><b>Best time to visit Shimla</b></p><p>The best ideal time to visit Shimla is between March to June when the climate stays charming and the temperature is 15 degrees Celsius to 30 degrees Celsius. The best ideal time to encounter Snowfall in Shimla is during the winter months from November to February. This time is great for snow activities like skiing and investigating the snow-shrouded White Mountains. The travel industry flourishes in Shimla in every one of the seasons other than the monsoons that start from July till September. Shimla Honeymoon Packages for the perfect romantic getaway in India.</p><p><b>Planning for a trip to Shimla?</b><br></p><p>Shimla is the capital city of Himachal Pradesh and is additionally prevalently known as the sovereign of hill stations. Lakhs of vacationers from India as well as from around the world, visit Shimla. There are different activities to experience like paragliding, skiing, trekking, and other adventure sports that one can do in Shimla. Go for Shimla Honeymoon Packages for a uniquely romantic experience.</p><p>The best ideal time to visit Shimla with family is the summer season when daytime temperatures are wonderful and outdoor adventures are bounty. The best season to visit Shimla for snow is the winter season, which starts from November to February. Snowfall season in Shimla starts in late December and keeps going till February. You should plan to head out to Shimla soon to encounter every one of the exciting places and activities. Visit Shimla once and you will definitely visit this place again.&nbsp;</p><p><b><i>Shimla Holiday Packages for the perfect serene and breathtaking holiday experience.</i></b></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'Shimla',0,NULL,NULL,10,NULL,NULL,'36_1630313189.jpg','36_1695810513.png','India','101',NULL,'2021-04-12 14:21:19','2021-04-12 14:21:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tour to Shimla, Best Package Shimla, Book Shimla Tour, Book Shimla Holiday Package, Cheap Shimla Package, Best Shimla Honeymoon Package, Explore Shimla Package, Shimla Honeymoon, Shimla Trip Deals, Best Deals Shimla.','Explore Shimla Packages, Shimla Holidays and Honeymoon Package','','',NULL,NULL,NULL,0),(37,NULL,NULL,'',NULL,'<p style=\"text-align: justify; \">Manali is one of India\'s most famous destinations. For quite a long time, many tourists have visited Manali for a break from the summer heat. Many presently believe Manali to be a dust-free destination and accordingly search for other summer holiday spots. Manali and Shimla are quite possibly the most famous holiday destinations in the Himalayas and we bet all over India as well. Manali Package for a secluded vacation!</p><p style=\"text-align: justify; \">Every year many individuals visit Manali and Shimla and the number simply continues to increase each year. Over the couple of years, Manali in winters is not just for honeymooners searching for some seclusion, but solo travelers and families as well.</p><p style=\"text-align: justify; \"><b>Places to visit in Manali</b></p><p style=\"text-align: justify; \">Every instant, you hear Manali your mind pictures the experiences this resort town offers. However, have we seen the whole town? What is we have missed to explore Manali that highlights far off scenic views, sky touching deodar trees, shimmering lakes and vast fields. This hill town in Himachal Pradesh is without a doubt one of the most visited vacationer destinations in India; we should definitely explore all! Manali Tour Package for a breathtaking experience!</p><p style=\"text-align: justify; \">Whether you are searching for some inward harmony or need to have an adventurous backpacking trip, the tourist’s spots to visit in Manali won\'t ever baffle you. Situated on the banks of Beas River, Manali is swirling with a few remarkable cultural, natural and audacious pearls. From the excellent Solang valley to the Great Himalayan National Park, there are <b>many beautiful places to visit in Manali</b>.&nbsp;</p><ol><li style=\"text-align: justify;\">Hidimba Devi Temple</li><li style=\"text-align: justify;\">Solang Valley</li><li style=\"text-align: justify;\">Rohtang Pass</li><li style=\"text-align: justify;\">Manu Temple</li><li style=\"text-align: justify;\">Manali Sanctuary</li><li style=\"text-align: justify;\">Vashisht Hot Water Springs &amp; Temple</li><li style=\"text-align: justify;\">Old Manali</li><li style=\"text-align: justify;\">Museum of Himachal Culture and Folk Art</li><li style=\"text-align: justify;\">Van Vihar National Park</li><li style=\"text-align: justify;\">Jogini Falls</li><li style=\"text-align: justify;\">Himalayan Nyingmapa Buddhist Temple</li><li style=\"text-align: justify;\">Gadhan Thekchhokling Gompa Monastery</li><li style=\"text-align: justify;\">Nehru Kund</li><li style=\"text-align: justify;\">Arjun Gufa (Arjun Cave)</li><li style=\"text-align: justify;\">The Castle Manali</li><li style=\"text-align: justify;\">Rahalla Falls</li><li style=\"text-align: justify;\">Beas River</li><li style=\"text-align: justify;\">Jagatsukh</li><li style=\"text-align: justify;\">Rozy Falls</li><li style=\"text-align: justify;\">Katrain</li><li style=\"text-align: justify;\">Gauri Shankar Temple</li><li style=\"text-align: justify;\">Jana Falls</li><li style=\"text-align: justify;\">Siyali Mahadev Temple</li><li style=\"text-align: justify;\">Dhakpo Shedrupling Monastery</li></ol><p style=\"text-align: justify; \">With Manali Holiday Packages explore the best of Manali!</p><p style=\"text-align: justify; \"><b>Things to do in Manali</b></p><p style=\"text-align: justify; \">Make your trip extraordinary with some unique encounters in Manali. Be it an exhilarating summer or energizing winter in India, the hill town is awesome. It has captivated many adventure lovers and couples for their honeymoon. Now it has become a family vacation destination as well for a snow-filled winter in India. Also, the high mountains hung in snow, alongside rolling valleys of green, swift rivers, and clear blue skies furnish all guests with a memorable experience. Manali Tour Package for an exhilarating experience!</p><p style=\"text-align: justify; \">Considering snowy peaks, lush valleys, historic roots, and a rush to encounter new things, Manali is the spot to be. Likewise, Manali is one of Himachal’s adventure hubs. The hill station has the ideal scene to give you a taste of adventure. Even with the sights combined with a charming vibe, the top activities in Manali also draw in the tourists.</p><p style=\"text-align: justify; \"><b>Best thrilling things to do:</b></p><ol><li style=\"text-align: justify;\"><li style=\"text-align: justify;\">Enjoy river rafting in the Beas River</li><li style=\"text-align: justify;\">Enjoy paragliding in Gulaba &amp; Marhi&nbsp;</li><li style=\"text-align: justify;\">Go on a bike ride to Rohtang Pass</li><li style=\"text-align: justify;\">Practice some Yoga in Shri Hari Yoga Ashram</li><li style=\"text-align: justify;\">Ride a yak Manali Wildlife Sanctuary</li><li style=\"text-align: justify;\">Meditate and relax in Arjun Gufa</li><li style=\"text-align: justify;\">Take a bath in Vashist Hot Water Springs</li><li style=\"text-align: justify;\">Zorbing</li><li style=\"text-align: justify;\">Stroll at Mall Road</li><li style=\"text-align: justify;\">Go for Trekking&nbsp;</li><li style=\"text-align: justify;\">Skiing at Solang Nullah</li><li style=\"text-align: justify;\">Riverside Camping</li><li style=\"text-align: justify;\">Mountain Biking</li><li style=\"text-align: justify;\">Visit the apple orchards</li><li style=\"text-align: justify;\">Sip a cup of coffee on the Riverside Café&nbsp;</li><li style=\"text-align: justify;\">Enjoy nature walks&nbsp;</li><li style=\"text-align: justify;\">Witness the production of shawls</li><li style=\"text-align: justify;\">Enjoy a cable car ride to witness the scenic view from above</li><li style=\"text-align: justify;\">Enjoy the Winter Carnival festival</li><li></li></li></ol><div style=\"text-align: justify;\"><br></div><p style=\"text-align: justify; \"><b>Traditional food to eat in Manali</b></p><p style=\"text-align: justify; \">Manali is one of the most popular destinations in Himachal Pradesh which is frequently visited by vacationers. A well-known hill station offering stunning views and quiet scenes, Manali is significantly more than that. Street food forms an important part of the life of the people. Very much like any other holiday spot in India, street food keeps on being a claim to fame of Manali. Vacation to this lovely hill station is complete only after relishing the street foods here. Manali Tour Package for an exciting experience!</p><p style=\"text-align: justify; \">One should not return home empty stomach without trying the delectable and pocket-accommodating food that Manali offers. Apart from the renowned places of interest, our Manali Tour Packages help you in choosing the best places to eat in Manali where you can eat up tasty suppers with your loved ones. Here is the rundown of the best food in Manali mentioned below:</p><p style=\"text-align: justify; \"><b>Best food to eat in Manali:</b></p><ol><li style=\"text-align: justify;\">Khatta&nbsp;</li><li style=\"text-align: justify;\">Sidu</li><li style=\"text-align: justify;\">Babru</li><li style=\"text-align: justify;\">Chana Madra</li><li style=\"text-align: justify;\">Mash Dal</li><li style=\"text-align: justify;\">Patande&nbsp;</li><li style=\"text-align: justify;\">Bhey&nbsp;</li><li style=\"text-align: justify;\">Aktori&nbsp;</li><li style=\"text-align: justify;\">Tudkiya Bhat&nbsp;</li><li style=\"text-align: justify;\">Chha Gosht</li><li style=\"text-align: justify;\">Trout&nbsp;</li><li style=\"text-align: justify;\">Momos&nbsp;</li><li style=\"text-align: justify;\">Red Rice</li></ol><p style=\"text-align: justify; \"><b>Best restaurant to visit:&nbsp;</b></p><ol><li style=\"text-align: justify;\">Cafe 1947</li><li style=\"text-align: justify;\">Renaissance Manali</li><li style=\"text-align: justify;\">La Plage</li><li style=\"text-align: justify;\">Il Forno</li><li style=\"text-align: justify;\">The Lazy Dog</li><li style=\"text-align: justify;\">Drifter’s Cafe</li><li style=\"text-align: justify;\">Johnson’s Cafe</li><li style=\"text-align: justify;\">Fat Plate Restaurant</li><li style=\"text-align: justify;\">Rooftop Restaurant at Keylinga Inn</li><li style=\"text-align: justify;\">Basil Leaf Restaurant</li><li style=\"text-align: justify;\">Dylans Toasted And Roasted Coffee House</li><li style=\"text-align: justify;\">Mount View Restaurant</li><li style=\"text-align: justify;\">The Open Air And Multi-Cuisine Restaurant</li><li style=\"text-align: justify;\">Open Air Restaurant At Apple Bud Cottages</li><li style=\"text-align: justify;\">Chopsticks Restaurant</li></ol><p style=\"text-align: justify; \">With the broad assemblage of the best street food in Manali, a trip to this spot is certainly gastronomically kind. Make a visit to the place and partake in the distinctive kinds of flavors while enjoying the breathtaking views of this place.&nbsp;<br></p><p style=\"text-align: justify; \"><b>Perfect spots for shopping in Manali</b></p><p style=\"text-align: justify; \">Souvenir shopping is one of the best experiences in Manali. Brilliant, nosy roadside stalls and sellers along twisting stretches of street with the lively clamor of road markets are impeccably outlined by the encompassing high snow-covered mountain tops in the splendid green Beas valley. With Manali Holiday Packages have an enjoyable experience!</p><p style=\"text-align: justify; \">Take your pick from the local handicrafts, winter-accommodating stuff, woven shawls, Tibetan art, and many sorts of quirky bric-a-brac and memorabilia to take home with you. Try not to be reluctant to wrangle! Absorb the fresh, clean air in Manali and set off to experience the Himalayas. When you\'re done exploring the tourist spots in Manali, set aside the effort to go out to shop and get enchanting gifts.</p><p style=\"text-align: justify; \"><b>Best places to enjoy local shopping in Manali:</b></p><ol><li style=\"text-align: justify;\">The Mall Road</li><li style=\"text-align: justify;\">Old Manali Market</li><li style=\"text-align: justify;\">Tibetan Market</li><li style=\"text-align: justify;\">Himachal Emporium</li><li style=\"text-align: justify;\">Manu Market</li><li style=\"text-align: justify;\">Bhuttico</li></ol><p style=\"text-align: justify; \"><b>Best time to visit Manali</b></p><p style=\"text-align: justify; \">November to February are the best months to visit Manali. During this time, the city is covered with snow that adds to the excellence of the hilly terrain. The temperature during this time is as low as between 5 degrees Celsius to -90 degrees Celsius. You can visit during the summer months from April to June. However, for the honeymooners the best month to visit Manali is December. Manali Honeymoon Packages for a romantic and peaceful vacation!</p><p style=\"text-align: justify; \">This hill resort is extremely famous among honeymooners making it a \'sweetheart\'s heaven\'. Since Manali offers something for everybody in each season, one can expect a wide range of vacationers here, from explorers to families. Snowfall in Manali starts from December to February. Manali is quite possibly the most admirable hill station in India inviting tourists all through the year.</p><p style=\"text-align: justify; \"><b>How to reach Manali?</b><br></p><p style=\"text-align: justify; \"><b>By air:&nbsp;</b></p><p style=\"text-align: justify; \">The nearest airport to Manali is Bhuntar airport which is situated around 50 km from Manali and 10km from Kullu. You can take a bus or book a taxi from here to reach Manali and Kullu. For a breathtaking vacation go for Manali Holiday Packages!</p><p style=\"text-align: justify; \"><b>By road:&nbsp;</b></p><p style=\"text-align: justify; \">Manali is well connected to all the major destinations in India. There are continuous direct bus services from Delhi to Manali which is around 570 km away. Also, direct buses run from Shimla, Dharamshala, Leh, and Chandigarh. Also, you can hire a taxi to make a trip to Manali.&nbsp;</p><p style=\"text-align: justify; \"><b>By train</b></p><p style=\"text-align: justify; \">Joginder Nagar railway station is the nearest railway station to Manali which is situated at a distance of 50 km only. Other possible choices are Ambala Cantt and Chandigarh, although they are too far. However, do check the availability of trains, as broad gauge trains from these trains are rarely frequently available. Chandigarh railway station is around 310 km away and Ambala station is around 300 km away.&nbsp;</p><p style=\"text-align: justify; \"><b>Look no more! Manali tour packages for your next vacation</b></p><p style=\"text-align: justify; \">What makes Manali amazing is that you can visit this destination at any time of the year! While it has attractions that allure different travelers, there are a few months when it isn\'t ideal to visit. Check out the months which will give you the best excites and the ones to avoid. With our well-curated Manali tour packages, you can explore the best of Manali in a hassle-free way.&nbsp;</p><p style=\"text-align: justify; \">With us, you have the option to stay at the best resorts and hotels that offer scenic views of the Himalayas and the natural beauty that captivates you. Opt for Manali Honeymoon Packages for couples looking for a peaceful and enjoyable vacation!</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16593,0,NULL,NULL,'Manali',0,NULL,NULL,10,NULL,NULL,'37_1636373612.jpg','37_1695639373.png','India','101',NULL,'2021-04-12 14:21:19','2021-04-12 14:21:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,0),(38,NULL,NULL,'Dharamshala Packages - Book your Dharamshala tour package at the best price with iNeedTrip. Click to book customized cheap Dharamshala holiday packages & get exciting deals now.',NULL,'<p style=\"text-align: justify; \">The inspiringly basic statement that blends the sensations of hunger for new experiences inside us approached from His Holiness, The Dalai Lama. The Dalai Lamas are the monks of the Gelug school of Tibetan Buddhism. During the end of the 16th century, the Gelug School arose as the pre-famous Buddhist school in Tibet. The Dalai Lama is perceived as a holy persona by the whole world. Things happened in the country of His Holiness following the Tibetan uprising, prompting the Dalai Lama to leave the place that is known as his birthplace. Dharamshala Tour Package for a serene vacation!</p><p style=\"text-align: justify; \">Bidding farewell to the land of Tibet, Dalai Lama made Mcleodganj in Dharmshala his home. Presently there are many places to visit in Dharmashala, direct flight tickets being one of them; so in order to visit the best places, we have listed down the top place to visit in Dharmashala.</p><p style=\"text-align: justify; \"><b>Breathtaking places to visit in Dharamshala</b></p><p style=\"text-align: justify; \">Dharamsala is situated in the district of Kangra in Himachal Pradesh. What many individuals don\'t know is that the city has two parts. One is known as Lower Dharamshala, which is its commercial center and dabbed with markets, courts, and the popular Kotwali Bazaar, where you run over things of ordinary use. Upper Dharamshala is home to Mcleodganj as well as other things which will help you to remember its colonial past. The two unique parts of the city have something else to bring to the table. As a vacationer, it offers you the chance to loosen up and take in the beauty of the landscape. Dharamshala Package for a mesmerizing vacation!</p><p style=\"text-align: justify; \"><b>Popular Places to Visit in Dharamshala:</b></p><p style=\"text-align: justify; \">McLeod Ganj, Kangra Valley, Dalai Lama Temple Complex, Bhagsu Waterfall, Gyuto Monastery, Bhagsunath Temple, Dharamkot, Triund Hill, Dal Lake, Sansar Chand Katoch Museum, Dharamshala Cricket Stadium, Library of Tibetan Works and Archives, St John in the Wilderness Church, The War Memorial, Tsuglag Khang, Namgyal Monastery, Kangra Fort, Hanuman Ka Tibba, Masrur, Aghanjar Mahadev Temple, Kalachakra Temple, Nechung Monastery, Namgyalma Stupa, Naam Art Gallery, Chinmaya Tapovan, Naddi Village, Norbulingka Institute, Kangra Art Museum. Explore the best with our Dharamshala Travel Packages!</p><p style=\"text-align: justify; \"><b>Things to do in Dharamsala</b></p><p style=\"text-align: justify; \">Situated at an elevation of 1457m against the Himalayan background, this is a place that should be in one\'s rundown of activities in Dharamsala. It has arisen as one of the top weekends escapes from Delhi for many reasons. There are a bunch of top activities in Dharamshala that draw in explorers paying little mind to their age. Youths love to set up their own shelters and stargaze, while the older individuals try to find harmony and otherworldliness visiting the colorful monasteries and temples. Partake in this rundown of spots and activities that make Dharamsala a one-of-a-kind place to be explored and be prepared to be enticed to visit this wonderful hill station. Opt for a Dharamshala tour package for a thrilling vacation!</p><p style=\"text-align: justify; \"><b>Exciting things to indulge in Dharamshala:</b><br></p><p style=\"text-align: justify; \">Paragliding, Triund trekking, camping, shopping, pottery lessons in Dharamkot Studio, Laka Glacier Trek or the Snow Line Trek, Lahesh Cave Trek, Dhauladhar View, Full Day Sightseeing in Dharamshala &amp; Mcleodganj, Camping in Dharamshala at 5000 Ft, Heritage Cottage Stay near Dharamshala.</p><p style=\"text-align: justify; \"><b>Shopping in Dharamshala</b></p><p style=\"text-align: justify; \">From adornments to woolens, shopping is one individual’s beloved activity in Dharamshala. Here you have the choice of shopping both in the showrooms as well as in the streets. Strolling around the markets in Dharamshala, you can check accessories made of various stones, vivid prayer flags, woolens that are sewed directly before you, and handicrafts that say a lot about the Tibetan and Indian cultures. Dharamshala Holiday Packages for a wonderful vacation!</p><p style=\"text-align: justify; \">Dissimilar to many shopping places in India, bartering in McLeodganj Market probably won\'t be productive. But, we propose going to various other shops, you might come across some stuff at a less expensive cost.&nbsp;</p><p style=\"text-align: justify; \"><b>Best place to shop:</b></p><ol><li style=\"text-align: justify; \">Kotwali Bazaar</li><li style=\"text-align: justify;\">Jogibara Road</li><li style=\"text-align: justify;\">Divine Buddha Handicrafts</li><li style=\"text-align: justify;\">Tibetan Handicraft Centre</li><li style=\"text-align: justify;\">Green Shop</li><li style=\"text-align: justify;\">Village Boutique</li><li style=\"text-align: justify;\">Palaco Handmade Crafts</li><li style=\"text-align: justify;\">What to buy?</li><li style=\"text-align: justify;\">Woolen</li><li style=\"text-align: justify;\">Handicrafts</li><li style=\"text-align: justify;\">Himachal wines</li><li style=\"text-align: justify;\">Accessories</li><li style=\"text-align: justify;\">Singing Bowls</li></ol><p style=\"text-align: justify; \"><b>Traditional food to try in Dharamshala</b></p><p style=\"text-align: justify; \">While there are plenty of activities in Dharamshala, the most loved activity for certain individuals there is to try the traditional food of the region. Dharamshala, situated in Himachal Pradesh and near Punjab, has a predominant Punjabi food culture. Because of its area toward the northern territories of India, you can discover a ton of North Indian food there. Furthermore, as Dharamshala has been ascending as a tourist spot for a long time, many worldwide foods, for example, Continental, Lebanese, Mexican, are available in bounty. With our Dharamshala Travel Packages relish the scenic beauty!</p><p style=\"text-align: justify; \"><b>Best food to try out:</b></p><p style=\"text-align: justify; \">Tudkiya Bhath, Shapta, Thukpa, Dham, Momos, Tingmo, Bhagsu cake, Alu Phing Sha, Bhey or Spicy Lotus stems, Chha Gosht, Siddu, Babru, Aktori, Kullu Trout fish.&nbsp;</p><p style=\"text-align: justify; \"><b>Best time to visit Dharamshala</b></p><p style=\"text-align: justify; \">Located in the charming Kangra valley of Himachal Pradesh, Dharamsala otherwise called Little Lhasa is an ideal holiday destination for those who wish to stay in the lap of nature. The charming landscape of Dharamsala and the presence of the incomparable Buddhist culture make this hill station perhaps the most tranquil in India. Despite the fact that one could visit this hill station throughout the year, to absorb the excellence of the staggering mountains and the lavish coniferous woods, do know that the climate in Dharamsala is reviving in summer. Rejuvenate your senses with the best Dharamshala tour package!&nbsp;</p><p style=\"text-align: justify; \">The best months to visit Dharamshala is from mid-February to mid-July (spring and summer) when the climate is charming with a temperature running between 21-34 degree Celcius. Winters here are cold with infrequent snowfalls; but, it makes the valley look significantly lovelier. If you love snow this is the best season for you.</p><p style=\"text-align: justify; \"><b>How to reach Dharamshala?</b></p><p style=\"text-align: justify; \"><b>By air:</b></p><p style=\"text-align: justify; \">Dharamshala is Gaggal Airport is the nearest airport which is only 13 km away.&nbsp;</p><p style=\"text-align: justify; \"><b>By road:</b><br></p><p style=\"text-align: justify; \">Dharamshala is well connected to other parts of India via both state government buses and private tour operators. The main bus terminal is located in Lower Dharamshala.&nbsp;</p><p style=\"text-align: justify; \"><b>By rail:</b></p><p style=\"text-align: justify; \">The nearest railway station to Dharamshala is Pathankot, which is located at a distance of 85 km away. From here, you can take bus services or book a taxi from Pathankot to arrive at Dharamshala.</p><p style=\"text-align: justify; \"><b>Don’t wait! Choose Dharamshala for your next vacation</b></p><p style=\"text-align: justify; \">It\'s rare we run over nature\'s excellence. Living in substantial wildernesses, we frequently fail to remember the glorious force of nature. In any case, when we do observe ourselves encompassed by trees, hypnotizing mountains, and spouting waters, the grandness, all things considered, blows our mind. That is actually the sort of impact Dharamshala has on you, which makes it a significant place of interest in India. Nature\'s gift to humanity comes from this city in the province of Himachal Pradesh. Book now the Dharamshala tour package for a spiritual vacation!</p><p style=\"text-align: justify; \">Living in India you realize how troublesome it can be to enjoy pleasant weather. It\'s either excessively hot or excessively moist and rarely pleasant. Being a tropical country, snowfall is certifiably not a typical sight for us, except if you\'re living in Dharamshala. Snow and hail are a typical wonder in upper Dharamshala between the long periods of December and February, however normal as moistness may be in Bombay. Next time you need to encounter snowfall and low temperatures you don\'t have to head out to Switzerland. You should simply visit Dharamshala.</p><p style=\"text-align: justify; \"><i><b>Dharamshala tour package for the best experience!</b></i></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7824,0,NULL,NULL,'Dharamshala',0,NULL,NULL,NULL,NULL,NULL,'38_1695465857.png','38_1695465857.png','India','101',NULL,'2021-04-12 15:15:54','2021-04-12 15:15:54',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dharamshala Tour Packages, Dharamshala Holiday Packages, Dharamshala Honeymoon Packages','Dharamshala Tour Packages, Book Dharamshala Holiday Packages - INT','','',NULL,NULL,NULL,0),(39,NULL,NULL,'Dalhousie Packages - Book your Dalhousie tour package at the best price with iNeedTrip. Click to book customized cheap Dalhousie holiday packages & get exciting deals now.',NULL,'<p style=\"text-align: justify; \">Dalhousie is spread over an area of 14 sq km in Himachal Pradesh. It has five hills, specifically Balun, Tehra, Patreyn, Bakrota, and Kathlog. The fragrant pines, rhododendron, oaks, and a few different kinds of braid cover the slopes of the mountains. This grand hill station is outlined by the River Ravi streaming at the base of this beautiful town. Popular Dalhousie Tour Package for an exciting vacation!</p><p style=\"text-align: justify;\">Dalhousie offers impressive views of the great snow-covered Pir Panjal mountain range situated in Sach Pass, Jammu and Kashmir, and Chamba\'s Pangi Valley. This captivating hill station has a few places of interest like Bakrota hills, Lohali village, Dainkund peak, Kalatop, and Tibetan market. The beautiful valley of Khajiar is additionally very famous among the guests. Tourists also visit the region near Alla. This region offers stunning views of the mountains and the lush green forests. Dalhousie is a famous destination for honeymooners as well; check out the Dalhousie Honeymoon Packages.&nbsp;</p><p style=\"text-align: justify; \"><b>Breathtaking places to visit in Dalhousie</b></p><p style=\"text-align: justify;\">Known for its charming surroundings, Dalhousie is one of the most popular hill stations in Himachal Pradesh. Dalhousie is situated in the locale of Chamba at a height of around 2,000 meters. It is located at the western end of the Dhauladhar ranges and encircled by wonderful snow-covered mountains.</p><p style=\"text-align: justify;\">Dalhousie is named after Lord Dalhousie, the British Governor-General in India who founded this town. With a few Victorian-style chateaus, Scottish architecture, and other enchanting frontier structures, this hill station will take you back to the British era. The breathtaking hill station has old-fashioned churches you should definitely visit. Dalhousie Tour Package for an awe-inspiring holiday experience!</p><p style=\"text-align: justify;\"><b>Best places to visit:</b></p><p style=\"text-align: justify;\">Panchpula, Khajjiar, Kalatop Wildlife Sanctuary, Satdhara Falls, Chamera Lake, Ganji Pahari, Dainkund Peak, St John\'s Church, Subhash Baoli, Sach Pass, Rock Garden, St Patricks Church, Bakrota, Garam Sadak, Chamunda Devi Temple, St Francis Church, Laxmi Narayan Temple, Bhuri Singh Museum, Pohlani Devi Temple,&nbsp;</p><p style=\"text-align: justify;\"><b>Enthralling activities to indulge in Dalhousie&nbsp;</b></p><p style=\"text-align: justify;\">One of the best hill stations in Himachal Pradesh, Dalhousie is a well-known summer holiday destination. The town was set up in 1854 by the British Governor-General Lord Dalhousie and is situated at the western ranges of the Himalayas at an altitude of 1,970 m above sea level. Opt for Dalhousie Package! The town is known for well-planned roads, British colonial buildings, the lush green forests and snow-covered mountains make it an excellent destination to visit. Not only these but it is also loaded with adventurous things to do.</p><p style=\"text-align: justify;\"><b>List of things to do in Dalhousie:</b></p><ol><li style=\"text-align: justify;\">Paragliding in Khajjiar&nbsp;</li><li style=\"text-align: justify;\">Go Boating in Chamera Lake</li><li style=\"text-align: justify;\">Go hiking in Dainkund Peak</li><li style=\"text-align: justify;\">Enjoy the hot spring in Subhash Baoli</li><li style=\"text-align: justify;\">Enjoy strolling around in Garam Sadak</li><li style=\"text-align: justify;\">Go for trekking</li><li style=\"text-align: justify;\">Enjoy shopping in Mall Road</li><li style=\"text-align: justify;\">Explore the Rock Garden</li><li style=\"text-align: justify;\">Skydiving&nbsp;</li><li style=\"text-align: justify;\">Hang gliding</li><li style=\"text-align: justify;\">Horse riding</li><li style=\"text-align: justify;\">Camping</li></ol><p style=\"text-align: justify;\"><b><i>Go for Dalhousie Tour Package for a thrilling and adventurous experience!</i></b></p><p style=\"text-align: justify;\"><b>Delicious food to try out in Dalhousie</b></p><p style=\"text-align: justify;\">Dalhousie is one of the best hill stations in Himachal Pradesh and charms heaps of sightseers from everywhere around the world. Hence, the food in Dalhousie is very evolved and progressed. The hill station has loads of food joints and restaurants that offer various kinds of cooking styles. Particularly one couldn\'t imagine anything better than to eat the most-preferred dishes of Dalhousie of changed cooking styles like Chowmein of Chinese, Momos of Tibetan, Kashmiri cuisines, and Idlis of South India. Choose Dalhousie Tour Package for an enjoyable and exciting experience!</p><p style=\"text-align: justify;\">There are plenty of eating places the vacationers can go for their dinners. Among so many, the most popular ones are Kwality, Moti Mahal, and The Preet Palace. Other than these, you should also go to Subhash Chowk and the Gandhi Chowk of Dalhousie as the restaurants here offers delectable and delicious food. Particularly, Subhash Chowk has many Dhabas which offer authentic Punjabi dishes.&nbsp;</p><p style=\"text-align: justify;\"><b>Best food to eat:&nbsp;&nbsp;</b></p><ol><li style=\"text-align: justify;\">Madra</li><li style=\"text-align: justify;\">Sidu&nbsp;</li><li style=\"text-align: justify;\">Dham&nbsp;</li><li style=\"text-align: justify;\">Aktori&nbsp;</li><li style=\"text-align: justify;\">Momos</li><li style=\"text-align: justify;\">North-Indian dishes</li><li style=\"text-align: justify;\">Chinese dishes</li><li style=\"text-align: justify;\">Italian food</li><li style=\"text-align: justify;\">Tibetan food&nbsp;</li><li style=\"text-align: justify;\">South Indian food</li></ol><p style=\"text-align: justify;\"><b>Best restaurants to eat:</b></p><ol><li style=\"text-align: justify;\">Café Dalhousie</li><li style=\"text-align: justify;\">Napoli Restaurant</li><li style=\"text-align: justify;\">Old-Sher-E-Punjab Dhaba</li><li style=\"text-align: justify;\">Moti Mahal</li><li style=\"text-align: justify;\">The Kettle House</li></ol><p style=\"text-align: justify;\"><b>Best places to enjoy shopping in Dalhousie</b></p><p style=\"text-align: justify;\">An entrancing spot spread across five hills, Dalhousie is a wonderful hill station in Himachal Pradesh, an ideal vacation destination for travelers looking for peacefulness and harmony. With cloudy valleys, snow-covered mountains, lavish vegetation, and British-era buildings, Dalhousie have a ton to bring to the table as far as things you can see and do. Dalhousie Tour Package for an enchanting experience!</p><p style=\"text-align: justify;\">Being a famous location and culturally rich, the quaint town is studded with excellent and well-known shopping markets that allow tourists to carry back distinctive items with them. With a plenitude of shopping places, the experience of shopping in Dalhousie would turn into a paramount part of your outing.</p><p style=\"text-align: justify;\"><b>Top spots for shopping in Dalhousie:&nbsp;&nbsp;</b></p><ol><li style=\"text-align: justify;\">Gandhi Chowk shopping plaza</li><li style=\"text-align: justify;\">Bhuttico&nbsp;</li><li style=\"text-align: justify;\">Tibetan Market</li><li style=\"text-align: justify;\">Tibetan Handicraft Centre</li><li style=\"text-align: justify;\">Himachal Handloom Industry Emporium</li><li style=\"text-align: justify;\">Banikhet Bazar</li><li style=\"text-align: justify;\">DC Khanna Store</li></ol><p style=\"text-align: justify;\"><b>Best time to visit Dalhousie</b><br></p><p style=\"text-align: justify;\">Although Dalhousie is an all-year-round tourist destination, the best time to visit Dalhousie is from March to June. These months are considered to be the best months in terms of weather. The temperature is neither too high nor too low. It is also the perfect season to enjoy adventure activities. And if you want to enjoy the snow you can visit between October to February. Dalhousie Holiday Packages for an interesting vacation!</p><p style=\"text-align: justify;\"><b>How to reach Dalhousie?</b></p><p style=\"text-align: justify;\"><b>By train:</b></p><p style=\"text-align: justify;\">Pathankot railway station is the nearest railway station to Dalhousie which is around 86 km away. From here, you can either take a bus or book a taxi to Dalhousie.</p><p style=\"text-align: justify;\"><b>By road:</b></p><p style=\"text-align: justify;\">Dalhousie is well connected by roads to major cities of India. Both state government buses and private The Himachal Pradesh state transport is well connected to different regions of HP and other states of India. You can board A/c, Non-A/c, and Deluxe buses to Dalhousie.</p><p style=\"text-align: justify;\"><b>By air:</b></p><p style=\"text-align: justify;\">While Dalhousie doesn\'t have its own airport, the nearest airport is Pathankot which is located around 75 km away from the city center. The Pathankot airport is located in Punjab and is well connected is simply New Delhi Indira Gandhi International Airport. It takes around 1 hour 10 minutes to 1 hour 40 minutes to reach Pathankot from New Delhi. Dalhousie Holiday Packages for an exciting and enjoyable experience!</p><p style=\"text-align: justify;\"><b>Pick Dalhousie as your next vacation destination</b></p><p style=\"text-align: justify;\">An exquisite hill station in the Chamba district of Himachal Pradesh, Dalhousie is located at a height of around 1,970 m above the ocean level. It gloats of Scottish and Victorian-style buildings built during the British era, the churches, the tree-concealed paths give you a tranquil feeling.&nbsp;</p><p style=\"text-align: justify;\">The must-visit places in Dalhousie include Chamera Lake, St. John\'sChurch, Dainkund Peak, Ganji Pahari, Subhash Baoli, and Panjpulla. Being a famous holiday destination, Dalhousie is all well-connected via air, road, and rail. Dalhousie Honeymoon Packages for an invigorating experience!</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7478,0,NULL,NULL,'Dalhousie',0,NULL,NULL,10,NULL,NULL,'39_1695464614.png','39_1695464614.png','India','101',NULL,'2021-04-12 15:15:54','2021-04-12 15:15:54',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dalhousie Tour Packages, Dalhousie Holiday Packages, Dalhousie Honeymoon Packages','Dalhousie Tour Packages, Book Dalhousie Holiday Packages - INT','','',NULL,NULL,NULL,0),(40,NULL,NULL,'Indulge in a Himalayan retreat in Kalimpong with iNeedTrip. Enjoy serene landscapes, Buddhist monasteries, and the tranquility of West Bengal.\"',NULL,'<p><strong>NORTH&nbsp;EAST</strong> India is one of those regions in the world which is pristine and largely unexplored. The mind-boggling beauty and the awe-inspiring cultural diversity of the place makes the North East a perfect holiday destination for anyone who is looking for inner peace and closeness with nature. The famed lands of the Seven Sisters are like seven different wonders and, along with Sikkim, they constitute the North-eastern region.&nbsp;<br />\r\nWhether you want to float amidst the clouds or get close to nature and unique wildlife like one-horned rhinoceros, the North East is the perfect destination for you. We, at ineedtrip, have designed our North East Tour Packages keeping your interests in mind and we are confident that a memorable and magical experience awaits you there which you will cherish for the rest of your life.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13403,0,NULL,NULL,'Kalimpong',0,NULL,NULL,2,NULL,NULL,'40_1695472107.png','40_1695472016.png','India','101',NULL,'2021-04-12 18:20:45','2021-04-12 18:20:45',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kalimpong tours, West Bengal beauty, mountain escape','\"Kalimpong\'s Himalayan Retreat with iNeedTrip\"','','',NULL,NULL,NULL,0),(41,NULL,NULL,'\"Discover the Sikkimese beauty of Gangtok with iNeedTrip. Enjoy panoramic views, Buddhist monasteries, and serene Himalayan vibes.\"',NULL,'<p></p><div style=\"text-align: justify;\"><div><div>North East India is one of those regions in the world which is pristine and largely unexplored. The mind-boggling beauty and the awe-inspiring cultural diversity of the place makes the North East a perfect holiday destination for anyone who is looking for inner peace and closeness with nature. The famed lands of the Seven Sisters are like seven different wonders and, along with Sikkim, they constitute the North-eastern region. Whether you want to float amidst the clouds or get close to nature and unique wildlife like one-horned rhinoceros, the North East is the perfect destination for you. We, at ineedtrip, have designed our North East Tour Packages keeping your interests in mind and we are confident that a memorable and magical experience awaits you there which you will cherish for the rest of your life.</div><div><br></div></div><div>The city of Gangtok overflows with remarkable miracles. From great snow-covered mountains to captivating rich green woods, the best of nature spreads in Gangtok. If you are on a getaway to Gangtok, trust us, a little while is not sufficient! There\'s a lot to be investigated, thus a lot to be felt in this lost kingdom of Gangtok.<br></div><div><br></div><div>The city is settled in the midst of the Himalayas in North East India. The distinctive rich culture imbued in each corner here makes certain to assist you with tracking down that inward harmony. If you feel free to trail through the ways of this undiscovered realm. Loosen up along the banks of immaculate lakes and waterways or travel down its history in the lone religious communities, each spot here will leave you a secret stash of recollections. Gangtok Holiday Package will surely captivate you!</div><div><br></div><div>Found in the center of the Himalayan range, Gangtok is quite possibly one of the most pleasant places to visit in India. It presents the ideal picture of India\'s incredible and fluctuated geography. This includes most parts of Sikkim. In spite of being the most un-crowded state in India and the second smallest state, Sikkim is a magnificent place of interest on account of tourist spots like Gangtok with their incredible area and astonishing geological landscape.</div><div><br></div><div><b>For newly married couples, go for Gangtok Honeymoon Package for the best romantic experience!</b></div><div><br></div><div><b>Best places to visit in Gangtok</b></div><div><br></div><div>A delightful and postcard truly flawless scenic city roosted in the staggering Eastern Himalayas – Gangtok has been baiting travelers for a long time and its magnificence won\'t ever stop into nothingness. It is one of the most gorgeous hill stations to visit in India. Its beautiful scenes, various tranquil monasteries, and temples, happy lakes and streams, picturesque hiking trails, and grand and flawless Himalayan Mountains make Gangtok a great vacation spot. Warm accommodation and individuals, rich culture and legacy, intriguing and bright markets, and astonishing fests make Gangtok overwhelming for travelers. Gangtok Tour Package is surely what you need to get a break from your chaotic lifestyle.</div><div><br></div><div>Top places to visit in Gangtok:</div><div><br></div><div>Do Drul Chorten Stupa, Hanuman Tok, Rumtek Monastery, Seven Sisters waterfall, White Hall Memorial, Saramsa Garden, Nathula Pass, Namchi, Lal Bazaar, MG Road, Magnan, Enchey Monastery, Mt Kanchenjunga, Kupup Lake, Ganesh Tok, Tashi Viewpoint, Yumthang Valley, Banjhakri Waterfalls, Harbhajan Singh Memorial Temple, and Himalayan Zoological Park</div><div><br></div><div>Things to do in Gangtok</div><div><br></div><div>Who doesn’t love getting up early in the morning and admiring beautiful hills and valleys while tasting hot coffee? Once a year we wish to escape the hustle clamor of city life and unwind at a hill station, lounging in nature and partaking in its sheer excellence. What\'s more, our most loved must be Gangtok! This spot has something or the other for everyone. Opt for Gangtok Package for a hassle-free vacation!</div><div><br></div><div>So what are the things to do in Gangtok? Trust us; you have endless choices here! From touring to thrilling activities, Gangtok has many things available for you. So, with practically no further ado, here\'s the rundown of Gangtok Sikkim attractions. Have a good time!</div><div><br></div><div>1.&nbsp; &nbsp; &nbsp; &nbsp;Trekking at the Nathula Pass</div><div><br></div><div>2.&nbsp; &nbsp; &nbsp; &nbsp;Go for a Cable Ride</div><div><br></div><div>3.&nbsp; &nbsp; &nbsp; &nbsp;Take the exciting Yak Safari</div><div><br></div><div>4.&nbsp; &nbsp; &nbsp; &nbsp;Mountain Biking</div><div><br></div><div>5.&nbsp; &nbsp; &nbsp; &nbsp;River Rafting</div><div><br></div><div>6.&nbsp; &nbsp; &nbsp; &nbsp;Paragliding,</div><div><br></div><div>7.&nbsp; &nbsp; &nbsp; &nbsp;Try local cuisine in M.G. Marg</div><div><br></div><div>Where to go for shopping in Gangtok?</div><div><br></div><div>Gangtok is without a doubt a shopper\'s paradise! While being here, the sightseers can reclaim a lot of entrancing trinkets from the local shops. This destination isn\'t just well-known for its tranquil cloisters and the rich green valleys, but it is otherwise called the best shopping place for the tourist. Choose Holiday Package Gangtok for an exciting vacation!</div><div><br></div><div>The assortment of best shopping places in Gangtok exhibit the general culture and customs of this excellent spot, they offer plenty of stuff, and you can purchase whatever you feel like from these markets. Walk around the market streets in Gangtok, filling in as a heaven for the shopaholics.</div><div><br></div><div>Top places to shop in Gangtok:</div><div><br></div><div>1.&nbsp; &nbsp; &nbsp; &nbsp;MG Road</div><div><br></div><div>2.&nbsp; &nbsp; &nbsp; &nbsp;Lal Bazaar</div><div><br></div><div>3.&nbsp; &nbsp; &nbsp; &nbsp;New market</div><div><br></div><div>4.&nbsp; &nbsp; &nbsp; &nbsp;Old Market</div><div><br></div><div>Cuisines to try out in Gangtok</div><div><br></div><div>Sikkim is an excellent and peaceful spot having incredible dishes. The food is embraced by Tibet and Nepal. Sikkim\'s magnificent cooking has a blend of well-being and taste. From thukpa to momos, each dish is basic and loaded with flavors. Sikkim serves different non-veggie lover food where a great many people eat rice, soup, dumplings, stew, and meats around there. Sikkim is named an Environmental State, where the local individuals commonly favor organic fruit, vegetables, eggs, and local farmers\' meat. Gangtok Travel Package will take you on a journey of peace and simplicity!</div><div><br></div><div>Accordingly, you will find the local dishes and the various flavors that would somehow or another not be used in India, settling on a food choice a lovely encounter. To benefit as much as possible from the numerous culinary pleasures in Sikkim, you should visit the local cafés, restaurants, and roadside shacks. When you\'re in Gangtok, it is basically impossible to stow away from the hot, salty, spicy and sour, the cuisine of Sikkim. Truly, rather than restricting your choices, you should try everything without wariness about the equivalent. Gangtok Holiday Package will surely let you explore the best of Sikkim!</div><div><br></div><div>Top dishes to relish:</div><div><br></div><div>Sel Roti, Thenthuk, Thukpa, Phagshapa, Chhurpi Soup, Sha Phaley, Momos, Gundruk, Sinki, Kinema, Chambray, Sishnu Soup, Chaang, Chhurpi Ningro Curry, Masauyra Curry, Kodo Ko Roti, Sikkim Tea, Shimi Ko Achar, Jaanr, Mesu</div><div><br></div><div>How to reach Gangtok?</div><div><br></div><div>By Railways:</div><div><br></div><div>Are you planning to travel by train? New Jalpaiguri is the nearest rail route station to Gangtok. New Jalpaiguri is around 117 km from Gangtok. You can undoubtedly take a train till New Jalpaiguri, and on getting down, you can take a common jeep or hire a private taxi to arrive at Gangtok. New Jalpaiguri railway junction is well-connected with various major cities of India.</div><div><br></div><div>By Airways:</div><div><br></div><div>If you wish to fly to arrive at Gangtok, then, the closest airport will be Bagdogra, West Bengal. It is around 124 km from Gangtok and is an important air terminal that has continuous flights operating to and from the most popular cities across India. On coming to the airport, one can enlist a taxi or a private vehicle to arrive at Gangtok, which will take around 4 - 5 hours to reach. Opt for Gangtok Tour Package for a hassle-free journey!</div><div><br></div><div>By Roadways:</div><div><br></div><div>Siliguri is the place from where one can take public transport, shared or a private taxi to arrive at Gangtok. If you plan to take the roads, the distance between Siliguri and Gangtok is around 114 km.</div><div><br></div><div>Best time to visit Gangtok</div><div><br></div><div>During its peak season, that is from September to June, Gangtok attracts many sightseers, Still, if you ask the best time to visit Gangtok then the propping pre-winter is the long periods of September and October and from Spring to summer that is from March to June is the best time. Well, one who is arranging an insane and courageous trip to Gangtok during the monsoon should know about avalanches, which is frequently pulverizing. From mid-June to mid-September, the Gangtok environment is however spiritualist as it might be risky. Choose your Gangtok Honeymoon Package during the best season to enjoy a fun &amp; cozy vacation!</div><div><br></div><div>Gangtok Holiday Packages for an amazing vacation</div><div><br></div><div>Gangtok is one of the exceptional hill stations in India that draws Buddhist pilgrims as well as vacationers and honeymooners from a far-off region of the planet. It is frequently visited for its cultural combination and tradition just as it is a hideaway for honeymoon couples and a powerful visit for travelers and globe-trotters. Other than its rich verdure and uncommon types of widely varied vegetation, Gangtok offers a portion of the world\'s high elevation quiet lakes just as in transit this hill station one can arrive at the strong statures of Nathula Pass, which is named as the Silk Route among India and China.&nbsp;</div><div><br></div></div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10106,0,NULL,NULL,'Gangtok',0,NULL,NULL,10,NULL,NULL,'41_1695467201.png','41_1695467201.png','India','101',NULL,'2021-04-12 18:20:45','2021-04-12 18:20:45',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gangtok tours, Sikkim beauty, mountain retreat',' \"Gangtok\'s Sikkimese Beauty with iNeedTrip\"','','',NULL,NULL,NULL,0),(42,NULL,NULL,'Darjeeling Packages - Book your Darjeeling tour package at the best price with iNeedTrip. Click to book customized cheap Darjeeling holiday packages & get exciting deals now.',NULL,'<p><strong>NORTH&nbsp;EAST</strong>&nbsp;India is one of those regions in the world which is pristine and largely unexplored. The mind-boggling beauty and the awe-inspiring cultural diversity of the place makes the North East a perfect holiday destination for anyone who is looking for inner peace and closeness with nature. The famed lands of the Seven Sisters are like seven different wonders and, along with Sikkim, they constitute the North-eastern region.&nbsp;<br />\r\nWhether you want to float amidst the clouds or get close to nature and unique wildlife like one-horned rhinoceros, the North East is the perfect destination for you. We, at ineedtrip, have designed our North East Tour Packages keeping your interests in mind and we are confident that a memorable and magical experience awaits you there which you will cherish for the rest of your life.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7556,0,NULL,NULL,'Darjeeling',0,NULL,NULL,2,NULL,NULL,'42_1695464829.png','42_1695464829.png','India','101',NULL,'2021-04-12 18:20:45','2021-04-12 18:20:45',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Darjeeling Tour Packages, Darjeeling Holiday Packages, Darjeeling Honeymoon Packages','Darjeeling Tour Packages, Book Darjeeling Holiday Packages - INT','','',NULL,NULL,NULL,0),(43,NULL,NULL,'\"Experience the beauty of Naivasha by the lake in Kenya. Discover freshwater wonders, wildlife encounters, and the tranquility of the Great Rift Valley.\"',NULL,'<p>Naivasha is a picturesque town located in the Great Rift Valley of Kenya, known for its stunning landscapes, abundant wildlife, and serene freshwater lake. Situated just 90 kilometers (56 miles) northwest of Nairobi, the country\'s capital, Naivasha offers a tranquil escape from the bustling city life. Here\'s a glimpse into what makes Naivasha a remarkable destination:</p><p>1. Lake Naivasha:</p><p>The town is named after Lake Naivasha, one of the Great Rift Valley\'s freshwater lakes. The lake is renowned for its exceptional birdlife, including African fish eagles and pelicans, making it a paradise for birdwatchers.</p><p>Visitors can take boat tours on the lake, offering a chance to spot hippos and even giraffes along the shoreline.</p><p>2. Crescent Island:</p><p>This unique wildlife sanctuary in Lake Naivasha is a must-visit. It\'s one of the few places in Africa where you can walk among wild animals. Zebras, giraffes, wildebeests, and various antelope species roam freely here.</p><p>3. Hiking and Adventure:</p><p>The nearby Hell\'s Gate National Park offers excellent hiking and rock climbing opportunities, with stunning geothermal scenery. It\'s also famous for being the inspiration for Disney\'s \"The Lion King.\"</p><p>4. Geothermal Wonders:</p><p>The region is known for its geothermal activity, and you can visit hot springs like Olkaria Geothermal Spa to relax in the therapeutic warm waters.</p><p>5. Flower Farms:</p><p>Naivasha is a hub for flower farming, particularly roses. Many flower farms in the area offer guided tours where you can learn about the flower industry and even pick your own bouquet.</p><p>6. Great Rift Valley Views:</p><p>The town offers spectacular views of the Great Rift Valley, a geological wonder stretching across East Africa. The scenic viewpoints along the escarpment are ideal for capturing breathtaking sunsets.</p><p>7. Unique Accommodations:</p><p>Naivasha offers a range of accommodation options, from luxury lodges and resorts to budget-friendly campsites. Some lodges and campsites provide a rustic and immersive experience in nature.</p><p>8. Crescent Island Game Sanctuary:</p><p>In addition to Crescent Island, the area is home to several private wildlife sanctuaries and conservancies, where you can embark on guided safaris to see a variety of animals.</p><p>9. Boating and Watersports:</p><p>Lake Naivasha is a popular spot for boating and watersports. You can rent boats, go fishing, or try your hand at kayaking on the serene waters.</p><p>10. Floral Festivals:</p><p>- Naivasha hosts the Naivasha Horticultural Fair, an annual event showcasing the region\'s horticultural industry, attracting visitors from around the world.</p><p>Naivasha\'s natural beauty, abundant wildlife, and proximity to Nairobi make it a sought-after destination for both Kenyan residents and international travelers. Whether you\'re seeking outdoor adventures, wildlife encounters, or simply a tranquil lakeside retreat, Naivasha offers a diverse range of experiences in the heart of Kenya\'s Great Rift Valley.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36151,0,NULL,NULL,'Naivasha',0,NULL,NULL,NULL,NULL,NULL,'43_1694772583.png','43_1694772583.png','Kenya','113',NULL,'2021-04-13 16:38:57','2021-04-13 16:38:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Naivasha Kenya\r\nNaivasha lake beauty\r\nKenyan wildlife encounters\r\nGreat Rift Valley tranquility\r\nNaivasha attractions','\"Naivasha, Kenya: Beauty by the Lake\"','','',NULL,NULL,NULL,0),(44,NULL,NULL,'\"Discover Nairobi, Kenya, the gateway to African safaris. Explore national parks, wildlife conservation, and the vibrant heart of East Africa.\"',NULL,'<p>Nairobi, the capital city of Kenya, is a dynamic and bustling metropolis known for its unique blend of urban life, natural beauty, and cultural diversity. Located in the eastern part of Africa, Nairobi serves as Kenya\'s economic, political, and cultural center. Here is an exploration of Nairobi\'s key aspects:</p><p>1. Economic Hub:</p><p>Nairobi is the economic engine of Kenya and the East African region. It hosts the headquarters of numerous multinational corporations, financial institutions, and international organizations.</p><p>2. Cultural Diversity:</p><p>The city is a melting pot of cultures and ethnicities, with a rich mix of Kenyan tribes and expatriate communities from around the world. This diversity is reflected in the city\'s vibrant arts, music, and culinary scenes.</p><p>3. Wildlife Conservation:</p><p>Nairobi is unique in that it has a national park, Nairobi National Park, right on its doorstep. This park allows visitors to see a wide variety of African wildlife, including lions, giraffes, zebras, and rhinoceroses, with the city skyline as a backdrop.</p><p>4. Green Spaces:</p><p>In addition to the national park, Nairobi boasts numerous green spaces and lush gardens, such as Karura Forest and the Nairobi Arboretum, offering residents and visitors a respite from the urban hustle and bustle.</p><p>5. Cultural Institutions:</p><p>Nairobi is home to several cultural institutions, including the Nairobi National Museum and the Bomas of Kenya, which showcase the country\'s rich heritage through art, artifacts, and traditional performances.</p><p>6. Maasai Markets:</p><p>Visitors can explore the colorful Maasai markets, where they can purchase traditional Maasai beadwork, clothing, and other crafts, providing a unique shopping experience.</p><p>7. Thriving Arts Scene:</p><p>The city\'s arts scene is vibrant, with numerous galleries and theaters. The GoDown Arts Centre and Alliance Française de Nairobi host various cultural events and exhibitions.</p><p>8. Urban Landmarks:</p><p>Nairobi boasts modern landmarks such as the Kenyatta International Convention Centre (KICC) and the Nairobi Railway Museum, which showcase the city\'s blend of modernity and history.</p><p>9. Tech Hub:</p><p>Nairobi has gained prominence as a tech hub in Africa, with a growing number of tech startups and innovations in fields such as fintech and mobile technology.</p><p>10. Food Culture:</p><p>- Nairobi offers a diverse culinary scene, from street food stalls serving Nyama Choma (barbecued meat) to upscale restaurants offering international cuisine. Local dishes like Ugali and Sukuma Wiki are must-tries.</p><p>11. Education:</p><p>- Nairobi is home to several prestigious universities, including the University of Nairobi and Strathmore University, attracting students from across Africa and beyond.</p><p>12. Social Initiatives:</p><p>- The city is also known for its social initiatives, including slum tourism that highlights community-driven projects and the efforts to improve living conditions in Nairobi\'s informal settlements.</p><p>Nairobi is a city of contrasts and opportunities, where you can witness the coexistence of modern skyscrapers and traditional markets, and where the beauty of African wildlife meets the energy of a thriving urban center. Whether you\'re interested in exploring Kenya\'s cultural heritage, engaging in wildlife conservation efforts, or experiencing the city\'s growing tech industry, Nairobi offers a captivating experience that reflects the vibrant spirit of East Africa.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18894,0,NULL,NULL,'Nairobi',0,NULL,NULL,NULL,NULL,NULL,'44_1694772294.png','44_1694772294.png','Kenya','113',NULL,'2021-04-13 16:38:57','2021-04-13 16:38:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Nairobi Kenya\r\nAfrican safari hub\r\nNairobi national parks\r\nKenyan wildlife conservation\r\nEast African vibrancy','\"Nairobi, Kenya: The African Safari Hub\"','','',NULL,NULL,NULL,0),(45,NULL,NULL,'\"Live your safari dreams in Masai Mara, Kenya. Witness the Great Migration, encounter wildlife, and experience the magic of the African savannah.\"',NULL,'<p>The Maasai Mara, often referred to simply as the Mara, is one of Africa\'s most renowned and iconic wildlife reserves. Located in southwestern Kenya, this vast wilderness area is part of the larger Mara-Serengeti ecosystem, which stretches into Tanzania. The Maasai Mara is celebrated for its incredible biodiversity, dramatic landscapes, and the annual wildebeest migration, making it a premier destination for wildlife enthusiasts and photographers from around the world. Here\'s an overview of what makes the Maasai Mara so captivating:</p><p>Geography and Location:</p><p>The Maasai Mara covers approximately 1,510 square kilometers (583 square miles) and is situated in the Great Rift Valley of Kenya.</p><p>It shares a border with Tanzania\'s Serengeti National Park to the south, creating a contiguous ecosystem where wildlife moves freely across national boundaries.</p><p>Wildlife and Biodiversity:</p><p>The Maasai Mara is home to an extraordinary array of wildlife, including the \"Big Five\" (lion, leopard, elephant, buffalo, and rhinoceros), as well as cheetahs, zebras, giraffes, hippos, crocodiles, and numerous antelope species.</p><p>The reserve is famous for its high concentration of predators, making it one of the best places in Africa to witness dramatic wildlife interactions.</p><p>Great Wildebeest Migration:</p><p>The Maasai Mara is a crucial part of the annual Great Wildebeest Migration, one of the most remarkable natural spectacles on Earth. This migration involves millions of wildebeests, zebras, and gazelles moving in search of fresh grazing and water.</p><p>The Mara River, which runs through the reserve, is the scene of dramatic river crossings during the migration, as herds brave crocodile-infested waters.</p><p>Safari Experiences:</p><p>Visitors to the Maasai Mara can enjoy thrilling game drives, guided by experienced rangers and trackers, to observe wildlife in their natural habitats.</p><p>Hot air balloon safaris provide a unique and breathtaking perspective of the landscape and wildlife from above.</p><p>Conservation Efforts:</p><p>The Maasai Mara plays a crucial role in wildlife conservation, with several initiatives aimed at protecting its unique ecosystems and wildlife.</p><p>Anti-poaching efforts and community-based conservation projects involving the Maasai people help preserve this natural wonder.</p><p>Cultural Experience:</p><p>The Maasai Mara is located in Maasai territory, and visitors have the opportunity to engage with the Maasai people, known for their distinctive culture, clothing, and traditional way of life.</p><p>Many lodges and camps in the area offer cultural visits to Maasai villages, providing insight into their customs and traditions.</p><p>Accommodations:</p><p>The Maasai Mara offers a range of accommodations, from luxurious lodges and tented camps to more budget-friendly options. Many of these lodgings are situated in prime wildlife viewing areas.</p><p>Accessibility:</p><p>The Maasai Mara is accessible by road from Nairobi, Kenya\'s capital, and its Jomo Kenyatta International Airport. Domestic flights and airstrips within the reserve provide quick access for those looking to save time.</p><p>In summary, the Maasai Mara is a wildlife enthusiast\'s dream come true, offering an unrivaled opportunity to witness Africa\'s majestic wildlife in their natural environment. Its combination of incredible biodiversity, awe-inspiring landscapes, and the spectacle of the Great Wildebeest Migration makes it a bucket-list destination for travelers seeking an unforgettable safari experience.</p><p><br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,17007,0,NULL,NULL,'Masai Mara',0,NULL,NULL,NULL,NULL,NULL,'45_1694691477.png','45_1694691477.png','Kenya','113',NULL,'2021-04-13 16:38:57','2021-04-13 16:38:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Masai Mara Kenya\r\nGreat Migration Masai Mara\r\nKenyan wildlife safaris\r\nAfrican savannah experiences\r\nMasai Mara magic','\"Masai Mara, Kenya: Where Safari Dreams Come True\"','','',NULL,NULL,NULL,0),(46,NULL,NULL,'\"Experience secluded beaches in South Goa with iNeedTrip. Enjoy pristine shores, water sports, and a tranquil escape on India\'s southern coast.\"',NULL,'<p>South Goa is a picturesque and laid-back region located in the Indian state of Goa, known for its pristine beaches, lush landscapes, and a more relaxed atmosphere compared to its bustling counterpart, North Goa. This part of Goa offers a perfect blend of natural beauty, cultural experiences, and leisure activities, making it a popular destination for travelers seeking a tranquil escape. Here are some key highlights of South Goa:</p><p>1. Stunning Beaches:</p><p>South Goa is famous for its unspoiled and less crowded beaches. Some of the notable ones include Palolem Beach, Agonda Beach, Colva Beach, Benaulim Beach, and Varca Beach. These sandy stretches offer a peaceful ambiance, perfect for sunbathing, swimming, and water sports.</p><p>2. Palolem Beach:</p><p>Palolem Beach, with its crescent-shaped shoreline, is one of the most iconic beaches in South Goa. It\'s known for its palm-fringed shores and vibrant nightlife, with beachside shacks offering delectable seafood and live music.</p><p>3. Agonda Beach:</p><p>Agonda Beach is another pristine stretch of coastline known for its serene and tranquil atmosphere. It\'s ideal for long walks and relaxation, away from the hustle and bustle.</p><p>4. Wildlife Sanctuaries:</p><p>South Goa is home to the Cotigao Wildlife Sanctuary and the Bhagwan Mahavir Wildlife Sanctuary. These protected areas offer opportunities for birdwatching and wildlife spotting, including various species of birds, butterflies, and small mammals.</p><p>5. Water Sports:</p><p>While South Goa is not as focused on water sports as North Goa, you can still find options for activities like parasailing, jet-skiing, and boat rides at some of the beaches and water sports operators.</p><p>6. Cultural Attractions:</p><p>The region has several historical and cultural attractions, including the Shri Manguesh Temple, the Church of Holy Spirit, and the Cabo de Rama Fort, offering insights into Goa\'s rich history and diverse heritage.</p><p>7. Spice Plantations:</p><p>South Goa is known for its lush spice plantations. Visitors can take guided tours to explore these plantations, learn about different spices, and enjoy traditional Goan meals made with fresh ingredients.</p><p>8. Offbeat and Secluded Spots:</p><p>South Goa is dotted with hidden gems, including secluded beaches, quiet fishing villages, and peaceful lakes, providing opportunities for offbeat exploration and relaxation.</p><p>9. Quiet Retreats:</p><p>The region offers a range of accommodation options, from luxury resorts to boutique hotels and beachfront cottages, providing travelers with a tranquil and comfortable stay.</p><p>10. Natural Beauty:</p><p>- South Goa\'s landscape is marked by lush greenery, coconut groves, and idyllic paddy fields. It\'s a great place for nature lovers and those seeking a break from the city\'s hustle and bustle.</p><p>11. Fairs and Festivals:</p><p>- South Goa hosts various fairs and festivals throughout the year, celebrating Goa\'s rich culture and traditions. The Carnival of Goa, Shigmo Festival, and Sao Joao Festival are some of the vibrant celebrations.</p><p>12. Accessibility:</p><p>- Dabolim Airport, the only airport in Goa, is well-connected to major Indian cities and is the gateway to South Goa. The region is also accessible by road from other parts of Goa and neighboring states.</p><p>In summary, South Goa offers a serene and tranquil getaway for travelers seeking natural beauty, cultural experiences, and relaxation. Whether you\'re lounging on the pristine beaches, exploring historical sites, or indulging in delicious Goan cuisine, South Goa provides a peaceful and idyllic escape in the heart of India\'s beach paradise.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,37010,0,NULL,NULL,'South Goa',0,NULL,NULL,NULL,NULL,NULL,'46_1695727145.png','46_1695727145.png','India','101',NULL,'2021-04-13 17:27:07','2021-04-13 17:27:07',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'South Goa vacations, beach getaways, coastal tranquility','\"South Goa\'s Secluded Beaches with iNeedTrip\"','','',NULL,NULL,NULL,0),(47,NULL,NULL,'\"Experience beach bliss in North Goa with iNeedTrip. Enjoy sandy shores, water sports, and the vibrant nightlife of this coastal gem.\"',NULL,'<p>North Goa is a popular and vibrant region located in the Indian state of Goa. It is renowned for its stunning beaches, vibrant nightlife, rich cultural heritage, and a wide range of recreational activities. North Goa is a favored destination for tourists seeking a mix of relaxation, adventure, and cultural exploration. Here are some key highlights of North Goa:</p><p>1. Beaches:</p><p>North Goa is famous for its beautiful beaches, each offering a unique atmosphere. Some of the most popular beaches in the region include Baga Beach, Calangute Beach, Anjuna Beach, and Vagator Beach.</p><p>These beaches are known for their golden sands, beach shacks serving delicious seafood, water sports activities, and vibrant beach parties.</p><p>2. Water Sports:</p><p>North Goa is a hub for water sports enthusiasts. Visitors can indulge in activities such as parasailing, jet-skiing, windsurfing, and banana boat rides at various beaches.</p><p>3. Nightlife:</p><p>The nightlife in North Goa is legendary. The region is dotted with beachfront clubs, shacks, bars, and nightclubs that come alive after sunset. Popular nightlife spots include Tito\'s Lane in Baga and the beachfront clubs of Anjuna.</p><p>4. Flea Markets:</p><p>The Anjuna Flea Market and the Saturday Night Market in Arpora are famous shopping destinations in North Goa. These markets offer a wide range of products, from clothing and jewelry to handicrafts and souvenirs.</p><p>5. Historic Sites:</p><p>North Goa also boasts a rich cultural heritage. Visitors can explore historic sites like the Aguada Fort, Chapora Fort, and the Reis Magos Fort, which offer panoramic views of the Arabian Sea and surrounding areas.</p><p>6. Temples and Churches:</p><p>The region is home to several ancient temples and churches, including the Shri Mangeshi Temple, Shri Shantadurga Temple, and the Basilica of Bom Jesus, which is a UNESCO World Heritage Site.</p><p>7. Spice Plantations:</p><p>North Goa offers the opportunity to visit spice plantations, where tourists can learn about the cultivation of spices like cardamom, pepper, and vanilla. These tours often include spice tastings and traditional Goan meals.</p><p>8. Wildlife Sanctuaries:</p><p>Bondla Wildlife Sanctuary and Mhadei Wildlife Sanctuary are two protected areas in North Goa where visitors can spot a variety of flora and fauna, including leopards, deer, and various bird species.</p><p>9. Festivals and Events:</p><p>North Goa hosts various cultural and music festivals, including the Sunburn Festival, which attracts international artists and music enthusiasts from around the world.</p><p>10. Beachfront Dining:</p><p>- Beachfront shacks and restaurants offer a delightful culinary experience. Visitors can savor fresh seafood, traditional Goan cuisine, and international dishes while enjoying sea views.</p><p>11. Waterfalls:</p><p>- The Dudhsagar Waterfalls, one of India\'s tallest waterfalls, are located in the eastern part of North Goa. They are a popular trekking destination and a scenic spot for nature lovers.</p><p>12. Accommodation:</p><p>- North Goa provides a wide range of accommodation options, from budget guesthouses and backpacker hostels to luxury resorts and beachfront villas.</p><p>In summary, North Goa is a dynamic and diverse region that offers something for every type of traveler. Whether you\'re looking for relaxation on the beach, water adventures, cultural exploration, or a lively nightlife scene, North Goa has it all, making it a sought-after destination for both domestic and international tourists.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,37009,0,NULL,NULL,'North Goa',0,NULL,NULL,NULL,NULL,NULL,'47_1695642665.png','47_1695642665.png','India','101',NULL,'2021-04-13 17:27:07','2021-04-13 17:27:07',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'North Goa vacations, beach destinations, party capital','\"North Goa\'s Beach Bliss with iNeedTrip\"','','',NULL,NULL,NULL,0),(48,NULL,NULL,'\"Experience beach paradise in Goa with iNeedTrip. Enjoy sandy shores, water sports, and vibrant nightlife in this coastal gem.\"',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\">Goa, a tiny paradise on the western coast of India, is a destination that needs no introduction. Renowned for its stunning beaches, vibrant nightlife, and rich cultural heritage, Goa is a magnet for travelers seeking a perfect blend of relaxation and adventure. In this blog, we\'ll embark on a virtual journey to explore the diverse attractions and experiences that make Goa an alluring destination.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Golden Beaches:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa boasts over 100 kilometers of coastline, adorned with pristine beaches. Whether you\'re into water sports, sunbathing, or simply taking a leisurely stroll along the shore, Goa\'s beaches like Baga, Calangute, and Palolem have something to offer every beach lover.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Water Sports:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Adventurous souls can indulge in an array of water sports, including parasailing, jet skiing, windsurfing, and scuba diving. The Arabian Sea provides the perfect playground for aquatic enthusiasts.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Historical Forts:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Explore the historic forts of Goa, such as Aguada Fort, Chapora Fort, and Cabo de Rama. These structures offer panoramic views of the coastline and provide a glimpse into Goa\'s colonial past.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Cultural Heritage:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa\'s rich cultural heritage is reflected in its churches and temples. The Basilica of Bom Jesus, Se Cathedral, and Shri Mangeshi Temple are architectural gems that showcase the region\'s spiritual diversity.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Nightlife:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa comes alive after the sun sets. The state is famous for its vibrant nightlife, with beach parties, clubs, and shacks hosting live music and DJs. Places like Tito\'s and Mambo\'s in Baga are iconic nightlife destinations.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Cuisine:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Savor Goan cuisine, which is a fusion of Indian and Portuguese flavors. Try dishes like seafood vindaloo, xacuti, and Bebinca, a delicious Goan dessert. Local beach shacks offer fresh seafood delights.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Wildlife Sanctuaries:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Explore Goa\'s wildlife sanctuaries like Bhagwan Mahavir Wildlife Sanctuary and Salim Ali Bird Sanctuary, home to diverse flora and fauna. Birdwatchers and nature lovers will be delighted by the biodiversity.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Yoga and Wellness Retreats:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa is also a hub for yoga and wellness retreats. Numerous centers and resorts offer yoga, meditation, and Ayurvedic treatments for rejuvenation and relaxation.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Flea Markets and Shopping:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Don\'t miss the vibrant flea markets and local markets in places like Anjuna and Mapusa. You can shop for souvenirs, clothing, jewelry, and handicrafts.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Cultural Festivals:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa hosts various cultural festivals throughout the year. The Goa Carnival, Shigmo, and Christmas celebrations are marked by colorful processions, music, and dance.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Conclusion:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Goa, with its breathtaking beaches, vibrant culture, and electrifying nightlife, is a destination that caters to a wide range of interests. Whether you\'re sunbathing on the golden sands, dancing the night away at a beach club, or exploring the state\'s rich cultural heritage, Goa offers a vibrant and dynamic experience. It\'s a place where relaxation and adventure go hand in hand, and where the beauty of the Arabian Sea meets the warmth of the Goan people. For those seeking a tropical paradise and a taste of India\'s coastal charm, Goa stands as an irresistible destination that leaves travelers with memories of sun, sand, and sea.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10576,0,NULL,NULL,'Goa',0,NULL,NULL,12,NULL,NULL,'48_1695468092.png','48_1695468092.png','India','101',NULL,'2021-04-13 17:27:07','2021-04-13 17:27:07',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Goa vacations, beach destinations, party capital','\"Goa\'s Beach Paradise with iNeedTrip\"','','',NULL,NULL,NULL,0),(49,NULL,NULL,'\"Discover Mawlynnong, Asia\'s cleanest village, with iNeedTrip. Explore pristine landscapes, living root bridges, and sustainable living in Meghalaya.\"',NULL,'<p>Mawlynnong, located in the Indian state of Meghalaya, is often referred to as \"Asia\'s Cleanest Village.\" Nestled in the East Khasi Hills, near the border of Bangladesh, this charming village has gained international recognition for its pristine environment, lush green landscapes, and a community-driven effort to maintain cleanliness and eco-friendliness. Here are some key highlights of Mawlynnong:</p><p>1. Cleanliness and Environmental Consciousness:</p><p>Mawlynnong\'s claim to fame as the cleanest village in Asia is not just a title; it\'s a way of life for the villagers. They are deeply committed to cleanliness and have taken collective responsibility for maintaining their surroundings.</p><p>The village is a shining example of sustainable living, with initiatives such as waste segregation, strict littering policies, and an eco-friendly public restroom system that uses bamboo and biodegradable waste.</p><p>2. Living Root Bridges:</p><p>The nearby region of Cherrapunji and Mawlynnong is famous for its living root bridges, which are natural wonders created by training the roots of the Ficus elastica tree to form sturdy bridges over rivers and streams. The village is a gateway to explore these unique bridges.</p><p>3. Natural Beauty:</p><p>Mawlynnong is surrounded by lush greenery and dense subtropical forests. The scenery is nothing short of breathtaking, with rolling hills, waterfalls, and emerald-green valleys.</p><p>The Balancing Rock, a large boulder perched on a smaller rock, is a natural curiosity that attracts tourists.</p><p>4. Sky View Platform:</p><p>Mawlynnong offers a stunning bird\'s-eye view of the village and the Bangladesh plains from a locally constructed Sky View Platform. It\'s a great place to admire the village\'s picturesque landscape.</p><p>5. Culture and Traditions:</p><p>The Khasi culture in Mawlynnong is an integral part of the village\'s identity. Visitors can learn about the indigenous Khasi traditions, lifestyle, and cuisine.</p><p>The village is predominantly Christian, and visitors may come across beautiful churches that are an integral part of the community.</p><p>6. Accessibility:</p><p>Mawlynnong is located approximately 90 kilometers (56 miles) from Shillong, the capital of Meghalaya. The journey by road offers stunning views of the Meghalayan countryside.</p><p>The nearest major airport is Shillong Airport, while the nearest railway station is in Guwahati, Assam.</p><p>7. Responsible Tourism:</p><p>Mawlynnong has become a model for responsible and sustainable tourism. Visitors are encouraged to respect local customs and traditions, follow eco-friendly practices, and support the local economy by staying in homestays and purchasing locally made products.</p><p>8. Riwai Village:</p><p>Nearby Riwai Village is famous for its living root bridges and offers an excellent trekking experience. Visitors can explore these natural wonders and enjoy the tranquility of the surrounding forests.</p><p>In summary, Mawlynnong is a small village that showcases the remarkable impact of community-driven efforts in maintaining cleanliness and preserving the environment. It offers travelers an opportunity to connect with nature, experience Khasi culture, and witness the beauty of living root bridges. Visiting Mawlynnong is not just a journey to a remote village but an immersion in a sustainable way of life that serves as an inspiring example for environmentally conscious travelers.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,37069,0,NULL,NULL,'Mawlynnong',0,NULL,NULL,NULL,NULL,NULL,'49_1695639675.png','49_1695639675.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mawlynnong tours, Meghalaya cleanest village, sustainable living','\"Mawlynnong\'s Asia\'s Cleanest Village with iNeedTrip\"','','',NULL,NULL,NULL,0),(50,NULL,NULL,'Dawki Packages - Book your Dawki tour package at the best price with iNeedTrip. Click to book customized cheap Dawki holiday packages & get exciting deals now.',NULL,'<p>Dawki, a small town in the northeastern state of Meghalaya, India, is a hidden gem renowned for its breathtakingly clear river waters, lush greenery, and serene surroundings. Located on the border with Bangladesh, Dawki is often referred to as the \"Gateway to Meghalaya\" and is a popular destination for nature lovers and adventure seekers. In this blog, we\'ll embark on a virtual journey to discover the natural wonders and cultural richness of Dawki.</p><p>Crystal Clear Umngot River:</p><p>The highlight of Dawki is undoubtedly the Umngot River. The river\'s waters are so transparent that it appears as though the boats are floating on air. Boating on the Umngot River is a surreal experience, allowing you to see the riverbed, fish, and underwater flora with astonishing clarity.</p><p>Suspension Bridge at Dawki:</p><p>A picturesque suspension bridge spans the Umngot River, offering panoramic views of the crystal clear waters below. It\'s a great spot for photography and enjoying the beauty of the river and surrounding hills.</p><p>Mawlynnong Village:</p><p>Located nearby, Mawlynnong is often referred to as \"Asia\'s Cleanest Village.\" It\'s known for its pristine cleanliness, well-maintained gardens, and the living-root bridge, a natural wonder created from intertwined tree roots.</p><p>Adventure Activities:</p><p>Dawki offers various adventure activities such as kayaking, zip-lining, and trekking. Kayaking on the Umngot River is a popular choice, allowing you to immerse yourself in the river\'s crystal-clear beauty.</p><p>Dawki-Tamabil Border:</p><p>The Dawki-Tamabil border crossing between India and Bangladesh is an interesting place to visit. You can observe the daily life of people living on both sides of the border and witness the cultural exchanges that occur here.</p><p>Shnongpdeng:</p><p>Shnongpdeng, a serene village near Dawki, offers a tranquil escape by the river. You can camp by the riverside, enjoy a bonfire, and take in the mesmerizing starry nights.</p><p>Local Cuisine:</p><p>Indulge in Meghalaya\'s local cuisine, which includes dishes like Jadoh (rice and meat), Bamboo Shoot Curry, and Momos. You can savor these delectable dishes at local eateries and stalls.</p><p>Dawki Bridge:</p><p>The Dawki Bridge, also known as the Indo-Bangladesh Friendship Bridge, connects India and Bangladesh. It\'s a significant landmark and provides stunning views of the river and the surrounding landscape.</p><p>Conclusion:</p><p>Dawki, with its crystal clear river, lush landscapes, and cultural richness, is a destination that offers a unique and enchanting experience. Whether you\'re exploring the transparent waters of the Umngot River, trekking through the dense forests, or immersing yourself in the local culture, Dawki has something to offer every traveler. It\'s a place where nature\'s beauty takes center stage, inviting you to escape the hustle and bustle of everyday life and discover the serene wonderland of Meghalaya. For those seeking a serene and natural escape, Dawki stands as a true testament to the splendor of India\'s northeastern treasures.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36513,0,NULL,NULL,'Dawki',0,NULL,NULL,NULL,NULL,NULL,'50_1695465067.png','50_1695465067.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dawki Tour Packages, Dawki Holiday Packages, Dawki Honeymoon Packages','Dawki Tour Packages, Book Dawki Holiday Packages - INT','','',NULL,NULL,NULL,0),(51,NULL,NULL,'\"Explore Shillong, the Scotland of the East, with iNeedTrip. Visit stunning waterfalls, lush hills, and experience the beauty of Meghalaya.\"',NULL,'<p>Shillong, often referred to as the \"Scotland of the East,\" is the capital city of the northeastern Indian state of Meghalaya. Nestled in the hills of the Khasi Plateau, Shillong is known for its breathtaking natural beauty, pleasant climate, and vibrant culture. Here\'s an overview of Shillong:</p><p>Geography and Location:</p><p>Shillong is located in the eastern part of India, in the northeastern state of Meghalaya. It is situated at an elevation of approximately 1,496 meters (4,908 feet) above sea level, which contributes to its cool and temperate climate. The city is surrounded by lush hills and valleys, making it a picturesque destination.</p><p>Natural Beauty:</p><p>The city is famous for its lush greenery, rolling hills, and numerous waterfalls. Some of the notable natural attractions near Shillong include Elephant Falls, Shillong Peak (the highest point in Meghalaya), and the pristine Umiam Lake, also known as the \"Barapani Lake.\" These natural wonders offer excellent opportunities for sightseeing, picnicking, and water sports.</p><p>Climate:</p><p>Shillong enjoys a temperate climate throughout the year. Summers (March to June) are pleasantly warm, while winters (November to February) can be quite cold with occasional snowfall in the nearby areas. The monsoon season (June to September) brings heavy rainfall, contributing to the region\'s lush green landscape.</p><p>Culture and Diversity:</p><p>Shillong is a diverse and culturally vibrant city with a mix of indigenous Khasi, Jaintia, and Garo communities along with people from various other parts of India. The local culture is rich, and you can experience it through traditional festivals, music, dance, and cuisine. The city is known for its lively music scene, with a strong presence of rock and reggae music.</p><p>Tourist Attractions:</p><p>Besides its natural beauty, Shillong offers various tourist attractions. The Ward\'s Lake is a popular spot for picnics and boating. The Don Bosco Museum provides insights into the tribal cultures of the region. The All Saints\' Cathedral and the Shillong Catholic Cathedral are architectural gems worth visiting. Shillong Golf Course, one of the oldest golf courses in India, is a unique attraction set amidst beautiful landscapes.</p><p>Shopping:</p><p>Shillong is known for its bustling markets, where you can shop for traditional Khasi handicrafts, Meghalaya\'s distinctive woven textiles, bamboo products, and local spices. Police Bazaar is a prominent shopping district in the city.</p><p>Cuisine:</p><p>Meghalaya\'s cuisine is a delightful blend of flavors. Local dishes often include rice, pork, beef, and a variety of vegetables. Jadoh (rice and meat dish), Khasi-style dumplings, and bamboo shoot-based curries are some of the regional specialties. Street food stalls offer a range of snacks like momos (dumplings) and thukpa (noodle soup).</p><p>Accessibility:</p><p>Shillong is accessible by road from Guwahati, the largest city in the neighboring state of Assam, which has a major airport and railway station. The drive to Shillong from Guwahati offers stunning views of the surrounding hills and takes about 3-4 hours.</p><p>Shillong\'s natural beauty, cultural diversity, and pleasant climate make it a popular destination for tourists seeking a serene and culturally enriching experience in the northeastern part of India. Whether you\'re interested in exploring its natural wonders, experiencing local culture, or simply enjoying the peaceful atmosphere, Shillong has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25073,0,NULL,NULL,'Shillong',0,NULL,NULL,NULL,NULL,NULL,'51_1695810383.png','51_1695810383.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Shillong tours, Meghalaya beauty, Scotland of the East','\"Shillong\'s Scotland of the East with iNeedTrip\"','','',NULL,NULL,NULL,0),(52,NULL,NULL,'\"Indulge in a Himalayan retreat in Kalimpong with iNeedTrip. Enjoy serene landscapes, Buddhist monasteries, and the tranquility of West Bengal.\"',NULL,'<p>Kaziranga National Park, located in the northeastern state of Assam, India, is a UNESCO World Heritage Site and one of the most remarkable wildlife conservation success stories in the world. Established in 1905, it is renowned for its significant population of the Indian one-horned rhinoceros and is often considered one of the best places in the world to observe these magnificent creatures in their natural habitat. Covering an area of approximately 430 square kilometers (166 square miles), Kaziranga is a biodiversity hotspot that supports a wide variety of flora and fauna.</p><p>Key Highlights:</p><p>Indian One-Horned Rhinoceros: The park is most famous for its population of the Indian one-horned rhinoceros, and it houses more than two-thirds of the world\'s total population of this rare and endangered species. These rhinos are one of the park\'s main attractions, and visitors have the opportunity to see them up close during safari rides.</p><p>Diverse Wildlife: Kaziranga is not just about rhinoceros. It is also home to a diverse array of wildlife, including Indian elephants, Bengal tigers, Asiatic water buffaloes, wild boars, leopards, and several species of deer. The park\'s wetlands and grasslands provide an ideal habitat for these animals.</p><p>Birdwatcher\'s Paradise: Kaziranga National Park is a paradise for birdwatchers and ornithologists. It boasts over 470 species of birds, making it one of the most important bird sanctuaries in India. Some notable bird species include the Bengal florican, Indian hornbill, and various species of eagles and waterfowl.</p><p>Scenic Beauty: The park\'s landscape is a breathtaking blend of lush green grasslands, dense forests, and wetlands. The Brahmaputra River flows through the park, creating picturesque vistas and enhancing the overall natural beauty of the area.</p><p>Conservation Success: Kaziranga has been instrumental in the conservation of several endangered species, especially the Indian one-horned rhinoceros. The park\'s conservation efforts have led to a remarkable increase in the rhino population, symbolizing the success of dedicated conservation initiatives.</p><p>Safari Adventures: Visitors to Kaziranga can explore the park through various safari options, including elephant safaris, jeep safaris, and even boat safaris during the monsoon season when the park\'s low-lying areas are submerged. These safaris provide an opportunity to spot wildlife in their natural habitat.</p><p>Flora and Vegetation: The park\'s vegetation includes tall elephant grass, dense tropical broadleaf forests, and marshland. It is a unique ecosystem that supports a wide range of plant species, making it an important area for botanical research.</p><p>Conservation Challenges: While Kaziranga\'s conservation efforts have been largely successful, the park faces ongoing challenges, such as poaching and habitat degradation. The park authorities, along with various conservation organizations, are continuously working to protect its unique biodiversity.</p><p>Accessibility: Kaziranga National Park is well-connected by road and is approximately 220 kilometers (137 miles) from Assam\'s capital city, Guwahati. The nearest major town is Jorhat, which is about 90 kilometers (56 miles) away. Visitors can access the park through designated entry points and explore its various zones.</p><p>In conclusion, Kaziranga National Park is a treasure trove of biodiversity and a testament to the success of conservation efforts in preserving endangered species. It offers a unique opportunity for wildlife enthusiasts and nature lovers to witness a wide variety of animals and birds in their natural habitat, all while enjoying the scenic beauty of Assam\'s lush landscapes. A visit to Kaziranga is not only an educational experience but also a chance to appreciate the beauty and significance of wildlife conservation.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13741,0,NULL,NULL,'Kaziranga National Park',0,NULL,NULL,NULL,NULL,NULL,'52_1695635447.png','52_1695635447.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kalimpong tours, West Bengal beauty, mountain escape','\"Kaziranga National Park\'s Wildlife Expedition with iNeedTrip\"','','',NULL,NULL,NULL,0),(53,NULL,NULL,'\"Discover the gateway to Northeast India, Guwahati, with iNeedTrip. Explore cultural diversity, scenic landscapes, and the Brahmaputra River.\"',NULL,'<p>Guwahati, the largest city in the northeastern Indian state of Assam, is a mesmerizing destination that serves as the gateway to the enchanting Northeast region of India. Nestled on the banks of the mighty Brahmaputra River, Guwahati is a city that seamlessly blends history, culture, and natural beauty. In this blog, we\'ll embark on a virtual journey to explore the diverse attractions and experiences that make Guwahati a captivating destination.</p><p>Kamakhya Temple:</p><p>Guwahati is famous for the Kamakhya Temple, one of the most revered Shakti Peethas in India. This ancient temple atop Nilachal Hill is a center of Hindu spirituality and is known for its unique rituals.</p><p>Assam State Museum:</p><p>The Assam State Museum in Guwahati offers a glimpse into the rich cultural heritage of Assam. It houses a fascinating collection of artifacts, sculptures, and tribal art.</p><p>Brahmaputra River Cruise:</p><p>A cruise on the Brahmaputra River is a must-do experience in Guwahati. Enjoy the serene beauty of the river, spot dolphins, and witness the stunning sunsets on these leisurely cruises.</p><p>Umananda Island:</p><p>Located on the Brahmaputra, Umananda Island is known for the Umananda Temple, dedicated to Lord Shiva. The island offers a peaceful escape from the city and provides panoramic views of Guwahati.</p><p>Assam State Zoo and Botanical Garden:</p><p>The Assam State Zoo is home to a wide variety of wildlife, including the famous one-horned rhinoceros. Adjacent to it is the Botanical Garden, a green oasis perfect for a leisurely stroll.</p><p>Sualkuchi:</p><p>Known as the \"Manchester of Assam,\" Sualkuchi is a village famous for its silk weaving tradition. Explore silk saree workshops and purchase exquisite Assamese silk garments.</p><p>Hajo:</p><p>Hajo, a town near Guwahati, is known for its religious diversity. Visit the Hayagriva Madhava Temple, Poa Mecca (a revered mosque), and the Buddhist Monastery to experience this harmonious coexistence.</p><p>Local Cuisine:</p><p>Assamese cuisine is a delight for food enthusiasts. Savor dishes like Assam tea, fish curry, bamboo shoot preparations, and pithas (rice cakes) at local eateries.</p><p>Kaziranga National Park:</p><p>While not in Guwahati itself, the world-famous Kaziranga National Park is a short drive away. It\'s home to the endangered one-horned rhinoceros and a wide range of wildlife.</p><p>Cultural Festivals:</p><p>Guwahati hosts various cultural festivals, including Bihu and Durga Puja, where you can witness traditional dance, music, and vibrant processions.</p><p>Conclusion:</p><p>Guwahati, with its blend of spirituality, natural beauty, and cultural richness, is a destination that offers a diverse range of experiences. Whether you\'re seeking divine blessings at Kamakhya Temple, embarking on a river cruise on the Brahmaputra, or exploring Assam\'s unique cuisine, Guwahati invites you to immerse yourself in its rich tapestry of traditions and landscapes. It\'s a place where the mighty river flows alongside ancient temples, and where the charm of Assamese culture and warm hospitality greet visitors with open arms. For those looking to explore the wonders of Northeast India, Guwahati stands as a vibrant and welcoming gateway to this captivating region.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11240,0,NULL,NULL,'Guwahati',0,NULL,NULL,NULL,NULL,NULL,'53_1695470018.png','53_1695470018.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Guwahati tours, Northeast India, cultural diversity','\"Guwahati\'s Gateway to Northeast with iNeedTrip\"','','',NULL,NULL,NULL,0),(54,NULL,NULL,'Charrapunji Packages - Book your Charrapunji tour package at the best price with iNeedTrip. Click to book customized cheap Charrapunji holiday packages & get exciting deals now.',NULL,'<p style=\"text-align: justify; \">This town is located in the East Khasi Hills of Meghalaya and is one of the wettest places on the planet. The numerous spectacular waterfalls, the labyrinth of caves, and the lush green landscape attracts tourists from all around the globe. Some of the most popular tourist attractions in <strong>CHERRAPUNJI</strong> include the Living Root Bridges, which are a perfect example of the symbiotic nature of the relationship between nature and mankind. You must not miss out on a visit to Nohkalikai Falls, which is the highest plunge waterfall in India. The limestone caves of Mawsmai would enchant you with their awe-inspiring formations of stalactites and stalagmites.</p><p style=\"text-align: justify;\">High above misty valleys and frothing waterways, tucked away in whirling clouds and roosted on a ledge, lies Cherrapunji (4,500 feet). This is a staggering area, and the all-year downpour acquired Cherrapunji pined for passage into the Guinness Book of World Records as the wettest spot on the planet, where the precipitation can be recorded in feet rather than in millimeters. Today, climatic changes have edged Cherrapunji out of the highest \'wet\' spot; however, it actually holds its flawless excellence, its uncommon features, the unending mists, and the interminable fogs. Cherrapunji lies in the core of the State of Meghalaya-the homestead of clouds. Cherrapunji Tour Package will surely enthrall you!</p><p style=\"text-align: justify;\"><b>Best places to visit in Cherrapunji</b></p><p style=\"text-align: justify;\">Flawless, calm, and perfect, yes, that is Cherrapunji,&nbsp; or as locals call it \'Sohra\' basically. Cherrapunji is an attractive wonder situated at the core of Meghalaya in the vast North East India. Prior, considered as the wettest area in the country, Cherrapunji is recorded with the highest precipitation per year. Nonetheless, the charms of Cherrapunji are some of the important features that attract tourists. The foggy mountains, the enchanting cascades, and yes, the cool extraordinary environment all makes it an absolute necessity must-visit place in Meghalaya. Opt for Cherrapunji Holiday Package for a stress-free vacation!</p><p style=\"text-align: justify;\"><b>Top places to visit:</b></p><p style=\"text-align: justify;\">Nohkalikai Falls, Double Decker Living Root Bridge, Mawsynram village, Seven Sisters Falls, Mawsmai Cave, Eco Park, Dawki, Mawkdok Dympep Valley, Thangkharang Park, Wakaba Falls, Kynrem Falls, Arwah Cave, Dainthlen Falls, Khasi Monoliths, Ka Khoh Ramhah, Krem Mawmluh, Mawlynnong Village</p><p style=\"text-align: justify;\"><b>Things to do in Cherrapunji</b></p><p style=\"text-align: justify;\">In case you visit Cherrapunji during the monsoon season, you can enjoy a good reviving shower in the streaming water of the mountain streams, under the waterfalls, in the cool water springs, and complete the day with a trip to the living root bridges.</p><p style=\"text-align: justify;\">If you visit this spot during the winter season, you can go on cave adventures; you can swim in the swimming pools, go waterway canyoning or simply partake in a warm campfire with a hot cup of espresso or hot chocolate here. Notwithstanding the activities it generally offers as the year progresses, the best time to visit this spot would be from June to October. Choose Cherrapunji Tour Package to explore the best and have a thrilling vacation!</p><p style=\"text-align: justify;\"><b>Top things to do in Cherrapunji:</b></p><p style=\"text-align: justify;\">1.&nbsp; &nbsp; &nbsp; &nbsp;River Canyoning</p><p style=\"text-align: justify;\">2.&nbsp; &nbsp; &nbsp; &nbsp;Boating in the crystal care blue waters</p><p style=\"text-align: justify;\">3.&nbsp; &nbsp; &nbsp; &nbsp;Exploring the caves</p><p style=\"text-align: justify;\">4.&nbsp; &nbsp; &nbsp; &nbsp;Ziplining at Mandowk</p><p style=\"text-align: justify;\">5.&nbsp; &nbsp; &nbsp; &nbsp;A walk on the living root bridges</p><p style=\"text-align: justify;\">6.&nbsp; &nbsp; &nbsp; &nbsp;Picnic At Nohkalikai Waterfalls</p><p style=\"text-align: justify;\">7.&nbsp; &nbsp; &nbsp; &nbsp;Stay at the cleanest village in Asia, Mawlynnong</p><p style=\"text-align: justify;\">8.&nbsp; &nbsp; &nbsp; &nbsp;A visit to the Eco-park</p><p style=\"text-align: justify;\"><b>Local dishes to try in Cherrapunji</b></p><p style=\"text-align: justify; \">Cherrapunji serves North-east Indian cuisine. The local food habit is rich and reviving, and the customary cooking tradition is still preserved. The favorite of the locals is pork momos and pork rice. Rice beer or Khasis is a stylized beverage in Cherrapunji. One more traditional delicacy to try here is the Sohra Pulao, rice cooked with vegetables without extra flavors. Cherrapunji Package for an enchanting experience!</p><p style=\"text-align: justify;\"><b>Where to go shopping in Cherrapunji?</b></p><p style=\"text-align: justify;\">Cherrapunjee is known for its painstaking work, particularly things made from cane and bamboo. Stalls and shops selling cane and bamboo ancient rarities starting from keepsakes to furniture are very normal. Cherrapunji is the best spot to purchase great quality orange blossom, honey. You can purchase cinnamon, and different flavors developed in and closed to Cherrapunji. Don’t forget to purchase Meghalaya tea with a particularly lighter flavor contrasted with Assam or Darjeeling tea. Holiday Package Cherrapunji will truly let you explore the unexplored parts of Cherrapunji!</p><p style=\"text-align: justify;\"><b>For shopping, the best places are:</b></p><p style=\"text-align: justify;\">1.&nbsp; &nbsp; &nbsp; &nbsp;Laitumkhrah Market</p><p style=\"text-align: justify;\">2.&nbsp; &nbsp; &nbsp; &nbsp;Lew Sohra Bazaar</p><p style=\"text-align: justify;\">3.&nbsp; &nbsp; &nbsp; &nbsp;Gokolgre Daily Market</p><p style=\"text-align: justify;\">4.&nbsp; &nbsp; &nbsp; &nbsp;Dawki Market</p><p style=\"text-align: justify;\">5.&nbsp; &nbsp; &nbsp; &nbsp;Hat Thymmai</p><p style=\"text-align: justify;\">6.&nbsp; &nbsp; &nbsp; &nbsp;Polo Bazaar</p><p style=\"text-align: justify;\">7.&nbsp; &nbsp; &nbsp; &nbsp;OB Shopping Mall</p><p style=\"text-align: justify;\">8.&nbsp; &nbsp; &nbsp; &nbsp;Bara Bazar/Lewduh Bazar</p><p style=\"text-align: justify;\"><b>How to reach Cherrapunji?</b><br></p><p style=\"text-align: justify;\">The closest railway station and airport are in Guwahati, which is 180 km away. From that point, one can get paid for taxis and buses. Cherrapunji is well-connected to nearby cities through buses. You can get a bus from Shillong as well as from Guwahati. Cherrapunji Travel Package will let you enjoy a stress-free vacation!</p><p style=\"text-align: justify; \"><b>Best time to visit Cherrapunji</b></p><p style=\"text-align: justify;\">There will be many travelers standing by to visit Cherrapunji for the most part in every one of the seasons. However, know the best time to visit Cherrapunji, as it is the place where there is the downpour, with the goal that you can partake in an exceptional encounter. The best season to visit Cherrapunji is winter, between October and February. Late spring is certainly not a bad time either to design your vacation toward the northeastern part of India. Cherrapunji Holiday Package will surely let you have a comfortable holiday experience!</p><p style=\"text-align: justify;\"><b>Is it safe to visit Cherrapunji during monsoons?</b></p><p style=\"text-align: justify;\">As the spot gets rainfall vigorously during the monsoons, thus it\'s ideal to try not to visit here around this time. Many individuals visit during monsoons to see a portion of the enduring cascades. However, do follow the weather forecasts.</p><p style=\"text-align: justify; \"><b>What is Cherrapunji famous for?</b></p><p style=\"text-align: justify; \">Cherrapunji is renowned for being one of the wettest places on the planet. Individuals come here to encounter nature\'s simple structure. It has additionally the broadly popular live root bridges. It has the fourth-highest waterfall in India, and that is not simply it. The cleanest village in Asia is additionally close by if you need to visit.</p><p style=\"text-align: justify;\">You probably won\'t have the foggiest idea about this, yet Cherrapunji is known to be the second wettest spot on the planet. Indeed, earth. Their rainstorm is somewhat overflowed, yet the mood that it makes is something you would savor. With a climbing stick in one hand and a cup of chai in the other, how might one oppose such a picturesque ecstasy? Plus, you can generally get a sweet region to live in from our Hotel suggestions! Cherrapunji Travel Package would definitely suit your needs!</p><p style=\"text-align: justify;\">You have most likely gone over photos of the well-known living root bridges in a real sense on every single social page. You\'ll get to cross thick jungles, water streams, and stony paths before you can arrive at the spot that will make you mesmerized.</p><p style=\"text-align: justify;\">Experience addicts will absolutely be attracted to this trek and what follows as they stroll past the thick jungles. The Nokrek National Park in Cherrapunji is home to the lovable red pandas that make for the sake of entertainment buddies! To see a lot of charming red pandas hanging out in the wild, you must include Cherrapunji in your travel list! Also how the spot houses Asian elephants, various types of felines, and plenty of rich vegetation to summon the ecological aficionado in you.</p><p style=\"text-align: justify;\"><b>Cherrapunji Tour Package will let you have a serene and secluded trip!</b></p><p style=\"text-align: justify;\">Cherrapunji can make your heart skirt a thump with the perspectives it brings to the table. Right from the exquisite Nohsngithiang tumbles to the staggering plant life, everything about the spot starts the \'goodness\'. You will be astounded by the heavenly climate that the locals of the spot have figured out how to keep up with to perfection.</p><p style=\"text-align: justify; \">From the profound and energizing caves of Krem Phyllut to the Mawsmai caves, Cherrapunji flaunts some interest that will deliver the need to hunger for something new. Obviously, choices to climb and journey are in abundance so don\'t you stress over a thing. Whichever place you intend to visit, book your Cherrapunji Honeymoon Package with us for the perfect romantic vacation.&nbsp;</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34563,0,NULL,NULL,'Cherrapunji',0,NULL,NULL,3,NULL,NULL,'54_1695464206.png','54_1695464206.png','India','101',NULL,'2021-04-15 11:08:18','2021-04-15 11:08:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Charrapunji Tour Packages, Charrapunji Holiday Packages, Charrapunji Honeymoon Packages','Charrapunji Tour Packages, Book Charrapunji Holiday Packages - INT','','',NULL,NULL,NULL,0),(55,NULL,NULL,'\"Experience the wild beauty of Serengeti National Park in Tanzania. Witness the Great Migration, the \'Big Five,\' and the heart of African savannah.\"',NULL,'<p>Located in northern Tanzania, the Serengeti is one of the most iconic and awe-inspiring safari destinations in the world. This vast and untamed wilderness is synonymous with Africa\'s most remarkable wildlife spectacles, and it\'s a place where nature truly reigns supreme.</p><p>Endless Plains and Epic Landscapes:</p><p>The name \"Serengeti\" derives from the Maasai word \"Siringet,\" which translates to \"endless plains.\" Stretching over 12,000 square miles (30,000 square kilometers), the Serengeti\'s rolling grasslands seem to stretch infinitely to the horizon. This vast expanse is punctuated by rocky outcrops called kopjes, acacia woodlands, and meandering rivers, creating a dynamic and ever-changing landscape.</p><p>The Great Migration:</p><p>The Serengeti is most renowned for hosting the Great Migration, one of the world\'s most extraordinary wildlife events. Each year, millions of wildebeest, zebras, and gazelles traverse the plains in search of greener pastures. This dramatic journey, with its river crossings teeming with hungry crocodiles and the relentless pursuit of predators, is a spectacle that draws wildlife enthusiasts from around the globe.</p><p>Unparalleled Wildlife Encounters:</p><p>Beyond the Great Migration, the Serengeti teems with an astounding diversity of wildlife. The park is home to the Big Five (lion, leopard, elephant, buffalo, and rhinoceros), as well as cheetahs, hyenas, giraffes, hippos, and countless bird species. Game drives and guided safaris offer incredible opportunities for close encounters with these magnificent creatures.</p><p>Balloon Safaris:</p><p>For a unique perspective of the Serengeti\'s vastness and wildlife, consider a hot air balloon safari. Drifting silently above the plains at sunrise, you can witness the awakening of the Serengeti and catch breathtaking views of the sprawling landscape below.</p><p>Cultural Encounters:</p><p>The Serengeti is also an opportunity to engage with local Maasai communities. These semi-nomadic herders have lived in harmony with the wildlife for generations and offer cultural experiences that provide insight into their way of life.</p><p>Conservation and Preservation:</p><p>The Serengeti National Park is a UNESCO World Heritage Site and is dedicated to preserving the region\'s extraordinary biodiversity. It plays a vital role in the conservation of African wildlife, and its success serves as a model for sustainable tourism and wildlife management.</p><p>Starry Nights and Campfire Tales:</p><p>As night descends upon the Serengeti, the absence of artificial light allows the stars to shine brightly in the African sky. Enjoying a campfire dinner while listening to the sounds of the wilderness is a truly enchanting experience.</p><p>Luxury Safari Lodges:</p><p>While the Serengeti offers a rugged and remote experience, it also provides luxurious safari lodges and camps that blend seamlessly with the natural environment. These accommodations ensure comfort and an authentic African safari experience.</p><p>The Serengeti is more than a destination; it\'s a testament to the enduring beauty and complexity of the natural world. It\'s a place where the circle of life plays out daily, where survival of the fittest is the rule, and where the timeless drama of Africa unfolds on the grandest of stages. A visit to the Serengeti is not just a journey; it\'s an immersion into the heart of the wild, a glimpse of nature\'s raw power and indomitable spirit.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36832,0,NULL,NULL,'Serengeti',0,NULL,NULL,NULL,NULL,NULL,'55_1695189463.png','55_1695189463.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Serengeti National Park Tanzania\r\nGreat Migration in Serengeti\r\nAfrican wildlife in Serengeti\r\nSerengeti savannah\r\nSerengeti attractions','\"Serengeti National Park, Tanzania: Where the Wild Roams Free\"','','',NULL,NULL,NULL,0),(56,NULL,NULL,'\"Escape to the spice island paradise of Zanzibar, Tanzania. Discover pristine beaches, historic Stone Town, and the exotic flavors of the Indian Ocean.\"',NULL,'<p>Zanzibar, often referred to as the \"Spice Island,\" is a mesmerizing archipelago located off the coast of Tanzania in East Africa. This tropical paradise is known for its stunning beaches, rich history, vibrant culture, and world-renowned spice trade. Whether you\'re seeking relaxation on pristine shores or a taste of exotic spices, Zanzibar offers a unique and unforgettable experience.</p><p>White Sandy Beaches:</p><p>Zanzibar boasts some of the world\'s most exquisite beaches. The powdery white sands, fringed by palm trees, stretch along the turquoise waters of the Indian Ocean. From Nungwi and Kendwa in the north to Jambiani and Paje in the southeast, each beach has its own unique charm.</p><p>Cultural Diversity:</p><p>The island\'s history is a tapestry of different cultures, including African, Arab, Indian, and European influences. Stone Town, a UNESCO World Heritage site, is a labyrinthine old town where narrow alleyways lead to bustling markets, historic buildings, and ornate mosques.</p><p>Spice Tours:</p><p>Zanzibar\'s nickname, the Spice Island, is well-deserved. Take a spice tour to explore fragrant plantations of cloves, vanilla, cardamom, and cinnamon. Engage your senses as you learn about the island\'s rich spice heritage.</p><p>Exotic Cuisine:</p><p>Zanzibari cuisine is a delightful fusion of flavors. Savor dishes like pilau (spiced rice), biryani, and Zanzibar pizza at local markets and restaurants. Fresh seafood, including octopus and lobster, is a highlight of coastal dining.</p><p>Dolphin Safaris:</p><p>The waters around Zanzibar are teeming with marine life. Embark on a dolphin safari and witness these intelligent creatures swimming in their natural habitat. Snorkeling and diving excursions reveal vibrant coral reefs and an array of underwater species.</p><p>Jozani Forest Reserve:</p><p>Visit the Jozani Forest Reserve to encounter the endemic Zanzibar red colobus monkeys. The lush forest is also home to diverse bird species and unique flora.</p><p>Prison Island:</p><p>A short boat ride from Stone Town takes you to Prison Island, where you can observe giant Aldabra tortoises and explore the historical ruins of a former detention center.</p><p>Water Activities:</p><p>Zanzibar is a haven for water sports enthusiasts. Kite surfing, sailing, and stand-up paddleboarding are popular activities, along with traditional dhow boat cruises during the sunset.</p><p>Warm Hospitality:</p><p>Zanzibar\'s people are known for their hospitality and warmth. Visitors often find themselves welcomed with open arms and invited to share in local customs and traditions.</p><p>Conservation Efforts:</p><p>The island is committed to preserving its natural beauty and marine ecosystems. Initiatives like the Chumbe Island Coral Park and marine protected areas reflect this dedication to environmental conservation.</p><p>Zanzibar, with its blend of pristine nature, rich history, and aromatic spices, is a destination that invites you to slow down, immerse yourself in its exotic culture, and savor the simple pleasures of island life. Whether you\'re exploring its historic streets, lazing on the beach, or indulging in its flavorful cuisine, Zanzibar is a paradise that leaves a lasting impression on all who visit.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34200,0,NULL,NULL,'Zanzibar',0,NULL,NULL,NULL,NULL,NULL,'56_1695198252.png','56_1695198252.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Zanzibar Tanzania\r\n Zanzibar spice island\r\n Zanzibar beaches\r\nStone Town Zanzibar\r\n Indian Ocean flavors','\"Zanzibar, Tanzania: The Spice Island Paradise\"','','',NULL,NULL,NULL,0),(57,NULL,NULL,'\"Experience a tiger safari in Ranthambore with iNeedTrip. Spot majestic tigers, diverse wildlife, and explore the rugged landscapes of Rajasthan.\"',NULL,'<p>Ranthambore National Park is a renowned wildlife sanctuary located in the Sawai Madhopur district of the northwestern Indian state of Rajasthan. It is one of the most popular and well-preserved national parks in India and is known for its thriving population of Bengal tigers. Ranthambore\'s diverse ecosystem, historic ruins, and picturesque landscapes make it a captivating destination for wildlife enthusiasts and nature lovers. Here are some key highlights of Ranthambore National Park:</p><p>1. Bengal Tigers:</p><p>Ranthambore is famous for its tiger population, and it offers one of the best opportunities in India to spot these magnificent big cats in the wild. The park\'s healthy tiger population has made it a crucial conservation area for this endangered species.</p><p>2. Rich Biodiversity:</p><p>Beyond tigers, Ranthambore is home to a wide variety of wildlife, including leopards, sloth bears, wild boars, hyenas, sambar deer, chital, Indian gazelles, and numerous bird species. The park\'s diverse flora and fauna make it a paradise for nature enthusiasts.</p><p>3. Scenic Landscapes:</p><p>Ranthambore is characterized by a mix of dry deciduous forests, meadows, rocky terrain, and ancient ruins. The park\'s topography provides diverse habitats for wildlife and creates stunning landscapes for visitors to admire.</p><p>4. Ranthambore Fort:</p><p>Located within the park, the historic Ranthambore Fort is a UNESCO World Heritage Site. The fort dates back to the 10th century and offers panoramic views of the park. It is a fascinating blend of history and nature.</p><p>5. Safaris:</p><p>Wildlife safaris are the primary way to explore Ranthambore National Park. Both jeep safaris and canter safaris are available, and they provide visitors with an opportunity to observe wildlife in their natural habitat. The park is divided into several zones, each with its own unique wildlife sightings.</p><p>6. Birdwatching:</p><p>Ranthambore is a paradise for birdwatchers, with over 300 bird species recorded within the park. Commonly spotted birds include peafowls, eagles, vultures, owls, and waterfowl.</p><p>7. Photography:</p><p>The park\'s diverse landscapes and wildlife make it a favorite destination for wildlife photographers and enthusiasts.</p><p>8. Wildlife Conservation:</p><p>Ranthambore National Park plays a vital role in the conservation of the Bengal tiger and other endangered species. The park\'s successful tiger relocation program has garnered international attention.</p><p>9. Accessibility:</p><p>Ranthambore is well-connected by road and rail. The nearest railway station is Sawai Madhopur, which has regular train services from major cities like Delhi and Jaipur. The park is approximately 10 kilometers from Sawai Madhopur.</p><p>10. Accommodation:</p><p>- Ranthambore offers a range of accommodation options, from luxury resorts to budget-friendly lodges. Many of these properties provide guided wildlife safaris and other services for guests.</p><p>11. Best Time to Visit:</p><p>- The best time to visit Ranthambore National Park is from October to April when the weather is pleasant, and wildlife sightings are more frequent.</p><p>In summary, Ranthambore National Park offers a unique blend of wildlife conservation, history, and natural beauty. It provides an opportunity to witness the majestic Bengal tiger in its natural habitat, explore ancient ruins, and immerse yourself in the diverse flora and fauna of Rajasthan\'s wilderness. Whether you\'re a wildlife enthusiast, history buff, or nature lover, Ranthambore is a must-visit destination for a memorable wildlife safari experience in India.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,22593,0,NULL,NULL,'Ranthambore',0,NULL,NULL,NULL,NULL,NULL,'57_1695725702.png','57_1695725702.png','India','101',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ranthambore safari, Rajasthan wildlife, tiger sightings','\"Ranthambore\'s Tiger Safari with iNeedTrip\"','','',NULL,NULL,NULL,0),(58,NULL,NULL,'\"Witness the natural wonder of Ngorongoro Crater in Tanzania, often called the African Eden. Explore a unique ecosystem and diverse wildlife.\"',NULL,'<p>The Ngorongoro Conservation Area, located in northern Tanzania, is a UNESCO World Heritage Site and one of the most remarkable natural wonders on the African continent. Often dubbed the \"Garden of Eden\" or the \"Cradle of Life,\" this area is home to a diverse range of wildlife, dramatic landscapes, and cultural heritage. Here\'s an exploration of what makes the Ngorongoro Conservation Area so extraordinary:</p><p>1. Geological Marvel:</p><p>At the heart of the Ngorongoro Conservation Area lies the Ngorongoro Crater, a massive volcanic caldera. This geological wonder is one of the world\'s largest intact and unbroken calderas.</p><p>2. Biodiversity:</p><p>The Ngorongoro Crater is a self-contained ecosystem, teeming with a rich diversity of wildlife. It is home to the \"Big Five\" (lion, leopard, elephant, buffalo, and rhinoceros) and countless other species, including zebras, wildebeests, hippos, and various antelope species.</p><p>3. Spectacular Scenery:</p><p>The landscape within the crater is nothing short of breathtaking. The floor of the crater is a mosaic of grasslands, swamps, and woodlands, surrounded by steep crater walls that create a natural enclosure for the animals.</p><p>4. Birdwatching Paradise:</p><p>Bird enthusiasts will find the Ngorongoro Conservation Area to be a haven for avian diversity. Over 500 bird species have been recorded here, including flamingos, eagles, and vultures.</p><p>5. Cultural Significance:</p><p>The Maasai people, known for their distinctive red attire and cattle herding, live in and around the conservation area. Their traditional way of life and cultural practices are an integral part of the area\'s heritage.</p><p>6. Olduvai Gorge:</p><p>Not far from the Ngorongoro Conservation Area is Olduvai Gorge, often referred to as the \"Cradle of Mankind.\" It\'s one of the most important archaeological sites in the world, where significant hominid fossils have been discovered, shedding light on human evolution.</p><p>7. Conservation Efforts:</p><p>The area is dedicated to conservation, and efforts are made to protect its unique ecosystem and the wildlife that resides within it. Tourism is carefully managed to minimize the impact on the environment.</p><p>8. Safari Adventures:</p><p>Visitors can enjoy game drives within the Ngorongoro Crater, which offers exceptional opportunities for wildlife photography and close encounters with animals.</p><p>9. Picnic Sites:</p><p>Several scenic picnic sites within the conservation area allow visitors to take a break and enjoy a meal while surrounded by the stunning natural beauty.</p><p>10. Accommodation Options:</p><p>- There are various lodges and campsites within and around the Ngorongoro Conservation Area, offering accommodations ranging from luxury lodges to more rustic camping experiences.</p><p>The Ngorongoro Conservation Area is a testament to the incredible beauty and biodiversity of Africa. It provides a unique opportunity to witness a harmonious balance between nature, wildlife, and human cultures. A visit to this remarkable destination is not only an adventure into the wild but also a journey through time, exploring the origins of humanity and the wonders of our planet.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19377,0,NULL,NULL,'Ngorongoro',0,NULL,NULL,NULL,NULL,NULL,'58_1694773380.png','58_1694773380.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ngorongoro Crater Tanzania\r\nAfrican Eden Ngorongoro\r\nNgorongoro ecosystem\r\nTanzanian wildlife\r\nNgorongoro attractions','\"Ngorongoro Crater, Tanzania: The African Eden\"','','',NULL,NULL,NULL,0),(59,NULL,NULL,'\"Experience the convergence of wildlife and scenic beauty at Lake Manyara, Tanzania. Witness diverse animal life, stunning landscapes, and African charm.\"',NULL,'<p>Lake Manyara is a stunning and ecologically diverse lake located in northern Tanzania, within the East African Rift Valley. This small but incredibly picturesque lake is renowned for its remarkable birdlife, lush landscapes, and the opportunity to witness diverse wildlife in a unique setting. Here\'s an overview of what makes Lake Manyara a captivating destination:</p><p>Geography and Location:</p><p>Lake Manyara is situated at the base of the Western Escarpment of the East African Rift Valley. It is part of the Lake Manyara National Park, which covers an area of approximately 330 square kilometers (127 square miles). The park is located about 126 kilometers (78 miles) southwest of Arusha, making it easily accessible for visitors exploring northern Tanzania.</p><p>Wildlife and Biodiversity:</p><p>Despite its relatively small size, Lake Manyara National Park is teeming with wildlife and offers diverse habitats, ranging from lush groundwater forests to open grassy plains. The park is especially known for its tree-climbing lions, which is a unique behavior not commonly observed in other African lion populations.</p><p>Other notable wildlife species that can be spotted in the park include elephants, Cape buffaloes, giraffes, zebras, impalas, wildebeests, and numerous species of primates, including baboons and vervet monkeys. Lake Manyara is also home to a wide variety of bird species, making it a birdwatcher\'s paradise. Pink flamingos, pelicans, and storks are commonly seen along the shores of the lake.</p><p>Scenic Landscapes:</p><p>Lake Manyara is framed by lush groundwater forests, which are home to troops of olive baboons and blue monkeys. These forests create a stark contrast with the vast savannas and grassy floodplains that extend to the west and north of the lake. The park\'s diverse landscapes make it an ideal setting for game drives, offering opportunities to witness the wildlife against a backdrop of stunning scenery.</p><p>Canoe Safaris:</p><p>One of the unique experiences at Lake Manyara is a canoe safari on the lake itself. Guided by experienced local guides, visitors can paddle quietly along the shoreline, observing the lake\'s aquatic life and bird species up close. It\'s a peaceful and immersive way to connect with the natural environment.</p><p>Cultural Encounters:</p><p>Lake Manyara is located in close proximity to several Maasai villages. Visitors can take cultural tours to these villages to learn about the Maasai way of life, traditions, and crafts. It\'s an opportunity to engage with the local community and gain insights into their rich cultural heritage.</p><p>Accessibility:</p><p>Lake Manyara National Park is easily accessible, particularly for those exploring the northern circuit of Tanzania\'s national parks. It\'s often included in safari itineraries alongside other famous destinations like Tarangire National Park, the Ngorongoro Conservation Area, and the Serengeti National Park.</p><p>In summary, Lake Manyara is a small but captivating gem in the heart of northern Tanzania. Its unique combination of diverse wildlife, lush landscapes, and the opportunity to interact with local communities makes it a must-visit destination for travelers exploring the remarkable natural and cultural wonders of East Africa.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14817,0,NULL,NULL,'Lake Manyara',0,NULL,NULL,NULL,NULL,NULL,'59_1694689352.png','59_1694689352.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Lake Manyara Tanzania\r\nTanzanian wildlife\r\nLake Manyara landscapes\r\nAfrican wildlife experiences\r\nTanzanian charm','\"Lake Manyara, Tanzania: Where Wildlife and Scenery Converge\"','','',NULL,NULL,NULL,0),(60,NULL,NULL,'\"Indulge in a Himalayan haven in Lachung with iNeedTrip. Enjoy pristine landscapes, snow-capped peaks, and the tranquility of Sikkim.\"',NULL,'<p>Lachung is a picturesque village located in the northeastern Indian state of Sikkim. Perched at an altitude of approximately 9,600 feet (2,900 meters) above sea level, Lachung is a remote and charming destination that offers stunning natural beauty, pristine landscapes, and a serene ambiance. It is often considered one of the most scenic places in Sikkim and serves as a gateway to several high-altitude destinations in the region.</p><p>Key Highlights of Lachung:</p><p>Natural Beauty: Lachung is renowned for its breathtaking natural beauty. Surrounded by snow-capped peaks, lush green forests, and crystal-clear rivers, the village provides a picture-perfect setting for nature enthusiasts and photographers. The Lachung River flows through the village, adding to its charm.</p><p>Yumthang Valley: Just a short drive from Lachung, Yumthang Valley is often referred to as the \"Valley of Flowers.\" It is a high-altitude sanctuary that comes alive during the spring when the meadows are carpeted with vibrant wildflowers. The valley is also home to hot springs that offer a relaxing soak amidst the Himalayan scenery.</p><p>Lachung Monastery: The Lachung Monastery, also known as the Lachung Gompa, is a significant religious site in the village. It features traditional Tibetan architecture and offers a peaceful environment for meditation and reflection.</p><p>Adventure Activities: Lachung is a great base for adventure enthusiasts. Trekkers and hikers can explore the beautiful trails that lead to nearby destinations like Yumthang Valley and Lachen. In the winter, the region offers opportunities for snow trekking and skiing.</p><p>Cuisine: Sikkimese cuisine is a highlight in Lachung. While visiting, don\'t miss trying local dishes like momo (dumplings), thukpa (noodle soup), and gundruk (fermented leafy greens). Savoring traditional Sikkimese cuisine is a culinary delight for visitors.</p><p>Tibetan Influence: Lachung\'s culture is influenced by Tibetan traditions and customs. You can witness this in the local architecture, art, and the warm hospitality of the residents. Prayer flags and colorful Buddhist prayer wheels are common sights around the village.</p><p>Zero Point: Zero Point, also known as Yumesamdong, is a high-altitude area located about 25 kilometers from Lachung. It offers stunning panoramic views of the snow-covered mountains and is a popular destination for tourists.</p><p>Accessibility: Lachung is relatively remote and can be reached by road from Gangtok, the capital of Sikkim, which is approximately 125 kilometers away. The journey to Lachung takes you through some of the most scenic landscapes in the region.</p><p>Permit Requirements: Travelers to Lachung must obtain a permit from the Sikkim Tourism Department, as the village is located in a restricted area. It\'s advisable to check permit requirements and road conditions before planning a trip.</p><p>In summary, Lachung is a hidden gem in the Himalayas, offering a perfect blend of natural beauty, culture, and adventure. Whether you\'re an avid trekker, a nature lover, or simply seeking a peaceful getaway in the mountains, Lachung has something to offer every traveler. It provides an opportunity to immerse yourself in the pristine beauty of the Himalayas and experience the warm hospitality of the local Tibetan-influenced culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34559,0,NULL,NULL,'Lachung',0,NULL,NULL,NULL,NULL,NULL,'60_1695638548.png','60_1695638548.png','India','101',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Lachung vacations, Sikkim beauty, mountain escape','\"Lachung\'s Himalayan Haven with iNeedTrip\"','','',NULL,NULL,NULL,0),(61,NULL,NULL,'\"Explore Karatu, Tanzania, the gateway to Northern Safari wonders. Discover wildlife-rich landscapes, cultural encounters, and Ngorongoro beauty.\"',NULL,'<p>Karatu, a tranquil town situated in the northern highlands of Tanzania, serves as a gateway to two of East Africa\'s most iconic wildlife destinations: the Serengeti National Park and the Ngorongoro Conservation Area. While often overshadowed by its famous neighbors, Karatu offers its own unique charm, making it an excellent base for travelers seeking unforgettable safari adventures and cultural encounters.</p><p>Key Highlights:</p><p>Serengeti National Park: Karatu is the closest town to the legendary Serengeti, a UNESCO World Heritage Site renowned for the Great Migration. Embark on thrilling game drives to witness the Big Five and the annual wildebeest migration.</p><p>Ngorongoro Conservation Area: Explore the Ngorongoro Crater, a natural wonder teeming with wildlife. The crater is often referred to as the \"Garden of Eden\" due to its high concentration of animals, including lions, elephants, and rhinos.</p><p>Cultural Visits: Experience the rich culture of the local Iraqw and Maasai communities. You can visit traditional villages, learn about their customs, and purchase handcrafted souvenirs.</p><p>Coffee Plantations: Karatu is surrounded by lush coffee plantations. Take a guided tour to learn about the coffee-making process and sample freshly brewed Tanzanian coffee.</p><p>Lake Manyara National Park: Located nearby, this park is famous for its tree-climbing lions and diverse birdlife. It\'s an excellent spot for birdwatching and wildlife photography.</p><p>Gibb\'s Farm: Stay at the historic Gibb\'s Farm, a luxurious lodge with a focus on sustainable practices. Enjoy farm-to-table dining, spa treatments, and beautiful gardens.</p><p>Hiking: Explore the beautiful landscapes surrounding Karatu on foot. There are various trails and guided hikes available for nature enthusiasts.</p><p>Local Markets: Visit the bustling markets in Karatu to shop for fresh produce, traditional crafts, and souvenirs. It\'s an opportunity to interact with the friendly locals.</p><p>Empakaai Crater: Embark on a trek to Empakaai Crater, known for its mesmerizing views and a lake at the crater\'s floor. It\'s a rewarding hiking experience.</p><p>Wildlife Conservation Centers: Learn about local conservation efforts at centers like the Endulen Wildlife Research Centre, which focuses on the protection of Maasai giraffes.</p><p>Night Skies: Karatu\'s clear night skies offer excellent stargazing opportunities. Marvel at the African constellations and celestial wonders.</p><p>Luxury Lodges: Karatu boasts a range of lodges and accommodations, from boutique hotels to luxury lodges, providing comfortable stays for safari enthusiasts.</p><p>Karatu\'s strategic location, surrounded by natural beauty and wildlife-rich areas, makes it an ideal starting point for unforgettable safaris in Tanzania. Whether you\'re exploring the untamed wilderness of the Serengeti, encountering indigenous cultures, or simply relishing the serene atmosphere, Karatu promises an authentic African adventure.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13557,0,NULL,NULL,'Karatu',0,NULL,NULL,NULL,NULL,NULL,'61_1694672983.png','61_1694672983.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Karatu Tanzania\r\nNorthern Safari gateway\r\nTanzanian wildlife\r\nKaratu cultural experiences\r\nNgorongoro Crate','\"Karatu, Tanzania: Gateway to Northern Safari Wonders\"','','',NULL,NULL,NULL,0),(62,NULL,NULL,'Jaipur Tour: INeedTrip offers Jaipur holiday and Honeymoon tour packages at affordable rates. Explore our Jaipur Travel Packages and get best deals on Jaipur Packages.',NULL,'<p style=\"text-align: justify; \">Welcome to The Royal Land of the Rajputs and Maharaja\'s, a top tourist destination in India. There are many mesmerizing places to visit in Jaipur and learning the rich culture and history of the past is one incredible experience. A large number of the palaces are currently luxury hotels that let you experience the life of a King to the visitors for a day or few days at a bit expensive price.&nbsp;</p><p style=\"text-align: justify; \">Jaipur draws in tourists from around the world for the innumerable fairs and festivals held here, the fascinating activities for tourists, shopping at the back lane markets of the past, and best of all to see the majestic forts and palaces. <b>Jaipur tour package</b> for a royal vacation! Each time you visit Jaipur there is something unique that this Pink city of Rajasthan has to offer.&nbsp;</p><p style=\"text-align: justify; \"><b>Top Fascinating Places to Visit In Jaipur</b></p><p style=\"text-align: justify; \">The pink city is loaded up with extravagant old Havelis, pink buildings in the old city, and grandiose palaces and forts that draw the attention of travelers from around the world. They are the most popular attractions of Jaipur including palace residences, defense forts, and so on. Jaipur holiday package to treat yourself to a royal vacation!</p><p style=\"text-align: justify; \">&nbsp;These historic structures exhibit the rich culture of the different grand dynasties and rulers. There are a few such royal homes and some are overseen by the top heritage hotel chains and are either palace hotels or luxury resorts.</p><p style=\"text-align: justify; \"><b>Here Are The Top Charming Places To Visit In Jaipur:</b></p><ol><li style=\"text-align: justify;\">Amber Fort and Palace</li><li style=\"text-align: justify;\">Nahargarh Fort</li><li style=\"text-align: justify;\">Hawa Mahal</li><li style=\"text-align: justify;\">Jal Mahal</li><li style=\"text-align: justify;\">Jaigarh Fort</li><li style=\"text-align: justify;\">Jantar Mantar</li><li style=\"text-align: justify;\">City Palace</li><li style=\"text-align: justify;\">Rambagh Palace</li><li style=\"text-align: justify;\">Panna Meena ka Kund</li><li style=\"text-align: justify;\">Galtaji or Galta Monkey Temple</li><li style=\"text-align: justify;\">Govind Dev Ji Temple</li><li style=\"text-align: justify;\">Albert Hall Museum</li><li style=\"text-align: justify;\">Birla Mandir</li><li style=\"text-align: justify;\">Jaipur Zoo</li><li style=\"text-align: justify;\">Man Sagar Lake</li><li style=\"text-align: justify;\">Chulgiri Jain Temple</li><li style=\"text-align: justify;\">Achrol Fort</li><li style=\"text-align: justify;\">Sambhar Lake</li></ol><p style=\"text-align: justify; \">Jaipur is one of those captivating tourist destinations which can give you many motivations to visit. From its delightful and astounding architectural landmarks to making some wonderful memories with your friends and family, Jaipur makes the perfect tourist destination to lure you. Jaipur tour packages are sure to woo you away!</p><p style=\"text-align: justify; \"><b>Fun &amp; Adventurous Things to Do In Jaipur</b></p><p style=\"text-align: justify; \">Jaipur is a city brimming with encounters. This magnificent city has plenty of not simply royal palaces and forts for you to visit and travel around, yet additionally fun and adventurous to extinguish your hunger for some thrilling activities. There are adventurous activities that you can indulge in Jaipur that will leave some effective recollections for you. <b>Jaipur package</b> filled with fun and adventure only!</p><p style=\"text-align: justify; \">Other than partaking in your charming visit through the city, ensure that you include these pleasant activities on your rundown for totally appreciating every single snapshot of your vacation. Here is the rundown of top things to do whenever you are in the Pink City for an unforgettable and thrilling holiday experience.</p><ol><li style=\"text-align: justify;\">Jhalana Leopard Safari</li><li style=\"text-align: justify;\">Chokhi Dhani</li><li style=\"text-align: justify;\">Raj Mandir Cinema</li><li style=\"text-align: justify;\">Masala Chowk</li><li style=\"text-align: justify;\">Light &amp; Sound Show Amber Fort</li><li style=\"text-align: justify;\">Wall City Night Tour</li><li style=\"text-align: justify;\">Amar Jawan Jyoti</li><li style=\"text-align: justify;\">Jawahar Circle</li><li style=\"text-align: justify;\">Sisodia Rani Garden and Palace</li><li style=\"text-align: justify;\">Central Park</li><li style=\"text-align: justify;\">Hot Air Balloon Ride</li><li style=\"text-align: justify;\">Pink Pearl Water Park</li><li style=\"text-align: justify;\">Appu Ghar&nbsp;</li><li style=\"text-align: justify;\">Water valley trek</li><li style=\"text-align: justify;\">Chour Ghati trek</li><li style=\"text-align: justify;\">Bhuteshwar Nath Mahadev</li><li style=\"text-align: justify;\">Bagru Village Block Printing</li><li style=\"text-align: justify;\">Hathni Kund</li><li style=\"text-align: justify;\">Attend Vintage Car Rally in February</li></ol><p style=\"text-align: justify; \"><b>For The Shopaholics, Shop in The Best Vibrant Markets In Jaipur</b></p><p style=\"text-align: justify; \">The lively and colorful city of Jaipur will make your feet consequently head towards its clamoring neighborhood marketplaces like Johari Bazaar. It is one of the must-visit shopping destinations for every tourist. Jaipur tour package, experience the idea of living in a grand city and enjoying the shopping!</p><p style=\"text-align: justify; \">You can visit this market to search for the ethnic decorative gold, silver, and gemstone jewelry renowned in Rajasthan. Shopaholics will be awestruck checking out the wide assortment of wonderfully planned handmade jewelry available at this vibrant marketplace.</p><ol><li style=\"text-align: justify;\">Johari Bazaar</li><li style=\"text-align: justify;\">Bapu Bazaar</li><li style=\"text-align: justify;\">World Trade Park</li><li style=\"text-align: justify;\">Tripolia Bazar</li><li style=\"text-align: justify;\">Nehru Bazar</li><li style=\"text-align: justify;\">Chandpole Bazaar</li><li style=\"text-align: justify;\">Kishanpole Bazaar</li><li style=\"text-align: justify;\">Sireh Deori Bazaar</li><li style=\"text-align: justify;\">Mirza Ismail Road</li><li style=\"text-align: justify;\">Tibbati Market</li><li style=\"text-align: justify;\">Anokhi&nbsp;</li><li style=\"text-align: justify;\">Gaurav Tower&nbsp;</li><li style=\"text-align: justify;\">The Gem Palace&nbsp;</li><li style=\"text-align: justify;\">Kripal Kumbh</li><li style=\"text-align: justify;\">Aravali Bazaar</li><li style=\"text-align: justify;\">Purohit Ji Ka Katla</li><li style=\"text-align: justify;\">Teatro Dhora</li><li style=\"text-align: justify;\">Jaipur Pink</li></ol><p style=\"text-align: justify; \">So, if you\'re a shopaholic, don\'t look elsewhere for a customer\'s heaven! The exceptional magnificence and the traditional touch of the Jaipur’s glory address the things that will leave you stricken right away. You don\'t have to ponder regarding which spots to visit in Jaipur for shopping; all the marketplaces are the best. <b>Jaipur holiday package</b> for a vibrant vacation experience!</p><p style=\"text-align: justify; \"><b>Savor the Delicious Cuisines Of Jaipur</b></p><p style=\"text-align: justify; \">Jaipur, the notable pink city is well known for its majestic forts, grand palaces, rich heritage, culture, and traditions. In any case, aside from this load of popular attractions, the one thing that makes this city unique is its varying and exotic flavors of cuisines.&nbsp;</p><p style=\"text-align: justify; \">Dishes starting from dal-baati-churma, keema baati, laal maas, ghewar, kulfi, and a ton of different things to eat in Jaipur that a treat for your taste buds. Rajasthani people sure expertise to live in magnificence and their food is just about as awe-inspiring as their living style. Go for the Jaipur tour package!</p><p style=\"text-align: justify; \">For the simplicity of the multitude of voyagers visiting this great city, we have listed a rundown of the street food options that you should definitely relish!</p><p style=\"text-align: justify; \"><b>Best Dishes to Try:</b></p><ol><li style=\"text-align: justify;\">Dal Baati Churma</li><li style=\"text-align: justify;\">Keema Baati</li><li style=\"text-align: justify;\">Rajasthani Thali</li><li style=\"text-align: justify;\">Golgappa&nbsp;</li><li style=\"text-align: justify;\">Pyaaz Kachori&nbsp;</li><li style=\"text-align: justify;\">Shrikhand</li><li style=\"text-align: justify;\">Ghewar</li><li style=\"text-align: justify;\">Mawa Kachori</li><li style=\"text-align: justify;\">Mirchi Bada</li><li style=\"text-align: justify;\">Gatte Ki Subzi</li><li style=\"text-align: justify;\">Laal Maas</li></ol><p style=\"text-align: justify; \"><b>Best Places to Eat:</b></p><ol><li style=\"text-align: justify;\">Peacock Restaurant</li><li style=\"text-align: justify;\">Padao Restaurant</li><li style=\"text-align: justify;\">1135 AD</li><li style=\"text-align: justify;\">The Tattoo Cafe &amp; Lounge</li><li style=\"text-align: justify;\">Forresta</li><li style=\"text-align: justify;\">Steam</li></ol><p style=\"text-align: justify; \">When visiting this magnificent city people frequently get mistaken for a particularly shifted choice of dishes. The local street food of this city is fiery, ghee-trickling, and simply mouth-watering. Relishing the dishes here doesn\'t mean only trying out the local foods, but it is a cultural experience! Choose Jaipur Holiday Package for a vibrant and regal vacation experience!</p><p style=\"text-align: justify; \"><b>Best Time to Visit Jaipur</b></p><p style=\"text-align: justify; \">Inferable from its desert location, the climate in Jaipur in December is very favorable, making it a most loved spot for a trip. The storm season in Jaipur begins in the month of June and keeps going till September. Thus, the best ideal months to visit Jaipur are from November to March when there is winter and the climate is great for outdoor exploration and other activities.&nbsp;</p><p style=\"text-align: justify; \">Why not check out the Jaipur honeymoon package? Enjoy a romantic vacation like a royal!</p><p style=\"text-align: justify; \"><b>How to Reach Jaipur?</b></p><p style=\"text-align: justify; \"><b>By Air:</b></p><p style=\"text-align: justify; \">The closest domestic airport in Jaipur is the Sanganer airport which is only 10 km away from the downtown area. You can easily get taxis and prepaid cabs from the air terminal to the city. Jaipur airport is well connected to major cities of India.</p><p style=\"text-align: justify; \"><b>By Road:</b></p><p style=\"text-align: justify; \">There are government and private buses running from major cities of India like Delhi, Ahmedabad, Mumbai, and others. You can hire cabs from major cities to arrive at Jaipur. The accessibility of the cabs changes every now and then. Government buses run regularly from urban areas close to Jaipur and there are daily transports from different parts of the country to the city.&nbsp;</p><p style=\"text-align: justify; \">Jaipur has one of the best road networks and is connected to the major national highways. NH 11, 12, and 8 connect Jaipur with many towns and cities. You can easily find budget-friendly transports and luxury deluxe coaches to arrive at Jaipur. Jaipur package, a trip to explore the city of palaces!</p><p style=\"text-align: justify; \"><b>By Rail:</b></p><p style=\"text-align: justify; \">The Jaipur railway station is well connected to major cities of India through direct train or through the connecting train. Direct trains are easily available from Delhi. All railway heads are well connected with Delhi and one can undoubtedly find trains from Delhi to Jaipur instantly. The closest railway junction of Jaipur is in fact located within a few kilometers from the city center. If you want to enjoy a luxury train ride experience, you can ride in the luxury trains like Maharajas Express, Palace on Wheels, and Royal Rajasthan on Wheels.&nbsp;</p><p style=\"text-align: justify; \"><b>Why Choose A Jaipur Tour Package To Explore This City?</b></p><p style=\"text-align: justify; \">Be it a short trip or a long vacation, a relaxing stay, or an adventure holiday, however, you want to enjoy your vacation, \'I Need Trip\' has the right Jaipur vacation tours for you to browse.&nbsp;</p><p style=\"text-align: justify; \">Hoping to enjoy? Remember to look at our luxury <b>Jaipur tour packages</b> offering the best of hotels and inclusions intended to spoil you on your Jaipur trip. If you wish to find out about the Jaipur tour package, feel free to get in touch with us.</p><p style=\"text-align: justify; \"><i><b>Why not choose Jaipur for your next vacation? Don’t miss the opportunity to discover the ‘City of Palace’.</b></i></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12995,0,NULL,NULL,'Jaipur',0,NULL,NULL,10,NULL,NULL,'62_1634191604.jpg','62_1695470416.png','India','101',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tour to Jaipur, Best Package Jaipur, Book Jaipur Tour, Book Jaipur Holiday Package, Cheap Jaipur Package, Best Jaipur Honeymoon Package, Explore Jaipur Package, Jaipur Honeymoon, Jaipur Trip Deals, Best Deals Jaipur.','Book Jaipur Holiday Packages, Jaipur Honeymoon Tour Package','','',NULL,NULL,NULL,0),(63,NULL,NULL,'\"Explore the crossroads of cultures in Istanbul, Turkey. Witness iconic landmarks, vibrant bazaars, and the enchanting blend of Europe and Asia.\"',NULL,'<p>Istanbul, the majestic city where East meets West, is a mesmerizing blend of history, culture, and architectural splendor. Straddling two continents across the iconic Bosphorus Strait, Istanbul offers a captivating journey through time and tradition.</p><p>With a history that spans millennia, Istanbul is a living testament to the rise and fall of great empires. It was once Byzantium, then Constantinople, and finally, Istanbul. The Hagia Sophia, an architectural masterpiece, serves as a tangible link to this historical evolution. Originally a cathedral, then a mosque, and now a museum, it reflects the city\'s complex religious and cultural heritage.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12905,0,NULL,NULL,'Istanbul',0,NULL,NULL,NULL,NULL,NULL,'63_1694671303.png','63_1694671303.png','Turkey','222',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Istanbul Turkey\r\nIstanbul landmarks\r\nTurkish bazaars\r\nEurope-Asia bridge\r\nTurkish culture','\"Istanbul, Turkey: Bridging Continents, Blending Cultures\"','','',NULL,NULL,NULL,0),(64,NULL,NULL,'Cappadocia Packages - Book your Cappadocia tour package at the best price with iNeedTrip. Click to book customized cheap Cappadocia holiday packages & get exciting deals now.',NULL,'<p>Cappadocia\'s geological wonders are the stuff of dreams. The famous \"fairy chimneys,\" whimsical rock formations, were sculpted over millennia by volcanic activity and erosion. They create a landscape that feels otherworldly, as if plucked from the pages of a fantasy novel. These towering spires dot the horizon, inviting exploration and wonder.A hot air balloon ride at sunrise is an iconic Cappadocian experience. Drifting above this ethereal landscape as the first light of day illuminates the fairy chimneys is a breathtaking adventure that promises memories to last a lifetime.Cappadocia\'s history is equally fascinating. It has been home to various civilizations throughout the ages, including the Hittites, Persians, and early Christians. The region\'s rock-cut churches and monasteries, adorned with exquisite frescoes, provide a glimpse into its religious and artistic heritage.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5094,0,1,NULL,'Cappadocia',0,NULL,NULL,NULL,NULL,NULL,'64_1691148916.png','64_1694590659.png','Turkey','222',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Cappadocia Tour Packages, Cappadocia Holiday Packages, Cappadocia Honeymoon Packages','Cappadocia Tour Packages, Book Cappadocia Holiday Packages - INT','','',NULL,NULL,NULL,0),(65,NULL,NULL,'Arusha Packages - Book your Arusha tour package at the best price with iNeedTrip. Click to book customized cheap Arusha holiday packages & get exciting deals now.',NULL,'<p>Arusha, a vibrant city in northern Tanzania, serves as a gateway to some of the most spectacular natural wonders on the African continent, including Mount Kilimanjaro, Africa\'s highest peak, and the world-famous Serengeti National Park. This bustling urban center is more than just a starting point for safari adventures; it also boasts its own unique attractions and cultural charm. Here\'s an overview of what makes Arusha a captivating destination:</p><p>Key Highlights:</p><p>Gateway to Wildlife Safari: Arusha is often the first stop for travelers embarking on wildlife safaris in Tanzania. It\'s conveniently located near iconic national parks like Serengeti, Ngorongoro Crater, and Tarangire, making it the perfect starting point for exploring East Africa\'s incredible wildlife.</p><p>Mount Kilimanjaro: Arusha is the nearest major city to Mount Kilimanjaro, making it a popular base for climbers attempting to conquer the Roof of Africa. Even if you\'re not climbing, you can enjoy stunning views of this majestic mountain from various vantage points in the city.</p><p>Cultural Diversity: Arusha is a melting pot of cultures and ethnicities, with a diverse population that includes the Maasai, Chaga, and Meru tribes. You can experience the rich cultural heritage of Tanzania through traditional music, dance, and local markets.</p><p>Arusha National Park: Located just a short drive from the city, Arusha National Park offers a taste of Tanzanian wildlife and landscapes. It\'s known for its lush rainforests, diverse birdlife, and the stunning Momella Lakes, which attract flamingos and other waterfowl.</p><p>Coffee Plantations: The region around Arusha is known for its coffee production. Visitors can tour local coffee plantations to learn about the coffee-making process and enjoy freshly brewed Tanzanian coffee.</p><p>Maasai Market: The Maasai Market in Arusha is a bustling marketplace where you can shop for traditional Maasai handicrafts, beaded jewelry, clothing, and souvenirs. It\'s a great place to pick up authentic Tanzanian gifts.</p><p>Cultural Heritage Center: This center offers insights into Tanzanian culture and history through its museum and art gallery. You can also purchase local crafts and artworks here.</p><p>Hot Air Balloon Safaris: Arusha offers the unique opportunity to take a hot air balloon safari over the Serengeti, providing an unparalleled perspective on the wildlife and landscapes below.</p><p>Delicious Cuisine: Tanzanian cuisine is diverse and flavorful, with influences from Indian, Arab, and African culinary traditions. Be sure to try local dishes like Nyama Choma (grilled meat), Ugali (maize porridge), and Chapati (flatbread).</p><p>Scenic Landscapes: Beyond the city limits, Arusha is surrounded by lush forests, volcanic craters, and picturesque lakes. Exploring the region\'s natural beauty is a rewarding experience.</p><p>Wildlife Conservation: Arusha is home to several wildlife conservation organizations and sanctuaries dedicated to the protection and rehabilitation of animals, including orphaned elephants and chimpanzees.</p><p>Friendly Locals: Tanzanians are known for their warm hospitality and friendliness, making visitors feel welcome and at home.</p><p>Arusha is a city that encapsulates the spirit of adventure and exploration. Whether you\'re planning a safari, eager to conquer Kilimanjaro, or simply seeking a cultural immersion in Tanzania, Arusha offers a captivating blend of urban charm and access to some of the world\'s most awe-inspiring natural wonders.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1533,0,NULL,NULL,'Arusha',0,NULL,NULL,NULL,NULL,NULL,'65_1694513659.png','65_1694513659.png','Tanzania','214',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Arusha Tour Packages, Arusha Holiday Packages, Arusha Honeymoon Packages','Arusha Tour Packages, Book Arusha Holiday Packages - INT','','',NULL,NULL,NULL,0),(66,NULL,NULL,'Antalya Packages - Book your Antalya tour package at the best price with iNeedTrip. Click to book customized cheap Antalya holiday packages & get exciting deals now.',NULL,'<p>Antalya, often referred to as the \"Turkish Riviera,\" is a breathtaking coastal city located on the southwestern coast of Turkey. This stunning destination is famous for its idyllic Mediterranean beaches, rich historical heritage, vibrant culture, and a wide range of attractions that cater to travelers of all interests. Here\'s an overview of what makes Antalya a remarkable place to visit:</p><p>Key Highlights:</p><p>Beautiful Beaches: Antalya is renowned for its pristine, sun-kissed beaches, each offering a unique atmosphere. Konyaalti Beach and Lara Beach are popular choices, where you can relax on the golden sands and swim in the clear turquoise waters of the Mediterranean Sea.</p><p>Historic Old Town (Kaleici): The heart of Antalya is its historic old town, Kaleici, a maze of narrow cobblestone streets, Ottoman-era architecture, and charming courtyards. Here, you can explore ancient city walls, Hadrian\'s Gate, and visit the impressive Antalya Archaeological Museum.</p><p>Roman and Byzantine Ruins: Antalya\'s history dates back thousands of years, and evidence of its ancient past can be seen at sites like Perge, Aspendos, and Phaselis, which boast remarkably well-preserved Roman and Byzantine ruins.</p><p>Antalya Marina: The marina is a bustling hub with picturesque views of the sea, luxury yachts, and an array of restaurants and cafes. It\'s a great place for a leisurely stroll or to enjoy a meal with a view.</p><p>Waterfalls: Antalya is home to some magnificent waterfalls, including Duden Waterfalls and Kursunlu Waterfall Nature Park. These natural wonders offer a refreshing escape from the city\'s heat and a chance to enjoy the lush green surroundings.</p><p>Adventure Activities: Outdoor enthusiasts can partake in a variety of activities such as hiking in the nearby Taurus Mountains, paragliding from the cliffs, or diving to explore the underwater world of the Mediterranean.</p><p>Delicious Cuisine: Antalya\'s cuisine is a delightful fusion of Turkish and Mediterranean flavors. Don\'t miss trying local dishes like kebabs, gozleme (savory Turkish pastries), and fresh seafood at the city\'s restaurants and markets.</p><p>Cultural Events: Throughout the year, Antalya hosts cultural events and festivals celebrating music, dance, and art. The International Antalya Film Festival is a notable highlight.</p><p>Shopping: Antalya offers diverse shopping experiences, from modern malls to traditional bazaars. The Old Bazaar (Kaleici Carsi) is a great place to find handicrafts, textiles, spices, and souvenirs.</p><p>Gateway to the Turquoise Coast: Antalya serves as a gateway to the stunning Turquoise Coast, offering opportunities for boat trips, sailing, and exploring the many coastal towns and islands along the Mediterranean.</p><p>Mild Climate: Antalya enjoys a Mediterranean climate with mild winters and hot summers, making it a year-round destination.</p><p>Accessibility: Antalya is well-connected with its international airport, making it easy for travelers from around the world to access this beautiful city.</p><p>Antalya is a destination that seamlessly combines natural beauty, history, and modern amenities. Whether you\'re seeking relaxation on the beach, cultural exploration, or adventure in the great outdoors, Antalya has something to offer every traveler, making it a captivating and diverse destination on Turkey\'s Mediterranean coast.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1151,0,0,NULL,'Antalya',0,NULL,NULL,2,NULL,NULL,'66_1691149733.jpg','66_1694513290.png','Turkey','222',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Antalya Tour Packages, Antalya Holiday Packages, Antalya Honeymoon Packages','Antalya Tour Packages, Book Antalya Holiday Packages - INT','','',NULL,NULL,NULL,0),(67,NULL,NULL,'Amboseli National Park Packages - Book your Amboseli National Park tour package at the best price with iNeedTrip. Click to book customized cheap Amboseli National Park holiday packages & get exciting deals now.',NULL,'<p>Amboseli National Park, located in southern Kenya near the Tanzanian border, is one of East Africa\'s most iconic and picturesque wildlife reserves. This national park is renowned for its stunning vistas, diverse wildlife, and unique ecological features, making it a must-visit destination for safari enthusiasts and nature lovers. Here\'s an overview of Amboseli National Park:</p><p>Key Highlights:</p><p>Spectacular Views of Mount Kilimanjaro: Amboseli is famous for its breathtaking backdrop - the towering Mount Kilimanjaro, Africa\'s highest peak. On clear days, visitors are treated to incredible views of the snow-capped mountain, creating a stunning contrast with the park\'s savannah landscapes.</p><p>Abundant Wildlife: The park is home to a wide variety of wildlife, including African elephants, lions, leopards, cheetahs, hyenas, and numerous species of antelope. Elephants are particularly prominent in Amboseli, and the park is known for having some of the largest tuskers in Africa.</p><p>Birdwatching Paradise: Amboseli is a haven for birdwatchers, with over 400 bird species recorded within its boundaries. Bird enthusiasts can spot everything from flamingos and pelicans around the seasonal lakes to raptors and waterfowl.</p><p>Thriving Ecosystem: The park\'s ecosystem consists of swamps, dry lake beds, and acacia woodlands, providing diverse habitats for its inhabitants. The Amboseli swamps are a vital water source and attract wildlife during the dry season.</p><p>Cultural Encounters: Visitors to Amboseli have the opportunity to interact with the Maasai people, a semi-nomadic ethnic group known for their colorful attire, distinctive culture, and traditional villages near the park.</p><p>Game Drives: Game drives in open-top safari vehicles are the primary way to explore Amboseli. Experienced guides lead visitors on thrilling safaris, offering opportunities to witness the park\'s remarkable wildlife and landscapes up close.</p><p>Photography: Amboseli is a paradise for wildlife photographers, with its dramatic landscapes and charismatic animals providing endless opportunities for capturing memorable shots.</p><p>Conservation Efforts: The park is actively involved in conservation efforts, particularly for elephants, which face significant challenges due to poaching and habitat loss. Researchers and conservationists work tirelessly to protect and study these magnificent creatures.</p><p>Luxury Lodges: Amboseli offers a range of accommodation options, from luxury lodges with stunning views to more budget-friendly campsites, ensuring a comfortable stay for all types of travelers.</p><p>Accessibility: Amboseli is easily accessible by road from Nairobi, making it a popular destination for both day trips and longer safaris.</p><p>When visiting Amboseli National Park, travelers can expect not only a remarkable safari experience but also the chance to immerse themselves in the natural beauty and cultural heritage of this unique corner of Kenya. Whether you\'re marveling at elephants against the backdrop of Mount Kilimanjaro or admiring the park\'s incredible birdlife, Amboseli promises an unforgettable adventure in the heart of East Africa\'s wilderness.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,905,0,NULL,NULL,'Amboseli National Park',4,NULL,NULL,1,NULL,NULL,'67_1694512825.png','67_1694512825.png','Kenya','113',NULL,'2021-04-15 15:44:05','2021-04-15 15:44:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Amboseli National Park Tour Packages, Amboseli National Park Holiday Packages, Amboseli National Park Honeymoon Packages','Amboseli National Park Tour Packages, Book Amboseli National Park Holiday Packages - INT','','',NULL,NULL,NULL,0),(69,NULL,NULL,'\"Explore the Kashmiri elegance of Srinagar UT with iNeedTrip. Discover historic sites, scenic landscapes, and experience the timeless charm of Jammu and Kashmir.\"',NULL,'<p>Srinagar is the summer capital of the Indian union territory of Jammu and Kashmir. It is the largest city in the region and is known for its stunning natural beauty, historic significance, and unique culture. As the capital, Srinagar plays a crucial role in the administration and governance of Jammu and Kashmir, which is now a union territory. Here are some key highlights of Srinagar as a union territory:</p><p>1. Natural Beauty:</p><p>Srinagar is famous for its picturesque landscapes, with the Himalayan mountains serving as a dramatic backdrop. The city is surrounded by lush green valleys, pristine lakes, and meandering rivers, making it a paradise for nature enthusiasts.</p><p>2. Dal Lake:</p><p>Dal Lake, often referred to as the \"Jewel in the crown of Kashmir,\" is a central attraction of Srinagar. It is known for its serene waters, charming houseboats, and colorful floating gardens. Visitors can enjoy shikara rides on the lake and experience the unique way of life on the water.</p><p>3. Mughal Gardens:</p><p>Srinagar is home to several magnificent Mughal gardens, including Shalimar Bagh, Nishat Bagh, and Chashme Shahi. These gardens are known for their symmetrical designs, terraced lawns, and vibrant flowerbeds.</p><p>4. Hazratbal Shrine:</p><p>The Hazratbal Shrine, located on the northern shores of Dal Lake, is an important religious site for Muslims in the region. It houses a relic believed to be a hair of the Islamic prophet Muhammad and is a revered place of worship.</p><p>5. Houseboat Stays:</p><p>Srinagar is famous for its houseboats, which offer a unique and tranquil accommodation experience. Staying on a houseboat is a quintessential part of visiting the city and provides an opportunity to immerse oneself in the local culture.</p><p>6. Old City and Bazaars:</p><p>The old city of Srinagar is a treasure trove of history and culture. Narrow lanes, historic buildings, and bustling bazaars filled with traditional Kashmiri handicrafts make for an interesting and immersive exploration.</p><p>7. Art and Craft:</p><p>Srinagar is known for its exquisite handicrafts, including pashmina shawls, carpets, papier-mâché items, and saffron. The city is a shopper\'s paradise, with many markets and boutiques selling these beautiful crafts.</p><p>8. Cuisine:</p><p>The local cuisine in Srinagar is influenced by Kashmiri, Mughal, and Persian flavors. Delicacies like Rogan Josh, Dum Aloo, and various types of kebabs are popular among both locals and tourists.</p><p>9. Cultural Heritage:</p><p>Srinagar has a rich cultural heritage, with influences from Hindu, Muslim, and Tibetan cultures. It is a place where diverse communities coexist, contributing to the city\'s unique identity.</p><p>10. Handicraft Industry:</p><p>- The city is a hub for the handicraft industry, and many local artisans are known for their intricate and exquisite craftsmanship. The traditional process of crafting is passed down through generations.</p><p>11. Accessibility:</p><p>- Srinagar is accessible by air through the Srinagar International Airport, which connects the city to major Indian cities. It can also be reached by road from other parts of Jammu and Kashmir and neighboring states.</p><p>12. Political Significance:</p><p>- As the summer capital of Jammu and Kashmir, Srinagar plays a vital role in the governance and administration of the union territory, which was reorganized in 2019.</p><p>In summary, Srinagar, as the summer capital of Jammu and Kashmir, offers a unique blend of natural beauty, cultural diversity, and historical significance. Whether you\'re exploring its iconic Dal Lake, enjoying a traditional shikara ride, or savoring the local cuisine, Srinagar provides a memorable and enchanting experience in the heart of the Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35502,0,NULL,NULL,'Srinagar UT',0,NULL,NULL,NULL,NULL,NULL,'69_1695727722.png','69_1695727722.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Srinagar UT tours, Jammu and Kashmir beauty, timeless elegance','\"Srinagar UT\'s Kashmiri Elegance with iNeedTrip\"','','',NULL,NULL,NULL,0),(71,NULL,NULL,'\"Discover Ladakhi serenity in Sham Valley with iNeedTrip. Enjoy scenic landscapes, monasteries, and the peace of Ladakh.\"',NULL,'<p>Sham Valley, also known as the \"Apricot Valley\" or \"Orchard of Ladakh,\" is a picturesque region nestled in the northernmost part of India in the Union Territory of Ladakh. This enchanting valley is renowned for its stunning landscapes, vibrant culture, and serene monasteries. Here is an overview of Sham Valley:</p><p>Geography and Location:</p><p>Sham Valley is situated in the western part of Ladakh, which is known for its rugged terrain and high-altitude desert landscapes. It is approximately 120 kilometers (75 miles) west of Leh, the largest town in Ladakh. The valley is surrounded by the mighty Himalayas and the Zanskar Range, providing it with breathtaking vistas.</p><p>Scenic Beauty:</p><p>One of the most captivating aspects of Sham Valley is its natural beauty. The region is characterized by verdant fields, terraced farms, and fruit orchards, particularly apricot orchards that come alive with pink and white blossoms in spring and bear fruit in the summer. The contrasting colors of the lush green fields against the arid desert mountains create a striking visual spectacle.</p><p>Cultural Richness:</p><p>Sham Valley is home to several traditional Ladakhi villages where the local culture and way of life have remained largely unchanged for centuries. Visitors can immerse themselves in the rich Ladakhi culture, interact with friendly villagers, and even participate in local festivals and celebrations if timing permits.</p><p>Monasteries and Gompas:</p><p>The region is dotted with ancient monasteries and gompas (Buddhist temples), each offering a glimpse into Ladakh\'s spiritual heritage. Notable monasteries in Sham Valley include Likir Monastery, Alchi Monastery, and Phyang Monastery. These monastic centers are not only places of worship but also repositories of priceless art, thangka paintings, and religious relics.</p><p>Trekking and Outdoor Activities:</p><p>Sham Valley is an excellent destination for trekkers of all levels. The Sham Valley Trek, also known as the \"Baby Trek,\" is a relatively easy trek that provides an opportunity to explore the region on foot. The trek takes you through charming villages, green valleys, and offers panoramic views of the surrounding mountains.</p><p>Local Cuisine:</p><p>Ladakhi cuisine is a unique blend of Tibetan and North Indian influences, and Sham Valley offers an opportunity to savor traditional Ladakhi dishes. Try out local delicacies like momos (dumplings), thukpa (noodle soup), and tsampa (roasted barley flour). Additionally, the region\'s apricot-based products, including jams and dried fruits, are a must-try.</p><p>Accessibility:</p><p>Leh, the nearest major town, serves as the gateway to Sham Valley. Visitors typically fly into Leh\'s Kushok Bakula Rimpochee Airport and then drive to Sham Valley, enjoying the scenic beauty along the way. Road conditions can be challenging, especially during the winter months when the region experiences heavy snowfall.</p><p>Climate:</p><p>Sham Valley experiences extreme temperatures, with bitterly cold winters and short, mild summers. It\'s advisable to plan your visit during the summer months (June to September) when the weather is more hospitable, and the apricot trees are in full bloom.</p><p>Sham Valley offers a delightful blend of natural beauty, cultural heritage, and adventure, making it an appealing destination for travelers seeking an authentic Ladakhi experience. Whether you\'re interested in trekking, photography, or simply soaking in the serene surroundings, Sham Valley has something to offer every visitor.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35295,0,NULL,NULL,'Sham Valley',0,NULL,NULL,NULL,NULL,NULL,'71_1695809938.png','71_1695809938.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Sham Valley tours, Ladakh beauty, mountain retreat','\"Sham Valley\'s Ladakhi Serenity with iNeedTrip\"','','',NULL,NULL,NULL,0),(72,NULL,NULL,'\"Explore the high-altitude wonder of Pangong Lake with iNeedTrip. Witness the changing colors of the lake and experience Ladakh\'s tranquility.\"',NULL,'<p>Pangong Tso, also known simply as Pangong Lake, is a mesmerizing high-altitude lake situated in the Indian union territory of Ladakh, near the Line of Actual Control (LAC) with China. It is one of the largest and most famous lakes in the region, known for its stunning azure waters and breathtaking landscapes. Pangong Lake has gained international fame, thanks in part to its appearance in the Bollywood film \"3 Idiots.\" Here are some key highlights of Pangong Lake:</p><p>1. Scenic Beauty:</p><p>Pangong Tso is celebrated for its exceptional natural beauty. The lake stretches for approximately 134 kilometers, with about one-third of its length in India and the rest in Tibet (China).</p><p>The lake\'s most striking feature is its ever-changing shades of blue, ranging from deep blue to turquoise, depending on the angle of the sun and the time of day.</p><p>2. High Altitude:</p><p>Pangong Lake is situated at an elevation of over 4,350 meters (14,270 feet) above sea level. Its high altitude adds to the allure but also requires visitors to acclimatize to the thin mountain air.</p><p>3. Bird Watching:</p><p>The lake is an important breeding ground for several species of migratory birds, including seagulls and Brahminy ducks. Birdwatching is a popular activity for nature enthusiasts.</p><p>4. Bollywood Connection:</p><p>The lake gained widespread recognition after being featured in the Bollywood movie \"3 Idiots.\" The film\'s famous \"Pangong Lake scene\" has since become an iconic image associated with the lake.</p><p>5. Frozen Beauty:</p><p>During the winter months, Pangong Lake freezes over, transforming into a vast ice sheet. Travelers brave the cold to witness this unique winter wonderland.</p><p>6. Astronomy and Stargazing:</p><p>The high altitude, clear skies, and minimal light pollution make Pangong Lake an excellent location for stargazing and astrophotography.</p><p>7. Wildlife:</p><p>The region around Pangong Lake is home to several wildlife species, including marmots and Tibetan wild asses (kiangs). It\'s not uncommon to spot these animals in the surrounding grasslands.</p><p>8. Accessibility:</p><p>Pangong Lake is located approximately 160 kilometers from Leh, the capital of Ladakh. The journey to the lake involves driving through picturesque Ladakhi landscapes, including high mountain passes.</p><p>The road to Pangong Lake is often closed during the winter months due to heavy snowfall, making the lake accessible primarily from May to September.</p><p>9. Camping and Accommodation:</p><p>There are limited accommodations near Pangong Lake, primarily in the form of tented camps and guesthouses. Staying in a camp beside the lake allows visitors to experience its beauty up close.</p><p>10. Photography and Filming:</p><p>- The lake\'s surreal beauty and surrounding landscapes make it a favorite destination for photographers and filmmakers. Many documentaries and travel shows have featured Pangong Lake.</p><p>11. Border Area:</p><p>- It\'s important to note that Pangong Lake is located near the India-China border. Visitors may encounter military presence and restrictions in some areas, and a permit is required for travel beyond certain points.</p><p>In summary, Pangong Lake is a natural wonder and a must-visit destination for anyone exploring Ladakh\'s rugged beauty. Its serene waters, stunning reflections, and the dramatic backdrop of the Himalayan mountains make it a captivating and unforgettable experience for nature lovers, photographers, and adventure seekers.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35281,1,NULL,NULL,'Pangong',0,NULL,NULL,NULL,NULL,NULL,'72_1695723029.png','72_1695723029.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Pangong Lake tours, Ladakh beauty, high-altitude wonder','\"Pangong Lake\'s High Altitude Wonder with iNeedTrip\"','','',NULL,NULL,NULL,0),(73,NULL,NULL,'\"Discover a Kashmiri paradise in Pahalgam with iNeedTrip. Enjoy scenic landscapes, adventure activities, and the pristine beauty of Jammu and Kashmir.\"',NULL,'<p>Pahalgam is a charming hill station and a popular tourist destination located in the northern Indian state of Jammu and Kashmir. Nestled in the Pir Panjal range of the Himalayas, Pahalgam is renowned for its lush green meadows, pristine rivers, and breathtaking landscapes. It is often referred to as the \"Valley of Shepherds\" and serves as a gateway to the Amarnath Yatra pilgrimage. Here are some key highlights of Pahalgam:</p><p>1. Scenic Beauty:</p><p>Pahalgam is celebrated for its stunning natural beauty. The town is surrounded by dense pine forests, rolling meadows, and the picturesque Lidder River, making it a haven for nature lovers and photographers.</p><p>2. Lidder River:</p><p>The Lidder River meanders through Pahalgam, offering opportunities for trout fishing and white-water rafting. The riverbanks provide tranquil spots for picnics and leisurely walks.</p><p>3. Betaab Valley:</p><p>Betaab Valley, named after the Bollywood movie \"Betaab,\" was a filming location for the film. The valley is known for its lush greenery, crystal-clear streams, and a backdrop of snow-capped mountains.</p><p>4. Aru Valley:</p><p>Aru Valley, located just 15 kilometers from Pahalgam, is another scenic destination known for its meadows and trekking trails. It serves as a base camp for various treks in the region.</p><p>5. Chandanwari:</p><p>Chandanwari is the starting point of the famous Amarnath Yatra pilgrimage. It\'s a serene place with a beautiful bridge over the Lidder River, surrounded by breathtaking landscapes.</p><p>6. Baisaran:</p><p>Baisaran, also known as the \"Mini Switzerland of India,\" is a vast meadow surrounded by thick forests. It\'s an ideal place for horse riding and picnics.</p><p>7. Adventure Activities:</p><p>Pahalgam offers a range of adventure activities, including trekking, camping, and horse riding. The region is a popular destination for trekkers heading to places like Tarsar Lake, Marsar Lake, and Kolahoi Glacier.</p><p>8. Wildlife:</p><p>The nearby Dachigam National Park is home to the endangered Hangul deer and other wildlife species. Visitors may spot various animals and birds while trekking in the region.</p><p>9. Shopping:</p><p>Pahalgam has a local market where you can shop for Kashmiri handicrafts, including Pashmina shawls, rugs, and saffron.</p><p>10. Golfing:</p><p>- Pahalgam boasts a picturesque golf course, which is one of the highest golf courses in the world. It offers a unique golfing experience amidst the Himalayan mountains.</p><p>11. Shikara Ride:</p><p>- While Pahalgam is famous for its shikara rides in Dal Lake, you can also enjoy a peaceful shikara ride on the calm waters of the Lidder River.</p><p>12. Accessibility:</p><p>- Pahalgam is easily accessible from Srinagar, the summer capital of Jammu and Kashmir, which is approximately 95 kilometers away. The nearest railway station is Jammu, and the closest airport is Srinagar International Airport.</p><p>13. Climate:</p><p>- Pahalgam experiences a pleasant climate during the summer months, making it an ideal destination for escaping the heat. However, winters can be extremely cold, with heavy snowfall, making it a popular destination for winter sports enthusiasts.</p><p>In summary, Pahalgam is a serene and picturesque destination that offers a perfect blend of natural beauty, adventure, and cultural experiences. Whether you\'re exploring its scenic valleys, trekking in the Himalayas, or simply enjoying the tranquil surroundings, Pahalgam provides a refreshing and rejuvenating escape in the heart of the Kashmir Valley.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20566,1,NULL,NULL,'Pahalgam',0,NULL,NULL,NULL,NULL,NULL,'73_1695643779.png','73_1695643779.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Pahalgam tours, Kashmir beauty, adventure activities','\"Pahalgam\'s Kashmiri Paradise with iNeedTrip\"','','',NULL,NULL,NULL,0),(74,NULL,NULL,'\"Experience a retreat in the Nilgiri Hills of Ooty with iNeedTrip. Enjoy cool climate, lush gardens, and a peaceful escape in Tamil Nadu.\"',NULL,'<p>Ooty, short for Ootacamund and officially known as Udhagamandalam, is a picturesque hill station nestled in the Nilgiri Hills of the Indian state of Tamil Nadu. Often referred to as the \"Queen of Hill Stations,\" Ooty is renowned for its lush green landscapes, cool climate, beautiful gardens, and colonial charm. It has long been a popular destination for tourists seeking a respite from the heat of the plains and offers a wide range of attractions and activities. Here are some key highlights of Ooty:</p><p>1. Natural Beauty:</p><p>Ooty is known for its stunning natural beauty, characterized by rolling hills, tea plantations, dense forests, and pristine lakes. The landscape is dotted with eucalyptus and pine trees, creating a fragrant and serene atmosphere.</p><p>2. Botanical Gardens:</p><p>The Government Botanical Gardens in Ooty are a major attraction. They house a vast collection of exotic plants, rare trees, and vibrant flowerbeds. The Gardens also feature a fossilized tree trunk believed to be over 20 million years old.</p><p>3. Ooty Lake:</p><p>Ooty Lake is a man-made lake that offers boating facilities, making it a popular spot for both tourists and locals. The surrounding area has well-maintained gardens, a mini-train ride, and horseback riding.</p><p>4. Nilgiri Mountain Railway:</p><p>The Nilgiri Mountain Railway, a UNESCO World Heritage Site, is a historic narrow-gauge railway that connects Ooty with Mettupalayam. The journey offers spectacular views of the Nilgiri Hills and is known for its charming steam locomotives.</p><p>5. Tea Plantations:</p><p>Ooty is surrounded by lush tea estates that produce some of India\'s finest teas. Visitors can take guided tours of tea factories and plantations to learn about the tea-making process and sample various tea blends.</p><p>6. Rose Garden:</p><p>Ooty\'s Rose Garden is the largest rose garden in India. It boasts thousands of varieties of roses and other ornamental plants, making it a delightful place for a leisurely stroll.</p><p>7. Doddabetta Peak:</p><p>Doddabetta is the highest peak in the Nilgiri Hills and offers panoramic views of Ooty and the surrounding landscapes. There\'s an observatory at the summit with telescopes for better views.</p><p>8. Ooty Toy Train:</p><p>The Ooty Toy Train is a delightful way to explore the scenic beauty of the region. It takes visitors through tunnels, bridges, and picturesque landscapes.</p><p>9. Trekking and Outdoor Activities:</p><p>Ooty and the Nilgiri Hills offer numerous trekking trails and opportunities for outdoor activities such as camping and birdwatching.</p><p>10. Sim\'s Park:</p><p>- Located in the nearby town of Coonoor, Sim\'s Park is a well-maintained botanical garden known for its diverse collection of plant species and annual fruit and vegetable shows.</p><p>11. Cuisine:</p><p>- Ooty offers a variety of cuisine options, including South Indian dishes, North Indian fare, and international cuisine. Don\'t forget to try the local homemade chocolates and bakery products.</p><p>12. Climate:</p><p>- Ooty enjoys a pleasant climate throughout the year, making it an ideal destination for a summer getaway or a cozy winter retreat.</p><p>In summary, Ooty is a timeless destination that combines natural beauty, colonial charm, and a relaxed atmosphere. Whether you\'re exploring its botanical gardens, sipping on freshly brewed tea, or taking a leisurely stroll by the lake, Ooty provides a serene and rejuvenating experience in the lap of the Nilgiri Hills.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20161,1,NULL,NULL,'Ooty',0,NULL,NULL,NULL,NULL,NULL,'74_1695643343.png','74_1695643343.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ooty vacations, Tamil Nadu hill station, cool retreat','\"Ooty\'s Nilgiri Hills Retreat with iNeedTrip\"','','',NULL,NULL,NULL,0),(75,NULL,NULL,'\"Discover Ladakhi beauty in Nubra Valley with iNeedTrip. Enjoy panoramic landscapes, double-humped camels, and the serenity of Ladakh.\"',NULL,'<p>Nubra Valley is a breathtaking region located in the northeastern part of the Indian union territory of Ladakh, nestled high in the Himalayas. This valley is often referred to as the \"Orchard of Ladakh\" due to its lush greenery and fertile land, which is a stark contrast to the arid landscapes of much of Ladakh. Nubra Valley is renowned for its stunning landscapes, serene monasteries, and unique experiences, making it a popular destination for travelers seeking adventure and tranquility. Here are some key highlights of Nubra Valley:</p><p>1. Picturesque Landscape:</p><p>Nubra Valley is characterized by its surreal landscapes, with green oasis-like villages set against the backdrop of towering, snow-capped peaks. The Shyok River and the Nubra River meander through the valley, adding to its charm.</p><p>2. Diskit Monastery:</p><p>Diskit Monastery is the largest and oldest Buddhist monastery in Nubra Valley. It is perched dramatically on a hill and offers panoramic views of the valley. The monastery also houses a towering statue of Maitreya Buddha.</p><p>3. Hunder Sand Dunes:</p><p>The Hunder Sand Dunes are an unexpected natural wonder in the heart of Nubra Valley. Here, you can take a camel ride on the double-humped Bactrian camels, a unique and memorable experience.</p><p>4. Turtuk Village:</p><p>Turtuk is a remote and culturally rich village located near the Line of Control (LOC) with Pakistan. It was opened to tourists relatively recently and offers a glimpse into the Balti culture and way of life.</p><p>5. Panamik Hot Springs:</p><p>Panamik is famous for its natural hot springs, known for their therapeutic properties. Visitors can take a dip in the hot springs to relax and rejuvenate.</p><p>6. Khardung La Pass:</p><p>Khardung La is one of the world\'s highest motorable passes and serves as a gateway to Nubra Valley. The pass offers stunning views of the Karakoram Range and is a popular stop for adventurers.</p><p>7. Sumur Monastery:</p><p>Sumur Monastery is another significant religious site in Nubra Valley. It provides a serene and tranquil environment for meditation and reflection.</p><p>8. Cultural Diversity:</p><p>Nubra Valley is home to a diverse population, including Ladakhi Buddhists, Baltis, and Muslim communities. This cultural diversity is reflected in the local customs, festivals, and cuisine.</p><p>9. Trekking and Adventure:</p><p>The region offers excellent opportunities for trekking and adventure sports. Popular treks include the Nubra Valley trek, which offers stunning vistas of the region.</p><p>10. Access:</p><p>- Nubra Valley is accessible by road from Leh, the capital of Ladakh. The journey to Nubra Valley takes you through the Khardung La Pass, offering breathtaking views along the way.</p><p>11. Staying in Camps:</p><p>- Visitors to Nubra Valley often choose to stay in comfortable camps and guesthouses, providing a unique experience of being close to nature.</p><p>12. Environmental Conservation:</p><p>- The region has been making efforts to promote responsible tourism and environmental conservation to preserve its natural beauty.</p><p>In summary, Nubra Valley is a hidden gem in the Himalayas, offering a captivating blend of stunning landscapes, cultural richness, and unique experiences. Whether you\'re exploring ancient monasteries, riding camels in the desert, or simply savoring the tranquility of the valley, Nubra Valley provides an unforgettable journey into the heart of Ladakh\'s beauty and culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35282,1,NULL,NULL,'Nubra',0,NULL,NULL,NULL,NULL,NULL,'75_1695643034.png','75_1695643034.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Nubra Valley tours, Ladakh beauty, mountain retreat','\"Nubra Valley\'s Ladakhi Beauty with iNeedTrip\"','','',NULL,NULL,NULL,0),(76,NULL,NULL,'\"Explore Mysore\'s royal splendor with iNeedTrip. Visit opulent palaces, historic temples, and experience the regal heritage of Karnataka.\"',NULL,'<p>Mysore, officially known as Mysuru, is a historic city located in the southern Indian state of Karnataka. Often referred to as the \"City of Palaces,\" Mysore is renowned for its rich cultural heritage, royal history, and vibrant traditions. It is one of the most popular tourist destinations in South India and offers a unique blend of history, architecture, and modernity. Here are some key highlights of Mysore:</p><p>1. Mysore Palace:</p><p>The Mysore Palace, also known as the Amba Vilas Palace, is the crown jewel of the city. This magnificent palace is a stunning example of Indo-Saracenic architecture and is a UNESCO World Heritage Site. It is known for its grandeur, intricate craftsmanship, and vibrant paintings.</p><p>The palace is illuminated with thousands of light bulbs on Sundays and during special occasions, creating a breathtaking spectacle known as the \"Mysore Dasara Illumination.\"</p><p>2. Dasara Festival:</p><p>Mysore is famous for its grand Dasara festival, a 10-day celebration that commemorates the victory of the goddess Chamundeshwari over the demon Mahishasura. The festival features cultural events, processions, exhibitions, and the renowned Dasara parade with caparisoned elephants.</p><p>3. Chamundi Hill:</p><p>Chamundi Hill, located just outside Mysore, is home to the Chamundeshwari Temple. The temple is dedicated to the goddess Chamundeshwari and offers panoramic views of Mysore from its summit. It\'s a popular pilgrimage site and a great spot for trekking.</p><p>4. Brindavan Gardens:</p><p>The Brindavan Gardens, situated near the Krishnarajasagar Dam, is a beautifully landscaped garden with terraced lawns, musical fountains, and vibrant flower beds. The gardens come alive in the evenings with a synchronized musical fountain show.</p><p>5. St. Philomena\'s Church:</p><p>St. Philomena\'s Church is one of the largest churches in India and is known for its neo-gothic architectural style. The church\'s stained glass windows and impressive interiors are worth exploring.</p><p>6. Mysore Zoo:</p><p>The Sri Chamarajendra Zoological Gardens, popularly known as Mysore Zoo, is one of the oldest and most well-maintained zoos in India. It houses a diverse range of animals, including tigers, lions, and elephants.</p><p>7. Jaganmohan Palace:</p><p>Jaganmohan Palace is an elegant historic building that now houses an art gallery. It displays a remarkable collection of paintings, sculptures, and artifacts, including works by renowned artists like Raja Ravi Varma.</p><p>8. Yoga and Ayurveda:</p><p>Mysore is a hub for yoga and Ayurveda. It attracts yoga enthusiasts from around the world and is known for its Ashtanga yoga tradition.</p><p>9. Culinary Delights:</p><p>Mysore offers a wide range of South Indian cuisine, including dosas, idlis, vadas, and Mysore pak, a famous local sweet. The city is also known for its filter coffee.</p><p>10. Silk and Sandalwood:</p><p>- Mysore is famous for its silk sarees, known as Mysore silk, and sandalwood products. Visitors can shop for these items in the local markets.</p><p>11. Accessibility:</p><p>- Mysore is well-connected by road and rail. The nearest airport is Mysore Airport, and the closest major international airport is Kempegowda International Airport in Bangalore, approximately 170 kilometers away.</p><p>In summary, Mysore is a city that seamlessly blends its royal heritage with modernity. It offers a rich cultural experience, stunning architecture, and a vibrant atmosphere that attracts travelers from all over the world. Whether you\'re exploring its grand palaces, participating in the Dasara festivities, or simply strolling through its bustling markets, Mysore provides a captivating and memorable experience in the heart of Karnataka.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18821,1,NULL,NULL,'Mysore',0,NULL,NULL,NULL,NULL,NULL,'76_1695641587.png','76_1695641587.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mysore tours, Karnataka heritage, royal city','\"Mysore\'s Royal Splendor with iNeedTrip\"','','',NULL,NULL,NULL,0),(77,NULL,NULL,'Leh Ladakh Package: If you are planning to visit Leh Ladakh. Book Leh Ladakh trip and get exciting deals of Leh Ladakh Holiday packages at INeedTrip.',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\">Are you\r\nstill looking for reasons to visit Leh, Ladakh? On a hectic day, sitting in\r\nyour office and working extra, all one can think of, is a perfect vacation away\r\nfrom the crowds, somewhere serene and peaceful. Everyone’s dream vacation\r\ndestination consists of the snow-clad mountains, the lush green hills, striking\r\nbeaches, a lake, heavenly sky and luscious cuisines. Leh, Ladakh is the best\r\ndestination to visit, if you are craving for a similar vacation.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">From the\r\nmajestic rocky mountain ranges to the picturesque valleys to gorgeous lakes to\r\nblue skies and lots of adventurous activities for the adrenaline junkies, Leh,\r\nLadakh has them all for you. Interestingly this place is unlike any other to\r\nmake the most of your vacation, you need at least 7-10 days to cover all places\r\nand explore leisurely. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">It is one of\r\nthe places in India, marked down in every traveler’s bucket list. Ladakh’s\r\ngrandiose and rare beauty has enchanted the hearts of every tourist who has\r\nvisited this place. As a dream destination, whoever visits, the memories will\r\nremain etched in one’s mind for years. With Leh, <b>Ladakh Tour Packages</b> enjoy an absolutely breath-taking experience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Amidst the\r\nexhilarating mountains, visiting Leh, Ladakh will heal your soul. Want to grab\r\nyour bags now? But before that tick the places you want to explore in Leh,\r\nLadakh.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Want to know what Leh, Ladakh is famous for? <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Rocky\r\nmountain ranges embellish the background all around while the powerful Indus\r\nRiver which courses through a few deep valleys and high mountains will make you\r\nexperience a passionate feeling for this spot over and over again. Go for <b>Ladakh Trip</b> for an exhilarating and\r\nsecluded journey!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Here are\r\nsome of the captivating spots to visit and see which are incredibly famed in\r\nLeh, making it one of the splendid holiday destinations to visit in India!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Pristine monasteries abode the mountain\r\nranges</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh, Ladakh\r\nrenowned for its many monasteries, belongs to Buddhism. This is the reason it\r\nis home to probably the most spectacular monasteries in the country. You will\r\ndiscover a few red hat Buddhist monks in each of these monasteries with the\r\nbackdrop of rugged mountains and dreamlike view. People who have visited these\r\nmonasteries in Leh, Ladakh have uncovered that the meditation experience is\r\ndivine.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Many&nbsp;important\r\nfestivals are also celebrated&nbsp;in these monasteries. The&nbsp;renowned\r\nmonasteries in Ladakh&nbsp;are Hemis, Matho, Stakna, Thikshey, Spituk, Alchi\r\nand others.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Experiencing a rich cultural heritage</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh, Ladakh\r\nisn\'t just about the picturesque landscape but also has a rich cultural\r\nheritage and is influenced by the Tibetan culture, the majestic spiritual\r\nmonasteries such as Hemis, Spituk, Thiksey which is one of the largest\r\nmonasteries in Ladakh, are examples. As a spiritual land of the Buddhists, it\r\noffers the best meditation in its monasteries encased by the beautiful engraved\r\nwalls of Buddhist scriptures. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Time for\r\nsome adrenaline pumping activities<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Would you\r\nlike to see the mountain snow leopards? Would you like to enjoy a road trip in\r\nthe highest mountain passes? Would you like to do some trekking or river\r\nrafting? Is it true that you are adventurous? <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh, Ladakh\r\nis the best spot to have some adrenaline pumping activities and have some\r\nbizarre time. Camping by the spectacular lakes and valleys like Pangong, Nubra\r\nValley and Tso Moriri, adds to the rundown of reasons why Leh, Ladakh is\r\npopular. It appeals that many individuals take pleasure in the exceptionally\r\nrenowned white river rafting experience on the rambling River Zanskar. For a\r\nhassle free option, go for <b>Leh Ladakh\r\nTour</b> Packages.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>It is a\r\ntrekker’s paradise <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh, Ladakh\r\nis a land of startling treks or you can say it is a trekker\'s heaven. With a\r\nplenty of treks to set out, you can pick your top choice from treks like Chadar\r\ntrek, Stok Kangri trek, Snow leopard trek, Markha Valley trek, Lamayuru to\r\nDarcha trek, Lamayuru to Chilling Trek, Lamayuru to Alchi trek, Ripchar Valley\r\ntrek, Padum to Darcha trek, and Kashmir Great Lakes Trek.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh is known\r\nas a cold desert in India and comprises the world\'s highest saltwater Lake\r\nPangong.&nbsp; A bike ride to the highest\r\nmotorable road in the world, Khardung la is a dream for many adventurous bike\r\nriders. Ladakh is home to the frozen river trek, the sand dunes, and snow\r\nleopards.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The top\r\npasses are&nbsp;Khardung La,&nbsp;Chang La, Namshang La, Tanglang La and\r\nothers. Check out the <b>Leh Ladakh Tour\r\nPackages</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Don’t miss\r\nthe local cuisine<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Have you\r\never got the chance to take a sip of the pink tea? Leh, Ladakh is the only\r\nplace in India where you have the privilege to taste the pink tea, original\r\ntraditional momos and delicious thukpa. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">You must\r\nhave already eaten momos in a lot of places. Yet, here you can partake in the\r\ntraditional taste of Tibetan, Nepali and Indian styled flavored momos in a\r\nLadakhi kitchen. There are a ton of exceptional dishes with unique flavors for\r\nboth veggie lovers and non-vegan individuals. The chilly climate will let you\r\nenjoy a warm bowl of thukpa. You can also try out the local signature dish,\r\nChutagi, which is a dumpling soup, made of veggies like potatoes, spinach and\r\ncarrots. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The locals\r\nhere are exceptionally welcoming and if you become acquainted with them, you\r\ncan enjoy a homemade yak butter tea over a little chit-chat and get to know\r\nmore about the local lifestyle.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Colorful\r\nfestivals<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The best\r\ntime to visit Leh, Ladakh is during the festival season. Some of the important\r\ncelebrations include Hemis, Phyang, Tak, Dosmoche, Losar, and others. In each\r\nfestival different activities like colorful dances, drama performances, and\r\nremarkable styled celebration takes place. During the celebration of festivals\r\nmany instruments are used. One of the most remarkable festivals is the Masked\r\nLamas dance during Hemis festival.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-family: Cambria, serif;\"><b>Find\r\nyourself amidst nature<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">With the\r\nworld overwhelmed by social media today, it is practically difficult to get\r\nyourself not involved by it. A <b>Leh\r\nLadakh Trip</b> won\'t just let you forget about the hustle bustle of life,\r\nhowever it will make you forget time and even detach you from social media. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">And if you\r\nwant to see some magic, Magnetic Hill is the best spot to visit. It is 30 km\r\nfrom Leh, en route to Alchi and Kargil. A sign at this spot welcomes you to\r\nstop your vehicle over a white square mark on the road, switch off your car and\r\nleave it. Another captivating reason is the convergence of the two rivers,\r\nRiver Indus and River Zanskar.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Planning to visit Leh, Ladakh? But how to\r\nreach <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">You can take\r\na direct flight to Leh’s Kushok Bakula Rimpochee Airport from important cities\r\nof India like Delhi. If you want to come by train, the nearest railway stations\r\nare Chandigarh and Pathankot. You can also travel by roadways.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Grab for the best offers on Leh Ladakh\r\nholiday tour packages</b></span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Celebrate\r\nthe rare natural beauty with an oversimplified yet entrancing way of life of\r\nthis Kingdom with one of our ideal <b>Ladakh\r\ntour packages</b>. Be a part of an extraordinary travel story with us and savor\r\nour gift to travel, discover and praise life. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><i><b>What’s in it\r\nfor you? Sightseeing, transfer &amp; meals…. Your holiday your way:</b></i><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Ladakh SUV Expedition (Leh to Leh) for 7 Days, 6 Nights</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Ladakh SUV Expedition (Srinagar to Leh) for 8 Days, 7 Nights</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Ladakh SUV Expedition (Srinagar-Leh-Srinagar) for 10 Days, 9\r\n     Nights</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Ladakh SUV Expedition (Manali-Leh-Srinagar) for 12 Days, 11\r\n     Nights</span><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin;color:black\">Ladakh SUV Expedition\r\n     (Srinagar-Leh-Manali) for 12 Days, 11 Nights</span><span style=\"font-family:\r\n     &quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Leh, Ladakh\r\nis the ideal destination for all the solo travelers, family travelers and\r\nhoneymooners for it adds a touch of thrill, romance, and seclusion. Plan <b>Leh Ladakh Trip</b> as your next get-away\r\nescape with the most superb <b>Leh Ladakh\r\nTour packages</b> wholly designed for you.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif;\"><b>Why should you choose Leh, Ladakh as your\r\nnext holiday getaway?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">In case you\r\nare worried about whether your <b>Leh\r\nLadakh Trip </b>is worth taking in, there are many reasons that won’t\r\ndisappoint you to take on a journey in the heavenly abode. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">If you want\r\nto experience the true Tibetan culture, and the influence of Buddhism, Leh\r\nLadakh is the best spot with a diverse culture and entrancing experience.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Perhaps the\r\nmost serene place on earth, Leh Ladakh makes its guests experience captivating\r\nroad trips which are challenging and invigorating. It is a zenith of deserts,\r\nsnow, storms, lightning, as well as the sunrise and sunset, everything about it\r\nis outstanding. To get a glimpse of the best scenic beauty, you should pick a\r\nplace which holds a rich backdrop, covered by the dawn and dusk adding to its\r\nwonderful visuals.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Even the\r\nwinter lovers are welcomed here in Leh, Ladakh. Expecting you want to\r\nexperience the coolest winters amidst the frozen river, watch India\'s ice\r\nhockey and enjoy the snow.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Say hello, to <b>Leh Ladakh Package</b>!</span></i></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,15229,0,NULL,NULL,'Leh',0,NULL,NULL,5,NULL,NULL,'77_1695638965.png','77_1695639005.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Book Leh Ladakh Package, Tour Leh Ladakh, Leh Ladakh Tour, Book Ladakh Tour Package, Ladakh Package, Ladakh Trip, Leh Ladakh Trip, Book Ladakh Tour, Trip To Leh','Book Leh Ladakh Tours, Leh Holiday Packages, Leh Ladakh Trip','','',NULL,NULL,NULL,0),(78,NULL,NULL,'\"Discover Kullu, the Valley of Gods, with iNeedTrip. Enjoy lush valleys, adventure sports, and the spiritual aura of Himachal Pradesh.\"',NULL,'<p>Kullu, located in the Indian state of Himachal Pradesh, is a picturesque valley nestled in the lap of the mighty Himalayas. Often referred to as the \"Valley of the Gods,\" Kullu is renowned for its stunning natural beauty, lush green landscapes, pristine rivers, and a vibrant culture that has attracted travelers and nature enthusiasts for generations.</p><p>Key Highlights of Kullu:</p><p>Scenic Beauty: Kullu is celebrated for its breathtaking landscapes, which include snow-capped mountain peaks, dense deodar and pine forests, and lush green valleys. The Beas River, which flows through the valley, adds to the charm of this region.</p><p>Adventure Sports: Kullu is a hub for adventure sports and activities. White-water rafting in the Beas River is a thrilling experience, and the region offers several grade levels of rapids to cater to different levels of expertise. Paragliding in Solang Valley, trekking, and mountain biking are other popular adventure options.</p><p>Great Himalayan National Park: A UNESCO World Heritage Site, the Great Himalayan National Park, located near Kullu, is home to a rich variety of flora and fauna. The park is a paradise for nature lovers, trekkers, and wildlife enthusiasts. It offers opportunities to spot Himalayan species like the snow leopard, blue sheep, and the Himalayan tahr.</p><p>Religious Significance: Kullu has several ancient temples and shrines, making it a significant religious destination. The Raghunath Temple, dedicated to Lord Rama, and the Bijli Mahadev Temple are among the most visited. The valley is also known for its unique Dussehra celebrations, which attract devotees and tourists from far and wide.</p><p>Cultural Heritage: Kullu has a rich cultural heritage with its traditional music, dance, and handicrafts. The region is famous for its colorful and vibrant handicrafts, including shawls, rugs, and wooden carvings. The local fairs and festivals, such as the Kullu Dussehra, showcase the cultural richness of the valley.</p><p>Solang Valley: Just a short drive from Kullu, Solang Valley is a popular tourist destination known for its winter sports activities. During the winter months, the valley turns into a skiing and snowboarding haven. In the summer, it\'s an excellent place for trekking and zorbing.</p><p>Manikaran: Located near Kullu, Manikaran is a famous pilgrimage site known for its hot springs and the Gurudwara Sri Manikaran Sahib. Pilgrims from various faiths visit this holy place for its healing waters and spiritual significance.</p><p>Accessibility: Kullu is well-connected by road and can be reached from major cities in North India. The nearest airport is Bhuntar Airport, approximately 10 kilometers from Kullu, and the nearest major railway station is in Chandigarh, about 270 kilometers away.</p><p>In summary, Kullu is a captivating destination that offers a perfect blend of natural beauty, adventure, spirituality, and cultural experiences. Whether you\'re seeking the thrill of adventure sports, the serenity of the Himalayan landscape, or a glimpse into the rich traditions and heritage of the region, Kullu has something to offer every traveler. It\'s a place where you can immerse yourself in the splendor of the Himalayas while enjoying a wide range of outdoor activities and cultural exploration.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14570,1,NULL,NULL,'Kullu',0,NULL,NULL,NULL,NULL,NULL,'78_1695811936.png','78_1695637687.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kullu tours, Himachal Pradesh beauty, adventure activities','\"Kullu\'s Valley of Gods with iNeedTrip\"','','',NULL,NULL,NULL,0),(79,NULL,NULL,'\"Explore Kufri\'s winter wonderland with iNeedTrip. Enjoy snow adventures, scenic beauty, and the charm of Himachal Pradesh.\"',NULL,'<p>Kufri is a charming hill station situated in the state of Himachal Pradesh, India, located just 16 kilometers from the bustling city of Shimla. Nestled in the lap of the Himalayas, Kufri is renowned for its breathtaking natural beauty, lush landscapes, and a wide range of recreational activities, making it a popular destination for tourists and nature enthusiasts.</p><p>Key Highlights of Kufri:</p><p>Scenic Beauty: Kufri is celebrated for its picturesque landscapes, which include dense forests of pine and deodar trees, snow-capped Himalayan peaks, and verdant valleys. The town offers panoramic views of the surrounding hills and is a paradise for nature photographers.</p><p>Adventure Sports: Kufri is famous for its adventure activities, especially during the winter season. The town becomes a hub for winter sports like skiing and ice skating, attracting adventure seekers from all over the country. The Mahasu Peak is a popular spot for skiing and offers magnificent views of the Shivalik Range.</p><p>Kufri Fun World: This amusement park, located at the highest point in Kufri, offers various recreational activities like go-karting, zip-lining, and a range of thrilling rides. It\'s a great place for families and adventure enthusiasts.</p><p>Himalayan Wildlife Zoo: Kufri is home to the Himalayan Wildlife Zoo, which houses a variety of native Himalayan wildlife species, including rare and endangered animals like the Himalayan Monal, red panda, and snow leopard. It\'s a great place for animal lovers and provides opportunities for wildlife photography.</p><p>Nature Trails and Hiking: Kufri offers several nature trails and hiking routes that allow visitors to explore the region\'s lush greenery and serene surroundings. Trekking to nearby places like Chail and Fagu is a popular activity among adventure enthusiasts.</p><p>Apple Orchards: The region around Kufri is known for its apple orchards, and you can visit them during the apple season to see how apples are grown and harvested. You can also purchase fresh apples and apple-based products from local markets.</p><p>Museum: The Himachal Pradesh State Museum in Shimla, just a short drive away from Kufri, showcases the rich cultural and historical heritage of the state. It\'s a great place to learn about the history and art of Himachal Pradesh.</p><p>Shopping: Kufri offers a range of local handicrafts, woolen clothing, and souvenirs that make for excellent gifts and keepsakes. Don\'t forget to shop for warm clothing, as the weather can get chilly, especially in the winter.</p><p>Accessibility: Kufri is easily accessible from Shimla, which is well-connected by road and rail to major cities in North India. The nearest airport is in Shimla, while the nearest major airport is in Chandigarh, approximately 150 kilometers away.</p><p>In summary, Kufri is a delightful hill station that offers a perfect blend of natural beauty, adventure, and cultural experiences. Whether you\'re an adventure seeker, a nature lover, or simply looking for a serene getaway, Kufri has something to offer every traveler throughout the year. It\'s a place where you can immerse yourself in the tranquility of the Himalayas while enjoying exciting outdoor activities and exploring the region\'s rich cultural heritage.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34441,1,NULL,NULL,'Kufri',0,NULL,NULL,NULL,NULL,NULL,'79_1695636847.png','79_1695636847.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kufri tours, Himachal Pradesh winter, snow activities','\"Kufri\'s Winter Wonderland with iNeedTrip\"','','',NULL,NULL,NULL,0),(80,NULL,NULL,'\"Experience hill station delight in Kodaikanal with iNeedTrip. Enjoy misty hills, serene lakes, and a peaceful getaway in Tamil Nadu.\"',NULL,'<p>Kodaikanal, often referred to as the \"Princess of Hill Stations,\" is a charming hill station located in the southern Indian state of Tamil Nadu. Nestled in the Palani Hills of the Western Ghats, Kodaikanal is known for its cool climate, lush green landscapes, scenic beauty, and a variety of recreational activities that make it a popular tourist destination.</p><p>Key Highlights of Kodaikanal:</p><p>Pristine Natural Beauty: Kodaikanal is renowned for its pristine natural beauty. The town is surrounded by dense forests, rolling hills, and numerous lakes. The star attraction is Kodaikanal Lake, an artificial lake created in the 19th century, where visitors can enjoy boating and serene walks along the promenade.</p><p>Kodai\'s Climate: Due to its elevation at around 2,133 meters (7,000 feet) above sea level, Kodaikanal enjoys a pleasant and temperate climate throughout the year. This makes it an ideal escape from the scorching heat of the plains during the summer months.</p><p>Coaker\'s Walk: This picturesque walking path offers panoramic views of the surrounding hills, valleys, and the plains. It is a popular spot for nature enthusiasts and photographers, especially during sunrise and sunset.</p><p>Pillar Rocks: The Pillar Rocks are a set of three giant rock formations that stand tall and majestic. The views from here are truly breathtaking, and there is a well-maintained viewpoint for visitors to enjoy the scenery.</p><p>Berijam Lake: Located approximately 20 kilometers from the town, Berijam Lake is a tranquil and less crowded alternative to Kodaikanal Lake. It is surrounded by dense forests and is known for its pristine waters.</p><p>Flora and Fauna: Kodaikanal is home to a variety of flora and fauna, including rare and endangered species. The Shola forests in the region are ecologically significant, and visitors can spot diverse wildlife, such as bison, deer, and various species of birds.</p><p>Kurinji Flowers: The Nilgiri Hills, where Kodaikanal is situated, are known for the kurinji flowers that bloom once every 12 years. These flowers cover the hillsides in a brilliant shade of blue and attract tourists from all over the world.</p><p>Adventure Activities: For adventure enthusiasts, Kodaikanal offers opportunities for trekking, mountain biking, and horse riding. The region\'s hilly terrain provides numerous trekking trails with varying levels of difficulty.</p><p>Shopping: The local markets in Kodaikanal offer a variety of souvenirs, handicrafts, homemade chocolates, and aromatic spices. The Coaker\'s Walk area is a popular place to shop for these items.</p><p>Cuisine: Kodaikanal offers a range of culinary delights, including South Indian cuisine and a variety of street food. Don\'t miss trying the local delicacy, \"Kodaikanal plums,\" which are known for their unique flavor.</p><p>Accessibility: Kodaikanal can be reached by road from major cities in Tamil Nadu and neighboring states. The nearest major railhead is Kodai Road, about 80 kilometers away, and the nearest airport is Madurai Airport, approximately 120 kilometers away.</p><p>In summary, Kodaikanal is a hill station that offers a perfect blend of natural beauty, pleasant weather, and recreational activities. It provides a serene and rejuvenating escape for nature lovers, adventure seekers, and those looking for a break from the hustle and bustle of city life. Whether you want to unwind by a lake, explore the hills, or simply enjoy the cool climate, Kodaikanal has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14277,1,NULL,NULL,'Kodaikanal',0,NULL,NULL,NULL,NULL,NULL,'80_1695636451.png','80_1695636451.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kodaikanal vacations, Tamil Nadu hill station, misty retreat','\"Kodaikanal\'s Hill Station Delight with iNeedTrip\"','','',NULL,NULL,NULL,0),(81,NULL,NULL,'\"Discover Kochi\'s coastal elegance with iNeedTrip. Explore historic ports, multicultural heritage, and the beauty of Kerala\'s backwaters.\"',NULL,'<p>Kochi, also known as Cochin, is a vibrant and culturally rich port city located on the southwestern coast of India, in the state of Kerala. Often referred to as the \"Queen of the Arabian Sea,\" Kochi is one of Kerala\'s most prominent cities and serves as the commercial and cultural hub of the state. It is renowned for its unique blend of historical significance, stunning natural landscapes, and a rich tapestry of cultures that have evolved over centuries.</p><p>Key Highlights of Kochi:</p><p>Historical Significance: Kochi boasts a rich and diverse history that dates back several centuries. It was a major center for spice trade, and its strategic location along the Arabian Sea made it a coveted port for traders from Europe, the Middle East, and Asia. This rich history is reflected in the city\'s architecture, culture, and traditions.</p><p>Fort Kochi: Fort Kochi, a historic neighborhood, is a major attraction in the city. It is famous for its well-preserved colonial-era buildings, narrow streets, and artistic murals. The St. Francis Church, where Vasco da Gama was originally buried before his remains were moved to Portugal, and the iconic Chinese fishing nets are notable landmarks here.</p><p>Cultural Fusion: Kochi\'s culture is a unique blend of Indian, Portuguese, Dutch, and British influences. The city has a thriving arts scene with numerous art galleries, theaters, and cultural events that celebrate this diversity. The Kerala Kathakali Centre in Fort Kochi is known for its traditional Kathakali performances.</p><p>Jew Town and Synagogue: Located in the heart of Kochi, Jew Town is a historic area that is home to the Paradesi Synagogue, one of the oldest active synagogues in the Commonwealth. The area also features quaint shops selling antiques, spices, and handcrafted goods.</p><p>Cuisine: Kochi is a food lover\'s paradise. The city is renowned for its delectable seafood, and you can savor traditional Kerala dishes such as appam with stew, seafood curries, and banana leaf meals. The cosmopolitan nature of the city also means you can find a variety of international cuisines.</p><p>Backwaters: The backwaters of Kochi are a tranquil and picturesque network of lagoons, canals, and lakes. A houseboat cruise through the backwaters offers a unique perspective of rural life and the lush green landscapes of Kerala.</p><p>Kochi Biennale: The Kochi-Muziris Biennale is an international contemporary art festival that takes place every two years. It has gained recognition for its thought-provoking exhibits and has put Kochi on the global art map.</p><p>Marine Drive: Marine Drive is a picturesque promenade along the Arabian Sea, offering stunning sunset views, recreational activities, and a pleasant place for an evening stroll. It\'s a popular spot for both locals and tourists.</p><p>Accessibility: Kochi is well-connected by air, rail, and road. Cochin International Airport is the primary gateway to the city and serves both domestic and international flights. The city also has a well-developed road network, and the Ernakulam Junction is one of the major railway stations.</p><p>In summary, Kochi is a city that beautifully combines its historical heritage with modernity. Its rich cultural tapestry, stunning natural beauty, and culinary delights make it a must-visit destination for travelers looking to explore the diverse offerings of southern India. Whether you\'re interested in history, art, cuisine, or simply relaxing by the sea, Kochi has something to offer every type of traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14275,1,NULL,NULL,'Kochi',0,NULL,NULL,NULL,NULL,NULL,'81_1695636073.png','81_1695636073.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kochi tours, Kerala coast, multicultural city','\"Kochi\'s Coastal Elegance with iNeedTrip\"','','',NULL,NULL,NULL,0),(82,NULL,NULL,'\"Escape to Kasol\'s Parvati Valley with iNeedTrip. Enjoy scenic hikes, hippie culture, and the natural beauty of Himachal Pradesh.\"',NULL,'<p>Kasol, often referred to as \"Mini Israel\" or \"The Amsterdam of India,\" is a picturesque village nestled in the Parvati Valley of Himachal Pradesh, India. This small hamlet has gained immense popularity among travelers and backpackers for its stunning natural beauty, serene ambiance, and a unique blend of cultures that have made it a hub for both domestic and international tourists.</p><p>Natural Beauty:</p><p>Kasol is renowned for its breathtaking natural surroundings. Situated alongside the Parvati River and surrounded by lush green forests and towering snow-capped peaks, the village offers an escape into the lap of nature. The Parvati Valley is known for its pristine landscapes, making it a paradise for trekkers and nature enthusiasts.</p><p>Trekking and Adventure:</p><p>The region around Kasol is a haven for adventure seekers. Treks like Kheerganga, Tosh, and Malana are popular among visitors. The Kheerganga trek, in particular, is famous for its hot water springs, which offer a relaxing soak amidst the mountains. These treks provide an opportunity to explore the Himalayan wilderness and witness some awe-inspiring vistas.</p><p>Cultural Diversity:</p><p>Kasol has a diverse and welcoming community that includes locals, tourists, and expatriates, mainly Israelis. The Israeli influence is prominent in the village, with Hebrew signage, Israeli cafes, and the availability of Israeli cuisine, including delicious falafels and shawarmas. This cultural amalgamation creates a unique atmosphere where you can meet people from all around the world and learn about different cultures.</p><p>Trance and Music Scene:</p><p>Kasol has a vibrant trance and music scene, especially during the peak tourist season. The village hosts numerous music festivals and parties that draw electronic music enthusiasts from across the globe. Psychedelic trance and electronic dance music events are a common sight here, and they often continue late into the night.</p><p>Shopping and Souvenirs:</p><p>The local markets in Kasol offer a variety of handicrafts, jewelry, and clothing, making it a great place to shop for souvenirs. You can find items like colorful woolen shawls, dream catchers, and other bohemian-style goods. Don\'t forget to haggle with the local vendors for the best deals.</p><p>Nearby Attractions:</p><p>Kasol serves as a gateway to several other beautiful destinations in the Parvati Valley. Some nearby places of interest include Manikaran, famous for its hot springs and Gurudwara Sri Manikaran Sahib, and the enigmatic village of Malana, known for its unique culture and the \"Malana Cream\" hashish.</p><p>Serenity and Relaxation:</p><p>For those seeking a peaceful and rejuvenating getaway, Kasol offers plenty of opportunities to unwind. You can sit by the river, meditate, or simply enjoy the tranquility of the mountains. Many guesthouses and resorts in Kasol provide comfortable accommodations with stunning views, allowing visitors to relax and disconnect from the hustle and bustle of city life.</p><p>Accessibility:</p><p>Kasol is accessible from Bhuntar Airport, which is the nearest airport, as well as from the town of Manali. The village is well-connected by road, and there are regular buses and taxis plying between Kasol and major cities in Himachal Pradesh.</p><p>In summary, Kasol is a hidden gem in the Himalayas, offering a unique blend of natural beauty, adventure, cultural diversity, and a laid-back atmosphere. Whether you\'re a trekking enthusiast, a music lover, or simply looking for a peaceful retreat in the mountains, Kasol has something to offer every traveler. It\'s no wonder that this charming village has become a must-visit destination for those exploring the beauty of Himachal Pradesh.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35283,0,NULL,NULL,'Kasol',0,NULL,NULL,10,NULL,NULL,'82_1641466544.jpg','82_1695634934.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kasol vacations, Himachal Pradesh valley, nature retreat','\"Kasol\'s Parvati Valley Getaway with iNeedTrip\"','','',NULL,NULL,NULL,0),(83,NULL,NULL,'\"Discover meadow bliss in Gulmarg with iNeedTrip. Enjoy scenic landscapes, adventure activities, and the pristine beauty of Jammu and Kashmir.\"',NULL,'<p>Gulmarg, nestled in the pristine Himalayan region of Jammu and Kashmir in India, is a destination straight out of a fairytale. Often referred to as the \"Meadow of Flowers,\" Gulmarg is renowned for its breathtaking landscapes, lush meadows, and a wide range of outdoor activities. In this blog, we\'ll embark on a virtual journey to explore the natural wonders and adventurous experiences that make Gulmarg an enchanting destination.</p><p>Natural Beauty:</p><p>Gulmarg\'s landscape is nothing short of a masterpiece. During spring and summer, the meadows burst into a riot of colors with a profusion of wildflowers, while winters transform Gulmarg into a winter wonderland covered in a blanket of pristine snow.</p><p>Gulmarg Gondola:</p><p>The Gulmarg Gondola, one of the highest cable cars in the world, takes you to breathtaking heights, offering panoramic views of the Himalayas. The ride is an experience in itself, and once you reach the summit, you can enjoy activities like trekking, skiing, and snowboarding.</p><p>Skiing and Snowboarding:</p><p>Gulmarg is a renowned skiing and snowboarding destination, attracting enthusiasts from around the world. The powdery snow and challenging slopes make it a perfect winter sports haven.</p><p>Gulmarg Golf Course:</p><p>The Gulmarg Golf Course, one of the highest green golf courses globally, offers a unique golfing experience with stunning views of the surrounding mountains. It\'s often referred to as the \"Golfing Capital of India.\"</p><p>Alpather Lake:</p><p>Located a trek away from Gulmarg, Alpather Lake is a pristine gem surrounded by snow-clad peaks. It\'s a serene spot for picnics and leisurely walks.</p><p>Trekking and Hiking:</p><p>The surrounding mountains provide excellent trekking and hiking opportunities. The popular Gulmarg to Khilanmarg trek and the trek to Apharwat Peak are must-try experiences for adventure enthusiasts.</p><p>Cultural Exploration:</p><p>Explore the rich culture and traditions of the region by interacting with the warm and hospitable locals. Visit local markets and savor traditional Kashmiri cuisine.</p><p>St. Mary\'s Church:</p><p>The St. Mary\'s Church, an Anglican church built during the British colonial era, is a picturesque attraction with its old-world charm and architectural beauty.</p><p>Photography Paradise:</p><p>For photographers, Gulmarg is a paradise. The changing seasons, dramatic landscapes, and vibrant flora provide ample opportunities for stunning shots.</p><p>Apricot Blossom Festival:</p><p>If you visit in late spring, you might have the chance to witness the Apricot Blossom Festival when the orchards are in full bloom, creating a mesmerizing spectacle.</p><p>Conclusion:</p><p>Gulmarg, with its mesmerizing beauty and thrilling adventures, is a destination that captures the hearts of nature lovers and adventure seekers. Whether you\'re gliding on the Gulmarg Gondola, skiing down pristine slopes, or simply reveling in the natural beauty, Gulmarg offers a unique and soul-stirring experience. It\'s a place where the tranquility of meadows and the thrill of the mountains come together, inviting you to explore the pristine landscapes of the Kashmir Valley. For those seeking a picturesque escape and a taste of high-altitude adventure, Gulmarg stands as an enchanting destination that leaves an indelible mark on every traveler\'s soul.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11197,1,NULL,NULL,'Gulmarg',0,NULL,NULL,NULL,NULL,NULL,'83_1695469062.png','83_1695469062.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gulmarg tours, Kashmir beauty, meadow retreat','\"Gulmarg\'s Meadow Bliss with iNeedTrip\"','','',NULL,NULL,NULL,0),(84,NULL,NULL,'Bangalore Packages - Book your Bangalore tour package at the best price with I Need Trip. Click to book customized cheap Bangalore holiday packages & get exciting deals now.',NULL,'<p>Bangalore, also known as Bengaluru, is a dynamic and vibrant city located in the southern part of India. Renowned for its pleasant climate, lush gardens, and thriving tech industry, Bangalore offers a unique blend of tradition and modernity. In this blog, we\'ll explore the diverse facets of Bangalore, from its historic landmarks to its cutting-edge technology hubs.</p><p>Lalbagh Botanical Garden:</p><p>Lalbagh, often referred to as the \"Garden City\'s lung,\" is a stunning botanical garden with a rich history dating back to the 18th century. Visitors can stroll through the well-maintained gardens, admire the iconic Glass House, and witness the awe-inspiring flower shows held here.</p><p>Cubbon Park:</p><p>Cubbon Park, in the heart of the city, is a tranquil oasis where locals and tourists come to relax and rejuvenate. The park is home to numerous statues, walking trails, and a rich variety of flora.</p><p>Bangalore Palace:</p><p>The Bangalore Palace, built in a Tudor-style architecture, is an architectural gem that mirrors the Windsor Castle. Visitors can tour the opulent interiors, including the magnificent Durbar Hall and a remarkable collection of paintings.</p><p>Innovative Tech Hub:</p><p>Bangalore is often referred to as the \"Silicon Valley of the East\" due to its thriving IT industry. Explore the vibrant neighborhoods of Whitefield and Electronic City, which are home to numerous technology companies, startups, and innovation centers.</p><p>Namma Metro:</p><p>Bangalore\'s Namma Metro is a convenient and eco-friendly way to explore the city. It connects key areas and offers a hassle-free mode of transportation for both residents and tourists.</p><p>Art and Culture:</p><p>The city is a hub for art and culture, with numerous galleries, theaters, and cultural centers. Don\'t miss visiting the National Gallery of Modern Art (NGMA) and attending live performances at Rangashankara.</p><p>Food Paradise:</p><p>Bangalore is a food lover\'s paradise with a diverse culinary scene. Sample South Indian delicacies like dosas and idlis, savor local street food at VV Puram Food Street, and explore international cuisine at the city\'s many restaurants.</p><p>Weekend Getaways:</p><p>The city is surrounded by beautiful weekend getaways. You can plan short trips to Nandi Hills for panoramic views, Mysore for its grand palace, or Coorg for coffee plantations and serene landscapes.</p><p>Conclusion:</p><p>Bangalore, with its blend of tradition, modernity, and natural beauty, is a city that offers a vibrant and diverse experience for visitors. Whether you\'re exploring historic landmarks, delving into the tech hub, indulging in delicious cuisine, or simply enjoying the pleasant climate, Bangalore has something to offer everyone. It\'s a place where tradition meets innovation and where the past coexists harmoniously with the future. For travelers seeking a cosmopolitan city with a touch of nature and culture, Bangalore stands as a welcoming destination in the heart of India.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2262,0,NULL,NULL,'Bangalore',0,NULL,NULL,NULL,NULL,NULL,'84_1695457242.png','84_1695457242.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bangalore Tour Packages, Bangalore Holiday Packages, Bangalore Honeymoon Packages','Bangalore Tour Packages, Book Bangalore Holiday Packages - INT','','',NULL,NULL,NULL,0),(85,NULL,NULL,'Amritsar Packages - Book your Amritsar tour package at the best price with I Need Trip. Click to book customized cheap Amritsar holiday packages & get exciting deals now.',NULL,'<p>Amritsar, located in the northwestern Indian state of Punjab, is a city steeped in history, spirituality, and vibrant culture. Known as the heart of Sikhism, this city is famous for its iconic Golden Temple, warm hospitality, and delicious Punjabi cuisine. In this blog, we\'ll take you on a virtual journey to discover the many facets of Amritsar, a destination that offers a unique blend of spirituality, history, and culinary delights.</p><p>The Golden Temple:</p><p>The Harmandir Sahib, or the Golden Temple, is the holiest shrine in Sikhism and one of the most iconic religious sites in the world. The temple\'s stunning golden façade is reflected in the sacred Amrit Sarovar (pool). Visitors of all backgrounds are welcomed to the temple to experience its serene atmosphere and partake in the langar, a communal meal service that serves free meals to thousands of visitors every day.</p><p>Jallianwala Bagh:</p><p>A somber but historically significant site, Jallianwala Bagh is a public garden that witnessed the tragic Jallianwala Bagh Massacre in 1919 during British rule. Today, it serves as a memorial to the martyrs and a reminder of India\'s struggle for freedom.</p><p>Wagah Border Ceremony:</p><p>Witness the electrifying Wagah Border Ceremony, a daily ritual that marks the closing of the border between India and Pakistan. The ceremony involves elaborate drills, flag lowering, and patriotic fervor on both sides, creating an unforgettable experience.</p><p>Delicious Punjabi Cuisine:</p><p>Amritsar is renowned for its delectable Punjabi cuisine. Don\'t miss trying local dishes such as Amritsari Kulcha, Chole Bhature, and the famous Amritsari Fish. The street food scene in Amritsar is a culinary delight in itself, with bustling markets and food stalls offering mouthwatering snacks and sweets.</p><p>Ram Bagh:</p><p>Ram Bagh, also known as Company Bagh, is a beautiful garden dating back to the Mughal era. Stroll through its well-maintained lawns, admire the historic buildings, and enjoy a leisurely picnic in this peaceful oasis.</p><p>Durgiana Temple:</p><p>The Durgiana Temple, often referred to as the \"Silver Temple,\" is an important Hindu temple dedicated to Goddess Durga. It bears a resemblance to the Golden Temple and is an architectural marvel with its silver doors and dome.</p><p>Conclusion:</p><p>Amritsar, with its spiritual significance, historical landmarks, and culinary delights, is a destination that offers a unique and enriching experience. Whether you\'re seeking spiritual solace at the Golden Temple, paying homage to history at Jallianwala Bagh, or indulging in the flavors of Punjabi cuisine, Amritsar is a city that captures the heart and soul of visitors. It\'s a place where history, spirituality, and culture converge, inviting you to immerse yourself in the vibrant tapestry of Punjab\'s heritage. For those in search of a spiritual and cultural haven, Amritsar shines as a true jewel of Punjab.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,974,0,NULL,NULL,'Amritsar',0,NULL,NULL,NULL,NULL,NULL,'85_1695456505.png','85_1695456505.png','India','101',NULL,'2021-04-15 16:41:31','2021-04-15 16:41:31',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Amritsar Tour Packages, Amritsar Holiday Packages, Amritsar Honeymoon Packages','Amritsar Tour Packages, Book Amritsar Holiday Packages - INT','','',NULL,NULL,NULL,0),(86,NULL,NULL,'\"Explore Chandigarh\'s modernist marvels with iNeedTrip. Discover innovative architecture, beautiful gardens, and the planned city\'s charm.\"',NULL,'<p>Chandigarh, often referred to as \"The City Beautiful,\" stands as a testament to modern urban planning and design. Located in the northern part of India, Chandigarh serves as the capital of two Indian states, Punjab and Haryana. This meticulously planned city, designed by Swiss-French architect Le Corbusier, offers travelers a unique blend of modernity, greenery, and cultural richness. In this blog, we\'ll explore the attractions and unique features that make Chandigarh a captivating destination.</p><p>Rock Garden:</p><p>The Rock Garden of Chandigarh is a masterpiece of art created from industrial and urban waste by Nek Chand. The garden features sculptures, art installations, and pathways made from recycled materials, making it an enchanting and eco-friendly attraction.</p><p>Capitol Complex:</p><p>Chandigarh\'s Capitol Complex, designed by Le Corbusier, is a UNESCO World Heritage Site. It includes iconic government buildings like the Secretariat, Legislative Assembly, and the High Court, showcasing modernist architecture at its best.</p><p>Sukhna Lake:</p><p>Sukhna Lake, an artificial reservoir at the foothills of the Shivalik Hills, is a serene spot for boating, picnics, and morning walks. It\'s a popular destination to relax and enjoy the scenic beauty of the city.</p><p>Chandigarh Rose Garden:</p><p>The Rose Garden, also known as Zakir Hussain Rose Garden, is one of Asia\'s largest rose gardens, featuring thousands of rose varieties. The garden is a burst of colors and fragrances, making it a delightful place for nature enthusiasts and photographers.</p><p>Chandigarh Museum and Art Gallery:</p><p>The museum houses an impressive collection of art, including Gandhara sculptures, miniature paintings, and contemporary Indian art. It\'s an excellent place to explore the region\'s rich history and artistic heritage.</p><p>Sector 17:</p><p>Sector 17, the city\'s commercial hub, is a bustling area known for its vibrant shops, restaurants, and entertainment options. It\'s a great place to shop, dine, and soak in the lively atmosphere.</p><p>Le Corbusier Centre:</p><p>The Le Corbusier Centre is a museum dedicated to the life and work of the renowned architect, Le Corbusier. It provides insights into the planning and design of Chandigarh.</p><p>Food and Cuisine:</p><p>Chandigarh offers a diverse culinary scene, with numerous restaurants serving Punjabi, North Indian, and international cuisine. Don\'t miss trying local delicacies like Butter Chicken, Chole Bhature, and Amritsari Kulcha.</p><p>Conclusion:</p><p>Chandigarh, with its modernist architecture, well-maintained green spaces, and cultural attractions, is a city that offers a refreshing and enriching experience. Whether you\'re exploring the innovative Rock Garden, admiring the UNESCO-listed Capitol Complex, or enjoying a serene boat ride on Sukhna Lake, Chandigarh has something for every traveler. It\'s a city where modernity and nature coexist harmoniously, inviting you to immerse yourself in its unique blend of urban planning and cultural richness. For those seeking a modern oasis in northern India, Chandigarh stands as a true embodiment of \"The City Beautiful.\"</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5765,0,NULL,NULL,'Chandigarh',0,NULL,NULL,NULL,NULL,NULL,'86_1695464005.png','86_1695464005.png','India','101',NULL,'2021-06-14 17:26:59','2021-06-14 17:26:59',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Chandigarh tours, modernist architecture, planned city','\"Chandigarh\'s Modernist Marvels with iNeedTrip\"','','',NULL,NULL,NULL,0),(87,NULL,NULL,'INeedTrip encourages you to go and live the natural beauty. Our Jim Corbett package includes travelling to Jim Corbett Resorts and safari zones.',NULL,'<div>Filled with forests, rich verdure, and is particularly known for its Bengal tigers, Jim Corbett National Park is a wildlife haven in Uttarakhand state. Shielding a hale and hearty populace of tigers and uncommon species like otters and the endemic fish eating crocodile, the national park is perhaps the most tracked down destination for the wildlife aficionado.</div><div><br></div><div>In the Dhikala zone, located at the border of Patil Dun valley, a lot of animals live as they have the freedom to meander around openly. For all the birdwatchers out there, it is a great treat to get a glimpse of the rare bird’s species.</div><div><br></div><div>Has a coverage area of around 520 sq km, its entire region involves slopes, muddy melancholies, huge grasslands, riverine belts, and enormous lakes. One of the few tiger reserves in India that permits overnight stays in the wilderness of the National Park where only the sounds of the crickets can be heard. An open four wheeler jeep and elephant back is used for nature watch and wildlife viewing in the park. The perfect jungle retreat with Jim Corbett Tour Packages!</div><div><br></div><div>Spend your vacation either relaxing or going for a jungle safari, you are sure to enjoy it. And those who love nature and adventure, they have the option of planning a Destination Wedding in Jim Corbett amidst nature.</div><div><b><br></b></div><div><b>Things to do in Jim Corbett</b></div><div>Jim Corbett National Park trip is for all the nature and wildlife lovers as you can encounter the superb Bengal tigers, other different species of animals and more than 500 types of plants. Jim Corbett is famous as a hot-spot ecotourism destination.</div><div><br></div><div><b>Jungle safari in Jim Corbett National Park</b></div><div>To appreciate sights of wild animals, particularly tigers, meandering in the wild, the jungle safaris offer jeep rides through the rough landscape. In order to promote the travel industry in the Corbett National Park, the wildlife authorities have marked the park into different zones. Only in the marked buffer zones the visitors can be a part of exploring the wildlife safari and can partake in the charming conduct of the creatures up close with bare eyes. For hassle free safari experiences go for Jim Corbett Safari Package.</div><div><br></div><div>Jeep and elephant safaris are the absolute most ideal approaches to dive into the wild. The tourist zones include:</div><div><b>Bijrani Safari Zone</b></div><div><b>Jhirna Safari Zone</b></div><div><b>Dhela Safari Zone</b></div><div><b>Dhikala Zone</b></div><div><b>Durga Devi Zone</b></div><div><b>Sitabani Buffer Zone</b></div><div><b>Corbett waterfalls</b></div><div><br></div><div>This 66 feet high waterfall is a beautiful sight, particularly on full-moon evenings. Most nature lovers come to this spot to camp and some drive in on a pleasant day for a picnic.</div><div><br></div><div><b>Corbett Museum</b></div><div>Situated at Kaladhungi, Corbett Museum was actually the bungalow of Jim Corbett, the notable tiger hunter and contains his journals, his belongings, letters composed by him and his well-wishers, collectibles and uncommon photos.</div><div><br></div><div><b>River rafting at Corbett National Park</b></div><div>Enjoy a thrilling river rafting in the Kosi River at Corbett National Park. It is one of the popular activities in Jim Corbett. Only Class II and III rapids are offered; however it is usually done during the monsoon season. To enjoy the best, go for Jim Corbett Tour Packages.</div><div><br></div><div><b>Garjia Devi temple</b></div><div>Devoted to Goddess Parvati, the Garjia Devi temple is located on a tremendous hilltop amidst Kosi River. It is also the home to Lord Shiva, Baba Bhairon, Lord Ganesha and Goddess Saraswati.</div><div><b><br></b></div><div><b>Sitabani Temple</b></div><div>It is an ancient temple, well known for its religious significance and beautiful architecture. Sitabani Temple is located in the Sitavani Jungles of the Jim Corbett National Park. The residing idol is Goddess Sita, who lived here during her exile days prior to confronting the Agnipariksha.&nbsp;</div><div><br></div><div><b>How to reach Corbett?</b></div><div>Ramnagar is the nearest place to reach Corbett National Park which frames the base camp of CTR. The park is only 15 km from Ramnagar railway station. When you arrive at Ramnagar, you will take only 30 minutes to arrive at Corbett National Park. This small city is well connected by roadways and railways with major cities of India like Moradabad, Delhi, Nainital and Bareilly. Go for Jim Corbett Tour Packages</div><div><br></div><div><b>By Road</b></div><div>Ramnagar has an awesome network of roads that is well connected to other major cities of India. Corbett National Park is 260 km from Delhi. The state government of Uttarakhand has buses from Delhi, Moradabad, Nainital and Haldwani that arrive at Corbett directly.</div><div><br></div><div><b>By Rail</b></div><div>The railway station in Ramnagar is well connected to major cities in India like Delhi, Moradabad and Bareilly. Also, you can get a direct train to Ramnagar that runs from Delhi. Ranikhet Express, Corbett Link Express and Kathgodam Express are direct trains to Ramnagar.</div><div><br></div><div><b>Once you reach Jim Corbett, go for the best hideout</b></div><div>The Resorts in Jim Corbett offers an unwinding retreat and a wide range of extravagance facilities for your friends and family to enjoy. Start your day with the heavenly breakfast in the striking and comfortable sit-out area while absorbing the lovely picturesque views of the lavish green mountains and the nonstop sweet songs of different birds. When you are prepared for the afternoon, you can partake in the facilities of the hotel like take a plunge in the swimming pool, mess around with the indoor games and enjoy the night time programs coordinated by the resort.</div><div><br></div><div>Assuming you are an adventure addict by heart, Jim Corbett La Perle River Resort is an optimal spot for you where you can enjoy ample activities. For wildlife aficionados and photographic artists, jungle safari is a definitive way to take a gander at the wildlife of Jim Corbett and discover what nature has offered to the Jim Corbett National Park.</div><div><br></div><div><b>Why not go for a Destination Wedding with Jim Corbett?</b></div><div>Are you swayed away by its beauty? The Jim Corbett National Park is only a few miles away from Delhi. Indeed, the spot is buzzing with wonderful wedding venues. The Jim Corbett Resort spots are ideal for private affair destination weddings. In case you are hoping for a budget destination wedding and have around 500-1500 visitors, you can go for these well-disposed spots. Experience no less than a grand wedding in Udaipur, but amidst the wild. Exciting isn’t it?</div><div><br></div><div>People are consistently watching out for places for a vacation or to set a new trend with their wild Destination Wedding in Jim Corbett. You also want to do that right? Be an innovator with your wedding. However, for that you need to think of unique ideas for your wedding. What about a flawless set up in the midst of nature, in a national park?</div><div><br></div><div>Being situated in the Jim Corbett National Park, Jim Corbett La Perle River Resort offers a magnificent chance to take a glimpse of nature and wildlife from where you are standing. From rich green mountains to a varied scope of outlandish creatures and birds, the Jim Corbett La Perle River Resort</div><div>is at a splendid location, with a quiet ambiance and lush interiors.</div><div><br></div><div><b>Destination Wedding in Jim Corbett</b></div><div>Envision a dazzling mandap encompassed by slopes and trees on all sides, the frail murmuring of a stream at a distance and the coldness of the mountains? If this is the way by which you long for an ideal wedding celebration, you can make your fantasy wedding come true with a Destination Wedding in Jim Corbett!</div><div><br></div><div>So why not figure it out? Away from the clamor of the city, these weddings give the ideal chance to the couples to bond and celebrate one of the greatest days of their lives with their loved ones. Forest weddings are potentially perhaps the trendsetters of recent years, and we don\'t see any reason why it should stop.</div><div><br></div><div>La Perle River Resort situated amidst the forest by the riverside with the hills on the other end of the river. The view is mind blowing and impeccably suited for couples who are wishing for a magical natural background. Check out the Jim Corbett Destination Wedding Cost.</div><div><br></div><div><b>How to amalgamate flavors of the hills in your Jim Corbett Destination Wedding?</b></div><div><br></div><div>While holding your wedding in a Jim Corbett Resort, try to include the delectable Kumaon cuisine in your menu. Imbued with locally grown herbs and spices, it will be nothing similar to what your guests would have encountered somewhere else. You can add a taste of traditional chutneys like plum chutneys and green-chili salads, bhang ki chutney and others to your menu.</div><div><br></div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13146,1,1,NULL,'Jim Corbett National Park',1,NULL,NULL,5,NULL,NULL,'87_1692962862.jpg','87_1692962862.png','India','101',NULL,'2021-07-28 15:20:16','2021-07-28 15:20:16',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Jim Corbett Resorts, Book Jim Corbett Package, Jim Corbett Tour Package, Safari Package Jim Corbett, Jim Corbett Destination Wedding, Jim Corbett Destination, La Perle River Resort Jim Corbett, Book Jim Corbett Safari Tour.','Jim Corbett Safari Tour Package, Jim Corbett La Perle River Resort','','',NULL,NULL,NULL,0),(89,NULL,NULL,'Immerse yourself in the scenic coastal charm and rich history of Vlora (Valona), Albania. Discover pristine beaches, ancient ruins, and vibrant culture in this hidden Mediterranean gem.',NULL,'<p>Vlora, known locally as Valona, is a picturesque coastal city nestled along the pristine shores of the Ionian Sea in southwestern Albania. It\'s a destination that marries natural beauty, rich history, and vibrant culture, making it a must-visit spot for travelers seeking an off-the-beaten-path Mediterranean escape.</p><p>Historical Significance:</p><p>Vlora has played a pivotal role in Albania\'s history. It was here in 1912 that Albania declared its independence from the Ottoman Empire. The city is dotted with historical landmarks, including the Independence Monument, which stands as a testament to this significant moment in Albanian history.</p><p>Stunning Beaches:</p><p>One of Vlora\'s most enticing features is its coastline, which stretches along the Albanian Riviera. Pristine beaches with crystal-clear waters invite sunbathers and swimmers to relax in the Mediterranean sun. Dhërmi, Jale, and Vuno are just a few of the nearby beach destinations that offer a tranquil seaside escape.\\</p><p>Llogara Pass:</p><p>The journey to Vlora is as breathtaking as the destination itself. The drive along the Llogara Pass offers panoramic views of the Ionian Sea and the lush slopes of the Ceraunian Mountains. It\'s a scenic route that leaves an indelible impression on visitors.\\</p><p>Ancient Ruins:</p><p>History enthusiasts will find plenty to explore in and around Vlora. The ancient city of Orikum, with its archaeological remains, provides insights into Albania\'s Greco-Roman past. Additionally, the nearby ruins of the Venetian Castle of Kaninë offer a glimpse into the region\'s medieval history.\\</p><p>Vibrant Culture:</p><p>Vlora\'s culture is a vibrant mix of Albanian traditions, Mediterranean influences, and a laid-back coastal lifestyle. The city comes alive in the summer with festivals, live music, and bustling promenades.</p><p>Fresh Seafood and Mediterranean Cuisine:</p><p>Seafood lovers will delight in the local cuisine. Vlora\'s restaurants serve up fresh catches of the day, grilled to perfection and seasoned with Mediterranean flavors. Don\'t miss the opportunity to savor dishes like grilled octopus and seafood pasta.</p><p>Vlora Bay:</p><p>The Vlora Bay is a natural harbor and a hub for maritime activities. Stroll along the waterfront promenade, where you can enjoy beautiful sunsets and watch fishing boats come and go.</p><p>Adventure Opportunities:</p><p>Outdoor enthusiasts can explore nearby hiking trails, go snorkeling in hidden coves, or embark on boat trips to discover secluded beaches and underwater caves.</p><p>Warm Hospitality:</p><p>Albanian hospitality is renowned, and in Vlora, you\'ll find warm and welcoming locals who are eager to share their culture and stories with visitors.\\</p><p>Conclusion:</p><p>Vlora, known as Valona in the local tongue, is a coastal gem that combines history, natural beauty, and a relaxed Mediterranean atmosphere. Whether you\'re soaking up the sun on pristine beaches, exploring ancient ruins, or savoring fresh seafood, Vlora invites you to discover the hidden treasures of Albania\'s enchanting coastline.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,29005,1,NULL,NULL,'Vlora Valona',0,NULL,NULL,NULL,NULL,NULL,'89_1695197126.png','89_1695197126.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Vlora (Valona) Albania\r\nCoastal beauty Vlora\r\nVlora historical sites\r\nValona beaches\r\nAlbanian Riviera\r\nVlora culture\r\nValona tourist attractions\r\nVlora travel tips\r\nMediterranean coastal town\r\nVlora hidden gem','Explore the Beauty and History of Vlora (Valona), Albania','','',NULL,NULL,NULL,0),(90,NULL,NULL,'\"Explore the City of Lakes, Udaipur, with iNeedTrip. Visit magnificent palaces, serene lakes, and experience the royal splendor of Rajasthan.\"',NULL,'<p>Udaipur, often referred to as the \"City of Lakes\" or the \"Venice of the East,\" is a captivating and picturesque city located in the Indian state of Rajasthan. Nestled in the Aravalli Hills, Udaipur is renowned for its stunning lakes, grand palaces, historic forts, and vibrant culture. It is one of India\'s most romantic and culturally rich destinations, offering a glimpse into the royal heritage of the Mewar dynasty. Here are some key highlights of Udaipur:</p><p>1. Lake Pichola:</p><p>Lake Pichola is the heart of Udaipur and one of its most iconic features. The lake is surrounded by impressive palaces, including the Lake Palace (Jag Niwas) and Jag Mandir, which appear to float on its pristine waters. Boat rides on Lake Pichola offer breathtaking views of the city\'s skyline and the surrounding hills.</p><p>2. City Palace:</p><p>The City Palace of Udaipur is a magnificent complex that combines Rajasthani and Mughal architectural styles. It houses a museum showcasing a rich collection of artifacts, paintings, and royal memorabilia. The palace\'s vantage point provides panoramic views of Lake Pichola and the old city.</p><p>3. Jag Mandir:</p><p>Jag Mandir, also known as the \"Lake Garden Palace,\" is a beautiful island palace on Lake Pichola. It is famous for its intricate marble architecture and serene gardens. The palace has historical significance as it provided refuge to Mughal Emperor Shah Jahan during his revolt against his father.</p><p>4. Saheliyon-ki-Bari:</p><p>Saheliyon-ki-Bari, or the \"Garden of the Maidens,\" is a meticulously landscaped garden with lush green lawns, lotus pools, marble pavilions, and fountains. It was built for the royal ladies and their attendants as a place of leisure.</p><p>5. Jagdish Temple:</p><p>The Jagdish Temple is an ancient Hindu temple dedicated to Lord Vishnu. It is known for its exquisite architecture, intricate carvings, and a black stone idol of Lord Jagannath.</p><p>6. Cultural Performances:</p><p>Udaipur is known for its vibrant cultural scene. Visitors can enjoy traditional Rajasthani dance and music performances at various venues in the city.</p><p>7. Fateh Sagar Lake:</p><p>Fateh Sagar Lake is another picturesque lake in Udaipur, surrounded by hills and containing several islands. It\'s a popular spot for boat rides and picnics.</p><p>8. Sajjangarh Palace (Monsoon Palace):</p><p>Perched on a hill, the Sajjangarh Palace offers panoramic views of Udaipur and its lakes. It is a popular sunset viewpoint.</p><p>9. Shopping:</p><p>Udaipur is famous for its vibrant markets, where you can shop for traditional Rajasthani handicrafts, textiles, jewelry, and miniature paintings. The city is particularly known for its colorful Bandhani and tie-dye fabrics.</p><p>10. Cuisine:</p><p>- Rajasthani cuisine, known for its royal flavors, is a highlight in Udaipur. Don\'t miss trying dishes like dal baati churma, gatte ki sabzi, and the famous Rajasthani thali.</p><p>11. Havelis:</p><p>- Udaipur boasts several historic havelis (mansions) with stunning architecture and intricate frescoes. Some of the notable ones include the Bagore Ki Haveli and the Shree Jagdish Mahal Haveli.</p><p>12. Accessibility:</p><p>- Udaipur has an airport with good connectivity to major Indian cities. It is also well-connected by road and train.</p><p>In summary, Udaipur is a city of unparalleled beauty and cultural richness. Its enchanting lakes, majestic palaces, and vibrant culture make it a top destination for travelers seeking a blend of history, romance, and regal charm in the heart of Rajasthan.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,28058,1,NULL,NULL,'Udaipur',0,NULL,NULL,NULL,NULL,NULL,'90_1695728971.png','90_1695728971.png','India','101',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Udaipur tours, Rajasthan lakes, city of lakes','\"Udaipur\'s City of Lakes Splendor with iNeedTrip\"','','',NULL,NULL,NULL,0),(91,NULL,NULL,'\"Experience the colorful capital of the Balkans in Tirana, Albania. Explore vibrant streets, historical sites, and Albanian hospitality.\"',NULL,'<p>Tirana, the capital of Albania, is a city that has undergone a remarkable transformation in recent decades. Once known for its grayness during the communist era, Tirana has emerged as a vibrant and dynamic European capital, bursting with color, culture, and a sense of boundless energy. Here\'s a glimpse into the charms of Tirana:</p><p>Historical Layers:</p><p>Tirana\'s history is reflected in its architecture. Ottoman-era mosques, Italian-influenced facades from the fascist period, and communist-era buildings coexist with modern developments. Skanderbeg Square, named after Albania\'s national hero, is at the heart of the city and home to several significant landmarks.</p><p>Colorful Facades:</p><p>One of the most striking features of Tirana is its colorful buildings. Under the leadership of former mayor Edi Rama, who later became the Prime Minister of Albania, a project called the \"Colorful Revolution\" saw buildings painted in vibrant hues. The result is a cityscape that\'s both visually captivating and symbolic of Tirana\'s transformation.</p><p>Blooming Parks:</p><p>Despite its urban hustle and bustle, Tirana boasts several green spaces. The Grand Park of Tirana is a favorite among locals, offering a respite from the city\'s pace with its tranquil lakes, walking trails, and recreational areas.</p><p>BunkArt:</p><p>Housed in a massive bunker built during the communist era, BunkArt is a museum that provides insight into Albania\'s tumultuous past. It offers a thought-provoking journey through history and is a testament to the resilience of the Albanian people.</p><p>Cultural Centers:</p><p>Tirana\'s cultural scene is thriving, with theaters, galleries, and music venues. The National History Museum and the National Art Gallery are worth exploring to gain a deeper understanding of Albanian history and culture.</p><p>Culinary Delights:</p><p>Albanian cuisine is a fusion of Mediterranean and Balkan flavors. In Tirana, you can savor traditional dishes like tave kosi (yogurt and lamb casserole) and byrek (savory pastries) at local restaurants or bustling street markets.</p><p>Coffee Culture:</p><p>Tirana\'s café culture is a vital part of daily life. Enjoying a strong espresso or a macchiato at one of the city\'s numerous cafés is a cherished ritual for locals and visitors alike.</p><p>Bustling Bazaars:</p><p>The city\'s bazaars, such as the Pazari i Ri (New Bazaar) and the Pazari i Vjetër (Old Bazaar), are vibrant places to shop for fresh produce, local crafts, and souvenirs.</p><p>Mount Dajti:</p><p>Just outside the city, Mount Dajti offers stunning views of Tirana and the surrounding region. A cable car ride to the summit is a popular day trip, providing opportunities for hiking and picnicking.</p><p>Tirana International Film Festival:</p><p>The city hosts an annual film festival, showcasing both local and international cinema. It\'s a significant event for the city\'s cultural scene.</p><p>Hospitality and Warmth:</p><p>The people of Tirana are known for their hospitality and friendliness. Visitors often find themselves welcomed with open arms and treated to the warmth of Albanian hospitality.</p><p>Tirana is a city of contrasts, where the past meets the present in a vibrant tapestry of colors, culture, and history. It\'s a destination that invites you to explore its evolving identity and immerse yourself in the energy and optimism of a city that has truly come into its own.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,27345,0,NULL,NULL,'Tirana',0,NULL,NULL,NULL,NULL,NULL,'91_1695196064.png','91_1695196064.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tirana Albania Balkan capital Tirana\r\nTirana vibrant streets\r\nTirana historical sites\r\nAlbanian hospitality','\"Tirana, Albania: The Colorful Capital of the Balkans\"','','',NULL,NULL,NULL,0),(92,NULL,NULL,'\"Explore the Ionian gem of Saranda, Albania. Discover pristine beaches, ancient ruins, and the coastal beauty of the Albanian Riviera.\"',NULL,'<p>Nestled along the sun-kissed shores of the Ionian Sea, Saranda is a coastal paradise that beckons travelers seeking a unique and unspoiled destination in Albania. Known for its pristine beaches, rich history, and natural beauty, Saranda has emerged as one of the Adriatic\'s most captivating gems.</p><p>The Beaches of Saranda:</p><p>Saranda boasts a string of pristine beaches that are nothing short of breathtaking. The most famous among them is Ksamil Beach, with its powdery white sands and crystal-clear waters. Here, visitors can take a dip in the turquoise sea, explore nearby islands, or simply bask in the sun\'s warm embrace. Mirror Beach and Pasqyra Beach are equally enchanting and offer tranquility amidst nature\'s beauty.</p><p>Archaeological Treasures:</p><p>Saranda\'s history dates back centuries, and its archaeological sites are a testament to its rich past. The ancient city of Butrint, a UNESCO World Heritage Site, lies just a short drive from Saranda. Wander through its well-preserved ruins, which include a theater, Roman baths, and ancient fortifications. Each stone tells a story of civilizations that once thrived here.</p><p>Lekursi Castle:</p><p>Perched atop a hill overlooking Saranda, Lekursi Castle offers panoramic views of the city and the Ionian Sea. Originally built in the 16th century, the castle has been restored and now houses a restaurant where you can savor traditional Albanian cuisine while enjoying breathtaking sunsets.</p><p>Syri i Kalter (The Blue Eye):</p><p>A short drive from Saranda, the Blue Eye is a natural spring that forms a stunning, deep-blue pool. The spring\'s crystal-clear waters gush from the depths of the earth, creating a mesmerizing spectacle. It\'s not only a sight to behold but also a place of folklore and local legends.</p><p>Delicious Albanian Cuisine:</p><p>Saranda offers a taste of authentic Albanian cuisine. Indulge in fresh seafood, grilled meats, and traditional dishes like \"tave kosi\" (yogurt and lamb casserole) at local restaurants. Don\'t forget to sample local wines and raki for a true Albanian dining experience.</p><p>Boat Trips and Island Adventures:</p><p>Saranda\'s coastal location makes it a perfect starting point for boat trips and island-hopping adventures. Explore the nearby islands of Ksamil, Sazan, and Corfu, each offering its own unique charm and natural beauty.</p><p>Warm Hospitality:</p><p>What truly sets Saranda apart is the warmth of its people. Albanian hospitality is legendary, and you\'ll find locals eager to share their culture, stories, and traditions with visitors.</p><p>Saranda, with its pristine nature, historical riches, and warm hospitality, is a destination that lingers in the hearts of those who have the privilege to explore its wonders. Whether you seek relaxation on the beach, cultural immersion, or outdoor adventures, Saranda welcomes you with open arms, inviting you to discover the hidden treasures of Albania\'s stunning coastline.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,24302,0,NULL,NULL,'Saranda',0,NULL,NULL,NULL,NULL,NULL,'92_1695188665.png','92_1695188665.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Saranda Albania\r\nAlbanian Ionian coast\r\nSaranda beaches\r\nAlbanian Riviera beauty\r\nSaranda attractions','\"Saranda, Albania: The Ionian Gem\"','','',NULL,NULL,NULL,0),(93,NULL,NULL,'\"Explore the jewel of Lake Ohrid in North Macedonia, Ohrid. Discover ancient churches, pristine waters, and the cultural heritage of the Balkans.\"',NULL,'<p>Ohrid, often called the \"Pearl of the Balkans,\" is a mesmerizing town nestled along the shores of Lake Ohrid in southwestern North Macedonia. This enchanting destination marries rich history with stunning natural beauty, creating a timeless and captivating atmosphere.As one of Europe\'s oldest and deepest lakes, Lake Ohrid is the crown jewel of the town. Its clear, pristine waters are surrounded by majestic mountains, providing a serene backdrop.The cobblestone streets, narrow alleys, and medieval architecture of Ohrid\'s old town transport visitors to another era. Traditional Macedonian houses with their distinctive red-tiled roofs add to the town\'s old-world charm.&nbsp;Ohrid is often dubbed the \"Jerusalem of the Balkans\" due to its abundance of churches and monasteries. The Church of St. Sophia, St. Panteleimon, and the Monastery of St. Naum are among the many sacred sites that tell the story of the town\'s religious history.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19969,1,NULL,NULL,'Ohrid',0,NULL,NULL,NULL,NULL,NULL,'93_1694775774.png','93_1694775774.png','Macedonia','129',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ohrid North Macedonia\r\nLake Ohrid jewel\r\nOhrid churches\r\nMacedonian cultural heritage\r\nBalkan beauty','\"Ohrid, North Macedonia: The Jewel of Lake Ohrid\"','','',NULL,NULL,NULL,0),(94,NULL,NULL,'\"Explore the historic stronghold of Kruja, Albania, associated with Skanderbeg. Discover its castle, bazaar, and Albanian national hero.\"',NULL,'<p>Kruja, also spelled Krujë or Kruje, is a historic town located in the central part of Albania. Nestled amidst picturesque landscapes, Kruja is famous for its rich cultural heritage, historical significance, and stunning views of the surrounding countryside. Here\'s an overview of what makes Kruja a captivating destination:</p><p>Geography and Location:</p><p>Kruja is situated approximately 32 kilometers (20 miles) north of the capital city, Tirana. It is strategically perched on the slopes of Mount Krujë, overlooking the vast expanse of the Adriatic Sea to the west. The town\'s location amidst rolling hills and mountains contributes to its scenic beauty.</p><p>Historical Significance:</p><p>Kruja holds a special place in Albanian history and is closely associated with the national hero, Gjergj Kastrioti, widely known as Skanderbeg. Skanderbeg was a medieval Albanian nobleman who successfully led a rebellion against the Ottoman Empire in the 15th century, becoming a symbol of resistance against Ottoman rule.</p><p>Krujë Castle (Krujë Castle):</p><p>The centerpiece of Kruja\'s historical significance is the Krujë Castle, perched high on a hill overlooking the town. This well-preserved castle was Skanderbeg\'s stronghold during his fight against the Ottomans. Visitors can explore the castle complex, which includes a museum dedicated to Skanderbeg and the National Ethnographic Museum, showcasing Albanian culture and heritage.</p><p>Bazaar of Kruja (Pazari i Krujës):</p><p>The Bazaar of Kruja is a vibrant and bustling market where visitors can shop for local crafts, traditional Albanian clothing, and souvenirs. It\'s a great place to immerse oneself in the local culture, sample traditional Albanian cuisine, and interact with the friendly residents.</p><p>Skanderbeg Museum:</p><p>In addition to the castle museum, Kruja is home to the Skanderbeg Museum located in the town center. This museum provides an in-depth look at Skanderbeg\'s life and the history of the Albanian resistance against the Ottomans.</p><p>Cultural Events:</p><p>Kruja hosts various cultural events and festivals throughout the year, celebrating its history and traditions. One of the most notable events is the annual Kruja Carnival, featuring colorful parades and traditional performances.</p><p>Natural Beauty:</p><p>Kruja is surrounded by stunning natural landscapes, with its proximity to the Skanderbeg Mountains and the Adriatic Sea. Hiking and trekking opportunities abound in the nearby hills, offering visitors a chance to explore the beautiful countryside.</p><p>Hospitality:</p><p>Albanians are known for their hospitality, and Kruja is no exception. Visitors often find the locals to be warm and welcoming, eager to share their town\'s history and traditions.</p><p>In summary, Kruja is a town deeply rooted in Albanian history and culture, offering a unique blend of historical significance, vibrant markets, and stunning natural beauty. Whether you\'re interested in exploring medieval castles, shopping for local crafts, or simply enjoying the scenic views, Kruja is a destination that provides a window into Albania\'s rich heritage and warm hospitality.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14527,1,NULL,NULL,'Kruja',0,NULL,NULL,NULL,NULL,NULL,'94_1694688085.png','94_1694688085.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kruja Albania\r\nSkanderbeg stronghold\r\nKruja Castle\r\nAlbanian bazaar\r\nAlbanian national hero','\"Kruja, Albania: The Historic Stronghold of Skanderbeg\"','','',NULL,NULL,NULL,0),(95,NULL,NULL,'\"Explore Kalambaka, Greece, home to monasteries perched in the clouds. Discover Meteora\'s spiritual treasures and breathtaking rock formations.\"',NULL,'<p>Kalambaka, a picturesque town in central Greece, is a gateway to one of the world\'s most remarkable natural and spiritual wonders—the Meteora rock formations. Perched atop these towering sandstone pillars are ancient monasteries that seem to touch the heavens. Kalambaka offers a unique opportunity to immerse yourself in the awe-inspiring beauty of Meteora and explore the rich history and culture of this mystical region.</p><p>Key Highlights:</p><p>Meteora Monasteries: The Meteora monasteries are the stars of the show. These UNESCO World Heritage Sites are perched atop immense rock pinnacles, accessible via stairs and pathways. Visit some of the active monasteries to admire their stunning architecture, intricate frescoes, and breathtaking views of the valley below.</p><p>Hiking and Rock Climbing: Kalambaka is a paradise for outdoor enthusiasts. Hike the well-marked trails that wind through the Meteora rocks and enjoy panoramic vistas. Rock climbing is also a popular activity for adventure seekers.</p><p>Varlaam Monastery: One of the most famous monasteries, Varlaam, is a must-visit. It houses a remarkable collection of religious artifacts and offers awe-inspiring views from its elevated position.</p><p>Great Meteoron Monastery: The largest and oldest of the monasteries, the Great Meteoron, is a cultural treasure trove with a fascinating museum that showcases religious relics, manuscripts, and historical artifacts.</p><p>Monastery of Agios Stefanos: Explore this small yet charming monastery known for its beautiful frescoes and serene atmosphere.</p><p>Kalambaka Town: Stroll through the charming streets of Kalambaka, where you can find cozy cafes, tavernas serving traditional Greek cuisine, and shops selling local handicrafts.</p><p>Theopetra Cave: Just a short drive from Kalambaka, this prehistoric cave offers a glimpse into the area\'s ancient past. It\'s one of the earliest places in Greece where humans settled.</p><p>Sunset and Sunrise Views: Witness the mesmerizing spectacle of sunrise and sunset over the Meteora rocks. These moments are both spiritually uplifting and visually captivating.</p><p>Photography: Kalambaka and Meteora provide a paradise for photographers. Capture the dramatic landscapes, monasteries, and the interplay of light and shadow.</p><p>Spiritual Retreat: Many visitors find a sense of serenity and spirituality in the presence of the Meteora monasteries. Take time for quiet reflection and contemplation.</p><p>Local Cuisine: Savor traditional Greek dishes at local tavernas in Kalambaka. Try moussaka, souvlaki, Greek salads, and baklava.</p><p>Museum of Natural History and Mushrooms: Learn about the region\'s flora and fauna, including its unique mushroom varieties, at this intriguing museum.</p><p>Kalambaka and Meteora offer an otherworldly experience that blends natural wonder with spiritual awe. Whether you\'re exploring ancient monasteries, hiking among the towering rocks, or simply basking in the serenity of the landscape, Kalambaka invites you to embark on a journey of discovery and wonder in the heart of Greece.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13384,1,NULL,NULL,'Kalambaka',0,NULL,NULL,NULL,NULL,NULL,'95_1694672327.png','95_1694672327.png','Greece','86',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kalambaka Greece\r\nMeteora monasteries\r\nGreek spiritual treasures\r\nKalambaka rock formations\r\nMeteora beauty','\"Kalambaka, Greece: Monasteries in the Clouds\"','','',NULL,NULL,NULL,0),(96,NULL,NULL,'\"Enjoy lakeside serenity in Ioannina, Greece, located in the picturesque region of Epirus. Explore historical sites, island views, and Greek culture.\"',NULL,'<p>Ioannina, situated in the northwestern part of Greece, is a hidden gem waiting to be explored. With its picturesque lake, historic charm, and proximity to the Epirus mountains, it offers a unique blend of natural beauty and cultural heritage. Here\'s a glimpse of what makes Ioannina a captivating destination:</p><p>Key Highlights:</p><p>Pamvotida Lake: Ioannina is centered around the serene Pamvotida Lake, adding a touch of tranquility to the cityscape. Take a boat ride to the lake\'s islet to visit the Monastery of St. Panteleimon or simply enjoy a leisurely lakeside stroll.</p><p>Ioannina Island: On Pamvotida Lake, you\'ll find Ioannina Island (Nisaki), home to quaint villages, traditional tavernas, and lush green landscapes. It\'s a peaceful escape from the city\'s bustle.</p><p>Ali Pasha Museum: Explore the history of Ali Pasha of Tepelena, a charismatic Ottoman ruler, at his former residence, now a museum. The exhibits provide insights into the region\'s Ottoman past.</p><p>Aslan Pasha Mosque: This elegant mosque, built during Ottoman rule, is a testament to the city\'s diverse heritage. It features intricate architectural details and is open to visitors.</p><p>Ioannina Castle: Perched on a hill overlooking the city, Ioannina Castle offers panoramic views of the surroundings. Within its walls, you\'ll find the Fethiye Mosque, a Byzantine museum, and several historic artifacts.</p><p>Byzantine Museum of Ioannina: Housed in an old Ottoman mosque, this museum showcases an impressive collection of Byzantine icons, frescoes, and religious artifacts.</p><p>Municipal Ethnographic Museum: Gain insights into the local culture and history through exhibits featuring traditional clothing, crafts, and daily life in the Epirus region.</p><p>Zagori Villages: Embark on a day trip to the nearby Zagori villages, known for their stone architecture, arched bridges, and stunning hiking trails in the Pindus Mountains.</p><p>Epirus Cuisine: Savor the flavors of Epirus with dishes like \"pita\" (a savory pie), \"metsovone\" cheese, and local trout from Lake Pamvotida. Ioannina\'s tavernas offer delicious regional specialties.</p><p>Vrellis Museum of Wax Effigies: Discover an unusual museum with a collection of life-sized wax figures depicting scenes from Greek history and folklore.</p><p>Vikos Gorge: Venture into the Vikos Gorge, one of the world\'s deepest canyons, for breathtaking hikes amid stunning natural beauty.</p><p>Metsovo: A short drive away, the charming town of Metsovo offers traditional architecture, artisanal crafts, and opportunities to taste the local \"Metsovone\" cheese.</p><p>Outdoor Activities: Ioannina is a paradise for outdoor enthusiasts. You can enjoy hiking, mountain biking, and watersports in the nearby mountains and lake.</p><p>Local Festivals: Depending on your visit, you might have the chance to participate in local festivals celebrating music, dance, and cultural traditions.</p><p>Ioannina\'s unique blend of history, culture, and natural beauty make it a destination that\'s both relaxing and enriching. Whether you\'re exploring its historic sites, enjoying a boat ride on the lake, or savoring local delicacies, Ioannina offers an authentic Greek experience away from the crowds.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12783,1,NULL,NULL,'Ioannina',0,NULL,NULL,NULL,NULL,NULL,'96_1694669597.png','96_1694669597.png','Greece','86',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ioannina Greece\r\nEpirus lakeside beauty\r\nIoannina historical sites\r\nGreek island views\r\nGreek culture','\"Ioannina, Greece: Lakeside Serenity in Epirus\"','','',NULL,NULL,NULL,0),(97,NULL,NULL,'\"Experience the beauty of Durres, Albania, with its sandy beaches, ancient amphitheater, and vibrant waterfront. Explore a hidden Adriatic treasure.',NULL,'<p>Durres, located on the western coast of Albania along the Adriatic Sea, is a city brimming with history, beautiful beaches, and a vibrant Mediterranean atmosphere. As one of Albania\'s oldest and most significant cities, Durres offers travelers a captivating blend of ancient ruins, cultural heritage, and seaside relaxation. Here\'s an overview of what makes Durres a compelling destination:</p><p>1. Ancient History: Durres boasts a storied history dating back to ancient times. Founded as Epidamnos by Greek colonists in the 7th century BC, it later became known as Dyrrhachium under Roman rule. The city\'s archaeological sites, including Roman amphitheaters, baths, and city walls, provide a glimpse into its rich past.</p><p>2. Roman Amphitheater: The Roman Amphitheater of Durres is one of the city\'s most iconic landmarks. This well-preserved ancient arena once hosted gladiator contests and other performances. Today, visitors can explore its impressive ruins and imagine the grandeur of ancient Roman entertainment.</p><p>3. Durres Beaches: Durres is famous for its beautiful beaches, making it a popular destination for sun-seekers. The long sandy shoreline along the Adriatic Sea offers opportunities for swimming, sunbathing, and water sports. Beachfront bars and cafes provide a relaxed atmosphere for enjoying the coastal scenery.</p><p>4. Durres Archaeological Museum: This museum houses a remarkable collection of artifacts, including Roman sculptures, mosaics, and pottery, providing insight into the city\'s ancient history and the daily life of its inhabitants.</p><p>5. Durres Castle: Also known as the Venetian Tower, Durres Castle is a historic fortress located on a hill overlooking the city. It offers panoramic views of the sea and the surrounding area.</p><p>6. Historic Architecture: Durres features a mix of architectural styles, with influences from the Greeks, Romans, Byzantines, Venetians, and Ottomans. Explore the city\'s historic center to admire its charming streets, old churches, and well-preserved buildings.</p><p>7. Durres Promenade: The seaside promenade is a popular place for a leisurely stroll, especially during the evening when the city comes alive with locals and visitors enjoying the coastal breeze and dining at waterfront restaurants.</p><p>8. Beachfront Cafes and Restaurants: Durres offers a wide range of dining options, from seafood restaurants serving freshly caught fish to traditional Albanian eateries where you can savor local dishes like tave kosi (yogurt and lamb casserole) and qofte (meatballs).</p><p>9. Beachside Nightlife: Durres has a vibrant nightlife scene, with beachfront bars and clubs that come alive after sunset. Enjoy live music, dancing, and cocktails with views of the sea.</p><p>10. Wine Tasting: The Durres region is known for its vineyards and wine production. Take the opportunity to sample local wines and learn about Albania\'s winemaking traditions.</p><p>11. Accessibility: Durres is easily accessible by road from the capital, Tirana, which is less than an hour\'s drive away. The city also has a ferry terminal with connections to Italy.</p><p>Durres, Albania, offers a delightful combination of history, culture, and seaside relaxation. Whether you\'re exploring ancient ruins, lounging on the beach, or savoring Albanian cuisine, Durres welcomes travelers with its warm Mediterranean charm and a fascinating window into the past.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8366,1,NULL,NULL,'Durres',0,NULL,NULL,NULL,NULL,NULL,'97_1694602801.png','97_1694602801.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Durres Albania\r\nDurres beaches\r\nAlbanian amphitheater\r\nAdriatic coast vacations\r\nDurres waterfront','\"Durres, Albania: A Coastal Gem on the Adriatic\"','','',NULL,NULL,NULL,0),(98,NULL,NULL,'\"Step into the well-preserved Ottoman town of Berat, known for its charming white houses with a thousand windows. Explore its history and culture.\"',NULL,'<p>Berat: The City of a Thousand Windows</p><p>Nestled in the heart of Albania, Berat is a charming and historic city known for its unique architecture, rich cultural heritage, and stunning natural surroundings. Often referred to as the \"City of a Thousand Windows\" due to its well-preserved Ottoman-era houses, Berat is a UNESCO World Heritage site that offers travelers a glimpse into the country\'s past and a taste of its vibrant present.</p><p>Key Highlights:</p><p>Mangalem and Gorica Quarters: Berat is famous for its distinct neighborhoods, Mangalem and Gorica, which are separated by the Osum River. The Mangalem Quarter boasts a labyrinth of narrow streets lined with white Ottoman houses, each featuring rows of windows that give the city its nickname. Across the river, the Gorica Quarter offers equally captivating views and a peaceful ambiance.</p><p>Berat Castle: Dominating the city\'s skyline, the Berat Castle is a massive fortress that dates back to the 4th century BC. Within its walls, you\'ll find a well-preserved citadel with historic churches, mosques, and homes. The castle also offers panoramic views of Berat and the surrounding landscapes.</p><p>Historic Mosques and Churches: Berat is home to numerous religious buildings, including the Lead Mosque (Xhamia e Plumbit), the King Mosque (Xhamia Mbret), and the 13th-century Holy Trinity Church (Kisha e Shen Triadhes). These structures showcase the city\'s religious diversity and architectural beauty.</p><p>Onufri Museum: Located within the St. Mary\'s Church in the castle, the Onufri Museum houses a remarkable collection of religious icons created by the renowned Albanian painter Onufri and his followers. The vibrant and intricate artwork provides insights into Albania\'s religious heritage.</p><p>Gorica Bridge: This stone bridge connects the Mangalem and Gorica Quarters and is a picturesque spot for taking in the river views and capturing the essence of Berat.</p><p>Berat\'s Cuisine: Berat is known for its delicious cuisine, with a focus on locally sourced ingredients. Be sure to try traditional dishes like qifqi (rice balls), tave kosi (yogurt and lamb casserole), and baklava for dessert.</p><p>Wine Tasting: The region surrounding Berat is renowned for its wine production. Visitors can enjoy wine tastings and tours at local wineries to sample some of Albania\'s finest wines.</p><p>Osumi Canyon: Just a short drive from Berat, the Osumi Canyon is a natural wonder. Hike through the canyon, explore its caves, and take a boat ride along the river for a unique adventure.</p><p>Tomorr Mountain: For outdoor enthusiasts, the nearby Tomorr Mountain offers excellent hiking opportunities. At its summit, you can visit the Bektashi Tekke, a sacred Bektashi Sufi shrine.</p><p>Local Craftsmanship: Berat is known for its skilled craftsmen, particularly in the art of silver filigree. Visit local shops and markets to purchase intricate handmade jewelry and crafts.</p><p>Berat\'s Mediterranean climate makes it a pleasant destination year-round, although spring and autumn are considered the best times to visit due to milder temperatures.</p><p>Berat\'s charm lies in its historical significance, stunning architecture, and the warm hospitality of its residents. It\'s a place where ancient traditions and modern life coexist harmoniously, making it a must-visit destination for travelers exploring Albania\'s cultural treasures.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2956,0,NULL,NULL,'Berat',0,NULL,NULL,NULL,NULL,NULL,'98_1694586429.png','98_1694586429.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Berat Albania\r\nOttoman architecture\r\nBerat historical sites\r\nAlbanian heritage\r\nUNESCO World Heritage','\"Berat, Albania: The \'City of a Thousand Windows\'\"','','',NULL,NULL,NULL,0),(99,NULL,NULL,'\"Discover the natural beauty, rich history, and warm hospitality of Albania. Explore its pristine beaches, ancient ruins, and vibrant cities.\"',NULL,'<p>Albania, located in Southeastern Europe on the Balkan Peninsula, is a country known for its breathtaking natural beauty, rich history, and warm hospitality. As one of the lesser-explored gems of Europe, Albania offers travelers a unique and authentic experience.</p><p>Key Highlights:</p><p>Stunning Coastline: Albania boasts a stunning Adriatic and Ionian coastline, with pristine beaches, hidden coves, and crystal-clear waters. The Albanian Riviera, in particular, is a paradise for beach lovers and water enthusiasts.</p><p>Lively Capital - Tirana: The capital city, Tirana, is a vibrant metropolis that has undergone significant transformation in recent years. It offers a mix of modern amenities, historical sites, and a lively arts and culinary scene.</p><p>Historical Sites: Albania\'s history is rich and diverse, with influences from the Romans, Byzantines, Ottomans, and Communists. Visitors can explore ancient cities like Butrint, a UNESCO World Heritage site, and Gjirokaster, known for its well-preserved Ottoman architecture.</p><p>Breathtaking Landscapes: The Albanian Alps in the north and the rugged mountains in the south provide a paradise for hikers, trekkers, and nature enthusiasts. Valbona Valley and Theth are popular starting points for adventures into the Albanian wilderness.</p><p>Unique Culture: Albanian culture is a blend of various influences, and its people are known for their warm hospitality. Traditional music, dance, and festivals are an integral part of Albanian culture.</p><p>Delicious Cuisine: Albanian cuisine offers a delectable mix of Mediterranean flavors, with dishes like byrek (savory pastry), tave kosi (yogurt and lamb casserole), and fresh seafood along the coast.</p><p>Bunkers: One quirky aspect of Albania\'s landscape is the abundance of bunkers, a legacy of the Communist era. Many of these bunkers have been creatively repurposed into cafes, art installations, and even beachfront bars.<br></p><p>Affordability: Albania is one of the most budget-friendly destinations in Europe. Accommodation, dining, and transportation costs are generally lower than in many other European countries.</p><p>Emerging Tourism: While tourism in Albania is on the rise, it remains relatively undiscovered compared to neighboring countries. This means fewer crowds and a more authentic travel experience.<br></p><p>Warm Mediterranean Climate: Albania enjoys a Mediterranean climate, making it an attractive destination for sun-seekers. Summers are warm and dry, perfect for beach vacations.</p><p>Language: Albanian is the official language, but many Albanians, especially in urban areas, also speak English, Italian, or Greek.</p><p>Currency: The currency used in Albania is the Albanian Lek (ALL).</p><p>Albania\'s beauty lies in its authenticity and unspoiled landscapes. Whether you\'re exploring ancient ruins, hiking through pristine mountains, or relaxing on idyllic beaches, Albania offers a diverse range of experiences for travelers seeking a unique and off-the-beaten-path adventure in Europe.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,451,0,NULL,NULL,'Albania',0,NULL,NULL,1,NULL,NULL,'99_1694512260.png','99_1694512260.png','Albania','2',NULL,'2021-07-29 16:27:29','2021-07-29 16:27:29',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Albania tourism\r\nAlbanian Riviera\r\nAlbanian history\r\nTirana attractions\r\nBalkan travel','\"Albania Travel Guide: Explore the Hidden Gem of Europe\"','','',NULL,NULL,NULL,0),(100,NULL,NULL,'\"Discover the hidden gem of Ladakh, Turtuk, with iNeedTrip. Visit remote villages, interact with locals, and experience the pristine beauty of the region.\"',NULL,'<p>Turtuk is a remote and picturesque village located in the Leh district of the Union Territory of Ladakh in northern India. It is nestled in the Nubra Valley, close to the border with Pakistan-administered Gilgit-Baltistan. Turtuk is known for its stunning natural beauty, rich cultural heritage, and warm hospitality of its residents. It is often referred to as the \"Hidden Paradise\" of Ladakh. Here are some key highlights of Turtuk:</p><p>1. Scenic Beauty:</p><p>Turtuk is surrounded by breathtaking landscapes, including lush green fields, apricot orchards, and snow-capped peaks. The Shyok River flows through the village, adding to its natural beauty.</p><p>2. Unique Culture:</p><p>Turtuk is home to the Balti community, an ethnic group with Tibetan origins. The village has preserved its unique culture, language, and traditions for centuries, offering visitors a chance to experience a different facet of Ladakh.</p><p>3. Apricot Orchards:</p><p>The village is renowned for its apricot orchards. During the apricot season (usually in late June and early July), the trees are in full bloom with vibrant pink and white flowers, creating a stunning visual spectacle.</p><p>4. Local Cuisine:</p><p>Turtuk offers a taste of authentic Balti cuisine. Visitors can savor dishes like Thukpa (noodle soup), Momos (dumplings), and various apricot-based delicacies. Balti tea, made with butter and salt, is a unique beverage to try.</p><p>5. Historic Monuments:</p><p>Turtuk has several historic and cultural landmarks, including old monasteries, ruins of historic forts, and intricately designed mosques that showcase the region\'s diverse heritage.</p><p>6. Warm Hospitality:</p><p>The residents of Turtuk are known for their warm and welcoming nature. Staying in local guesthouses or homestays offers an opportunity to interact with the locals and learn about their way of life.</p><p>7. Trekking and Hiking:</p><p>The surrounding mountains and valleys offer opportunities for trekking and hiking. Popular treks include the trek to the Turtuk Waterfall and hikes to nearby villages like Diskit and Hunder.</p><p>8. Accessibility:</p><p>Turtuk is relatively remote and can be reached by road from Leh, the capital of Ladakh. The journey involves crossing high mountain passes and offers breathtaking views of the Himalayas.</p><p>9. Permits:</p><p>Travelers visiting Turtuk may need to obtain inner line permits, which are required for visiting certain areas in Ladakh. It\'s advisable to check the current permit requirements and regulations before traveling.</p><p>10. Responsible Tourism:</p><p>- Due to its sensitive ecosystem and cultural significance, responsible tourism practices are essential in Turtuk. Visitors are encouraged to respect local customs, minimize waste, and support the community through sustainable tourism initiatives.</p><p>In summary, Turtuk is a hidden gem in the heart of the Nubra Valley, offering a unique blend of natural beauty, cultural diversity, and warm hospitality. Whether you\'re exploring the stunning landscapes, tasting local cuisine, or immersing yourself in the Balti way of life, Turtuk provides an unforgettable and authentic Ladakhi experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35524,1,NULL,NULL,'Turtuk',0,NULL,NULL,NULL,NULL,NULL,'100_1695728664.png','100_1695728664.png','India','101',NULL,'2021-08-02 23:25:21','2021-08-02 23:25:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Turtuk tours, Ladakh hidden gem, remote villages','\"Turtuk\'s Hidden Gem of Ladakh with iNeedTrip\"','','',NULL,NULL,NULL,0),(101,NULL,NULL,'\"Experience high-altitude bliss at Tso Moriri with iNeedTrip. Witness the shimmering lake, explore Ladakhi culture, and enjoy the tranquility of Ladakh.\"',NULL,'<p>Tso Moriri, also known as Lake Moriri or Mountain Lake, is a stunning high-altitude lake situated in the Ladakh region of northern India. It is one of the largest high-altitude lakes in the country and is known for its breathtaking beauty, serene surroundings, and unique wildlife. Here are some key highlights of Tso Moriri:</p><p>1. Location and Altitude:</p><p>Tso Moriri is located in the Changthang Plateau in eastern Ladakh, within the Indian state of Jammu and Kashmir. It is situated at an elevation of approximately 4,595 meters (15,075 feet) above sea level, making it one of the highest lakes in the world.</p><p>2. Pristine Beauty:</p><p>The lake is renowned for its pristine and clear blue waters, which are surrounded by rugged mountains, rolling hills, and barren landscapes. The stark contrast of the deep blue lake against the stark, arid terrain creates a surreal and mesmerizing sight.</p><p>3. Wildlife Sanctuary:</p><p>The Tso Moriri Wetland Conservation Reserve, encompassing the lake and its surroundings, has been designated as a Ramsar Wetland of International Importance. It is also a protected area and home to a diverse range of wildlife, including migratory birds, Tibetan gazelles, kiang (wild ass), marmots, and snow leopards.</p><p>4. Birdwatching:</p><p>Tso Moriri is a paradise for birdwatchers. The lake attracts a wide variety of migratory birds, including bar-headed geese, Brahminy ducks, and black-necked cranes. Birdwatching is particularly popular during the summer months when the birds arrive to breed.</p><p>5. Nomadic Communities:</p><p>The Changpa nomads, a semi-nomadic community, inhabit the region around Tso Moriri. They lead a traditional way of life, herding sheep, yaks, and goats, and are known for producing high-quality Pashmina wool.</p><p>6. Trekking and Camping:</p><p>Tso Moriri is a popular destination for trekkers and adventure enthusiasts. Treks to the lake often start from Leh or Korzok village and offer opportunities to explore the surrounding landscapes, visit remote monasteries, and camp in the wilderness.</p><p>7. Korzok Monastery:</p><p>The village of Korzok, located on the northern shore of Tso Moriri, is home to the ancient Korzok Monastery. The monastery, with its traditional architecture and scenic location, is a cultural and spiritual hub in the region.</p><p>8. Accessibility:</p><p>Tso Moriri is accessible by road from Leh, the capital of Ladakh, although the journey can be long and challenging due to high mountain passes and rugged terrain. The best time to visit is during the summer months, from May to September, when the weather is relatively mild.</p><p>9. Permits:</p><p>Travelers to Tso Moriri and the Ladakh region require inner line permits, which can be obtained from the local authorities. These permits are essential for visiting protected areas and border regions.</p><p>10. Responsible Tourism:</p><p>- Due to its fragile ecosystem, responsible tourism practices are essential at Tso Moriri. Visitors are encouraged to minimize their environmental impact by not littering, respecting local customs, and supporting local communities.</p><p>In summary, Tso Moriri is a hidden gem in the remote and pristine landscapes of Ladakh. Its crystal-clear waters, diverse wildlife, and tranquil surroundings make it a captivating destination for nature lovers, adventure seekers, and those looking to immerse themselves in the beauty of the Himalayan highlands.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35292,1,NULL,NULL,'Tso moriri',0,NULL,NULL,NULL,NULL,NULL,'101_1695728393.png','101_1695728393.png','India','101',NULL,'2021-08-02 23:25:21','2021-08-02 23:25:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tso Moriri tours, Ladakh beauty, high-altitude lake','\"Tso Moriri\'s High Altitude Bliss with iNeedTrip\"','','',NULL,NULL,NULL,0),(102,NULL,NULL,'\"Indulge in a high-altitude escape in Sarchu with iNeedTrip. Enjoy rugged terrains, pristine landscapes, and the tranquility of Himachal Pradesh.\"',NULL,'<p>Sarchu is a remote and rugged high-altitude plateau located on the Manali-Leh Highway in the Indian state of Himachal Pradesh. It is situated at an elevation of approximately 4,290 meters (14,070 feet) above sea level, making it one of the highest points along this iconic road that connects Manali in Himachal Pradesh to Leh in Ladakh. Sarchu is not a town in the conventional sense but rather a campsite that serves as a crucial stopover for travelers journeying between these two regions. Here are some key highlights of Sarchu:</p><p>1. Scenic Beauty:</p><p>Sarchu is known for its breathtaking and starkly beautiful landscapes. The barren, high-altitude plateau is surrounded by towering peaks of the Great Himalayas and the Zanskar Range, making it a paradise for nature enthusiasts and photographers.</p><p>2. Stopover on Manali-Leh Highway:</p><p>Sarchu is strategically located at the border of Himachal Pradesh and the union territory of Ladakh, making it an essential stopover for travelers embarking on the challenging journey along the Manali-Leh Highway.</p><p>3. Adventure Hub:</p><p>The region around Sarchu offers numerous opportunities for adventure enthusiasts. The rugged terrain is ideal for trekking, mountain biking, and off-roading adventures. Treks to nearby places like Baralacha La and Suraj Taal are popular among trekkers.</p><p>4. Camping:</p><p>Sarchu is primarily a camping destination. Visitors can choose to camp in tents or stay in basic guesthouses and campsites. Camping under the star-studded Himalayan skies is an unforgettable experience.</p><p>5. Altitude Acclimatization:</p><p>Due to its high altitude, Sarchu serves as an acclimatization point for travelers heading to Leh and other high-altitude destinations in Ladakh. Spending a night at Sarchu allows the body to adjust to the reduced oxygen levels.</p><p>6. Weather:</p><p>Sarchu experiences extreme weather conditions. Winters are harsh with heavy snowfall, and the region remains inaccessible. The best time to visit is during the summer months from May to September when the weather is relatively milder, although daytime temperatures can still be quite cold.</p><p>7. Remote Location:</p><p>Sarchu is a remote and sparsely populated area with limited facilities. Travelers are advised to carry essential supplies, including food and water, as options may be limited.</p><p>8. Permits:</p><p>It\'s essential to obtain the necessary permits if you plan to continue your journey from Sarchu to Leh, as the region falls under a protected area.</p><p>9. Connectivity:</p><p>Sarchu has no mobile network connectivity, and access to the internet is limited. Travelers should be prepared for digital isolation during their stay.</p><p>10. Environmental Conservation:</p><p>- Being in a sensitive Himalayan ecosystem, responsible tourism and conservation efforts are crucial to preserving the natural beauty of Sarchu.</p><p>In summary, Sarchu is a remote and awe-inspiring destination that serves as a crucial point for travelers navigating the challenging Manali-Leh Highway. Whether you\'re an adventurer seeking thrilling experiences, a nature lover in search of breathtaking landscapes, or a traveler on a journey to Ladakh, Sarchu offers a unique and unforgettable experience in the heart of the Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34461,1,NULL,NULL,'Sarchu',0,NULL,NULL,NULL,NULL,NULL,'102_1695726358.png','102_1695726358.png','India','101',NULL,'2021-08-02 23:25:21','2021-08-02 23:25:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Sarchu vacations, Himachal Pradesh beauty, mountain retreat','\"Sarchu\'s High Altitude Escape with iNeedTrip\"','','',NULL,NULL,NULL,0),(103,NULL,NULL,'\"Experience a Himalayan adventure in Kargil with iNeedTrip. Explore rugged terrains, historic sites, and the beauty of Ladakh.\"',NULL,'<p>Kargil, a town situated in the Ladakh region of Jammu and Kashmir, India, is a destination that has etched its name in history for both its breathtaking landscapes and the heroic tales of valor during the Kargil War. Nestled amidst the mighty Himalayas, Kargil offers travelers a unique blend of natural beauty, cultural richness, and a chance to pay homage to the brave soldiers who defended the nation. In this blog, we\'ll embark on a virtual journey to explore the serene landscapes and the spirit of resilience that make Kargil a captivating destination.</p><p>Dras Valley:</p><p>Kargil is the gateway to the enchanting Dras Valley, known as the \"Gateway to Ladakh.\" This valley offers panoramic views of snow-capped peaks, lush meadows, and the meandering Dras River.</p><p>Kargil War Memorial:</p><p>Pay tribute to the heroes of the Kargil War at the Kargil War Memorial in Dras. The memorial serves as a solemn reminder of the sacrifices made by Indian soldiers during the conflict.</p><p>Majestic Landscapes:</p><p>Kargil is surrounded by stunning landscapes, including Suru Valley, Zanskar Valley, and Nun Kun Massif. These areas are ideal for trekking, mountaineering, and exploring pristine natural beauty.</p><p>Trekking and Adventure:</p><p>Adventure enthusiasts can embark on treks to places like Stongday Monastery, Panikhar, and Trespone. The region offers opportunities for hiking, river rafting, and camping.</p><p>Local Culture:</p><p>Discover the rich Ladakhi culture by interacting with the warm and hospitable locals. Visit traditional villages and monasteries to experience their way of life.</p><p>Mulbekh Monastery:</p><p>Explore the centuries-old Mulbekh Monastery, known for its remarkable rock carvings and ancient relics.</p><p>Local Cuisine:</p><p>Savor traditional Ladakhi cuisine, which includes dishes like Thukpa, Momos, and Tsampa. The flavors are unique and a reflection of the local culture.</p><p>Buddhist Monasteries:</p><p>Visit Buddhist monasteries like Phuktal Monastery and Rangdum Monastery to immerse yourself in the spiritual ambiance of the region.</p><p>Breathtaking Drives:</p><p>The journey to Kargil is an adventure in itself. The Srinagar-Leh Highway and Manali-Leh Highway offer some of the most scenic drives in the world, with views of rugged mountains and shimmering rivers.</p><p>Starry Nights:</p><p>Due to its high altitude and minimal light pollution, Kargil provides a perfect setting for stargazing. The clear night skies reveal a tapestry of stars and constellations.</p><p>Conclusion:</p><p>Kargil, with its awe-inspiring landscapes, cultural richness, and historic significance, is a destination that leaves a lasting impression on every traveler\'s heart. Whether you\'re paying respects to the heroes of the Kargil War, trekking through the majestic mountains, or simply enjoying the serenity of the valleys, Kargil invites you to experience both the courage of its past and the tranquility of its present. It\'s a place where the mountains stand tall, the rivers flow gracefully, and the spirit of resilience shines brightly. For those seeking a blend of history, nature, and adventure, Kargil stands as a land of courage and tranquility, waiting to be explored.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13569,0,NULL,NULL,'Kargil',0,NULL,NULL,NULL,NULL,NULL,'103_1695472447.png','103_1695472447.png','India','101',NULL,'2021-08-02 23:25:21','2021-08-02 23:25:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kargil tours, Ladakh adventure, Himalayan exploration','\"Kargil\'s Himalayan Adventure with iNeedTrip\"','','',NULL,NULL,NULL,0),(104,NULL,NULL,'\"Indulge in a Himalayan haven in Jispa with iNeedTrip. Enjoy serene landscapes, pristine rivers, and the peace of Himachal Pradesh.\"',NULL,'<p>Jispa, a serene Himalayan village nestled in the Lahaul Valley of Himachal Pradesh, India, is a destination that offers travelers an escape into the lap of pristine nature and tranquility. This charming village, situated along the Manali-Leh Highway, is surrounded by towering mountains, lush green meadows, and glistening rivers, making it a perfect haven for nature enthusiasts and adventure seekers. In this blog, we\'ll embark on a virtual journey to explore the natural wonders and peaceful ambiance that make Jispa a captivating destination.</p><p>Scenic Landscapes:</p><p>Jispa is blessed with breathtaking landscapes that include snow-capped peaks, dense forests, and the glistening Bhaga River. The picturesque surroundings provide ample opportunities for photography and relaxation.</p><p>River Crossing:</p><p>The Bhaga River, with its crystal-clear waters, is perfect for river crossing adventures. Test your mettle by navigating the river\'s gentle currents with the help of experienced guides.</p><p>Camping and Trekking:</p><p>Jispa is a starting point for numerous treks in the region. You can embark on multi-day treks to nearby areas like Chandratal Lake or simply enjoy camping under the star-studded Himalayan sky.</p><p>Buddhist Monasteries:</p><p>Explore the rich cultural heritage of Jispa by visiting nearby Buddhist monasteries like Gemur and Keylong. These monasteries offer insight into the spiritual life of the region.</p><p>Photography Paradise:</p><p>Jispa\'s landscapes and the play of light and shadow offer a perfect canvas for photography. Capture the changing colors of the mountains at sunrise and sunset.</p><p>Adventure Sports:</p><p>Jispa is a hub for adventure sports like white-water rafting, mountain biking, and rock climbing. Thrill-seekers can satisfy their adrenaline cravings in this stunning setting.</p><p>Local Cuisine:</p><p>Savor local Himachali cuisine at guesthouses and small eateries. Don\'t miss trying dishes like Chana Madra, Dham, and Babru.</p><p>Jispa Monastery:</p><p>Visit the Jispa Monastery, a serene and peaceful place for meditation and reflection. The monastery\'s stunning architecture and scenic location make it a must-visit spot.</p><p>Starry Nights:</p><p>Due to its remote location and minimal light pollution, Jispa offers some of the clearest night skies. Stargazing here is a mesmerizing experience.</p><p>Relaxation and Solitude:</p><p>For those seeking solace and a break from the urban hustle, Jispa offers a serene environment where you can unwind, read a book, or simply enjoy the sounds of nature.</p><p>Conclusion:</p><p>Jispa, with its pristine natural beauty, adventure opportunities, and cultural richness, is a destination that offers a serene and immersive Himalayan experience. Whether you\'re trekking through the majestic mountains, camping by the river, or simply enjoying the tranquility of the village, Jispa invites you to disconnect from the chaos of everyday life and reconnect with nature. It\'s a place where the Himalayas stand tall, the rivers flow freely, and the cultural traditions endure. For those seeking a tranquil retreat amidst the majestic Himalayan scenery, Jispa stands as a peaceful haven waiting to be explored.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35366,1,NULL,NULL,'Jispa',0,NULL,NULL,NULL,NULL,NULL,'104_1695471445.png','104_1695471445.png','India','101',NULL,'2021-08-02 23:25:21','2021-08-02 23:25:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Jispa vacations, Himachal Pradesh, mountain retreat','\"Jispa\'s Himalayan Haven with iNeedTrip\"','','',NULL,NULL,NULL,0),(105,NULL,NULL,'Mussoorie Package: Book affordable Mussoorie tour packages online at INeedTrip.com. Book and get discount on Mussoorie Holiday and Honeymoon Packages.',NULL,'<p style=\"text-align: justify; \">The dream of a romantic, a maverick\'s wonderland, and a nature lover\'s heaven, the sparkling hill station of Mussoorie has consistently been the top pick of many. When you visit here you can\'t clear off the recollections from your heart as the multicolored slopes will consistently help you to remember your pledge. This hill station includes a portion of the renowned educational institutions of India, stately hotels, cozy cafes, old taverns, estates, churches, buildings, offices, bustling markets, and places of interest to bait the guests. Mussoorie is one of the top hill stations in India; well known for a weekend escape, solo vacation, honeymoon destinations, Himalayan views, and Mall Road. Mussoorie Tour Package for the perfect getaway!</p><p></p><p style=\"text-align: justify; \"><b>Mesmerizing Places to visit in Mussoorie</b><br></p><p style=\"text-align: justify; \">Emitting with the landscape of the Doon and Shivalik ranges on one side, and gleaming snow-covered Himalayan ranges on the other side; Mussoorie\'s shining appeal makes it perhaps the most well-known vacationer destination in India. In addition to the fact that Mussoorie caters to t nature lovers, it additionally calls to spiritual explorers as well.&nbsp;</p><p style=\"text-align: justify; \">Mussoorie Package for a breathtaking vacation! The hill station is a door to well-known Hindu shrines, like the Gangotri and Yamunotri, and furthermore to the whole Garhwal region of the Himalayas. While strolling around the town\'s streets, itself will give you huge joy, a few spots you should visit include:</p><ol><li style=\"text-align: justify;\">Mussoorie Lake</li><li style=\"text-align: justify;\">Camel\'s Back Road</li><li style=\"text-align: justify;\">Kempty Falls</li><li style=\"text-align: justify;\">The Mall Road</li><li style=\"text-align: justify;\">Mossy Falls</li><li style=\"text-align: justify;\">Gun Hill</li><li style=\"text-align: justify;\">Lal Tibba</li><li style=\"text-align: justify;\">Happy Valley</li><li style=\"text-align: justify;\">George Everest\'s House</li><li style=\"text-align: justify;\">Haunted Savoy Hotel</li><li style=\"text-align: justify;\">Shedup Choepelling Temple</li><li style=\"text-align: justify;\">Mussoorie Heritage Centre</li><li style=\"text-align: justify;\">K Dev Bhoomi Wax Museum</li><li style=\"text-align: justify;\">Mussoorie Christ Church</li><li style=\"text-align: justify;\">Tibetan Buddhist Temple</li><li style=\"text-align: justify;\">Bhatta falls</li><li style=\"text-align: justify;\">Jwala Devi Temple</li></ol><p style=\"text-align: justify; \"><b>Enthralling things to do in Mussoorie</b></p><p style=\"text-align: justify; \">Whether its culture, tourists spots or adventure sports, there are a lot of activities to do in Mussoorie, however not every one of them is troublesome. In case you are in Mussoorie for just a short duration, you need to know which sports will let you have the best time. Choose Mussoorie Tour Package for a thrilling vacation! Here, are the top activities in Mussoorie to have complete fun:</p><ol><li style=\"text-align: justify;\">Visit the Company Garden</li><li style=\"text-align: justify;\">Enjoy in the Mussoorie Adventure Park</li><li style=\"text-align: justify;\">Disco Skating Rink</li><li style=\"text-align: justify;\">Rafting, boating, trekking, hiking, ziplining, rock climbing</li><li style=\"text-align: justify;\">Horse riding, mountain biking</li><li style=\"text-align: justify;\">Paragliding</li><li style=\"text-align: justify;\">Roller skating</li><li style=\"text-align: justify;\">Winemaking</li><li style=\"text-align: justify;\">Enjoy shopping in the vibrant markets</li><li style=\"text-align: justify;\">Enjoy food tour</li><li style=\"text-align: justify;\">Go for fishing</li><li style=\"text-align: justify;\">Wildlife safari</li><li style=\"text-align: justify;\">Village tour</li></ol><p style=\"text-align: justify; \"><b>Shopping in Mussorie, where to buy souvenirs?</b></p><p style=\"text-align: justify; \">A vacation in Mussoorie is incomplete without shopping in the local markets of this spot. Mussoorie is an awe-inspiring Indian hill station, popular for its British colonial charm, gorgeous churches, and beautiful panoramic views. If you are a shopping fanatic, visiting the local markets like the Tibetan Market, Gandhi Chowk, and others will leave you fainting over the assortment of items at appealing costs. It doesn’t matter what your budget is, get your hands on the best things to purchase in Mussoorie when you are here.</p><p style=\"text-align: justify; \"><b>Best places to shop in Mussoorie:</b></p><ol><li style=\"text-align: justify;\">Mall Road</li><li style=\"text-align: justify;\">Tibetan Market</li><li style=\"text-align: justify;\">Kulri Bazaar</li><li style=\"text-align: justify;\">Library Bazaar</li><li style=\"text-align: justify;\">Sisters Bazaar</li><li style=\"text-align: justify;\">Landour Bazaar</li><li style=\"text-align: justify;\">Kasmanda Palace</li><li style=\"text-align: justify;\">Himalayan Weavers</li></ol><p style=\"text-align: justify; \"><b>What things to buy in Mussoorie?</b></p><ol><li style=\"text-align: justify;\">Shawls</li><li style=\"text-align: justify;\">Tibetan Prayer wheels</li><li style=\"text-align: justify;\">Handicrafts</li><li style=\"text-align: justify;\">Handmade jewelry</li><li style=\"text-align: justify;\">Woolen clothes</li><li style=\"text-align: justify;\">Wooden decorative items</li></ol><p style=\"text-align: justify; \">Mesmerizing Mussoorie Tour Package will surely lure you!</p><p style=\"text-align: justify; \"><b>Food to relish in Mussoorie</b></p><p style=\"text-align: justify; \">Mussoorie, popularly known as the queen of hills, and as a cold place individuals love to come here throughout the year. It is the most famous vacation destination and has many authentic cuisines to offer. Tourists from India and abroad visit this beautiful tourists spot. Here one can get numerous choices of food items. Some local food items which tourists love to have in Mussoorie are mentioned below:</p><ol><li style=\"text-align: justify;\">Aaloo ke Gutke</li><li style=\"text-align: justify;\">Kafuli/Kapaa</li><li style=\"text-align: justify;\">Phaanu</li><li style=\"text-align: justify;\">Chainsoo&nbsp;</li><li style=\"text-align: justify;\">Bhang Ki Chutney</li><li style=\"text-align: justify;\">Garhwal ka Fannah</li><li style=\"text-align: justify;\">Momos</li><li style=\"text-align: justify;\">Chaats</li><li style=\"text-align: justify;\">Cake</li><li style=\"text-align: justify;\">Omelettes&nbsp;</li></ol><p style=\"text-align: justify; \"><b>Best time to visit Mussoorie</b></p><p style=\"text-align: justify; \">Mussoorie has a wonderful climate all throughout the year; however, the best time to visit Mussoorie is during the summer season that starting from March to June. With temperatures running somewhere in the range of 15 to 25 degrees Celsius, summers offer ideal climatic conditions for tourists to move to the hill town, and subsequently, it is viewed as the peak season in Mussoorie.&nbsp;</p><p style=\"text-align: justify; \">Since Mussoorie observes\' substantial rainfall in the monsoon season, thus, August to September is definitely not suggested at this time. Explorers who wish to observe snowfall should visit Mussoorie in the winter season, i.e., from November to February, when the temperature dips under the edge of the freezing point and the hills are covered with thick snow, making the best places to visit, significantly really beguiling. Mussoorie Honeymoon Packages for a romantic vacation!</p><p style=\"text-align: justify; \"><b>How to reach Mussoorie?</b></p><p style=\"text-align: justify; \">There are multiple ways that one can use to arrive at Mussoorie. Being a top pick among travelers, this tourist destination is connected well by all means of transport.</p><p style=\"text-align: justify; \"><b>By Air: </b>The closest airport to Mussorie is Jolly Grant Airport which is only 54 km away. One can use airways to reach quickly.</p><p style=\"text-align: justify; \"><b>By Train: </b>There are a few trains that interface New Delhi with Dehradun, like the Mussoorie Express, the Shatabdi Express, and the Nizamuddin AC Special. You can choose between a short-term venture and an overnight journey, both options are available for travelers. Start your day with our Mussoorie Holiday Packages!</p><p style=\"text-align: justify; \"><b>By Road:</b> Mussoorie has well-connected roads backing it up. Buses, cabs, or private vehicles, everything can be used to reach Mussoorie by road.</p><p style=\"text-align: justify; \"><b>Why you should visit Mussoorie for your next vacation?</b></p><p style=\"text-align: justify; \">What do we need when we are trapped in ceaseless gridlocks and unpleasant introductions? A truly necessary end-of-the-week trip to break the everyday dreariness is necessary. Mussoorie is the spot to spend some time with your friends and family in the lap of nature. Radiant Himalayan landscape, verdant scenery, and rolling valleys make it a total bundle of dreamlike splendor and outdoor activities.</p><p style=\"text-align: justify; \">The matchless beauty of Mussoorie will make your heart carried away. Monitored with the Himalayas, Mussoorie is a region with cobalt blue skies, welcoming people, and charming streets. Plan a visit to the Lal Tibba to wonder about the stunning snow-capped mountains with a stunning view. It will be a reward for you if you take your binoculars with you since summer is the season to see the distant snow-capped mountains. Celebrate the romantic milestones with our Mussoorie Honeymoon Packages!</p><p style=\"text-align: justify; \"><br></p><p></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18776,0,NULL,NULL,'Mussoorie',0,NULL,NULL,10,NULL,NULL,'105_1636373432.jpg','105_1695641313.png','India','101',NULL,'2021-08-19 18:13:49','2021-08-19 18:13:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mussoorie Tour, Book Mussoorie Package, Explore Mussoorie Tour, Honeymoon Package Mussorrie, Mussoorie Holidays.','Mussoorie Tour Packages, Holiday and Honeymoon Package Mussoorie','','',NULL,NULL,NULL,0),(106,NULL,NULL,'Bhimtal Package: Book affordable Bhimtal tour packages online at INeedTrip.com. Book and get discount on Bhimtal Holiday and Honeymoon Packages.',NULL,'<p style=\"text-align: justify; \"><b>A short guide to Bhimtal</b> - Blue skies, a shining lake, and quiet, Bhimtal is another gem beautifying the crown of Uttarakhand. Situated at an altitude of 1370 m above sea level, Bhimtal is one of the well-known tourist destinations in the Kumaon Region of Uttarakhand, and it is where hills with legendary significance stand tall to recount their story.</p><p style=\"text-align: justify; \">This quaint town in Nainital District is named after Bhima from Mahabharata, who is said to have made the beautiful lake which is the major center of attraction of the town. Guests arranging a tour here can indulge in activities like boating, kayaking, and zorbing. As you sit in your boat you may run over the island in the midst of the lake where one more fascination of Bhimtal is found here in the form of an aquarium. Thrilling trip with Bhimtal Tour Package!</p><p style=\"text-align: justify; \"><b>Beautiful places to visit in Bhimtal</b></p><p style=\"text-align: justify; \">There are a lot of spots to visit in Bhimtal for a dreamlike encounter. Get the feeling of a true Himalayan town with rich hills, green valleys, and rivers. Bhimtal is perhaps one of the best destinations in India to unwind and revive. The best place to visit in Bhimtal is Bhimtal Lake, which has an island at its center. Other than the travel industry, Bhimtal has additionally now turned into a mini district central command since the greater part of the district administration workplaces have been moved to the recently built Vikas Bhawan, the building complex for district administrative workplaces. Thus to keep you up with the spot, here’s a rundown of the relative multitude of best places which you can visit and discover during your holiday for a really enthralling involvement with the hills. Go for Bhimtal Holiday Packages!</p><p style=\"text-align: justify; \"><b>Top places to visit in Bhimtal:</b></p><p style=\"text-align: justify; \">Bhimtal Lake, Aquarium on the Bhimtal Island, Victoria Dam, Folk Culture Museum, Hidimba Parvat, Nal Damyanti Tal, Butterfly Research Center, Pines Old Cemetery, Naina Peak, Bhimeshwar Mahadev Temple, Karkotak Temple, Garg Parvat, Naukuchiatal lake.</p><p style=\"text-align: justify; \"><b>Activities to Do In Bhimtal Town</b></p><p style=\"text-align: justify; \">This small town offers a bunch of various types of activities for assorted groups of voyagers. You can go hiking or trekking in the close by mountains and the hilly district of Bhimtal city. Camping is an incredible choice to consider if you are going in a group. You can opt for paragliding and partake in the perspective on the town from Naukuchiatal.&nbsp;</p><p style=\"text-align: justify; \">Another sport to give a shot is horse riding which is found close to the Bara Pathar road in Bhimtal. Bhimtal Lake gives the perfect setup for boating in the lake. When around the lake, you can lounge around the banks and look at the hypnotizing perspectives on the sun setting along the skyline. You can catch a glimpse of the stunning pictures of nature from here. Go for Bhimtal Tour Package, if you want to enjoy a relaxing holiday!</p><p style=\"text-align: justify; \"><b>Top activities to do in Bhimtal:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space:pre\">	</span>Sightseeing</p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Paragliding and dirt biking</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Boating and fishing</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Camping and stargazing</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Hiking and trekking</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Picnic</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Shopping</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Festivities</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Kayaking and zorbing</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>Mountain biking or cycling</p><p style=\"text-align: justify; \"><b>Shopping in Bhimtal</b></p><p style=\"text-align: justify; \">Shopping is probably one of the best things to do in Bhimtal. The city roads of Bhimtal and the Mall Road in Nainital which is only 22 km from Bhimtal are fixed with small shops that sell Garhwali paintings, handmade candles, statues, carpets, jewelry, and organic products. These items fill in as magnificent trinkets to take back home. To benefit as much as possible from your shopping experience, do try the local food here to brighten up your shopping! Explore the best with our Bhimtal Package!</p><p style=\"text-align: justify; \"><b>Traditional dishes to eat in Bhimtal</b></p><p style=\"text-align: justify; \">You should definitely savor the food of Uttarakhand. The state offers some of the traditional and mouth-watering dishes. Some food dishes draw in voyagers in Bhimtal.</p><p style=\"text-align: justify; \"><b>&nbsp;The famous foods of Bhimtal:</b></p><p style=\"text-align: justify; \">Bhatt ki Churkani, Aloo Ke Gutke, Chainsoo, Phanu, Thechwani, Sisunaak aka Bichoo saag, Kafuli, Dubuk, Bhang Chutney, Sana Hua Nimbu Mooli, Kumaoni Dal Bade, Pahadi Kheere ka Raita, Singori, Jhangore ki Kheer, Singal, Arsa. Bhimtal Tour Package for a traditional holiday experience!</p><p style=\"text-align: justify; \"><b>How to Reach Bhimtal Town?</b></p><p style=\"text-align: justify; \">The town of Bhimtal is very much associated with its close-by cities and states through both air and road. You can take a flight or a train to arrive at this spot. Travel Package to Bhimtal for a mesmerizing holiday!</p><p style=\"text-align: justify; \"><b>By Air:&nbsp;</b></p><p style=\"text-align: justify; \">The nearest airport is the Pantnagar airport, situated around 56 km away from Bhimtal. It would take around 2 hours to venture out to the city from the airport. You can fly down here via Air India.&nbsp;</p><p style=\"text-align: justify; \"><b>By Road:&nbsp;</b><br></p><p style=\"text-align: justify; \">This town is 313 km from Delhi, and there is both private and public bus service from the capital. You would take 7-8 hours to arrive at this spot, contingent upon the traffic. The town is linked by NH 9. You can take taxis or a private vehicle to reach here. Bhimtal Tour Package for a serene and secluded vacation!</p><p style=\"text-align: justify; \"><b>By Rail:&nbsp;</b></p><p style=\"text-align: justify; \">Kathgodam is the closest railway station to Bhimtal town. This station is 8 km away from the city.&nbsp;</p><p style=\"text-align: justify; \"><b>Best time to visit Bhimtal</b></p><p style=\"text-align: justify; \">Summers and winters end up being the best ideal season to design your get-away here in Bhimtal. The climate in these seasons stays charming and relieving to savor the lovely town to the fullest.</p><p style=\"text-align: justify; \"><b>Summer</b></p><p style=\"text-align: justify; \">Get lost in the calming beams that sparkle brilliantly here in Bhimtal. The fresh and charming months are from March to May when the temperature is around 10 to 27C and are great for adventure activities and visiting the temples. Bhimtal Package to enjoy a pleasant weather vacation!</p><p style=\"text-align: justify; \"><b>Monsoon</b></p><p style=\"text-align: justify; \">Rainfall rules the town in the monsoon season here in Uttarakhand which starts from July to September. The temperature clearly plunges down making the land look appealing yet it\'s encouraged to check the weather forecast in advance for the perfect holiday experience.</p><p style=\"text-align: justify; \"><b>Winter</b></p><p style=\"text-align: justify; \">Cold days invite you here in Bhimtal as it’s winter season in the long stretches of September, October, and November where the temperature drops down to – 3 degrees Celcius. But this is one of the best time to spend your holidays here in Bhimtal. Welcome the New Year with zeal and enthusiasm.</p><p style=\"text-align: justify; \"><b>Where to stay in Bhimtal?</b></p><p style=\"text-align: justify; \">Ditch your usual range of familiarity and spend your trip by staying at the perfect places in Bhimtal. There are various choices accessible which are reasonable. One can partake in the rich quality of extravagance 5 stars to 1-star hotel or government guesthouses that are gotten comfortable, the town offering much calm and serene atmosphere with incredible facilities during your visit.&nbsp;</p><p style=\"text-align: justify; \">A number of resorts have additionally come up in Bhimtal that is best with regards to honeymoon couples and family holidays. Some of the beautiful resorts and hotels are lake facing and every one of the conveniences and facilities to keep the stay of guests fun, relaxed, and comfortable. Opt for Travel Package to Bhimtal for a hassle-free vacation!</p><p style=\"text-align: justify; \"><b>Is Bhimtal worth visiting?</b></p><p style=\"text-align: justify; \">Individuals who like serene landscapes and spots that aren’t swarmed will find Bhimtal engaging. You can also stop near Nainital, the city has a lesser number of vacationers and is similarly lovely. The locale has around 3 lakes and one can enjoy, boating and strolling around here. Nainital and Bhimtal are around 24 km away, you can hire a taxi.&nbsp;</p><p style=\"text-align: justify; \">Let Bhimtal Holiday Package help you to explore the best!</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,3138,0,NULL,NULL,'Bhimtal',0,NULL,NULL,10,NULL,NULL,'106_1641469023.jpg','106_1695463452.png','India','101',NULL,'2021-08-19 18:13:49','2021-08-19 18:13:49',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bhimtal Tour, Book Bhimtal Package, Explore Bhimtal Tour, Honeymoon Package Bhimtal, Bhimtal Holidays, Honeymoon Package from Delhi, Bhimtal Package from Mumbai.','Bhimtal Lake - Bhimtal Tour Packages, Holiday Package Bhimtal','','',NULL,NULL,NULL,0),(107,NULL,NULL,'\"Experience Tibetan tranquility in McLeodganj with iNeedTrip. Visit the Dalai Lama\'s abode, explore Tibetan culture, and enjoy scenic hikes.\"',NULL,'<p>Mcleodganj, often referred to as \"Little Lhasa\" due to its significant Tibetan population, is a charming hill station located in the state of Himachal Pradesh, India. Perched in the Dhauladhar Range of the Himalayas, Mcleodganj is a popular destination known for its scenic beauty, Tibetan culture, spiritual significance, and a vibrant blend of Indian and Tibetan traditions. Here are some key highlights of Mcleodganj:</p><p>1. Tibetan Culture and the Dalai Lama:</p><p>Mcleodganj is best known for being the residence of His Holiness the 14th Dalai Lama, the spiritual leader of Tibetan Buddhism. The Tsuglagkhang Complex, which houses the Dalai Lama\'s temple, residence, and the Tibet Museum, is a prominent attraction.</p><p>The town is a cultural melting pot with a Tibetan influence, and visitors can explore monasteries, stupas, and Tibetan markets, where you can find Tibetan handicrafts and cuisine.</p><p>2. Bhagsu Nag Waterfall and Temple:</p><p>Located a short trek away from Mcleodganj, the Bhagsu Nag waterfall is a popular spot for tourists. The trek to the waterfall takes you through lush greenery and offers picturesque views.</p><p>The Bhagsu Nag Temple, dedicated to Lord Shiva, is situated near the waterfall and is a significant religious site.</p><p>3. Triund Trek:</p><p>Triund is a trekking destination near Mcleodganj that offers breathtaking views of the Dhauladhar Range. It\'s a moderately easy trek suitable for both beginners and experienced trekkers.</p><p>4. Dal Lake:</p><p>Not to be confused with the larger Dal Lake in Srinagar, the Dal Lake in Mcleodganj is a serene spot surrounded by lush forests and offers boating opportunities. It is a peaceful place to relax and enjoy the tranquility.</p><p>5. Dharamkot:</p><p>Dharamkot is a small village located a short distance from Mcleodganj and is known for its meditation centers and yoga retreats. It offers a quieter and more contemplative atmosphere than the bustling Mcleodganj.</p><p>6. Tibetan Food:</p><p>Mcleodganj is a great place to savor Tibetan cuisine. Momos (dumplings), thukpa (noodle soup), and Tibetan bread are some of the popular dishes to try. The local tea, known as \"butter tea\" or \"tsampa,\" is a unique Tibetan beverage.</p><p>7. Spiritual Retreats:</p><p>Mcleodganj is a hub for spiritual seekers and offers various retreats, meditation centers, and yoga classes where visitors can engage in spiritual and wellness practices.</p><p>8. Accessibility:</p><p>Mcleodganj is well-connected by road from major cities like Delhi and Chandigarh. The nearest railway station is Pathankot, which is about 90 kilometers away, and the nearest airport is Gaggal Airport in Kangra, approximately 20 kilometers away.</p><p>9. Local Markets:</p><p>The local markets in Mcleodganj offer a range of Tibetan handicrafts, including prayer flags, thangkas (scroll paintings), and traditional clothing. The markets are a great place to shop for souvenirs.</p><p>In summary, Mcleodganj is a vibrant and spiritually rich destination that offers a unique blend of natural beauty, Tibetan culture, and opportunities for introspection and relaxation. Whether you\'re interested in exploring Tibetan heritage, embarking on treks, or simply enjoying the serene mountain environment, Mcleodganj has something to offer every traveler seeking a tranquil escape in the Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,17267,0,NULL,NULL,'Mcleodganj',0,NULL,NULL,NULL,NULL,NULL,'107_1695639929.png','107_1695639929.png','India','101',NULL,'2021-08-25 11:41:03','2021-08-25 11:41:03',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'McLeodganj tours, Tibetan culture, Himalayan retreat','\"McLeodganj\'s Tibetan Tranquility with iNeedTrip\"','','',NULL,NULL,NULL,0),(109,NULL,NULL,'Jodhpur Tour Package: INeedTrip offers Jodhpur holiday and Honeymoon tour packages at affordable rates. Explore our Jodhpur Travel Packages and get best deals on Jodhpur Packages.',NULL,'<p>In case you are planning a trip Rajasthan, you would prefer not to miss the Blue City. Read this aide before you book your trip so you will not miss any of the best activities in Jodhpur! Jodhpur is known as the Sun City because the city was blessed with bright sun and also the rulers of the Marwar were sun worshippers. It is additionally called blue city in view of the blue painted houses which can be seen from the fort. The blue hued houses were for the upper caste Brahmins in the past.&nbsp;</p><p>From the great culture to the all around flawless areas, these cities will stun you in every single way. The culture of the cities is attractively satisfying to the point that it will not take you long to experience passionate feelings for the spot. Try some of the local mouth-watering delicacies. Explore the gems of Jodhpur with our Jodhpur Package!</p><p><b>Places to visit in Jodhpur</b><br></p><p>How it might feel to be welcomed by the sunrays in the first part of the day, not through your window at your home but rather in a land where the sun appears to \'rise\'? Jodhpur is broadly called the SunCity, as the sun is noticeable here first each day. Jodhpur was established in the year 1459 by Rao Jodha and the city is name after him. The second largest city in the territory of Rajasthan is partitioned into old city and new city. The city is popular for its heavenly forts and palaces.&nbsp;<br></p><p><b>Exquisite Jodhpur with our Jodhpur Holiday Packages!&nbsp;</b></p><p>Given beneath are the best places to visit in Jodhpur that need a positive spot in your agenda.&nbsp;&nbsp;<br></p><ol><li>Umaid Bhawan Palace&nbsp;<br></li><li>Mehrangarh Fort</li><li>Jaswant Tada</li><li>Mandore Gardens&nbsp;</li><li>Ghanta Ghar</li><li>Toorji Ka Jhalra</li><li>Kaylana Lake</li><li>Bal Samand Lake Palace</li><li>Umaid Heritage Art School</li><li>Hanwant Palace</li><li>Khejarla Fort&nbsp;</li><li>Mahamandir Temple</li><li>Bullet Baba Temple&nbsp;</li><li>Rao Jodha Desert Rock Park</li><li>Jodhpur Government Museum</li><li>Man-made Sardar Samand Lake</li><li>Pali&nbsp;</li><li>Guda Bishnoi Village</li><li>Ranisar and Padamsar lakes</li><li>Chamunda Mata Temple</li><li>Mandaleshwar Mahadev Mandir&nbsp;</li><li>Fort Chanwa&nbsp;</li><li>Rai ka Baag Palace&nbsp;</li></ol><p><b>Things to do in Jodhpur&nbsp;</b><br></p><p>Jodhpur is the second-largest city in Rajasthan. It is each explorer\'s joy offering a brief look at the state\'s rich cultural heritage and the heritage left by Marwar rulers. This city was built by Rao Jodha of the Rathore family in 1459 AD and has many charming forts, palaces, lakes, and other grand architectural buildings to explore. Opt for Jodhpur Tour Package to enjoy the best vacation!<br></p><p>The best highlight of Jodhpur is its homes, implicit clear shades of blue, which paint a supernatural picture on the material of Thar Desert, something you would not have any desire to miss. See yourself as spoilt for activities in Jodhpur with regards to the Blue City, so to make it simpler, here is a rundown of famous activities that should be a part of your Jodhpur agenda.</p><ol><li>Flying Fox Zipline Tour Jodhpur</li><li>Marwar Festival&nbsp;</li><li>Nagaur Fair</li><li>World Sacred Spirit Festival</li><li>Jodhpur International Desert Kite Festival</li><li>Rajasthan International Folk Festival</li><li>Masuriya Hill Garden&nbsp;</li><li>Camel safari</li><li>Fun World Resorts cum waterpark</li><li>Shastri Circle</li><li>Machia Biological Park</li><li><br></li></ol><p><b>Scrumptious Rajasthani delicacies to try out in Jodhpur</b></p><p>Aside from its rich history, its commitment to the fashion business, its labyrinth of dazzling blue houses, street food in Jodhpur is likewise exceptionally famous among travelers and local people. The liberal serving of ghee with pretty much every feast and snack is one thing that sticks out. Jodhpur Tour Package for an interesting vacation!<br></p><p>Jodhpur offers you a blend of spicy street food and delicious desserts and is certainly the one spot you really wanted to mark off your rundown in case you\'re a foodie. So whenever you travel here, ensure you snack on these scrumptious Marwari treats while you are looking at the city\'s numerous attractions. Here is our rundown of astounding street food in Jodhpur you should definitely try:<br></p><ol><li>Makhaniya Lassi<br></li><li>Kadhi Kachhori /pyaaz kachori</li><li>Dal Bati Churma</li><li>Dahi Chaat</li><li>Pani Patasa</li><li>Shahi Samosa</li><li>Malai Roti</li><li>Gulab Halwa</li><li>Malai Ghevar</li><li>Matka Kulfi</li><li>Mirchi Bada</li><li>Sev Tamatar</li><li><br></li></ol><p><b>Exciting shopping hideouts in Jodhpur&nbsp;</b></p><p>Jodhpur is a traditional shopper’s heaven. In the midst of thriving foreign brands, a couple of urban areas remain. Among these businesses, sectors are full of cultural and customary articles actually present. What\'s more, Jodhpur is one of the absolute best.&nbsp;<br></p><p>Jodhpur Tour Package for a thrilling vacation! Shopping spots of Jodhpur are customary attractions and vivid Rajasthani textures like tye, bandhej, dye, and leheriya. Also, some flawless antique silver jewelry, traditional craftsmanship of leatherwork, and splendid footwear art like juttis and mojaris are famous here.</p><ol><li>Umaid Bhawan Palace Market<br></li><li>Clock Tower Market<br></li><li>Tripolia Bazaar</li><li>Sarafa Bazaar</li><li>Sojati Gate Market</li><li>Nai Sarak</li><li>Kapraa Bazaar</li><li>Mochi Bazaar</li></ol><p>While partaking in the polish of the city on your vacation in Jodhpur, you would absolutely dig into the assortment of traditional fabrics, trinkets of art and appreciate some flavorful trademark traditional dishes of Jodhpur. It\'s consistently advantageous to have exemplary pieces and cherish them as a memory of the fun you had while shopping in Jodhpur.<br></p><p><b>Best time to visit Jodhpur</b><br></p><p>The royal city of Jodhpur is the second-largest city in Rajasthan and has a lot of things to bring to the table in the travel industry with a plenitude of palaces, forts, and amazing temples making it a famous vacation spot. October to March is the best and ideal time to partake in the sun-kissed city of Jodhpur. This denotes the charming cold-weather months where open-air desert activities, seeing the sights, and honeymooning become a backbone. Opt for Jodhpur Honeymoon Packages for a royal and romantic vacation!<br></p><p><b>How to reach Jodhpur?</b><br></p><p><b><i>By Air</i></b><br></p><p>Jodhpur Domestic Airport is simply 5 km away from the city center. Standard flight services link Jodhpur to other major cities of India. Jodhpur is a great place of interest all major airlines fly here. Famous flights to Jodhpur are from Udaipur, Surat, Kullu, Raipur, Leh, New Delhi, Bangalore, Chennai, Hyderabad, and Kolkata. Jodhpur Tour Package for an awesome vacation experience!<br></p><p><b><i>By Train</i></b><br></p><p>Jodhpur is connected to major cities like Delhi, Chennai, Kolkata, and Mumbai. Not to fail to remember the much renowned \'Palace on Wheels\'. Well-known trains that run from the Jodhpur Railway Station are Jaisalmer Delhi Express, Suryanagari Express, Rajasthan Sampark Kranti Express, Howrah Jodhpur SF Express, Chennai Jodhpur Express, and Bangalore Jodhpur Express.<br></p><p><b><i>By Road</i></b><br></p><p>Jodhpur is all around associated with significant urban communities of India byroad. The highway has a great network from Jaipur (330km), Jaisalmer (307 km), Bikaner (250 km), Delhi (585 km), and Agra (563 km). Jodhpur can be reached by Rajasthan State Transport buses and luxury buses. They operate in all the major cities in India.<br></p><p><b>Is Jodhpur Worth Visiting?</b><br></p><p>Indeed, totally. It\'s somewhat a long way from the Golden Triangle that many people visiting Northern India generally visit New Delhi, Jaipur, and the Taj Mahal. Yet Jodhpur is most certainly worth adding to your agenda. You can get a direct flight or a train from New Delhi to Jodhpur so it\'s really simple to arrive, as well. Jodhpur Honeymoon Packages for couples with exciting deals &amp; offers!<br></p><p><b>Why Jodhpur’s old city is painted blue?</b><br></p><p>There are different hypotheses gliding around concerning why Jodhpur\'s old town was painted blue. Some say it was to keep the homes cool in a warm climate, others say it was to ward away termites, etc. Regardless, strolling through an old city with painted blue homes is like being in a labyrinth. Simply tread carefully.&nbsp;<br></p><p><i><b>Jodhpur Tour Package for a lavish vacation!</b></i></p><div><br></div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13184,0,NULL,NULL,'Jodhpur',0,NULL,NULL,10,NULL,NULL,'109_1636373251.jpg','109_1695471559.png','India','101',NULL,'2021-09-22 16:53:36','2021-09-22 16:53:36',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tour to Jodhpur, Best Package Jodhpur, Book Jodhpur Tour, Book Jodhpur Holiday Package, Cheap Jodhpur Package, Best Jodhpur Honeymoon Package, Explore Jodhpur Package, Jodhpur Honeymoon, Jodhpur Trip Deals, Best Deals Jodhpur.','Book Jodhpur Tour Packages, Jodhpur Holiday and Honeymoon Package','','',NULL,NULL,NULL,1),(110,NULL,NULL,'Jaisalmer Tour: INeedTrip offers Jaisalmer holiday and Honeymoon tour packages at affordable rates. Explore our Jaisalmer Travel Packages and get best deals on Jaisalmer Packages.',NULL,'<p style=\"text-align: justify; \">Jaisalmer with its grand royal forts and stunning palaces is rightly described as the Golden city of India. One of Rajasthan\'s greatest vacation destinations, Jaisalmer\'s appeal, despite the uncontrolled commercialization lies in its big sand palaces, forts, and vivid marketplaces. Just underneath the metropolitan surface, lie the restricted paths of the old city embellished with intricate Havelis. For the voyager in you enthused about visiting an area with a rich legacy, strict importance, and delectable food, you should definitely discover Jaisalmer.&nbsp;</p><p style=\"text-align: justify; \">The illusion like golden city of Jaisalmer, in Rajasthan\'s Thar Desert, evokes pictures of an Arabian Nights tale. A previous archaic exchanging hub, the most outstanding features of the town is the plenitude of constructions assembled utilizing particular yellow sandstone making any location here a truly flawless spot. Why not choose from one of the best Jaisalmer Packages on our list?<br></p><p style=\"text-align: justify; \"><b>Fascinating places to visit in Jaisalmer</b></p><p style=\"text-align: justify; \">The city is embellished with various tidal ponds, stunning Jain temples to worship, and extravagant havelis. This is anyway one side of the coin. Jaisalmer is additionally known for its unconventional desert safari experience. The city offers wonderful stays in the huge spread Thar Desert and heaps of adventure activities to give you a totally extraordinary encounter. Popular Jaisalmer Tour Packages will surely lure you!</p><p style=\"text-align: justify; \">The city is additionally loaded with beautiful handicraft marketplaces that will take you back in the course of events to offer you an encounter of Indian culture and legacy.<br></p><ol><li style=\"text-align: justify;\">Jaisalmer Fort<br></li><li style=\"text-align: justify;\">Sam sand dunes</li><li style=\"text-align: justify;\">Gadsisar Lake</li><li style=\"text-align: justify;\">Patwon ki Haveli</li><li style=\"text-align: justify;\">Kuldhara Abandoned Village</li><li style=\"text-align: justify;\">Bada Bagh&nbsp;</li><li style=\"text-align: justify;\">Salim Singh-ki Haveli</li><li style=\"text-align: justify;\">Tanot Mata Temple, Indo-Pak border</li><li style=\"text-align: justify;\">Jaisalmer War Museum</li><li style=\"text-align: justify;\">Desert Culture Centre and Museum</li><li style=\"text-align: justify;\">Khuri Sand Dunez</li><li style=\"text-align: justify;\">Desert National park</li><li style=\"text-align: justify;\">Dussehra Chowk</li><li style=\"text-align: justify;\">Vyas Chhatri</li><li style=\"text-align: justify;\">Nathmal-ki-Haveli</li><li style=\"text-align: justify;\">Khaba Fort</li><li style=\"text-align: justify;\">Tazia Tower</li><li style=\"text-align: justify;\">Surya Gate</li><li style=\"text-align: justify;\">Jain temple</li><li style=\"text-align: justify;\">Maharaja\'s Palace</li></ol><p style=\"text-align: justify;\">Individuals rush to this brilliant city to see its beautiful forts, ancient temples, pleasant lakes, and energetic markets. Out of all the Jaisalmer tourist places, the heavenly Jaisalmer Fort is the most notable. Around one-fourth of the city\'s populace dwells within the fort, making it a humming spot to visit any time. A Jaisalmer tour package plan includes the best places!</p><p style=\"text-align: justify;\"><b>Interesting things to do in Jaisalmer</b></p><p style=\"text-align: justify;\">Jaisalmer has no shortage of activities and places to eat. This city is honored with a peaceful landscape, colorful history, and culture. Jaisalmer Holiday Packages will surely let you have a relaxed trip!</p><p style=\"text-align: justify;\">So what are some of the significant activities in Jaisalmer? Additionally, Jaisalmer hotel bookings should be made ahead of time as the spot is a traveler\'s heaven.</p><ol><li style=\"text-align: justify;\">Parasailing In Jaisalmer</li><li style=\"text-align: justify;\">Camel desert safari in Jaisalmer</li><li style=\"text-align: justify;\">Desert Jeep safari in Jaisalmer</li><li style=\"text-align: justify;\">Camping in Sam Sand dunes</li><li style=\"text-align: justify;\">Camping in the deserts in Jaisalmer</li><li style=\"text-align: justify;\">Royal food walk tours in Jaisalmer</li><li style=\"text-align: justify;\">Quad Biking In Jaisalmer</li><li style=\"text-align: justify;\">Paramotoring – Indulge Into Adventure&nbsp;</li><li style=\"text-align: justify;\">Jaisalmer Desert Festival&nbsp;</li><li style=\"text-align: justify;\">Enjoy the night walk tour in Jaisalmer</li><li style=\"text-align: justify;\">Explore the Prehistoric Era at Akal Wood Fossil Park</li></ol><p style=\"text-align: justify;\"><b>Delicacies to try out in Jaisalmer&nbsp;</b></p><p style=\"text-align: justify;\">Rajasthani food is usually spicy. Food in Jaisalmer is impacted by the local ingredients, which implies for the most part vegan charge. Also, Rajasthan is famous for non-vegan food as well. Since Jaisalmer is a tourist destination, cuisines, for example, Bengali, Italian, and Tibetan are also famous here. Here are some of the local cuisines to try.</p><ol><li style=\"text-align: justify;\">Dal Bhati Choorma</li><li style=\"text-align: justify;\">Ker Sangri</li><li style=\"text-align: justify;\">Gatte ki Sabji</li><li style=\"text-align: justify;\">Lal Maans and Safed Maans</li><li style=\"text-align: justify;\">Makhania Lassi</li><li style=\"text-align: justify;\">Bhang Lassi</li><li style=\"text-align: justify;\">Chane Jaisalmer Ke</li><li style=\"text-align: justify;\">Kesariya Thandai</li><li style=\"text-align: justify;\">Pyaaz Kachori</li></ol><p style=\"text-align: justify;\">If you are searching for a Rajasthani thali, visit Palace View Restaurant. It is a rooftop restaurant found near Jaisalmer fort. Palace View has both open-air and indoor seating regions, to give an ideal eating experience to its clients. Other than Rajasthani cooking styles, the restaurant serves Italian food. If you need to taste the genuine kind of Rajasthan, try their Gatteki Sabzi. It is normally served quite hot with rice, or chapattis with the best Rajasthani flavors that make it staggering. This dish isn\'t only the forte of the restaurant, but the whole of Rajasthan. Jaisalmer Tour Package is bejeweled with various enchanting wonders.</p><p style=\"text-align: justify;\"><b>Exotic shopping experience Jaisalmer</b></p><p style=\"text-align: justify;\">Probably the best thing about going on a trip is having the chance to buy a few trinkets as a momentum. We\'re certain, every traveler does that to recollect the adventures they had and the recollections they made. What\'s more, these local markets and malls have some alluring offers and costs to draw voyagers in which functions admirably in light of the fact that they make money and we will show some stunning things back home. Exclusive Jaisalmer tour package for a royal escape!</p><p style=\"text-align: justify;\">The Golden City of Jaisalmer has many attractions for tourists. Shopping is probably the best thing to do in Jaisalmer. The city flourishes in markets and places that sell real Rajasthani stuff, which fill in as affectionate recollections of your vacation in Jaisalmer. While you shop till you drop, it\'s a smart thought to use some bartering abilities to get the best deals.</p><p style=\"text-align: justify;\"><b>Best Market for Shopping in Jaisalmer:</b></p><ol><li style=\"text-align: justify;\">Sonaron ka Bas</li><li style=\"text-align: justify;\">Pansari Bazaar</li><li style=\"text-align: justify;\">Bhatia Bazaar</li><li style=\"text-align: justify;\">Light of the East</li><li style=\"text-align: justify;\">Sadar Bazaar</li><li style=\"text-align: justify;\">Manak Chowk</li><li style=\"text-align: justify;\">Seema Gram</li></ol><p style=\"text-align: justify;\"><b>Things to Buy in Jaisalmer:</b></p><ol><li style=\"text-align: justify;\">Camel Leather Products</li><li style=\"text-align: justify;\">Jewellery</li><li style=\"text-align: justify;\">Mirror Work Embroidery</li><li style=\"text-align: justify;\">Jaisalmer Fossil Stone&nbsp;</li><li style=\"text-align: justify;\">Souvenirs &amp; Gift Items like shawls, carpets, brassware, rugs, carved wooden boxes, antiques, lamps, etc</li></ol><p style=\"text-align: justify;\"><b>How to reach Jaisalmer?</b></p><p style=\"text-align: justify;\"><b><i>By Air:&nbsp;</i></b></p><p style=\"text-align: justify;\">Jaisalmer airport is only 5 km away from the city. Daily flights fly from Delhi, Jaipur, and Jodhpur.</p><p style=\"text-align: justify;\"><b><i>By Train:</i></b><br></p><p style=\"text-align: justify;\">Jaisalmer railway station is only 2 km away from the city. The Palace on Wheels is one of the extravagance trains in India that can take you to Jaisalmer.</p><p style=\"text-align: justify;\"><b><i>By Road:</i></b>&nbsp;</p><p style=\"text-align: justify;\">Inter-state buses run from Jaipur to Jaisalmer often. There are no direct buses from Delhi to Jaisalmer. You have to take a bus from Delhi to Jaisalmer through Jaipur which takes around 800 km away. Go for Jaisalmer Package for a mesmerizing vacation!</p><p style=\"text-align: justify;\"><b>What is the best time to visit Jaisalmer?</b></p><p style=\"text-align: justify;\">The ideal month to design your Jaisalmer trip is from November to March. Winters are especially wonderful and charming here. Jaisalmer has a dynamic Desert Festival in February, so you can design your tour around that to encounter the local culture, food, and the excellence of the desert without limit! Jaisalmer Holiday Package to enjoy a great escape!</p><p style=\"text-align: justify;\"><b>Where to stay?</b></p><p style=\"text-align: justify;\">The grand Jaisalmer fort is still functional and has rooms in it where you can stay. There are also a few magnificent Havelis in Jaisalmer that you can visit and stay. Indeed, even outside the forts, there are many stunning Havelis (Royal Houses) with big rooms. Choose the Jaisalmer tour package for the best experience!</p><p style=\"text-align: justify;\"><b>Want more fun? Definitely choose Jaisalmer for your next royal vacation in Rajasthan</b></p><p style=\"text-align: justify;\">The charming architecture buildings of Jaisalmer will ship you back to the past and the secret in the air will provide you with a feeling of being a part of the Arabian Nights to enthrall you with tales of the desert, camels, harems, and everything fascinating. Jaisalmer fort is pretty much as large as the city that is close to it which seems, by all accounts, to be a part of this palace itself, due to coordinating with sandstone design. Become a part of this amazing place by visiting this spot. Enjoy your honeymoon with our Jaisalmer Honeymoon Packages!</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12996,0,NULL,NULL,'Jaisalmer',0,NULL,NULL,10,NULL,NULL,'110_1636372732.jpg','110_1695470509.png','India','101',NULL,'2021-09-22 16:53:36','2021-09-22 16:53:36',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tour to Jaisalmer, Best Package Jaisalmer, Book Jaisalmer Tour, Book Jaisalmer Holiday Package, Cheap Jaisalmer Package, Best Jaisalmer Honeymoon Package, Explore Jaisalmer Package, Jaisalmer Honeymoon, Jaisalmer Trip Deals, Best Deals Jaisalmer.','Book Jaisalmer Tour Packages, Jaisalmer Holiday and Honeymoon Package','','',NULL,NULL,NULL,1),(111,NULL,NULL,'\"Indulge in Lakshadweep serenity on Thinnakara Island with iNeedTrip. Enjoy pristine beaches, coral reefs, and the tranquility of India\'s tropical paradise.\"',NULL,'<p>Thinnakara is a small, uninhabited island located in the Union Territory of Lakshadweep, India. It is part of the Bangaram Atoll, which is a group of islands known for their pristine beauty and stunning coral reefs. Thinnakara is particularly famous for its unspoiled beaches, crystal-clear waters, and abundant marine life, making it a popular destination for nature lovers, snorkelers, and divers. Here are some key highlights of Thinnakara Island:</p><p>1. Natural Beauty:</p><p>Thinnakara is characterized by its natural beauty, with powdery white sandy beaches that are surrounded by crystal-clear turquoise waters. The island is relatively small, allowing visitors to explore its picturesque landscapes on foot.</p><p>2. Coral Reefs:</p><p>The surrounding waters of Thinnakara are teeming with vibrant coral reefs. Snorkeling and scuba diving are popular activities for visitors who want to explore these underwater wonders. The coral reefs are home to a diverse array of marine life, including colorful fish, rays, turtles, and various species of corals.</p><p>3. Water Sports:</p><p>In addition to snorkeling and diving, Thinnakara offers opportunities for water sports such as kayaking, windsurfing, and stand-up paddleboarding. The calm and clear waters make it an ideal place for both beginners and experienced water sports enthusiasts.</p><p>4. Birdwatching:</p><p>Thinnakara is also a haven for birdwatchers. The island is home to several species of seabirds, and you can spot them perched on the trees or flying overhead. Watching the sunrise or sunset while listening to the soothing sounds of birdsong is a memorable experience.</p><p>5. Lagoon:</p><p>Thinnakara is situated within a shallow lagoon, which creates a unique and tranquil environment. The lagoon is safe for swimming and provides an opportunity to see marine life up close.</p><p>6. Camping:</p><p>Camping is a popular way to experience Thinnakara. Visitors can set up tents near the beach and spend the night under the starry skies. It\'s a fantastic way to connect with nature and enjoy the island\'s peaceful ambiance.</p><p>7. Seclusion and Relaxation:</p><p>Thinnakara is uninhabited, and there are no permanent structures on the island except for a few basic facilities for tourists. This seclusion provides a perfect setting for relaxation and solitude.</p><p>8. Beachcombing:</p><p>The pristine beaches of Thinnakara are excellent for beachcombing. You can stroll along the shoreline, collect seashells, and enjoy the tranquility of the island.</p><p>9. Accessibility:</p><p>Thinnakara is part of the Lakshadweep archipelago, and access to the island is typically arranged through tour operators who offer packages that include transportation from the nearby Agatti Airport. Visitors need to obtain entry permits for Lakshadweep, as it is a protected region.</p><p>10. Responsible Tourism:</p><p>- As a part of the Lakshadweep Islands, Thinnakara places a strong emphasis on responsible tourism to protect its delicate ecosystems. Visitors are encouraged to follow eco-friendly practices and respect the environment.</p><p>In summary, Thinnakara Island is a hidden gem in the Lakshadweep archipelago, offering a pristine and unspoiled natural paradise for those seeking tranquility and adventure in a remote and beautiful setting. Whether you\'re exploring the underwater world, camping on the beach, or simply enjoying the breathtaking views, Thinnakara provides an unforgettable experience for nature enthusiasts and beach lovers.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36517,0,NULL,NULL,'Thinnakara',0,NULL,NULL,NULL,NULL,NULL,'111_1695728108.png','111_1695728108.png','India','101',NULL,'2021-10-11 12:21:00','2021-10-11 12:21:00',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Thinnakara Island, Lakshadweep beauty, island retreat','\"Thinnakara\'s Lakshadweep Serenity with iNeedTrip\"','','',NULL,NULL,NULL,1),(112,NULL,NULL,'Lakshadweep Tour Package: Ineedtrip offers best deals to Lakshadweep Island holiday and honeymoon packages. Click now to get exclusive Lakshadweep tour package at best rates.',NULL,'<p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">A Short Guide to Lakshadweep - Blue ocean, pristine beaches, exotic islands are some of the reasons that make Lakshadweep a well-known vacationer location off the coast of mainland India. This archipelago is one of the best spots for those looking for quietness or who needs to get a completely exhilarating encounter by enjoying some adventure. As well as offering a number of islands that are ideally suited for a tropical vacay, Lakshadweep allows the explorers to go through a sumptuous occasion with rich retreats alongside fun-filled activities that will let one experience an ideal beach vacation to treasure it for a lifetime. Lakshadweep tour package for a romantic vacation!</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">For those ready for making a visit to the famous island destination, the travel guide will allow the sightseers to cover what all must be canvassed while holidaying in Lakshadweep. Check out the best Lakshadweep Package!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Best places to visit in Lakshadweep</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">An ideal combination of islands, Lakshadweep is arranged off the Kerala coast in the Arabian Sea. Dabbed with white sandy beaches, lagoons, and coral reefs, Lakshadweep is an ideal destination for nature lovers looking for isolation and thrilling activities. Being a small Union Territory of India, Lakshadweep let the vacationers get close to the charming marine life, the rural communities, the lighthouse, and more than that and a gigantic attraction for explorers of all sorts. Go for the Lakshadweep tour package for a hassle-free vacation!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Top places to visit in Lakshadweep:</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Minicoy Island, Agatti Islands, Bangaram Island, Kavaratti Islands, Kalpeni Islands, Kadmat Island, Amindivi Island, Andretti Islands, Lighthouse In Minicoy. Lakshadweep holiday package lets you explore all the important destinations.<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Things to do in Lakshadweep</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Is it true that you are searching for calm ocean-side spots and that too in India? Welcome to Lakshadweep, India’s smallest Union Territory! Its shinning radiant green waters draw numerous explorers across the world. It is a popular tourist destination in India. It is notable for sapphire lagoons, white sand beaches, colorful corals, and the complete silence of the area. Opt for the Lakshadweep tour package for an extraordinary experience!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">What’s so special about the Lakshadweep trip? If you are searching for a serene and chaos-free trip, then this is an ideal spot for you. It is an astonishing archipelago of landmasses where you can enjoy water sports and see the ocean life. There are many things to do if you are searching for some fun activities like boat rides, scuba diving on Kalpeni Island, exploring the uncommon corals, and watching the turtles and fishes. Lakshadweep Package for an exhilarating trip!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Exciting and adventurous things to do:</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Fishing In Minicoy Island, Scuba Diving, Parasailing, Yacht Cruise, Pedal Boating, Kayaking, Canoeing, Swimming, Snorkeling. With Lakshadweep Package have a thrilling vacation!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Traditional food to eat in Lakshadweep</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Lakshadweep Islands comprises 36 islands that are located close to the shore of Kerala in the Arabian Sea. Lakshadweep is well known for tourism and is rushed with a lot of guests around the year. As the islands are nearer to Kerala, there is an engaging impact on the island’s food and culture. Lakshadweep tour package to experience something authentic and different! Lakshadweep trip truly offers something worth experiencing!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">The cuisine of Lakshadweep islands is profoundly overwhelmed by coconut and fish. As the islands are known for an assortment of widely varied vegetation, there is a use of various flavors in food. Let’s find out about some of the cuisines and dishes of this beautiful island. Lakshadweep Package for one of the best holiday experiences!</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Some of the best seafood in Lakshadweep that one can try while visiting this island are listed below:</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">1.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Octopus fry<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">2.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Mus Kavaab</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">3.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Fish tikka</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">4.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Fish pakora</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">5.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Maasu Podichath&nbsp;</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Where to enjoy shopping in Lakshadweep?</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Lakshadweep is a curious and tranquil traveler destination with astounding islands, coral reef, and many clean and secluded beaches. However, there are not an excessive number of choices of shopping in Lakshadweep but rather the town has some beach side markets, some small shops and store from which the shopaholics can fulfill their thirst of shopping up undeniably. Enjoy a thrilling trip with Lakshadweep Package!&nbsp;<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">So here is the rundown of best places for shopping in this island city from where travelers can purchase different souvenirs, local products, and artificial jewellery to take with them.</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Best places to shop in Lakshadweep:</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">1.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>China Bazar Kavaratti<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">2.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Muhammad Musthafa Supper Market</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">3.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Fiber Factory</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">4.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Co-operative Society Supermarket</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">5.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Thavakkal Clothing Store</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">6.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Thele Fole Tea Shop</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">How to reach Lakshadweep?</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">By Air</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">The closest international airport to Lakshadweep is the Cochin International Airport interfacing Lakshadweep and the central area. Cochin International Airport flies only to some of the major airports in India and furthermore to some unfamiliar places. The only airport of Lakshadweep is situated in Agatti.&nbsp;<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">You can also fly from Agatti to Kavaratti through helicopter services. They are available all around the year and from Agatti to Bangaram during the monsoon. Flights from Cochin require around one and a half hours to arrive at Agatti. The flights are operational for six days in a week. Lakshadweep Package for a serene and relaxing vacation!</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">By Ship</span></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">If you are planning to travel to Lakshadweep via ship from Cochin, there are around seven-passenger ships that operate from Cochin to Lakshadweep. They are MV Dweep Setu, MV Lakshadweep Sea, MV Kavaratti, MV Amindivi Sea, MV Arabian Sea, MV Bharat Seema, and MV Minicoy. It takes around 14 to 20 hours if you travel by ship through this route.<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">Distinctive classes of accommodation like A/C First Class (with 4 berth cabins), A/C Deluxe Class (with 2 compartment lodges), and Tourist Class (with A/C seating) can be profited in these boats. The boats are exceptional and comprise an entertainment lounge, cafeteria, snack bars and walkway, video shows, and so on benefit health service or call on a specialist on the ship itself. Lakshadweep holiday package for a breathtaking vacation!<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Best time to visit Lakshadweep</span></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">The best time to visit Lakshadweep is from October to May. From May to September it is blustery. However, all the resorts in Lakshadweep are open throughout the year. But it is better to avoid sailing during the monsoon as it could be dangerous. Experience something different with the Lakshadweep holiday package! We let you have the best holiday experience.<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Do you need permission to visit Lakshadweep?</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">To visit the Lakshadweep islands, you have to get a tourism permit from Kochi. Also, you can spend some days in \'God\'s Own Country\', Kerala, too. Ships, ferries, and boats from Kerala often sail regularly to Lakshadweep for locals. Explore the best with our Lakshadweep holiday package!&nbsp;<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\"><span style=\"box-sizing: border-box; font-weight: 600;\">Mandatory Quarantine &amp; Testing Rules&nbsp; &nbsp;</span><br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">1.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>Mandatory RT-PCR Test 72hrs prior departure<br style=\"box-sizing: border-box;\"></p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">2.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"box-sizing: border-box; margin-bottom: 1rem; line-height: 18px; color: rgb(102, 102, 102); font-size: 14px; text-align: justify; padding: 0px 0px 10px; font-family: Poppins, sans-serif !important;\">3.<span style=\"box-sizing: border-box; line-height: 20px; white-space: pre;\">	</span>2 doses of vaccine completed</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14840,0,NULL,NULL,'Lakshadweep',0,NULL,NULL,10,NULL,NULL,'112_1641468439.jpg','112_1695638672.png','India','101',NULL,'2021-10-11 12:21:00','2021-10-11 12:21:00',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tour to Lakshadweep Island, Best Package Lakshadweep Island, Book Lakshadweep Island Tour, Book Lakshadweep Island Holiday Package, Cheap Lakshadweep Island Package, Best Lakshadweep Island Honeymoon Package, Explore Lakshadweep Island Package.','Lakshadweep Island Package, Lakshadweep Holiday and Honeymoon Package','','',NULL,NULL,NULL,1),(113,NULL,NULL,'Chail Tour Packages - Book Chail Holiday and Honeymoon tour packages at best price with Ineedtrip.com. Click now to get exclusive deals on Chail packages with airfare.',NULL,'<p style=\"text-align: justify; \">Chail is encircled by lavish vegetation and has amazing views to offer. This is the reason it is affectionately called the \'hiker\'s paradise\'. Known for the highest cricket ground on the planet, and the popular heritage hotel the Chail Palace, Chail will undoubtedly give you an essential encounter. This spot lies dabbed with lovely pine and deodar trees, and charming knolls, making it all in all a treat to the eyes.</p><p style=\"text-align: justify;\">If you are searching for a serene encounter that removes you from the standard unexceptional daily schedule of the cities, then Chail is the perfect location for you. Chail was once the summer capital of the Patiala Kings, their palace has now been changed over into a hotel and tourist destination, and however the follows of royalty remain. It isn\'t excessively packed, in contrast to most other hill stations, and is an ideal spot for you to unwind and loosen up. Go for Chail Packages!</p><p style=\"text-align: justify;\"><b><i>Spots to visit in Chail</i></b></p><p style=\"text-align: justify; \"><b>Chail palace</b></p><p style=\"text-align: justify;\">Settled in the heart of the beautiful city of Chail, the Palace Hotel is situated in 75 acres of land of dazzling yards and gardens. This top notch legacy hotel gives various living choices an eatery cum bar serving the most tasty International cuisine as well as Indian food. The rooms are outfitted with floor coverings and fashionable wooden furniture.</p><p style=\"text-align: justify;\"><b>Chail is School Play Ground</b></p><p style=\"text-align: justify;\">The following most excellent spots to see in Chail is School Play Ground which is the world\'s highest cricket ground at the level of 7,500 ft. laid out in the year 1893 by Maharaja Bhupinder Singh. He made Chail as his capital since he personally was a cricket lover. For a similar explanation, he fostered this stadium on the highest point of the hill. This spot is well-suited for nature lovers, photographers and is one of the adventurous spots to visit in Chail. Enjoy the best with a Chail Tour Package!</p><p style=\"text-align: justify;\"><b>Sadhupul Lake</b></p><p style=\"text-align: justify;\">Sadhupul Lake is one of the must-visit places in Chail. It has procured this spot on account of its peaceful feeling. There is a little bistro here that serves snacks like Maggi and bread-omelet, and the sensation of partaking in your favorite snacks while plunging your feet in coldwater is unmatched. The lake is in the Sadhupal village, which is a small village settled between Solan and Chail.</p><p style=\"text-align: justify;\"><b>Chail Wildlife Sanctuary</b></p><p style=\"text-align: justify;\">Chail Wildlife Sanctuary filled in as a hunter\'s reserve for the royals residing in Chail. The Government of India declared it a wildlife safe-haven in the year 1976. The spot is honored with horde species of birds and animals including Indian Muntjac, Garal, Sambhar, Leopard, Wild Boar, Red Jungle Fowl, and Kakkar among many others. The best time to visit this safe-haven is from March to October when you will see the forest in its full magnificence. Chail Holiday Package for a truly relaxing vacation!&nbsp;</p><p style=\"text-align: justify;\"><b>Kali Devi Temple</b><br></p><p style=\"text-align: justify;\">It is the most popular pilgrim spots to visit in Chail, found right at top of the hill. The spot will assist you with achieving the genuine serenity for some time. Kali Ka Tibba is also known as Kali Devi Temple. The temple is committed to goddess Kali and has very beautiful idols of Kali Maa, Lord Ganesha, Lord Shiva, and a lot more God and Goddesses. Since the temple isn\'t encircled by anything, it provides you with all the encompassing views of the valleys and hills.</p><p style=\"text-align: justify;\">Other important places to visit includes: Siddh Baba Ka Mandir, Gurudwara Sahib, Stoned Kumbh Shiv Temple, Fun for Kids Corner - Tarika\'s Jungal Retreat Chail, Himalayan Nature Park, Lovers Hill,</p><p style=\"text-align: justify;\"><b>Things to do in Chail</b></p><p style=\"text-align: justify;\">Because of its area, Chail is treated as a decent spot for the campers, hikers, adventurous tourists and offers magnificent views on Lower Himalayas. Chail is encircled by the thick forests of pine, huge deodars, and beautiful valleys that make it an optimal family as well as a romantic holiday destination. There are many things to do in Chail, some are listed below:</p><ol><li style=\"text-align: justify;\">Shopping in Chail</li><li style=\"text-align: justify;\">Camping in Chail</li><li style=\"text-align: justify;\">Horse riding</li><li style=\"text-align: justify;\">Rappelling, ziplining, valley crossing<br></li><li style=\"text-align: justify;\">Bird watching natures walk in Chail</li></ol><p style=\"text-align: justify;\"><b>Where can you shop in Chail?</b><br></p><p style=\"text-align: justify;\">Shopping in Chail is dissimilar to shopping in the cities. You won\'t find huge malls and shopping centers here. In any case, you will actually want to get a few trinkets as local handicrafts, for example, handmade rugs, shoes, and woolen garments. You can purchase sticks and jams naturally produced using the freshest fruits of the region. The apple and plum wines, as well as natural product squashes here, are additionally a delectable. Holiday Package Chail for a romantic &amp; exciting experience!</p><p style=\"text-align: justify;\"><b>Why visit Chail?</b></p><p style=\"text-align: justify;\">With stunning views and serenity around, Chail will undoubtedly give an extraordinary travel experience. What makes this spot one of a kind is that the hill station is liberated from the group, henceforth permit sightseers to appreciate the beauty and allure of the scene in harmony.</p><p style=\"text-align: justify;\"><b>How to reach Chail?&nbsp;</b></p><p style=\"text-align: justify;\"><b>Via air</b></p><p style=\"text-align: justify;\">This wonderful spot can be reached by every one of the ways; you can pick the mode that suits you. The closest airport is Jabarhatti airport of Shimla, 72 km from Chail. Next is Chandigarh airport, 113km from Chail. Both of these airports are well connected to major cities of India. Go for Chail Travel Package for a mesmerizing vacation!</p><p style=\"text-align: justify;\"><b>Via road</b></p><p style=\"text-align: justify;\">Chail has great availability through road. Bus services from Delhi, Shimla, and Chandigarh run on standard bases. Delhi, Chandigarh, and Kalka are well connected to this wonderful hill station. The significant urban areas of India are all around associated with this spot and subsequently can be reached effectively with next to no quarrel. Chail Tour Package for an awe-inspiring spice tour experience!</p><p style=\"text-align: justify;\"><b>Via rail</b></p><p style=\"text-align: justify;\">The railway station closest to Chail is Kalka railway station around 81 from Chail. There are many trains running between the stations like Paschim Express, Himalayan Queen, Kalka mail, Kalka Shatabdi, and are very much associated and open from significant Indian cities.</p><p style=\"text-align: justify;\"><b>What is the best time to visit Chail?</b></p><p style=\"text-align: justify;\">Best time to visit Chail is in summers and harvest time. March end to mid-June is viewed as the best time to see the value in the excellence of nature. Many individuals lean toward visiting the spot in September as well. Aside from that, winters are continuously astounding on a hill station covered with white snow.</p><p style=\"text-align: justify;\">Choose Chail Honeymoon Package for a romantic getaway with your loved ones!&nbsp;</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5691,0,NULL,NULL,'Chail',0,NULL,NULL,10,NULL,NULL,'113_1695463684.png','113_1695463684.png','India','101',NULL,'2021-10-11 12:21:00','2021-10-11 12:21:00',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Honeymoon Package, Tour Package, Book Chail Honeymoon Package, Honeymoon Package Chail, Tour package Chail.','Book Chail Holiday Packages | Honeymoon Tour Package at Best Price','','',NULL,NULL,NULL,1),(114,NULL,NULL,'\"Escape to the tropical paradise of Bangaram Island with iNeedTrip. Relax on white sandy beaches, snorkel in crystal-clear waters, and enjoy island adventures.\"',NULL,'<p>Bangaram Island, a pristine jewel in the Lakshadweep archipelago, is a tropical paradise that offers an escape to unspoiled natural beauty. This secluded island, with its coral reefs, turquoise waters, and serene beaches, is a destination for travelers seeking tranquility, water sports, and an intimate connection with nature. In this blog, we\'ll embark on a virtual journey to discover the enchanting allure of Bangaram Island.</p><p>Coral Reefs and Marine Life:</p><p>Bangaram Island is surrounded by some of the most vibrant and diverse coral reefs in the world. Snorkeling and scuba diving enthusiasts flock to the island to explore these underwater wonders. You can encounter colorful corals, exotic fish species, and even sea turtles and reef sharks in their natural habitat.</p><p>Serene Beaches:</p><p>The island boasts pristine, untouched beaches with soft, powdery sand that stretches along the shoreline. Sunbathe, swim in the crystal-clear waters, or simply take leisurely walks along the beach as you soak in the tranquility.</p><p>Water Sports:</p><p>Adventurous souls can indulge in various water sports, including kayaking, windsurfing, and deep-sea fishing. The calm lagoons surrounding the island make it an ideal spot for these activities.</p><p>Island Hopping:</p><p>Bangaram Island is just one of many islands in the Lakshadweep archipelago. You can explore nearby islands like Thinnakara and Parali, each offering unique natural beauty and experiences.</p><p>Birdwatching:</p><p>Nature lovers can enjoy birdwatching on Bangaram Island, as it\'s home to a variety of bird species, including herons, terns, and the occasional migratory birds.</p><p>Eco-Friendly Accommodation:</p><p>The island has eco-friendly resorts that blend harmoniously with the natural surroundings. Accommodations are designed to minimize the impact on the environment while providing a comfortable stay.</p><p>Nighttime Stargazing:</p><p>With minimal light pollution, Bangaram Island offers an excellent opportunity for stargazing. Witness the night sky ablaze with stars and constellations, making for a mesmerizing celestial experience.</p><p>No Mobile Network:</p><p>One unique aspect of Bangaram Island is that it has limited mobile network coverage. This lack of connectivity allows visitors to truly disconnect from the digital world and immerse themselves in the island\'s peaceful environment.</p><p>Conclusion:</p><p>Bangaram Island, with its untouched beauty and abundant marine life, is a destination that offers an unparalleled tropical experience. Whether you\'re an adventure seeker, a nature enthusiast, or simply seeking solace in the lap of nature, Bangaram Island has something to offer. It\'s a place where the stresses of everyday life melt away, and the mesmerizing beauty of the Lakshadweep archipelago beckons you to explore its underwater wonders and pristine shores. For travelers seeking a remote tropical paradise, Bangaram Island stands as an idyllic destination where serenity and natural beauty reign supreme.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2263,0,NULL,NULL,'Bangaram Island',0,NULL,NULL,NULL,NULL,NULL,'114_1695462069.png','114_1695462069.png','India','101',NULL,'2021-10-11 12:21:00','2021-10-11 12:21:00',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bangaram Island, Lakshadweep, beach paradise','\"Bangaram Island\'s Tropical Getaway with iNeedTrip\"','','',NULL,NULL,NULL,1),(115,NULL,NULL,'\"Embark on a Nile Cruise through Egypt and sail through ancient history. Explore temples, pyramids, and the timeless beauty of the Nile River.\"',NULL,'<p>A Nile cruise is a journey along the legendary Nile River in Egypt, offering travelers a unique and immersive experience into the country\'s rich history, ancient civilization, and stunning landscapes. It\'s often considered one of the most iconic and romantic ways to explore Egypt\'s wonders. Here\'s an overview of what you can expect on a Nile cruise:</p><p>1. Historical Significance:</p><p>The Nile River is the lifeblood of Egypt and has played a central role in the country\'s history for thousands of years. A cruise on the Nile is like a journey back in time to explore the remnants of ancient Egypt\'s greatness.</p><p>2. Iconic Sites:</p><p>A typical Nile cruise includes visits to some of Egypt\'s most famous archaeological sites and temples. Highlights may include the temples of Luxor, Karnak, Edfu, Kom Ombo, and the Valley of the Kings on the West Bank of Luxor.</p><p>3. Luxurious Accommodations:</p><p>Nile cruises offer a range of accommodations, from luxurious floating hotels to smaller, more intimate vessels. These boats are equipped with modern amenities and provide a comfortable base for exploring the Nile\'s treasures.</p><p>4. Expert Guides:</p><p>Knowledgeable guides accompany Nile cruise tours, offering insights into the history, culture, and significance of the sites you\'ll visit.</p><p>5. Scenic Views:</p><p>Cruising the Nile allows you to soak in breathtaking landscapes, including lush riverbanks, palm groves, and desert vistas. Sunsets and sunrises over the river are particularly stunning.</p><p>6. Local Culture:</p><p>Along the way, you\'ll have opportunities to interact with local communities and experience the daily life of the people who call the Nile\'s banks home.</p><p>7. Leisure and Relaxation:</p><p>In addition to sightseeing, Nile cruises offer ample opportunities for relaxation. You can lounge on the deck, take a dip in the onboard pool, or enjoy entertainment and cuisine inspired by both Egyptian and international flavors.</p><p>8. Flexible Itineraries:</p><p>Nile cruises vary in length, and you can choose an itinerary that suits your preferences, whether you\'re looking for a short excursion or an extended voyage along the river.</p><p>9. Captivating Sunsets:</p><p>As the sun sets over the Nile, the temples and monuments along the riverbanks take on a magical glow, making for memorable photo opportunities.</p><p>10. Safety and Comfort:</p><p>- Nile cruise operators prioritize the safety and comfort of passengers, ensuring a smooth and enjoyable journey.</p><p>A Nile cruise is not just a vacation; it\'s a voyage through the annals of history, a chance to witness the grandeur of ancient Egypt, and an opportunity to relax and indulge in modern luxury. Whether you\'re a history enthusiast, a culture lover, or simply seeking a unique and memorable adventure, a Nile cruise offers an unparalleled way to explore the treasures of Egypt along one of the world\'s most iconic rivers.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19466,0,NULL,NULL,'Nile Cruise',0,NULL,NULL,NULL,NULL,NULL,'115_1694773709.png','115_1694773709.png','Egypt','65',NULL,'2021-11-15 21:08:30','2021-11-15 21:08:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Nile Cruise Egypt\r\nEgyptian history cruises\r\nNile River temples\r\nPyramids of Egypt\r\nNile River beauty','\"Nile Cruise, Egypt: Sailing through Ancient History\"','','',NULL,NULL,NULL,1),(116,NULL,NULL,'\"Explore the captivating capital of Egypt, Cairo. Witness the Pyramids, the Sphinx, bustling bazaars, and a vibrant blend of history and culture.\"',NULL,'<div>Cairo, Egypt: A Timeless Blend of History and Modernity</div><div>Cairo, the sprawling capital of Egypt, is a city that effortlessly marries its rich, millennia-old history with the hustle and bustle of a modern metropolis. Nestled along the banks of the Nile River, Cairo is a captivating destination that offers travelers a glimpse into the fascinating tapestry of Egyptian culture, from the iconic pyramids to vibrant bazaars and bustling city life. Here\'s an overview of what makes Cairo a truly remarkable place to visit:</div><div>1. The Pyramids of Giza: No visit to Cairo is complete without exploring the awe-inspiring Pyramids of Giza. The Great Pyramid, built for Pharaoh Khufu, is one of the Seven Wonders of the Ancient World. Adjacent to it are the Pyramids of Khafre and Menkaure. These ancient structures, along with the enigmatic Sphinx, continue to captivate visitors with their sheer size and historical significance.</div><div>2. Egyptian Museum: Located in Tahrir Square, the Egyptian Museum is a treasure trove of antiquities. It houses an incredible collection of artifacts, including the treasures of Tutankhamun, ancient mummies, statues, and jewelry, providing a comprehensive insight into Egypt\'s rich history.</div><div>3. Old Cairo: Wander through the historic heart of Cairo, where you\'ll find narrow winding streets, ancient mosques, and Coptic Christian churches. Visit the stunning Sultan Hassan Mosque and the famous Al-Azhar Mosque.</div><div>4. Khan El Khalili Bazaar: Dive into the vibrant chaos of the Khan El Khalili market, one of the oldest and most famous bazaars in the Middle East. Here, you can shop for spices, jewelry, textiles, and an array of souvenirs while immersing yourself in the city\'s bustling atmosphere.</div><div>5. Islamic Cairo: Explore the historical neighborhood of Islamic Cairo, where you\'ll find beautifully preserved Islamic architecture, including the stunning Ibn Tulun Mosque and the Citadel of Saladin, offering panoramic views of the city.</div><div>6. Nile Cruises: Take a leisurely cruise along the Nile River, where you can enjoy dinner and traditional music while sailing past the city\'s illuminated landmarks.</div><div>7. Modern Cairo: Discover the contemporary side of Cairo in neighborhoods like Zamalek and Maadi, known for their upscale restaurants, cafes, and cultural venues. The Cairo Tower in Zamalek offers panoramic views of the city.</div><div>8. Tahrir Square: This iconic square has played a central role in Egypt\'s modern history, including the 2011 Egyptian Revolution. It\'s a place where locals gather, and it\'s surrounded by important institutions like the Egyptian Museum and the Arab League headquarters.</div><div>9. Egyptian Cuisine: Indulge in delicious Egyptian cuisine, which includes dishes like koshari (a mixture of rice, lentils, pasta, and spices), falafel, shawarma, and mouthwatering desserts like baklava and basbousa.</div><div>10. Vibrant Street Life: Cairo is a city that never sleeps, and its streets come alive at night. Explore the city\'s cafes, restaurants, and shisha lounges, and savor the vibrant nightlife.</div><div>Cairo\'s unique charm lies in its ability to seamlessly blend ancient wonders with a dynamic and modern cityscape. It\'s a place where history, culture, and tradition converge, offering travelers an unforgettable journey through time. Whether you\'re exploring ancient monuments, haggling at bustling markets, or savoring local delicacies, Cairo invites you to immerse yourself in its timeless allure and the enduring legacy of one of the world\'s greatest civilizations.</div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,4701,0,NULL,NULL,'Cairo',0,NULL,NULL,NULL,NULL,NULL,'116_1694590081.png','116_1694590081.png','Egypt','65',NULL,'2021-11-15 21:08:30','2021-11-15 21:08:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Cairo Egypt\r\nEgyptian pyramids\r\nCairo Sphinx\r\nEgyptian bazaars\r\nModern and ancient Cairo','\"Cairo, Egypt: Where Ancient and Modern Egypt Collide\"','','',NULL,NULL,NULL,1),(117,NULL,NULL,'\"Discover Vadodara, the cultural capital, with iNeedTrip. Visit historic monuments, vibrant festivals, and experience the rich cultural heritage of Gujarat.\"',NULL,'<p>Vadodara, formerly known as Baroda, is a vibrant and culturally rich city located in the western Indian state of Gujarat. It is the third-largest city in the state and serves as an important cultural, educational, and industrial center. Vadodara boasts a blend of historical charm, modern development, and a thriving art and cultural scene. Here are some key highlights of Vadodara:</p><p>1. Historical Significance:</p><p>Vadodara has a rich historical heritage dating back to ancient times. It was ruled by various dynasties, including the Marathas and the Gaekwads, who contributed significantly to the city\'s cultural and architectural legacy.</p><p>2. Laxmi Vilas Palace:</p><p>The Laxmi Vilas Palace is one of the most iconic landmarks in Vadodara. It is the residence of the Gaekwad royal family and is four times the size of Buckingham Palace in London. The palace is an architectural masterpiece with Indo-Saracenic, Gothic, and Mughal influences. It houses a museum that displays a remarkable collection of art, artifacts, and royal memorabilia.</p><p>3. Museums and Art Galleries:</p><p>Vadodara is known for its cultural institutions, including the Maharaja Fateh Singh Museum, which features a splendid collection of art and sculptures, and the Baroda Museum and Picture Gallery, which showcases historical artifacts, paintings, and archaeology.</p><p>4. Sayaji Garden:</p><p>The Sayaji Garden, also known as Kamati Baug, is a lush green oasis in the heart of the city. It features beautiful floral displays, a zoo, and a planetarium, making it a popular spot for both tourists and locals.</p><p>5. Champaner-Pavagadh Archaeological Park:</p><p>Located on the outskirts of Vadodara, this UNESCO World Heritage Site is known for its well-preserved medieval architecture, including forts, palaces, and mosques. The park offers a glimpse into the region\'s rich history.</p><p>6. Educational Hub:</p><p>Vadodara is home to some of India\'s prestigious educational institutions, including the Maharaja Sayajirao University of Baroda and the National Institute of Fashion Technology (NIFT), attracting students from across the country.</p><p>7. Cultural Festivals:</p><p>The city hosts various cultural festivals and events throughout the year. The Vadodara International Film Festival, the Vadodara Literature Festival, and the Navratri festival celebrations are some of the notable events that draw participants and visitors.</p><p>8. Gastronomy:</p><p>Vadodara offers a wide range of traditional Gujarati cuisine, including dhokla, fafda, khandvi, and a variety of sweets like ghari and jalebi. The city\'s street food culture is vibrant, with numerous food stalls serving delicious snacks.</p><p>9. Religious Diversity:</p><p>Vadodara is known for its religious diversity and is home to numerous temples, mosques, churches, and gurudwaras. The EME Temple, Akshar Dham Temple, and Sardar Patel Planetarium are among the prominent religious and spiritual places.</p><p>10. Modern Development:</p><p>- Vadodara has witnessed significant industrial and infrastructural growth in recent years. It is home to various multinational corporations, making it an economic hub in Gujarat.</p><p>11. Accessibility:</p><p>- Vadodara is well-connected by air, rail, and road. Vadodara Airport has regular domestic flights, and the city is a major railway junction in Western India.</p><p>In summary, Vadodara is a city that beautifully combines its rich historical heritage with modern development and a vibrant cultural scene. Whether you\'re exploring its palaces, museums, or indulging in its diverse cuisine, Vadodara offers a delightful blend of history, culture, and contemporary living in the heart of Gujarat.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2423,1,NULL,NULL,'Vadodara',0,NULL,NULL,NULL,NULL,NULL,'117_1695729724.png','117_1695729724.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Vadodara tours, Gujarat culture, cultural capital','\"Vadodara\'s Cultural Capital with iNeedTrip\"','','',NULL,NULL,NULL,1),(119,NULL,NULL,'\"Discover the Jewel of Kashmir, Srinagar, with iNeedTrip. Cruise on Dal Lake, visit Mughal gardens, and experience the beauty of Jammu and Kashmir.\"',NULL,'<p>Srinagar is the largest city and the summer capital of the Indian union territory of Jammu and Kashmir. Located in the northern part of India, Srinagar is renowned for its breathtaking natural beauty, pristine lakes, lush gardens, and distinctive houseboats. It is often referred to as the \"Venice of the East\" due to its numerous waterways and the unique lifestyle of its residents. Here are some key highlights of Srinagar:</p><p>1. Dal Lake:</p><p>Dal Lake is the centerpiece of Srinagar\'s natural beauty. It is known for its tranquil waters and the iconic houseboats that dot its surface. Visitors can enjoy a shikara (traditional wooden boat) ride on the lake and stay in one of the houseboats, offering a unique and romantic experience.</p><p>2. Mughal Gardens:</p><p>Srinagar is famous for its well-maintained Mughal gardens. Shalimar Bagh, Nishat Bagh, and Chashme Shahi are among the most renowned. These gardens feature terraced lawns, vibrant flowerbeds, cascading fountains, and meticulously designed layouts, reflecting the grandeur of the Mughal era.</p><p>3. Hazratbal Shrine:</p><p>The Hazratbal Shrine is an important religious site for Muslims in Srinagar. It houses a relic believed to be the hair of the Islamic prophet Muhammad and is an important place of worship and pilgrimage.</p><p>4. Shankaracharya Temple:</p><p>Perched on a hilltop, the Shankaracharya Temple offers panoramic views of Srinagar and the surrounding Himalayan mountains. The temple is dedicated to Lord Shiva and is an important Hindu pilgrimage site.</p><p>5. Old City and Bazaars:</p><p>The old city of Srinagar is a maze of narrow lanes and historic buildings. Visitors can explore bustling bazaars selling traditional Kashmiri handicrafts such as pashmina shawls, carpets, and exquisite local embroidery.</p><p>6. Wazwan Cuisine:</p><p>Srinagar is known for its delectable Wazwan cuisine. This traditional Kashmiri feast consists of a variety of dishes, including kebabs, curries, and aromatic rice preparations. It is often served at weddings and special occasions.</p><p>7. Dachigam National Park:</p><p>Located on the outskirts of Srinagar, Dachigam National Park is a haven for wildlife enthusiasts. It is home to the endangered Hangul deer and other wildlife species like leopards, black bears, and various bird species.</p><p>8. Tulip Garden:</p><p>The Indira Gandhi Memorial Tulip Garden in Srinagar is Asia\'s largest tulip garden. It comes alive with vibrant colors during the spring season when thousands of tulips are in full bloom.</p><p>9. Pari Mahal:</p><p>The Pari Mahal, also known as the \"Palace of Fairies,\" is a historic monument with a unique blend of Islamic and Persian architectural styles. It offers panoramic views of Srinagar and Dal Lake.</p><p>10. Winter Sports:</p><p>- In winter, Srinagar and its surrounding areas become a hub for winter sports enthusiasts. The city offers opportunities for skiing, snowboarding, and snow trekking in nearby Gulmarg.</p><p>11. Houseboat Stays:</p><p>- Staying on a houseboat in Srinagar is a quintessential experience. These floating homes provide comfort and a chance to immerse oneself in the local culture and way of life.</p><p>12. Accessibility:</p><p>- Srinagar is well-connected by air to major Indian cities. Srinagar International Airport is the primary gateway to the city. It can also be accessed by road from Jammu and other nearby cities.</p><p>Srinagar\'s natural beauty, cultural richness, and warm hospitality make it a must-visit destination for travelers seeking a unique blend of relaxation and adventure amidst the stunning landscapes of the Kashmir Valley. Whether you\'re enjoying a shikara ride on Dal Lake, exploring historic sites, or savoring local cuisine, Srinagar offers an unforgettable experience in the lap of the Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25897,0,NULL,NULL,'Srinagar',0,NULL,NULL,NULL,NULL,NULL,'119_1695727445.png','119_1695727445.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Srinagar tours, Kashmir beauty, Dal Lake cruise','\"Srinagar\'s Jewel of Kashmir with iNeedTrip\"','','',NULL,NULL,NULL,1),(120,NULL,NULL,'\"Embark on a spiritual sojourn in Somnath with iNeedTrip. Visit the sacred temple, explore coastal beauty, and experience divine serenity in Gujarat.\"',NULL,'<p>Somnath is a revered pilgrimage destination located in the Indian state of Gujarat. It is known for the historic Somnath Temple, one of the 12 Jyotirlinga shrines dedicated to Lord Shiva. This ancient temple, situated on the western coast of Gujarat along the Arabian Sea, has a rich history and cultural significance, making it a sacred and spiritually significant place for Hindus. Here are some key highlights of Somnath:</p><p>1. Somnath Temple:</p><p>The Somnath Temple is the most prominent attraction in the town. It is one of the twelve Jyotirlingas, which are believed to be the most sacred shrines dedicated to Lord Shiva. The temple has a unique architectural style and stands as a symbol of resilience, as it has been rebuilt several times over the centuries after being destroyed by foreign invasions.</p><p>2. Jyotirlinga:</p><p>The term \"Jyotirlinga\" translates to \"Linga of light.\" These shrines are considered to be the manifestation of Lord Shiva\'s divine and eternal light. Devotees from all over India and abroad visit Somnath to seek Lord Shiva\'s blessings at this Jyotirlinga.</p><p>3. Historical Significance:</p><p>The Somnath Temple has a rich and storied history. It has been mentioned in various ancient texts, including the Rigveda and the Skanda Purana. It has witnessed destruction and reconstruction under various dynasties and rulers, including Mahmud of Ghazni.</p><p>4. Pristine Beaches:</p><p>Somnath is located on the shores of the Arabian Sea, and it boasts serene and pristine beaches. The picturesque coastline offers a peaceful ambiance and is perfect for relaxation and leisurely walks.</p><p>5. Aarti Ceremony:</p><p>The Somnath Temple conducts daily aarti ceremonies that are attended by thousands of devotees. The evening aarti, with the backdrop of the Arabian Sea, is a particularly enchanting and spiritually uplifting experience.</p><p>6. Prabhas Patan:</p><p>Nearby Prabhas Patan is believed to be the legendary location where Lord Krishna left his earthly incarnation. It is also home to the Bhalka Tirtha Temple, which commemorates the spot where Lord Krishna was mistakenly shot with an arrow.</p><p>7. Triveni Sangam:</p><p>The Triveni Sangam is the confluence of three holy rivers: the Hiran, Kapila, and Saraswati. It is a sacred spot where pilgrims often take ritual baths to cleanse their sins.</p><p>8. Somnath Museum:</p><p>The Somnath Museum, located near the temple, houses artifacts and sculptures related to the history and culture of the region. It provides insights into the temple\'s history and the evolution of the town.</p><p>9. Ahmedabad Connectivity:</p><p>Somnath is well-connected by road to major cities in Gujarat, particularly Ahmedabad. Ahmedabad\'s Sardar Vallabhbhai Patel International Airport is the nearest major airport.</p><p>10. Accommodation:</p><p>- The town offers a range of accommodation options, including hotels and guesthouses, catering to the needs of both pilgrims and tourists.</p><p>11. Festivals:</p><p>- Major Hindu festivals, such as Mahashivaratri and Kartik Purnima, are celebrated with great enthusiasm at the Somnath Temple. These festivals attract a large number of devotees.</p><p>In summary, Somnath is a sacred and historically significant destination that holds a special place in the hearts of Hindus. It is not only a place of religious importance but also a site of natural beauty and cultural heritage. Pilgrims and tourists alike visit Somnath to seek spiritual solace, witness its historical grandeur, and enjoy the tranquil beauty of its coastline.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35409,1,NULL,NULL,'Somnath',0,NULL,NULL,NULL,NULL,NULL,'120_1695726845.png','120_1695726845.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Somnath Yatra, Gujarat coastline, religious tourism','\"Somnath\'s Spiritual Sojourn with iNeedTrip\"','','',NULL,NULL,NULL,1),(121,NULL,NULL,'\"Embark on a lion safari in Sasangir with iNeedTrip. Spot Asiatic lions, diverse wildlife, and explore the natural beauty of Gujarat.\"',NULL,'<p>Sasangir, also known as Gir Forest National Park and Wildlife Sanctuary, is a renowned wildlife sanctuary located in the western state of Gujarat, India. It is perhaps most famous for being the last refuge of the Asiatic lion, a critically endangered species that once roamed across various parts of Asia but is now confined to this small pocket of India.</p><p>Here are some key features and information about Sasangir:</p><p>Geography and Location:</p><p>Sasangir is situated in the Junagadh district of Gujarat, in the southwestern part of India. It covers an area of approximately 1,412 square kilometers (545 square miles), making it one of the largest protected areas in the country.</p><p>Wildlife:</p><p>The primary attraction of Sasangir is the Asiatic lion (Panthera leo persica). This subspecies of lion is smaller and has a distinct fold of skin along its belly compared to its African counterparts. The sanctuary is home to more than 500 of these majestic creatures, and their presence has been critical in conserving the Asiatic lion population.</p><p>Besides lions, Sasangir is home to a diverse range of wildlife, including leopards, hyenas, jackals, sloth bears, crocodiles, and various species of deer such as the spotted deer, sambar, and chital. The sanctuary is also a haven for birdwatchers, with over 300 species of birds, including the critically endangered white-backed and long-billed vultures.</p><p>Flora:</p><p>The landscape of Sasangir is characterized by dry deciduous forests, thorny scrubland, and grasslands. The region is rich in flora, with a variety of plants and trees, such as teak, jamun, babul, and acacia, providing a diverse habitat for the wildlife.</p><p>Conservation Efforts:</p><p>Sasangir plays a crucial role in the conservation of the Asiatic lion. At one point, the Asiatic lion population had dwindled to just 20 individuals in the early 20th century. Thanks to stringent protection measures, habitat restoration, and community involvement in conservation efforts, their numbers have gradually increased, although they remain critically endangered.</p><p>Tourism:</p><p>Sasangir is a popular destination for wildlife enthusiasts and tourists from all over the world. The sanctuary offers a range of activities, including jungle safaris and nature walks. The lion safaris are particularly popular, providing visitors with an opportunity to spot these majestic cats in their natural habitat. There are also various eco-tourism initiatives in the surrounding area to promote sustainable tourism.</p><p>Challenges:</p><p>The conservation of the Asiatic lion faces ongoing challenges, such as habitat fragmentation, human-wildlife conflict, and disease outbreaks. Efforts are continually being made to mitigate these challenges and ensure the long-term survival of this species.</p><p>Sasangir serves as a shining example of successful wildlife conservation in India, particularly for the critically endangered Asiatic lion. It stands as a testament to the importance of preserving natural habitats, engaging local communities in conservation efforts, and promoting responsible tourism to protect endangered species and their ecosystems.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35408,1,NULL,NULL,'Sasangir',0,NULL,NULL,NULL,NULL,NULL,'121_1695809602.png','121_1695809602.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Sasangir safari, Gujarat wildlife, lion sightings','\"Sasangir\'s Lion Safari with iNeedTrip\"','','',NULL,NULL,NULL,1),(122,NULL,NULL,'\"Indulge in Sikkimese serenity in Pelling with iNeedTrip. Enjoy panoramic views, Buddhist monasteries, and the peaceful vibes of Sikkim.\"',NULL,'<p>Pelling is a serene and picturesque town located in the Indian state of Sikkim, nestled in the Himalayan foothills. It is renowned for its breathtaking views of the Kanchenjunga, the third-highest mountain in the world, as well as its lush green landscapes, monasteries, and a tranquil ambiance. Pelling has emerged as a popular tourist destination, offering a perfect blend of natural beauty, cultural richness, and outdoor adventures. Here are some key highlights of Pelling:</p><p>1. Majestic Views:</p><p>Pelling is famous for its panoramic views of the Kanchenjunga mountain range. On clear days, the snow-capped peaks of the Kanchenjunga and its neighboring mountains create a mesmerizing backdrop that can be enjoyed from various vantage points in the town.</p><p>2. Pemayangtse Monastery:</p><p>Pelling is home to the Pemayangtse Monastery, one of the oldest and most significant monasteries in Sikkim. It features intricate woodwork and a seven-tiered painted wooden sculpture of Guru Rimpoche.</p><p>3. Sangachoeling Monastery:</p><p>Another historic and revered monastery in Pelling is the Sangachoeling Monastery, which offers a peaceful setting for meditation and reflection.</p><p>4. Khecheopalri Lake:</p><p>Located about 25 kilometers from Pelling, Khecheopalri Lake is considered sacred by both Buddhists and Hindus. The lake is surrounded by lush forests and is believed to fulfill wishes.</p><p>5. Rimbi Waterfall:</p><p>Rimbi Waterfall, located near Pelling, is a picturesque waterfall surrounded by lush greenery. It\'s a great spot for picnics and photography.</p><p>6. Trekking and Hiking:</p><p>Pelling serves as a base for various treks and hikes in the region. Popular trekking routes include the Yuksom-Dzongri Trek and the Kanchenjunga Base Camp Trek.</p><p>7. Rabdentse Ruins:</p><p>The Rabdentse Ruins are the remnants of the second capital of the former Kingdom of Sikkim. Exploring these ancient ruins offers a glimpse into the region\'s history.</p><p>8. Bird Watching:</p><p>The forests around Pelling are rich in birdlife, making it an excellent destination for birdwatching enthusiasts.</p><p>9. Cherry Blossom Festival:</p><p>Pelling hosts the Sikkim Cherry Blossom Festival, typically in November, when the cherry blossoms are in full bloom. The festival showcases the natural beauty and cultural heritage of the region.</p><p>10. Accessibility:</p><p>- Pelling is well-connected by road to Siliguri, Gangtok, and other major towns in Sikkim. The nearest airport is Bagdogra Airport, and the nearest railway station is New Jalpaiguri (NJP) Railway Station.</p><p>11. Accommodation:</p><p>- Pelling offers a range of accommodation options, from budget guesthouses and homestays to comfortable hotels and resorts. Many properties provide stunning views of the Kanchenjunga.</p><p>12. Cultural Diversity:</p><p>- Pelling is a diverse town with a mix of ethnic groups, including the Bhutias, Lepchas, and Nepalis. This diversity is reflected in the local culture and cuisine.</p><p>In summary, Pelling is a tranquil and captivating destination that allows visitors to immerse themselves in the natural beauty and rich culture of Sikkim. Whether you\'re admiring the majestic Himalayan peaks, exploring ancient monasteries, or embarking on an adventure in the surrounding wilderness, Pelling offers a peaceful and rejuvenating experience in the lap of the Himalayas.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,21043,1,NULL,NULL,'Pelling',0,NULL,NULL,NULL,NULL,NULL,'122_1695724067.png','122_1695724067.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Pelling vacations, Sikkim beauty, mountain retreat','\"Pelling\'s Sikkimese Serenity with iNeedTrip\"','','',NULL,NULL,NULL,1),(123,NULL,NULL,'\"Embark on a desert adventure in Jaisalmer with iNeedTrip. Explore golden sand dunes, majestic forts, and Rajasthani hospitality.\"',NULL,'<p>Jamnagar, a coastal city located in the western Indian state of Gujarat, is a destination that beautifully blends history, culture, and natural beauty. Often referred to as the \"Jewel of Kathiawar,\" Jamnagar boasts a rich heritage, architectural marvels, and a thriving industrial hub. In this blog, we\'ll embark on a virtual journey to explore the diverse attractions and experiences that make Jamnagar a captivating destination.</p><p>Lakhota Lake:</p><p>Lakhota Lake, an artificial lake in the heart of Jamnagar, is a serene oasis surrounded by a palace and a museum. Visitors can enjoy boat rides on the lake and explore the Lakhota Palace Museum, which houses sculptures, artifacts, and exhibits showcasing the city\'s history.</p><p>Religious Wonders:</p><p>Jamnagar is home to several temples and religious sites, including the Bala Hanuman Temple, known for its continuous 24-hour chanting of the \"Ramdhun\" since 1964, a feat recognized by the Guinness World Records.</p><p>Khijadia Bird Sanctuary:</p><p>Nature enthusiasts can visit the Khijadia Bird Sanctuary, a haven for migratory and resident birds. The sanctuary features freshwater lakes, mudflats, and is an ideal spot for birdwatching.</p><p>Marine National Park:</p><p>Jamnagar is close to the Gulf of Kutch and serves as a gateway to the Marine National Park, a unique marine and coastal protected area teeming with coral reefs, aquatic life, and vibrant marine ecosystems.</p><p>Dwarka:</p><p>Dwarka, one of the sacred Char Dham destinations in India, is just a few hours\' drive from Jamnagar. Pilgrims visit Dwarka to seek blessings at the Dwarkadhish Temple and explore its rich mythological history.</p><p>Art and Craft:</p><p>The city is known for its exquisite Bandhani and traditional tie-and-dye textiles. You can shop for these intricate fabrics, as well as beautiful silverware and jewelry crafted by local artisans.</p><p>Jamnagar\'s Palaces:</p><p>Explore the magnificent Pratap Vilas Palace and the smaller but equally enchanting Kotha Bastion, both showcasing stunning architectural details and royal artifacts.</p><p>Ranjitsagar Dam:</p><p>The Ranjitsagar Dam is a picturesque location ideal for picnics and outings. It offers a tranquil atmosphere and is surrounded by lush greenery.</p><p>Local Cuisine:</p><p>Savor traditional Gujarati cuisine at local eateries, where you can enjoy dishes like dhokla, thepla, and kadhi. Don\'t forget to try the delicious street food found in bustling markets.</p><p>Jamnagar\'s Marine Life:</p><p>For marine enthusiasts, a visit to Jamnagar is an opportunity to explore the diverse marine life, including coral reefs and underwater treasures in the Gulf of Kutch.</p><p>Conclusion:</p><p>Jamnagar, with its historical landmarks, natural wonders, and cultural riches, is a destination that offers a wide range of experiences. Whether you\'re exploring the city\'s palaces, seeking solace at religious sites, or immersing yourself in the beauty of its natural reserves, Jamnagar invites you to discover its unique charm. It\'s a place where tradition meets modernity, and where the colors of Gujarat\'s culture shine through in its art, cuisine, and warm hospitality. For those looking to explore the cultural and natural jewels of Gujarat, Jamnagar stands as a radiant gem waiting to be explored.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13022,0,NULL,NULL,'Jamnagar',0,NULL,NULL,NULL,NULL,NULL,'123_1695470806.png','123_1695470806.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Jaisalmer tours, Rajasthan desert, desert safari','\"Jaisalmer\'s Desert Adventure with iNeedTrip\"','','',NULL,NULL,NULL,1),(124,NULL,NULL,'\"Embark on a wildlife safari in Gir National Park with iNeedTrip. Spot Asiatic lions, diverse wildlife, and explore the natural beauty of Gujarat.\"',NULL,'<p>Gir National Park, located in the western Indian state of Gujarat, is a wildlife sanctuary renowned for its role as the last refuge of the critically endangered Asiatic lion. Spread over a vast expanse of rugged terrain, Gir National Park offers a unique and thrilling safari experience amidst the wilderness. In this blog, we\'ll embark on a virtual journey to discover the natural wonders and majestic wildlife that make Gir National Park a captivating destination.</p><p>Asiatic Lions:</p><p>Gir National Park is the only place on Earth where you can find wild Asiatic lions. These magnificent creatures, smaller than their African counterparts, roam freely in their natural habitat here. A safari through Gir provides an opportunity to witness the regal lions in their glory.</p><p>Varied Wildlife:</p><p>Beyond the lions, Gir is also home to a diverse range of wildlife, including leopards, hyenas, jackals, and several species of deer like sambar and spotted deer. The park is a paradise for wildlife enthusiasts and photographers.</p><p>Rich Avian Diversity:</p><p>Birdwatchers will be delighted by the park\'s avian diversity. Gir hosts over 300 species of birds, making it a haven for birdwatching. Keep an eye out for vultures, eagles, owls, and a variety of waterfowl.</p><p>Scenic Landscape:</p><p>The park\'s terrain is characterized by rugged hills, valleys, and dry deciduous forests. The Hiran River flows through the park, providing a lifeline to the wildlife and creating picturesque landscapes.</p><p>Gir Interpretation Zone:</p><p>The Gir Interpretation Zone, also known as Devaliya Park, offers an enclosed safari experience where you can spot lions, leopards, and other wildlife up close. It\'s an ideal way to observe these majestic creatures safely.</p><p>Crocodile Breeding Center:</p><p>The Sasan Gir Crocodile Breeding Center is dedicated to the conservation of crocodiles. Visitors can learn about the breeding and conservation efforts for these reptiles.</p><p>Nature Trails:</p><p>Guided nature trails and treks are available for those looking to explore the park on foot. These trails allow you to get a closer look at the flora and fauna and experience the serenity of the forest.</p><p>Local Culture and Cuisine:</p><p>The surrounding region is rich in local culture and traditions. Don\'t miss the opportunity to savor traditional Gujarati cuisine at local eateries and interact with the warm and hospitable communities.</p><p>Conclusion:</p><p>Gir National Park, with its iconic Asiatic lions, diverse wildlife, and scenic landscapes, is a destination that offers a unique and thrilling wildlife experience. Whether you\'re on a safari tracking lions, observing birds, or simply enjoying the natural beauty of the park, Gir leaves a lasting impression on nature enthusiasts and adventurers alike. It\'s a place where the regal lions reign supreme, and the wilderness echoes with the calls of myriad creatures. For those seeking a rendezvous with the rare and majestic Asiatic lions, Gir National Park stands as a true sanctuary in the heart of Gujarat.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10450,0,NULL,NULL,'Gir National Park',0,NULL,NULL,NULL,NULL,NULL,'124_1695467819.png','124_1695467819.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gir National Park safari, Gujarat wildlife, lion sightings','\"Gir National Park\'s Wildlife Safari with iNeedTrip\"','','',NULL,NULL,NULL,1),(125,NULL,NULL,'\"Embark on a sacred pilgrimage to Dwarka with iNeedTrip. Visit the ancient Dwarkadhish Temple and experience divine serenity.\"',NULL,'<p>Dwarka, a coastal town in the western Indian state of Gujarat, holds immense religious significance as one of the seven ancient cities that are considered sacred in Hinduism. It is believed to be the dwelling place of Lord Krishna and is often referred to as \"Dwarkadhish.\" Pilgrims and tourists alike flock to Dwarka to explore its rich history, visit its revered temples, and immerse themselves in the spiritual aura of this holy city. In this blog, we\'ll embark on a virtual journey to discover the spiritual and historical treasures of Dwarka.</p><p>Dwarkadhish Temple:</p><p>The Dwarkadhish Temple, dedicated to Lord Krishna, is the primary attraction in Dwarka. This magnificent temple, with its intricate architecture and grandeur, is a place of devotion and pilgrimage for millions of devotees. It is believed to be built on the spot where Lord Krishna once lived.</p><p>Rukmini Devi Temple:</p><p>The Rukmini Devi Temple, located a short distance from the Dwarkadhish Temple, is dedicated to Lord Krishna\'s beloved wife, Rukmini. Its splendid architecture and serene surroundings make it a significant place of worship.</p><p>Gomti Ghat:</p><p>Gomti Ghat is a sacred bathing spot on the banks of the Gomti River, where pilgrims take a holy dip before visiting the temples. The ghat is adorned with small shrines and stone steps, creating a peaceful ambiance.</p><p>Bet Dwarka:</p><p>Bet Dwarka is a small island located nearby, accessible by boat. It is believed to be the ancient abode of Lord Krishna. Pilgrims visit the Bet Dwarkadhish Temple and experience the tranquil beauty of the island.</p><p>Nageshwar Jyotirlinga Temple:</p><p>The Nageshwar Jyotirlinga Temple is one of the 12 sacred shrines dedicated to Lord Shiva. It is believed to house one of the self-manifested lingams of Lord Shiva and is a significant pilgrimage site for Shaivites.</p><p>Sudama Setu:</p><p>The Sudama Setu, or Sudama Bridge, is a bridge that connects Dwarka with the island of Bet Dwarka. It is named after Sudama, Lord Krishna\'s childhood friend, and is a popular spot for tourists.</p><p>Bhadkeshwar Mahadev Temple:</p><p>This temple is located on the shore of the Arabian Sea and offers mesmerizing views of the sea and the Dwarka coast. It\'s a serene place for meditation and reflection.</p><p>Dwarka Beach:</p><p>Dwarka Beach is a beautiful spot to relax and enjoy the scenic beauty of the Arabian Sea. It\'s a great place to witness spectacular sunsets and take leisurely walks along the shore.</p><p>Conclusion:</p><p>Dwarka, with its rich spiritual heritage and historical significance, is a city that offers a profound and soul-stirring experience. Whether you\'re a devout pilgrim seeking spiritual enlightenment or a history enthusiast exploring the legends of Lord Krishna, Dwarka has something to offer. It\'s a place where the divine presence of Lord Krishna is palpable, and the spiritual aura permeates every corner. For those in pursuit of a sacred journey and a connection with India\'s spiritual roots, Dwarka stands as a timeless and sacred destination where faith and devotion converge.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34523,0,NULL,NULL,'Dwarka',0,NULL,NULL,NULL,NULL,NULL,'125_1695466521.png','125_1695466521.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dwarka Yatra, religious tourism, temple pilgrimage','\"Dwarka\'s Sacred Pilgrimage with iNeedTrip\"','','',NULL,NULL,NULL,1),(126,NULL,NULL,'\"Escape to Diu\'s coastal getaway with iNeedTrip. Enjoy serene beaches, historic forts, and a blend of Portuguese and Indian culture.\"',NULL,'<p>Diu, a small island located off the southern coast of Gujarat, India, is a hidden gem known for its pristine beaches, rich history, and a laid-back atmosphere. This charming destination offers travelers a tranquil coastal retreat with a blend of Portuguese and Indian influences. In this blog, we\'ll embark on a virtual journey to discover the serene beauty and cultural richness of Diu.</p><p>Naida Caves:</p><p>The Naida Caves are a network of naturally formed caves that exhibit intriguing rock formations. Visitors can explore these unique geological wonders and enjoy a sense of adventure while navigating through the labyrinthine passages.</p><p>Diu Fort:</p><p>Diu Fort, also known as Fortim do Mar, is a historic Portuguese fortress that once played a crucial role in the region\'s maritime defense. It offers panoramic views of the Arabian Sea and houses a lighthouse that guides ships even today.</p><p>Ghogla Beach:</p><p>Ghogla Beach is one of the most popular beaches on the island, known for its tranquil waters and golden sands. It\'s an ideal spot for swimming, sunbathing, and enjoying beachside activities.</p><p>Diu Museum:</p><p>The Diu Museum, located within the St. Thomas Church complex, showcases a rich collection of artifacts, sculptures, and exhibits that highlight the island\'s history and cultural heritage.</p><p>Gangeshwar Temple:</p><p>The Gangeshwar Temple is unique in that it\'s dedicated to Lord Shiva and is situated on the rocky shores of the Arabian Sea. The temple features five naturally formed lingams submerged in the sea, making it a sacred and serene place of worship.</p><p>Nagoa Beach:</p><p>Nagoa Beach is famous for its horseshoe shape, making it a picturesque destination for beach lovers. Water sports, camel rides, and beachside shacks serving fresh seafood add to the charm.</p><p>St. Paul\'s Church:</p><p>St. Paul\'s Church is a beautiful example of colonial architecture with its intricate woodwork and pristine interiors. It\'s a peaceful place for reflection and prayer.</p><p>Local Cuisine:</p><p>Diu is renowned for its seafood and Portuguese-inspired cuisine. Don\'t miss trying dishes like seafood thali, fish curry, and the famous Portuguese dessert, Bebinca.</p><p>Sunset Point:</p><p>Diu offers several vantage points for breathtaking sunset views. Head to places like Chakratirth Beach or Sunset Point near the Charkala Beach to witness the mesmerizing spectacle.</p><p>Beachside Relaxation:</p><p>One of Diu\'s main attractions is its peaceful ambiance. Travelers can unwind on the beaches, listen to the soothing sound of waves, and escape the hustle and bustle of city life.</p><p>Conclusion:</p><p>Diu, with its serene beaches, historic landmarks, and cultural richness, is a destination that offers a perfect escape from the ordinary. Whether you\'re exploring ancient forts, lazing on golden sands, or savoring delicious seafood, Diu has something for every traveler. It\'s a place where time seems to slow down, allowing you to embrace the tranquil beauty of the Arabian Sea and the fascinating history of Portuguese influence. For those seeking a coastal haven and a glimpse of India\'s maritime past, Diu stands as a serene and captivating destination that leaves lasting memories.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7951,0,NULL,NULL,'Diu',0,NULL,NULL,NULL,NULL,NULL,'126_1695466221.png','126_1695466221.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Diu vacations, coastal retreat, Portuguese heritage','\"Diu\'s Coastal Getaway with iNeedTrip\"','','',NULL,NULL,NULL,1),(127,NULL,NULL,'\"Explore Bhavnagar\'s coastal beauty with iNeedTrip. Discover serene beaches, historic sites, and the rich maritime heritage of Gujarat.\"',NULL,'<p>Bhavnagar, located on the coast of the western Indian state of Gujarat, is a city that resonates with history, culture, and maritime heritage. With its grand palaces, religious temples, and a bustling port, Bhavnagar offers travelers a unique blend of tradition and modernity. In this blog, we\'ll embark on a virtual journey to discover the cultural riches and historical significance of Bhavnagar.</p><p>Gaurishankar Lake:</p><p>Start your exploration of Bhavnagar with a visit to Gaurishankar Lake, a picturesque water body surrounded by lush gardens. It\'s a peaceful spot to relax, enjoy a boat ride, or take a leisurely stroll along the promenade.</p><p>Nilambag Palace:</p><p>Nilambag Palace, an architectural masterpiece, serves as a symbol of Bhavnagar\'s royal heritage. This elegant palace, now a heritage hotel, offers a glimpse into the opulent lifestyle of the erstwhile royal family. The palace\'s lush gardens and majestic interiors are a treat for history enthusiasts.</p><p>Takhteshwar Temple:</p><p>Perched on a small hill, the Takhteshwar Temple is dedicated to Lord Shiva and offers panoramic views of Bhavnagar. The temple\'s white marble structure and tranquil surroundings make it a place of spiritual significance and natural beauty.</p><p>Victoria Park:</p><p>Victoria Park, a sprawling green oasis in the heart of Bhavnagar, is a popular spot for picnics and outdoor activities. The park features a serene lake, well-maintained lawns, and a variety of flora and fauna.</p><p>Velavadar Blackbuck National Park:</p><p>A short drive from Bhavnagar takes you to the Velavadar Blackbuck National Park, home to a thriving population of blackbucks and other wildlife. It\'s a haven for nature enthusiasts and wildlife photographers.</p><p>Shri Swaminarayan Mandir:</p><p>The Shri Swaminarayan Mandir is a beautiful temple dedicated to Lord Swaminarayan. Its intricate architecture and ornate carvings make it a serene place for prayer and reflection.</p><p>Bhavnagar Lock Gate:</p><p>The Bhavnagar Lock Gate, a marvel of engineering, is a prominent landmark of the city. It controls the water levels in the Bhavnagar port and is an interesting place to visit and learn about the city\'s maritime history.</p><p>Bhavnagar Bird Sanctuary:</p><p>For birdwatching enthusiasts, the Bhavnagar Bird Sanctuary is a treat. It\'s home to a variety of migratory birds and offers a serene environment for observing these feathered visitors.</p><p>Conclusion:</p><p>Bhavnagar, with its rich history, cultural heritage, and natural beauty, is a city that invites travelers to explore its diverse offerings. Whether you\'re admiring the grandeur of Nilambag Palace, seeking solace at Takhteshwar Temple, or enjoying the serenity of Gaurishankar Lake, Bhavnagar has something for everyone. It\'s a place where tradition and modernity coexist harmoniously, inviting you to delve into the heart of Gujarat\'s culture and heritage. For travelers seeking a glimpse of history and a taste of maritime charm, Bhavnagar stands as a fascinating destination on Gujarat\'s coast.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,3133,0,NULL,NULL,'Bhavnagar',0,NULL,NULL,NULL,NULL,NULL,'127_1695463228.png','127_1695463228.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bhavnagar tours, Gujarat coast, coastal exploration','\"Bhavnagar\'s Coastal Beauty with iNeedTrip\"','','',NULL,NULL,NULL,1),(128,NULL,NULL,': \"Explore the vibrant heritage of Ahmedabad with iNeedTrip. Discover historic landmarks, colorful markets, and delicious cuisine.\"',NULL,'<p>Ahmedabad, the largest city in Gujarat, India, is a destination that seamlessly blends its rich historical heritage with a vibrant modern outlook. As a bustling metropolis with a storied past, Ahmedabad offers travelers a kaleidoscope of experiences, from exploring its centuries-old architecture to savoring its mouthwatering street food. In this blog, we\'ll take you on a virtual journey to discover the diverse attractions and cultural tapestry that make Ahmedabad a compelling destination.</p><p>Historic Old Ahmedabad:</p><p>The heart of the city, known as the \"Old City\" or \"Pol,\" is a labyrinth of narrow lanes, historic havelis (mansions), and intricately carved wooden facades. Visit the Jama Masjid, Sidi Saiyyed Mosque with its famous \"Tree of Life\" window, and the peaceful Siddi Bashir Mosque known for its vibrating minarets.</p><p>Sabarmati Ashram:</p><p>Mahatma Gandhi\'s Sabarmati Ashram is a place of immense historical significance. Explore the tranquil ashram, where Gandhi lived during the freedom struggle, and visit the museum that houses his personal belongings and memorabilia.</p><p>Sardar Vallabhbhai Patel Stadium:</p><p>Home to various sporting events and cultural performances, Sardar Vallabhbhai Patel Stadium is a modern marvel of architecture. Even if you don\'t catch a game or event, the stadium\'s striking design is worth admiring.</p><p>Vibrant Street Food:</p><p>Ahmedabad is a paradise for food lovers. Savor local street foods like dhokla, fafda, jalebi, and the iconic Gujarati thali at renowned eateries and food stalls across the city.</p><p>Kankaria Lake:</p><p>Kankaria Lake, an artificial lake in the heart of Ahmedabad, offers recreational activities such as boating, toy train rides, and a zoo. The lakefront promenade is a popular spot for evening walks and enjoying local street snacks.</p><p>Calico Museum of Textiles:</p><p>For art and textile enthusiasts, the Calico Museum is a must-visit. It houses a remarkable collection of Indian fabrics, textiles, and artifacts, showcasing the rich textile heritage of the region.</p><p>Ahmedabad Heritage Walk:</p><p>Embark on a guided heritage walk to explore the city\'s historical treasures. The walk typically covers significant landmarks, pols (neighborhoods), and insights into the city\'s culture and architecture.</p><p>Conclusion:</p><p>Ahmedabad, with its blend of culture, history, and modernity, offers a unique and enriching travel experience. Whether you\'re delving into its rich past in the Old City, paying homage to Gandhi at Sabarmati Ashram, indulging in delectable street food, or immersing yourself in its vibrant arts and textiles scene, Ahmedabad has something for every traveler. It\'s a destination where the past and present coexist harmoniously, inviting you to explore its multifaceted charm and cultural tapestry. Ahmedabad is not just a city but a journey through time, tradition, and contemporary life, all in one captivating destination.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,296,0,NULL,NULL,'Ahmedabad',0,NULL,NULL,NULL,NULL,NULL,'128_1695455893.png','128_1695455893.png','India','101',NULL,'2022-01-03 15:57:34','2022-01-03 15:57:34',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ahmedabad tours, Gujarat heritage, cultural experiences','\"Ahmedabad\'s Vibrant Heritage with iNeedTrip\"','','',NULL,NULL,NULL,1),(129,NULL,NULL,'\"Experience the modern marvels of Singapore, the Lion City. Explore futuristic architecture, diverse cuisine, and the blend of cultures in Southeast Asia.\"',NULL,'<p>Singapore, often referred to as the \"Lion City,\" is a dazzling, modern metropolis that effortlessly blends tradition with innovation. Nestled at the crossroads of Asia, this tiny island nation has made an indelible mark on the global stage, captivating visitors with its multicultural tapestry, breathtaking cityscape, and unwavering commitment to progress.</p><p>A Cultural Melting Pot:</p><p>Singapore is a microcosm of diversity, where people of various ethnic backgrounds live harmoniously. Chinese, Malay, Indian, and other communities have coexisted for centuries, creating a vibrant tapestry of cultures, languages, and traditions. This rich heritage is celebrated through festivals, food, and art, making Singapore a cultural melting pot.</p><p>Culinary Wonderland:</p><p>Singapore is a food lover\'s paradise. Its hawker centers, where you can savor delectable dishes at affordable prices, are legendary. Try iconic dishes like Hainanese chicken rice, laksa, and chili crab. Michelin-starred restaurants also abound, offering gastronomic delights for the discerning palate.</p><p>Iconic Skyline:</p><p>The Singapore skyline is a testament to modern architecture and urban design. The Marina Bay Sands SkyPark offers panoramic views of the city, while the Supertree Grove at Gardens by the Bay provides an otherworldly experience with its vertical gardens and light shows.</p><p>Gardens and Green Spaces:</p><p>Singapore may be a bustling city, but it\'s also incredibly green. The city\'s commitment to green spaces is evident in places like the Singapore Botanic Gardens, a UNESCO World Heritage Site, and Sentosa Island, a leisure and entertainment destination.</p><p>Historical and Cultural Gems:</p><p>Singapore\'s history is preserved in places like Chinatown, Little India, and Kampong Glam, where you can explore temples, mosques, and vibrant street markets. Don\'t miss the Peranakan houses in Katong and the historic Raffles Hotel.</p><p>Shopping Extravaganza:</p><p>Orchard Road is a shopping haven, lined with high-end boutiques, department stores, and malls. For a more eclectic shopping experience, visit Bugis Street or Haji Lane, known for their unique finds and indie boutiques.</p><p>Modern Art and Museums:</p><p>Singapore has a thriving arts scene, with institutions like the National Gallery, the ArtScience Museum, and the Singapore Art Museum showcasing a wide range of artistic expressions.</p><p>Efficiency and Cleanliness:</p><p>Singapore is renowned for its efficiency, cleanliness, and safety. The city\'s strict laws ensure that it remains one of the cleanest and safest destinations in the world.</p><p>Smart City Innovations:</p><p>Singapore is at the forefront of smart city initiatives, using technology to improve urban living. The city\'s commitment to sustainability is evident in initiatives like green buildings, renewable energy, and eco-friendly transportation.</p><p>Civic Pride and Harmony:</p><p>Singaporeans take great pride in their nation\'s achievements and their role in shaping its future. The city\'s commitment to racial and religious harmony is enshrined in its policies and practices.</p><p>Singapore\'s allure lies not only in its stunning skyline and modern amenities but also in its ability to honor its rich heritage while embracing the future. It\'s a city that welcomes visitors with open arms, inviting them to explore its unique blend of cultures, flavors, and experiences, all within the confines of a dynamic and ever-evolving urban landscape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25278,1,NULL,NULL,'Singapore',0,NULL,NULL,NULL,NULL,NULL,'129_1695190220.png','129_1695190220.png','Singapore','190',NULL,'2022-03-15 16:39:23','2022-03-15 16:39:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Singapore Lion City\r\nSingapore modern marvels\r\nFuturistic architecture in Singapore\r\nSingaporean cuisine\r\nSoutheast Asian culture','\"Singapore: The Lion City\'s Modern Marvels\"','','',NULL,NULL,NULL,1),(130,NULL,NULL,'\"Discover the allure of Phuket, Thailand, the Pearl of the Andaman Sea. Enjoy pristine beaches, water sports, and Thai island paradise.\"',NULL,'<p>Phuket is a stunning island province located in the southern part of Thailand, renowned for its breathtaking natural beauty, vibrant culture, and vibrant nightlife. It is the largest island in Thailand and one of the country\'s most popular tourist destinations. Here\'s a closer look at what makes Phuket such a captivating and diverse destination:</p><p>1. Natural Beauty:</p><p>Phuket boasts some of the most stunning landscapes in Thailand. Its coastline is dotted with beautiful beaches, each with its own unique charm. Patong Beach is known for its vibrant nightlife, while Kata and Karon offer a more relaxed atmosphere. For those seeking tranquility, there are hidden gems like Freedom Beach and Laem Singh Viewpoint.</p><p>2. Cultural Heritage:</p><p>Beyond its beaches, Phuket has a rich cultural heritage. The Old Town in Phuket City is a testament to the island\'s history, featuring well-preserved Sino-Portuguese architecture, colorful buildings, and vibrant street art. Visitors can explore temples like Wat Chalong and Wat Phra Thong to immerse themselves in Thai culture.</p><p>3. Adventure and Watersports:</p><p>Phuket is an adventure lover\'s paradise. Visitors can indulge in various water sports, such as snorkeling, scuba diving, surfing, and parasailing. The crystal-clear waters of the Andaman Sea make it an ideal destination for exploring vibrant coral reefs and encountering marine life.</p><p>4. Island Hopping:</p><p>Phuket serves as a gateway to a multitude of smaller islands and archipelagos. Popular day trips and excursions include visiting Phi Phi Islands, Similan Islands, and James Bond Island. Each of these destinations offers unique natural beauty and activities.</p><p>5. Delicious Cuisine:</p><p>Thai cuisine is renowned worldwide for its flavors and variety, and Phuket is no exception. From street food vendors serving pad Thai and green curry to high-end restaurants offering seafood delicacies, the island caters to all tastes. Don\'t miss trying the local dishes, including Tom Yum Goong (spicy shrimp soup) and Som Tum (green papaya salad).</p><p>6. Nightlife and Entertainment:</p><p>Phuket\'s nightlife is legendary. Patong Beach is the epicenter of the island\'s entertainment scene, with a plethora of bars, nightclubs, and live music venues. The Bangla Road in Patong is particularly famous for its energetic and lively atmosphere after dark.</p><p>7. Wellness and Spa Retreats:</p><p>Phuket is also a hub for wellness and spa tourism. Many resorts and retreats offer yoga classes, meditation sessions, and rejuvenating spa treatments set against the backdrop of lush greenery and serene beaches.</p><p>8. Shopping:</p><p>The island has a vibrant shopping scene, with bustling markets and modern shopping centers. Patong Beach and Phuket Town have a wide range of stalls selling everything from souvenirs and clothing to handicrafts and antiques.</p><p>Phuket\'s allure lies in its ability to cater to a diverse range of travelers, whether they seek relaxation on beautiful beaches, thrilling adventures in the water, or a taste of Thai culture and cuisine. It\'s no wonder that Phuket remains a top destination in Southeast Asia, drawing visitors from around the world to experience its magic and beauty.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,21319,1,NULL,NULL,'Phuket',0,NULL,NULL,NULL,NULL,NULL,'130_1695101544.png','130_1695101544.png','Thailand','215',NULL,'2022-03-16 16:32:52','2022-03-16 16:32:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Phuket Thailand\r\nAndaman Sea paradise\r\nPhuket beaches\r\nThai water sports\r\nPhuket island beauty','\"Phuket, Thailand: The Pearl of the Andaman Sea\"','','',NULL,NULL,NULL,1),(131,NULL,NULL,'\"Escape to the beach paradise of Krabi, Thailand. Explore limestone cliffs, relax on sandy shores, and embark on island-hopping adventures.\"',NULL,'<p>Krabi is a beautiful and popular destination located in the southern part of Thailand, along the Andaman Sea. Known for its stunning natural landscapes, vibrant culture, and a plethora of outdoor activities, Krabi has become a top choice for travelers seeking both relaxation and adventure. Here\'s an overview of what makes Krabi a captivating destination:</p><p>Geography and Location:</p><p>Krabi Province is situated in the southern region of Thailand, approximately 800 kilometers (500 miles) south of Bangkok. Krabi Town, the provincial capital, is located on the mainland, while some of the most renowned attractions, including the islands of Phi Phi and Ao Nang, are easily accessible by boat.</p><p>Natural Beauty:</p><p>Krabi is celebrated for its breathtaking natural landscapes, including:</p><p>Stunning Beaches: Krabi boasts some of Thailand\'s most beautiful beaches, such as Railay Beach, Ao Nang, and Nopparat Thara Beach. These sandy stretches are perfect for sunbathing, swimming, and water sports.</p><p>Limestone Karsts: Iconic limestone karst formations rise dramatically from the clear waters of the Andaman Sea. These impressive cliffs provide a unique backdrop for activities like rock climbing and hiking.</p><p>Islands: Krabi is the gateway to numerous picturesque islands, including the Phi Phi Islands, Koh Lanta, and Hong Islands, each offering its own charm and activities, such as snorkeling, diving, and exploring hidden coves.</p><p>Outdoor Activities:</p><p>The natural beauty of Krabi lends itself to a wide range of outdoor adventures:</p><p>Rock Climbing: Railay Beach is a world-famous rock climbing destination, with limestone cliffs that cater to climbers of all skill levels.</p><p>Hiking and Trekking: The interior of Krabi Province is dotted with lush jungles and trekking trails. Hike to viewpoints like the Tiger Cave Temple or embark on multi-day treks in the surrounding national parks.</p><p>Water Sports: Krabi offers fantastic opportunities for snorkeling, scuba diving, kayaking, and stand-up paddleboarding. The crystal-clear waters teem with marine life and vibrant coral reefs.</p><p>Culture and Cuisine:</p><p>Krabi is a melting pot of cultures, with a mix of Thai, Chinese, and Muslim influences. This cultural diversity is reflected in its cuisine, which is known for its bold flavors and freshness. Don\'t miss the chance to try dishes like green curry, pad Thai, and seafood delicacies at local markets and restaurants.</p><p>Nightlife and Entertainment:</p><p>While Krabi is not as renowned for its nightlife as some other Thai destinations, it still offers a lively scene, particularly in Ao Nang. Visitors can enjoy beachfront bars, live music, and dance clubs for a vibrant night out.</p><p>Religious and Historical Sites:</p><p>Krabi also has its share of historical and religious landmarks, such as the Wat Tham Sua (Tiger Cave Temple), which boasts a stunning mountain temple complex and panoramic views.</p><p>Hospitality:</p><p>The Thai people are known for their warm hospitality, and this is certainly the case in Krabi. Visitors often find the locals to be friendly and welcoming, adding to the overall appeal of the destination.</p><p>In summary, Krabi is a tropical paradise that combines stunning natural beauty with a wide array of outdoor activities, cultural experiences, and a warm and welcoming atmosphere. Whether you\'re seeking relaxation on the beach, adventure in the outdoors, or an exploration of Thai culture and cuisine, Krabi offers something for every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14466,1,NULL,NULL,'Krabi',0,NULL,NULL,NULL,NULL,NULL,'131_1694687300.png','131_1694687300.png','Thailand','215',NULL,'2022-03-16 16:32:52','2022-03-16 16:32:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Krabi Thailand\r\nKrabi beach paradise\r\nThai island adventures\r\nKrabi limestone cliffs\r\nThai beach getaways','\"Krabi, Thailand: Beach Paradise and Island Adventures\"','','',NULL,NULL,NULL,1),(132,NULL,NULL,'\"Explore the enchanting city of Agra, home to the iconic Taj Mahal, Agra Fort, and a rich tapestry of history and culture. Plan your visit to this UNESCO World Heritage destination, savor Mughlai cuisine, and immerse yourself in India\'s grandeur.\"',NULL,'<p>Agra, located in the northern part of India, is a city that needs no introduction. It is renowned worldwide as the home to one of the most iconic and awe-inspiring monuments in history – the Taj Mahal. Agra is a city that effortlessly blends history, architecture, and culture, making it a top destination for travelers from all corners of the globe.</p><p>Key Highlights:</p><p>1.<span style=\"white-space:pre\">	</span>Taj Mahal: The Taj Mahal, a UNESCO World Heritage Site, is the jewel in Agra\'s crown. This stunning white marble mausoleum was built by the Mughal Emperor Shah Jahan in memory of his beloved wife Mumtaz Mahal. It is a masterpiece of architecture and a symbol of eternal love, attracting millions of visitors every year.</p><p>2.<span style=\"white-space:pre\">	</span>Agra Fort: Another UNESCO World Heritage Site, Agra Fort, is a massive red sandstone fortress that served as the main residence of the Mughal emperors for generations. It offers a glimpse into India\'s rich history and provides panoramic views of the Taj Mahal from its walls.</p><p>3.<span style=\"white-space:pre\">	</span>Fatehpur Sikri: Just a short drive from Agra, Fatehpur Sikri is a well-preserved medieval city that was once the capital of the Mughal Empire. Its stunning architecture and historical significance make it a must-visit destination.</p><p>4.<span style=\"white-space:pre\">	</span>Local Cuisine: Agra is famous for its delectable cuisine, with Mughlai dishes taking center stage. Don\'t miss trying out mouthwatering dishes like kebabs, biryanis, and Mughlai curries at local restaurants.</p><p>5.<span style=\"white-space:pre\">	</span>Shopping: Agra is known for its handicrafts, including marble inlay work, leather goods, and textiles. You can explore bustling markets like Sadar Bazaar and Kinari Bazaar to shop for souvenirs and traditional Indian items.</p><p>6.<span style=\"white-space:pre\">	</span>Culture and Festivals: Agra celebrates various cultural festivals throughout the year. Witness the vibrant Taj Mahotsav, which showcases Indian art, craft, and cultural performances. Diwali and Holi are also celebrated with great enthusiasm.</p><p>7.<span style=\"white-space:pre\">	</span>Yamuna River: A leisurely walk along the banks of the Yamuna River, especially during sunset, offers a serene experience and a different perspective of the Taj Mahal.</p><p>8.<span style=\"white-space:pre\">	</span>Mughal Gardens: Some of the lesser-known attractions in Agra include the Mehtab Bagh (Moonlight Garden) and Ram Bagh, beautiful Mughal-style gardens that offer splendid views of the Taj Mahal.</p><p>Agra is easily accessible by road, rail, and air, with its own airport. While the Taj Mahal is undoubtedly the star attraction, Agra has much more to offer in terms of history, culture, and cuisine. It\'s a city that immerses visitors in the grandeur of India\'s past while offering a glimpse of its vibrant present. A trip to Agra is an unforgettable journey through time and a testament to the enduring allure of this iconic destination.</p><p><br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,98584,0,0,NULL,'AGRA',0,NULL,NULL,1,NULL,NULL,'132_1710332063.jpg','132_1710332063.jpg','india','210',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Agra travel\r\nTaj Mahal visit\r\nAgra Fort history\r\nMughlai cuisine\r\nFatehpur Sikri tour\r\nAgra shopping\r\nCultural festivals Agra\r\nYamuna River sunset\r\nMughal gardens Agra\r\nIndia\'s heritage destinations','\"Discover Agra: A Timeless Journey to the Taj Mahal and More\"','','',NULL,NULL,NULL,1),(133,NULL,NULL,'\"Escape to the tropical paradise of Andaman and Nicobar Islands with iNeedTrip. Enjoy pristine beaches, water adventures, and lush forests.\"',NULL,'<p>The Andaman and Nicobar Islands, nestled in the Bay of Bengal, are an exotic and remote archipelago that remains one of India\'s best-kept secrets. This tropical paradise, known for its stunning beaches, vibrant coral reefs, lush rainforests, and unique indigenous cultures, offers travelers an idyllic escape from the hustle and bustle of city life. In this blog, we\'ll embark on a virtual journey to explore the enchanting beauty and captivating allure of the Andaman and Nicobar Islands.</p><p>Pristine Beaches:</p><p>The islands boast some of the most beautiful and unspoiled beaches in the world. Radhanagar Beach on Havelock Island is often hailed as Asia\'s best beach, with its powdery white sand and crystal-clear waters. Other notable beaches include Elephant Beach, Kalapathar Beach, and the secluded Guitar Island Beach.</p><p>Coral Reefs and Diving:</p><p>The Andaman and Nicobar Islands are a haven for divers and snorkelers. The coral reefs here are teeming with colorful marine life, making it an underwater paradise. Popular dive sites include North Bay Island, Mahatma Gandhi Marine National Park, and Neil Island.</p><p>Cellular Jail:</p><p>Steeped in history, the Cellular Jail in Port Blair serves as a poignant reminder of India\'s struggle for independence. This colonial-era prison once housed political prisoners and is now a national memorial and museum.</p><p>Ross Island:</p><p>Ross Island, once the administrative headquarters of the British, is now an eerie yet fascinating ruin. Explore the historic remnants, including a church, bakery, and Japanese bunkers, as you step back in time.</p><p>Indigenous Tribes:</p><p>The Andaman and Nicobar Islands are home to indigenous tribes, including the Great Andamanese and the Jarawa. These communities live in isolation and have their own unique cultures and traditions, adding to the archipelago\'s cultural diversity.</p><p>Water Sports and Adventure:</p><p>For adventure enthusiasts, the islands offer activities such as trekking in the lush forests, kayaking through mangrove creeks, and parasailing along the beaches. The islands are also known for game fishing and boat tours.</p><p>Conclusion:</p><p>The Andaman and Nicobar Islands are a nature lover\'s paradise, offering a perfect blend of natural beauty, adventure, and cultural diversity. Whether you\'re relaxing on pristine beaches, exploring vibrant coral reefs, delving into the islands\' history, or interacting with indigenous tribes, every moment spent here is a memorable experience. It\'s a destination where you can escape the mundane and immerse yourself in the splendor of nature and the rich tapestry of island life. For those seeking a tropical paradise far from the mainland, the Andaman and Nicobar Islands stand as a testament to nature\'s wonders and cultural diversity, inviting you to explore this hidden gem in the Bay of Bengal.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,71771,0,NULL,NULL,'ANDAMAN AND NICOBAR ISLANDS',0,NULL,NULL,NULL,NULL,NULL,'133_1695456859.png','133_1695456859.png','India','101',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Andaman tours, island paradise, beach getaway','\"Andaman and Nicobar Islands\' Tropical Paradise with iNeedTrip\"','','',NULL,NULL,NULL,1),(135,NULL,NULL,'\"Step into the enchanting town of Hoi An, Vietnam, by the Thu Bon River. Explore its ancient architecture, lantern-lit streets, and cultural heritage.\"',NULL,'<p>Hoi An, a picturesque town nestled along the Thu Bon River in Central Vietnam, is a place where history and heritage come to life. This UNESCO World Heritage-listed town is celebrated for its remarkably preserved architecture, cultural traditions, and captivating atmosphere. Here\'s a glimpse of what makes Hoi An a must-visit destination:</p><p>Key Highlights:</p><p>Ancient Town: Wander through the charming streets of Hoi An\'s Ancient Town, which boasts well-preserved architecture dating back to the 15th century. The blend of Chinese, Japanese, and Vietnamese influences is evident in the unique buildings and narrow alleyways.</p><p>Japanese Covered Bridge: Admire the iconic Japanese Covered Bridge, a symbol of Hoi An, known for its intricate carvings and fascinating history.<br></p><p>Lantern-Lit Nights: Experience the magical ambiance of Hoi An as lanterns illuminate the town\'s streets and riverbanks during the evenings. The monthly Full Moon Lantern Festival is a particularly enchanting time to visit.</p><p>Tailor Shops: Hoi An is renowned for its skilled tailors who can create custom-made clothing. Visitors often indulge in the opportunity to have clothing, including suits and dresses, tailored to perfection.</p><p>Cuisine: Delight in Hoi An\'s delectable cuisine, which includes dishes like cao lau (noodles with pork and herbs), banh mi (Vietnamese sandwich), and white rose dumplings. The local street food is a culinary adventure in itself.</p><p>Thu Bon River: Take a boat ride along the Thu Bon River to appreciate the scenic beauty and observe daily life along the water. You can also release lanterns into the river for good luck.</p><p>Hoi An Market: Explore the vibrant Hoi An Central Market, where you can shop for fresh produce, spices, textiles, and handicrafts. It\'s a great place to immerse yourself in local culture.</p><p>My Son Sanctuary: Embark on a day trip to the nearby My Son Sanctuary, a collection of Hindu temples dating back to the Champa Kingdom. These ancient ruins are a testament to Vietnam\'s rich history.</p><p>Beaches: Relax on the beautiful beaches of An Bang and Cua Dai, which are a short distance from Hoi An\'s town center. They offer a serene escape with golden sands and clear waters.</p><p>Bike Tours: Explore the countryside and nearby villages on a bicycle tour, where you can interact with locals, visit rice paddies, and witness traditional farming practices.</p><p>Art and Craft Workshops: Participate in art and craft workshops where you can learn to create traditional lanterns, pottery, and other handicrafts.</p><p>Tailor-Made Souvenirs: Besides clothing, Hoi An is a great place to purchase tailor-made leather goods, shoes, and custom-designed jewelry.</p><p>Festivals: Depending on the time of your visit, you may have the chance to experience local festivals and cultural events celebrated with traditional music, dance, and processions.</p><p>Hoi An\'s timeless beauty, rich culture, and culinary delights make it a destination that appeals to travelers seeking a blend of history and relaxation. Whether you\'re strolling through its ancient streets, savoring local flavors, or simply soaking in the tranquil atmosphere, Hoi An offers a unique and unforgettable journey into Vietnam\'s past and present.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36150,1,NULL,NULL,'Hoi An',0,NULL,NULL,NULL,NULL,NULL,'135_1694608049.png','135_1694608049.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','\"Hoi An, Vietnam: Timeless Beauty by the Thu Bon River\"','','',NULL,NULL,NULL,1),(136,NULL,NULL,'\"Escape to the tranquil beauty of Gabala in the Caucasus Mountains, Azerbaijan. Explore lush landscapes, serene lakes, and cultural treasures.\"',NULL,'<p>Gabala, nestled in the heart of the stunning Caucasus Mountains of Azerbaijan, is a hidden gem that beckons travelers seeking natural beauty, adventure, and cultural experiences. This picturesque region, known for its lush forests, serene lakes, and exhilarating outdoor activities, offers a unique escape from the hustle and bustle of city life. Here\'s an overview of what makes Gabala a remarkable destination:</p><p>1. Natural Beauty: Gabala\'s landscape is a testament to nature\'s artistry. The surrounding mountains are adorned with dense forests, and the region is dotted with pristine lakes. The breathtaking scenery provides a tranquil backdrop for various outdoor adventures.</p><p>2. Tufandag Mountain: One of the prominent features of Gabala is Tufandag Mountain, which is part of the Greater Caucasus Range. It offers skiing and snowboarding in the winter months and stunning hiking opportunities during the summer. The Tufandag Mountain Resort caters to winter sports enthusiasts.</p><p>3. Lake Nohur: This tranquil alpine lake is a serene oasis amid the mountains. Visitors can enjoy boat rides on the clear waters, picnics by the lakeside, and the opportunity to spot local wildlife. Lake Nohur is also surrounded by lush greenery, making it a popular spot for nature lovers.</p><p>4. Adventure Sports: Gabala is an adventure enthusiast\'s paradise. Activities like zip-lining, paragliding, and quad biking are available, allowing visitors to take in the region\'s beauty from different perspectives. These activities are suitable for both beginners and experienced adventurers.</p><p>5. Gabaland: A popular family destination, Gabaland is an amusement park that offers a wide range of rides, attractions, and entertainment options. It\'s an excellent place for families to unwind and have fun.</p><p>6. Tufandag National Park: This protected area surrounding Tufandag Mountain is home to diverse flora and fauna. Hiking trails lead to viewpoints with panoramic vistas, making it a paradise for nature enthusiasts and photographers.</p><p>7. Cultural Experiences: Gabala also offers insights into Azerbaijan\'s rich cultural heritage. The city of Gabala itself has historical sites and local markets where you can explore Azerbaijani traditions and crafts.</p><p>8. Culinary Delights: Azerbaijani cuisine is a delightful fusion of flavors influenced by the region\'s history. Don\'t miss the chance to savor local dishes like plov (rice pilaf), kebabs, dolma (stuffed grape leaves), and baklava.</p><p>9. Accessibility: Gabala is easily accessible from the Azerbaijani capital, Baku, by road or air. The Gabala International Airport welcomes domestic and international flights, making it convenient for travelers.</p><p>10. Mild Climate: Gabala enjoys a mild climate with warm summers and snowy winters, making it an attractive destination year-round. Each season offers a unique experience, from skiing in the winter to hiking in the summer.</p><p>Gabala, with its natural beauty and diverse activities, is a destination that appeals to adventurers, families, and nature lovers alike. Whether you\'re seeking outdoor thrills, cultural exploration, or simply a serene escape in the mountains, Gabala welcomes you with open arms to discover the wonders of the Caucasus.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35626,1,NULL,NULL,'Gabala',0,NULL,NULL,NULL,NULL,NULL,'136_1694603992.png','136_1694603992.png','Azerbaijan','15',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gabala Azerbaijan\r\nCaucasus Mountains retreat\r\nGabala nature\r\nAzerbaijani culture\r\nGabala attractions','\"Gabala, Azerbaijan: A Retreat in the Caucasus Mountains\"','','',NULL,NULL,NULL,1),(138,NULL,NULL,'\"Indulge in tropical luxury and beachfront bliss in Seminyak, Bali. Enjoy upscale resorts, vibrant nightlife, and the essence of Balinese paradise.\"',NULL,'<p>Nestled on the western coast of Bali, Indonesia, Seminyak is a vibrant and upscale beach destination that seamlessly blends beachside tranquility with cosmopolitan flair. With its pristine beaches, stylish resorts, world-class dining, and lively nightlife, Seminyak has become one of Bali\'s most sought-after destinations for travelers seeking a blend of relaxation and excitement.</p><p>The Beaches of Seminyak:</p><p>Seminyak is renowned for its stunning beaches, where soft golden sands stretch for miles along the azure Indian Ocean. Whether you\'re looking to catch the perfect wave, take leisurely walks, or simply bask in the sun, the beaches here provide a serene escape from the hustle and bustle of everyday life.</p><p>Luxurious Resorts and Villas:</p><p>Seminyak boasts a plethora of luxurious resorts, boutique hotels, and private villas that cater to discerning travelers. Many accommodations feature stylish architecture, lush tropical gardens, and private pools, providing an oasis of comfort and tranquility.</p><p>Shopping and Boutiques:</p><p>For those with a penchant for fashion and unique souvenirs, Seminyak offers a vibrant shopping scene. Explore chic boutiques, art galleries, and local markets to discover Balinese handicrafts, designer clothing, and exquisite jewelry.</p><p>Culinary Delights:</p><p>Seminyak is a food lover\'s paradise, with a diverse array of restaurants, cafes, and beachside eateries. Whether you crave traditional Balinese cuisine, international fare, or gourmet dining experiences, Seminyak\'s culinary scene is sure to tantalize your taste buds.</p><p>Sunset Views:</p><p>One of the most enchanting aspects of Seminyak is its breathtaking sunsets. Head to the beachfront bars and lounges, order a refreshing cocktail, and watch as the sun dips below the horizon, painting the sky in hues of orange and pink.</p><p>Vibrant Nightlife:</p><p>Seminyak comes alive after dark with its bustling nightlife. From beach clubs with renowned DJs to trendy bars and clubs, the entertainment options are diverse. It\'s the perfect place to dance the night away or enjoy a relaxed evening under the stars.</p><p>Wellness and Spas:</p><p>Indulge in rejuvenation and relaxation at Seminyak\'s world-class spas and wellness centers. Treat yourself to traditional Balinese massages, holistic therapies, and wellness retreats that nourish both body and soul.</p><p>Cultural Experiences:</p><p>While Seminyak is known for its modern amenities, Bali\'s rich culture is never far away. Explore nearby temples, partake in traditional ceremonies, and engage with the friendly locals to gain insight into the island\'s cultural heritage.</p><p>Adventure and Exploration:</p><p>Beyond Seminyak, Bali offers a plethora of outdoor activities, including trekking, water sports, and wildlife encounters. Arrange excursions to explore the island\'s lush landscapes, rice terraces, and volcanic wonders.</p><p>Seminyak\'s unique blend of luxury, natural beauty, and vibrant energy makes it a destination that caters to a wide range of interests and preferences. Whether you seek relaxation, adventure, or cultural immersion, Seminyak invites you to experience the best of Bali\'s coastal charm.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,24795,0,NULL,NULL,'Seminyak',0,NULL,NULL,NULL,NULL,NULL,'138_1695189037.png','138_1695189037.png','Indonesia','102',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Seminyak Bali\r\nBalinese tropical luxury\r\nSeminyak beachfront resorts\r\nBali nightlife\r\nBalinese paradise','\"Seminyak, Bali: Tropical Luxe and Beachfront Bliss\"','','',NULL,NULL,NULL,1),(139,NULL,NULL,'\"Explore the vibrant beaches and nightlife of Pattaya, Thailand. Relax by the sea, enjoy entertainment, and savor Thai coastal delights.\"',NULL,'<p>Nestled along the Gulf of Thailand, Pattaya is a coastal paradise that has grown from a quiet fishing village into a dynamic resort city. With its pristine beaches, vibrant nightlife, water sports, and rich cultural attractions, Pattaya offers a diverse range of experiences for travelers. Let\'s dive into the highlights of this captivating destination.</p><p>Beautiful Beaches: Pattaya\'s coastline is a series of picturesque beaches with golden sands and crystal-clear waters. Pattaya Beach, Jomtien Beach, and Wong Amat Beach are among the most popular. Whether you\'re sunbathing, swimming, or enjoying water sports like jet skiing and parasailing, Pattaya\'s beaches offer a perfect seaside retreat.</p><p>Vibrant Nightlife: Pattaya\'s nightlife is legendary, offering something for every taste. Walking Street, the city\'s main nightlife hub, comes alive after dark with bars, clubs, and entertainment venues. Enjoy live music, cabaret shows, and dance the night away. For a more relaxed evening, explore the beachfront bars and restaurants, where you can savor fresh seafood while gazing at the sunset.</p><p>Cultural Attractions: Beyond its beaches and nightlife, Pattaya boasts cultural attractions worth exploring. The Sanctuary of Truth, an awe-inspiring wooden temple, stands as a testament to Thai craftsmanship and philosophy. Nong Nooch Tropical Garden is a botanical garden featuring stunning landscapes and traditional Thai cultural shows. Art in Paradise offers interactive 3D art installations for a fun and immersive experience.</p><p>Water Sports and Activities: Pattaya is a haven for water sports enthusiasts. Dive into the azure waters for snorkeling and scuba diving adventures, exploring vibrant coral reefs and marine life. You can also enjoy windsurfing, kiteboarding, and sailing. Pattaya\'s waters are teeming with excitement.</p><p>Family-Friendly Fun: Pattaya offers a range of family-friendly attractions. Cartoon Network Amazone Waterpark is a water theme park featuring beloved cartoon characters and thrilling rides. The Pattaya Elephant Village allows you to get up close with these gentle giants while learning about their conservation.</p><p>Cuisine and Street Food: Pattaya\'s dining scene is diverse, with a wide range of international and Thai restaurants. Don\'t miss the opportunity to savor authentic Thai cuisine at local markets and street stalls. Tom yum soup, pad Thai, and mango sticky rice are just a few of the delectable treats you can try.</p><p>Shopping: Pattaya is a shopper\'s paradise, offering everything from bustling markets to modern shopping malls. Explore the Pattaya Floating Market for local handicrafts, souvenirs, and street food. Central Festival Pattaya Beach and Terminal 21 Pattaya are ideal for fashion and electronics shopping.</p><p>Wellness and Relaxation: Pattaya has numerous wellness centers and spas where you can unwind with traditional Thai massages and holistic treatments. Many beachfront resorts offer serene settings for relaxation and rejuvenation.</p><p>Pattaya: A World of Experiences: From its beautiful beaches and vibrant nightlife to cultural attractions and water sports, Pattaya offers a world of experiences that cater to all kinds of travelers. Whether you seek adventure, relaxation, or a mix of both, this coastal gem in Thailand promises a memorable and diverse journey.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20925,1,NULL,NULL,'Pattaya',0,NULL,NULL,NULL,NULL,NULL,'139_1695101091.png','139_1695101091.png','Thailand','215',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Pattaya Thailand\r\nPattaya beaches\r\nThai nightlife\r\nPattaya entertainment\r\nThai coastal cuisine','\"Pattaya, Thailand: Where Beaches and Nightlife Shine\"','','',NULL,NULL,NULL,1),(140,NULL,NULL,'\"Experience the romantic allure of Paris, France, the City of Love and Lights. Explore iconic landmarks, art, and French culinary delights.\"',NULL,'<p>Paris, the capital of France, is a world-renowned metropolis that beckons travelers with its timeless charm, rich history, and vibrant culture. Often referred to as the \"City of Light\" and celebrated as the \"City of Love,\" Paris offers a tapestry of experiences that captivate the hearts and imaginations of visitors from around the globe. Here\'s a glimpse of what makes Paris an enchanting destination:</p><p>1. Iconic Landmarks:</p><p>The Eiffel Tower, one of the most recognized structures in the world, stands tall as a symbol of Paris. Other iconic landmarks include the Notre-Dame Cathedral, the Louvre Museum with its famous Mona Lisa, and the Arc de Triomphe at the top of the Champs-Élysées.</p><p>2. World-Class Art and Culture:</p><p>Paris is a haven for art enthusiasts. The Louvre, home to thousands of artworks, is a treasure trove of masterpieces, while the Musée d\'Orsay showcases Impressionist and Post-Impressionist art. The city\'s vibrant cultural scene includes theater, opera, and ballet performances.</p><p>3. Romantic Ambiance:</p><p>Paris has long been celebrated as a romantic destination. Strolls along the Seine River, intimate candlelit dinners in charming bistros, and picnics in picturesque parks create an atmosphere of love and enchantment.</p><p>4. Culinary Delights:</p><p>French cuisine is legendary, and Paris is its epicenter. Savor croissants at a corner café, indulge in escargot and coq au vin, and explore the city\'s bustling markets. Don\'t forget to pair your meals with exquisite French wines and delectable pastries.</p><p>5. Fashion Capital:</p><p>Paris is synonymous with high fashion. The city\'s luxurious boutiques, including those on the Champs-Élysées and in the Marais district, offer a paradise for fashionistas.</p><p>6. Historic Neighborhoods:</p><p>Each neighborhood in Paris has its unique charm. Montmartre, with its artistic history, offers stunning views from the Sacré-Cœur Basilica. Le Marais, with its historic architecture, is a trendy and vibrant district.</p><p>7. Riverside Beauty:</p><p>The Seine River winds through Paris, providing opportunities for leisurely boat cruises that offer panoramic views of the city\'s landmarks.</p><p>8. Gardens and Parks:</p><p>Paris boasts numerous green spaces, including the Luxembourg Gardens, Parc des Buttes-Chaumont, and the romantic Tuileries Garden, where you can relax amidst lush landscapes.</p><p>9. Diverse Neighborhoods:</p><p>Paris is a city of diversity. Explore the vibrant African markets in the Goutte d\'Or, savor exotic cuisine in Belleville, or discover the thriving LGBTQ+ scene in the Marais.</p><p>10. History and Architecture:</p><p>- Paris is steeped in history, evident in its grand architecture. The Palace of Versailles, a short train ride away, showcases the opulence of the French monarchy.</p><p>11. Literary Legacy:</p><p>- Paris has inspired countless writers and artists. Visit the Shakespeare and Company bookstore, where literary greats like Hemingway and Fitzgerald once frequented.</p><p>12. Contemporary Art:</p><p>- Paris embraces modernity with its contemporary art scene. The Centre Pompidou and the Fondation Louis Vuitton are hubs for contemporary and modern art exhibitions.</p><p>Paris, with its blend of old-world charm and cosmopolitan vibrancy, invites visitors to wander its enchanting streets, savor its culinary delights, and immerse themselves in its rich cultural tapestry. Whether you come for the art, the romance, or the sheer allure of the City of Light, Paris promises an unforgettable journey filled with moments of wonder and beauty.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20822,1,NULL,NULL,'Paris',0,NULL,NULL,NULL,NULL,NULL,'140_1694779200.png','140_1694779200.png','France','76',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Paris France\r\nCity of Love\r\nParisian landmarks\r\nFrench art\r\nParisian cuisine','\"Paris, France: The City of Love and Lights\"','','',NULL,NULL,NULL,1),(141,NULL,NULL,'\"Discover hill station retreat in Mount Abu with iNeedTrip. Enjoy cool climate, scenic lakes, and a peaceful escape in Rajasthan.\"',NULL,'<p>Mount Abu is a picturesque hill station and the only one in the state of Rajasthan, India. It is located in the Aravalli Range in the western part of the country and is renowned for its cool climate, lush greenery, and scenic landscapes. Often referred to as the \"Oasis of Rajasthan,\" Mount Abu offers a welcome respite from the scorching heat of the surrounding desert region. Here are some key highlights of Mount Abu:</p><p>1. Natural Beauty:</p><p>Mount Abu is known for its stunning natural beauty, characterized by lush forests, rolling hills, and serene lakes. The Nakki Lake, a pristine and picturesque water body, is a popular attraction and offers boating opportunities.</p><p>The Aravalli Range surrounds the town, providing ample opportunities for trekking, hiking, and nature walks. The Guru Shikhar peak, the highest point in the Aravallis, offers panoramic views of the surrounding landscape.</p><p>2. Dilwara Jain Temples:</p><p>The Dilwara Temples, a group of five Jain temples, are renowned for their exquisite marble architecture and intricate carvings. These temples are a significant pilgrimage site for Jains and a major tourist attraction.</p><p>3. Sunset Point and Honeymoon Point:</p><p>Sunset Point and Honeymoon Point are popular spots to witness breathtaking sunsets. The viewpoints offer panoramic views of the surrounding hills and valleys and are especially romantic during twilight.</p><p>4. Achalgarh Fort:</p><p>Achalgarh Fort, a historic fortress, is located about 11 kilometers from the town center. It houses ancient temples, including the Achaleshwar Mahadev Temple, and offers a glimpse into the region\'s history.</p><p>5. Mount Abu Wildlife Sanctuary:</p><p>The Mount Abu Wildlife Sanctuary is home to a variety of wildlife species, including leopards, sloth bears, and various species of deer. Birdwatching is also a popular activity in the sanctuary.</p><p>6. Arbuda Devi Temple:</p><p>The Arbuda Devi Temple, dedicated to the goddess Arbuda, is perched on a hill and offers panoramic views of the town and the surrounding landscape.</p><p>7. Cultural Festivals:</p><p>Mount Abu hosts several cultural festivals and events throughout the year. The Summer Festival, held in May, is a colorful celebration of the region\'s culture and traditions, featuring folk dances, music, and a boat race on Nakki Lake.</p><p>8. Delwara Village:</p><p>Delwara is a picturesque village near Mount Abu that offers a glimpse into rural Rajasthan. Visitors can explore traditional Rajasthani architecture and handicrafts.</p><p>9. Accessibility:</p><p>Mount Abu is well-connected by road to major cities in Rajasthan and neighboring states. The nearest railway station is Abu Road, about 28 kilometers away, while the nearest airport is Udaipur Airport, approximately 185 kilometers away.</p><p>In summary, Mount Abu is a serene hill station that offers a unique blend of natural beauty, cultural heritage, and spirituality. Whether you\'re interested in exploring its ancient temples, taking in the scenic vistas, or simply enjoying the cool climate, Mount Abu provides a peaceful retreat in the heart of Rajasthan\'s desert landscape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18551,1,NULL,NULL,'Mount Abu',0,NULL,NULL,NULL,NULL,NULL,'141_1695640564.png','141_1695640564.png','India','101',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Mount Abu vacations, Rajasthan hill station, cool retreat','\"Mount Abu\'s Hill Station Retreat with iNeedTrip\"','','',NULL,NULL,NULL,1),(142,NULL,NULL,'\"Embark on Swiss Alpine adventures from Lucerne, Switzerland. Explore scenic lakes, mountain excursions, and the heart of Swiss culture.\"',NULL,'<p>Lucerne, often referred to as Luzern in German, is a picturesque city nestled in the heart of Switzerland. Located in the German-speaking part of the country, Lucerne is celebrated for its stunning lakeside setting, well-preserved medieval architecture, and proximity to the Swiss Alps. Here\'s an overview of what makes Lucerne a captivating and enchanting destination:</p><p>Geography and Location:</p><p>Lucerne is situated in central Switzerland, on the shores of Lake Lucerne (Vierwaldstättersee) and at the foot of the Swiss Alps. Its strategic location makes it a gateway to exploring some of Switzerland\'s most iconic mountain landscapes, including Mount Pilatus and Mount Rigi.</p><p>Historical Significance:</p><p>Lucerne boasts a rich history dating back to the Middle Ages. The well-preserved Old Town, with its medieval buildings, cobblestone streets, and charming squares, offers a glimpse into the city\'s past. Key historical sites and landmarks include:</p><p>Chapel Bridge (Kapellbrücke): This iconic covered bridge, adorned with a tower, is one of Lucerne\'s most famous symbols. It was originally constructed in the 14th century and is adorned with paintings depicting Lucerne\'s history.</p><p>Old Town Walls: Visitors can explore remnants of the medieval city walls, including the Musegg Wall, which features several well-preserved towers and gates.</p><p>Lion Monument (Löwendenkmal): This emotional sculpture carved into a sandstone rock face commemorates Swiss Guards who were killed during the French Revolution. It\'s a poignant and impressive work of art.</p><p>Lake Lucerne:</p><p>The city\'s picturesque setting along the shores of Lake Lucerne offers numerous opportunities for relaxation and recreation. You can take a leisurely boat cruise on the lake, swim in its clear waters, or simply enjoy the views from the lakeside promenades.</p><p>Mountains and Outdoor Activities:</p><p>Lucerne is surrounded by stunning mountains, making it an excellent base for outdoor enthusiasts. Here are some nearby mountain destinations:</p><p>Mount Pilatus: Known as the \"Dragon Mountain,\" Mount Pilatus offers hiking trails, a cogwheel railway, and cable cars with breathtaking views.</p><p>Mount Rigi: Often called the \"Queen of the Mountains,\" Mount Rigi is famous for its panoramic views, hiking paths, and the nickname due to its stunning location between Lake Lucerne and Lake Zug.</p><p>Swiss Alps: Lucerne is a gateway to the Swiss Alps, making it a starting point for exploring iconic alpine destinations such as Jungfrau, Eiger, and Mönch.</p><p>Culture and Arts:</p><p>Lucerne has a vibrant cultural scene with theaters, museums, and galleries. The Lucerne Festival, held annually, is one of the most renowned classical music festivals in the world.</p><p>Cuisine:</p><p>Swiss cuisine is well represented in Lucerne, with dishes like fondue and raclette being popular choices. You can also find international cuisine and enjoy dining at lakeside restaurants.</p><p>Accessibility:</p><p>Lucerne is easily accessible from Zurich, Switzerland\'s largest city, with direct train connections. It is also a convenient starting point for exploring other Swiss cities and regions due to its central location and efficient public transportation system.</p><p>In summary, Lucerne is a charming and historically rich city that combines the beauty of its medieval Old Town with breathtaking natural surroundings. Whether you\'re exploring its historical sites, enjoying outdoor activities, or savoring Swiss cuisine, Lucerne offers a delightful Swiss experience in a truly enchanting setting.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16022,1,NULL,NULL,'Lucerne',0,NULL,NULL,NULL,NULL,NULL,'142_1694690137.png','142_1694690137.png','Switzerland','210',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Lucerne Switzerland\r\nSwiss Alpine adventures\r\nLucerne lakes\r\nSwiss mountain excursions\r\nSwiss culture','\"Lucerne, Switzerland: Gateway to Swiss Alpine Adventures\"','','',NULL,NULL,NULL,1),(143,NULL,NULL,'\"Escape to the beach paradise of Kuta in Bali, Indonesia. Relax on golden shores, surf the waves, and immerse yourself in Balinese culture.\"',NULL,'<p>Kuta is a vibrant coastal town located on the southern coast of Bali, Indonesia. Known for its stunning beaches, exciting nightlife, and a wide range of recreational activities, Kuta is a popular destination for tourists from around the world. Here\'s an overview of what makes Kuta a captivating place to visit:</p><p>Geography and Location:</p><p>Kuta is situated in the Badung Regency of Bali, Indonesia. It is conveniently located near Ngurah Rai International Airport, making it one of the most accessible destinations on the island. Kuta Beach stretches along the western coast of Bali, offering breathtaking views of the Indian Ocean.</p><p>Beaches:</p><p>Kuta Beach is undoubtedly one of the main attractions in the area. It features a wide expanse of golden sand and is a prime spot for sunbathing, swimming, and surfing. The waves at Kuta Beach cater to both beginners and experienced surfers, making it a hub for water sports enthusiasts.</p><p>Surfing:</p><p>Kuta is renowned for its consistent waves, which have made it a favorite destination for surfers of all levels. The town has numerous surf schools and rental shops, making it easy for visitors to learn to ride the waves or rent equipment.</p><p>Nightlife:</p><p>Kuta boasts a lively and diverse nightlife scene. The town is filled with bars, clubs, and beachfront venues that come alive after dark. The nightlife in Kuta ranges from relaxed beach bars to energetic nightclubs, catering to a wide range of tastes and preferences.</p><p>Shopping:</p><p>Kuta is a shopper\'s paradise, offering everything from traditional Balinese crafts to international brands. The town has numerous street markets, boutiques, and shopping malls where visitors can find clothing, souvenirs, artwork, and more.</p><p>Dining:</p><p>Kuta offers a wide range of dining options, from street food stalls and local warungs serving traditional Indonesian cuisine to upscale restaurants offering international dishes. Seafood lovers will find an abundance of fresh catches in the beachfront seafood restaurants.</p><p>Water Parks and Activities:</p><p>Families and adventure-seekers can enjoy water parks like Waterbom Bali, which features thrilling water slides and a lazy river. Additionally, Kuta offers various water-based activities such as snorkeling, scuba diving, and parasailing.</p><p>Cultural Sites:</p><p>While Kuta is primarily known for its recreational activities and entertainment, you can still explore some cultural sites nearby, such as the Uluwatu Temple and the Garuda Wisnu Kencana Cultural Park.</p><p>Accommodations:</p><p>Kuta offers a wide range of accommodation options, from budget-friendly hostels and guesthouses to luxurious beachfront resorts. Visitors can find accommodations suitable for every budget and preference.</p><p>Sunsets:</p><p>Kuta Beach is a fantastic spot to watch the sunset over the Indian Ocean. The fiery orange hues and the sound of the waves crashing make for a memorable evening experience.</p><p>In summary, Kuta is a lively and bustling destination in Bali that offers a blend of beachfront relaxation, water sports, nightlife, shopping, and cultural experiences. Whether you\'re a surfer, partygoer, or simply looking to soak up the sun, Kuta has something to offer every traveler seeking a vibrant beach vacation.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14633,1,NULL,NULL,'Kuta',0,NULL,NULL,NULL,NULL,NULL,'143_1694689066.png','143_1694689066.png','Indonesia','102',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kuta Bali\r\nBalinese beach paradise\r\nKuta surfing\r\nBali cultural experiences\r\nIndonesian beach getaways','\"Kuta, Bali: The Beach Paradise of Indonesia\"','','',NULL,NULL,NULL,1),(144,NULL,NULL,'\"Experience adventure in the heart of the Bernese Oberland, Interlaken, Switzerland. Discover outdoor pursuits, scenic beauty, and Swiss hospitality.\"',NULL,'<p>Interlaken, a jewel in the heart of Switzerland, is a place where nature\'s grandeur and adventure unite seamlessly. Situated between Lake Thun and Lake Brienz and encircled by snow-capped peaks, Interlaken is a haven for outdoor enthusiasts and those seeking pristine landscapes. Here\'s a glimpse of what makes Interlaken an enchanting destination:</p><p>Key Highlights:</p><p>Swiss Alpine Scenery: Interlaken\'s setting is nothing short of spectacular. Surrounded by Eiger, Mönch, and Jungfrau, three iconic peaks of the Bernese Oberland, the town boasts breathtaking vistas at every turn.</p><p>Outdoor Adventures: Interlaken is an adventurer\'s paradise. Whether it\'s paragliding over the Alps, skiing down pristine slopes, hiking through alpine meadows, or navigating white-water rapids, there\'s an adrenaline-pumping activity for everyone.</p><p>Jungfraujoch: Known as the \"Top of Europe,\" Jungfraujoch is a high-altitude wonderland accessible by a cogwheel train. Explore the Ice Palace, visit the Sphinx Observatory, and marvel at the Aletsch Glacier, the largest in the Alps.</p><p>Lake Cruises: Enjoy serene cruises on Lake Thun and Lake Brienz, surrounded by turquoise waters and charming lakeside villages. The scenic beauty is unparalleled, and it\'s a great way to relax and soak in the views.</p><p>Interlaken Old Town: Stroll through the picturesque old town, with its cobbled streets, charming boutiques, and inviting cafes. Hoheweg, the main boulevard, offers plenty of shopping and dining options.</p><p>Harder Kulm: Take the funicular to Harder Kulm, Interlaken\'s local mountain, for panoramic views of the Jungfrau region. The Two Lakes Bridge offers a thrilling glass-floored experience.</p><p>St. Beatus Caves: Explore the fascinating underground world of St. Beatus Caves, a network of limestone caves with stunning stalactites and stalagmites.</p><p>Thun: A short train ride away, the town of Thun boasts a historic old town, a beautiful castle, and lovely lakefront promenades.</p><p>Swiss Chocolate: Indulge your sweet tooth with Swiss chocolate delights. Take a chocolate-making workshop or visit local chocolatiers for a mouthwatering experience.</p><p>Adventure Sports: From skydiving to canyoning, Interlaken offers an array of adventure sports for thrill-seekers. The region is famous for its paragliding opportunities, providing a bird\'s-eye view of the Alps.</p><p>Ski Resorts: Interlaken serves as a gateway to numerous ski resorts in the Bernese Oberland, making it an ideal winter sports destination.</p><p>Traditional Swiss Fare: Savor delicious Swiss cuisine in cozy mountain restaurants. Fondue, raclette, and rösti are must-try dishes.</p><p>Trümmelbach Falls: Located in the Lauterbrunnen Valley, these stunning waterfalls are accessible by a tunnel lift and offer a unique experience to witness glacial meltwater cascading through the mountain.</p><p>Interlaken\'s combination of awe-inspiring natural beauty and thrilling activities makes it a year-round destination. Whether you\'re an adventure enthusiast, a nature lover, or simply seeking tranquility in a breathtaking setting, Interlaken promises an unforgettable Swiss experience that celebrates the best of the Alps.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12756,0,NULL,NULL,'Interlaken',0,NULL,NULL,NULL,NULL,NULL,'144_1694669277.png','144_1694669277.png','Switzerland','210',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Interlaken Switzerland\r\nBernese Oberland adventures\r\nInterlaken outdoor activities\r\nSwiss mountain beauty\r\nSwiss hospitality','\"Interlaken, Switzerland: Adventure Capital in the Bernese Oberland\"','','',NULL,NULL,NULL,1),(145,NULL,NULL,'\"Explore the historic Imperial City of Hue in Vietnam. Discover ancient palaces, royal tombs, and the rich tapestry of Vietnamese history.\"',NULL,'<p>Hue, a city in central Vietnam, stands as a living testament to the country\'s rich history and cultural heritage. As the former imperial capital of Vietnam, Hue is renowned for its well-preserved historical sites, stunning architecture, and the serene flow of the Perfume River. Here\'s a glimpse of what makes Hue a remarkable destination:</p><p>Key Highlights:</p><p>Imperial City: Discover the awe-inspiring Hue Imperial City, a UNESCO World Heritage Site. This vast complex is home to the ancient citadel, with its impressive gates, palaces, temples, and the Forbidden Purple City. It\'s a glimpse into Vietnam\'s imperial past.</p><p>Thien Mu Pagoda: Visit the Thien Mu Pagoda, an iconic seven-story pagoda that overlooks the Perfume River. This historic site is considered the unofficial symbol of Hue.</p><p>Perfume River: Enjoy a leisurely boat ride on the Perfume River, which winds its way through the city. The riverbanks are dotted with temples, pagodas, and traditional villages.</p><p>Royal Tombs: Explore the elaborate royal tombs of the Nguyen Emperors scattered around Hue\'s outskirts. Each tomb is a unique architectural masterpiece surrounded by lush gardens.</p><p>Hue Traditional Craft Festival: If your visit coincides with the biennial Hue Traditional Craft Festival, you\'ll have the chance to witness artisans showcasing their skills in traditional crafts such as pottery, embroidery, and kite making.</p><p>Culinary Delights: Hue is known for its distinctive cuisine, characterized by royal dishes and local specialties. Don\'t miss trying the famous Hue-style beef noodle soup known as \"bun bo Hue.\"</p><p>Hue Festival: The Hue Festival, held every two years, is a grand celebration of the city\'s cultural heritage. It features traditional music, dance, and performances, making it a vibrant and exciting time to visit.</p><p>Dong Ba Market: Explore the bustling Dong Ba Market, where you can shop for local products, fresh produce, and souvenirs. It\'s also an excellent place to sample street food.</p><p>Traditional Music: Immerse yourself in the melodious tunes of Hue\'s traditional music, including the royal court music of the Nguyen Dynasty.</p><p>Bicycle Tours: Discover the charming countryside surrounding Hue on a bicycle tour. You can visit local villages, rice paddies, and interact with friendly locals.</p><p>Hue Festival: Experience the biennial Hue Festival, a grand celebration of the city\'s cultural heritage. It features traditional music, dance, and performances, making it a vibrant and exciting time to visit.</p><p>Hue\'s imperial grandeur, serene riverbanks, and rich culinary traditions offer a unique travel experience in Vietnam. Whether you\'re exploring its historic sites, savoring local flavors, or immersing yourself in its vibrant festivals, Hue invites you to step back in time and witness the cultural legacy of Vietnam\'s past.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12421,1,NULL,NULL,'Hue',0,NULL,NULL,NULL,NULL,NULL,'145_1694667850.png','145_1694667850.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Hue Vietnam\r\nHue Imperial City\r\nVietnamese history\r\nHue royal tombs\r\nHue cultural heritage','\"Hue, Vietnam: The Imperial City of Vietnamese History\"','','',NULL,NULL,NULL,1),(146,NULL,NULL,'\"Experience the bustling energy of Ho Chi Minh City in Southern Vietnam. Explore historic landmarks, bustling markets, and Vietnamese cuisine.\"',NULL,'<p>Ho Chi Minh City, formerly known as Saigon, is a dynamic and bustling metropolis located in the southern part of Vietnam. With a population exceeding 8 million people, it\'s not only the largest city in Vietnam but also its economic, cultural, and entertainment hub.Ho Chi Minh City\'s history is a rich tapestry that reflects a blend of colonial influences and wartime struggles. French colonial architecture mingles with modern skyscrapers, creating a unique and eclectic urban landscape. The city\'s past can be explored through landmarks like the War Remnants Museum, which provides a sobering look at the Vietnam War, and the Cu Chi Tunnels, an extensive underground network that played a crucial role during the conflict.The city is dotted with iconic landmarks that tell its story. The Notre-Dame Cathedral Basilica of Saigon, constructed in the late 19th century, stands as a remarkable example of French Gothic architecture. Right beside it, you\'ll find the Central Post Office, an architectural gem designed by the renowned Gustave Eiffel. The Independence Palace, also known as the Reunification Palace, is another must-visit site. This historic building played a pivotal role in the conclusion of the Vietnam War.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,31115,1,1,NULL,'Ho Chi Minh City',14,NULL,NULL,3,NULL,NULL,'146_1691149702.jpg','146_1694607307.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Ho Chi Minh City Vietnam\r\nSaigon attractions\r\nVietnamese street food\r\nHo Chi Minh City landmarks\r\nSouthern Vietnam culture','\"Ho Chi Minh City, Vietnam: The Heart of Southern Vietnam\"','','',NULL,NULL,NULL,1),(147,NULL,NULL,'\"Explore the dynamic capital of Vietnam, Hanoi. Discover ancient temples, vibrant street markets, and the convergence of tradition and modernity.\"',NULL,'<p>Hanoi, the capital city of Vietnam, is a captivating blend of history, culture, and modernity. Situated in the northern part of the country, Hanoi has a unique charm that draws travelers from around the world. Here\'s a glimpse of what makes Hanoi an enchanting destination:</p><p>Key Highlights:</p><p>Hoan Kiem Lake: At the heart of Hanoi lies Hoan Kiem Lake, a serene oasis where locals and visitors alike gather for leisurely walks, tai chi sessions, and to visit Ngoc Son Temple, which is perched on a small island in the lake.</p><p>Old Quarter: Hanoi\'s Old Quarter is a maze of narrow streets lined with shops, street food vendors, and historic buildings. It\'s a bustling area where you can immerse yourself in the local culture and try delicious Vietnamese dishes.</p><p>Temple of Literature: This ancient temple is not only a place of worship but also Vietnam\'s first national university. It is a symbol of the country\'s deep-rooted appreciation for education and Confucian values.</p><p>Ho Chi Minh Mausoleum: Visit the final resting place of Ho Chi Minh, the founding father of modern Vietnam. The mausoleum is an important historical and political site.</p><p>French Quarter: Explore the French Quarter of Hanoi, where colonial-era architecture, wide boulevards, and grand buildings reflect Vietnam\'s history of French colonization.</p><p>Hoa Lo Prison: Known as the \"Hanoi Hilton\" during the Vietnam War, this prison has a complex history. Today, it serves as a museum that sheds light on the country\'s struggles for independence.</p><p>Water Puppet Theater: Experience the unique art form of water puppetry, a traditional Vietnamese performance where puppets appear to dance on the water\'s surface.</p><p>Cyclo Rides: Take a cyclo (pedicab) ride through the bustling streets of Hanoi\'s Old Quarter for an authentic and leisurely way to explore the city.</p><p>Street Food: Hanoi is a food lover\'s paradise, known for its delectable street food. Don\'t miss trying iconic dishes like pho (noodle soup), bun cha (grilled pork with noodles), and banh mi (Vietnamese sandwich).</p><p>Cultural Festivals: Depending on when you visit, you might have the chance to participate in or witness various cultural festivals and events celebrated by the locals.</p><p>Shopping: Hanoi offers excellent shopping opportunities, from vibrant street markets like Dong Xuan Market to boutiques and art galleries in the Old Quarter.</p><p>Hanoi Opera House: Admire the neoclassical architecture of the Hanoi Opera House and consider catching a performance here to appreciate Vietnamese arts and culture.</p><p>Museum Visits: Explore Hanoi\'s many museums, including the Vietnam Museum of Ethnology, which showcases the country\'s diverse ethnic groups.\\</p><p>Bia Hoi: Enjoy a glass of bia hoi, a refreshing and light Vietnamese draft beer, at a local bia hoi corner.</p><p>Hanoi is a city where history and tradition are preserved alongside the rapid developments of the modern world. It\'s a place where you can sip coffee at a centuries-old cafe, visit ancient temples, and witness the city\'s vibrant street life, all while being surrounded by the energy of a thriving metropolis. Whether you\'re interested in history, culture, cuisine, or simply soaking in the atmosphere of a lively Asian city, Hanoi has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11487,1,NULL,NULL,'Hanoi',0,NULL,NULL,NULL,NULL,NULL,'147_1694606982.png','147_1694606982.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Hanoi Vietnam\r\nHanoi traditions\r\nVietnamese street markets\r\nHanoi modernity\r\nHanoi cultural experiences','\"Hanoi, Vietnam: Where Tradition and Modernity Collide\"','','',NULL,NULL,NULL,1),(148,NULL,NULL,'\"Cruise through the breathtaking seascape of Halong Bay in Vietnam. Witness limestone karsts, emerald waters, and the beauty of the Gulf of Tonkin.\"',NULL,'<p>Halong Bay, located in northeastern Vietnam, is a UNESCO World Heritage Site and one of the country\'s most iconic natural wonders. This mesmerizing destination is celebrated for its emerald-green waters, thousands of towering limestone karsts and islets, and a sense of tranquility that envelops the entire bay.</p><p>Key Highlights:</p><p>Limestone Karsts: Halong Bay\'s most distinctive feature is its towering limestone karsts and islets. These natural formations, covered in lush greenery, create an otherworldly seascape that is best explored by boat.</p><p>Scenic Cruises: Take a cruise on the bay to fully appreciate its beauty. Whether you opt for a day cruise or an overnight junk boat excursion, you\'ll be treated to stunning views of the karsts and emerald waters.</p><p>Sung Sot Cave: Explore the Sung Sot Cave, also known as Surprise Cave, which boasts intricate stalactites and stalagmites formations. The cave is an awe-inspiring underground wonder.</p><p>Island Adventures: Halong Bay offers a myriad of islands to explore, including Ti Top Island, which features a panoramic viewpoint, and Cat Ba Island, the largest island in the bay with a national park.</p><p>Kayaking: Paddle through the bay\'s hidden lagoons and tranquil waters on a kayak, allowing you to get up close to the limestone formations and discover secluded spots.</p><p>Floating Villages: Visit the floating fishing villages of Halong Bay, where local communities have lived and worked for generations. It\'s a unique glimpse into their traditional way of life.</p><p>Culinary Delights: Savor delicious Vietnamese cuisine on board your cruise, including fresh seafood and regional specialties like pho and spring rolls.</p><p>Pearl Farms: Discover the art of pearl cultivation at one of the bay\'s pearl farms. Learn about the process and shop for exquisite pearl jewelry.</p><p>Bai Tu Long Bay: Located just northeast of Halong Bay, Bai Tu Long Bay is a quieter and less touristy alternative, offering equally stunning scenery and serene waters.</p><p>Sunsets and Sunrises: Witness the magic of Halong Bay during sunrise or sunset when the karsts are bathed in golden light, creating an ethereal atmosphere.</p><p>Swimming and Relaxation: Enjoy a refreshing swim in the bay\'s crystal-clear waters or simply relax on the sundeck of your boat, taking in the natural beauty around you.</p><p>Tai Chi on the Deck: Many cruise operators offer morning Tai Chi sessions on the deck, allowing you to start your day with a sense of peace and balance.</p><p>Pearl White Sandy Beaches: Some islands in Halong Bay have pristine, white sandy beaches where you can sunbathe and swim in a tranquil setting.</p><p>Night Squid Fishing: Try your hand at squid fishing at night, a unique and fun experience offered by some cruises.</p><p>Halong Bay\'s ethereal beauty, with its karsts rising like dragons from the sea, provides an enchanting backdrop for exploration and relaxation. Whether you\'re gazing at the bay\'s vistas from a cruise ship, kayaking through its serene waters, or discovering its caves and islands, Halong Bay promises a truly magical and unforgettable experience in the heart of Vietnam.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11405,1,NULL,NULL,'Halong',0,NULL,NULL,NULL,NULL,NULL,'148_1694606581.png','148_1694606581.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Halong Bay Vietnam\r\nHalong Bay cruises\r\nVietnamese seascape\r\nHalong Bay karsts\r\nGulf of Tonkin beauty','\"Halong Bay, Vietnam: A Spectacular Seascape\"','','',NULL,NULL,NULL,1),(149,NULL,NULL,'\"Discover the cultural richness and stunning coastline of Danang, Vietnam. Explore temples, relax on sandy shores, and savor Vietnamese cuisine.\"',NULL,'<p>Da Nang, located in central Vietnam, is a coastal city renowned for its beautiful beaches, rich cultural heritage, and a unique blend of old-world charm and modern attractions. Situated on the eastern bank of the Han River and overlooking the South China Sea, Da Nang offers a diverse range of experiences for travelers. Here\'s an overview of what makes Da Nang a captivating destination:<br></p><p>1. Beaches: Da Nang boasts some of Vietnam\'s most stunning beaches. My Khe Beach, known for its pristine white sands and crystal-clear waters, is a popular spot for swimming and water sports. Non Nuoc Beach, with its picturesque backdrop of the Marble Mountains, is also a must-visit.</p><p>2. Marble Mountains: These five limestone hills named after the five elements (water, wood, fire, metal, and earth) are home to numerous caves, pagodas, and grottoes. Visitors can climb the steps to explore the caves and enjoy panoramic views of the city.</p><p>3. My Son Sanctuary: Located a short drive from Da Nang, My Son is a UNESCO World Heritage Site and an ancient Hindu temple complex. The intricately carved temples date back to the Champa Kingdom and provide a glimpse into Vietnam\'s rich history.</p><p>4. Dragon Bridge: This iconic bridge, shaped like a golden dragon, is not only an engineering marvel but also a symbol of Da Nang. It comes to life at night with vibrant LED lights and fire-breathing performances.</p><p>5. Hoi An: Just a short drive away, the charming town of Hoi An is famous for its well-preserved Ancient Town. Explore the historic streets, visit tailor shops, and savor delicious Vietnamese cuisine.</p><p>6. Son Tra Peninsula: Known as the Monkey Mountain, this lush peninsula offers a serene escape from the city. Visit the Linh Ung Pagoda with its towering Lady Buddha statue and enjoy nature trails and wildlife.</p><p>7. Local Cuisine: Da Nang is celebrated for its fresh seafood and delectable regional dishes. Try specialties like mi Quang (turmeric noodles), banh xeo (Vietnamese pancakes), and cao lau (pork and noodle dish).</p><p>8. Cham Museum: This museum houses the world\'s most extensive collection of Cham sculptures, offering insight into the ancient Cham civilization.</p><p>9. Water Sports: Da Nang is a water sports enthusiast\'s paradise. You can go surfing, snorkeling, kayaking, and jet-skiing at various beaches and water sports centers.</p><p>10. Festivals: Da Nang hosts several festivals throughout the year, such as the International Fireworks Festival, which showcases mesmerizing fireworks displays from different countries.</p><p>11. Relaxation: Da Nang also offers a range of spa resorts and wellness centers for those seeking relaxation and rejuvenation.</p><p>12. Accessibility: With an international airport, train station, and well-connected roadways, Da Nang is easily accessible for both domestic and international travelers.</p><p>Da Nang\'s unique blend of natural beauty, cultural richness, and modern amenities makes it an appealing destination in Vietnam. Whether you\'re seeking beachfront relaxation, historical exploration, or culinary delights, Da Nang has something to offer every traveler, making it a must-visit destination in Vietnam\'s central region.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7518,1,NULL,NULL,'Danang',0,NULL,NULL,NULL,NULL,NULL,'149_1694593457.png','149_1694593457.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Danang Vietnam\r\nDanang cultural attractions\r\nVietnamese coast\r\nDanang beaches\r\nVietnamese cuisine','\"Danang, Vietnam: Where Culture Meets Coastline\"','','',NULL,NULL,NULL,1),(150,NULL,NULL,'\"Discover the coastal allure and cultural richness of Da Nang, Vietnam. Explore sandy beaches, ancient temples, and Vietnamese hospitality.\"',NULL,'<div>Da Nang, situated along the central coast of Vietnam, is a city that beautifully blends natural beauty, rich history, and modern development. With its pristine beaches, scenic landscapes, cultural heritage, and warm hospitality, Da Nang has become one of Vietnam\'s top tourist destinations. Here\'s an overview of what makes Da Nang an enchanting place to visit:</div><div>1. My Khe Beach: Known for its soft golden sands and crystal-clear waters, My Khe Beach is often hailed as one of the world\'s most beautiful beaches. It offers ideal conditions for swimming, sunbathing, and water sports, making it a must-visit spot for beach lovers.</div><div>2. Marble Mountains: These five limestone hills, named after the five elements, are home to numerous caves, pagodas, and shrines. Visitors can hike to the mountaintop for panoramic views, explore the caves filled with Buddhist sanctuaries, and admire the intricate stone sculptures crafted by local artisans.</div><div>3. Ba Na Hills: Located just outside Da Nang, Ba Na Hills is a hill station and resort complex that offers a picturesque escape from the city. The Golden Bridge, held up by giant stone hands, is one of its most famous attractions. Visitors can also explore French-style villages, amusement parks, and lush gardens.</div><div>4. Hoi An: Only a short drive from Da Nang, the ancient town of Hoi An is a UNESCO World Heritage Site known for its well-preserved architecture, lantern-lit streets, and vibrant culinary scene. It\'s a great place to explore traditional Vietnamese culture and shop for handmade crafts.</div><div>5. Cham Museum: Da Nang\'s Cham Museum is home to an impressive collection of Cham sculptures dating back to the 7th to 15th centuries. It offers valuable insights into the rich cultural heritage of the Cham people.</div><div>6. Son Tra Peninsula: This lush green peninsula is home to the beautiful Linh Ung Pagoda, which houses a colossal white statue of the Goddess of Mercy. The peninsula\'s forested hills and winding roads provide opportunities for hiking and wildlife viewing.</div><div>7. Dragon Bridge: This iconic bridge spans the Han River and is shaped like a dragon. It\'s famous for its fire and water shows on weekend evenings, creating a spectacular display of lights and flames.</div><div>8. Delicious Cuisine: Da Nang is known for its delectable local cuisine. Be sure to try mi Quang (turmeric-flavored noodles), bun cha ca (fishcake noodle soup), and the city\'s fresh seafood dishes.</div><div>9. Nightlife: Da Nang offers a lively nightlife scene, with bars, clubs, and entertainment venues that cater to both locals and tourists. The An Thuong area is particularly popular for its vibrant nightlife.</div><div>10. Easy Accessibility: Da Nang has its international airport, making it a convenient entry point for travelers exploring Central Vietnam. It\'s well-connected by domestic flights and train services.</div><div>11. Friendly Locals: The people of Da Nang are known for their warmth and hospitality, making visitors feel welcome and comfortable during their stay.</div><div>Da Nang, Vietnam, is a destination that appeals to a wide range of interests, from beach enthusiasts and history buffs to nature lovers and foodies. With its breathtaking landscapes and a rich cultural heritage, Da Nang offers a memorable and diverse travel experience in the heart of Vietnam.</div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,30741,0,0,NULL,'Da Nang',0,NULL,NULL,NULL,NULL,NULL,'150_1694592770.png','150_1694592770.png','Vietnam','236',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Da Nang Vietnam\r\nDa Nang beaches\r\nVietnamese culture\r\nDa Nang attractions\r\nVietnamese hospitality','\"Da Nang, Vietnam: Coastal Beauty and Cultural Delights\"','','',NULL,NULL,NULL,1),(151,NULL,NULL,'\"Explore the bustling streets, ancient temples, and vibrant markets of Bangkok. Discover Thai cuisine, cultural treasures, and the Chao Phraya River.\"',NULL,'<p>Bangkok, the vibrant capital of Thailand, is a bustling metropolis known for its rich culture, ornate temples, bustling street markets, and a dynamic blend of traditional and modern influences. It\'s a city that never sleeps, offering a plethora of experiences for travelers. Here\'s an overview of what makes Bangkok a captivating destination:</p><p>Key Highlights:</p><p>Grand Palace and Wat Phra Kaew: The Grand Palace, a stunning architectural masterpiece, houses the revered Wat Phra Kaew (Temple of the Emerald Buddha). This iconic complex is a must-visit, showcasing intricate Thai craftsmanship and religious significance.</p><p>Wat Pho: Known as the Temple of the Reclining Buddha, Wat Pho houses a massive golden statue of a reclining Buddha, as well as a renowned traditional Thai massage school.</p><p>Wat Arun: The Temple of Dawn is another iconic temple along the Chao Phraya River, known for its intricately decorated spires. Climbing to the top offers panoramic views of the city.</p><p>Chao Phraya River: A boat ride along the Chao Phraya River is a great way to explore Bangkok. You can visit various temples and enjoy the scenic views of the city\'s riverside landmarks.</p><p>Street Food: Bangkok is famous for its street food culture. You can savor local delicacies like pad thai, green curry, mango sticky rice, and various grilled skewers at street stalls and markets.</p><p>Chatuchak Weekend Market: One of the largest markets in the world, Chatuchak Market is a shopping paradise where you can find everything from clothing and antiques to pets and plants.</p><p>Khao San Road: Known as the backpacker hub of Southeast Asia, Khao San Road is famous for its nightlife, street food, and lively atmosphere. It\'s a great place to meet fellow travelers.</p><p>Jim Thompson House: This museum showcases the life and art collection of Jim Thompson, an American businessman who revitalized Thailand\'s silk industry. The house is a beautiful oasis in the heart of the city.</p><p>Asiatique the Riverfront: This open-air mall by the river offers shopping, dining, and entertainment, including the Calypso Cabaret Show and a giant Ferris wheel.</p><p>Erawan Shrine: A sacred Hindu shrine located in the heart of the city, Erawan Shrine is a spiritual and cultural landmark where locals and tourists come to offer prayers and witness traditional performances.</p><p>Lumphini Park: A green oasis in the city, Lumphini Park provides a peaceful escape for jogging, picnics, or simply relaxing in a serene environment.</p><p>Muay Thai Boxing: Experience the excitement of Muay Thai, Thailand\'s national sport, by watching a live match at one of Bangkok\'s stadiums.</p><p>Art and Culture: Bangkok has a thriving art and cultural scene. You can explore galleries like the Bangkok Art and Culture Center and attend traditional Thai dance performances.</p><p>Day Trips: From Bangkok, you can take day trips to nearby attractions like Ayutthaya, a UNESCO World Heritage Site known for its ancient temples, and the Maeklong Railway Market.</p><p>Floating Markets: Visit floating markets like Damnoen Saduak or Amphawa to experience traditional Thai commerce along the canals.</p><p>Tuk-Tuk Rides: Riding in a tuk-tuk, a three-wheeled motorized taxi, is a quintessential Bangkok experience. It\'s a fun way to navigate the city\'s traffic.</p><p>Bangkok is a city that seamlessly blends the old and the new, offering a kaleidoscope of experiences for every traveler. Whether you\'re exploring ancient temples, sampling street food, or enjoying the city\'s vibrant nightlife, Bangkok is a destination that leaves a lasting impression with its charm and energy.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2266,0,1,NULL,'Bangkok',0,NULL,NULL,NULL,NULL,NULL,'151_1694515190.png','151_1694515190.png','Thailand','215',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Bangkok attractions\r\nThai street food\r\nBangkok temples\r\nChao Phraya River\r\nThai hospitality','\"Bangkok, Thailand: The Enchanting Capital of Smiles\"','','',NULL,NULL,NULL,1),(152,NULL,NULL,'Unforgettable Bali Tour Packages: Explore Paradise on Earth! Book Now and Embark on Your Dream Vacation. Limited Offer!',NULL,'<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Explore the captivating allure of Bali, a tropical paradise nestled in the heart of Indonesia, with our exclusive Bali tour packages. Immerse yourself in Bali\'s rich artistic heritage, mesmerizing landscapes, and warm hospitality, making it a sought-after destination for travelers from around the world. This enchanting island is renowned for its vibrant culture, offering a unique atmosphere that enthralls the soul from the moment you set foot on its shores.</span></font></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Bali embraces you with a sense of serenity and spirituality that permeates every aspect of Balinese life. Delve into its deeply embedded culture, with traditional rituals, customs, and art forms displayed in intricate sculptures and vibrant ceremonies at local temples, showcasing the locals\' devotion and reverence for their beliefs. Beyond its spiritual aspects, Bali boasts a dynamic arts scene, with dance, music, and crafts playing integral roles in daily life. Witnessing a traditional Balinese dance performance or exploring bustling art markets offers an opportunity to experience the island\'s artistic vibrancy firsthand.</span></font></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Prepare to be enchanted by this magical destination as you board your flight to Bali. The genuine warmth of the Balinese people, their commitment to preserving their unique heritage, and the awe-inspiring beauty of the island\'s natural landscapes combine to create an experience that goes beyond ordinary tourism. A trip to Bali is an opportunity to immerse yourself in an artistic ambiance unlike any other, where every moment becomes a chance to connect with the essence of this extraordinary island. So, leave behind the hustle and bustle of everyday life and let Bali embrace you with its enchanting appeal. Book your Bali tour now and leave with lasting memories of this remarkable journey.</span></font></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\"><b>Top Tourist Destinations in Bali</b></span></font></p><p style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Ubud: Immerse yourself in the cultural heart of Bali, where art, traditional craft markets, and serene yoga retreats await.</span></font></p><p style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 11pt;\"><span style=\"white-space-collapse: preserve; font-family: Verdana;\">Kuta: Experience the vibrant nightlife and popular surf spots that have made Kuta famous.</span></p><p style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Seminyak: Indulge in luxury with high-end resorts, trendy boutiques, and world-class dining options.</span></font></p><p style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 11pt;\"><font face=\"Verdana\"><span style=\"white-space-collapse: preserve;\">Tanah Lot: Witness the breathtaking sunset views from this iconic sea temple.</span></font></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2136,0,1,NULL,'Bali',0,NULL,NULL,15,NULL,NULL,'152_1694514747.png','152_1694514747.png','Indonesia','102',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Bali tour packages, Bali holiday packages, bali travel packages, bali tour','Bali Tour Packages: Your Gateway to Paradise','','',NULL,NULL,NULL,1),(153,NULL,NULL,'\"Experience the blend of modernity and history in Baku. Explore the Old City, Flame Towers, and the vibrant culture of Azerbaijan.\"',NULL,'<p>Baku, the capital of Azerbaijan, is a captivating blend of ancient history and modernity. Located on the Caspian Sea\'s coast, this dynamic city has evolved into a bustling metropolis that showcases its rich cultural heritage while embracing contemporary developments. Here\'s an overview of what makes Baku a remarkable destination:</p><p>Key Highlights:</p><p>Old City (Icherisheher): Baku\'s historic heart is the Old City, a UNESCO World Heritage Site that dates back to at least the 12th century. Its narrow streets are lined with well-preserved medieval architecture, including the iconic Maiden Tower and the Palace of the Shirvanshahs.</p><p>Flame Towers: Baku\'s skyline is dominated by the Flame Towers, a trio of futuristic skyscrapers that illuminate the city at night with a mesmerizing display of LED lights. These towers have become iconic symbols of modern Baku.</p><p>Boulevard and Caspian Sea: The Baku Boulevard stretches along the Caspian Sea coast, offering a picturesque promenade with stunning views. It\'s a great place for leisurely walks, jogging, or simply enjoying the sea breeze.</p><p>Heydar Aliyev Center: Designed by renowned architect Zaha Hadid, this futuristic cultural center is an architectural masterpiece. Its flowing, curvilinear design stands in stark contrast to the city\'s historic architecture and is home to exhibitions and events.</p><p>Museums: Baku has a wealth of museums, including the National Museum of History, Azerbaijan Carpet Museum, and the Museum of Modern Art, where you can explore the country\'s rich cultural heritage.</p><p>Culinary Delights: Azerbaijani cuisine is a highlight of Baku. Be sure to try local dishes such as plov (rice pilaf), kebabs, and the national dish, dolma. Baku\'s restaurants offer a diverse range of culinary experiences.</p><p>Flame Towers: Baku\'s skyline is dominated by the Flame Towers, a trio of futuristic skyscrapers that illuminate the city at night with a mesmerizing display of LED lights. These towers have become iconic symbols of modern Baku.</p><p>Boulevard and Caspian Sea: The Baku Boulevard stretches along the Caspian Sea coast, offering a picturesque promenade with stunning views. It\'s a great place for leisurely walks, jogging, or simply enjoying the sea breeze.</p><p>Heydar Aliyev Center: Designed by renowned architect Zaha Hadid, this futuristic cultural center is an architectural masterpiece. Its flowing, curvilinear design stands in stark contrast to the city\'s historic architecture and is home to exhibitions and events.</p><p>Museums: Baku has a wealth of museums, including the National Museum of History, Azerbaijan Carpet Museum, and the Museum of Modern Art, where you can explore the country\'s rich cultural heritage.</p><p>Culinary Delights: Azerbaijani cuisine is a highlight of Baku. Be sure to try local dishes such as plov (rice pilaf), kebabs, and the national dish, dolma. Baku\'s restaurants offer a diverse range of culinary experiences.</p><p>Baku Boulevard: Stretching along the Caspian Sea, the Baku Boulevard offers a pleasant escape from the city\'s hustle and bustle. It\'s a great place for a leisurely stroll, cycling, or enjoying a picnic.</p><p>Heydar Aliyev Center: Designed by renowned architect Zaha Hadid, this iconic building is a masterpiece of contemporary architecture. It hosts art exhibitions, cultural events, and is a must-visit for its unique design.</p><p>Nightlife: Baku has a vibrant nightlife scene, with numerous bars, clubs, and restaurants where you can enjoy live music, dance, and socialize into the early hours.</p><p>Shopping: The city offers a range of shopping experiences, from modern malls like the Park Bulvar Shopping Mall to traditional bazaars like Taza Bazaar, where you can find local handicrafts, spices, and textiles.</p><p>Gala Open-Air Museum: Located just outside Baku, Gala is an open-air museum that provides a glimpse into Azerbaijani rural life with its historic houses and artifacts.</p><p>Gobustan National Park: A short drive from Baku, Gobustan is a UNESCO World Heritage Site known for its ancient rock carvings, mud volcanoes, and unique lunar landscapes.</p><p>Baku is a city of contrasts, where ancient history harmoniously coexists with modernity. Whether you\'re exploring its historic old town, admiring contemporary architecture, or indulging in Azerbaijani cuisine, Baku offers a diverse and captivating experience for travelers seeking a taste of the past and a glimpse of the future.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2099,0,0,NULL,'Baku',0,NULL,NULL,NULL,NULL,NULL,'153_1694514443.png','153_1694514443.png','Azerbaijan','15',NULL,'2023-02-08 16:22:27','2023-02-08 16:22:27',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Baku travel\r\nAzerbaijani culture\r\nBaku Old City\r\nFlame Towers\r\nCaspian Sea views','\"Baku, Azerbaijan: The Caspian Pearl of the Caucasus\"','','',NULL,NULL,NULL,1),(155,NULL,NULL,'\"Experience the blend of Swiss precision and urban chic in Zurich, Switzerland. Explore financial districts, art galleries, and Swiss sophistication.\"',NULL,'<p>Zurich, the largest city in Switzerland, is a captivating blend of urban sophistication and natural beauty. Nestled along the pristine shores of Lake Zurich and surrounded by the majestic Alps, this vibrant metropolis offers a harmonious mix of rich history, modern innovation, and a quality of life that ranks among the world\'s best.</p><p>Lake Zurich and the Limmat River:</p><p>The city\'s heart lies along the shores of Lake Zurich and the meandering Limmat River. Picturesque promenades, lush parks, and inviting swimming areas make these waterside locales perfect for leisurely strolls, picnics, and water-based activities.</p><p>Old Town (Altstadt):</p><p>Zurich\'s Old Town is a living museum of medieval architecture and cobblestone streets. Explore historic landmarks such as Grossmünster and Fraumünster, known for their stunning stained glass windows designed by Marc Chagall.</p><p>Art and Culture:</p><p>Zurich\'s cultural scene is thriving. The Kunsthaus Zurich houses an impressive collection of European art, while the Swiss National Museum delves into the country\'s history. The city also hosts numerous theaters, galleries, and music festivals.</p><p>Bahnhofstrasse:</p><p>Bahnhofstrasse, one of the world\'s most exclusive shopping streets, is a paradise for luxury shoppers. Designer boutiques, high-end jewelers, and gourmet delicatessens line this iconic avenue.</p><p>Swiss Cuisine:</p><p>Savor Swiss gastronomy in Zurich\'s cozy restaurants and traditional Swiss eateries. Try fondue, raclette, or a hearty Rösti, and don\'t forget to sample Swiss chocolate, which is a local delicacy.</p><p>Zurich Zoo and Botanical Garden:</p><p>Families and nature enthusiasts will enjoy the Zurich Zoo, home to a wide variety of animals, and the lush Botanical Garden, featuring diverse plant species.</p><p>Swiss Banking and Finance:</p><p>Zurich is a global financial hub and home to some of the world\'s largest banks and financial institutions. The Swiss National Bank and the Zurich Stock Exchange are key players in the global financial sector.</p><p>Cultural Festivals:</p><p>Throughout the year, Zurich hosts a myriad of cultural events and festivals, including the Zurich Film Festival, Sechseläuten (a spring festival), and the Street Parade, one of Europe\'s largest techno music events.</p><p>Zurich\'s Green Spaces:</p><p>The city\'s commitment to sustainability is reflected in its numerous parks and green spaces. The Uetliberg Mountain, just a short train ride away, offers panoramic views of the city and the Alps.</p><p>Efficient Public Transport:</p><p>Zurich\'s public transportation system is renowned for its efficiency and connectivity. Trams, buses, trains, and even boats make getting around the city and its picturesque surroundings a breeze.</p><p>Quality of Life:</p><p>Zurich consistently ranks high in global quality of life surveys due to its safety, cleanliness, healthcare, and educational institutions.</p><p>Zurich, with its blend of urban elegance, natural beauty, and cultural richness, is a city that invites you to explore its historic past, indulge in culinary delights, and bask in the stunning landscapes of Switzerland. Whether you\'re strolling along the lake, delving into art and culture, or simply sipping coffee at a lakeside café, Zurich\'s cosmopolitan charm leaves a lasting impression on every traveler.</p>',NULL,'',NULL,NULL,NULL,NULL,NULL,109265,0,NULL,NULL,'Zurich',0,NULL,NULL,NULL,NULL,NULL,'155_1695204616.png','155_1695204616.png','Switzerland','210',NULL,'2023-07-17 14:21:06','2023-07-17 14:21:06',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Zurich SwitzerlandSwiss precision in Zurich Zurich financial districts  Zurich art galleries Swiss sophistication','\"Zurich, Switzerland: Where Swiss Precision Meets Urban Chic\"','','',NULL,NULL,NULL,1),(157,NULL,NULL,'\"Experience the collision of history and modernity in Moscow, Russia. Visit iconic landmarks, explore Red Square, and savor Russian culture.\"',NULL,'<p>Moscow, the capital and largest city of Russia, is a place where history and modernity coexist in a captivating blend. Nestled along the banks of the Moskva River in the western part of the country, Moscow is not just a city; it\'s a reflection of Russia\'s rich past and dynamic present. Here\'s an overview of what makes Moscow a truly remarkable destination:</p><p>1. Rich History:</p><p>Moscow\'s history dates back over eight centuries. It played a central role in the formation of the Russian state and has been the capital of Russia since the 13th century.</p><p>The iconic Kremlin, a historic fortress and the heart of Moscow, is home to numerous historic buildings, including cathedrals, palaces, and government offices.</p><p>2. Architectural Marvels:</p><p>Moscow boasts a stunning architectural landscape, blending various styles from different eras. The cityscape features the colorful onion domes of St. Basil\'s Cathedral, the grandeur of the Bolshoi Theatre, and the imposing skyscrapers of Moscow City.</p><p>3. Cultural Riches:</p><p>The city\'s cultural scene is world-renowned, with world-class museums such as the State Tretyakov Gallery, the Pushkin State Museum of Fine Arts, and the Moscow Museum of Modern Art.</p><p>Moscow is famous for its performing arts, including the Bolshoi Ballet and the Moscow State Circus.</p><p>4. Vibrant Nightlife:</p><p>Moscow comes alive at night with a vibrant nightlife scene. The city boasts a multitude of bars, nightclubs, and restaurants, offering a diverse range of entertainment options.</p><p>5. Green Spaces:</p><p>Despite its bustling urban environment, Moscow is home to numerous green spaces and parks. Gorky Park, Sokolniki Park, and Tsaritsyno Park provide a welcome escape from the city\'s hustle and bustle.</p><p>6. Culinary Delights:</p><p>Moscow\'s dining scene is a melting pot of international cuisines, with a focus on Russian and Eastern European dishes. Try traditional Russian delicacies like borscht, pelmeni, and blini.</p><p>The city\'s café culture is also noteworthy, with locals and tourists alike enjoying a cup of strong Russian coffee.</p><p>7. Dynamic Economy:</p><p>Moscow is not only the political capital of Russia but also its economic hub. The city is home to major corporations, financial institutions, and a thriving business district known as Moscow City.</p><p>8. Seasonal Attractions:</p><p>Depending on the time of year, Moscow offers unique experiences. In winter, you can explore the festive Christmas markets and ice skate in the city\'s parks. In summer, you can enjoy open-air concerts and outdoor festivals.</p><p>9. Metro System:</p><p>Moscow\'s metro system is not just a means of transportation; it\'s an underground art gallery. Each station is uniquely designed with stunning mosaics, sculptures, and artwork.</p><p>10. Cultural Diversity:</p><p>- Moscow is a melting pot of cultures, with a diverse population representing various ethnic backgrounds. This diversity is reflected in the city\'s cuisine, festivals, and cultural events.</p><p>Moscow is a city of contrasts and contradictions, where historic landmarks stand alongside modern skyscrapers, and where the rich cultural heritage of Russia is juxtaposed with the fast-paced lifestyle of a global metropolis. It\'s a city that welcomes visitors with open arms, inviting them to explore its layers of history, art, and culture while experiencing the pulse of contemporary Russia.</p>',NULL,'',NULL,NULL,NULL,NULL,NULL,18487,1,NULL,NULL,'Moscow',0,NULL,NULL,NULL,NULL,NULL,'157_1694771306.png','157_1694771306.png','Russia','231',NULL,'2023-07-17 14:21:06','2023-07-17 14:21:06',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Moscow Russia\r\nMoscow history\r\nRed Square Moscow\r\nRussian culture\r\nMoscow landmarks','\"Moscow, Russia: Where History and Modernity Collide\"','','',NULL,NULL,NULL,1),(158,NULL,NULL,'\"Explore the charming city of George, USA, known for its rich history, vibrant culture, and southern hospitality. Learn about historic sites, cultural attractions, outdoor adventures, and delicious southern cuisine.\"',NULL,'<p>George, located in the southern part of the United States, is a charming city in the state of Georgia. Nestled in the heart of the Peach State, George is known for its rich history, vibrant cultural scene, and a blend of modern amenities with a touch of southern hospitality. Here\'s an overview of what makes George, USA, an interesting destination:</p><p>1. Historic Sites: George is steeped in history, and you can explore its rich heritage by visiting various historic sites. The city played a significant role in the American Civil War, and you can learn about this period at places like the Civil War Naval Museum and the National Civil War Naval Museum.</p><p>2. Columbus Riverwalk: This scenic riverwalk along the Chattahoochee River offers a picturesque setting for a leisurely stroll or bike ride. It\'s a great place to enjoy beautiful river views, picnics, and outdoor activities.</p><p>3. Cultural Attractions: George boasts cultural attractions such as the Columbus Museum, which showcases art, history, and regional culture. The RiverCenter for the Performing Arts hosts a variety of concerts, shows, and performances throughout the year.</p><p>4. Fort Benning: Just south of George, Fort Benning is a major U.S. Army base and a significant part of the local community. Visitors can explore the National Infantry Museum, which honors the service and sacrifices of infantry soldiers throughout American history.</p><p>5. Whitewater Rafting: Columbus, a neighboring city to George, is famous for its urban whitewater course on the Chattahoochee River. It\'s one of the world\'s longest urban whitewater courses and offers thrilling adventures for water sports enthusiasts.</p><p>6. Cuisine: Southern cuisine is a highlight of George\'s culinary scene. Don\'t miss the chance to savor classic southern dishes like fried chicken, collard greens, cornbread, and peach cobbler at local restaurants.</p><p>7. Festivals: George hosts various festivals and events throughout the year, celebrating music, arts, culture, and heritage. The Georgia Renaissance Festival and RiverFest are popular annual gatherings.</p><p>8. Outdoor Recreation: The region surrounding George offers opportunities for outdoor enthusiasts, including hiking, biking, and camping in nearby state parks and natural areas.</p><p>9. Warm Climate: George enjoys a mild climate with hot summers and mild winters, making it a suitable year-round destination for outdoor activities and exploration.</p><p>10. Southern Hospitality: One of the most endearing aspects of visiting George is the warm and welcoming nature of the local residents. Southern hospitality is a way of life here, and you\'re sure to feel right at home.</p><p>George, USA, is a city that beautifully combines its historical roots with a contemporary flair. Whether you\'re interested in history, outdoor adventures, cultural experiences, or simply enjoying some good old-fashioned southern comfort food, George has something to offer every traveler. Come and experience the charm and hospitality of this delightful southern city.</p>',NULL,'',NULL,NULL,NULL,NULL,NULL,10293,0,NULL,NULL,'George',0,NULL,NULL,NULL,NULL,NULL,'158_1695811542.png','158_1694604713.png','USA','231',NULL,'2023-07-17 14:21:06','2023-07-17 14:21:06',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'George, USA\r\nSouthern hospitality\r\nHistoric sites\r\nColumbus Riverwalk\r\nCultural attractions\r\nFort Benning\r\nWhitewater rafting\r\nSouthern cuisine\r\nFestivals in George\r\nOutdoor recreation\r\nWarm climate\r\nSouthern culture','Discover George, USA: History, Culture, and Southern Hospitality\"','','',NULL,NULL,NULL,1),(159,NULL,NULL,'\"Explore Strasbourg, France, where French and German influences merge. Discover historic districts, the European Parliament, and Alsatian culture.\"',NULL,'<p>Strasbourg, situated on the banks of the Rhine River in northeastern France, is a city that seamlessly blends the sophistication of French culture with the charm of its Alsatian roots. Known for its picturesque canals, stunning architecture, and vibrant European institutions, Strasbourg offers visitors a captivating journey through history, culture, and culinary delights.</p><p>Historical Heritage:</p><p>Strasbourg\'s history is palpable as you stroll through its medieval streets. The city\'s crowning jewel is its stunning Gothic cathedral, Cathédrale Notre-Dame de Strasbourg, which boasts intricate carvings and a mesmerizing astronomical clock. The historic district of La Petite France, with its half-timbered houses and canals, is a UNESCO World Heritage Site that transports you back in time.</p><p>European Capital:</p><p>Strasbourg is home to several European institutions, including the European Parliament and the Council of Europe. As such, it\'s often considered the capital of the European Union. Visitors can explore the European Quarter, where these institutions are located, and gain insights into European politics and diplomacy.</p><p>Culinary Delights:</p><p>Alsace, the region to which Strasbourg belongs, is celebrated for its culinary traditions. You can savor Alsatian specialties like choucroute garnie (sauerkraut with sausages and charcuterie), tarte flambée (a thin, flame-cooked pizza), and the region\'s world-renowned wines, such as Riesling and Gewürztraminer.</p><p>Canals and Bridges:</p><p>Strasbourg is often called \"Petite France\" for its network of canals and charming bridges. A boat tour along the Ill River offers a unique perspective of the city, allowing you to glide under picturesque bridges and past colorful houses adorned with flower boxes.</p><p>Christmas Capital:</p><p>Strasbourg is famous for its enchanting Christmas markets, which transform the city into a winter wonderland during the holiday season. The Christkindelsmärik, one of the oldest and most renowned Christmas markets in Europe, features festive stalls, twinkling lights, and the scent of spiced wine and gingerbread.</p><p>Influence of Culture:</p><p>Strasbourg\'s unique location near the French-German border has given it a blend of both cultures. The Alsatian dialect is still spoken, and the city celebrates its heritage with a mix of French and German traditions.</p><p>Museums and Galleries:</p><p>Art enthusiasts will find a wealth of cultural institutions, including the Strasbourg Museum of Fine Arts and the Tomi Ungerer Museum. These venues showcase a diverse range of artistic expressions.</p><p>Quaint Neighborhoods:</p><p>Explore the city\'s charming neighborhoods, such as Krutenau and Orangerie, which are perfect for leisurely strolls and discovering local cafes, boutiques, and parks.</p><p>Biking Paradise:</p><p>Strasbourg is renowned for its bike-friendly infrastructure, with dedicated lanes and bike-sharing programs. It\'s a fantastic way to explore the city and its surroundings at a leisurely pace.</p><p>Strasbourg\'s allure lies in its ability to effortlessly combine its rich history, international importance, and delightful cuisine while retaining its distinct Alsatian character. Whether you\'re wandering through its cobblestone streets, admiring its architectural wonders, or savoring its culinary treasures, Strasbourg invites you to experience the best of French and Alsatian culture in one remarkable city.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,26205,1,NULL,NULL,'Strasbourg',0,NULL,NULL,NULL,NULL,NULL,'159_1695193010.png','159_1695193010.png','France','76',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Strasbourg France\r\nFrench and German influence in Strasbourg\r\nStrasbourg historic districts\r\nEuropean Parliament Strasbourg\r\nAlsatian culture','\"Strasbourg, France: Where French and German Influence Merge\"','','',NULL,NULL,NULL,1),(160,NULL,NULL,'\"Discover Pamukkale, Turkey, where cotton castles meet ancient ruins. Witness terraces of thermal springs, Hierapolis, and Turkish history.\"',NULL,'<p>Pamukkale, located in southwestern Turkey, is a mesmerizing natural wonder and a UNESCO World Heritage Site renowned for its stunning terraces of white mineral-rich thermal waters, ancient ruins, and therapeutic hot springs. Here\'s a closer look at what makes Pamukkale a captivating destination:</p><p>1. White Terraces of Pamukkale:</p><p>Pamukkale translates to \"Cotton Castle\" in Turkish, and for good reason. The main attraction is a series of dazzling white terraces formed by the flow of calcium-rich mineral water over thousands of years. These terraces, resembling a cascade of cotton, are visually striking and otherworldly.</p><p>2. Hierapolis:</p><p>Adjacent to Pamukkale is the ancient city of Hierapolis, founded in the 2nd century BC. It was a prominent healing center in antiquity due to its thermal springs. Explore the well-preserved ruins of this ancient city, including a vast necropolis, Roman theater, and the Temple of Apollo.</p><p>3. Thermal Springs and Pools:</p><p>The thermal springs in Pamukkale are believed to have healing properties, attracting visitors seeking relaxation and rejuvenation. Many hotels in the area offer thermal pools where you can soak in the mineral-rich waters.</p><p>4. Cleopatra\'s Pool:</p><p>Cleopatra\'s Pool, also known as the Antique Pool, is a unique thermal pool within the ancient ruins of Hierapolis. Legend has it that Cleopatra herself once swam here. The pool is still open to visitors who can take a dip amidst ancient columns.</p><p>5. Travertine Terraces:</p><p>The terraces of Pamukkale are formed by the precipitation of calcium carbonate from the flowing thermal waters. As visitors walk barefoot along designated paths, they can admire and even wade through the shallow terraces, which are constantly changing due to the mineral deposits.</p><p>6. Archaeological Museum:</p><p>The Hierapolis Archaeological Museum, located near the entrance to Pamukkale, houses a remarkable collection of artifacts from the ancient city, including sculptures, pottery, and inscriptions.</p><p>7. Thermal Resorts:</p><p>Pamukkale is home to several thermal resorts and hotels that offer visitors a luxurious and relaxing stay with access to thermal pools and spa facilities.</p><p>8. Spectacular Sunsets:</p><p>The terraces of Pamukkale take on a golden hue during sunset, creating a magical atmosphere. It\'s a popular time for visitors to capture stunning photographs and savor the beauty of the landscape.</p><p>9. Ecological Sensitivity:</p><p>Efforts are made to preserve the delicate natural balance of Pamukkale. To protect the terraces, visitors are asked to remove their shoes and walk on designated pathways.</p><p>10. Nearby Attractions:</p><p>- Pamukkale is situated in the province of Denizli, offering opportunities to explore nearby attractions such as the ancient city of Laodicea and the picturesque village of Karahayit, known for its red thermal springs.</p><p>Pamukkale\'s unique blend of natural beauty, ancient history, and therapeutic waters make it a must-visit destination in Turkey. Whether you\'re immersing yourself in the rejuvenating thermal pools, exploring the ruins of Hierapolis, or simply marveling at the striking terraces, Pamukkale offers an unforgettable journey through time and nature.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20687,1,NULL,NULL,'Pamukkale',0,NULL,NULL,NULL,NULL,NULL,'160_1694778853.png','160_1694778853.png','Turkey','222',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Pamukkale Turkey\r\nCotton castles in Pamukkale\r\nHierapolis ancient ruins\r\nTurkish thermal springs\r\nPamukkale attractions\r\nP','\"Pamukkale, Turkey: Where Cotton Castles Meet Ancient Ruins\"','','',NULL,NULL,NULL,1),(161,NULL,NULL,'\"Experience the charm of Orient in France, known for vineyards, picturesque villages, and the effervescent delights of Champagne.\"',NULL,'<p>\"Orient\" is a term with multiple meanings and connotations, depending on its context. It can refer to a variety of subjects, from geography and history to culture and art. Here, I\'ll provide a brief overview of some of the key interpretations of \"Orient.\"</p><p>Geographical Reference:</p><p>In geography, \"Orient\" is an outdated term used to refer to the eastern part of the world, particularly Asia. It was often used in contrast to the \"Occident,\" which referred to the Western world. However, this terminology is considered somewhat archaic and ethnocentric.</p><p>Historical and Colonial Perspective:</p><p>In the context of colonialism and European imperialism, the \"Orient\" was often associated with the regions that European powers colonized or had interests in, primarily in Asia, the Middle East, and North Africa. This perspective often carried Eurocentric biases and stereotypes about the cultures and peoples of these regions.</p><p>Cultural and Artistic Context:</p><p>\"Orient\" has been used in literature, art, and culture to evoke images of exoticism, mystery, and the East. It has inspired countless works of literature, paintings, and music that romanticize or depict the cultures and landscapes of Asia and the Middle East.</p><p>Orientalism:</p><p>The term \"Orientalism\" refers to the study, interpretation, and representation of the cultures and societies of the East by Western scholars and artists. Edward Said\'s influential book, \"Orientalism,\" critically examines how Western societies have historically constructed and represented the Orient, often reinforcing stereotypes and prejudices.</p><p>Contemporary Use:</p><p>In contemporary discourse, the use of \"Orient\" has largely been replaced by more specific and culturally sensitive terms that avoid generalizations. People now prefer to refer to specific regions or countries when discussing matters related to Asia or the Middle East.</p><p>Oriental Studies:</p><p>In academia, the field of \"Oriental studies\" historically focused on the languages, cultures, and histories of Asia and the Middle East. However, this term has also evolved, and many academic institutions now use more precise designations like Asian Studies or Middle Eastern Studies.</p><p>It\'s essential to recognize that the term \"Orient\" has a complex history, and its usage has evolved over time. In contemporary discourse, it is often more appropriate and respectful to use specific terms that accurately represent the regions and cultures being discussed rather than relying on broad and potentially problematic generalizations.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,20236,1,NULL,NULL,'Orient',0,NULL,NULL,NULL,NULL,NULL,'161_1694776714.png','161_1694776714.png','Spain','199',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Orient France\r\nFrench vineyards\r\nChampagne villages\r\nOrient cultural experiences\r\nFrench wine regions','\"Orient, France: Vineyards, Villages, and Champagne\"','','',NULL,NULL,NULL,1),(162,NULL,NULL,'Discover Munich, a city renowned for its rich Bavarian culture, historic architecture, and vibrant arts scene. From the iconic Marienplatz to the world-famous Oktoberfest, Munich offers a delightful mix of old-world charm and contemporary attractions.',NULL,'<p>Munich, the capital and largest city of Bavaria, Germany, is a captivating blend of old-world charm and contemporary vibrancy. With a rich history, a strong cultural identity, and a thriving arts scene, Munich offers a diverse array of experiences for travelers. Here\'s a closer look at what makes Munich a remarkable destination:<br></p><p>1. Bavarian Tradition:</p><p>Munich is often regarded as the heart of Bavarian culture. Visitors can immerse themselves in the region\'s unique traditions, from traditional beer gardens to classic Bavarian cuisine.</p><p>2. Historic Charm:</p><p>The city\'s historic center is a treasure trove of architectural wonders. Marienplatz, the central square, is a focal point with its stunning Gothic architecture and the iconic Glockenspiel clock.</p><p>3. World-Famous Oktoberfest:</p><p>Munich is renowned worldwide for its Oktoberfest celebration. Every year, millions of visitors gather to enjoy the festivities, including traditional Bavarian music, food, and, of course, beer.</p><p>4. Museums and Art Galleries:</p><p>Munich boasts an impressive array of museums and art galleries. The Alte Pinakothek, Neue Pinakothek, and Pinakothek der Moderne are renowned for their extensive art collections spanning from the Middle Ages to contemporary art.</p><p>5. Royal Residences:</p><p>Explore the magnificent Nymphenburg Palace, once the summer residence of Bavarian rulers. The palace and its stunning gardens offer a glimpse into Bavaria\'s royal history.</p><p>6. Beer Gardens:</p><p>Munich is synonymous with beer gardens, and you can\'t visit without enjoying a cold beer in one of these relaxed outdoor settings. The Englischer Garten is home to one of the world\'s largest beer gardens.</p><p>7. History and Heritage:</p><p>Munich\'s history is deeply rooted, and visitors can delve into the past at sites like the Munich Residenz, a former royal palace, and the Dachau Concentration Camp Memorial Site, a sobering reminder of World War II.</p><p>8. Contemporary Arts Scene:</p><p>The city also thrives in the contemporary arts scene, with modern galleries and exhibitions. The vibrant Kunstareal, or Art District, is a hub for contemporary art enthusiasts.</p><p>9. Cultural Festivals:</p><p>Beyond Oktoberfest, Munich hosts a range of cultural festivals, including the Munich Film Festival, Tollwood Festival, and the Munich Opera Festival.</p><p>10. Green Spaces:</p><p>- Munich is blessed with numerous parks and green spaces. The English Garden, in particular, offers a tranquil escape with serene lakes, meadows, and even a man-made river for surfing.</p><p>11. Thriving Economy:</p><p>- Munich is a major economic powerhouse in Europe and is home to several multinational corporations, contributing to its cosmopolitan atmosphere.</p><p>Munich, with its blend of history, culture, and modernity, invites travelers to savor the best of Bavaria while embracing the conveniences of a contemporary city. Whether you\'re exploring its historic landmarks, indulging in Bavarian delights, or delving into the city\'s dynamic arts scene, Munich promises a memorable and enriching experience for all who visit.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18694,1,NULL,NULL,'Munich',0,NULL,NULL,NULL,NULL,NULL,'162_1694771846.png','162_1694771846.png','Germany','83',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Munich travel\r\nBavarian culture\r\nMarienplatz architecture\r\nOktoberfest celebration\r\nMunich museums\r\nNymphenburg Palace\r\nMunich beer gardens\r\nMunich history\r\nContemporary art Munich\r\nMunich city guide','Explore Munich: A Blend of Tradition and Modernity in Germany','','',NULL,NULL,NULL,1),(163,NULL,NULL,'\"Discover Meiringen, Switzerland, the gateway to the picturesque Haslital Valley. Explore alpine beauty, Sherlock Holmes, and Swiss hospitality.\"',NULL,'<p>Meiringen is a picturesque town nestled in the Haslital valley of the Bernese Oberland in Switzerland. This charming Swiss destination is known for its stunning Alpine scenery, outdoor recreational opportunities, and its connection to the famous fictional detective, Sherlock Holmes. Here\'s an overview of what makes Meiringen an appealing place to visit:</p><p>Geography and Location:</p><p>Meiringen is located in the Canton of Bern in central Switzerland, surrounded by the Bernese Alps. It\'s situated at the confluence of the Aare River and the Haslital valley, making it an excellent base for exploring the region.</p><p>Natural Beauty:</p><p>The town is surrounded by breathtaking natural beauty, with towering mountains, lush meadows, and pristine Alpine lakes. Nearby attractions include the Engelhorn Mountain Range and Lake Brienz.</p><p>Visitors can enjoy hiking, mountain biking, and paragliding in the summer, as well as skiing and snowboarding in the winter.</p><p>Sherlock Holmes Connection:</p><p>Meiringen is famous for its association with Sir Arthur Conan Doyle\'s fictional detective, Sherlock Holmes. The town is the setting for the story \"The Final Problem,\" in which Holmes and his arch-nemesis, Professor Moriarty, have their dramatic showdown at the Reichenbach Falls, located just outside Meiringen.</p><p>The Sherlock Holmes Museum in Meiringen pays homage to the fictional detective and his creator, Sir Arthur Conan Doyle.</p><p>Reichenbach Falls:</p><p>The Reichenbach Falls is a stunning waterfall with a height of 250 meters (820 feet). Visitors can take a funicular to the upper falls and enjoy panoramic views of the surrounding area.</p><p>The falls are not only famous for their natural beauty but also for their role in the Sherlock Holmes story.</p><p>Historic Town Center:</p><p>Meiringen has a charming, well-preserved old town with traditional Swiss architecture, wooden chalets, and quaint streets. The town center is perfect for leisurely strolls and exploring local shops and cafes.</p><p>Local Cuisine:</p><p>Swiss cuisine is a highlight of a visit to Meiringen. You can savor traditional dishes like fondue, raclette, and rösti at local restaurants.</p><p>Don\'t forget to try the Meiringen specialty known as the \"Meiringer Meringue,\" a delicious dessert made from egg whites and sugar.</p><p>Outdoor Activities:</p><p>The surrounding region offers a wide range of outdoor activities, including hiking, skiing, snowshoeing, and ice climbing. The nearby Hasliberg ski area is popular in the winter months.</p><p>In the summer, you can explore picturesque hiking trails, visit alpine farms, and enjoy the serene lakes.</p><p>Accessibility:</p><p>Meiringen is accessible by train, making it a convenient destination for travelers. The town is well-connected to major Swiss cities like Zurich, Bern, and Lucerne.</p><p>In summary, Meiringen is a charming Swiss town with a blend of natural beauty, outdoor adventures, a touch of literary history, and a welcoming atmosphere. Whether you\'re a fan of Sherlock Holmes or simply seeking a tranquil Alpine retreat, Meiringen has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,17345,1,NULL,NULL,'Meiringen',0,NULL,NULL,NULL,NULL,NULL,'163_1694692516.png','163_1694692516.png','Switzerland','210',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Meiringen Switzerland\r\nHaslital Valley gateway\r\nSwiss alpine beauty\r\nSherlock Holmes in Meiringen\r\nSwiss hospitality','\"Meiringen, Switzerland: Gateway to the Haslital Valley\"','','',NULL,NULL,NULL,1),(164,NULL,NULL,'\"Experience the cultural vibrancy of Madrid, Spain. Discover flamenco rhythms, historic architecture, and the heart of Spanish culture.\"',NULL,'<p>Madrid is the vibrant and culturally rich capital city of Spain, located in the heart of the Iberian Peninsula. It is a dynamic metropolis known for its history, art, lively street life, and passion for football. Madrid\'s unique blend of tradition and modernity, along with its welcoming atmosphere, makes it a captivating destination for travelers. Here\'s an overview of what makes Madrid a remarkable city:</p><p>Geography and Location:</p><p>Madrid is situated in the central part of Spain, serving as the country\'s political, economic, and cultural center.</p><p>The city lies on a high plateau known as the Meseta Central, giving it a unique and somewhat continental climate with hot summers and cold winters.</p><p>History and Heritage:</p><p>Madrid has a rich history dating back to the 9th century when it was established as a Moorish fortress.</p><p>The Royal Palace of Madrid, a stunning example of Baroque and classical architecture, stands as a symbol of Spain\'s royal heritage. Visitors can explore its opulent rooms and the beautifully landscaped Sabatini Gardens.</p><p>Cultural Landmarks:</p><p>The Prado Museum, often considered one of the world\'s greatest art museums, houses a vast collection of European art, including works by Velázquez, Goya, and El Greco.</p><p>The Reina Sofía National Museum and Art Center is renowned for its collection of modern and contemporary art, featuring Picasso\'s famous painting \"Guernica.\"</p><p>The Thyssen-Bornemisza Museum offers a diverse collection of European art spanning from the Middle Ages to the 20th century.</p><p>Public Squares and Parks:</p><p>Madrid\'s public squares, such as the bustling Puerta del Sol and the elegant Plaza Mayor, are perfect for people-watching, shopping, and dining.</p><p>The Buen Retiro Park, often referred to simply as \"El Retiro,\" is a vast green oasis in the heart of the city, where visitors can relax, row boats on the lake, and explore various sculptures and gardens.</p><p>Street Life and Cuisine:</p><p>Madrid is famous for its lively street life, with numerous cafes, tapas bars, and restaurants offering a wide range of Spanish and international cuisine.</p><p>The Mercado de San Miguel, a beautifully restored market, is a food lover\'s paradise, offering a chance to taste an array of Spanish delicacies.</p><p>Shopping:</p><p>Calle Gran Vía is Madrid\'s major shopping street, lined with boutiques, department stores, and theaters.</p><p>El Rastro, Madrid\'s iconic flea market, takes place on Sundays and offers a treasure trove of antiques, clothing, and crafts.</p><p>Football Passion:</p><p>Madrid is home to two of the world\'s most famous football clubs: Real Madrid and Atlético Madrid. The rivalry between these clubs is legendary, and attending a match at the Santiago Bernabéu or Wanda Metropolitano Stadium is a thrilling experience for football fans.</p><p>Festivals and Celebrations:</p><p>Madrid hosts various festivals throughout the year, with the most famous being the San Isidro Festival, celebrating the city\'s patron saint in May.</p><p>During Christmas, Madrid is adorned with lights and decorations, and the Puerta del Sol becomes the focal point for New Year\'s Eve celebrations.</p><p>Accessibility:</p><p>Madrid-Barajas Adolfo Suárez Airport is one of Europe\'s busiest airports, providing excellent international connectivity.</p><p>The city has a comprehensive public transportation system, including a metro network, buses, and commuter trains, making it easy to explore the city and its surroundings.</p><p>In summary, Madrid is a city that seamlessly blends its rich history and cultural heritage with a contemporary and cosmopolitan vibe. Its world-class museums, vibrant street life, and lively atmosphere make it a city where tradition meets modernity, offering visitors a diverse and unforgettable experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16314,1,NULL,NULL,'Madrid',0,NULL,NULL,NULL,NULL,NULL,'164_1694690758.png','164_1694690758.png','Spain','199',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Madrid Spain\r\nMadrid flamenco\r\nSpanish architecture\r\nMadrid cultural experiences\r\nSpanish culture','\"Madrid, Spain: The Capital of Flamenco and Culture\"','','',NULL,NULL,NULL,1),(165,NULL,NULL,'\"Discover Liechtenstein, Europe\'s microstate gem. Explore its alpine beauty, royal history, and the charm of this tiny European principality.\"',NULL,'<p>Liechtenstein is a tiny, landlocked European principality nestled in the Alps between Switzerland and Austria. Despite its small size, Liechtenstein is a prosperous and picturesque country known for its stunning mountain landscapes, charming villages, and strong economy. Here\'s an overview of what makes Liechtenstein a unique and captivating destination:</p><p>Geography and Location:</p><p>Liechtenstein covers an area of just 160 square kilometers (62 square miles), making it one of the world\'s smallest countries. It is situated in the Upper Rhine Valley, bordered by Switzerland to the west and south and Austria to the east and north. The capital city, Vaduz, is the political, economic, and cultural center of the country.</p><p>Culture and Language:</p><p>Liechtenstein has a rich cultural heritage influenced by its neighbors, Switzerland and Austria. The official language is German, and the country has a strong sense of Swiss-German identity. The culture is deeply rooted in Alpine traditions, and visitors can experience folk music, festivals, and cuisine that reflect this heritage.</p><p>Economy:</p><p>Liechtenstein has a highly developed and prosperous economy, characterized by low taxes, a strong banking sector, and a focus on manufacturing, particularly in precision instruments, electronics, and pharmaceuticals. The country has one of the highest GDP per capita rates in the world. Despite its size, Liechtenstein is a global financial center with a stable and well-regulated financial industry.</p><p>Natural Beauty:</p><p>Liechtenstein\'s stunning Alpine landscapes offer numerous outdoor recreational opportunities. Hiking, mountain biking, and skiing are popular activities, with well-marked trails and ski resorts throughout the country. The Rhine River also flows through Liechtenstein, providing opportunities for fishing and river-based activities.</p><p>Vaduz and Cultural Attractions:</p><p>Vaduz, the capital city, is a charming and compact town with a picturesque castle, the Prince of Liechtenstein\'s official residence. Visitors can explore the streets lined with cafes, shops, and art galleries. The Kunstmuseum Liechtenstein showcases an impressive collection of modern and contemporary art.</p><p>Gutenberg Castle:</p><p>Perched on a hill overlooking Vaduz, Gutenberg Castle offers panoramic views of the surrounding countryside. Although the castle itself is not open to the public, the hike to the castle is a popular activity, and the views from the top are worth the effort.</p><p>Cultural Events:</p><p>Liechtenstein hosts various cultural events and festivals throughout the year, including music concerts, art exhibitions, and traditional Alpine celebrations. The country takes pride in preserving its cultural heritage and showcasing it to both residents and visitors.</p><p>Accessibility:</p><p>Liechtenstein is easily accessible from neighboring Switzerland and Austria. Visitors often arrive in Zurich or Innsbruck and then travel by train, bus, or car to reach the country. The efficient public transportation system makes it convenient to explore Liechtenstein and its surrounding regions.</p><p>In summary, Liechtenstein is a small but captivating destination that offers a blend of natural beauty, cultural heritage, and economic prosperity. Whether you\'re exploring its Alpine landscapes, enjoying the cultural attractions of Vaduz, or experiencing the country\'s strong economy and financial sector, Liechtenstein has much to offer travelers seeking a unique European experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,15461,1,NULL,NULL,'Liechtenstein',0,NULL,NULL,NULL,NULL,NULL,'165_1694689827.png','165_1694689827.png','Liechtenstein','124',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Liechtenstein microstate\r\nLiechtenstein alpine beauty\r\nLiechtenstein royal history\r\nEuropean microstates\r\nLiechtenstein charm','\"Liechtenstein: Europe\'s Microstate Gem\"','','',NULL,NULL,NULL,1),(166,NULL,NULL,'\"Experience the modern marvel of Kuala Lumpur, Malaysia. Visit iconic skyscrapers, diverse street food, and the fusion of cultures in Malaysia\'s capital.\"',NULL,'<p>Kuala Lumpur, often referred to as \"KL,\" is the vibrant and bustling capital city of Malaysia. This dynamic metropolis is a melting pot of cultures, offering a fascinating blend of modernity and tradition. Kuala Lumpur is renowned for its iconic skyscrapers, cultural diversity, delectable cuisine, and a wide range of attractions that make it a top destination in Southeast Asia. Here\'s an overview of what makes Kuala Lumpur a captivating city:</p><p>Geography and Location:</p><p>Kuala Lumpur is situated on the western part of the Malaysian Peninsula, near the country\'s west coast. It serves as both the capital of Malaysia and the largest city in the country. The city\'s strategic location has contributed to its status as a major economic and transportation hub in Southeast Asia.</p><p>Cultural Diversity:</p><p>Kuala Lumpur is a true reflection of Malaysia\'s diverse population, with a mix of ethnic groups including Malays, Chinese, Indians, and indigenous peoples, as well as expatriates from around the world. This cultural mosaic is evident in the city\'s architecture, festivals, and culinary offerings.</p><p>Modern Skyline:</p><p>The city is famous for its modern and impressive skyline, with iconic landmarks such as the Petronas Twin Towers, once the tallest buildings in the world. These twin towers are an architectural marvel and a symbol of Kuala Lumpur\'s progress and prosperity.</p><p>Cultural and Historical Sites:</p><p>While Kuala Lumpur is a modern city, it has preserved and celebrated its cultural heritage. Notable cultural and historical sites include:</p><p>Merdeka Square: This historic square is where Malaysia\'s independence from British colonial rule was declared in 1957. It is surrounded by important colonial-era buildings.</p><p>Sultan Abdul Samad Building: This stunning architectural landmark, located at Merdeka Square, features a distinctive Moorish design and houses government offices.</p><p>Batu Caves: A short drive from the city center, the Batu Caves are a complex of Hindu temples and shrines set within a series of limestone caves and caverns.</p><p>Cuisine:</p><p>Kuala Lumpur is a paradise for food enthusiasts. The city offers a wide range of culinary delights, from street food stalls serving mouthwatering dishes like nasi lemak and satay to upscale restaurants offering international and fusion cuisine. Jalan Alor and Petaling Street are famous for their street food offerings.</p><p>Shopping:</p><p>Kuala Lumpur is a shopper\'s paradise, with a variety of markets, malls, and boutiques. Popular shopping destinations include Bukit Bintang, Pavilion KL, and Central Market, where you can find everything from fashion and electronics to traditional handicrafts.</p><p>Entertainment and Nightlife:</p><p>The city comes alive at night with a vibrant nightlife scene. KL offers a diverse range of entertainment options, from rooftop bars and clubs in Bukit Bintang to cultural performances and theaters.</p><p>Green Spaces:</p><p>Despite its urban sprawl, Kuala Lumpur maintains numerous green spaces and parks, such as KLCC Park and Lake Gardens, offering a refreshing escape from the city\'s hustle and bustle.</p><p>Transportation:</p><p>Kuala Lumpur has a well-developed transportation network, including an extensive metro system (LRT and MRT), buses, and a modern airport, making it easy to explore the city and access nearby attractions.</p><p>In summary, Kuala Lumpur is a city of contrasts, where tradition and modernity coexist harmoniously. Whether you\'re exploring its cultural heritage, savoring its diverse cuisine, or admiring its impressive skyline, Kuala Lumpur offers a captivating and dynamic experience for travelers.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,30568,1,NULL,NULL,'Kuala Lumpur',0,NULL,NULL,NULL,NULL,NULL,'166_1694688424.png','166_1694688424.png','Malaysia','132',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kuala Lumpur Malaysia\r\nKuala Lumpur skyscrapers\r\nMalaysian street food\r\nCultural fusion in Kuala Lumpur\r\nKuala Lumpur attractions','\"Kuala Lumpur, Malaysia: The Modern Marvel of Southeast Asia\"','','',NULL,NULL,NULL,1),(167,NULL,NULL,'\"Discover the alpine elegance of Innsbruck in Tyrol, Austria. Explore historic landmarks, ski resorts, and the Austrian charm of the Alps.\"',NULL,'<p>Innsbruck, the capital of Austria\'s Tyrol region, is a picturesque city that seamlessly blends the grandeur of the Alps with the charm of a historic European town. Situated in a valley surrounded by snow-capped peaks, Innsbruck is a haven for outdoor enthusiasts, history buffs, and culture seekers. Here\'s a glimpse of what makes Innsbruck a captivating destination:</p><p>Key Highlights:</p><p>Alpine Beauty: Innsbruck is renowned for its stunning Alpine landscapes. Surrounded by mountains, it offers unparalleled opportunities for hiking, skiing, and mountaineering. The Nordkette mountain range, accessible via the Hungerburgbahn funicular, offers breathtaking panoramic views.</p><p>Historic Old Town: Innsbruck\'s Altstadt (Old Town) is a charming area filled with well-preserved medieval and Baroque buildings. Explore the Golden Roof (Goldenes Dachl), a symbol of the city, and the Imperial Palace (Hofburg), a testament to its imperial history.</p><p>Ambras Castle: This Renaissance castle houses a fascinating museum with art, historical artifacts, and curiosities from the collection of Archduke Ferdinand II. The castle gardens are a delightful place for a stroll.</p><p>Swarovski Crystal Worlds: Just outside Innsbruck, the Swarovski Crystal Worlds is a mesmerizing art installation and museum dedicated to the world of crystal. It features stunning crystal sculptures and art pieces.</p><p>Olympic Legacy: Innsbruck hosted the Winter Olympics in 1964 and 1976. You can visit the Bergisel Ski Jump, designed by renowned architect Zaha Hadid, which offers panoramic views and a museum dedicated to the Olympics.</p><p>Cultural Experiences: Innsbruck offers a rich cultural scene with theaters, galleries, and music venues. Attend a classical concert or explore the city\'s vibrant street art scene.</p><p>Winter Sports: Innsbruck is a gateway to some of Europe\'s best skiing destinations. Hit the slopes at nearby ski resorts like Igls, Seefeld, and Axamer Lizum during the winter months.</p><p>Alpine Cuisine: Savor traditional Tyrolean dishes like schnitzel, dumplings, and hearty stews at cozy mountain huts and local restaurants. Don\'t forget to try the famous apple strudel.</p><p>Bergisel Ski Jump: Visit this iconic ski jump, which not only offers stunning views but also houses the Bergisel Ski Jump Stadium and a museum dedicated to ski jumping.</p><p>Christmas Markets: In the winter season, Innsbruck\'s Christmas markets are a magical experience, with the Old Town adorned in festive lights and decorations. Sample seasonal treats and shop for unique gifts.</p><p>Nordpark Cable Railway: Take a ride on the Nordpark Cable Railway for easy access to hiking trails and breathtaking Alpine vistas.</p><p>Nordkettenbahnen: Ascend to the Nordkette peaks via this cable car system, which offers unparalleled views of the city and the surrounding mountains.</p><p>Innsbruck\'s unique blend of natural beauty, historical significance, and contemporary culture makes it a destination that caters to a wide range of interests. Whether you\'re skiing in the Alps, exploring medieval streets, or immersing yourself in Austrian culture, Innsbruck promises an unforgettable experience that showcases the best of both urban and alpine worlds.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12747,1,NULL,NULL,'Innsbruck',0,NULL,NULL,NULL,NULL,NULL,'167_1694668943.png','167_1694668943.png','Austria','14',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Innsbruck Austria\r\nTyrolean alpine elegance\r\nInnsbruck ski resorts\r\nAustrian Alps beauty\r\nTyrolean culture','\"Innsbruck, Austria: Alpine Elegance in the Heart of Tyrol\"','','',NULL,NULL,NULL,1),(168,NULL,NULL,'\"Discover the alpine luxury and breathtaking landscapes of Gstaad, Switzerland. Explore ski resorts, gourmet dining, and Swiss hospitality.\"',NULL,'<p>Gstaad, nestled in the Bernese Oberland region of Switzerland, is a picturesque alpine village known for its pristine natural beauty, luxurious charm, and a wide array of outdoor activities throughout the year. This Swiss gem offers travelers an exquisite blend of mountain elegance and adventure.</p><p>Key Highlights:</p><p>Skiing and Winter Sports: Gstaad is a winter wonderland, attracting skiers and snowboarders from around the world. The region boasts numerous ski resorts, including Gstaad Mountain Rides, offering a range of slopes for all skill levels.</p><p>Scenic Hiking: During the warmer months, Gstaad\'s lush alpine meadows and well-marked hiking trails beckon outdoor enthusiasts. Explore the stunning landscapes, including the picturesque Lauenen Lake and the glacier-clad Wildhorn.</p><p>Luxury Living: Gstaad is synonymous with luxury. The village exudes elegance with its high-end boutiques, gourmet restaurants, and upscale hotels. It\'s a favorite destination for jet-setters and royalty seeking a discreet getaway.</p><p>Golfing: Tee off at the Gstaad-Saanenland Golf Club, where you can enjoy a round of golf surrounded by the breathtaking Swiss Alps.</p><p>Local Festivals: Experience the vibrant culture of Gstaad through its local festivals, such as the Menuhin Festival, which celebrates classical music, and the Gstaad Country Night, featuring Swiss folk music.</p><p>Thermal Baths: After a day of outdoor activities, relax in Gstaad\'s thermal baths, which offer soothing hot water pools and spa treatments with a view of the mountains.</p><p>Cheese Culture: Discover Switzerland\'s cheese culture by visiting local dairies and trying authentic Swiss cheese, including Gstaad\'s own specialty, \"L\'Etivaz.\"</p><p>Traditional Chalets: Admire the charming, traditional chalet-style architecture that defines Gstaad\'s aesthetic. The village\'s streets are lined with wooden chalets adorned with colorful flowers.</p><p>Astronomical Observatory: Visit the Gstaad Saanenland Observatory for a fascinating journey through the cosmos. Stargazing events and educational programs are often available.</p><p>Mountain Biking: Explore the alpine terrain on two wheels by embarking on mountain biking adventures with trails catering to different skill levels.</p><p>Horse Riding: Gstaad is renowned for its equestrian culture. Take horseback rides through the stunning landscapes or attend prestigious equestrian events like the Hublot Polo Gold Cup.</p><p>Year-Round Destination: Gstaad offers activities for every season, making it a delightful destination whether you\'re seeking winter sports, summer hikes, or autumnal beauty.</p><p>Breathtaking Views: Revel in panoramic views of the surrounding mountains, including the iconic Matterhorn and Mont Blanc, from vantage points like Glacier 3000.</p><p>Gstaad is a haven for those who appreciate both the beauty of the Swiss Alps and the finer things in life. Whether you\'re a nature enthusiast, a sports aficionado, or simply seeking a tranquil escape in a luxurious alpine setting, Gstaad provides an unforgettable experience year-round. Come and indulge in the sophisticated yet down-to-earth ambiance of this charming Swiss village.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11078,1,NULL,NULL,'Gstaad',0,NULL,NULL,NULL,NULL,NULL,'168_1694606247.png','168_1694606247.png','Switzerland','210',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gstaad Switzerland\r\nSwiss Alps luxury\r\nGstaad ski resorts\r\nSwiss gourmet dining\r\nSwiss hospitality','\"Gstaad, Switzerland: Alpine Luxury and Scenic Splendor\"','','',NULL,NULL,NULL,1),(169,NULL,NULL,'\"Explore Bursa\'s lush landscapes, Ottoman heritage, and vibrant markets. Discover historic mosques, the Grand Bazaar, and natural beauty.\"',NULL,'bursa,a city in northwestern turkey,is a place where history ,culture,and natural beauty come together harmaniuously.its story streches back centuries,with a rich tapestry of infuences that have shaped its character.Nestled at the foot of mount uludag,bursa boasts a unique charm that captivates visitors from all walks of life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,4527,0,NULL,NULL,'Bursa',0,NULL,NULL,NULL,NULL,NULL,'169_1694588188.png','169_1694588188.png','Turkey','222',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bursa Turkey\r\nBursa Ottoman heritage\r\nBursa Grand Bazaar\r\nAnatolian greenery\r\nTurkish markets','\"Bursa, Turkey: The Green Gem of Anatolia\"','','',NULL,NULL,NULL,1),(170,NULL,NULL,'\"Immerse yourself in the artistic and architectural wonders of Barcelona. Explore Gaudi\'s masterpieces, sandy beaches, and Catalan cuisine.\"',NULL,'<p>Barcelona, the capital of Catalonia in Spain, is a vibrant and culturally rich city known for its stunning architecture, art scene, beautiful beaches, and lively atmosphere. Situated on the northeastern coast of the Iberian Peninsula, Barcelona offers a diverse range of experiences for travelers. Here\'s an overview of what makes Barcelona a captivating destination:</p><p>Key Highlights:</p><p>Sagrada Família: Perhaps Barcelona\'s most iconic landmark, the Sagrada Família is a masterpiece designed by renowned architect Antoni Gaudí. This basilica is a work in progress, featuring intricate facades, soaring spires, and stunning interiors that blend Gothic and Art Nouveau styles.</p><p>Park Güell: Another Gaudí creation, Park Güell is a whimsical park featuring colorful mosaics, playful sculptures, and architectural elements inspired by nature. It offers panoramic views of the city and the Mediterranean Sea.</p><p>La Rambla: This famous tree-lined street in the heart of Barcelona is a hub of activity, with street performers, cafes, shops, and markets. It\'s a great place for a leisurely stroll and people-watching.</p><p>Gothic Quarter (Barri Gòtic): Explore the historic Gothic Quarter with its narrow winding streets, medieval buildings, and charming squares. Highlights include the Barcelona Cathedral and the Plaça Reial.</p><p>Casa Batlló and Casa Milà: These two modernist buildings, also designed by Gaudí, are architectural marvels. Casa Batlló features a dragon-inspired roof, while Casa Milà is known for its undulating stone facade.</p><p>Barcelona Beaches: Barcelona boasts several beautiful beaches along its coastline, including Barceloneta Beach, Bogatell Beach, and Nova Icaria Beach. They offer a perfect escape for sunbathing and swimming.</p><p>Picasso Museum: Housed in several medieval mansions, the Picasso Museum showcases the works of the famous artist Pablo Picasso, including his early sketches and paintings.</p><p>Montjuïc Hill: Montjuïc is a hill overlooking the city, home to attractions like Montjuïc Castle, the Magic Fountain, and several museums. The hill offers stunning views of Barcelona and the harbor.</p><p>Tibidabo Amusement Park: Located on Mount Tibidabo, this amusement park offers rides, attractions, and panoramic vistas of the city. It\'s a great family-friendly destination.</p><p>Tapas and Catalan Cuisine: Barcelona is a food lover\'s paradise, known for its tapas bars and Catalan cuisine. Be sure to try local dishes like paella, patatas bravas, and seafood at the city\'s many restaurants and markets.</p><p>La Boqueria Market: This bustling food market near La Rambla is a sensory delight, featuring a wide range of fresh produce, meats, seafood, and ready-to-eat dishes.</p><p>Flamenco Shows: Experience the passion of traditional Spanish flamenco music and dance by attending a live performance at one of Barcelona\'s flamenco venues.</p><p>FC Barcelona: If you\'re a sports enthusiast, a visit to Camp Nou, the stadium of FC Barcelona, is a must. You can also explore the FC Barcelona Museum and relive the club\'s history.</p><p>Art and Culture: Barcelona is a hub of art and culture, with numerous museums, galleries, and theaters. The Joan Miró Foundation, MACBA (Museum of Contemporary Art), and the Palau de la Música Catalana are worth a visit.</p><p>Casa Vicens: Another Gaudí gem, Casa Vicens is a UNESCO World Heritage Site, known for its colorful tiles and intricate design.</p><p>Barcelona is a city that effortlessly combines its rich history with modernity, offering a vibrant and dynamic cultural experience. Whether you\'re exploring its architectural wonders, enjoying its culinary delights, or simply soaking up the Mediterranean sun on its beautiful beaches, Barcelona is a destination that captivates and inspires travelers from around the world.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2352,1,NULL,NULL,'Barcelona',0,NULL,NULL,NULL,NULL,NULL,'170_1694515675.png','170_1694515675.png','Spain','199',NULL,'2023-07-19 14:07:13','2023-07-19 14:07:13',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Barcelona attractions\r\nGaudi architecture\r\nBarcelona beaches\r\nCatalan cuisine\r\nSpanish culture','\"Barcelona, Spain: A Mediterranean Gem of Art and Culture\"','','',NULL,NULL,NULL,1),(172,NULL,NULL,'\"Discover the hill country gem of Nuwara Eliya in Sri Lanka. Explore tea plantations, lush landscapes, and the cool embrace of the central highlands.\"',NULL,'<p>Nuwara Eliya, often referred to as \"Little England,\" is a charming hill station and town located in the central highlands of Sri Lanka. Nestled at an elevation of approximately 1,868 meters (6,128 feet) above sea level, this idyllic destination offers a unique and refreshing escape from the tropical heat of the lowlands. Here\'s a closer look at what makes Nuwara Eliya a captivating place to visit:</p><p>1. Cool Climate:</p><p>Nuwara Eliya\'s high-altitude location grants it a significantly cooler and more temperate climate compared to the rest of Sri Lanka. It\'s often considered the coolest place on the island, making it a perfect retreat during the hot summer months.</p><p>2. Lush Tea Plantations:</p><p>The surrounding hills are covered in a picturesque carpet of lush, emerald-green tea plantations. The town is renowned for producing some of the finest Ceylon tea, and visitors can tour tea factories to learn about the tea-making process.</p><p>3. Colonial Architecture:</p><p>The town\'s colonial history is evident in its architecture, with charming colonial-era buildings, well-maintained gardens, and tree-lined streets reminiscent of an English countryside.</p><p>4. Victoria Park:</p><p>Victoria Park, located in the heart of Nuwara Eliya, is a beautiful and well-maintained public park. It\'s an ideal spot for leisurely strolls, picnics, and enjoying the cool, fresh air.</p><p>5. Horton Plains National Park:</p><p>Just a short drive from Nuwara Eliya, Horton Plains National Park is a UNESCO World Heritage Site known for its dramatic landscapes, including \"World\'s End,\" a sheer cliff with breathtaking views, and Baker\'s Falls.</p><p>6. Gregory Lake:</p><p>Gregory Lake is a man-made reservoir offering boating and leisure activities. It\'s a popular spot for both locals and tourists to enjoy a relaxing day by the water.</p><p>7. Hiking and Trekking:</p><p>The surrounding hills and mountains provide excellent opportunities for hiking and trekking. Popular trails include the trek to the famous Adam\'s Peak and hikes in the picturesque Knuckles Mountain Range.</p><p>8. Flower Gardens:</p><p>Visit Hakgala Botanic Gardens and the colorful Hakgala Rose Garden to witness a stunning variety of flora, including orchids and roses.</p><p>9. Cultural Diversity:</p><p>Nuwara Eliya is a melting pot of cultures, with Sinhalese, Tamil, and Muslim communities living together harmoniously. This diversity is reflected in the town\'s vibrant festivals and cuisine.</p><p>10. Horse Racing:</p><p>&nbsp;The Nuwara Eliya Race Course, established during British colonial rule, still hosts horse racing events during the racing season, attracting both locals and tourists.</p><p>11. Golfing:</p><p>&nbsp;The Nuwara Eliya Golf Club, established in 1889, offers a picturesque course surrounded by lush greenery.</p><p>12. Festivals:</p><p>&nbsp;The town hosts the Nuwara Eliya Festival, a colorful celebration featuring traditional dance performances, parades, and pageants.</p><p>Nuwara Eliya\'s unique blend of colonial charm, cool climate, and natural beauty makes it a captivating destination for travelers seeking respite from the tropical heat, outdoor adventures, and a taste of Sri Lanka\'s colonial history. Whether you\'re sipping tea while gazing at the rolling hills, exploring picturesque gardens, or embarking on a scenic hike, Nuwara Eliya offers a delightful and refreshing experience in the heart of Sri Lanka\'s hill country.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19797,1,NULL,NULL,'Nuwara Eliya',0,NULL,NULL,NULL,NULL,NULL,'172_1694775281.png','172_1694775281.png','Sri Lanka','200',NULL,'2023-08-01 14:09:04','2023-08-01 14:09:04',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Nuwara Eliya Sri Lanka\r\nSri Lankan hill country\r\nNuwara Eliya tea plantations\r\nCentral highlands of Sri Lanka\r\nNuwara Eliya attractions','\"Nuwara Eliya, Sri Lanka: The Hill Country Gem\"','','',NULL,NULL,NULL,1),(173,NULL,NULL,'\"Explore the coastal jewel of Negombo, Sri Lanka, nestled by Negombo Lagoon. Discover beaches, fishing culture, and Sri Lankan hospitality.\"',NULL,'<p>Negombo is a vibrant coastal city located on the western coast of Sri Lanka, just a short drive from the country\'s largest international airport in Colombo. Known for its stunning beaches, rich history, and thriving fishing industry, Negombo is a popular destination for tourists seeking a relaxed beachside experience. Here\'s an overview of what makes Negombo a captivating place to visit:</p><p>1. Beaches:</p><p>Negombo\'s coastline stretches for miles, offering pristine sandy beaches and the warm waters of the Indian Ocean. The beaches are perfect for sunbathing, swimming, and water sports.</p><p>2. Dutch Colonial Heritage:</p><p>Negombo has a rich colonial history, with remnants of Dutch and Portuguese influence evident in its architecture. The Dutch Fort, now a prison, and the Dutch Canal are notable historical sites.</p><p>3. Fishing Industry:</p><p>The city is often referred to as \"Little Rome\" due to its strong Roman Catholic influence. The city\'s fishing industry is a vital part of its economy, and visitors can observe colorful fishing boats and bustling fish markets.</p><p>4. Fish Markets:</p><p>The Lellama Fish Market is a lively place to witness the daily catch being auctioned. You can also enjoy delicious, fresh seafood at nearby restaurants.</p><p>5. Dutch Canal:</p><p>Take a boat tour along the Dutch Canal, a serene waterway that was once used for trade during the Dutch colonial era. The ride offers picturesque views of life along the canal.</p><p>6. Religious Landmarks:</p><p>Negombo is home to several churches, including St. Mary\'s Church, known for its stunning architecture and vibrant religious festivals.</p><p>7. Muthurajawela Marsh:</p><p>Just a short drive from Negombo, this vast wetland ecosystem is perfect for birdwatching and nature enthusiasts. Boat tours offer a chance to spot various bird species and aquatic life.</p><p>8. Fresh Seafood Cuisine:</p><p>Negombo is celebrated for its seafood cuisine. Indulge in a variety of dishes, from lobster and crab to fresh fish curry, at the numerous seafood restaurants along the beach.</p><p>9. Water Sports:</p><p>Adventurous travelers can enjoy water sports such as windsurfing, kitesurfing, and jet skiing, with several water sports centers along the beach.</p><p>10. Vibrant Markets:</p><p>- Beyond the fish markets, Negombo hosts vibrant local markets where you can shop for souvenirs, spices, and fresh produce.</p><p>11. Convenient Location:</p><p>- Negombo\'s proximity to Bandaranaike International Airport makes it an ideal first or last stop for travelers exploring Sri Lanka. It\'s also well-connected to other major cities like Colombo and Kandy.</p><p>Negombo\'s laid-back coastal charm, historical sites, and culinary delights make it a versatile destination for travelers looking to unwind, explore cultural heritage, or start their Sri Lankan adventures. Whether you\'re strolling along the beach, exploring the city\'s colonial past, or savoring fresh seafood dishes, Negombo offers a taste of Sri Lanka\'s diverse and captivating culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19147,1,NULL,NULL,'Negombo',0,NULL,NULL,NULL,NULL,NULL,'173_1694773035.png','173_1694773035.png','Sri Lanka','200',NULL,'2023-08-01 14:09:04','2023-08-01 14:09:04',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Negombo Sri Lanka\r\nNegombo Lagoon coast\r\nSri Lankan beaches\r\nNegombo fishing culture\r\nSri Lankan hospitality','\"Negombo, Sri Lanka: The Coastal Jewel of Negombo Lagoon\"','','',NULL,NULL,NULL,1),(174,NULL,NULL,'\"Experience the cultural richness of Kandy, Sri Lanka. Visit the Temple of the Tooth, explore lush gardens, and delve into Sri Lankan traditions.\"',NULL,'<p>Kandy, located in the lush central hills of Sri Lanka, is a city steeped in history, culture, and natural beauty. Nestled amidst misty mountains, Kandy is famous for its iconic Temple of the Tooth, a UNESCO World Heritage Site, and serves as a spiritual and cultural center for Buddhists. With its picturesque landscapes and cultural treasures, Kandy offers a unique and immersive experience for travelers.</p><p>Key Highlights:</p><p>Temple of the Tooth (Sri Dalada Maligawa): This sacred temple houses the relic of the tooth of the Buddha and is one of the most revered pilgrimage sites for Buddhists worldwide. Witness the daily rituals and the grand Esala Perahera festival, a colorful procession of elephants, dancers, and musicians.</p><p>Kandy Lake: Stroll along the scenic Kandy Lake (Bogambara Lake) and enjoy serene views of the city and its surrounding hills. You can also visit the picturesque island at the center of the lake.</p><p>Peradeniya Botanical Gardens: Explore the magnificent Royal Botanical Gardens in Peradeniya, just a short drive from Kandy. It boasts a vast collection of exotic plants, trees, and orchids in a stunning setting.</p><p>Cultural Dance Shows: Experience the rich cultural heritage of Sri Lanka through traditional Kandyan dance performances. These shows often include mesmerizing fire dances and acrobatics.</p><p>Udawattakele Forest Reserve: Embark on a nature walk or hike in this serene forest reserve, located just outside Kandy. You\'ll encounter diverse flora and fauna, including a variety of bird species.</p><p>Bahirawakanda Vihara Buddha Statue: Climb up to this vantage point to see the towering Bahirawakanda Buddha Statue, which offers panoramic views of Kandy.</p><p>Tea Plantations: Take a day trip to explore the nearby tea plantations in the scenic hill country. Learn about the tea-making process and enjoy a fresh cup of Ceylon tea.</p><p>Kandy Market: Immerse yourself in the bustling atmosphere of Kandy\'s market. You can shop for local handicrafts, spices, and textiles.</p><p>Cultural and Religious Festivals: If your visit coincides with a festival like the Esala Perahera, you\'ll have the opportunity to witness vibrant processions, traditional costumes, and religious rituals.</p><p>Local Cuisine: Savor Sri Lankan dishes such as rice and curry, string hoppers, hoppers, and coconut sambol. Kandy offers numerous dining options to explore the island\'s flavors.</p><p>Elephant Orphanage: Visit the nearby Pinnawala Elephant Orphanage to observe and learn about the care and conservation efforts for elephants.</p><p>Gadaladeniya Vihara and Lankatilaka Temple: Explore these ancient temples showcasing unique Kandyan architecture and intricate stone carvings.</p><p>Kandy\'s unique blend of spirituality, culture, and natural beauty makes it a captivating destination in Sri Lanka. Whether you\'re exploring historic temples, enjoying cultural performances, or simply taking in the scenic surroundings, Kandy invites you to immerse yourself in the soul of Sri Lanka\'s hill country.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13493,1,NULL,NULL,'Kandy',0,NULL,NULL,NULL,NULL,NULL,'174_1694672622.png','174_1694672622.png','Sri Lanka','200',NULL,'2023-08-01 14:09:04','2023-08-01 14:09:04',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kandy Sri Lanka\r\nTemple of the Tooth\r\nSri Lankan culture\r\nKandy gardens\r\nSri Lankan traditions','\"Kandy, Sri Lanka: The Cultural Heart of the Island\"','','',NULL,NULL,NULL,1),(175,NULL,NULL,'\"Explore Colombo\'s modernity and historic charm. Discover colonial-era buildings, vibrant markets, and a fusion of cultures in Sri Lanka\'s capital.\"',NULL,'<p>Colombo, the vibrant and bustling capital of Sri Lanka, is a city that effortlessly blends rich history, diverse culture, and modern development. Located on the western coast of the island nation, Colombo serves as the primary gateway for international travelers exploring the wonders of Sri Lanka. Here\'s an overview of what makes Colombo a captivating destination:</p><p>1. Historical Heritage: Colombo\'s history is a tapestry of influences, with evidence of Dutch, Portuguese, and British colonial rule. Explore the city\'s historical landmarks, including the Colombo Fort, which once served as a fortification during colonial times. The Dutch Hospital Shopping Precinct and Independence Memorial Hall are also significant historical sites.</p><p>2. Diverse Culture: Colombo is a melting pot of cultures and religions, with Buddhist temples, Hindu kovils, Christian churches, and Islamic mosques coexisting harmoniously. This diversity is reflected in the city\'s festivals, such as Vesak and Diwali, which are celebrated with enthusiasm.</p><p>3. Galle Face Green: This iconic promenade along the Indian Ocean offers stunning sunset views, making it a favorite spot for leisurely evening strolls and picnics. You can also savor street food from vendors lining the area.</p><p>4. National Museum: Delve into Sri Lanka\'s rich history and cultural heritage at the National Museum of Colombo. It houses a vast collection of artifacts, including ancient sculptures, royal regalia, and historical exhibits.</p><p>5. Viharamahadevi Park: Located in the heart of the city, this urban park is perfect for relaxing walks, family outings, and enjoying the lush greenery. The park features a large Buddha statue and a peaceful lake.</p><p>6. Markets and Shopping: Colombo offers diverse shopping experiences, from bustling street markets like Pettah to upscale shopping malls like Colombo City Centre and One Galle Face. Don\'t forget to explore the Good Market for eco-friendly products and local crafts.</p><p>7. Street Food: Savoring Sri Lankan street food is a must in Colombo. Try local delicacies like kottu roti, hoppers, and delicious seafood dishes. Galle Road is famous for its food stalls and casual dining options.</p><p>8. Beira Lake: This picturesque lake in the heart of the city is a tranquil oasis where you can enjoy boat rides, visit the Seema Malaka Temple, and spot various bird species.</p><p>9. Religious Sites: Colombo is home to several significant religious sites, including the Gangaramaya Temple, which blends various architectural styles, and the picturesque Kelaniya Raja Maha Vihara, one of Sri Lanka\'s most sacred Buddhist temples.</p><p>10. Nightlife: Colombo\'s nightlife scene is vibrant, with numerous bars, clubs, and casinos. The city comes alive after dark, offering entertainment options for all tastes.</p><p>11. Beaches: While Colombo\'s beaches may not be as famous as those in other parts of Sri Lanka, places like Mount Lavinia Beach offer a relaxing escape from the city\'s hustle and bustle.</p><p>12. Architecture: Explore Colombo\'s colonial-era architecture, including historic buildings like the Old Parliament, Old Town Hall, and colonial mansions that tell the story of its past.</p><p>13. Cultural Performances: Enjoy traditional Sri Lankan dance and music performances at venues like the Nelum Pokuna Mahinda Rajapaksa Theatre.</p><p>14. Easy Access: Colombo is well-connected by air, sea, and road, making it a convenient starting point for exploring Sri Lanka\'s other attractions.</p><p>Colombo, Sri Lanka, is a city that embodies the country\'s rich heritage, vibrant culture, and modern aspirations. Whether you\'re interested in history, food, shopping, or simply enjoying the cosmopolitan atmosphere, Colombo offers a captivating introduction to the wonders of Sri Lanka.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,6689,0,NULL,NULL,'Colombo',0,NULL,NULL,NULL,NULL,NULL,'175_1694592363.png','175_1694592363.png','Sri Lanka','200',NULL,'2023-08-01 14:09:04','2023-08-01 14:09:04',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Colombo Sri Lanka\r\nColombo history\r\nSri Lankan culture\r\nColombo markets\r\nSri Lankan capital','\"Colombo, Sri Lanka: Modern Capital with a Rich Heritage\"','','',NULL,NULL,NULL,1),(176,NULL,NULL,'\"Relax on the golden beaches, explore lush gardens, and enjoy water sports in Bentota, Sri Lanka. Discover a tranquil coastal haven.\"',NULL,'<p>Bentota, located on the southwestern coast of Sri Lanka, is a picturesque and serene coastal town that offers travelers a perfect blend of natural beauty, water-based activities, and cultural experiences. With its pristine beaches, lush landscapes, and a wide range of attractions, Bentota has earned a reputation as one of Sri Lanka\'s top beach destinations.</p><p>Key Highlights:</p><p>Bentota Beach: The town\'s main attraction is undoubtedly its beautiful beach. Stretching for miles along the coastline, Bentota Beach boasts soft golden sands and clear blue waters, making it an ideal spot for swimming, sunbathing, and water sports.</p><p>Water Sports: Bentota is a water sports enthusiast\'s paradise. Visitors can enjoy activities such as jet skiing, windsurfing, parasailing, banana boat rides, and even snorkeling in the coral reefs just offshore.</p><p>Madu River Estuary: A short boat ride away from Bentota lies the Madu River Estuary, a tranquil and biodiverse area teeming with mangroves and birdlife. Explore the river, visit small islands, and observe traditional fishing practices.</p><p>Turtle Hatchery: Bentota is home to several turtle hatcheries dedicated to the conservation of these endangered creatures. Visitors can learn about the various turtle species and witness the release of baby turtles into the ocean.</p><p>Brief Garden: Located in the nearby village of Kalawila, Brief Garden is a beautiful garden created by the renowned Sri Lankan artist Bevis Bawa. It\'s a peaceful oasis filled with lush greenery, sculptures, and art installations.</p><p>Lunuganga Estate: Another creation of Bevis Bawa, the Lunuganga Estate is a stunning garden that was once his country retreat. It\'s now open to the public and showcases the blending of art and nature.</p><p>Water Safari: Embark on a river safari along the Bentota River to spot diverse wildlife, including crocodiles, water monitors, and various bird species.</p><p>Richmond Castle: This colonial-era mansion is an architectural gem and provides insights into Sri Lanka\'s colonial history. It\'s a fascinating place to explore and learn about the region\'s past.</p><p>Spa and Wellness: Many of Bentota\'s luxury resorts offer world-class spa and wellness facilities, allowing visitors to relax and rejuvenate in a tranquil setting.</p><p>Local Cuisine: Sample Sri Lankan cuisine at the town\'s restaurants and beachside cafes. Don\'t miss out on trying fresh seafood, spicy curries, and tropical fruits.</p><p>Cultural Experiences: Explore nearby villages and temples to experience Sri Lankan culture firsthand. You can participate in traditional cooking classes or witness cultural performances.</p><p>Adventure Activities: Beyond water sports, Bentota also offers activities like cycling, hiking, and exploring the surrounding rainforests.</p><p>Bentota\'s tropical climate makes it a year-round destination, but the best time to visit is during the dry season from November to April when the weather is warm and sunny.</p><p>Whether you\'re seeking adventure, relaxation, or a mix of both, Bentota has something to offer every traveler. Its natural beauty, cultural richness, and variety of activities make it a coastal paradise in Sri Lanka that is sure to leave a lasting impression.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2949,0,1,NULL,'Bentota',0,NULL,NULL,NULL,NULL,NULL,'176_1694585560.png','176_1694585560.png','Sri Lanka','200',NULL,'2023-08-01 14:09:04','2023-08-01 14:09:04',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Bentota Sri Lanka\r\nSri Lankan beaches\r\nBentota water sports\r\nCoastal retreats\r\nSri Lanka relaxation','\"Bentota, Sri Lanka: Paradise by the Indian Ocean\"','','',NULL,NULL,NULL,1),(177,NULL,NULL,'\"Discover Kusadasi, Turkey, the gateway to the ancient city of Ephesus. Explore historic ruins, pristine beaches, and Turkish hospitality.\"',NULL,'<p>Kusadasi, a picturesque coastal town located on the Aegean Sea in Turkey, is a captivating destination that offers a blend of natural beauty, rich history, and vibrant culture. With its stunning beaches, historic sites, and vibrant nightlife, Kusadasi has become a popular tourist hotspot.</p><p>One of the main attractions in Kusadasi is its beautiful beaches. The town boasts several pristine sandy shores, including Ladies Beach, Long Beach, and Kustur Beach. Visitors can bask in the Mediterranean sun, swim in the crystal-clear waters, or enjoy various water sports such as parasailing and jet skiing. The breathtaking sunsets over the Aegean Sea are a sight to behold.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14622,1,NULL,NULL,'Kusadasi',0,NULL,NULL,NULL,NULL,NULL,'177_1694688770.png','177_1694688770.png','Turkey','222',NULL,'2023-08-04 12:24:30','2023-08-04 12:24:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kusadasi Turkey\r\nEphesus gateway\r\nKusadasi historic ruins\r\nTurkish beaches\r\nTurkish hospitality','\"Kusadasi, Turkey: Gateway to Ancient Ephesus\"','','',NULL,NULL,NULL,1),(179,NULL,NULL,'\"Discover the iconic harbor city of Sydney, Australia. Explore Sydney Opera House, Bondi Beach, and the Australian coastal lifestyle.\"',NULL,'<p>Sydney, the largest and most populous city in Australia, is a vibrant metropolis known for its stunning harbor, iconic landmarks, diverse culture, and year-round outdoor activities. Situated on the east coast of the continent, Sydney offers a blend of natural beauty and urban sophistication that captivates travelers from around the world.</p><p>Sydney Harbour:</p><p>The city\'s crown jewel is Sydney Harbour, a picturesque harbor framed by the iconic Sydney Opera House and Sydney Harbour Bridge. Whether you\'re taking a leisurely stroll along Circular Quay, cruising on the harbor, or dining at one of the waterfront restaurants, the view of the harbor is nothing short of breathtaking.</p><p>Iconic Landmarks:</p><p>Sydney Opera House: This architectural masterpiece is one of the most recognized buildings globally, celebrated for its unique sail-like design and world-class performing arts.</p><p>Sydney Harbour Bridge: Known as the \"Coathanger,\" this bridge is both an engineering marvel and a symbol of the city. Visitors can climb the bridge for panoramic views.</p><p>Bondi Beach: This world-famous beach is a haven for surfers and sunseekers, offering golden sands and a lively beach culture.</p><p>The Rocks: Sydney\'s historic district is home to charming cobbled streets, boutique shops, and vibrant markets.</p><p>Taronga Zoo: Perched on the harbor\'s edge, this renowned zoo offers the opportunity to see Australian wildlife up close.</p><p>Cultural Diversity:</p><p>Sydney is a melting pot of cultures, and this diversity is reflected in its neighborhoods and cuisine. Explore the vibrant neighborhoods of Chinatown, Little Italy, and Cabramatta to savor a world of flavors.</p><p>Outdoor Adventures:</p><p>With its mild climate, Sydney encourages outdoor exploration. Hike in the Blue Mountains, sail on the harbor, snorkel at Shelly Beach, or take coastal walks along the Bondi to Coogee Trail.</p><p>Sydney\'s Festive Spirit:</p><p>The city hosts numerous festivals and events throughout the year, from the dazzling Sydney New Year\'s Eve fireworks display to the Sydney Festival, Vivid Sydney, and the Sydney Gay and Lesbian Mardi Gras Parade.</p><p>Art and Culture:</p><p>Sydney\'s cultural scene is thriving, with world-class museums and galleries like the Art Gallery of New South Wales, the Australian Museum, and the Museum of Contemporary Art.</p><p>Green Spaces:</p><p>Escape the urban hustle and bustle in Sydney\'s lush green spaces. The Royal Botanic Garden, Centennial Park, and the coastal cliffs of Watsons Bay provide tranquil respites.</p><p>Efficient Public Transport:</p><p>Navigating Sydney is made easy with an efficient public transport system, including buses, trains, trams, and ferries.</p><p>A Place for Sports Enthusiasts:</p><p>Sydney is home to major sporting events and venues, including the Sydney Cricket Ground, ANZ Stadium, and the Sydney Olympic Park.</p><p>Sustainability Initiatives:</p><p>Sydney is committed to sustainability and environmental conservation, with initiatives like the Greening Sydney Plan and the Sydney Renewable Power Company.</p><p>Sydney\'s allure lies in its ability to seamlessly combine natural beauty, cultural diversity, and a vibrant urban lifestyle. It\'s a city where you can surf at sunrise, explore world-class museums in the afternoon, dine at a harborside restaurant in the evening, and then soak in the dazzling city lights—all in a single day. Sydney welcomes visitors with open arms, inviting them to discover the magic of this harbor city that embodies the best of Australia\'s cultural and natural wonders.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,26541,1,1,NULL,'Sydney',0,NULL,NULL,NULL,NULL,NULL,'179_1695195318.png','179_1695195318.png','Australia','13',NULL,'2023-08-05 13:06:57','2023-08-05 13:06:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'Sydney Australia\r\n Sydney Opera House\r\n Bondi Beach Sydney\r\n Australian coastal lifestyle\r\n Sydney attractions','\"Sydney, Australia: The Iconic Harbor City\"','','',NULL,NULL,NULL,1),(180,NULL,NULL,'\"Explore the cultural capital of Australia, Melbourne. Discover art, coffee culture, and the dynamic blend of Aussie charm and cosmopolitan flair.\"',NULL,'<p>Melbourne, often referred to as Australia\'s cultural capital, is a vibrant and cosmopolitan city located in the southeastern part of the country. With its rich history, diverse population, stunning architecture, and a wide range of cultural attractions, Melbourne is a city that has something to offer everyone.</p><p>Here are some key aspects of Melbourne, Australia:</p><p>Cultural Diversity: Melbourne is known for its cultural diversity, with a mix of people from all over the world. This multicultural makeup has led to a rich tapestry of traditions, cuisines, and languages that contribute to the city\'s unique character.</p><p>Arts and Culture: Melbourne is a hub for the arts and culture in Australia. It\'s home to numerous art galleries, theaters, and music venues. The National Gallery of Victoria, one of the city\'s premier cultural institutions, houses an extensive collection of art from around the world.</p><p>Food and Dining: Melbourne is famous for its food scene. You can find cuisine from all corners of the globe, with a particular focus on coffee culture and the famous laneway cafes. The city is also known for its street food festivals and farmers\' markets.</p><p>Sports: Melbourne is a sports lover\'s paradise. It hosts major sporting events like the Australian Open (tennis), the Melbourne Cup (horse racing), and the Formula 1 Australian Grand Prix. The city is also home to several world-renowned stadiums, including the Melbourne Cricket Ground (MCG).</p><p>Shopping: The city offers a wide range of shopping experiences, from high-end boutiques in the CBD (Central Business District) to bustling markets like Queen Victoria Market. You can find everything from fashion to locally-made crafts.</p><p>Education: Melbourne is home to some of Australia\'s top universities, including the University of Melbourne and Monash University. Its strong education system attracts students from all over the world.</p><p>Public Transportation: Melbourne boasts an extensive public transportation network, including trams, buses, and trains. The iconic tram system is a convenient and unique way to explore the city.</p><p>Green Spaces: The city has a wealth of parks and green spaces, including the Royal Botanic Gardens and Albert Park. These provide a welcome respite from the urban hustle and bustle and are popular spots for picnics, leisurely walks, and outdoor events.</p><p>Architecture: Melbourne\'s architecture is a fascinating blend of historic and modern styles. You can find beautiful Victorian-era buildings, as well as contemporary architectural marvels like Federation Square.</p><p>Music and Nightlife: Melbourne has a thriving music scene, with live music venues offering a diverse range of performances. The city\'s nightlife is also lively, with numerous bars, clubs, and entertainment options.</p><p>Events and Festivals: Melbourne hosts a wide range of events and festivals throughout the year, celebrating everything from arts and culture to food and wine. The Melbourne International Comedy Festival and the Melbourne International Film Festival are just a couple of examples.</p><p>Quality of Life: Melbourne consistently ranks high in global quality of life surveys. It\'s known for its healthcare system, education, safety, and overall livability.</p><p>In summary, Melbourne, Australia, is a dynamic and culturally rich city that embraces its multicultural identity. Whether you\'re interested in the arts, sports, food, or simply enjoying the relaxed Aussie lifestyle, Melbourne offers a little something for everyone in a stunning urban setting.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35383,1,NULL,NULL,'Melbourne',0,NULL,NULL,NULL,NULL,NULL,'180_1694765876.png','180_1694765876.png','Australia','13',NULL,'2023-08-05 13:06:57','2023-08-05 13:06:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Melbourne Australia\r\nMelbourne culture\r\nMelbourne coffee culture\r\nAustralian charm\r\nCosmopolitan Melbourne','\"Melbourne, Australia: The Cultural Capital Down Under\"','','',NULL,NULL,NULL,1),(181,NULL,NULL,'\"Gold Coast, Australia: Sun, Surf, and Entertainment Paradise\"',NULL,'<p>The Gold Coast, located in the southeastern corner of Queensland, Australia, is a dynamic and diverse destination that offers a perfect blend of natural beauty, adventure, and entertainment. Renowned for its pristine beaches, world-class theme parks, lush hinterland, and vibrant nightlife, the Gold Coast is a must-visit for travelers seeking a diverse and exciting Australian experience.</p><p>Key Highlights:</p><p>Golden Beaches: The Gold Coast is famous for its sun-kissed, sandy beaches that stretch for miles. Surfers Paradise Beach is one of the most iconic, offering excellent surf conditions and a bustling beachfront esplanade filled with shops, restaurants, and entertainment.</p><p>Thrilling Theme Parks: The Gold Coast is home to some of Australia\'s most exciting theme parks, including Dreamworld, Movie World, Sea World, and Wet\'n\'Wild. These parks offer an array of thrilling rides, entertaining shows, and up-close encounters with marine life.</p><p>Natural Wonders: Explore the Gold Coast\'s lush hinterland, which is part of the Gondwana Rainforests of Australia World Heritage Area. Visit Lamington National Park, home to waterfalls, walking trails, and diverse wildlife. Don\'t miss the chance to spot glowworms in the Natural Bridge cave.</p><p>Adventure Activities: For adventure seekers, the Gold Coast offers activities like surfing, jet-skiing, skydiving, and hot air ballooning. The region\'s diverse landscapes provide an excellent backdrop for outdoor adventures.</p><p>Wildlife Encounters: Visit Currumbin Wildlife Sanctuary to get up close and personal with Australia\'s unique wildlife, including kangaroos, koalas, and crocodiles.</p><p>Nightlife: The Gold Coast comes alive at night with a thriving nightlife scene. Enjoy beachfront bars, clubs, and restaurants, or explore the nightlife precincts of Surfers Paradise and Broadbeach.</p><p>Shopping: The Gold Coast offers diverse shopping experiences, from boutique stores to large shopping centers. Pacific Fair is one of the region\'s largest shopping malls, featuring a wide range of retail outlets.</p><p>Cultural Events: The Gold Coast hosts various cultural events and festivals throughout the year, including the Gold Coast Film Festival, Bleach* Festival, and the Swell Sculpture Festival.</p><p>Water Activities: Explore the beautiful waterways of the Gold Coast by taking a cruise, jet ski tour, or paddleboarding adventure.</p><p>Local Cuisine: Savor a variety of cuisine at the Gold Coast\'s restaurants and cafes. Try fresh seafood, Australian barbecue, and international flavors while enjoying stunning ocean views.</p><p>Surfing Culture: The Gold Coast is known for its vibrant surfing culture, attracting surfers from around the world. Take a lesson or watch the experts ride the waves at iconic surf breaks.</p><p>Family-Friendly: The Gold Coast is a fantastic destination for families, with numerous family-friendly activities and attractions suitable for all ages.</p><p>With its incredible mix of natural beauty, adventure, entertainment, and coastal charm, the Gold Coast offers a diverse and unforgettable travel experience. Whether you\'re seeking relaxation on the beach, thrilling adventures, or vibrant nightlife, the Gold Coast has something to offer every traveler. Come and discover why this region is a favorite among both locals and visitors alike.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10616,1,NULL,NULL,'Gold Coast',0,NULL,NULL,NULL,NULL,NULL,'181_1694605915.png','181_1694605915.png','Australia','13',NULL,'2023-08-05 13:06:57','2023-08-05 13:06:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gold Coast Australia\r\nGold Coast beaches\r\nAustralian theme parks\r\nGold Coast nightlife\r\nEntertainment in Australia','\"Gold Coast, Australia: Sun, Surf, and Entertainment Paradise\"','','',NULL,NULL,NULL,1),(182,NULL,NULL,'\"Plan your adventure in Cairns, the gateway to the world-renowned Great Barrier Reef. Dive into aquatic wonders, explore rainforests, and relax on beaches.\"',NULL,'<p>Cairns, Australia: Gateway to the Great Barrier Reef and Tropical Adventure</p><p>Nestled in the tropical far north of Queensland, Australia, Cairns is a vibrant and adventure-filled city that serves as the gateway to one of the world\'s most renowned natural wonders, the Great Barrier Reef. This tropical paradise offers a unique blend of stunning natural beauty, outdoor adventures, and a relaxed, laid-back atmosphere. Here\'s an overview of what makes Cairns a captivating destination:</p><p>1. The Great Barrier Reef: Cairns is the primary access point to the Great Barrier Reef, the world\'s largest coral reef system and a UNESCO World Heritage Site. Visitors can embark on snorkeling or scuba diving expeditions to explore the vibrant underwater world teeming with marine life, colorful corals, and crystal-clear waters. Reef tours, glass-bottom boat rides, and helicopter tours provide a variety of ways to experience this natural wonder.</p><p>2. Diverse Wildlife: Apart from the Great Barrier Reef, Cairns and its surrounding rainforests are home to a diverse range of wildlife. You can take wildlife cruises along the Daintree River to spot crocodiles and explore the Kuranda Rainforest to encounter unique Australian fauna like kangaroos, koalas, and various bird species.</p><p>3. Outdoor Adventures: Cairns is an adventure lover\'s paradise. The region offers opportunities for activities such as white-water rafting in the Tully River, zip-lining through the rainforest canopy, bungee jumping at AJ Hackett\'s, and skydiving for adrenaline junkies.</p><p>4. Tropical Rainforests: Just a short drive from Cairns, the Daintree Rainforest is one of the oldest rainforests in the world and offers a fascinating eco-adventure experience. You can explore the lush rainforest through guided tours, canopy walks, and river cruises.</p><p>5. Kuranda Village: Known as the \"Village in the Rainforest,\" Kuranda is a charming mountain village accessible via the scenic Kuranda Scenic Railway or Skyrail Rainforest Cableway. Here, you can explore local markets, visit wildlife sanctuaries, and enjoy cultural performances.</p><p>6. Cairns Esplanade: The city\'s waterfront promenade, the Cairns Esplanade, is a hub of activity. It features a lagoon-style swimming pool, picnic areas, and a wide range of restaurants and cafes. It\'s an excellent place for a leisurely stroll or a relaxing swim with a view of the Coral Sea.</p><p>7. Tjapukai Aboriginal Cultural Park: Learn about the rich indigenous culture of the Tjapukai people through interactive experiences, dance performances, and art displays.</p><p>8. Cairns Botanic Gardens: Explore the lush tropical plants and vibrant orchid displays in the Cairns Botanic Gardens, a serene oasis within the city.</p><p>9. Cairns Night Markets: The Cairns Night Markets offer a bustling shopping experience where you can find a variety of souvenirs, local handicrafts, clothing, and international cuisine stalls.</p><p>10. Tropical Climate: Cairns enjoys a warm, tropical climate year-round, making it an ideal destination for those seeking sunshine and outdoor activities.</p><p>Cairns is a city that seamlessly blends natural beauty and adventure with a relaxed, tropical lifestyle. Whether you\'re exploring the underwater wonders of the Great Barrier Reef, discovering the lush rainforests of the Daintree, or indulging in delicious seafood by the sea, Cairns offers a diverse range of experiences that cater to every traveler\'s interests. It\'s a destination that invites you to immerse yourself in the beauty of the natural world while enjoying the laid-back charm of an Australian tropical paradise.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,4693,0,NULL,NULL,'Cairns',0,NULL,NULL,NULL,NULL,NULL,'182_1694588488.png','182_1694588488.png','Australia','13',NULL,'2023-08-05 13:06:57','2023-08-05 13:06:57',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Cairns Australia\r\nGreat Barrier Reef gateway\r\nCairns diving\r\nRainforest adventures\r\nAustralian beaches','\"Cairns, Australia: Gateway to the Great Barrier Reef\"','','',NULL,NULL,NULL,1),(187,NULL,NULL,'\"Embark on an Antarctic adventure from the South Shetland Islands, the gateway to the Antarctic wilderness. Witness penguins, icebergs, and polar beauty.\"',NULL,'<p>Nestled in the frigid waters of the Southern Ocean, the South Shetland Islands are a remote and pristine archipelago that serve as the gateway to the wonders of Antarctica. Located just north of the Antarctic Peninsula, these rugged, ice-covered islands are a haven for wildlife, scientific research, and intrepid adventurers.</p><p>A Fragile Ecosystem:</p><p>The South Shetland Islands, while seemingly desolate, are teeming with life, both above and below the icy waters. The surrounding seas are rich with krill, a primary food source for many Antarctic species, making the islands a vital link in the Antarctic food web.</p><p>Rich Biodiversity:</p><p>Despite the harsh conditions, these islands are home to a surprising array of wildlife. Colonies of penguins, including gentoos, chinstraps, and Adélies, dot the coastlines, while seals, including elephant seals and Weddell seals, lounge on ice floes and rocky shores. The surrounding waters are frequented by orcas, humpback whales, and numerous seabird species.</p><p>Scientific Research Hub:</p><p>The South Shetland Islands have become an essential hub for scientific research in Antarctica. Research stations, operated by multiple countries, dot the islands, conducting studies in various fields, including climate science, glaciology, and marine biology. These efforts help us better understand the planet\'s changing climate and its impact on this delicate ecosystem.</p><p>Antarctic Adventure Hub:</p><p>For intrepid travelers and explorers, the South Shetland Islands are the starting point for Antarctic adventures. Expedition cruises depart from the islands, taking visitors on journeys to explore the frozen continent\'s glaciers, icebergs, and wildlife. Activities include kayaking, ice climbing, and even polar plunges for the bravest souls.</p><p>Historical Significance:</p><p>The islands have a rich history of exploration, dating back to the early 19th century when British and American sealers frequented the region. The remnants of old whaling stations and research huts stand as a testament to the challenges faced by early explorers in this harsh environment.</p><p>Environmental Conservation:</p><p>Preserving the pristine nature of the South Shetland Islands and the surrounding Antarctic region is a paramount concern. The area is governed by the Antarctic Treaty System, which prohibits commercial mining and sets strict regulations to protect the environment.</p><p>Gateway to Antarctica:</p><p>As the first landfall for those journeying southward to Antarctica, the South Shetland Islands offer a tantalizing glimpse into the otherworldly beauty and extreme conditions that await on the continent itself. The islands serve as a vital staging point for scientific missions and a crucial refuge for wildlife in this remote and fragile corner of the world.</p><p>Visiting the South Shetland Islands is not just an adventure; it\'s a rare opportunity to witness the raw beauty of Antarctica and gain a deeper appreciation for the incredible biodiversity that thrives in one of the harshest environments on Earth.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,108774,1,NULL,NULL,'South Shetland Islands',0,NULL,NULL,NULL,NULL,NULL,'187_1695192290.png','187_1695192290.png','Antarctica','8',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'South Shetland Islands Antarctica\r\n Antarctic gateway islands\r\n Antarctic penguins\r\nSouth Shetland Islands icebergs\r\nAntarctic polar beauty','\"South Shetland Islands, Antarctica: Gateway to the Antarctic Wilderness\"','','',NULL,NULL,NULL,1),(188,NULL,NULL,'\"Visit the picturesque Arctic village of Ilimanaq in Greenland. Experience Inuit culture, fjord views, and the serenity of Arctic life.\"',NULL,'<p>Ilimanaq, a picturesque village in Greenland, offers travelers a unique opportunity to immerse themselves in the stunning natural beauty and rich cultural heritage of the Arctic. Located on the west coast of Greenland, along the shores of Disko Bay, Ilimanaq is a place where you can witness the magic of icebergs, experience the traditions of the Inuit people, and connect with the pristine wilderness. Here\'s a glimpse of what makes Ilimanaq a captivating destination:</p><p>Key Highlights:</p><p>Iceberg Watching: Ilimanaq is situated near the Ilulissat Icefjord, a UNESCO World Heritage Site. Join a boat tour to witness the awe-inspiring spectacle of colossal icebergs breaking off from glaciers and floating in the icy waters of Disko Bay. The sight and sounds of these ice giants are truly mesmerizing.</p><p>Dog Sledding: Experience the thrill of dog sledding through the Arctic wilderness. Local mushers and their teams of eager sled dogs will take you on a memorable journey across the snowy landscapes, providing an authentic taste of Greenlandic culture.</p><p>Inuit Culture: Immerse yourself in the rich cultural traditions of the Inuit people. Visit the local community center to meet residents, learn about their way of life, and enjoy traditional Inuit performances, including drum dancing and throat singing.</p><p>Northern Lights: Ilimanaq is located in a prime spot for witnessing the Northern Lights, also known as the Aurora Borealis. During the winter months, the dark Arctic skies come alive with shimmering, colorful lights, creating a truly magical experience.</p><p>Hiking and Nature: Explore the pristine Arctic wilderness by hiking through snow-covered landscapes and along the rugged coastline. The scenic trails offer opportunities for wildlife spotting, birdwatching, and taking in the breathtaking views of the surrounding mountains and fjords.</p><p>Kayaking: Paddle through the crystal-clear waters of Disko Bay in a kayak, allowing you to get up close to icebergs and potentially encounter seals, whales, and other marine life.</p><p>Local Cuisine: Sample traditional Greenlandic cuisine, which includes dishes like muskox, reindeer, and freshly caught seafood. Don\'t forget to try \"kiviak,\" a local delicacy made of fermented seabirds.</p><p>Sustainable Tourism: Ilimanaq is committed to sustainable tourism practices, ensuring that the natural environment and cultural heritage are preserved for future generations. Visitors can learn about these efforts and actively participate in eco-friendly activities.</p><p>Remote and Tranquil: Ilimanaq\'s remote location offers a serene escape from the hustle and bustle of city life. The peaceful surroundings, fresh Arctic air, and sense of isolation create an ideal environment for relaxation and reflection.</p><p>Local Crafts: Support local artisans by purchasing traditional handicrafts and souvenirs made by the talented residents of Ilimanaq. These unique items are excellent reminders of your Arctic adventure.</p><p>Ilimanaq, with its pristine Arctic landscapes and welcoming community, offers an authentic and unforgettable Arctic experience. Whether you\'re gazing at massive icebergs, experiencing the warmth of Inuit culture, or witnessing the Northern Lights dance across the Arctic sky, Ilimanaq promises a truly remarkable journey to one of the world\'s most captivating and remote destinations.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,108772,1,NULL,NULL,'Ilimanaq',0,NULL,NULL,NULL,NULL,NULL,'188_1694668257.png','188_1694668257.png','Greenland','87',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ilimanaq Greenland\r\nArctic village experiences\r\nInuit culture\r\nGreenlandic fjords\r\nArctic serenity','\"Ilimanaq, Greenland: A Picturesque Arctic Village\"','','',NULL,NULL,NULL,1),(189,NULL,NULL,'\"Embark on an Antarctic adventure from King George Island, the gateway to the frozen continent. Witness icebergs, penguins, and polar landscapes.\"',NULL,'<p>King George Island, often referred to as Isla Rey Jorge in Spanish, is a significant and intriguing landmass located in the South Shetland Islands of Antarctica. As one of the largest islands in this remote region, King George Island plays a pivotal role in supporting scientific research and international cooperation in Antarctica. Here\'s a comprehensive overview of this remarkable island.</p><p>Geography and Location:</p><p>King George Island is situated at approximately 62° south latitude and 58° west longitude, making it a part of the Antarctic Peninsula. It lies roughly 120 kilometers (75 miles) off the northern tip of the peninsula, separating the South Shetland Islands from the Antarctic mainland. The island covers an area of approximately 1,150 square kilometers (443 square miles), making it one of the largest in the archipelago.</p><p>Climate:</p><p>Like much of Antarctica, King George Island experiences an extremely harsh climate, characterized by frigid temperatures, strong winds, and persistent snowfall. Summers are relatively milder, with temperatures occasionally rising above freezing, but even during this season, conditions remain challenging for most forms of life.</p><p>Research Stations:</p><p>One of the most notable features of King George Island is the presence of several research stations and field camps established by various countries for scientific research purposes. These facilities are critical for studying the unique Antarctic environment, conducting climate research, and studying the continent\'s ecosystems.</p><p>Some of the prominent research stations on King George Island include:</p><p>Bellingshausen Station (Russia): Operated by Russia, this station is one of the oldest and largest research facilities in Antarctica. It serves as a base for various scientific disciplines, including meteorology, biology, and glaciology.</p><p>Great Wall Station (China): China\'s research station on the island conducts studies in fields such as geology, atmospheric sciences, and environmental monitoring.</p><p>King Sejong Station (South Korea): South Korea\'s presence on King George Island supports scientific research in areas like biology, oceanography, and geology.</p><p>Machu Picchu Base (Peru): Peru\'s station focuses on climate research, atmospheric studies, and geological investigations.</p><p>Artigas Base (Uruguay): Operated by Uruguay, this base supports research in the fields of geology, biology, and meteorology.</p><p>Wildlife and Natural Beauty:</p><p>Despite its harsh climate, King George Island is home to a surprising variety of wildlife. Penguins, such as Gentoo and Adélie penguins, as well as seals, including Weddell and leopard seals, are commonly seen on the island\'s shores. The surrounding waters teem with marine life, making it a popular spot for researchers and wildlife enthusiasts alike.</p><p>The island\'s rugged and picturesque landscapes, with its glaciated peaks and ice-covered shores, provide a stunning backdrop for scientific expeditions and serve as a reminder of the pristine beauty of the Antarctic wilderness.</p><p>Environmental Protection:</p><p>King George Island falls within the boundaries of the Antarctic Treaty System, an international agreement that preserves the continent for peaceful purposes, scientific research, and environmental protection. This treaty ensures that activities on the island are conducted in an environmentally responsible manner, minimizing human impact on this fragile ecosystem.</p><p>In conclusion, King George Island serves as a hub for scientific research in Antarctica, offering a glimpse into the extreme conditions and unique ecosystems of the continent. It exemplifies international cooperation in the pursuit of knowledge and environmental conservation in one of the world\'s most remote and challenging environments.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,108768,1,NULL,NULL,'King George Island',0,NULL,NULL,NULL,NULL,NULL,'189_1694685229.png','189_1694685229.png','Antarctica','8',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'King George Island Antarctica\r\nAntarctic gateway\r\nPolar adventures\r\nKing George Island icebergs\r\nAntarctic wildlife','\"King George Island, Antarctica: Gateway to the Frozen Continent\"','','',NULL,NULL,NULL,1),(190,NULL,NULL,'\"Embark on an Arctic adventure to Eqi Glacier in Greenland. Witness calving icebergs, explore icy landscapes, and encounter the wonders of the north.\"',NULL,'<p>Eqi Glacier, located on the west coast of Greenland, is a breathtaking natural wonder that offers a mesmerizing glimpse into the world of glaciers and ice formations. Known for its colossal size and dramatic calving events, Eqi Glacier is a must-visit destination for those seeking an unforgettable Arctic adventure. Here\'s an overview of what makes Eqi Glacier a remarkable place to explore:</p><p>1. Glacial Grandeur: Eqi Glacier is part of the larger Greenland Ice Sheet, one of the world\'s largest ice bodies. This awe-inspiring glacier stretches over 5 miles wide and flows from the Greenland Ice Sheet into the frigid waters of Disko Bay. Its towering ice walls rise up to 200 feet above sea level, creating a striking and formidable natural spectacle.</p><p>2. Calving Events: One of the most mesmerizing experiences at Eqi Glacier is witnessing calving events. As the glacier advances and the ice slowly flows towards the sea, massive chunks of ice break off and crash into the bay below, creating thunderous roars and sending powerful waves across the water. These spectacular displays are a testament to the glacier\'s ever-changing nature.</p><p>3. Boat Tours: To get up close and personal with Eqi Glacier, visitors can take boat tours that navigate through Disko Bay. These tours provide excellent opportunities to observe the glacier from various angles and capture stunning photographs of its towering ice cliffs. Knowledgeable guides often share insights into the region\'s geology, wildlife, and glaciology.</p><p>4. Hiking and Exploration: While boat tours offer an exceptional view, some adventurous travelers may choose to explore Eqi Glacier on foot. Guided hiking tours are available for those interested in trekking across the tundra and rocky terrain to reach viewpoints overlooking the glacier. This provides a unique and more intimate perspective of the icy landscape.</p><p>5. Arctic Wildlife: The Eqi Glacier area is home to a variety of Arctic wildlife, including seals, whales, and seabirds. While on a boat tour, keep an eye out for these fascinating creatures as they thrive in the chilly waters surrounding the glacier.</p><p>6. The Midnight Sun: Eqi Glacier is located within the Arctic Circle, which means it experiences the phenomenon of the midnight sun during the summer months. Visitors have the extraordinary opportunity to witness the sun never fully setting, creating a surreal and luminous atmosphere.</p><p>7. Remote Wilderness: Eqi Glacier is situated in a remote and pristine wilderness, offering a chance to disconnect from the hustle and bustle of modern life. The rugged, untouched landscapes of Greenland provide an ideal setting for those seeking solitude and a sense of adventure.</p><p>8. Sustainability: Given the global concerns about climate change and the melting of polar ice, visiting Eqi Glacier can also serve as a sobering reminder of the importance of preserving these natural wonders and addressing climate issues.</p><p>9. Accessibility: Eqi Glacier is typically accessed from the town of Ilulissat, which is reachable via flights from various cities in Greenland. Travelers can arrange tours and accommodations in Ilulissat, making it a convenient base for exploring the glacier.</p><p>Eqi Glacier in Greenland is a place of unparalleled beauty and natural wonder. Its massive ice formations, dramatic calving events, and the pristine Arctic environment create an unforgettable experience for adventurers and nature enthusiasts seeking to explore one of the planet\'s most remote and remarkable destinations.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,108767,1,NULL,NULL,'Eqi Glacier',0,NULL,NULL,NULL,NULL,NULL,'190_1694603197.png','190_1694603197.png','Greenland','87',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Eqi Glacier Greenland\r\nArctic ice adventures\r\nGlacial calving\r\nGreenlandic landscapes\r\nArctic wonders','\"Eqi Glacier, Greenland: Witness the Majesty of Arctic Ice\"','','',NULL,NULL,NULL,1),(192,NULL,NULL,'\"Explore PRISTINA, the capital of Kosovo, where past meets present. Discover historic sites, vibrant culture, and the spirit of the Balkans.\"',NULL,'<p>Pristina, the capital and largest city of Kosovo, is a place where history, culture, and modernity converge. Nestled in the heart of the Balkans, Pristina has risen from the ashes of conflict to become a vibrant, forward-looking city. With a rich heritage, diverse population, and an indomitable spirit, Pristina invites travelers to explore its unique charm and learn about its captivating story.Pristina, often overlooked by tourists, is a city that surprises and captivates. It embodies the spirit of a nation that has overcome adversity and is now embracing its future. From its rich history and vibrant culture to its modern energy and warm hospitality, Pristina offers a unique and enriching travel experience. As Kosovo\'s capital, Pristina invites you to uncover its hidden treasures and explore a city that is writing a new chapter in its story.Pristina is a city on the move. Its youthful population and a growing arts scene infuse the city with energy and creativity. You\'ll find trendy cafes, bustling markets, and a nightlife that reflects the city\'s modern spirit. Stroll through Mother Teresa Square, the heart of Pristina, where locals and visitors converge to enjoy the city\'s cosmopolitan vibe.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,101223,0,NULL,NULL,'PRISTINA',0,NULL,NULL,NULL,NULL,NULL,'192_1695106841.png','192_1695106841.png','kosovo','468',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'PRISTINA Kosovo\r\nKosovo capital\r\nPRISTINA historic sites\r\nBalkan culture\r\nKosovo heritage','\"PRISTINA, Kosovo: Where Past Meets Present\"','','',NULL,NULL,NULL,1),(194,NULL,NULL,'Visit the enchanting Franz Josef Glacier on New Zealand\'s South Island. Explore ice caves, hike through rainforests, and witness glacial beauty.\"',NULL,'<p>Franz Josef Glacier, located on the rugged West Coast of New Zealand\'s South Island, is a stunning natural wonder that attracts visitors from around the world. Nestled within the lush rainforests of Westland Tai Poutini National Park, this glacier is not only a testament to the power of nature but also a playground for adventure seekers and nature lovers alike. Here\'s an overview of what makes Franz Josef Glacier an exceptional destination:<br></p><p>1. Glacier Formation: Franz Josef Glacier is part of the Southern Alps and is one of New Zealand\'s most accessible glaciers. This massive river of ice is constantly moving, slowly descending from its origins high in the mountains down to the rainforest valley floor. It\'s a dynamic and ever-changing landscape shaped by the forces of nature.</p><p>2. Accessible Adventure: What sets Franz Josef Glacier apart is its accessibility. Unlike many glaciers around the world, this glacier is relatively easy to reach. Guided tours allow visitors to hike to the glacier\'s terminal face, where they can witness its impressive blue ice and rugged terrain up close.</p><p>3. Guided Tours: Guided tours are essential for those wanting to explore the glacier safely. Knowledgeable guides provide necessary equipment like crampons and take visitors on an awe-inspiring journey through ice formations, crevasses, and ice caves. They also offer insights into the glacier\'s history, geology, and the impact of climate change.</p><p>4. Helicopter Tours: For a more immersive experience, helicopter tours are available, allowing you to land on the glacier itself. From there, you can explore the icy landscapes, ice caves, and crystal-blue meltwater pools in the heart of Franz Josef Glacier.</p><p>5. Hot Pools: After an exhilarating glacier hike or helicopter tour, visitors can relax and rejuvenate in the nearby Franz Josef Glacier Hot Pools. These natural thermal pools are surrounded by lush rainforest, providing the perfect contrast to the icy adventures on the glacier.</p><p>6. West Coast Rainforest: The glacier\'s location on the West Coast means it\'s surrounded by temperate rainforests teeming with unique flora and fauna. Visitors often combine their glacier experience with rainforest walks and hikes to explore this diverse ecosystem.</p><p>7. Nearby Attractions: Franz Josef Village serves as the gateway to the glacier and offers various accommodation options, restaurants, and shops. Nearby attractions include Fox Glacier, Okarito Lagoon, and Lake Matheson, known for its mirror-like reflections of the Southern Alps.</p><p>8. Climate Change Awareness: Visiting Franz Josef Glacier also raises awareness about climate change and its impact on glaciers worldwide. The glacier has been retreating in recent years, and its current state serves as a visible reminder of the environmental challenges our planet faces.</p><p>9. Safety First: It\'s essential to note that Franz Josef Glacier is a dynamic and potentially hazardous environment. Guided tours are recommended for safety, and visitors should always follow the guidance of experienced guides.</p><p>Franz Josef Glacier is a testament to the incredible forces of nature that have shaped New Zealand\'s South Island. Its accessibility, stunning scenery, and the opportunity for adventure make it a must-visit destination for those seeking to witness the natural wonders of Aotearoa, the Land of the Long White Cloud.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,85073,0,NULL,NULL,'FRANZ JOSEF GLACIER',0,NULL,NULL,NULL,NULL,NULL,'194_1694603554.png','194_1694603554.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Franz Josef Glacier New Zealand\r\nGlacier exploration\r\nIce cave adventures\r\nNew Zealand rainforests\r\nGlacial landscapes','\"Franz Josef Glacier, New Zealand: A Frozen Wonderland\"','','',NULL,NULL,NULL,1),(199,NULL,NULL,'\"Experience the cultural hub of Korce in Albania. Discover its rich heritage, museums, and the vibrant spirit of the Balkans.\"',NULL,'<p>Korça, often spelled Korçë in Albanian, is a charming city located in the southeastern part of Albania. It is the largest city in the region of Korçë County and is celebrated for its rich history, distinct culture, and picturesque surroundings. Let\'s delve into what makes Korça a unique and captivating destination:</p><p>Geography and Location:</p><p>Korça is situated in the southeastern part of Albania, near the border with Greece. It is nestled in a valley surrounded by the Morava Mountains, providing a stunning backdrop of rugged landscapes and green hills. The city\'s elevation of approximately 850 meters (2,800 feet) above sea level gives it a cooler and more temperate climate compared to other parts of Albania.</p><p>Cultural Heritage:</p><p>Korça is often referred to as the \"City of Serenades\" due to its deep cultural roots in music, arts, and literature. The city has a long history of producing renowned musicians, writers, and artists who have contributed significantly to Albanian culture. Its cultural heritage is preserved and celebrated through various festivals, museums, and art galleries.</p><p>Museums and Cultural Institutions:</p><p>National Museum of Medieval Art (Museumu Kombëtar i Artit Mesjetar): This museum houses a remarkable collection of medieval art and religious artifacts, showcasing the rich history of the region.</p><p>Korça Museum (Muzeu i Korçës): The museum provides insights into the city\'s history, traditions, and the lives of its inhabitants through a diverse range of exhibits.</p><p>Korça Orthodox Cathedral: A beautiful example of Orthodox church architecture, this cathedral is an important religious and cultural symbol in the city.</p><p>Cuisine:</p><p>Korça is renowned for its delicious cuisine, offering a blend of Mediterranean and Balkan flavors. Some notable dishes and culinary experiences include:</p><p>Qofte të fërguara: These are fried meatballs often served with a spicy tomato sauce.</p><p>Pite me Mish (Meat Pie): A savory pastry filled with minced meat and spices.</p><p>Lakror: A traditional Albanian pastry filled with various ingredients, such as spinach, cheese, or meat.</p><p>Local Wine: Korça is famous for its wine production, and you can savor local varieties in the city\'s wine bars and restaurants.</p><p>Natural Beauty:</p><p>The picturesque landscapes surrounding Korça offer numerous opportunities for outdoor enthusiasts. The nearby Voskopoja and Dardha villages are ideal for hiking and exploring the serene countryside. During the winter months, the Morava Mountains become a haven for skiing and other winter sports.</p><p>Annual Events:</p><p>Korça hosts various cultural events and festivals throughout the year, including music concerts, art exhibitions, and folklore performances. The \"Carnival of Korça\" is a particularly lively and colorful celebration featuring traditional costumes and music.</p><p>Hospitality:</p><p>The people of Korça are known for their warm hospitality and friendliness, making visitors feel welcome and appreciated. The city\'s lively atmosphere, especially in the central promenade area, creates a sense of community and connection.</p><p>In summary, Korça is a city that combines its rich cultural heritage, delicious cuisine, and stunning natural surroundings to create a unique and inviting destination in Albania. Whether you\'re interested in exploring history and art, indulging in local flavors, or simply enjoying the scenic beauty of the region, Korça has much to offer to travelers seeking an authentic and memorable experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,39212,1,NULL,NULL,'Korca',0,NULL,NULL,NULL,NULL,NULL,'199_1694685908.png','199_1694685908.png','Albania','2',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Korce Albania\r\nAlbanian culture\r\nKorce museums\r\nBalkan spirit\r\nAlbanian heritage','\"Korce, Albania: A Cultural Hub in the Balkans\"','','',NULL,NULL,NULL,1),(200,NULL,NULL,'\"Discover the enchanting beaches, medieval old town, and vibrant nightlife of Budva, Montenegro. Explore the Adriatic coastline and cultural heritage.\"',NULL,'<p>Budva is a picturesque coastal town located in the small European country of Montenegro, on the eastern shore of the Adriatic Sea. Known for its stunning beaches, historic old town, and vibrant nightlife, Budva is one of Montenegro\'s most popular tourist destinations. Here\'s an overview of Budva:</p><p>Geography and Location:</p><p>Budva is situated on the Budva Riviera, which is part of the southern Adriatic coastline. It is approximately 23 kilometers (14 miles) southwest of the country\'s capital, Podgorica. The town enjoys a Mediterranean climate with warm summers and mild winters, making it an ideal destination for beachgoers and outdoor enthusiasts.</p><p>Old Town Budva:</p><p>The heart of Budva is its charming old town, which dates back over 2,500 years. Surrounded by ancient walls and fortifications, the old town is a maze of narrow cobblestone streets, squares, and historic buildings. Visitors can explore medieval churches, small shops, cafes, and restaurants while soaking in the Mediterranean atmosphere.</p><p>Beaches:</p><p>Budva is famous for its beautiful beaches, each offering its own unique charm. Some of the most popular beaches in and around Budva include Slovenska Beach, Mogren Beach, Jaz Beach, and Becici Beach. These beaches are known for their crystal-clear waters and are perfect for swimming, sunbathing, and water sports.</p><p>Nightlife and Entertainment:</p><p>Budva is renowned for its vibrant nightlife and entertainment options. The town comes alive after dark with numerous bars, clubs, and restaurants offering live music, DJ performances, and a lively atmosphere. The nightlife scene in Budva caters to a wide range of tastes, from beachfront bars to upscale nightclubs.</p><p>Cultural Attractions:</p><p>Besides the old town, Budva offers cultural attractions such as the Budva City Museum, which provides insights into the town\'s history and heritage. There are also art galleries and cultural events that showcase Montenegrin art and culture.</p><p>Water Sports and Activities:</p><p>The clear waters of the Adriatic Sea make Budva an excellent destination for water sports enthusiasts. Activities such as jet-skiing, parasailing, windsurfing, and scuba diving are readily available along the coast. Many beachfront resorts and water sports centers offer equipment rental and lessons.</p><p>Island of Sveti Stefan:</p><p>Just a short drive from Budva, the iconic island of Sveti Stefan is a luxury resort that attracts visitors from around the world. The island, connected to the mainland by a causeway, is known for its charming red-roofed stone buildings and beautiful beaches. While the island itself is reserved for resort guests, you can still enjoy stunning views from the mainland.</p><p>Access and Accommodation:</p><p>Budva is well-connected by road and can be easily reached from Montenegro\'s major cities, such as Podgorica and Kotor. Tivat Airport, located approximately 20 kilometers (12 miles) away, serves as the nearest international airport. The town offers a wide range of accommodation options, from luxury resorts and boutique hotels to budget-friendly hostels and apartments.</p><p>Budva, Montenegro, is a coastal gem that combines natural beauty, history, and a lively atmosphere. Whether you\'re looking for relaxation on the beach, exploring historical sites, or indulging in a vibrant nightlife scene, Budva has something to offer every traveler seeking a Mediterranean experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36764,0,NULL,NULL,'Budva',0,NULL,NULL,NULL,NULL,NULL,'200_1695811334.png','200_1695811334.png','MONTENEGRO','466',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Budva Montenegro\r\nMontenegrin beaches\r\nBudva old town\r\nAdriatic coast vacations\r\nMontenegro nightlife','\"Budva, Montenegro: A Coastal Gem on the Adriatic\"','','',NULL,NULL,NULL,1),(201,NULL,NULL,'\"Discover the enchanting beauty of Kotor, Montenegro. Explore its medieval old town, scenic bay, and the allure of the Adriatic coast.\"',NULL,'<p>Kotor, a hidden gem nestled on the Adriatic coast of Montenegro, is a town of unparalleled beauty and rich historical significance. It is cradled within the dramatic Bay of Kotor, often compared to a fjord, where awe-inspiring landscapes and remarkably preserved medieval architecture combine to create an enchanting destination.</p><p>The Bay of Kotor is the crowning jewel of this coastal town, surrounded by majestic mountains that provide a breathtaking backdrop. The bay\'s intricate network of inlets and islets is a natural wonder, and the Church of Our Lady of the Rocks, perched on a man-made islet, is a testament to the region\'s cultural heritage.</p><p>Kotor\'s historic Old Town is a masterpiece of medieval architecture, enclosed by well-maintained fortifications. Wandering its narrow cobblestone streets, picturesque squares, and centuries-old buildings is like stepping back in time. The Cathedral of Saint Tryphon, an exquisite example of Romanesque architecture, stands as a prominent landmark, adorned with stunning frescoes and intricate carvings.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,36763,1,NULL,NULL,'Kotor',0,NULL,NULL,NULL,NULL,NULL,'201_1694762831.png','201_1694686394.png','MONTENEGRO','466',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kotor Montenegro\r\nMontenegro old town\r\nKotor Bay beauty\r\nAdriatic coast vacations\r\nMontenegro attractions','\"Kotor, Montenegro: Jewel of the Adriatic\"','','',NULL,NULL,NULL,1),(202,NULL,NULL,'\"Discover the cool capital of New Zealand by the bay in WELLINGTON. Explore craft beer, eclectic culture, and the stunning scenery of the Kiwi capital.\"',NULL,'<p>Wellington, nestled on the southern tip of New Zealand\'s North Island, is a city that embodies creativity, culture, and a vibrant urban spirit. As the capital city, Wellington boasts a rich history, stunning natural surroundings, and a reputation as one of the world\'s most livable and charming cities.</p><p>Harbor City Beauty:</p><p>Wellington\'s picturesque harbor is a defining feature of the city. The waterfront is adorned with sailboats, offering a postcard-worthy backdrop to the city\'s skyline. Take a stroll along the harbor promenade, visit the bustling Oriental Bay, or embark on a harbor cruise to fully appreciate its beauty.</p><p>Te Papa Tongarewa:</p><p>New Zealand\'s national museum, Te Papa Tongarewa, is a cultural treasure trove. It houses an extensive collection of Maori and Pacific Island artifacts, natural history exhibits, and interactive displays that make learning about New Zealand\'s heritage engaging and immersive.</p><p>Culinary Delights:</p><p>Wellington is renowned for its food and coffee culture. The city boasts an array of artisanal cafes, world-class restaurants, and vibrant food markets. Cuba Street, with its eclectic eateries and street art, is a food lover\'s paradise.</p><p>Weta Workshop:</p><p>Film enthusiasts and fans of \"The Lord of the Rings\" will want to visit Weta Workshop. This world-famous special effects company has played a pivotal role in creating the magic of Middle-earth and offers fascinating behind-the-scenes tours.</p><p>Craft Beer Scene:</p><p>Wellington has a thriving craft beer scene, with numerous breweries and craft beer bars. Explore the \"Golden Mile\" of craft beer along Cambridge Terrace for a taste of local brews.</p><p>Botanic Gardens:</p><p>The Wellington Botanic Garden is a lush oasis in the heart of the city. Stroll through its well-manicured gardens, visit the historic Cable Car, and enjoy panoramic views of the city from the hilltop.</p><p>The Beehive and Parliament Buildings:</p><p>Wellington is the political center of New Zealand, and you can tour the iconic Parliament Buildings, including the distinctive Beehive, to gain insight into the country\'s government and history.</p><p>Outdoor Adventures:</p><p>For outdoor enthusiasts, Wellington offers ample opportunities for hiking, mountain biking, and exploring nearby nature reserves. The city\'s hilly terrain provides stunning vistas and scenic lookout points.</p><p>Cultural Hub:</p><p>The city\'s thriving arts scene is celebrated through numerous galleries, theaters, and live music venues. From the New Zealand Symphony Orchestra to cutting-edge theater productions, Wellington has something to offer every culture connoisseur.</p><p>Friendly Locals:</p><p>Wellingtonians are known for their warmth and friendliness. It\'s a city where you can strike up a conversation with locals and get insider tips on the best places to explore.</p><p>Sustainability and Conservation:</p><p>Wellington takes pride in its commitment to sustainability and environmental conservation. The city\'s green initiatives, including recycling programs and bike-friendly infrastructure, reflect this dedication.</p><p>Wellington is more than just New Zealand\'s capital; it\'s a city that exudes character, creativity, and a welcoming atmosphere. Whether you\'re sipping a flat white at a quirky café, exploring the great outdoors, or immersing yourself in Maori culture, Wellington invites you to discover its unique blend of urban sophistication and natural beauty.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,35426,1,NULL,NULL,'Wellington',0,NULL,NULL,NULL,NULL,NULL,'202_1695197780.png','202_1695197780.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'WELLINGTON New Zealand\r\n Kiwi capital WELLINGTON\r\n WELLINGTON craft beer\r\n Eclectic culture in WELLINGTON\r\nWELLINGTON bay scenery','\"WELLINGTON, New Zealand: The Cool Capital by the Bay\"','','',NULL,NULL,NULL,1),(203,NULL,NULL,'\"Discover the blend of history and modernity in Skopje, North Macedonia. Explore ancient landmarks, vibrant bazaars, and Balkan cultural richness.\"',NULL,'<p>Skopje, the capital city of North Macedonia, is a place where time-honored history and contemporary progress intertwine harmoniously. Set against the backdrop of the majestic Vardar River and surrounded by rugged mountains, this city offers a captivating blend of ancient architecture, vibrant culture, and a burgeoning modern skyline.Skopje is a city where antiquity mingles with modernity, where history is celebrated, and where progress is embraced. It\'s a destination that offers a unique blend of cultural richness, architectural diversity, and natural beauty, making it a captivating place to explore in the heart of the Balkans.Skopje has a rich and varied history that spans over two millennia. It has been influenced by numerous civilizations, including the Romans, Byzantines, Ottomans, and Yugoslavs. The city\'s history is vividly reflected in its architecture, with remnants of different eras scattered throughout.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25410,1,NULL,NULL,'Skopje',0,NULL,NULL,NULL,NULL,NULL,'203_1695191750.png','203_1695191750.png','Macedonia','129',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Skopje North Macedonia Skopje historical landmarks Skopje bazaars Balkan cultural richness\r\nSkopje attractions','\"Skopje, North Macedonia: A Blend of History and Modernity\"','','',NULL,NULL,NULL,1),(204,NULL,NULL,'\"Begin your journey into Northern Albanian wonders in Shkodra, Albania. Explore historical sites, Lake Shkodra beauty, and Albanian hospitality',NULL,'<p>Nestled on the shores of Lake Shkodra in northwestern Albania, Shkodra (Shkodër in Albanian) is a city steeped in history, culture, and natural beauty. As one of the country\'s oldest and most captivating cities, Shkodra offers travelers a rich tapestry of experiences, from exploring ancient ruins to enjoying the stunning landscapes that surround it.</p><p>Historical Significance:</p><p>Shkodra boasts a history dating back over 2,400 years, making it one of the oldest continuously inhabited cities in Europe. It has witnessed the rise and fall of empires, including the Illyrians, Romans, Byzantines, Ottomans, and more. The city\'s historical legacy is evident in its well-preserved architecture, fortifications, and museums.</p><p>Rozafa Castle:</p><p>Perched on a hill overlooking the city, Rozafa Castle is an iconic landmark that offers panoramic views of Shkodra and the surrounding countryside. Legend has it that the castle\'s foundations were built with the sacrifice of a woman named Rozafa, giving rise to a poignant local legend.</p><p>Venetian Influence:</p><p>Shkodra bears the marks of Venetian influence, with its architecture characterized by elegant palaces and charming courtyards. The city\'s captivating blend of Ottoman and Venetian architecture is a testament to its rich past.</p><p>Cultural Hub:</p><p>The city is a cultural hub, with numerous museums and galleries. The Marubi National Museum of Photography houses an impressive collection of photographs spanning more than a century. Additionally, the historical and ethnographic museum provides insights into the region\'s traditions and heritage.</p><p>Lake Shkodra:</p><p>Lake Shkodra, also known as Lake Skadar, is the largest lake in the Balkans and offers a serene escape from the city\'s hustle and bustle. It\'s a haven for birdwatchers and nature enthusiasts, with a diverse range of bird species and lush wetlands to explore.</p><p>Vibrant Arts Scene:</p><p>Shkodra is known for its vibrant arts scene, with theaters and cultural centers hosting a variety of performances and exhibitions. The city\'s musical traditions, including polyphonic singing, are celebrated throughout Albania.</p><p>Traditions and Festivals:</p><p>Visitors to Shkodra can immerse themselves in local traditions and festivals. The city is known for its colorful celebrations, which often include lively music, dancing, and traditional Albanian cuisine.</p><p>Bridges of Shkodra:</p><p>The city is known for its picturesque bridges, including the iconic Mesi Bridge, which spans the Kir River. These bridges are not only functional but also architectural gems that add to Shkodra\'s charm.</p><p>Gateway to the Albanian Alps:</p><p>Shkodra serves as a gateway to the Albanian Alps, offering outdoor enthusiasts opportunities for hiking, trekking, and exploring the stunning landscapes of northern Albania.</p><p>Shkodra is a city where history and tradition merge with natural beauty and cultural vibrancy. Its rich heritage, serene lakeside setting, and welcoming atmosphere make it a must-visit destination for travelers seeking an authentic Albanian experience. Whether you\'re exploring ancient castles, savoring local cuisine, or simply strolling along the picturesque streets, Shkodra invites you to step back in time and discover the heart of Albania.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25114,1,NULL,NULL,'Shkodra',0,NULL,NULL,NULL,NULL,NULL,'204_1695189860.png','204_1695189860.png','Albania','2',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Shkodra Albania Northern Albanian gatewayShkodra historical sites\r\nLake Shkodra beauty\r\nAlbanian hospitality','\"Shkodra, Albania: Gateway to Northern Albanian Wonders\"','','',NULL,NULL,NULL,1),(205,NULL,NULL,'\"Discover Sarajevo, the city where East meets West in Bosnia and Herzegovina. Explore Ottoman history, European charm, and a vibrant cultural mosaic.\"',NULL,'<p>Nestled in a valley surrounded by the Dinaric Alps, Sarajevo, the capital of Bosnia and Herzegovina, is a city that encapsulates the rich tapestry of cultures and histories. Known as the \"Jerusalem of Europe\" for its harmonious coexistence of different faiths, Sarajevo is a place where the East meets the West in a captivating blend of tradition, history, and resilience.Sarajevo, a city that has endured both war and peace, stands as a testament to human resilience and the ability to rebuild and reconcile. It\'s a place where the echoes of history can be heard on every corner, where cultures blend harmoniously, and where hope thrives. Sarajevo invites travelers to explore its diverse heritage, experience its unique charm, and become part of its ongoing story of resilience and unity.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,24299,1,NULL,NULL,'Sarajevo',0,NULL,NULL,NULL,NULL,NULL,'205_1695109976.png','205_1695109976.png','Bosnia and Herzegowina','27',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Sarajevo Bosnia and Herzegovina\r\nEast meets West in Sarajevo\r\nSarajevo Ottoman history\r\nEuropean charm in Bosnia\r\nSarajevo cultural mosaic','\"Sarajevo, Bosnia and Herzegovina: Where East Meets West\"','','',NULL,NULL,NULL,1),(206,NULL,NULL,'\"Explore the geothermal wonderland of Rotorua, New Zealand. Witness bubbling mud pools, geysers, and Maori cultural experiences.\"',NULL,'<p>Nestled in the heart of New Zealand\'s North Island, Rotorua is a place where the earth comes alive. Known for its unique blend of geothermal wonders, indigenous Maori culture, and lush natural beauty, Rotorua offers a one-of-a-kind experience that captivates the senses and immerses visitors in the spirit of Aotearoa.</p><p>Geothermal Marvels:</p><p>Rotorua\'s defining feature is its geothermal activity. The town is surrounded by boiling mud pools, erupting geysers, and colorful mineral terraces. Te Puia, a geothermal and cultural center, is home to the iconic Pohutu Geyser, which erupts impressively several times a day. The soothing warmth of natural hot springs, like the Polynesian Spa, invites relaxation amidst these dynamic forces of nature.</p><p>Maori Culture:</p><p>Rotorua is a bastion of Maori culture, offering a profound insight into New Zealand\'s indigenous heritage. Visitors can experience traditional Maori ceremonies, dances, and storytelling at cultural centers like Te Puia and the Mitai Maori Village. Explore the Tamaki Maori Village to partake in a Hangi feast, a traditional Maori meal cooked underground.</p><p>Outdoor Adventures:</p><p>Surrounded by forests, lakes, and mountains, Rotorua is an outdoor enthusiast\'s paradise. The Redwood Forest offers an exhilarating treetop canopy walk, while the Whakarewarewa Forest boasts world-class mountain biking trails. Rotorua\'s lakes are perfect for kayaking, fishing, and water sports.</p><p>Rotorua\'s Lakes:</p><p>Rotorua is blessed with a series of stunning lakes, each with its unique charm. Lake Rotorua, the largest, offers scenic cruises and opportunities for trout fishing. Lake Tarawera\'s pristine waters are perfect for swimming and exploring the enchanting Hot Water Beach.</p><p>Adventure Capital:</p><p>Rotorua is also an adrenaline junkie\'s dream. Experience the thrill of ziplining, jet boating, and white-water rafting. Don\'t miss the chance to plummet down the Ogo, a giant inflatable ball, in a gravity-fueled frenzy.</p><p>Thermal Mud Spas:</p><p>Rotorua\'s geothermal activity has given rise to unique spa experiences. Relax in a thermal mud bath or indulge in a mud wrap, believed to have healing properties for the skin. These spa treatments are a perfect blend of relaxation and rejuvenation.</p><p>Conclusion:</p><p>Rotorua, with its geothermal wonders, vibrant Maori culture, and outdoor adventures, offers an extraordinary journey into the heart of New Zealand. Whether you\'re seeking relaxation, cultural enrichment, or adrenaline-pumping thrills, Rotorua invites you to immerse yourself in the wonders of nature and the warmth of Maori hospitality. It\'s a place where the earth speaks, and the spirit of Aotearoa comes alive.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,23350,1,NULL,NULL,'Rotorua',0,NULL,NULL,NULL,NULL,NULL,'206_1695108824.png','206_1695108824.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Rotorua New Zealand\r\nGeothermal wonderland\r\nRotorua mud pools\r\nNew Zealand geysers\r\nMaori cultural experiences','\"Rotorua, New Zealand: The Geothermal Wonderland\"','','',NULL,NULL,NULL,1),(207,NULL,NULL,'\"Embark on a wildlife expedition in Ramnagar with iNeedTrip. Explore Jim Corbett National Park, spot tigers, and enjoy the beauty of Uttarakhand.\"',NULL,'<p>Ramnagar is a small town located in the Nainital district of the northern Indian state of Uttarakhand. Nestled in the foothills of the Kumaon region of the Himalayas, Ramnagar is renowned for its natural beauty, proximity to the Jim Corbett National Park, and its significance as a gateway to one of India\'s most famous wildlife sanctuaries. Here are some key highlights of Ramnagar:</p><p>1. Jim Corbett National Park:</p><p>The Jim Corbett National Park, India\'s oldest national park, is the main attraction in Ramnagar. It was established in 1936 to protect the Bengal tiger and other endangered species. The park is named after the renowned British hunter and conservationist Jim Corbett, who played a crucial role in its creation.</p><p>Jim Corbett National Park is a haven for wildlife enthusiasts and nature lovers. It is home to a diverse range of wildlife, including Bengal tigers, elephants, leopards, spotted deer, sloth bears, and a variety of bird species.</p><p>2. Wildlife Safaris:</p><p>Visitors to Ramnagar can embark on thrilling wildlife safaris within the national park. These safaris, whether by jeep or on the back of an elephant, provide an opportunity to spot and photograph the park\'s wildlife in their natural habitat.</p><p>3. Dhikala Zone:</p><p>The Dhikala Zone within Jim Corbett National Park is one of the most popular zones for wildlife safaris. It offers picturesque landscapes, grasslands, and riverbeds where animals often gather.</p><p>4. Fishing and Angling:</p><p>The Ramganga River, which flows through Jim Corbett National Park, is an excellent spot for fishing and angling. It\'s known for the variety of fish species found in its waters.</p><p>5. Nature Walks:</p><p>Ramnagar and the surrounding areas offer numerous opportunities for nature walks and birdwatching. The lush forests and riverbanks provide a serene setting for these activities.</p><p>6. Corbett Museum:</p><p>The Corbett Museum, located in Kaladhungi, is dedicated to the life and work of Jim Corbett. It houses personal belongings, photographs, and artifacts related to the legendary hunter and conservationist.</p><p>7. Dhikuli Village:</p><p>Dhikuli is a charming village located near Ramnagar and is a great place to experience the local culture and traditions of the Kumaoni people.</p><p>8. Adventure Activities:</p><p>Ramnagar and its surroundings offer adventure activities such as river rafting, rock climbing, and rappelling, making it an ideal destination for adventure enthusiasts.</p><p>9. Accessibility:</p><p>Ramnagar is well-connected by road and rail. The nearest major railway station is Ramnagar Railway Station, which is linked to several major cities in India. The town is also accessible by road from nearby cities like Nainital and Delhi.</p><p>10. Accommodation:</p><p>- There are various accommodation options in Ramnagar, ranging from budget guesthouses to luxury resorts. Many lodges and resorts also offer wildlife safari packages.</p><p>11. Birdwatching:</p><p>- The area around Ramnagar is a paradise for birdwatchers, with numerous species of resident and migratory birds.</p><p>In summary, Ramnagar is a nature lover\'s paradise and a gateway to the captivating wilderness of Jim Corbett National Park. Whether you\'re interested in wildlife safaris, nature walks, or simply enjoying the tranquility of the Himalayan foothills, Ramnagar offers a unique and rejuvenating experience in the lap of nature.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,22538,1,NULL,NULL,'Ramnagar',0,NULL,NULL,NULL,NULL,NULL,'207_1695725134.png','207_1695725134.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ramnagar safari, Uttarakhand wildlife, tiger sightings','\"Ramnagar\'s Wildlife Expedition with iNeedTrip\"','','',NULL,NULL,NULL,1),(208,NULL,NULL,'\"Experience the adventure capital of the world in Queenstown, New Zealand. Discover adrenaline-pumping activities, stunning landscapes, and Kiwi hospitality.\"',NULL,'<p>Queenstown, nestled on the shores of Lake Wakatipu on New Zealand\'s South Island, is renowned as the \"Adventure Capital of the World.\" This breathtaking alpine resort town offers a unique blend of stunning natural beauty, adrenaline-pumping activities, and a vibrant cultural scene. Whether you seek adventure, relaxation, or a bit of both, Queenstown has something for everyone.</p><p>Natural Beauty:</p><p>Queenstown\'s location is nothing short of spectacular. Surrounded by the Southern Alps and nestled along the pristine waters of Lake Wakatipu, the town is a visual masterpiece. The Remarkables mountain range, with its jagged peaks, serves as a stunning backdrop for the town.</p><p>Adventure Capital:</p><p>If you\'re an adrenaline junkie, Queenstown is your playground. The town offers a plethora of heart-pounding activities, from bungee jumping off the historic Kawarau Bridge to jet boating through the Shotover Canyon\'s narrow canyons. Queenstown is also a gateway to the Southern Hemisphere\'s premier ski resorts, making it a winter sports paradise.</p><p>Famous for Fergburger:</p><p>No visit to Queenstown is complete without sinking your teeth into a Fergburger. These legendary burgers are famous worldwide for their deliciousness and are a must-try for foodies. The town\'s dining scene is diverse, offering a wide range of international and local cuisines.</p><p>Wine and Relaxation:</p><p>The nearby Central Otago wine region is famous for its world-class pinot noir. Take a wine tour and savor some of the finest vintages while soaking in the stunning vineyard views. Afterward, unwind at one of the many luxury spas in town.</p><p>Outdoor Adventures:</p><p>Beyond adrenaline sports, Queenstown is a paradise for hikers, mountain bikers, and nature enthusiasts. Explore nearby Fiordland National Park, famous for the Milford Track, one of the world\'s most beautiful hikes. Or cruise the serene waters of Milford Sound, where waterfalls cascade from sheer rock faces.</p><p>Cultural Experiences:</p><p>Queenstown\'s vibrant arts scene and rich Maori heritage offer cultural experiences for all. Visit the Lakes District Museum to learn about the region\'s history or enjoy a traditional Maori performance and hangi feast.</p><p>Conclusion:</p><p>Queenstown, New Zealand, is a destination that embodies the spirit of adventure, the beauty of nature, and the warmth of Kiwi hospitality. Whether you\'re leaping off cliffs, savoring world-class cuisine, or simply taking in the breathtaking landscapes, Queenstown promises an unforgettable journey where adventure meets paradise.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,22373,1,NULL,NULL,'Queenstown',0,NULL,NULL,NULL,NULL,NULL,'208_1695108410.png','208_1695108410.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Queenstown New Zealand\r\nAdventure capital\r\nQueenstown adventure activities\r\nNew Zealand landscapes\r\nKiwi hospitality','\"Queenstown, New Zealand: Adventure Capital of the World\"','','',NULL,NULL,NULL,1),(209,NULL,NULL,'\"Begin your Patagonian adventure in Punta Arenas, Chile, the gateway to Patagonia\'s end. Explore penguins, fjords, and the wild beauty of the south.\"',NULL,'<p>Punta Arenas, the southernmost city on the Chilean mainland, is a captivating destination at the edge of the world. Located in the Magallanes Region of Chile, this city boasts a unique blend of history, natural beauty, and adventure. As the gateway to Antarctica and the southernmost point of the South American continent, Punta Arenas is an explorer\'s dream and a place where the past meets the present.</p><p>Historical Significance:</p><p>Punta Arenas has a rich history, deeply intertwined with the age of exploration. Founded in the mid-19th century, the city became a vital stop for ships traveling through the treacherous waters of the Strait of Magellan. The remnants of this maritime history are visible in the city\'s architecture, museums, and the iconic Monumento al Ovejero, a tribute to the region\'s sheep farming heritage.</p><p>Natural Beauty:</p><p>The surrounding landscapes are nothing short of breathtaking. The city is nestled between the Strait of Magellan and the rugged Patagonian wilderness. Visitors can explore nearby natural wonders, such as the stunning Torres del Paine National Park, renowned for its granite spires and pristine lakes. Wildlife enthusiasts will revel in the opportunity to spot penguins, sea lions, and various bird species on the nearby islands.</p><p>Adventure Capital:</p><p>Punta Arenas is a launchpad for epic adventures. Take a boat tour to Magdalena Island to witness thousands of Magellanic penguins in their natural habitat. Embark on a glacier trek in the nearby Andes mountains or traverse the fjords of Tierra del Fuego. The city\'s proximity to Antarctica also makes it a hub for expeditions to the frozen continent.</p><p>Cultural Richness:</p><p>The city\'s cultural scene is a blend of indigenous heritage and European influences. Visit the Museo Regional de Magallanes to delve into the history of the region, or explore the Palacio Sara Braun, a mansion that reflects the opulence of the 19th century. Local cuisine is a treat, featuring Patagonian lamb and fresh seafood.</p><p>Conclusion:</p><p>Punta Arenas, with its history, natural beauty, and adventurous spirit, beckons travelers seeking a unique and unforgettable experience. Whether you\'re drawn to the thrill of exploring the wild landscapes of Patagonia, the allure of Antarctic expeditions, or the charm of a city where history and modernity converge, Punta Arenas is a destination that will leave you with enduring memories of the southernmost reaches of the world.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,22242,1,NULL,NULL,'Punta Arenas',0,NULL,NULL,NULL,NULL,NULL,'209_1695107831.png','209_1695107889.png','Chile','45',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Punta Arenas Chile\r\nPatagonia gateway\r\nPunta Arenas penguins\r\nChilean fjords\r\nPatagonian beauty','\"Punta Arenas, Chile: Gateway to Patagonia\'s End\"','','',NULL,NULL,NULL,1),(211,NULL,NULL,'Explore Picton, a picturesque coastal town nestled in the heart of New Zealand\'s South Island. Discover its stunning landscapes, rich marine life, and vibrant culture. Plan your visit today!',NULL,'<p>Welcome to Picton, a hidden gem nestled on the northern tip of New Zealand\'s South Island. This picturesque coastal town is renowned for its stunning natural beauty, rich marine life, and vibrant cultural scene. Whether you\'re seeking adventure in the great outdoors or simply looking for a tranquil escape, Picton has something special to offer every traveler.</p><p>Scenic Beauty:</p><p>Picton is your gateway to the mesmerizing Marlborough Sounds, a network of ancient sunken river valleys now flooded by the sea. The town is surrounded by lush forests and rolling hills, creating a stunning backdrop for your visit. The Queen Charlotte Sound, in particular, is a must-see, with its crystal-clear waters and serene bays.</p><p>Marine Life:</p><p>Marine enthusiasts will be in paradise in Picton. The waters around the Marlborough Sounds are teeming with marine life. Take a wildlife tour or go dolphin watching to get up close and personal with these intelligent creatures. If you\'re lucky, you might even spot some playful seals or whales.</p><p>Culture and Activities:</p><p>Despite its small size, Picton has a vibrant cultural scene. Explore local art galleries, boutiques, and charming cafés that showcase the town\'s creative spirit. Don\'t miss the chance to savor delicious seafood at waterfront restaurants.</p><p>For adventure seekers, Picton offers an array of outdoor activities. Hike the renowned Queen Charlotte Track, known for its breathtaking views and diverse landscapes. Take to the water for kayaking, sailing, or fishing. The choices are endless.</p><p>Plan Your Visit:</p><p>Whether you\'re an outdoor enthusiast, a nature lover, or simply seeking a serene coastal escape, Picton has it all. Plan your visit today and immerse yourself in the scenic beauty, rich marine life, and vibrant culture of this charming coastal gem in New Zealand\'s South Island. Picton awaits your discovery!</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,21359,1,NULL,NULL,'Picton',0,NULL,NULL,NULL,NULL,NULL,'211_1695105482.png','211_1695105482.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Picton, New Zealand, South Island, coastal town, Marlborough Sounds, scenic beauty, marine life, culture, travel destination, activities, Queen Charlotte Sound, hiking trails, water adventures.','Discover Picton: A Charming Coastal Gem in New Zealand','','',NULL,NULL,NULL,1),(213,NULL,NULL,'\"Explore Noida\'s modern urban oasis with iNeedTrip. Discover shopping hubs, entertainment centers, and the vibrant lifestyle of Delhi\'s satellite city.\"',NULL,'<p>Noida, short for New Okhla Industrial Development Authority, is a planned city located in the northern Indian state of Uttar Pradesh. It is part of the National Capital Region (NCR) and is situated just across the Yamuna River from Delhi. Noida is known for its modern infrastructure, rapidly developing urban landscape, and its role as a major hub for information technology and industrial sectors. Here are some key highlights of Noida:</p><p>1. Planned City:</p><p>Noida was established in the 1970s as a planned city to accommodate the growing population and industrial needs of Delhi. It is known for its well-organized layout, wide roads, green spaces, and modern amenities.</p><p>2. Economic Hub:</p><p>Noida has evolved into a significant economic hub, with a thriving IT and software services industry. The city is home to numerous technology parks, office complexes, and multinational corporations.</p><p>The Noida Special Economic Zone (NSEZ) has played a crucial role in attracting investment and fostering economic growth.</p><p>3. Education and Institutions:</p><p>Noida boasts several prestigious educational institutions, including Amity University, Jaypee Institute of Information Technology, and the Indian Institute of Technology Delhi\'s extension campus.</p><p>4. Residential and Commercial Development:</p><p>The city offers a wide range of residential options, from high-rise apartments to luxury villas and gated communities. The commercial sector includes shopping malls, multiplexes, and business districts.</p><p>Sector 18, also known as the Atta Market, is a popular commercial hub with numerous shops, restaurants, and entertainment options.</p><p>5. Entertainment and Recreation:</p><p>Noida offers various recreational and entertainment options. The Great India Place Mall, Worlds of Wonder amusement park, and DLF Mall of India are popular destinations for shopping and entertainment.</p><p>The city has numerous parks and green spaces, including the Noida Golf Course and Botanical Garden, where residents can enjoy leisure activities.</p><p>6. Connectivity:</p><p>Noida is well-connected to Delhi and other parts of the NCR through an extensive network of metro lines, expressways, and roads. The Delhi Metro\'s Blue Line, Aqua Line, and Magenta Line connect Noida to different parts of Delhi.</p><p>The Noida-Greater Noida Expressway provides quick connectivity to Greater Noida and Yamuna Expressway.</p><p>7. Cultural Diversity:</p><p>Noida is a diverse city with people from various regions and cultures living and working here. This cultural diversity is reflected in the city\'s food, festivals, and celebrations.</p><p>8. Residential Sectors:</p><p>Noida is divided into sectors, each with its own residential and commercial developments. The sectors are well-planned and are known for their organized layout and amenities.</p><p>9. Green Initiatives:</p><p>Noida has taken steps to promote green and sustainable practices. It has implemented waste management programs, planted trees, and promoted eco-friendly transportation options.</p><p>10. Sports Facilities:</p><p>- The city has sports facilities like the Noida Cricket Stadium and the Noida Golf Course, catering to the interests of sports enthusiasts.</p><p>In summary, Noida is a modern, planned city that has evolved into a thriving economic and residential hub. It offers a quality of life that combines urban convenience with green spaces and recreational opportunities. As part of the Delhi-NCR region, Noida continues to grow and develop, attracting businesses, educational institutions, and residents from across India and beyond.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,19543,1,NULL,NULL,'Noida',0,NULL,NULL,NULL,NULL,NULL,'213_1695642278.png','213_1695642278.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Noida tours, modern urbanism, Delhi NCR','\"Noida\'s Modern Urban Oasis with iNeedTrip\"','','',NULL,NULL,NULL,1),(214,NULL,NULL,'Discover Montenegro, a small but stunning country on the Adriatic coast. From the medieval charm of Kotor to the breathtaking beauty of Durmitor National Park, Montenegro offers diverse landscapes, rich history, and a warm Mediterranean atmosphere',NULL,'<p>Montenegro, often referred to as the \"Pearl of the Adriatic,\" is a small but captivating country located in Southeastern Europe on the Balkan Peninsula. This picturesque nation offers a wealth of natural beauty, historical sites, and a unique blend of Mediterranean and Balkan cultures. Here is an overview of Montenegro.Montenegro is known for its diverse landscapes. The rugged Dinaric Alps dominate the country\'s interior, featuring dramatic mountains, deep canyons, and pristine lakes. The country\'s 293 kilometers (182 miles) of Adriatic coastline provide stunning beaches and picturesque coastal towns.Montenegro has a rich and complex history, with roots dating back to ancient times. It was once part of the medieval Serbian and Byzantine Empires, and it has a history of Montenegrin dynasties and Ottoman rule. In the 20th century, it was part of the former Yugoslavia before gaining independence in 2006.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18208,1,NULL,NULL,'Montenegro',0,NULL,NULL,NULL,NULL,NULL,'214_1694766921.png','214_1694766921.png','MONTENEGRO','466',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Montenegro travel\r\nAdriatic coast destinations\r\nKotor Bay UNESCO\r\nDurmitor National Park\r\nMontenegro history\r\nMediterranean charm\r\nBalkans vacation\r\nBudva beaches\r\nMontenegrin culture\r\nAdriatic Sea beauty','Explore the Beauty of Montenegro: A Hidden Gem in the Balkans','','',NULL,NULL,NULL,1),(215,NULL,NULL,'\"Explore Meerut\'s historic heritage with iNeedTrip. Visit ancient sites, cultural landmarks, and delve into the rich history of Uttar Pradesh.\"',NULL,'<p>Meerut is a historic city located in the northern Indian state of Uttar Pradesh. It holds a significant place in India\'s history and is known for its rich cultural heritage, historical significance, and economic importance. Here are some key highlights of Meerut:</p><p>1. Historical Significance:</p><p>Meerut has a long and storied history that dates back to ancient times. It is believed to be one of the oldest cities in the Indian subcontinent, with references to it found in various ancient texts and scriptures.</p><p>The city played a pivotal role in the Indian Rebellion of 1857, also known as the First War of Independence. Meerut was the site of the famous Sepoy Mutiny, which marked a significant turning point in India\'s struggle for independence from British colonial rule.</p><p>2. Meerut Cantt:</p><p>Meerut Cantonment, often referred to as Meerut Cantt, is an important military establishment and one of the city\'s key areas. It houses several army regiments and is known for its well-planned layout and green spaces.</p><p>3. Educational Hub:</p><p>Meerut is home to several educational institutions, including Chaudhary Charan Singh University (formerly Meerut University) and various engineering, medical, and management colleges.</p><p>4. Sports Hub:</p><p>The city has a strong sports culture and is known for producing renowned athletes, particularly in sports like field hockey and cricket. The city has produced several Indian hockey players who have represented the country in international competitions.</p><p>5. Industry and Economy:</p><p>Meerut has a thriving industrial sector and is known for its production of sports goods, musical instruments, handlooms, and scissors. The city is also a hub for trade and commerce.</p><p>The city\'s \"Meerut scissors\" are famous for their quality and craftsmanship, and they are exported to various countries.</p><p>6. Religious Diversity:</p><p>Meerut is known for its religious diversity, with various temples, mosques, gurdwaras, and churches coexisting harmoniously. The Augarnath Temple, Jama Masjid, and Basilica of Our Lady of Graces are some of the prominent religious sites in the city.</p><p>7. Cuisine:</p><p>The cuisine of Meerut is a reflection of the diverse culinary traditions of North India. The city is famous for its street food, including chaat, kebabs, and sweets like \"petha.\"</p><p>Meerut\'s chaat, particularly the \"kali mirc\" chaat, is a popular local delicacy.</p><p>8. Connectivity:</p><p>Meerut is well-connected to major cities in North India by road and rail. The city\'s proximity to the national capital, Delhi, makes it an important part of the National Capital Region (NCR).</p><p>9. Cultural Events:</p><p>Meerut hosts various cultural events and festivals throughout the year, showcasing the city\'s vibrant heritage. The city\'s fairs and melas are popular attractions, drawing visitors from the surrounding areas.</p><p>In summary, Meerut is a city that seamlessly blends its historical legacy with modern developments. It serves as an important center for education, industry, and culture in the state of Uttar Pradesh. Whether you\'re interested in exploring its historical sites, savoring its culinary delights, or experiencing its diverse culture, Meerut offers a unique and enriching experience for travelers and residents alike.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34298,1,NULL,NULL,'Meerut',0,NULL,NULL,NULL,NULL,NULL,'215_1695640310.png','215_1695640310.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Meerut tours, Uttar Pradesh heritage, historical exploration','\"Meerut\'s Historic Heritage with iNeedTrip\"','','',NULL,NULL,NULL,1),(216,NULL,NULL,'\"Discover Macedonia, a Balkan jewel known for its rich heritage and natural beauty. Explore historic sites, scenic landscapes, and Balkan culture.\"',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16241,1,NULL,NULL,'Macedonia',0,NULL,NULL,NULL,NULL,NULL,'216_1694690461.png','216_1694690461.png','USA','231',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Macedonia Balkan heritage\r\nMacedonian natural beauty\r\nMacedonia historic sites\r\nBalkan culture\r\nMacedonian landscapes','\"Macedonia: A Balkan Jewel of Heritage and Nature\"','','',NULL,NULL,NULL,1),(217,NULL,NULL,'\"Explore Lucknow\'s Nawabi culture with iNeedTrip. Visit historic monuments, savor delectable cuisine, and experience the royal charm of Uttar Pradesh.\"',NULL,'<p>Lucknow, often referred to as the \"City of Nawabs\" or the \"Golden City of India,\" is the capital city of the northern Indian state of Uttar Pradesh. It is a city steeped in history and known for its rich cultural heritage, architectural marvels, and a unique blend of traditional and modern elements. Here are some key highlights of Lucknow:</p><p>1. Historical Significance: Lucknow has a rich and storied history that dates back to ancient times. It became a prominent city during the Mughal era and later served as the seat of the Nawabs of Awadh (Oudh). The city\'s historical legacy is evident in its many architectural wonders, which include palaces, mosques, and grand buildings.</p><p>2. Architectural Marvels:</p><p>Bara Imambara: This grand edifice, built by Nawab Asaf-ud-Daula in the 18th century, is one of the most significant landmarks in Lucknow. It houses the massive Asfi mosque and the labyrinthine Bhool Bhulaiya (maze) that is a popular tourist attraction.</p><p>Chota Imambara: Also known as the Hussainabad Imambara, it is another architectural gem built by Nawab Muhammad Ali Shah. The complex includes a mosque, a stepwell, and a beautiful garden.</p><p>Rumi Darwaza: Often referred to as the Turkish Gate, this imposing structure is a fine example of Awadhi architecture and is considered one of the iconic symbols of Lucknow.</p><p>Residency: The British Residency, a historic site that played a significant role during the Indian Rebellion of 1857, is a hauntingly beautiful complex with ruined buildings that stand as a testament to the city\'s colonial history.</p><p>3. Culture and Cuisine:</p><p>Awadhi Cuisine: Lucknow is renowned for its delectable Awadhi cuisine, which includes dishes like kebabs, biryanis, and various types of bread like paratha and sheermal. Tunday Kababi and Idris ki Biryani are famous eateries.</p><p>Cultural Festivals: The city celebrates various cultural festivals with great fervor. Diwali, Eid, and Holi are widely celebrated, and Lucknow Mahotsav is an annual cultural festival that showcases the city\'s art, music, and dance traditions.</p><p>4. Literature and Arts:</p><p>Lucknow has a rich literary and artistic heritage. The city has been a hub for Urdu poetry and is associated with renowned poets like Mir Taqi Mir and Mirza Ghalib.</p><p>It is also famous for its Chikankari embroidery, which is known for its intricate handwork and is widely recognized as a traditional art form.</p><p>5. Education and Institutions:</p><p>Lucknow is home to several prestigious educational institutions, including the University of Lucknow, King George\'s Medical University, and the Indian Institute of Management Lucknow (IIM Lucknow).</p><p>6. Modern Development:</p><p>The city has seen significant modernization and urban development in recent years. It boasts modern malls, multiplexes, and a thriving IT and business process outsourcing (BPO) sector.</p><p>7. Transport and Connectivity:</p><p>Lucknow is well-connected by air, rail, and road. Chaudhary Charan Singh International Airport offers domestic and international flights. The city is also well-connected by train to major Indian cities.</p><p>The Lucknow Metro, inaugurated in 2017, has improved local transportation.</p><p>In summary, Lucknow is a city that beautifully combines its rich historical heritage with modern development. It offers a unique blend of culture, cuisine, and architectural marvels that make it a fascinating destination for travelers and history enthusiasts. Whether you\'re exploring its historical sites, savoring its cuisine, or enjoying its cultural festivals, Lucknow provides a captivating experience that reflects the essence of North India.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,16028,1,NULL,NULL,'Lucknow',0,NULL,NULL,NULL,NULL,NULL,'217_1695639326.png','217_1695639326.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Lucknow tours, Uttar Pradesh culture, Nawabi heritage','\"Lucknow\'s Nawabi Culture with iNeedTrip\"','','',NULL,NULL,NULL,1),(218,NULL,NULL,'\"Discover the enchanting beauty of Kotor, Montenegro. Explore its medieval old town, scenic bay, and the allure of the Adriatic coast.\"',NULL,'<p>Kotor was a historically significant town located in the former Yugoslavia, which was a country in Southeastern Europe that existed from 1918 to 1992. During this time, Kotor was part of the Yugoslav Republic of Montenegro, which was one of the constituent republics within the larger Yugoslav federation. Here\'s a brief overview of Kotor during its time as part of Yugoslavia:</p><p>Yugoslav Period (1918-1992):</p><p>Following World War I, the Kingdom of Yugoslavia was formed in 1918, bringing together several South Slavic regions, including Serbia, Montenegro, Croatia, Slovenia, and others, into a single country.</p><p>Kotor, located within the boundaries of Montenegro, became a part of the Kingdom of Yugoslavia.</p><p>During the Yugoslav era, Kotor continued to be an important coastal town in Montenegro, known for its historical and cultural significance.</p><p>Cultural and Historical Significance:</p><p>Kotor\'s old town, with its well-preserved medieval architecture and fortifications, was recognized as a UNESCO World Heritage Site in 1979. This designation highlighted the town\'s cultural and historical importance.</p><p>Throughout the Yugoslav period, Kotor retained its status as a significant cultural and tourist destination, attracting visitors with its rich history, scenic beauty, and coastal charm.</p><p>Economic Activities:</p><p>Kotor\'s economy during the Yugoslav era was influenced by the larger economic framework of the federation. It was known for its tourism industry, which attracted both domestic and international visitors, drawn by the town\'s beauty and cultural heritage.</p><p>Fishing and maritime activities also played a role in the local economy, given Kotor\'s coastal location along the Adriatic Sea.</p><p>Post-Yugoslavia Period (1992 Onward):</p><p>The dissolution of Yugoslavia in the early 1990s resulted in significant political and territorial changes. Montenegro remained a part of the Federal Republic of Yugoslavia (later renamed Serbia and Montenegro) until gaining independence in 2006.</p><p>Kotor, now part of independent Montenegro, continued to thrive as a tourist destination, drawing visitors from around the world.</p><p>Today, Kotor remains a picturesque coastal town with a rich history, but it is now a part of the independent country of Montenegro rather than Yugoslavia. Its UNESCO-protected old town, scenic bay, and cultural heritage continue to make it a popular destination for travelers seeking a blend of history, natural beauty, and coastal charm in the Balkans.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14435,1,NULL,NULL,'Kotor',0,NULL,NULL,NULL,NULL,NULL,'218_1694686975.png','218_1694686975.png','Yugoslavia','241',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kotor Montenegro\r\nMontenegro old town\r\nKotor Bay beauty\r\nAdriatic coast vacations\r\nMontenegro attractions','\"Kotor, Montenegro: Jewel of the Adriatic\"','','',NULL,NULL,NULL,1),(220,NULL,NULL,'\"Visit Kaikoura, New Zealand, a place where oceans and mountains meet. Witness marine life, explore coastal beauty, and enjoy adventure.\"',NULL,'<p>Kaikoura, nestled on the rugged east coast of New Zealand\'s South Island, is a place where the enchanting beauty of nature takes center stage. This coastal town, with its stunning landscapes and rich marine life, offers an unforgettable experience for travelers seeking adventure, relaxation, and a deep connection with the natural world.</p><p>Key Highlights:</p><p>Whale Watching: Kaikoura is renowned as one of the world\'s best places for whale watching. Join a tour and witness the majestic sperm whales that frequent the deep waters just offshore. You might also spot dolphins, orcas, and various seabird species.</p><p>Seal Colony: The Kaikoura Peninsula is home to a large seal colony. Take a walk along the Kaikoura Peninsula Walkway to observe playful fur seals and their pups in their natural habitat.</p><p>Kaikoura Ranges: Immerse yourself in the lush beauty of the Kaikoura Ranges, which provide a stunning backdrop to the town. Hiking and trekking trails offer opportunities for exploration and breathtaking views.</p><p>Kaikoura Marine Aquarium: Learn about the region\'s marine life at this educational aquarium. It\'s a great place for families to get up close to local marine creatures, including sea stars and crayfish.</p><p>Kaikoura Peninsula Walkway: Enjoy a scenic hike along this track that winds along the coastline and cliffs, offering panoramic views of the ocean and Kaikoura\'s dramatic landscape.</p><p>Dolphin Encounter: Swim with dusky dolphins in their natural environment. Kaikoura is one of the few places in the world where you can have this extraordinary experience.</p><p>Fresh Seafood: Kaikoura is renowned for its seafood, particularly crayfish (rock lobster). Savor this delicacy at local restaurants and seafood shacks.</p><p>Maori Culture: Learn about the rich Maori heritage of the area by visiting the historic Fyffe House or engaging in cultural experiences offered by local guides.</p><p>Fyffe House: Explore this preserved 19th-century cottage, which is one of the oldest surviving buildings in Kaikoura. It offers insights into the area\'s whaling history.</p><p>Star Gazing: Kaikoura\'s remote location and clear skies make it an excellent spot for stargazing. Join a guided tour to witness the wonders of the southern night sky.</p><p>Kaikoura Lavender Farm: Relax amidst fields of fragrant lavender, explore the farm\'s gardens, and enjoy lavender-infused products and refreshments.</p><p>Bird Watching: Kaikoura is a birdwatcher\'s paradise. Spot a variety of seabirds, including albatross and petrels, as well as native forest birds.</p><p>Kaikoura\'s natural beauty, diverse wildlife, and outdoor adventures make it a must-visit destination for nature enthusiasts and those looking to experience New Zealand\'s untamed coastal charm. Whether you\'re marveling at marine giants, hiking along scenic trails, or savoring the freshest seafood, Kaikoura offers an extraordinary journey into the heart of nature\'s wonders.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,13345,1,NULL,NULL,'Kaikoura',0,NULL,NULL,NULL,NULL,NULL,'220_1694672015.png','220_1694672015.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kaikoura New Zealand\r\nKaikoura marine life\r\nNew Zealand coastal beauty\r\nKaikoura adventures\r\nNew Zealand wildlife','\"Kaikoura, New Zealand: Where Oceans and Mountains Meet\"','','',NULL,NULL,NULL,1),(221,NULL,NULL,'\"Explore Ilulissat, Greenland, the \'Iceberg Capital of the World.\' Witness massive icebergs, Arctic wildlife, and the wonders of the North.\"',NULL,'<p>Ilulissat, often referred to as the \"Iceberg Capital of the World,\" is a mesmerizing town on the west coast of Greenland that offers travelers a front-row seat to the breathtaking wonders of the Arctic. Situated near the stunning Ilulissat Icefjord, a UNESCO World Heritage Site, this destination is a haven for nature enthusiasts, adventurers, and anyone seeking to experience the raw, icy beauty of the north. Here\'s what makes Ilulissat a remarkable place to visit:</p><p>Key Highlights:</p><p>Ilulissat Icefjord: The crowning jewel of Ilulissat, this fjord is a breathtaking natural wonder. It\'s home to immense icebergs that calve from the Sermeq Kujalleq Glacier, creating an ever-changing landscape of ice. Witnessing these colossal ice formations from a boat tour or hiking along the designated trails is an unforgettable experience.</p><p>Arctic Adventures: Ilulissat offers a plethora of Arctic adventures. Join guided tours to go dog sledding, snowmobiling, kayaking among icebergs, or hiking in the nearby backcountry. These excursions allow you to get up close and personal with the Arctic wilderness.</p><p>Midnight Sun and Northern Lights: Depending on the time of year, visitors can enjoy the unique phenomenon of the midnight sun during summer or chase the mesmerizing Northern Lights in the dark winter skies. Both provide extraordinary displays of nature\'s wonders.</p><p>Inuit Culture: Gain insight into the rich culture of the Inuit people who call Ilulissat home. Visit the local museum to learn about the history, traditions, and way of life of the indigenous population. You can also attend cultural performances and purchase traditional Inuit art and crafts.</p><p>Whale Watching: Ilulissat is a fantastic place for whale watching. Embark on a boat tour to observe humpback whales, minke whales, and even the occasional orca as they frolic in the frigid waters of Disko Bay.</p><p>Serene Hikes: The surrounding wilderness offers numerous hiking trails that take you through tundra landscapes, providing excellent opportunities for birdwatching, spotting Arctic wildlife like reindeer, and enjoying the tranquility of the Arctic wilderness.</p><p>Local Cuisine: Sample Greenlandic cuisine at the town\'s restaurants and cafes. Try local delicacies like \"Mattak\" (whale skin and blubber) or \"Kalaallit Kaagiat\" (seal soup). Be sure to savor fresh seafood, including halibut and Arctic char.</p><p>Photography Paradise: Ilulissat\'s stunning landscapes make it a dream destination for photographers. Capture the play of light on icebergs, the vivid colors of the Arctic skies, and the majestic beauty of the icefjord.</p><p>Iceberg Cruises: Take a boat tour to get up close to the icebergs. The sight of these massive ice sculptures, often with vivid blue streaks, is a visual spectacle that leaves a lasting impression.</p><p>Sustainable Tourism: Ilulissat is committed to sustainable tourism practices, ensuring that the environment and local culture are preserved. Participate in eco-friendly activities and support local businesses to contribute to responsible travel.</p><p>Ilulissat\'s otherworldly beauty, combined with its unique cultural heritage, makes it a destination like no other. Whether you\'re gazing at icebergs under the midnight sun, exploring Arctic landscapes, or immersing yourself in Inuit traditions, Ilulissat promises an unforgettable Arctic adventure that will stay with you forever.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,12662,1,NULL,NULL,'Ilulissat',0,NULL,NULL,NULL,NULL,NULL,'221_1694668599.png','221_1694668599.png','Greenland','87',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ilulissat Greenland\r\nGreenlandic icebergs\r\nArctic wildlife\r\nIlulissat experiences\r\nNorth Greenland beauty','\"Ilulissat, Greenland: Discover the Iceberg Capital\"','','',NULL,NULL,NULL,1),(222,NULL,NULL,'Discover Gurugram (Gurgaon), India\'s bustling corporate hub that seamlessly blends modernity with green spaces. Explore its skyscrapers, shopping malls, and vibrant culture.',NULL,'<p>Gurgaon, officially known as Gurugram, is a dynamic and rapidly growing city situated in the National Capital Region (NCR) of India. Often referred to as the \"Millennium City,\" Gurgaon has transformed from a dusty suburb to a bustling metropolis known for its skyscrapers, corporate offices, and a vibrant urban lifestyle. In this blog, we\'ll embark on a journey to explore the diverse attractions and experiences that make Gurgaon an exciting destination.</p><p>Skyscraper Wonderland:</p><p>Gurgaon\'s skyline is a testament to India\'s rapid urbanization. It\'s dotted with iconic skyscrapers, including Cyber City and Cyber Hub, which house multinational corporations, restaurants, and entertainment venues.</p><p>Shopping Extravaganza:</p><p>The city is a shopper\'s paradise with numerous malls and shopping centers. DLF Mall of India, Ambience Mall, and MG Road\'s designer boutiques offer a wide range of shopping experiences.</p><p>Culinary Delights:</p><p>Gurgaon\'s dining scene is a gastronomic adventure. You can savor cuisines from around the world at the city\'s numerous restaurants, cafes, and street food stalls.</p><p>Urban Parks and Green Spaces:</p><p>Amid the urban hustle, Gurgaon offers pockets of greenery. Leisure Valley Park, Aravalli Biodiversity Park, and Tau Devi Lal Biodiversity Park provide peaceful escapes from the city\'s buzz.</p><p>Kingdom of Dreams:</p><p>Kingdom of Dreams is a unique entertainment and cultural complex where you can experience India\'s diverse art, music, and cuisine through spectacular shows and events.</p><p>Corporate Hub:</p><p>Gurgaon is a major corporate and business hub, housing the Indian offices of numerous multinational companies. Its thriving job market and modern infrastructure attract professionals from across the country.</p><p>Cyber Hub Nightlife:</p><p>Cyber Hub, Gurgaon\'s nightlife epicenter, comes alive after dark. It\'s the perfect place to unwind with friends, enjoy live music, or savor gourmet cuisine at late-night eateries.</p><p>Art Galleries and Cultural Spaces:</p><p>Gurgaon has a burgeoning art scene with galleries like the Devi Art Foundation and the Artyj Gallery showcasing contemporary Indian art.</p><p>Events and Festivals:</p><p>The city hosts a variety of events and festivals, including the Gurgaon International Film and Literature Festival and the Vintage Car Rally, adding to its cultural vibrancy.</p><p>Connectivity:</p><p>Gurgaon\'s strategic location provides easy access to Delhi and other NCR cities. It is well-connected by road and metro, making it convenient for both residents and visitors.</p><p>Conclusion:</p><p>Gurgaon, with its towering skyscrapers, cosmopolitan culture, and vibrant lifestyle, is a destination that caters to diverse interests. Whether you\'re exploring the corporate world, indulging in retail therapy, or savoring global cuisines, Gurgaon offers an exhilarating urban experience. It\'s a place where modernity thrives, yet pockets of greenery and cultural richness provide balance. For those seeking an urban oasis in the heart of the NCR, Gurgaon stands as a dynamic and evolving destination where city life and green spaces coexist harmoniously.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11225,0,NULL,NULL,'Gurgaon',0,NULL,NULL,NULL,NULL,NULL,'222_1695469701.png','222_1695469701.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gurugram, Gurgaon, Millennium City, corporate hub, urban oasis, skyscrapers, shopping malls, vibrant culture, city life, green spaces, Haryana, Delhi NCR.','Explore Gurugram (Gurgaon): The Millennium City\'s Urban Oasis','','',NULL,NULL,NULL,1),(223,NULL,NULL,'\"Step into Gjirokaster, Albania, with its cobblestone streets, Ottoman architecture, and historic sites. Explore the \'City of a Thousand Steps.\'\"',NULL,'<p>Gjirokaster, often referred to as the \"City of Stone,\" is a captivating destination located in southern Albania. This picturesque city is renowned for its beautifully preserved Ottoman architecture, rich history, and unique cultural heritage. With its well-deserved status as a UNESCO World Heritage Site, Gjirokaster offers visitors a journey back in time and a glimpse into Albania\'s storied past.</p><p>Key Highlights:</p><p>Ottoman Architecture: Gjirokaster boasts a stunning collection of Ottoman-era buildings, characterized by their distinctive stone construction and overhanging wooden roofs. The city\'s well-preserved old town is a maze of cobblestone streets, stone houses, and charming bazaars.</p><p>Gjirokaster Castle: Dominating the city\'s skyline is the imposing Gjirokaster Castle, also known as the Gjirokaster Fortress or the Castle of Argjiro. This ancient citadel offers panoramic views of the city and surrounding landscapes. Within its walls, you\'ll find the Gjirokaster National Folklore Festival, showcasing Albanian folk traditions.</p><p>Ethnographic Museum: Housed in the birthplace of former Albanian communist leader Enver Hoxha, the Ethnographic Museum provides a fascinating look into the daily life and culture of the city\'s residents during the Ottoman period.</p><p>Historic Sites: Gjirokaster is dotted with historic sites, including the Church of St. Sotira, the Clock Tower, and the Cold War Tunnel, which was built during communist rule as a military bunker.</p><p>Zekate House: Explore the beautifully preserved Zekate House, an Ottoman-era mansion that showcases the opulent lifestyle of the city\'s elite.</p><p>Cultural Events: Gjirokaster hosts a variety of cultural events throughout the year, including music festivals, art exhibitions, and traditional performances. These events provide an opportunity to immerse yourself in Albanian culture and heritage.</p><p>Delicious Cuisine: Enjoy Albanian cuisine at local restaurants and cafes. Try regional dishes like tave kosi (yogurt and lamb casserole), qifqi (rice balls), and baklava.</p><p>Blue Eye Spring: Just a short drive from Gjirokaster, the Blue Eye Spring is a natural wonder known for its crystal-clear blue waters and lush surroundings. It\'s an excellent spot for a refreshing swim or a leisurely picnic.</p><p>Stone Artisans: Gjirokaster is famous for its skilled stone artisans who craft intricate designs on stone slabs. You can visit their workshops and witness this traditional art form.</p><p>Warm Hospitality: Experience the warm and welcoming hospitality of the local residents, who are proud of their city\'s heritage and eager to share it with visitors.</p><p>Gjirokaster\'s unique blend of history, architecture, and culture makes it a destination that transports you to another era. It\'s a place where ancient traditions coexist with modern life, creating a truly immersive and unforgettable travel experience. Whether you\'re exploring the city\'s cobblestone streets, admiring its Ottoman architecture, or savoring its traditional cuisine, Gjirokaster invites you to step into the rich tapestry of Albanian history and culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10479,1,NULL,NULL,'Gjirokaster',0,NULL,NULL,NULL,NULL,NULL,'223_1695811730.png','223_1694605556.png','Albania','2',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Gjirokaster Albania\r\nGjirokaster Ottoman architecture\r\nAlbanian historical towns\r\nUNESCO World Heritage\r\nAlbanian heritage','\"Gjirokaster, Albania: The \'City of a Thousand Steps\'\"','','',NULL,NULL,NULL,1),(224,NULL,NULL,'Explore the NCR city of Ghaziabad with iNeedTrip. Discover modern attractions, shopping hubs, and vibrant cuisine in the Delhi metropolitan area.\"',NULL,'<p>Ghaziabad, a bustling city located in the northern Indian state of Uttar Pradesh, is a significant part of the National Capital Region (NCR). Known for its industrial growth, educational institutions, and cultural heritage, Ghaziabad has transformed into a vibrant destination that offers a unique blend of modernity and tradition. In this blog, we\'ll embark on a virtual journey to explore the diverse attractions and experiences that make Ghaziabad an interesting destination.</p><p>Historical Sites:</p><p>Ghaziabad boasts historical sites that provide insights into its rich past. The Swarna Jayanti Park houses the remains of a 14th-century fort and a mosque, offering a glimpse into the city\'s history.</p><p>Hindon River:</p><p>The Hindon River flows through Ghaziabad, and its banks are a serene spot for picnics and nature lovers. You can take leisurely walks along the river or enjoy boat rides in certain sections.</p><p>Cultural Diversity:</p><p>Ghaziabad\'s cultural landscape is diverse, reflecting the coexistence of various communities. Festivals like Diwali, Eid, and Holi are celebrated with great enthusiasm, and you can witness cultural events and fairs throughout the year.</p><p>Shopping and Dining:</p><p>Ghaziabad offers a range of shopping experiences, from bustling markets like Kaushambi and Indirapuram to modern malls like Shipra Mall and DLF Mall of India. Dining options include street food stalls, local eateries, and international cuisine restaurants.</p><p>Education Hub:</p><p>The city is known for its educational institutions, including engineering colleges, management institutes, and schools. It attracts students and professionals from across India.</p><p>Art and Culture:</p><p>Ghaziabad is home to art galleries and cultural centers where you can explore traditional and contemporary Indian art, music, and dance performances.</p><p>Parks and Green Spaces:</p><p>The city offers several parks and green spaces, such as the Swarna Jayanti Park, City Forest, and Ram Manohar Lohia Park, where you can relax, jog, or have a picnic.</p><p>Connectivity:</p><p>Ghaziabad\'s strategic location provides easy access to major cities like Delhi, Noida, and Greater Noida. The city is well-connected by road and has its own railway station.</p><p>Religious Diversity:</p><p>Ghaziabad is home to various religious places, including temples, mosques, gurdwaras, and churches, catering to the spiritual needs of its residents and visitors.</p><p>Conclusion:</p><p>Ghaziabad, with its blend of historical charm, modern amenities, educational opportunities, and cultural diversity, is a city that caters to a wide range of interests. Whether you\'re exploring its historical sites, enjoying the natural beauty along the Hindon River, or savoring the local cuisine, Ghaziabad offers a unique and dynamic experience. It\'s a place where tradition and innovation coexist harmoniously, inviting you to explore the evolving landscape of the NCR. For those seeking a vibrant and multifaceted destination, Ghaziabad stands as a testament to the evolving tapestry of modern India.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,10372,0,NULL,NULL,'Ghaziabad',0,NULL,NULL,NULL,NULL,NULL,'224_1695467474.png','224_1695467474.png','India','101',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Ghaziabad tours, NCR attractions, urban exploration','\"Ghaziabad\'s NCR Exploration with iNeedTrip\"','','',NULL,NULL,NULL,1),(225,NULL,NULL,'\"Experience the unique blend of Scottish heritage and Kiwi culture in Dunedin, New Zealand. Explore historic architecture, wildlife, and more.\"',NULL,'<p>Dunedin, often referred to as the \"Edinburgh of the South,\" is a charming city nestled on the southeastern coast of New Zealand\'s South Island. Known for its rich Scottish heritage, Victorian and Edwardian architecture, and stunning natural surroundings, Dunedin is a city that offers a unique blend of history, culture, and outdoor adventures. Here\'s an overview of what makes Dunedin a delightful place to visit:</p><p>1. Scottish Heritage: Dunedin\'s Scottish roots are evident in its architecture, street names, and cultural traditions. The city\'s Scottish influence is celebrated during events like the annual Dunedin Tartan Week.</p><p>2. Historic Architecture: The city boasts an array of well-preserved Victorian and Edwardian buildings. A highlight is the Dunedin Railway Station, often considered one of the world\'s most beautiful railway stations.</p><p>3. Otago Peninsula: Nature enthusiasts will be drawn to the Otago Peninsula, a wildlife haven known for its diverse birdlife, including the rare yellow-eyed penguin and royal albatross. Take a wildlife tour to spot these remarkable creatures in their natural habitat.</p><p>4. Larnach Castle: Visit Larnach Castle, New Zealand\'s only castle, perched on the Otago Peninsula. Explore its gardens, learn about its history, and enjoy panoramic views of the surrounding landscape.</p><p>5. University of Otago: Dunedin is home to New Zealand\'s oldest university, the University of Otago. Its historic campus is worth a visit, and you can explore the university\'s Otago Museum and Hocken Collections.</p><p>6. Baldwin Street: Known as the steepest residential street in the world, Baldwin Street is a quirky attraction that draws visitors keen to climb its steep incline.</p><p>7. Toitu Otago Settlers Museum: This museum offers insight into the history of Otago\'s early settlers, Maori heritage, and the city\'s growth. It\'s an engaging cultural experience.</p><p>8. Botanic Garden: The Dunedin Botanic Garden is a peaceful oasis featuring a wide variety of plants, including an impressive collection of rhododendrons. Take a leisurely stroll or enjoy a picnic in this serene setting.</p><p>9. Street Art: Dunedin has a growing street art scene, with colorful murals adorning buildings in the city center. Take a walking tour to discover these vibrant artworks.</p><p>10. Dunedin Railways: Take a scenic train journey on the Taieri Gorge Railway, which offers breathtaking views of rugged landscapes, gorges, and river valleys.</p><p>11. Otago Museum: Explore the Otago Museum to learn about the region\'s natural history, cultural heritage, and the Southern Hemisphere\'s largest butterfly house.</p><p>12. Local Cuisine: Dunedin offers a wide range of dining options, from casual cafes to fine dining restaurants. Try local specialties like Bluff oysters, seafood, and New Zealand lamb.</p><p>13. Dunedin Street Markets: Visit the various street markets, such as the Otago Farmers Market and the First Church Market, to sample local produce, crafts, and artisanal products.</p><p>14. Accessibility: Dunedin is easily accessible by road, with Dunedin Airport serving domestic and international flights.</p><p>Dunedin\'s unique blend of heritage, nature, and cultural experiences makes it a captivating destination on New Zealand\'s South Island. Whether you\'re exploring historic sites, encountering wildlife on the Otago Peninsula, or simply enjoying the city\'s charming ambiance, Dunedin promises a memorable and diverse travel experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8306,1,NULL,NULL,'Dunedin',0,NULL,NULL,NULL,NULL,NULL,'225_1694601682.png','225_1694601682.png','New Zealand','157',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dunedin New Zealand\r\nScottish heritage Dunedin\r\nKiwi culture\r\nDunedin architecture\r\nNew Zealand wildlife','\"Dunedin, New Zealand: Where Scottish Heritage Meets Kiwi Culture\"','','',NULL,NULL,NULL,1),(226,NULL,NULL,'\"Discover the historical significance of Dunedin in Scotland. Explore its Scottish heritage, ancient castles, and the tales of this Scottish town.\"',NULL,'<p>Dunedin, located on the southeast coast of Scotland, is a city steeped in history and known for its stunning landscapes, rich cultural heritage, and charming architecture. Often referred to as the \"Edinburgh of the South,\" Dunedin offers a unique blend of historic sites, natural beauty, and a vibrant cultural scene. Here\'s an overview of what makes Dunedin, Scotland, a fascinating destination:</p><p>1. Historic Architecture: Dunedin boasts a wealth of historic architecture, with buildings that reflect its Scottish heritage. The city center features Victorian and Edwardian buildings, and the Dunedin Railway Station is a notable architectural gem.</p><p>2. The Royal Burgh: Dunedin holds the title of a Royal Burgh, a historic Scottish designation that signifies its importance as a center of trade and governance.</p><p>3. Edinburgh of the South: The city\'s nickname, the \"Edinburgh of the South,\" pays homage to its Scottish connections and the resemblance of its hilly terrain to Scotland\'s capital city, Edinburgh.</p><p>4. Otago Peninsula: While Dunedin, Scotland, may not have a peninsula, its counterpart in New Zealand, Dunedin, does. The Otago Peninsula in New Zealand is renowned for its stunning landscapes and wildlife, including the rare yellow-eyed penguin and royal albatross.</p><p>5. University of Otago: Interestingly, Dunedin, Scotland, shares its name with a prominent university in Dunedin, New Zealand. The University of Otago is New Zealand\'s oldest university and contributes to the vibrant student culture of its namesake city.</p><p>6. Dunedin Cathedral: The Dunedin Cathedral, known as St. Paul\'s Cathedral, is a beautiful example of Gothic Revival architecture. It stands as a testament to the city\'s rich ecclesiastical history.</p><p>7. Scottish Culture: Dunedin, Scotland, embraces its Scottish heritage with traditional events, music, and dance. The annual Highland Games and Celtic festivals celebrate Scotland\'s cultural legacy.</p><p>8. Coastal Beauty: Dunedin enjoys a picturesque coastal location, with scenic views of the North Sea. The coastline offers opportunities for coastal walks, and nearby beaches provide a tranquil escape.</p><p>9. Accessibility: Dunedin, Scotland, is easily accessible by road, with good connections to other Scottish cities like Edinburgh and Glasgow.</p><p>While Dunedin, Scotland, and Dunedin, New Zealand, share a name, they each offer distinct and enriching travel experiences. Dunedin, Scotland, charms visitors with its historic architecture, cultural heritage, and breathtaking coastal landscapes. Whether you\'re exploring the city\'s historic sites, immersing yourself in Scottish culture, or enjoying its coastal beauty, Dunedin, Scotland, promises a memorable journey through its rich history and picturesque landscapes.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8305,1,NULL,NULL,'Dunedin',0,NULL,NULL,NULL,NULL,NULL,'226_1694602454.png','226_1694602454.png','scotland','231',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dunedin Scotland history\r\nScottish heritage\r\nDunedin castles\r\nScottish towns\r\nScottish history','\"Dunedin, Scotland: A Journey through Scottish History\"','','',NULL,NULL,NULL,1),(227,NULL,NULL,'\"Explore the medieval splendor of Dubrovnik, Croatia. Walk its ancient city walls, visit historic sites, and bask in the beauty of the Adriatic coast.\"',NULL,'<p>Dubrovnik, often referred to as the \"Pearl of the Adriatic,\" is a picturesque coastal city located on the southern coast of Croatia. With its stunning medieval architecture, ancient city walls, crystal-clear waters, and rich cultural heritage, Dubrovnik is a captivating destination that has earned its place on UNESCO\'s list of World Heritage Sites. Here\'s an overview of what makes Dubrovnik an enchanting place to visit:</p><p>1. Old Town: Dubrovnik\'s Old Town is a well-preserved medieval marvel, enclosed by impressive stone walls. As you walk through its narrow cobblestone streets, you\'ll encounter historic buildings, charming squares, and centuries-old churches. Don\'t miss sights like the Rector\'s Palace, Sponza Palace, and the iconic Onofrio\'s Fountain.</p><p>2. City Walls: The well-maintained city walls of Dubrovnik are a defining feature of the city. You can walk along the walls for breathtaking panoramic views of the Old Town, the Adriatic Sea, and the surrounding islands.</p><p>3. Fortresses: Explore the fortresses that once defended the city, including Fort Lovrijenac, which provides excellent views and is known as \"Dubrovnik\'s Gibraltar.\"</p><p>4. Stradun: The Stradun, or Placa, is the main street of the Old Town. Lined with shops, cafes, and restaurants, it\'s a perfect place to take a leisurely stroll and soak in the atmosphere.</p><p>5. Historical Sites: Dubrovnik is rich in history, and you can delve deeper by visiting the Dubrovnik Cathedral, Franciscan Monastery, and the Synagogue, which is one of the oldest in Europe.</p><p>6. Island-Hopping: The Dubrovnik region is blessed with beautiful islands. Take a day trip to the nearby Elafiti Islands or the enchanting Lokrum Island, home to lush gardens and peacocks.</p><p>7. Beaches: Dubrovnik offers a variety of beaches, from the popular Banje Beach near the Old Town to more secluded spots like Sveti Jakov Beach and Lapad Beach, perfect for swimming and sunbathing.</p><p>8. Game of Thrones: Fans of the hit TV series will recognize Dubrovnik as the filming location for King\'s Landing. You can join a guided tour to explore the show\'s iconic filming locations.</p><p>9. Festivals: Dubrovnik hosts numerous cultural events and festivals throughout the year, including the Dubrovnik Summer Festival, featuring music, theater, and dance performances.</p><p>10. Cuisine: Savor traditional Croatian cuisine at local restaurants and konobas. Don\'t miss trying seafood dishes, such as black risotto and grilled fish, along with Croatian wines.</p><p>11. Scenic Cable Car: Take a cable car ride to the top of Mount Srd for breathtaking views of Dubrovnik and the surrounding coastline.</p><p>12. Maritime Museum: Learn about Dubrovnik\'s maritime history at the Maritime Museum housed in the St. John\'s Fortress.</p><p>13. Accessibility: Dubrovnik is easily accessible by air and road, with Dubrovnik Airport located just a short drive from the city center.</p><p>Dubrovnik\'s combination of historical significance, natural beauty, and cultural vibrancy make it a destination that appeals to travelers seeking history, relaxation, and stunning coastal landscapes. Whether you\'re exploring its ancient streets, enjoying the Adriatic\'s crystal-clear waters, or savoring local delicacies, Dubrovnik promises an unforgettable experience on the Adriatic coast.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,8231,1,NULL,NULL,'Dubrovnik',0,NULL,NULL,NULL,NULL,NULL,'227_1694601294.png','227_1694601294.png','Croatia','55',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dubrovnik Croatia\r\nAdriatic beauty\r\nDubrovnik city walls\r\nCroatian historic sites\r\nDubrovnik tourism','\"Dubrovnik, Croatia: The Pearl of the Adriatic\"','','',NULL,NULL,NULL,1),(228,NULL,NULL,'\"Experience the Mediterranean charm of the Dalmatian Riviera in Croatia. Explore historic towns, azure waters, and island adventures on the Adriatic.\"',NULL,'<p>The Dalmatian Riviera, nestled along the picturesque eastern coast of the Adriatic Sea in Croatia, is a captivating Mediterranean destination that weaves together natural beauty, rich history, and vibrant culture. Stretching from the historic city of Split to the southern tip of Croatia, this stunning coastal region has become a magnet for travelers seeking the perfect blend of relaxation and exploration.The defining feature of the Dalmatian Riviera is its remarkable natural beauty. The coastline is a mesmerizing tapestry of rugged cliffs, pristine beaches, hidden coves, and turquoise waters. Islands like Hvar, Brac, and Korcula beckon with their unique charm. The region\'s maritime parks, such as the Kornati Islands and Mljet Island, offer a glimpse into untouched, pristine nature. The Dalmatian hinterland, with its lush green hills and vineyards, creates a striking contrast to the coastal scenery.<br></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,7491,1,NULL,NULL,'Dalmatian Riviera',0,NULL,NULL,NULL,NULL,NULL,'228_1694764248.png','228_1694764248.png','Croatia','55',NULL,'2023-08-25 17:34:18','2023-08-25 17:34:18',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Dalmatian Riviera Croatia\r\nCroatian coast\r\nAdriatic seaside\r\nDalmatian towns\r\nCroatian island hopping','\"Dalmatian Riviera, Croatia: Mediterranean Magic on the Adriatic\"','','',NULL,NULL,NULL,1),(229,NULL,NULL,'Experience the revival of Christchurch, New Zealand, after the earthquakes. Discover botanical gardens, innovative architecture, and Kiwi hospitality.\"',NULL,'<p>Nestled on New Zealand\'s picturesque South Island, Christchurch is a city that blends natural beauty, resilience, and a rich cultural heritage into a captivating tapestry.</p><p>Known as the \"Garden City,\" Christchurch lives up to its nickname with an abundance of parks and green spaces. Hagley Park, with the serene Avon River winding through its heart, is a tranquil oasis within the city.</p><p>The city\'s journey to recovery and rejuvenation following the devastating earthquakes of 2010 and 2011 is a testament to its resilience. Christchurch has risen from the rubble, embracing innovative and sustainable architecture that reflects its determination to rebuild.</p><p>Cathedral Square, with the iconic Christchurch Cathedral as its centerpiece, remains a central gathering point. While the cathedral undergoes restoration, the square continues to be a hub of activity, surrounded by historic buildings and a sense of renewal.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,6244,0,NULL,NULL,'Christchurch',0,NULL,NULL,NULL,NULL,NULL,'229_1694762282.png','229_1694762282.png','New Zealand','157',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Christchurch New Zealand\r\nChristchurch revival\r\nNew Zealand gardens\r\nChristchurch architecture\r\nKiwi hospitality','\"Christchurch, New Zealand: The Garden City\'s Revival\"','','',NULL,NULL,NULL,1),(230,NULL,NULL,'\"Explore the historical significance of Christchurch during its Siamese era in Thailand. Discover heritage sites and the charm of Thai history.\"',NULL,'<div>Christchurch is a historic town located in Dorset, England, known for its charming blend of natural beauty, historical significance, and cultural attractions. Situated on the south coast of England, Christchurch offers a tranquil escape for travelers seeking a mix of coastal splendor and historical exploration. Here\'s an overview of what makes Christchurch, UK, a delightful destination:</div><div>1. Coastal Beauty: Christchurch is renowned for its picturesque coastline along the English Channel. Visitors can enjoy long walks on sandy beaches, take in the fresh sea air, and admire breathtaking views of the Isle of Wight and the Needles, which are iconic chalk stacks.</div><div>2. Christchurch Priory: The town is home to the Christchurch Priory, a magnificent parish church with a history dating back over 1,000 years. Its Norman architecture, beautiful stained glass windows, and serene gardens make it a must-visit historical site.</div><div>3. Historic Architecture: Christchurch features a wealth of historic buildings and architecture. Stroll through the town center to discover charming Georgian and Victorian structures, including the Red House Museum and Gardens, which provides insights into the town\'s past.</div><div>4. Boating and Watersports: The River Stour, which flows through Christchurch, offers opportunities for boating, kayaking, and paddleboarding. Visitors can also take scenic boat trips along the river.</div><div>5. Hengistbury Head: This nearby headland is a nature reserve and archaeological site offering panoramic views of the surrounding area. It\'s an excellent spot for hiking, birdwatching, and exploring prehistoric remains.</div><div>6. Quaint High Street: Christchurch\'s High Street is lined with independent shops, boutiques, cafes, and restaurants, making it a perfect place to enjoy some retail therapy or savor local cuisine.</div><div>7. Christchurch Harbour: The picturesque harbor is ideal for leisurely walks, picnics, and birdwatching. It\'s a tranquil setting to unwind and observe the local wildlife.</div><div>8. Festivals and Events: Christchurch hosts various festivals and events throughout the year, including the Christchurch Food Festival, regattas, and outdoor concerts, providing entertainment for locals and visitors alike.</div><div>9. Adventure Golf: Families can enjoy a round of adventure golf at the pirate-themed Mini Golf on Christchurch Quay, providing fun for all ages.</div><div>10. Nearby Attractions: Christchurch\'s strategic location allows for easy exploration of the surrounding attractions, including the New Forest National Park, Bournemouth\'s vibrant nightlife, and the historic town of Salisbury.</div><div>11. Waterfront Dining: With its proximity to the coast, Christchurch offers excellent seafood dining experiences. Many waterfront restaurants serve locally caught fish and shellfish.</div><div>12. Christchurch Castle: Although the castle is largely in ruins, it\'s an interesting historical site to explore and learn about the town\'s medieval history.</div><div>Christchurch, UK, is a place where history, natural beauty, and leisurely activities converge, offering a relaxed and charming escape for travelers looking to explore the south coast of England. Whether you\'re interested in history, outdoor adventures, or simply enjoying the coastal ambiance, Christchurch has something to offer every visitor.</div>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,6243,0,NULL,NULL,'Christchurch',0,NULL,NULL,NULL,NULL,NULL,'230_1694591824.png','230_1694591824.png','UNITED KINGDOM','469',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Christchurch Thailand history\r\nSiamese era Christchurch\r\nThai historical landmarks\r\nThailand heritage\r\nThai history','\"Christchurch, Thailand: A Glimpse into Siamese History\"','','',NULL,NULL,NULL,1),(231,NULL,NULL,'\"Immerse yourself in the rich culture of Chiang Mai, Thailand. Explore historic temples, traditional markets, and the natural beauty of Northern Thailand.\"',NULL,'<p>Chiang Mai, Thailand: The Rose of the North</p><p>Nestled in the lush mountainous region of Northern Thailand, Chiang Mai is a city that effortlessly blends ancient traditions with modern charm. Known as \"The Rose of the North,\" this captivating destination has something for every traveler, from cultural enthusiasts and adventure seekers to foodies and nature lovers. Here\'s an overview of what makes Chiang Mai a must-visit place:</p><p>1. Rich Cultural Heritage: Chiang Mai boasts a rich history dating back to the 13th century when it was the capital of the Lanna Kingdom. Its cultural heritage is still very much alive, with countless temples, historic buildings, and traditional festivals that celebrate its past.</p><p>2. Temples Galore: The city is home to over 300 temples, each with its own unique architecture and significance. Wat Phra Singh, Wat Phra That Doi Suthep, and Wat Chedi Luang are among the most revered and visually stunning temples in Chiang Mai.</p><p>3. Night Bazaars: Chiang Mai\'s night markets are legendary. The most famous one is the Chiang Mai Night Bazaar, where you can shop for handicrafts, clothing, jewelry, and enjoy delicious street food.</p><p>4. Thai Cuisine: Chiang Mai is a food lover\'s paradise. Sample Northern Thai dishes like khao soi (noodles in curry soup), sai ua (spicy sausage), and explore the vibrant street food scene. Don\'t miss a visit to the Warorot Market to taste local treats.</p><p>5. Trekking and Adventure: The surrounding mountains and forests offer endless opportunities for outdoor adventures. Go trekking through lush jungles, visit hill tribe villages, and take part in activities like zip-lining, white-water rafting, and mountain biking.</p><p>6. Elephant Sanctuaries: Chiang Mai is known for its ethical elephant sanctuaries, where you can interact with these majestic animals in a responsible and sustainable way.</p><p>7. Loy Krathong and Yi Peng Lantern Festival: Experience the magical Loy Krathong and Yi Peng Lantern Festival, usually held in November, when thousands of floating lanterns and sky lanterns light up the night sky, creating a mesmerizing spectacle.</p><p>8. Old City: The Old City of Chiang Mai is surrounded by ancient walls and moats. Explore its narrow streets, visit historic temples, and discover hidden gems like quaint cafes and art galleries.</p><p>9. Thai Massages and Wellness: Chiang Mai is renowned for its traditional Thai massages and wellness centers. Relax and rejuvenate with spa treatments and yoga retreats.</p><p>10. Doi Inthanon National Park: Located nearby, Doi Inthanon National Park is home to Thailand\'s highest peak, lush forests, waterfalls, and diverse wildlife. It\'s a great destination for nature enthusiasts.</p><p>11. Hill Tribe Experiences: Take a cultural journey by visiting hill tribe villages in the region, where you can learn about different ethnic cultures and traditions.</p><p>12. Art and Craft: Chiang Mai is an artistic hub with galleries, workshops, and studios where you can explore traditional and contemporary Thai art and craft.</p><p>Chiang Mai\'s charm lies in its ability to offer a mix of cultural experiences, outdoor adventures, and culinary delights, all set against a backdrop of stunning natural beauty. Whether you\'re exploring ancient temples, wandering through vibrant markets, or embarking on thrilling outdoor activities, Chiang Mai welcomes you with its warm hospitality and a taste of authentic Thai culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,30567,0,NULL,NULL,'Chiang Mai',0,NULL,NULL,NULL,NULL,NULL,'231_1694591445.png','231_1694591381.png','Thailand','215',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Chiang Mai Thailand\r\nChiang Mai temples\r\nThai cultural experiences\r\nNorthern Thailand attrac','\"Chiang Mai, Thailand: Cultural Oasis in Northern Thailand\"','','',NULL,NULL,NULL,1),(232,NULL,NULL,'\"Explore the coastal charm and Adriatic beauty of Budva during its Yugoslav era. Discover historic sites and the allure of Montenegro\'s coast.\"',NULL,'<p>Budva, Yugoslavia: Explore the Coastal Beauty of a Bygone Era</p><p>Budva, situated on the stunning Adriatic coast, was once a prominent coastal town in the former Yugoslavia. While Yugoslavia as a political entity no longer exists, the memories of its coastal gems like Budva still linger. Let\'s take a journey back in time to explore the charm and beauty of Budva, Yugoslavia:</p><p>1. Coastal Beauty: Budva, nestled along the coastline of the Adriatic Sea, was celebrated for its breathtaking beaches and crystal-clear waters. The coastline boasted several beautiful beaches, including the renowned Mogren Beach, Slovenska Plaza, and Jaz Beach, where locals and visitors alike soaked up the Mediterranean sun.</p><p>2. Historical Old Town: Much like its present-day counterpart, the Budva of Yugoslavia had a charming Old Town (Stari Grad). The Old Town\'s cobblestone streets, ancient churches, and Venetian architecture provided a glimpse into the town\'s rich history. Exploring the Budva Citadel within the Old Town offered panoramic views of the sea and the surrounding landscapes.</p><p>3. Cultural Heritage: The Budva of Yugoslavia was steeped in cultural heritage. The town was home to several historic churches and museums, including the Church of Saint John and the Holy Trinity Church. These places of worship and cultural significance showcased the depth of history in the region.</p><p>4. Festivals and Events: Yugoslav Budva, much like the present-day Budva in Montenegro, hosted various cultural events and festivals. These events celebrated music, theater, and traditional Montenegrin culture. The Budva Theater City, in particular, was a highlight for theater enthusiasts.</p><p>5. Dining and Cuisine: Yugoslav Budva offered a taste of traditional Montenegrin cuisine. Seafood restaurants along the coast served up fresh catches of the day, while local taverns introduced visitors to Montenegrin specialties like buzara (shellfish stew) and njeguški pršut (smoked ham).</p><p>6. Nature and Outdoor Activities: Budva\'s natural beauty was not limited to its coastline. The surrounding area was a haven for outdoor enthusiasts, with hiking and biking trails providing opportunities to explore the Budva Riviera\'s lush landscapes.</p><p>7. Sveti Stefan Island: A short drive from Budva, the iconic Sveti Stefan Island stood as a symbol of luxury and exclusivity. While the island itself was not accessible to the general public, its beauty was a sight to behold from the mainland.</p><p>8. Socialist Yugoslavia: It\'s important to note that during this era, Budva was part of Socialist Yugoslavia, a federation of several Balkan states. The Yugoslav period was characterized by a unique blend of socialism and self-management, leaving its mark on the town\'s culture and society.</p><p>While the Yugoslavia of yesteryears has given way to the independent nations of the Balkans, the memories of Budva\'s coastal beauty and cultural richness still live on. Today, visitors to Budva in Montenegro can experience a modern and vibrant destination while also discovering echoes of its Yugoslav past. It\'s a place where history and natural beauty converge to create a captivating coastal experience.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,4375,0,NULL,NULL,'Budva',0,NULL,NULL,NULL,NULL,NULL,'232_1694587016.png','232_1695811096.png','albania','241',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Budva Yugoslavia history\r\nYugoslav era Budva\r\nAdriatic coast beauty\r\nBudva historical landmarks\r\nMontenegro coast','\"Budva, Yugoslavia: A Glimpse into Adriatic Beauty\"','','',NULL,NULL,NULL,1),(233,NULL,NULL,'\"Travel back in time to Belgrade, USA, and explore its historical roots. Learn about its heritage, early settlements, and American pioneering spirit.\"',NULL,'<p>Belgrade, nestled in the picturesque Gallatin Valley of Montana, is a town that exudes small-town charm and offers a warm and welcoming atmosphere. Its location, just a short drive from Bozeman, one of Montana\'s larger cities, makes it an ideal destination for those seeking a quieter and more relaxed pace of life.</p><p>The heart of Belgrade is its downtown area, where historic buildings stand as a testament to the town\'s rich heritage. Strolling through these streets, you\'ll find local shops and family-owned businesses that are an integral part of the community. It\'s a place where neighbors know each other, and visitors are greeted with a genuine friendliness that\'s characteristic of small American towns.</p><p>But Belgrade isn\'t just about its warm community; it\'s also a gateway to the incredible outdoor adventures that Montana is known for. The Gallatin Valley is a haven for outdoor enthusiasts, offering a plethora of activities. Hiking in the nearby Bridger Mountains, fishing in pristine rivers, camping under the vast Montana sky, or skiing in the winter – the options are as diverse as the Montana landscape itself.</p><p>One of Belgrade\'s unique features is its proximity to Yellowstone National Park, one of the United States\' most iconic natural wonders. , making it an excellent base for exploring the geysers, wildlife, and awe-inspiring landscapes that Yellowstone has to offer.</p><p>Belgrade\'s economy has strong ties to agriculture and ranching, a testament to its rural heritage.&nbsp; like the Belgrade Fall Festival and the Sweet Corn Festival, where locals and visitors come together to enjoy good food, music, and community spirit</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2783,0,NULL,NULL,'Belgrade',0,NULL,NULL,NULL,NULL,NULL,'233_1694760932.png','233_1694760932.png','USA','231',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Belgrade USA history\r\nAmerican heartland\r\nBelgrade Montana\r\nWestern frontier towns\r\nPioneer history','\"Belgrade, USA: A Journey to the American Heartland\"','','',NULL,NULL,NULL,1),(234,NULL,NULL,'\"Explore the historical significance of Belgrade during the era of Yugoslavia. Discover relics of the past and the city\'s role in Balkan history.\"',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Belgrade, the capital of Yugoslavia, has a history that spans centuries. Its roots can be traced back to ancient times when it was known as Singidunum, a Roman fortress. Over the years, it evolved into a thriving medieval city, with Ottoman and Austro-Hungarian influences evident in its architecture and culture.</p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">In the 20th century, Belgrade became the capital of the Kingdom of Yugoslavia, a multi-ethnic federation that brought together various South Slavic nations. It was during this period that Belgrade gained prominence as a political and cultural center in the Balkans.</p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The city\'s diverse population contributed to its dynamic atmosphere, with different ethnic groups coexisting and enriching its cultural tapestry. Belgrade was known for its lively arts scene, theaters, and vibrant nightlife, earning it the nickname \"The White City.\"</p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">However, as Yugoslavia faced increasing political and ethnic tensions in the late 20th century, Belgrade found itself at the epicenter of significant historical events. The breakup of Yugoslavia, marked by conflicts and wars in the early 1990s, profoundly affected the city. It endured bombings and hardships during this turbulent period.</p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Today, Belgrade stands as the capital of Serbia, having weathered the storms of the past. Visitors to Belgrade can explore its historic landmarks, such as the Belgrade Fortress and St. Sava Temple, while also experiencing its thriving contemporary arts scene, bustling markets, and vibrant cafe culture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2782,0,NULL,NULL,'Belgrade',0,NULL,NULL,NULL,NULL,NULL,'234_1694760430.png','234_1694760430.png','Yugoslavia','241',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Belgrade Yugoslavia history\r\nYugoslav era landmarks\r\nBelgrade historical sites\r\nBalkans during Yugoslavia\r\nTito\'s Yugoslavia','\"Belgrade, Yugoslavia: A Glimpse into the Past\"','','',NULL,NULL,NULL,1),(235,NULL,NULL,'\"Discover the captivating blend of history, nightlife, and Balkan charm in Belgrade. Explore its historic districts, riverside clubs, and cultural sites.\"',NULL,'<p>Belgrade, the capital of Serbia, is a city with a rich and complex history that spans centuries. Its roots trace back to ancient times when it was known as Singidunum, a Roman fortress strategically located at the confluence of the Sava and Danube rivers. Over the years, Belgrade evolved into a thriving medieval city, with influences from the Ottoman and Austro-Hungarian empires leaving their marks on its architecture and culture.</p><p>In the 20th century, Belgrade took on a new role as the capital of the Kingdom of Yugoslavia, a multi-ethnic federation that united various South Slavic nations. During this period, Belgrade became a prominent political and cultural center in the Balkans, earning the nickname \"The White City.\"</p><p>What makes Belgrade particularly captivating is its diverse population, contributing to its dynamic and cosmopolitan atmosphere. Different ethnic groups coexist harmoniously, creating a rich cultural tapestry that defines the city. Belgrade is known for its lively arts scene, vibrant nightlife, and a wealth of theaters, all of which have helped shape its unique identity.</p><p>However, as the 20th century progressed, Yugoslavia faced escalating political and ethnic tensions, and Belgrade found itself at the center of significant historical events. The breakup of Yugoslavia in the early 1990s brought forth a period of conflict and turmoil, with Belgrade enduring bombings and hardships during this turbulent era.</p><p>Today, Belgrade stands as the capital of Serbia, a city that has weathered the storms of the past. It has embraced democracy and embarked on a journey of rebuilding and transformation. Visitors to Belgrade can explore its historic landmarks, including the Belgrade Fortress that has witnessed centuries of history, and the magnificent St. Sava Temple, one of the largest Orthodox churches in the world.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2781,0,NULL,NULL,'Belgrade',0,NULL,NULL,NULL,NULL,NULL,'235_1694584112.png','235_1694584112.png','Serbia','468',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Belgrade travel\r\nSerbian history\r\nBelgrade nightlife\r\nBalkan culture\r\nBelgrade attractions','\"Belgrade, Serbia: Where History and Modernity Coexist\"','','',NULL,NULL,NULL,1),(236,NULL,NULL,'\"Experience a cultural sojourn in Bareilly with iNeedTrip. Explore historic sites, vibrant markets, and the unique culture of Uttar Pradesh.\"',NULL,'<p>Bareilly, situated in the northern Indian state of Uttar Pradesh, is a city that seamlessly combines tradition with modernity. Known for its rich cultural heritage, vibrant festivals, and delectable cuisine, Bareilly offers a unique glimpse into the heart of North India. In this blog, we\'ll embark on a virtual journey to discover the charms and cultural tapestry of Bareilly.</p><p>Alakhnath Temple:</p><p>Alakhnath Temple, dedicated to Lord Shiva, is one of the city\'s most revered religious sites. The temple\'s stunning architecture and serene ambiance make it a popular destination for devotees and tourists alike.</p><p>Chunne Miyan\'s Lakshmi Narayan Temple:</p><p>This temple is a splendid example of the city\'s religious diversity, as it is dedicated to both Lord Vishnu and Goddess Lakshmi. Its intricate marble carvings and peaceful surroundings make it a tranquil place for meditation and spirituality.</p><p>Bareilly\'s Street Food:</p><p>Bareilly is renowned for its delectable street food. Don\'t miss trying local specialties like Seekh Kebabs, Tunday Kababi, and the sweet delight known as Bal Mithai.</p><p>Trivati Nath Temple:</p><p>This temple is dedicated to Lord Krishna and is an architectural marvel. The temple\'s intricate carvings and the vibrant aura during festivals, especially Janmashtami, draw pilgrims and tourists alike.</p><p>Festivals and Cultural Richness:</p><p>Bareilly is known for its vibrant festivals, with Holi and Diwali being celebrated with great fervor. The city also hosts the Bareilly Mahotsav, a cultural extravaganza that showcases music, dance, and local talent.</p><p>Fun and Entertainment:</p><p>Bareilly offers modern entertainment options, including shopping malls, theaters, and recreational parks like Fun City Water and Amusement Park, making it an ideal destination for families.</p><p>Explore the Local Bazaars:</p><p>The local bazaars of Bareilly, such as Kutubkhana Bazaar and Civil Lines Market, are excellent places to shop for handicrafts, textiles, and traditional Indian attire.</p><p>Bareilly\'s Connection to Literature:</p><p>Bareilly has historical and literary significance as the birthplace of renowned poet and writer, Mahavir Prasad Dwivedi, who contributed significantly to Hindi literature.</p><p>Conclusion:</p><p>Bareilly, with its blend of cultural heritage, religious significance, and culinary delights, is a city that offers a rich and diverse experience. Whether you\'re exploring historic temples, savoring local street food, immersing yourself in the colorful festivals, or shopping in bustling bazaars, Bareilly has something to offer every traveler. It\'s a place where tradition and modernity coexist harmoniously, inviting you to delve into the heart of Uttar Pradesh\'s culture and heritage. For those seeking an authentic North Indian experience, Bareilly stands as a charming destination where history, spirituality, and the vibrant pulse of the city await your discovery.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,2370,0,NULL,NULL,'Bareilly',0,NULL,NULL,NULL,NULL,NULL,'236_1695462462.png','236_1695462462.png','India','101',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Bareilly tours, Uttar Pradesh culture, cultural exploration','\"Bareilly\'s Cultural Sojourn with iNeedTrip\"','','',NULL,NULL,NULL,1),(237,NULL,NULL,'\"Discover Auckland\'s vibrant city life and access to New Zealand\'s natural beauty. Explore the Hauraki Gulf, volcanic islands, and cultural treasures.\"',NULL,'<p>Auckland, located on New Zealand\'s North Island, is the largest and most populous city in the country. Known as the \"City of Sails\" due to its extensive harbor and passion for boating, Auckland is a vibrant and diverse metropolis that offers a wide range of experiences for travelers. Here\'s an overview of what makes Auckland a fascinating destination:</p><p>Key Highlights:</p><p>Auckland Harbor: Auckland is surrounded by two stunning harbors, Waitemata and Manukau, which provide ample opportunities for water-based activities such as sailing, kayaking, and boat cruises. The cityscape along the waterfront is adorned with the iconic Sky Tower, which offers panoramic views from its observation deck.</p><p>Island Paradise: The Hauraki Gulf, just off the coast of Auckland, is dotted with picturesque islands, including Waiheke Island, Rangitoto Island, and Tiritiri Matangi Island. These islands are perfect for day trips and offer beautiful beaches, hiking trails, and wildlife encounters.</p><p>Maori Culture: Auckland is a place where Maori culture is embraced and celebrated. You can explore this rich heritage at cultural centers like the Auckland Museum and experience traditional Maori performances and art.</p><p>Food and Wine: Auckland is a food lover\'s paradise, with a diverse culinary scene that reflects its multicultural population. You can savor fresh seafood, indulge in Pacific Rim cuisine, and visit bustling food markets. The nearby wine regions of Waiheke Island and Matakana offer wine tastings and gourmet experiences.</p><p>Beautiful Beaches: Auckland boasts numerous stunning beaches along its coastline. Piha, Karekare, and Mission Bay are just a few of the popular options where you can relax on golden sands or take part in water sports.</p><p>Regional Parks: The Auckland region is home to several regional parks and nature reserves, offering hiking, picnicking, and opportunities to connect with nature. The Waitakere Ranges and the Hunua Ranges are great for outdoor adventures.</p><p>Auckland Zoo and Aquarium: Families will enjoy visiting the Auckland Zoo, home to a wide variety of animals, and the Kelly Tarlton\'s SEA LIFE Aquarium, which features an underwater tunnel and penguin encounter.</p><p>Cultural Diversity: Auckland is a multicultural hub, with a diverse population that contributes to its vibrant arts, music, and dining scenes. You\'ll find influences from all over the world, creating a unique and inclusive atmosphere.</p><p>Shopping: The city offers excellent shopping opportunities, from high-end boutiques in the CBD (Central Business District) to local markets where you can find unique Kiwi products and souvenirs.</p><p>Adventure Activities: For adrenaline junkies, Auckland offers activities like bungee jumping, skydiving, and bridge climbing. The Auckland Bridge Climb is a thrilling way to experience the city from a different perspective.</p><p>Volcanic Landscape: Auckland is built on a volcanic field, resulting in unique landscapes like the aforementioned Rangitoto Island and the dormant volcano of Mount Eden, which offers breathtaking views of the city.</p><p>Events and Festivals: Auckland hosts a variety of events and festivals throughout the year, celebrating everything from music and arts to food and wine.</p><p>Auckland is a dynamic and diverse city that combines natural beauty, cultural richness, and modern urban living. Whether you\'re exploring its stunning natural landscapes, immersing yourself in Maori culture, or indulging in its culinary delights, Auckland offers an unforgettable experience that showcases the best of New Zealand.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1751,0,NULL,NULL,'Auckland',0,NULL,NULL,NULL,NULL,NULL,'237_1694514104.png','237_1694514104.png','New Zealand','157',NULL,'2023-08-25 17:34:19','2023-08-25 17:34:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Auckland attractions\r\nHauraki Gulf islands\r\nNew Zealand culture\r\nAuckland cityscape\r\nKiwi adventures','\"Auckland, New Zealand: City of Sails and Natural Wonders\"','','',NULL,NULL,NULL,1),(239,NULL,NULL,'Discover the tranquil beauty and artistic heritage of Toki, Japan. Explore the world of ceramic art, visit historic kilns, and immerse yourself in the rich culture of this charming city.',NULL,'<p>Japan\'s Serene City of Ceramic Art and Cultural Heritage</p><p>Nestled in the heart of Japan\'s Gifu Prefecture, Toki is a city of serene beauty and artistic heritage, celebrated for its profound connection to the world of ceramic art. With a history steeped in pottery and a rich cultural tapestry, Toki offers a tranquil escape for travelers seeking to explore Japanese ceramics and immerse themselves in the city\'s cultural heritage. Let\'s embark on a journey through the artistic and cultural wonders of Toki.</p><p>Ceramic Artistry: Toki is renowned as one of Japan\'s premier centers for ceramic art. The city\'s pottery tradition dates back centuries, and it is home to a myriad of ceramic studios and kilns. Explore the world of Japanese ceramics by visiting local artisans\' workshops, where you can witness the intricate process of creating exquisite pottery. Don\'t miss the opportunity to purchase one-of-a-kind ceramic pieces as souvenirs.</p><p>Historic Pottery Kilns: Toki boasts historic pottery kilns that provide a glimpse into the city\'s rich ceramic heritage. The Toki Shuraku Kiln and Toki City Ceramic Art Center offer guided tours, allowing you to see traditional firing techniques and appreciate the artistic evolution of Toki\'s pottery.</p><p>Toki Attractions: Beyond its ceramic artistry, Toki offers a range of cultural and natural attractions. Explore Toki Castle Park, a serene oasis with cherry blossoms in spring and lush greenery year-round. The Toki City History and Folklore Museum offers insights into the city\'s history and culture.</p><p>Ceramic Festivals: Toki hosts various ceramic festivals and events throughout the year. The Toki Ceramic Festival showcases the work of local artisans and provides opportunities to purchase unique ceramic pieces. Participate in hands-on pottery workshops to experience the art form firsthand.</p><p>Cuisine: Toki\'s cuisine is deeply rooted in its cultural heritage. Enjoy traditional Japanese dishes served in locally made ceramic tableware. Savor regional specialties like Hida beef and locally grown vegetables, which are often artfully presented in Toki\'s own pottery creations.</p><p>Outdoor Tranquility: Toki\'s picturesque landscapes offer tranquility and opportunities for outdoor activities. Explore the scenic beauty of the Hida River, go hiking in the nearby mountains, or take a leisurely stroll through the city\'s charming streets.</p><p>Warm Community: Toki is known for its warm and welcoming local residents who take pride in sharing their city\'s artistic and cultural treasures with visitors.</p><p>Toki: A Journey of Ceramic Art and Culture: Whether you\'re admiring the craftsmanship of ceramic artisans, exploring historic kilns, or simply reveling in the serene beauty of the city, Toki invites you to embark on a journey of ceramic art and cultural discovery. Experience the best of Japan\'s artistic heritage in this enchanting city.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,80600,1,NULL,NULL,'TOKI',0,NULL,NULL,NULL,NULL,NULL,'239_1694840630.png','239_1694840630.png','Japan','110',NULL,'2023-09-14 11:18:09','2023-09-14 11:18:09',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Toki, Japan travel, ceramic art, Toki attractions, pottery kilns, cultural heritage, Japanese ceramics, Gifu Prefecture','Explore Toki: Japan\'s Serene City of Ceramic Art and Cultural Heritage','','',NULL,NULL,NULL,1),(244,NULL,NULL,'Immerse yourself in the vibrant city of Tokyo, Japan, where ancient traditions meet futuristic marvels. Explore the top attractions, cultural experiences, and the dynamic spirit of this captivating metropolis.',NULL,'<p>&nbsp;Japan\'s Thriving Metropolis of Tradition and Innovation</p><p>Tokyo, Japan\'s bustling capital, is a mesmerizing metropolis where the past and future coexist harmoniously. From ancient traditions to cutting-edge technology, Tokyo offers a tapestry of experiences that captivate travelers from around the world. Let\'s dive into the heart of this dynamic city and explore its top attractions, cultural experiences, and the spirit that makes Tokyo truly unique.</p><p>Cultural Experiences: Tokyo is a city that cherishes its cultural heritage. Visit historic sites such as Senso-ji Temple in Asakusa, the city\'s oldest temple, or the Meiji Shrine, surrounded by lush forest in the heart of bustling Shibuya. Witness traditional tea ceremonies, explore museums showcasing Japanese art, and attend sumo wrestling matches to immerse yourself in Tokyo\'s rich culture.</p><p>Modern Marvels: Tokyo\'s skyline is a testament to its modernity. Iconic landmarks like Tokyo Tower, Tokyo Skytree, and the futuristic district of Odaiba showcase the city\'s architectural prowess. Explore the Sony Building in Ginza to witness the latest in technology and entertainment.</p><p>Japanese Cuisine: Tokyo is a gastronomic paradise, offering a world of culinary delights. Savor sushi at the famous Tsukiji Fish Market, indulge in ramen at local noodle shops, and experience the art of tempura and kaiseki dining. Don\'t forget to sample Tokyo\'s street food, from takoyaki (octopus balls) to mouthwatering yakitori (grilled skewers).</p><p>Shopping Extravaganza: Tokyo is a shopper\'s haven, catering to all tastes and budgets. Discover luxury brands in Ginza, hunt for vintage treasures in Harajuku, and explore the electronic wonderland of Akihabara. The vibrant markets, like Ameya-Yokocho and Nakamise-dori, offer a wide array of souvenirs and street food.</p><p>Tokyo Nightlife: When the sun sets, Tokyo comes alive with a vibrant nightlife. Experience the bustling districts of Shinjuku and Shibuya, known for their bars, clubs, and entertainment venues. Karaoke is a must-try activity, and you can find countless karaoke parlors throughout the city.</p><p>Parks and Gardens: Tokyo\'s urban landscape is dotted with tranquil parks and gardens. Stroll through Ueno Park, Shinjuku Gyoen National Garden, and the Imperial Palace East Gardens, where you can escape the city\'s hustle and bustle.</p><p>Warm Hospitality: Tokyo\'s residents, known for their courtesy and hospitality, ensure that visitors feel welcome and at ease throughout their stay.</p><p>Tokyo: A Journey of Tradition and Innovation: Whether you\'re exploring ancient temples, marveling at cutting-edge technology, or savoring exquisite cuisine, Tokyo invites you to embark on a journey of tradition and innovation. Experience the vibrant spirit of Japan\'s capital as you immerse yourself in the rich tapestry of its past and the boundless possibilities of its future.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,27427,1,NULL,NULL,'Tokyo',0,NULL,NULL,NULL,NULL,NULL,'244_1694841055.png','244_1694841055.png','Japan','110',NULL,'2023-09-15 17:29:30','2023-09-15 17:29:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Tokyo, Japan travel, Tokyo attractions, cultural experiences, modern Japan, Tokyo nightlife, historical sites, Japanese cuisine, technology, Tokyo shopping','Discover Tokyo: Japan\'s Thriving Metropolis of Tradition and Innovation','','',NULL,NULL,NULL,1),(245,NULL,NULL,'Delve into the picturesque landscapes and cultural treasures of Shizuoka, Japan. Discover Mount Fuji\'s majesty, explore lush tea fields, and immerse yourself in the tranquil beauty of this charming prefecture.',NULL,'<p>Shizuoka: Japan\'s Scenic Prefecture of Mount Fuji, Tea Fields, and Tranquil Beauty</p><p>Located in the heart of Japan, Shizuoka Prefecture is a captivating destination celebrated for its stunning natural landscapes, cultural treasures, and tranquil beauty. From the iconic Mount Fuji to lush tea fields and serene gardens, Shizuoka offers a diverse array of experiences for travelers seeking to connect with Japan\'s scenic and cultural heritage. Let\'s embark on a journey through the picturesque landscapes of Shizuoka.</p><p>Mount Fuji Majesty: Shizuoka is graced by the towering presence of Mount Fuji, Japan\'s highest peak and an enduring symbol of the country. Visit the Fuji-Hakone-Izu National Park to witness the majesty of this iconic volcano up close. The park provides opportunities for hiking, photography, and enjoying scenic vistas of Mount Fuji from various vantage points.</p><p>Lush Tea Fields: Shizuoka is renowned as one of Japan\'s premier tea-producing regions. Explore the verdant tea fields that carpet the hillsides, particularly in the town of Shimada. The perfect climate and fertile soil yield some of Japan\'s finest green teas. Tour tea plantations, participate in tea ceremonies, and savor the exquisite flavors of Shizuoka\'s teas.</p><p>Shizuoka Attractions: The prefecture offers a range of cultural and natural attractions. Shizuoka Sengen Shrine, located at the foot of Mount Fuji, is an important Shinto shrine with a history dating back centuries. Stroll through the tranquil beauty of Shizuoka\'s Japanese gardens, such as the Rakujuen Park and the Korakuen Garden.</p><p>Coastal Beauty: Shizuoka\'s coastline is blessed with scenic beauty and charming seaside towns. Explore the Izu Peninsula with its pristine beaches, hot springs, and the scenic Jogasaki Coast. Atami, known for its onsen (hot springs), offers relaxation with a view of the Pacific Ocean.</p><p>Cuisine: Shizuoka\'s cuisine is a delightful blend of fresh seafood from Suruga Bay and locally grown agricultural produce. Taste the region\'s specialty, sakura ebi (cherry shrimp), as well as dishes featuring wasabi, a pungent condiment for which Shizuoka is famous. Don\'t forget to sample the prefecture\'s delectable sushi and sashimi.</p><p>Outdoor Adventures: Outdoor enthusiasts will find ample opportunities for adventure in Shizuoka. Hike the Kumomi Trail in the Minami-Alps, go cycling in the scenic countryside, or embark on thrilling water sports along the Suruga Bay.</p><p>Welcoming Community: Shizuoka is known for its warm and welcoming local residents who take pride in sharing their prefecture\'s natural wonders and cultural heritage with visitors.</p><p>Shizuoka: A Journey of Scenic and Cultural Discovery: Whether you\'re gazing in awe at Mount Fuji, sipping freshly brewed green tea, or immersing yourself in the serene beauty of Japanese gardens, Shizuoka invites you to embark on a journey of scenic and cultural discovery. Experience the best of Japan\'s landscapes and traditions in this enchanting prefecture.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25113,0,NULL,NULL,'Shizuoka',0,NULL,NULL,NULL,NULL,NULL,'245_1694840212.png','245_1694840212.png','Japan','110',NULL,'2023-09-15 17:29:30','2023-09-15 17:29:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Shizuoka, Japan travel, Mount Fuji, tea fields, Shizuoka attractions, scenic beauty, cultural treasures, Shizuoka Prefecture','Explore Shizuoka: Japan\'s Scenic Prefecture of Mount Fuji, Tea Fields, and Tranquil Beauty','','',NULL,NULL,NULL,1),(246,NULL,NULL,'Dive into the heart of Osaka, Japan\'s vibrant metropolis known for its delectable street food, historic landmarks, and futuristic attractions. Discover the best of Osaka\'s cuisine, culture, and entertainment.',NULL,'<p>Nestled in the heart of Japan, Osaka is a captivating metropolis that seamlessly blends tradition with innovation. With its rich culinary scene, historic landmarks, and futuristic attractions, Osaka offers a unique and unforgettable travel experience. Let\'s embark on a journey through the highlights of this dynamic city.</p><p>Culinary Delights: Osaka is often hailed as Japan\'s kitchen, and for good reason. The city is a paradise for food enthusiasts, offering an array of mouthwatering dishes. Sample the famous street food at Dotonbori, where you can savor takoyaki (octopus balls), okonomiyaki (savory pancakes), and kushikatsu (deep-fried skewers). Don\'t miss out on Osaka\'s signature dish, the delectable \"Osaka-style sushi,\" or indulge in a multi-course kaiseki meal for a taste of Japanese haute cuisine.</p><p>Historic Landmarks: Immerse yourself in Osaka\'s rich history by exploring its historic landmarks. Osaka Castle, an iconic symbol of the city, offers a glimpse into Japan\'s feudal past with its impressive architecture and informative museum. The Shitenno-ji Temple, one of Japan\'s oldest Buddhist temples, and Sumiyoshi Taisha Shrine, known for its distinctive bridge design, are also must-visit cultural sites.</p><p>Modern Wonders: Osaka seamlessly integrates modernity into its urban fabric. Experience the future at Universal Studios Japan, an entertainment extravaganza featuring thrilling rides and beloved movie-themed attractions. The Osaka Aquarium Kaiyukan showcases marine life from around the world in a mesmerizing underwater tunnel. For shopping and entertainment, visit the bustling district of Umeda, home to vast shopping complexes and a vibrant nightlife scene.</p><p>Cosmopolitan Flair: Osaka\'s cosmopolitan nature is reflected in its friendly and welcoming residents. The city\'s nightlife is lively, with a plethora of bars, clubs, and entertainment venues to suit every taste. Explore the trendy district of Namba, where you can shop, dine, and soak in the electric atmosphere.</p><p>Natural Beauty: Despite its urban sprawl, Osaka offers pockets of natural beauty. Enjoy a leisurely stroll in the peaceful Osaka Castle Park, especially during cherry blossom season when the trees are in full bloom. You can also escape to nearby Mount Koya, a serene mountain retreat with ancient temples and tranquil forested surroundings.</p><p>From mouthwatering street food to historic treasures and futuristic fun, Osaka beckons travelers with its unique blend of culture and modernity. Discover the flavors, sights, and experiences that make this city a vibrant gem within Japan\'s diverse landscape.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,32378,1,NULL,NULL,'Osaka',0,NULL,NULL,NULL,NULL,NULL,'246_1694779789.png','246_1694779789.png','Japan','110',NULL,'2023-09-15 17:29:30','2023-09-15 17:29:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Osaka, Japan travel, Osaka attractions, Japanese cuisine, Osaka street food, modern Japan, historic landmarks, Osaka Castle, Dotonbori, Universal Studios Japan, Osaka nightlife','Explore Osaka: Japan\'s Dynamic City of Culinary Delights and Modern Wonders','','',NULL,NULL,NULL,1),(248,NULL,NULL,'Immerse yourself in the captivating city of Hamamatsu, Japan, where music, culture, and natural beauty converge. Explore the top attractions, musical heritage, and scenic wonders of Hamamatsu.',NULL,'<p>Nestled in the heart of Japan\'s Shizuoka Prefecture, Hamamatsu is a city that harmoniously blends a rich musical heritage, vibrant cultural experiences, and captivating scenic beauty. Whether you\'re a music enthusiast, nature lover, or cultural explorer, Hamamatsu offers a diverse range of attractions to captivate your senses. Let\'s embark on a journey through the enchanting city of Hamamatsu.</p><p>Musical Heritage: Hamamatsu is renowned as the \"City of Music\" and is celebrated for its deep musical roots. It\'s the birthplace of Yamaha, one of the world\'s most iconic music instrument manufacturers. Explore the Yamaha Corporation headquarters and the Yamaha Museum to discover the history of musical innovation and craftsmanship. Be sure to catch a live performance at the Hamamatsu Musical Instrument Museum, where you can experience the sounds of a vast array of instruments from around the world.</p><p>Cultural Experiences: Hamamatsu offers a rich cultural tapestry waiting to be explored. Visit Hamamatsu Castle, a historic site that provides insights into the city\'s feudal past. The Hamamatsu City Museum of Art showcases both traditional and contemporary Japanese art. Don\'t miss the chance to participate in a traditional tea ceremony or explore the tranquil Shuzenji Temple.</p><p>Scenic Beauty: The natural beauty surrounding Hamamatsu is nothing short of breathtaking. Hamamatsu\'s Flower Park is a riot of colors in every season, featuring vibrant blooms and themed gardens. Hamamatsu boasts picturesque beaches along Lake Hamana and stunning views from the Nakatajima Sand Dunes, making it perfect for relaxation and outdoor adventures.</p><p>Festivals and Events: Hamamatsu comes alive with a vibrant calendar of festivals and events. The Kite Festival, known as \"Hamamatsu Matsuri,\" is a spectacular display of giant kites soaring into the sky. The Hamamatsu International Piano Competition draws world-class pianists, showcasing the city\'s musical prowess.</p><p>Cuisine: Savor the flavors of Hamamatsu by indulging in local delicacies. Hamamatsu gyoza, savory dumplings filled with succulent pork and vegetables, are a must-try. The city\'s fresh seafood offerings, including eel and fish from Lake Hamana, are culinary delights not to be missed.</p><p>Outdoor Adventures: For nature enthusiasts, Hamamatsu\'s surrounding landscapes offer hiking, biking, and water sports. The city\'s proximity to the Southern Alps and the Pacific Ocean ensures that adventure is never far away.</p><p>Welcoming Hospitality: Hamamatsu is known for its warm and welcoming residents who take pride in sharing their city\'s cultural heritage and natural wonders with visitors.</p><p>Hamamatsu: A Harmonious Symphony: Whether you\'re exploring its musical heritage, immersing yourself in cultural experiences, or basking in its scenic beauty, Hamamatsu invites you to become part of its harmonious symphony. Experience the best of Japan\'s culture and natural wonders in this captivating city.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,11417,1,NULL,NULL,'Hamamatsu',0,NULL,NULL,NULL,NULL,NULL,'248_1694780621.png','248_1694780621.png','Japan','110',NULL,'2023-09-15 17:29:30','2023-09-15 17:29:30',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Hamamatsu, Japan travel, Hamamatsu attractions, music heritage, cultural experiences, scenic beauty, Hamamatsu festivals, Shizuoka Prefecture','Discover Hamamatsu: Japan\'s Enchanting City of Music, Culture, and Scenic Beauty','','',NULL,NULL,NULL,1),(250,NULL,NULL,'Discover the tranquil charm of Kawaguchi, a picturesque town nestled near Mount Fuji. Explore its pristine lakes, stunning landscapes, and cultural attractions in this guide.',NULL,'<p>Nestled in the scenic Yamanashi Prefecture of Japan, Kawaguchi is a charming town that offers a tranquil escape from the bustling cities of Tokyo and Osaka. Situated in the foothills of the iconic Mount Fuji, Kawaguchi boasts a serene environment and stunning natural beauty, making it a must-visit destination for nature enthusiasts and culture seekers alike.</p><p>Natural Beauty:</p><p>Kawaguchi is perhaps best known for its proximity to Mount Fuji, Japan\'s highest and most famous peak. The town provides breathtaking views of the mountain, especially from the shores of Lake Kawaguchiko, one of the Fuji Five Lakes. This pristine lake, with its clear waters mirroring the majestic mountain, is a haven for photographers and nature lovers. Visitors can enjoy leisurely strolls along the lakeside promenade or take a cruise to fully immerse themselves in the picturesque surroundings.</p><p>Outdoor Activities:</p><p>For those seeking adventure, Kawaguchi offers a range of outdoor activities. Hiking enthusiasts can embark on trails leading to various vantage points around Mount Fuji, with the ascent being particularly popular during the climbing season from July to September. In the winter months, the nearby Fujiten Snow Resort provides an opportunity for skiing and snowboarding.</p><p>Cultural Attractions:</p><p>Kawaguchi also has cultural treasures to explore. The Kawaguchiko Music Forest Museum is a unique attraction featuring antique music boxes, beautifully landscaped gardens, and daily musical performances. Additionally, the Itchiku Kubota Art Museum showcases the intricate kimono artistry of renowned artist Itchiku Kubota.</p><p>Hot Springs and Relaxation:</p><p>The town is dotted with onsen (hot spring) resorts, offering travelers a chance to unwind and rejuvenate in the soothing thermal waters. Many accommodations in Kawaguchi have their own hot spring baths, allowing guests to soak while gazing at Mount Fuji or the starry night sky.</p><p>Cuisine:</p><p>Kawaguchi also offers a delectable taste of Japanese cuisine. Try local specialties like Hoto, a hearty noodle soup with vegetables and miso broth, or indulge in fresh sashimi and tempura at one of the town\'s restaurants.</p><p>Access:</p><p>Kawaguchi is easily accessible from Tokyo, making it a popular weekend getaway for city dwellers. The Chuo Expressway and Kawaguchiko Station provide convenient transportation options for travelers.</p><p>In conclusion, Kawaguchi is a hidden gem in Japan, offering a perfect blend of natural beauty, cultural experiences, and relaxation opportunities. Whether you\'re an outdoor enthusiast, an art lover, or simply seeking a peaceful escape in the shadow of Mount Fuji, Kawaguchi has something to offer every traveler.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,80535,1,NULL,NULL,'KAWAGUCHI',0,NULL,NULL,NULL,NULL,NULL,'250_1695121580.png','250_1695121580.png','Japan','110',NULL,'2023-09-19 13:19:17','2023-09-19 13:19:17',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kawaguchi\r\nMount Fuji\r\nKawaguchiko Lake\r\nJapanese culture\r\nTourist attractions\r\nScenic beauty\r\nOutdoor activities\r\nTravel guide\r\nNature exploration','Explore the Serene Beauty of Kawaguchi: Your Guide to a Japanese Gem','','',NULL,NULL,NULL,1),(255,NULL,NULL,'Dive into the heart of rural Japan with Takayama, a picturesque town known for its preserved Edo-period streets, traditional festivals, and exquisite Hida beef cuisine. This comprehensive guide unveils the hidden gems of Takayama.',NULL,'<p>Nestled in the heart of Japan\'s Gifu Prefecture, Takayama is a picturesque town that offers a captivating journey through the nation\'s rich history, traditional culture, and stunning natural landscapes. Known for its well-preserved Edo-period streets, renowned Hida beef cuisine, and vibrant festivals, Takayama invites travelers to explore its enchanting charm.</p><p>Historical Preservation:</p><p>Takayama\'s old town, also referred to as \"Little Kyoto,\" is a treasure trove of historical architecture and culture. Strolling through its Edo-period streets, characterized by wooden merchant houses and narrow cobblestone alleys, transports visitors back in time. The beautifully preserved buildings, many of which house shops, sake breweries, and museums, provide a glimpse into Japan\'s bygone eras.</p><p>Festivals and Traditions:</p><p>Takayama is famous for its vibrant festivals, with the Takayama Festival, held in spring and autumn, being the most celebrated. Elaborate floats, ornate marionettes, and traditional music and dance performances make these festivals truly spectacular. The local craftsmanship that goes into creating the festival floats is a testament to the town\'s dedication to preserving its cultural heritage.</p><p>Hida Beef Delicacy:</p><p>Food enthusiasts will relish the opportunity to savor Hida beef, a regional delicacy renowned for its exceptional quality and marbling. Many restaurants in Takayama offer succulent Hida beef dishes, from grilled skewers to sizzling hotpots, providing a true culinary delight for meat lovers.</p><p>Charming Crafts:</p><p>Takayama is also a hub for traditional Japanese crafts. Visitors can explore local shops and markets to find exquisite handcrafted goods, including pottery, lacquerware, and textiles. These make for unique souvenirs and gifts.</p><p>Natural Beauty:</p><p>Surrounded by the Japanese Alps, Takayama is blessed with breathtaking natural beauty. The nearby Shinhotaka Ropeway offers panoramic views of the surrounding mountains and lush forests. In winter, the area becomes a winter wonderland, attracting skiers and snow enthusiasts.</p><p>Accessibility:</p><p>Takayama\'s accessibility makes it an ideal destination. The JR Takayama Line connects the town to major cities like Nagoya and Kyoto, making it a convenient stop for travelers exploring the Japanese countryside.</p><p>In conclusion, Takayama is a hidden gem that encapsulates the essence of rural Japan. Its historical streets, cultural traditions, and natural splendor offer a captivating experience for travelers seeking an authentic Japanese adventure. Whether you\'re captivated by history, intrigued by cuisine, or simply yearning for a tranquil escape, Takayama promises an unforgettable journey into the heart of Japan\'s timeless beauty.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,26669,1,NULL,NULL,'Takayama',0,NULL,NULL,NULL,NULL,NULL,'255_1695122480.png','255_1695122480.png','Japan','110',NULL,'2023-09-19 13:19:17','2023-09-19 13:19:17',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Takayama\r\nTakayama Japan\r\nHida beef\r\nEdo-period streets\r\nJapanese festivals\r\nRural Japan\r\nTakayama attractions\r\nHida Takayama\r\nGifu Prefecture','Exploring the Enchanting Takayama: A Glimpse into Japan\'s Rural Charms','','',NULL,NULL,NULL,1),(258,NULL,NULL,'Discover Kyoto, Japan\'s ancient capital, and immerse yourself in its rich cultural heritage, historic temples, serene gardens, and traditional tea ceremonies. Explore this comprehensive guide to Kyoto\'s timeless charm.',NULL,'<p>Nestled in the Kansai region of Japan, Kyoto stands as a living testament to the nation\'s rich history and vibrant culture. With its well-preserved historic sites, traditional tea ceremonies, and stunning natural beauty, Kyoto is a city that captivates the soul and takes you on a journey through Japan\'s past and present.</p><p>Historical Heritage:</p><p>Kyoto, once Japan\'s imperial capital for over a thousand years, is a treasure trove of historical sites. The city is home to countless temples and shrines, including the iconic Kinkaku-ji (Golden Pavilion), Fushimi Inari Taisha with its thousands of vermilion torii gates, and the serene Ryoan-ji Temple with its famous rock garden. Each of these sites transports you to a different era and offers a glimpse into Japan\'s spiritual and architectural legacy.</p><p>Traditional Japanese Culture:</p><p>Visiting Kyoto is like stepping into a time machine that transports you to a Japan of old. The city is renowned for preserving traditional Japanese culture and arts. You can witness authentic tea ceremonies in historic tea houses, explore traditional wooden machiya houses, and stroll through districts like Gion, where geishas still gracefully exist in their distinctive attire.</p><p>Beautiful Gardens:</p><p>Kyoto\'s enchanting gardens are a feast for the eyes and a source of tranquility. The meticulously landscaped Japanese gardens, like those at the Arashiyama Bamboo Grove or the Imperial Palace, offer an oasis of serenity amidst the urban bustle.</p><p>Seasonal Delights:</p><p>Kyoto\'s beauty changes with the seasons. Cherry blossoms (sakura) transform the city into a pink wonderland in spring, while fiery red maple leaves (momiji) adorn the temples and parks in the autumn. Whether you visit during the cherry blossom season or the height of fall foliage, Kyoto\'s seasonal charm never disappoints.</p><p>Culinary Excellence:</p><p>Kyoto is a culinary destination in its own right. Savor traditional kaiseki (multi-course) meals, indulge in matcha tea and wagashi (Japanese sweets), or explore Nishiki Market, known as \"Kyoto\'s Kitchen,\" where you can taste a wide array of local delicacies.</p><p>Accessible Nature:</p><p>Surrounded by lush mountains and bordered by the gentle Hozugawa River, Kyoto is also a gateway to nature. Hike in the nearby Arashiyama Bamboo Grove, or take a boat ride along the Hozugawa River to appreciate the picturesque landscapes that have inspired poets and artists for centuries.</p><p>Modern Kyoto:</p><p>While steeped in tradition, Kyoto also embraces modernity with its vibrant shopping streets, contemporary art museums, and innovative architecture. The Kyoto International Manga Museum, for example, celebrates Japan\'s pop culture.</p><p>In conclusion, Kyoto is a city where the old and the new coexist harmoniously. Its blend of history, culture, natural beauty, and culinary delights makes it a destination that leaves an indelible mark on every traveler\'s heart, reminding them of Japan\'s timeless elegance and enduring spirit.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,14674,1,NULL,NULL,'Kyoto',0,NULL,NULL,NULL,NULL,NULL,'258_1695122035.png','258_1695122035.png','Japan','110',NULL,'2023-09-19 13:19:17','2023-09-19 13:19:17',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Kyoto\r\nKyoto Japan\r\nKyoto travel\r\nHistoric temples\r\nJapanese culture\r\nTea ceremonies\r\nTraditional Japan\r\nKyoto attractions\r\nGardens in Kyoto','Unveiling the Timeless Elegance of Kyoto: A Cultural Odyssey','','',NULL,NULL,NULL,1),(260,NULL,NULL,'Explore Hiroshima, a city with a powerful history of resilience and a commitment to peace. Learn about its iconic Peace Memorial Park, Hiroshima Castle, and vibrant culture. Plan your visit today.',NULL,'<p>Hiroshima, situated in western Japan, is a city that has transcended tragedy to become a symbol of resilience and a beacon of peace. Forever etched in history due to the atomic bomb that devastated it in 1945, Hiroshima has risen from the ashes to become a thriving metropolis with a strong commitment to promoting peace and understanding. Explore the city\'s powerful historical sites, vibrant culture, and lush landscapes that tell a tale of hope and renewal.</p><p>Hiroshima Peace Memorial Park:</p><p>The Hiroshima Peace Memorial Park stands as a solemn tribute to the victims of the atomic bombing and a powerful symbol of the city\'s dedication to peace. The iconic Atomic Bomb Dome, a UNESCO World Heritage Site, remains a haunting yet poignant reminder of the devastating event. The park\'s tranquil surroundings, including the Peace Memorial Museum and the Flame of Peace, invite reflection and contemplation.</p><p>Hiroshima Castle:</p><p>This beautifully reconstructed castle is a testament to Hiroshima\'s resilience. Explore its historic interiors and climb to the top for panoramic views of the city. The castle\'s surrounding gardens are especially stunning during cherry blossom season.</p><p>Vibrant Culture:</p><p>Hiroshima boasts a rich cultural scene. Visit the Hiroshima Museum of Art to admire its impressive collection, which includes works by renowned Western and Japanese artists. The city\'s annual Hiroshima Flower Festival, showcasing colorful parades and performances, is a celebration of life and resilience.</p><p>Culinary Delights:</p><p>Hiroshima is famous for its unique style of okonomiyaki, a savory pancake layered with noodles, vegetables, and your choice of toppings. Savor this local specialty at the bustling Okonomimura, a multi-story complex dedicated to this delicious dish.</p><p>Miyajima Island:</p><p>A short ferry ride from Hiroshima, Miyajima Island is home to the iconic Itsukushima Shrine with its famous \"floating\" torii gate. Explore the island\'s scenic beauty, hiking trails, and friendly deer population.</p><p>Conclusion:</p><p>Hiroshima\'s journey from devastation to a city of resilience and peace is a testament to the human spirit\'s ability to heal and rebuild. It is a city that invites visitors to remember the past, embrace the present, and envision a peaceful future. Discover Hiroshima, a place where history and hope converge, and where the lessons of the past inspire a commitment to a more peaceful world.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,34773,1,NULL,NULL,'Hiroshima',0,NULL,NULL,NULL,NULL,NULL,'260_1695117562.png','260_1695117594.png','Japan','110',NULL,'2023-09-19 13:19:17','2023-09-19 13:19:17',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'Hiroshima, Peace Memorial Park, Hiroshima Castle, atomic bomb, Hiroshima Peace Memorial, Japanese history, Hiroshima Peace Memorial Museum, Hiroshima attractions, city of peace, Hiroshima culture.','Discover Hiroshima: A City of Resilience and Peace','','',NULL,NULL,NULL,1),(261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,109303,NULL,NULL,NULL,'Cappadocia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,102345,NULL,NULL,NULL,'MELBOURNE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,102102,NULL,NULL,NULL,'WELLINGTON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,89905,NULL,NULL,NULL,'WELLINGTON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'South Africa','195',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(265,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,84288,NULL,NULL,NULL,'ZURICH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Netherlands','154',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(266,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,46974,NULL,NULL,NULL,'DELHI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,46928,NULL,NULL,NULL,'LUCKNOW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(268,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,46882,NULL,NULL,NULL,'PARIS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,41886,NULL,NULL,NULL,'LUCKNOW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,41117,NULL,NULL,NULL,'PICTON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,40948,NULL,NULL,NULL,'QUEENSTOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australia','13',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34517,NULL,NULL,NULL,'Somnath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,37030,NULL,NULL,NULL,'Andaman Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(274,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30548,NULL,NULL,NULL,'Zurich',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(275,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28303,NULL,NULL,NULL,'Vadodara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(276,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,33898,NULL,NULL,NULL,'Usa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Japan','110',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(277,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27969,NULL,NULL,NULL,'Turkey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26540,NULL,NULL,NULL,'Sydney',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22126,NULL,NULL,NULL,'Pristina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yugoslavia','241',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21358,NULL,NULL,NULL,'Picton',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:19','2024-01-11 11:52:19',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16505,NULL,NULL,NULL,'Maldives',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maldives','133',NULL,'2024-01-11 11:52:20','2024-01-11 11:52:20',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(282,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14383,NULL,NULL,NULL,'Korce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Albania','2',NULL,'2024-01-11 11:52:20','2024-01-11 11:52:20',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(283,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14274,NULL,NULL,NULL,'Kochi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Japan','110',NULL,'2024-01-11 11:52:20','2024-01-11 11:52:20',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(284,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7477,NULL,NULL,NULL,'Dalhousie',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Canada','39',NULL,'2024-01-11 11:52:20','2024-01-11 11:52:20',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(285,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,266,NULL,NULL,NULL,'Agra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-01-11 11:52:20','2024-01-11 11:52:20',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(286,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,110324,NULL,NULL,NULL,'Meghalaya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Indonesia','102',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,100869,NULL,NULL,NULL,'CAM RANH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Vietnam','236',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(288,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,79321,NULL,NULL,NULL,'CAPPADOCIA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,74941,NULL,NULL,NULL,'PALERMO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,74406,NULL,NULL,NULL,'AGRA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36423,NULL,NULL,NULL,'Rameswaram',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26795,NULL,NULL,NULL,'Taormina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26561,NULL,NULL,NULL,'Syracuse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(294,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26560,NULL,NULL,NULL,'Syracuse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'USA','231',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22535,NULL,NULL,NULL,'Rameshwaram',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22491,NULL,NULL,NULL,'Ragusa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19697,NULL,NULL,NULL,'Noto',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Japan','110',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19696,NULL,NULL,NULL,'Noto',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18875,NULL,NULL,NULL,'Nagoya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Japan','110',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16937,NULL,NULL,NULL,'Marsala',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31885,NULL,NULL,NULL,'Male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16319,NULL,NULL,NULL,'Madurai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14455,NULL,NULL,NULL,'Kovalam',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13520,NULL,NULL,NULL,'Kanyakumari',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,270,NULL,NULL,NULL,'Agrigento',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2024-02-15 12:25:05','2024-02-15 12:25:05',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `tb_tbb2c_destinations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_tbb2c_newsletter`
--

DROP TABLE IF EXISTS `tb_tbb2c_newsletter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_newsletter` (
  `news_letter_id` int NOT NULL AUTO_INCREMENT,
  `news_letter_email` varchar(255) NOT NULL,
  `created_date` datetime NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`news_letter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_newsletter`
--

LOCK TABLES `tb_tbb2c_newsletter` WRITE;
/*!40000 ALTER TABLE `tb_tbb2c_newsletter` DISABLE KEYS */;
INSERT INTO `tb_tbb2c_newsletter` VALUES (1,'muskancatpl@gmail.com','2020-11-24 15:17:19','1'),(2,'baibhav@catpl.co.in','2021-01-20 17:14:04','1'),(4,'khushboo@gmail.com','2021-03-19 21:06:15','1'),(5,'ahvshvah@abajbja.com','2021-03-30 15:42:14','1'),(6,'armaans108@gmail.com','2021-03-31 19:15:15','1'),(7,'jasdhir01@gmail.com','2021-04-11 13:10:32','1'),(8,'taran@ineedtrip.com','2021-04-11 13:24:07','1'),(11,'turnerandsons@gmail.com','2021-04-25 09:52:17','1'),(14,'walker8294@gmail.com','2021-08-07 10:51:53','1'),(15,'pvikram097@gmail.com','2021-10-19 10:52:05','1'),(16,'martinshow@gmail.com','2021-11-12 19:14:51','1'),(19,'paul_palash@rocketmail.co','2022-03-26 17:17:21','1'),(20,'palash@redwinglabs.in','2022-05-01 01:30:32','1'),(21,'book@makemyyaatra.com','2023-01-22 22:46:17','1'),(22,'prince@hellogtx.com','2023-07-19 12:37:27','1'),(24,'sales.ineedtrip@gmail.com','2023-08-05 14:19:18','1'),(26,'solanki1441982@gmail.com','2023-10-11 16:01:40','1'),(27,'testing@example.com','2024-01-18 00:33:42','1');
/*!40000 ALTER TABLE `tb_tbb2c_newsletter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_tbb2c_packages_master`
--

DROP TABLE IF EXISTS `tb_tbb2c_packages_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_packages_master` (
  `PkgSysId` bigint NOT NULL AUTO_INCREMENT,
  `GTXPkgId` bigint NOT NULL,
  `GTXPkgSourceId` smallint NOT NULL,
  `AgencySysId` bigint NOT NULL,
  `IsFeatured` int NOT NULL,
  `lastMinuteDeal` int NOT NULL DEFAULT '0',
  `DisplayIndex` smallint NOT NULL,
  `PackageCategory` text,
  `ShortJsonInfo` text,
  `ItemType` tinyint DEFAULT '0',
  `PackageType` tinyint DEFAULT '0',
  `PackageSubType` tinyint DEFAULT '0',
  `LongJsonInfo` longtext NOT NULL,
  `Destinations` varchar(2000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `PackageSearchString` varchar(2000) NOT NULL,
  `HotDeal` varchar(255) DEFAULT NULL,
  `DestinationsId` varchar(200) NOT NULL,
  `MinPrice` decimal(18,0) NOT NULL,
  `MaxPrice` decimal(18,0) NOT NULL,
  `Nights` smallint NOT NULL,
  `Image` varchar(255) DEFAULT NULL,
  `MainImage` varchar(255) DEFAULT NULL,
  `hotelWebImage` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `MinPax` smallint NOT NULL,
  `PackTypeMask` varchar(50) NOT NULL,
  `PackRangeType` smallint NOT NULL,
  `PkgValidFrom` datetime NOT NULL,
  `PkgValidUntil` datetime NOT NULL,
  `BookingValidUntil` datetime NOT NULL,
  `StarRating` tinyint NOT NULL,
  `Countries` mediumtext NOT NULL,
  `CountryIds` varchar(255) NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `CreatedBy` bigint NOT NULL,
  `UpdatedBy` bigint NOT NULL,
  `IsPublish` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '0',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `Keyword` text,
  `Description` text,
  `Metatag` text,
  `broucher` varchar(256) DEFAULT NULL,
  `packageNameUrl` varchar(500) DEFAULT NULL,
  `visaFAQ` text,
  `festivals` varchar(500) DEFAULT NULL,
  `packageItinerary` text,
  `oldPrice` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`PkgSysId`),
  FULLTEXT KEY `PackageSearchString` (`PackageSearchString`)
) ENGINE=InnoDB AUTO_INCREMENT=449 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_packages_master`
--

LOCK TABLES `tb_tbb2c_packages_master` WRITE;
/*!40000 ALTER TABLE `tb_tbb2c_packages_master` DISABLE KEYS */;
INSERT INTO `tb_tbb2c_packages_master` VALUES (1,23333,1,5293,0,0,0,'Adventure,Wildlife,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":23333,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Shervani_Hilltop_Nainital_Package_8.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;SHERVANI HILLTOP PACKAGE&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Commonly known as the &amp;ldquo;Lake District of India&amp;rdquo;,&amp;nbsp;&lt;strong&gt;Nainital&lt;\\/strong&gt;&amp;nbsp;is one of the most beautiful hill stations in North India. Surrounded by mountains on three sides&amp;nbsp;&lt;strong&gt;Nainital&lt;\\/strong&gt;&amp;nbsp;is located around the beautiful lake Naini Tal. This lake resort is situated at a height of 1,938 meters.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Nainital\",\"SourcePlaceSysId\":18892,\"AgencyName\":\"I Need Trip\",\"Name\":\"SHERVANI HILLTOP PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5836\",\"SupplierName\":\"CORBETT MASTER\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,B\\/fast & Dinner\",\"PackageType\":\"Adventure,Wildlife,Family,Hill Station\",\"Validity\":{\"From\":\"2021-03-18\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":142713,\"Name\":\"Shervani Hilltop\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.392013\",\"Long\":\"79.46081\",\"Address\":\"Mallital Nainital 263001\"},\"Images\":{\"Image\":[{\"ImagId\":3136839,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_28_t.jpg\"},{\"ImagId\":3136840,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_29_t.jpg\"},{\"ImagId\":3136841,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_30_t.jpg\"},{\"ImagId\":3136842,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_34_t.jpg\"},{\"ImagId\":3136843,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_35_t.jpg\"},{\"ImagId\":3136844,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_36_t.jpg\"},{\"ImagId\":3136845,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_38_t.jpg\"},{\"ImagId\":3136846,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_39_t.jpg\"},{\"ImagId\":3136847,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_40_t.jpg\"},{\"ImagId\":3136848,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_43_t.jpg\"},{\"ImagId\":3136849,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_37_t.jpg\"},{\"ImagId\":3136850,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_41_t.jpg\"},{\"ImagId\":3136851,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_44_t.jpg\"},{\"ImagId\":3136852,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_42_t.jpg\"},{\"ImagId\":3136853,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/7474937a_t.jpg\"},{\"ImagId\":3136854,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/dea90234_t.jpg\"},{\"ImagId\":3136855,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/35089806_t.jpg\"},{\"ImagId\":3136856,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4460a7c4_t.jpg\"},{\"ImagId\":3136857,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/9f0a7086_t.jpg\"},{\"ImagId\":3136858,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/fac9e614_t.jpg\"},{\"ImagId\":3136859,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/204a3c10_t.jpg\"},{\"ImagId\":3136860,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/d8d79cbe_t.jpg\"},{\"ImagId\":3136861,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/933c66d9_t.jpg\"},{\"ImagId\":3136862,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/b9fa276f_t.jpg\"},{\"ImagId\":3136863,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/5a530aa8_t.jpg\"},{\"ImagId\":3136864,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/48033753_t.jpg\"},{\"ImagId\":3136865,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/3a7b9055_t.jpg\"},{\"ImagId\":3136866,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/60ec7ebc_t.jpg\"},{\"ImagId\":3136867,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/d87d4b14_t.jpg\"},{\"ImagId\":3136868,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/2a26a9c1_t.jpg\"},{\"ImagId\":3136869,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/7f562fee_t.jpg\"},{\"ImagId\":3136870,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/ea845b38_t.jpg\"},{\"ImagId\":3136871,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_27_t.jpg\"},{\"ImagId\":3136872,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_25_t.jpg\"},{\"ImagId\":3136873,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_24_t.jpg\"},{\"ImagId\":3136874,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_23_t.jpg\"},{\"ImagId\":3136875,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_22_t.jpg\"},{\"ImagId\":3136876,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_21_t.jpg\"},{\"ImagId\":3136877,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_20_t.jpg\"},{\"ImagId\":3136878,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_19_t.jpg\"},{\"ImagId\":3136879,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_18_t.jpg\"},{\"ImagId\":3136880,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_17_t.jpg\"},{\"ImagId\":3136881,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_16_t.jpg\"},{\"ImagId\":3136882,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_15_t.jpg\"},{\"ImagId\":3136883,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_14_t.jpg\"},{\"ImagId\":3136884,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_13_t.jpg\"},{\"ImagId\":3136885,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_12_t.jpg\"},{\"ImagId\":3136886,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_11_t.jpg\"},{\"ImagId\":3136887,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_10_t.jpg\"},{\"ImagId\":3136888,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_9_t.jpg\"},{\"ImagId\":3136889,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_8_t.jpg\"},{\"ImagId\":3136890,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_7_t.jpg\"},{\"ImagId\":3136891,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_6_t.jpg\"},{\"ImagId\":3136892,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_5_t.jpg\"},{\"ImagId\":3136893,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_4_t.jpg\"},{\"ImagId\":3136894,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_3_t.jpg\"},{\"ImagId\":3136895,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_2_t.jpg\"},{\"ImagId\":3136896,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_1_t.jpg\"}]},\"CityId\":18892,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Shervani Hilltop Nainital in Nainital, you&amp;apos;ll be in the historical district and convenient to China Peak and Nainital Lake.  This hotel is within the region of Ghorakhal Temple.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 46 air-conditioned rooms featuring minibars and flat-screen televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as desks and complimentary newspapers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with onsite massages or take in the view from a garden. Additional amenities at this hotel include complimentary wireless Internet access, an arcade\\/game room, and wedding services. Guests can catch a ride on the complimentary shuttle, which operates within 2 km.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a 24-hour business center, express check-in, and express check-out. Event facilities at this hotel consist of a conference center and a meeting room. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a train station pick-up service.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4424500\\/4424417\\/4424417_28_t.jpg\",\"AccoAminitiesMask\":\"111000010000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5836,\"SupplierName\":\"CORBETT MASTER\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166958\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":142713,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166959\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":142713,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166960\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":142713,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23333\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10752.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-10\",\"Currency\":1,\"priceTripleOcc\":10753,\"priceDoubleOcc\":\"10752.50\",\"priceSingleOcc\":21505,\"priceExtraBed\":\"10752.50\",\"priceWithoutBed\":\"10752.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Premium Room&amp;nbsp;with Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Nights 03 Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 96 hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166958\":[{\"Sequence\":[0],\"TPInvnSysId\":[166958],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"166959\":[{\"Sequence\":[0],\"TPInvnSysId\":[166959],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"166960\":[{\"Sequence\":[0],\"TPInvnSysId\":[166960],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',10753,10753,2,'1_1616391800_0.jpg,1_1616391824_0.jpg,1_1616391844_0.jpg,1_1616391844_1.jpg','1_banner_1614076621.jpg','[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2021-03-18 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 14:31:52','2021-03-18 00:00:00',1,1,'0','0','0','','','',NULL,'shervani-hilltop-package',NULL,NULL,NULL,0),(6,23823,1,5293,0,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":23823,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CHARDHAM_YATRA_2021_-_BY_ROAD_99.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;ins&gt;&lt;strong&gt;CHARDHAM YATRA 2021 - BY ROAD&amp;nbsp;&amp;nbsp;( EX DELHI )&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\nHARIDWAR-BARKOT-YAMUNOTRI-UTTARKASHI-GANGOTRI-GUPTKASHI-KEDARNATH-BADRINATH-RUDRAPRAYAG-RISHIKESH-HARIDWAR&lt;br \\/&gt;\\r\\n&lt;strong&gt;Duration: 11 Nights \\/ 12 Days&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;ins&gt;&lt;strong&gt;MAJOR ATTRACTIONS :&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\nGanga Aarti at Har Ki Pauri- Haridwar, Tapt Kund (Hot Spring), Yamunotri Temple, Gangotri Temple, Gaurikund, Kedarnath Temple, Bhairav Baba Temple, Badrinath Temple, Mana Village (Last Indian Village), Ram Jhula and Laxman Jhula along with Panch Prayags of Garhwal Himalayas: Vishnuprayag (Alaknanda River and Dhauliganga River), Nandprayag (Alaknanda River and Nandakini River), Karnprayag (Alaknanda River, and Pindar River), Rudraprayag (Alaknanda River and Mandakini River) &amp;amp; Devprayag (Alaknanda River and Bhagirathi River).&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHARDHAM YATRA 2021 - BY ROAD\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5870\",\"SupplierName\":\"SATGURU TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Cab,Sightseeing,Guided Tours\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2021-09-22\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480958,\"Name\":\"The Urmi Haridwar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bhupatwala, Near Shantikunj 71, Ganga Vihar Colony, Haridwar, Uttarakhand 249410 \"},\"Images\":{\"Image\":[{\"ImagId\":4818056,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480958\\/5293_01617868947.jpg\"},{\"ImagId\":4818057,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480958\\/5293_11617868947.jpg\"}]},\"CityId\":11530,\"Brief\":\"&lt;p&gt;&lt;strong&gt;The &amp;#39;URMI&amp;#39;&lt;\\/strong&gt;&nbsp;is a Sanskrit word which means &lsquo;WAVE&rsquo; and our brand signify it very much. The URMI give an impression of modern living yet keeping the ultimate hospitality tradition and spirituality of Haridwar, In URMI, where merely earning from guests is not a motive rather servicing all with the best of all class facilities is religion.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480958\\/5293_3c83508b00abd08fc87736cadafbb3231617868947.jpg\",\"AccoAminitiesMask\":\"1110010000101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477615,\"Name\":\"Lakshya\'s Hotel\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9245791\",\"Long\":\"78.12949449999999\",\"Address\":\" Singh Dwar, Delhi Bypass Road, Near Gurukul Kangri University, Haridwar, Uttarakhand 249408\"},\"Images\":{\"Image\":[{\"ImagId\":4818091,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477615\\/5293_01617952917.jpg\"}]},\"CityId\":11530,\"Brief\":\"&lt;p&gt;&lt;strong&gt;Located in the holy city of Haridwar, Lakshya&rsquo;s&nbsp; Hotel is the most preferred&nbsp; hotel of Haridwar with 84 rooms that offer unparalleled&nbsp;service with eco-friendly practices &nbsp;to make your stay in the divine city more memorable&nbsp;and unforgettable.&nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1110110110111111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477616,\"Name\":\"Hotel GODWIN\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9855856\",\"Long\":\"78.18779219999999\",\"Address\":\"Rishikesh Road, Opp Shanti Kunj, Haridwar, Uttarakhand 249205\"},\"Images\":{\"Image\":[{\"ImagId\":4818124,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_01618209023.jpg\"},{\"ImagId\":4818125,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_11618209023.jpg\"},{\"ImagId\":4818126,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_21618209023.jpg\"}]},\"CityId\":11530,\"Brief\":\"&lt;p&gt;The&nbsp;&lt;em&gt;Godwin Hotel&lt;\\/em&gt;&nbsp;location is on main&nbsp;&lt;em&gt;Haridwar&lt;\\/em&gt;&nbsp;Dehradun highway but it&amp;#39;s a bit far from Har ki paudi.&nbsp;On the outskirts of Rajaji National Park, and 3.1 km from Motichur Railway Station, this modern hotel is 10 km from both the Mansa Devi Temple and the Chandi Devi Temple.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_90b40c3480788e5be7f955920b0a063b1618209023.jpg\",\"AccoAminitiesMask\":\"1101110100001101100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34474,\"Title\":\"Barkot\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480987,\"Name\":\"Shiv Shakti Eco Resort\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kharsali, Uttarakhand 249141\"},\"Images\":{\"Image\":[{\"ImagId\":4818058,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480987\\/5293_01617870616.jpg\"}]},\"CityId\":34474,\"Brief\":\"&lt;p&gt;The Shiv Shakti Eco hotel is located in Kharsali village which is placed between the Yamuna and the river Hiranyabahu. The Shiv Shakti Eco Hotel is the ultimate place to relax and calm your mind during your &amp;#39;Chardham Yatra&amp;#39; at Kharsali.&nbsp;It is located at Cultural village Kharsali, surrounded by three sides by lesser Himalaya range . Conveniently located 49 Km. from Barkot town on the Delhi Yamunotri highway, the hotel is easily accessible, our guests will enjoy sweeping vistas of the majestic Garhwal Himalaya.We invite you to come to a place where silence is golden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One can take a walk into the village Kharsali in the evening or visit the Shani temple. The priests of&nbsp; Yamunotri temple come from this very village alone since ages. Amongst the most famous and pious pilgrim spots is the Yamunotri, situated in the midst of the beautiful and majestic Himalayas. Visitors say that the beauty of this shrine is breathtaking, irrespective of the number of times they have visited it. Hindus from all over the country travel here to pay homage to the origin of the River Yamuna that is in the opposite direction of the River Ganga.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480987\\/5293_b02ba0a6c014763c8c885e85a8017ec51617870616.jpg\",\"AccoAminitiesMask\":\"1000010001001110001\",\"AccoAminities\":[{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477627,\"Name\":\"Camp Nirvana\",\"Star\":\"2.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8262126\",\"Long\":\"78.2502813\",\"Address\":\"Gangani, NH 123, Barkot, Uttarakhand 249141, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818092,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477627\\/5293_01617953590.jpg\"},{\"ImagId\":4818093,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477627\\/5293_11617953591.jpg\"}]},\"CityId\":34474,\"Brief\":\"&lt;p&gt;The location&nbsp;is little away around 3Kms from main road towards Kedarnath Dham, but the place is real gem. We have&nbsp;very nice garden maintained in and around the rooms with beautiful flowers that please the mind.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477627\\/5293_89d06f007911a6738245998a085388461617953590.jpg\",\"AccoAminitiesMask\":\"1000010000000110001\",\"AccoAminities\":[{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"STANDARD CAMP\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477628,\"Name\":\"Rigveda Resort Barkot Yamunotri Uttarkashi\",\"Star\":\"3.00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.81696489999999\",\"Long\":\"78.2478115\",\"Address\":\"Nandgaon, Barkot yamnotri road, Chhatanga, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"&lt;p&gt;Rigveda resort is located in the beautiul Yamunotri valley of Uttarakhand. The tranquility and serenity of the place is a great respite for the travellers who want some space from the hustle &amp; bustle of the cities. The resort has been constructed keeping the requirements of modern travellers in mind.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477628\\/5293_0bf0fe7142739d89bcd269a20276ab9c1618209871.jpg\",\"AccoAminitiesMask\":\"1100010000001110101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":28264,\"Title\":\"Uttarkashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479551,\"Name\":\"Hotel Bhagirathi Residency Netala\",\"Star\":\"3.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.747845\",\"Long\":\"78.483254\",\"Address\":\"Gangotri Road, Netala Uttarkashi, Uttarakhand - 249193\"},\"Images\":{\"Image\":[{\"ImagId\":4818067,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479551\\/5293_01617876645.jpg\"},{\"ImagId\":4818068,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479551\\/5293_01617876962.jpg\"}]},\"CityId\":28264,\"Brief\":\"&lt;p&gt;Celebrated as one of the city&amp;#39;s best is, Bhagirathi Residency in Uttarkashi. The hotel is strategically located in Netala. This hospitality destination has grown to become the ideal place for travelers and those on business to feel at home when in the city. Many have also reviewed the hotel to be among the sought after Hotels in Uttarkashi.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479551\\/5293_01332a17c7c5f09e11ffc8e0ec3ab82f1617876645.jpg\",\"AccoAminitiesMask\":\"1110010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477634,\"Name\":\"OYO 23161 Hotel Akash Ganga\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7363798\",\"Long\":\"78.4002946\",\"Address\":\"Near RTO Office Barethi chungi, Uttarkashi - Gangotri Rd, Uttarkashi, Uttarakhand 249193, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818094,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477634\\/5293_01617957119.jpg\"}]},\"CityId\":28264,\"Brief\":\"&lt;p&gt;Aakash Ganga is situated on the bank of Bhagirathi River. Among the chardham hotels, it has a great importance. There are 15 luxurious rooms in this hotel. Each of the room of this hotel is well furnished with cozy beds, wall-to-wall carpet, attached bath, facility of cable TV, 24 hours hot and cold water and many others.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The location of Aakash Ganga hotel is so beautiful that you will get fully relaxed here. But in case of any type of health complication, this Aakash Ganga offers the best medical facility by the competent and qualified doctor of the city. You can easily talk to your dear and near ones as Aakash Ganga has STD\\/ISD facility.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477634\\/5293_c4e2590906fd61e8f316c47f745b61bb1617957119.jpg\",\"AccoAminitiesMask\":\"1110010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477635,\"Name\":\"Hotel Great Ganga\",\"Star\":\"2.00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.75259999999999\",\"Long\":\"78.45364599999999\",\"Address\":\"NH-4, Gangotri Highway, Uttarkashi - 249193, Uttarakhand, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818127,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477635\\/5293_01618210368.jpg\"},{\"ImagId\":4818128,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477635\\/5293_11618210368.jpg\"}]},\"CityId\":28264,\"Brief\":\"&lt;p&gt;Hotel the Great Ganga is a deluxe hotel on the banks of river Ganga in Uttarkashi. Surrounded by the scenic mountains, the hotel provides a scenic rejuvenating experience to the guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set in Uttark\\u0101shi, The Great Ganga offers a terrace. Among the facilities of this property are a restaurant, a 24-hour front desk and room service, along with free Wi-Fi throughout the property.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477635\\/5293_d2dc981cc2e0e0ac33dc7b5bf4afc6541618210368.jpg\",\"AccoAminitiesMask\":\"1110000000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34396,\"Title\":\"Guptakashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477636,\"Name\":\"HOTEL RAJ PALACE DEVIDHAR GUPTKASHI\",\"Star\":\"2.00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.5539242\",\"Long\":\"79.0643564\",\"Address\":\"Kedarnath Road, Devidhar, Uttarakhand 246439, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818070,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477636\\/5293_01617877708.jpg\"},{\"ImagId\":4818071,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477636\\/5293_11617877708.jpg\"}]},\"CityId\":34396,\"Brief\":\"&lt;p&gt;HOTEL RAJ PALACE IS PROUD TO ACHIEVE THE DISTINCTION OF BEING THE 1ST DESIGNER HOTEL AMONGST HOTELS IN RUDRAPRAYAG(UTTARAKHAND). A FAVORITE FOR TOURISTS, PILGRIMS AND BUSINESS VISITORS TO GARHWAL AND KEDARNATH FOR OVER A DECADE NOW, THE HOTEL RAJ PALACE &nbsp; SITUATED IN THE UTTARAKHAND REGION INDIA.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477636\\/5293_ecec797436f3b5f996eb67fb414eb2841617877708.jpg\",\"AccoAminitiesMask\":\"1100010000001111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477637,\"Name\":\"Camp Nirvana Guptkashi\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.53059770000001\",\"Long\":\"79.0741101\",\"Address\":\"Rudrapur, Jakhdhar Road, Guptkashi, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"STANDARD CAMP\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477638,\"Name\":\"Villa Aadhya\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.55440059999999\",\"Long\":\"79.0623162\",\"Address\":\"Villa Aadhya Guptkashi NH-109, Kedarnath Road, Guptkashi, District: Rudraprayag, 246439, Uttarakhand India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"&lt;p&gt;Villa Aadhya Guptkashi is the best choice for Luxury travelers, who located in close to the route of Guptkashi Helipads. One can just spend an hour&rsquo;s scrutiny in heavenly enjoyment of the belongings of the heavens and a remarkable view of the Himalaya. Enjoy the environs within the grounds which have wonderfully landscaped.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Villa Aadhya is a luxury experience which is not just limited to the pious journey to the holy site of Kedarnath, and Badrinath. Villa Aadhya &nbsp;Guptkashi is located amidst the vistas of Uttarakhand&rsquo;s rich landscapes and are ideal for a vacation&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1100010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":13758,\"Title\":\"Kedarnath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477640,\"Name\":\"GMVN COTTAGES\",\"Star\":\"2.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7310653\",\"Long\":\"79.0675742\",\"Address\":\"Kedarnath, Uttarakhand 246445, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818075,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477640\\/5293_01617879972.jpg\"},{\"ImagId\":4818076,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477640\\/5293_11617879972.jpg\"}]},\"CityId\":13758,\"Brief\":\"&lt;p&gt;GMVN has constructed 3 camps at Shri Kedarnath dham. 1. Swarga Rohini cottages 2. Kedar Dome cottages 3. Kedar Kantha All accomodation is located at next to the Helipad. Temple is at 500 mts from the camp.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477640\\/5293_9ae76722e439fd3af9b227d6035e43581617879972.jpg\",\"AccoAminitiesMask\":\"1100010000000110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"STANDARD CAMP\",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":2001,\"Title\":\"Badrinath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477645,\"Name\":\"Om Kutir\",\"Star\":\"4.00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7397701\",\"Long\":\"79.4948173\",\"Address\":\"Narayan Palace Rd, Badrinath, Uttarakhand 246422, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818077,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477645\\/5293_01617881714.jpg\"}]},\"CityId\":2001,\"Brief\":\"&lt;p&gt;Shree Om Kuteer Badrinath heartily welcome all devotees to stay with us Nicely Located in Badrinath Dham close to bus stand of Badrinath facing Holy Neelkanth Peak and picturesque view of the snow-capped Himalayas. Situated in a walkable distance to main Temple of Shri Badrinath ji.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477645\\/5293_7a58dc15fde2827fcf92d2ca8b3e92021617881714.jpg\",\"AccoAminitiesMask\":\"1100010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477646,\"Name\":\"Narayan Palace Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.74025809999999\",\"Long\":\"79.4947238\",\"Address\":\"Near Bus Stand Badrinath 246422 Uttarakhand, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477647,\"Name\":\"Sarovar Portico Badrinath\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.73722919999999\",\"Long\":\"79.49423519999999\",\"Address\":\"Plot No. 834, Chamoli District, Badrinath, Uttarakhand 246422, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818129,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477647\\/5293_01618213127.jpg\"},{\"ImagId\":4818130,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477647\\/5293_11618213127.jpg\"},{\"ImagId\":4818131,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477647\\/5293_21618213127.jpg\"},{\"ImagId\":4818132,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477647\\/5293_31618213127.jpg\"}]},\"CityId\":2001,\"Brief\":\"&lt;p&gt;Sarovar Portico, Badrinath, is a contemporary hotel nestled amidst sprawling greens and the snow-capped Himalayan mountains. Located just five minutes away from the&nbsp;&lt;a href=&quot;https:\\/\\/www.sarovarhotels.com\\/sarovar-portico-badrinath-uttarakhand\\/location.html&quot; target=&quot;_self&quot;&gt;Badrinath Temple&lt;\\/a&gt;&nbsp;and 2 minutes from the bus station, this is the only 3-star hotel in the pilgrimage town&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;800 m from Badrinath Temple&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477647\\/5293_6f0805cf77586b84a9abc52b37a2a6ab1618213127.jpg\",\"AccoAminitiesMask\":\"1110010000001111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34295,\"Title\":\"Rudraprayag\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477648,\"Name\":\"Tapovan Resort\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.4069834\",\"Long\":\"79.3853475\",\"Address\":\"Nh 58 Badrinath Road Birahi, Birahi Ganga Bridge Chamoli, Uttarakhand, India 246443\"},\"Images\":{\"Image\":[{\"ImagId\":4818079,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477648\\/5293_01617884078.jpg\"},{\"ImagId\":4818080,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477648\\/5293_11617884078.jpg\"},{\"ImagId\":4818081,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477648\\/5293_21617884078.jpg\"},{\"ImagId\":4818082,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477648\\/5293_31617884078.jpg\"}]},\"CityId\":34295,\"Brief\":\"&lt;p&gt;Tapovan resort was conceived by Lt. Shri JC Dimri as a homestay enroute to Badrinath. It was his and his wife Chitralekha Dimri&amp;#39;s dream to build a highway resort that would provide wholesome hospitality to the travellers on the route.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477648\\/5293_dce766cdcccbbe3384c91f9b6acfff6e1617884078.jpg\",\"AccoAminitiesMask\":\"1110010000101110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477649,\"Name\":\"Monal Resort\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.30000499999999\",\"Long\":\"79.01009719999999\",\"Address\":\"Main Badrinath Road, Rudraprayag, Chopta, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"170043\",\"Title\":\"DELHI \\u2013 HARIDWAR (222 KM: 6 TO 7 HRS) \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Arrive at New Delhi and we&#39;ll drive to Haridwar. On arrival at Haridwar, check in to your hotel. In the evening, proceed to Har Ki Pauri to enjoy Ganga Aarti on the banks of Ganges. Dinner and Overnight stay at Haridwar.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170046\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170049\",\"Title\":\"HARIDWAR \\u2013 BARKOT\\/KARSALI (205 KM: 7 TO 8 HRS\\/250 KM: 8 TO 9 HRS)  \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">This morning depart for Barkot, located on the foot of Yamunotri. On arrival at Barkot, check-in to your hotel\\/camp. Rest of the day is free to relax and store your energy for the Pahad (hiII) Yatra of Yamunotri the next day. Dinner and Overnight stay at Barkot.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480987,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477627,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170052\",\"Title\":\"BARKOT\\/KHARSALI \\u2013 YAMUNOTRI (45 KM: 2 HRS + 5 KM START TREK) - BARKOT\\/KHARSALI (5 KM START TREK + 45 KM: 2 HRS)    \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">After breakfast\\/packed breakfast, depart at 5\\/6am for Hanumanchatti (40 Km), Janki Chatti (5 km). Here you will begin the First Pahad Yatra of Yamunotri (5 Km trek). You can hire a Doli or a horse, for your trek (Cost Not Included). The trek passes through lush green valley, a profusion of conifers, rhododendrons, cacti and several species of Himalayan shrubs. <\\/span><\\/span><\\/p>\\r\\n\\r\\n<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Yamunotri (altitude 3,291 m), the western most shrine of the Char Dhams, is dominated by Banderpunch (6,361 m). Yamunotri is the source of the river Yamuna, the twin sister of Varna, the Lord of Death. Yamuna is also the daughter of Surya the Sun. The actual source of the river originates from Champasar Glacier 1 km a head of the shrine, at an altitude of 4,321 mts. On arrival by afternoon in Yamunotri take holy dip in Yamuna River and perform Pooja, and take the same route back to Barkot, check in at Hotel \\/ Camp. Dinner and Overnight stay at hotel in Barkot.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480987,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477627,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170055\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170058\",\"Title\":\"BARKOT\\/KHARSALI \\u2013 UTTARKASHI (85 KM: 3 HRS\\/132 KM: 4 TO 5 HRS) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">After breakfast check out from the Barkot hotel and drive to Uttarkashi. On arrival check in into the hotel. Uttarkashi is situated on the banks of river Bhagirathi and is famous for its historical monuments, Temples &amp; Ashrams. Dinner and Overnight stay at Uttarkashi.&nbsp;<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479551,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477634,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477635,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170061\",\"Title\":\"UTTARKASHI \\u2013 GANGOTRI (97 KM: 3 TO 4 HRS) \\u2013 UTTARKASHI (97 KM: 3 TO 4 HRS)     \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Early After breakfast\\/packed breakfast and drive to Gangotri. Nestled in the magnificent Garhwal Himalayas, Gangotri is set at an altitude of 3048 mts. Upon arrival at Gangotri take a holy dip in the sacred river Ganges which is also called Bhagirathi at its origin Visit the Gangotri Temple. The 18th century&#39;s temple dedicated to Goddess Ganga is located near a sacred stone where King Bhagirathi worshipped Lord Shiva. Ganga is believed to have touched earth at this spot. The temple is an exquisite 20 ft. high structure made of white granite. After performing Pooja Late afternoon drive back to Uttarkashi. Dinner &amp; Overnight stay at Uttarkashi.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479551,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477634,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477635,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170064\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170067\",\"Title\":\"UTTARKASHI \\u2013 GUPTKASHI (203 KM \\/ 7 TO 8 HRS) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">After early morning breakfast check out from the hotel and drive for Guptkashi. On arrival check in at hotel. Rest of the day free to explore the Guptkashi town. Dinner and Overnight stay in Guptkashi hotel\\/Camps.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477636,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477638,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170070\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170073\",\"Title\":\"GUPTKASHI \\u2013 SONPRAYAG \\u2013 KEDARNATH (30 KM + 20 KM TREK)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Early morning after breakfast check out from the hotel and drive to Sonprayag. From where, you will start your 20 km trek to Kedarnath. You can hire a Doli or a horse, for your trek (Cost Not Included). Mandakini, one of the main tributaries of the Ganges originates at Kedarnath and flows through Gaurikund. Trudging with you are pilgrims chanting &quot;Jai Bholenath.&quot; Sometimes the mist would envelop the mountains and slowly lift away, revealing a shiny blinding-white peak that threatens to rupture the skies. On arrival check in at Govt. Camps\\/Lodges. Dinner and Overnight at Govt. Camps\\/Lodges (only basic accommodation is available on sharing basis with only room basis, you can take meal directly).&nbsp; <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170076\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170079\",\"Title\":\"KEDARNATH \\u2013 SONPRAYAG \\u2013 GUPTKASHI (20 KM TREK + 30 KM DRIVE)\",\"MealPlanInclude\":\"Dinner\",\"Day\":8,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Early morning you get up before dawn and after taking bath you are at the temple by 4:45 am for the &#39;Abhishek&rsquo; to Kedarnath Shiva. Everyone can go inside Garbha Griha and touch the idol. You can also prostrate with your head touching the deity etc. After darshan and puja you come out of the temple and return to the Govt. Camps \\/ Lodges. Later you&#39;ll start the return trek of 20 km from Kedarnath to Sonprayag. The vehicles wait for you in Sonprayag Car Parking and you&rsquo;ll drive to your hotel\\/Camps. Dinner and Overnight at Guptkashi.&nbsp; <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477636,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD CAMP\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477638,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170082\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170085\",\"Title\":\"GUPTKASHI \\u2013 JOSHIMATH \\u2013 BADRINATH (200 KM: 7 TO 8 HRS)  \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">This morning, you check out of the hotel and drive to Badrinath via Joshimath. After driving through some wonderful Ghat road you arrive at Badrinath (Must cross Govindghat before 5:30 pm). On arrival check into the hotel. After some rest and refreshments, you are all set to go to Badrinath Temple for darshan in the evening. But first you have to go to Tapt Kund (Hot Spring), take bath and then go to the temple. Dedicated to Lord Vishnu, the temple of Shri Badrinath Ji is 15 meters in height, built in the form of a cone with a small cupola of a gilt bull and spire. Later back to hotel. Dinner and Overnight stay at hotel.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477645,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477646,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477647,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170088\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170091\",\"Title\":\"BADRINATH \\u2013 JOSHIMATH \\u2013 BIRAHI\\/RUDRAPRAYAG\\/SRINAGAR (92 KM: 3 HRS\\/165 KM: 5 TO 6 HRS\\/195 KM: 6 TO 7 HRS) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">This morning, go for Badrinath darshan. After darshan return back to hotel, breakfast at hotel and proceed for Badrinath local sightseeing visit Mana Village and Bheem Pul. Afternoon driver back to Rudraprayag via Karanprayag. Rudraprayag is a small pilgrim town on the holy confluence of river Alaknanda and Mandakini. On arrival check in at hotel. Rest of the day free to explore the Rudraprayag town. Dinner and Overnight stay at hotel.<\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477649,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477649,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170094\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170097\",\"Title\":\"BIRAHI\\/RUDRAPRAYAG\\/SRINAGAR \\u2013 RISHIKESH \\u2013 HARIDWAR (230 KM: 7 TO 8 HRS\\/165 KM: 5 TO 6 HRS\\/135 KM: 4 TO 5 HRS)  \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":11,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Early morning, after breakfast, you drive downhill to Rishikesh a spiritual city and the Yoga capital of the world. On reaching Rishikesh you&#39;ll do the Rishikesh sightseeing visit Ram Jhula and Laxman Jhula. Evening drive to Haridwar. On arrival check in at hotel. Dinner and Overnight stay at hotel.&nbsp; <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":477615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"170100\",\"Title\":\"HARIDWAR \\u2013 DELHI  (225 KM \\/ 6 TO 7 HRS) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"<p><span style=\\\"color:#4f81bd\\\"><span style=\\\"color:black\\\">Morning breakfast at hotel, and you are on your last lap of this Chardham Yatra journey. Drive back to Delhi. On reaching Delhi transfer to Railway Station\\/Airport.&nbsp;&nbsp; <\\/span><\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23823\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29095.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":25395,\"priceDoubleOcc\":\"29095.00\",\"priceSingleOcc\":73700,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":26495,\"priceDoubleOcc\":\"30745.00\",\"priceSingleOcc\":75350,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30745.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":28145,\"priceDoubleOcc\":\"33220.00\",\"priceSingleOcc\":77825,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33220.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":27522,\"priceDoubleOcc\":\"32285.00\",\"priceSingleOcc\":76890,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32285.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":31335,\"priceDoubleOcc\":\"38005.00\",\"priceSingleOcc\":82610,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38005.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":35735,\"priceDoubleOcc\":\"44605.00\",\"priceSingleOcc\":89210,\"priceExtraBed\":\"13416.70\",\"priceWithoutBed\":\"10697.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44605.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23824\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37345.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":32729,\"priceDoubleOcc\":\"37345.00\",\"priceSingleOcc\":90200,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":33829,\"priceDoubleOcc\":\"38995.00\",\"priceSingleOcc\":91850,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38995.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":35479,\"priceDoubleOcc\":\"41470.00\",\"priceSingleOcc\":94325,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41470.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":34855,\"priceDoubleOcc\":\"40535.00\",\"priceSingleOcc\":93390,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40535.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":38669,\"priceDoubleOcc\":\"46255.00\",\"priceSingleOcc\":99110,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46255.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":43069,\"priceDoubleOcc\":\"52855.00\",\"priceSingleOcc\":105710,\"priceExtraBed\":\"18861.70\",\"priceWithoutBed\":\"14822.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"52855.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23825\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46420.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":42020,\"priceDoubleOcc\":\"46420.00\",\"priceSingleOcc\":108350,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46420.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":43120,\"priceDoubleOcc\":\"48070.00\",\"priceSingleOcc\":110000,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48070.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":44770,\"priceDoubleOcc\":\"50545.00\",\"priceSingleOcc\":112475,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"50545.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":44147,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":111540,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":47960,\"priceDoubleOcc\":\"55330.00\",\"priceSingleOcc\":117260,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"55330.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-25\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":52360,\"priceDoubleOcc\":\"61930.00\",\"priceSingleOcc\":123860,\"priceExtraBed\":\"24851.20\",\"priceWithoutBed\":\"19360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61930.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;GST @ 5 %\\/&lt;\\/span&gt;&lt;\\/strong&gt;&lt;span style=&quot;color:black&quot;&gt;Air Fare\\/Train Fare. &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Meals other than those mentioned explicitly in the itinerary.&amp;nbsp; &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Personal expenses like portages, tips, laundry &amp;amp; Rafting etc.&amp;nbsp;&amp;nbsp; &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Any activity not mentioned in the inclusions &amp;amp; Charges of palki, pony &amp;amp; Helicopter tickets etc.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;SPECIAL FEATURES FOR YATRA JOURNEY&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Daily Sanitization of the vehicle done by the driver&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Face Mask&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hand Sanitizer for the guest in the vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Hotels provided in the journey follow the SOP&amp;#39;s advised by the Government of India &amp;amp; State Governments&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;2 &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;nights&amp;rsquo; stay at hotel in Haridwar with MAP.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;2 &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;nights&amp;rsquo; stay in hotel in Barkot\\/Kharsali with MAP.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;2 nights stay at hotel in Uttarkashi with MAP.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;2 &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;nights&amp;rsquo; stay in hotel in Guptkashi with MAP. &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;1 &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;night&amp;rsquo; stay in Kedarnath (Neat and clean GMVN camp on sharing basis\\/basic hotel accommodation, which is best available at Kedarnath with &lt;strong&gt;EP&lt;\\/strong&gt;)&amp;nbsp; &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;1 night&amp;rsquo; stays at hotel in Badrinath with MAP.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;1 &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;night&amp;rsquo; stay at hotel Rudraprayag with MAP. &amp;nbsp;&amp;nbsp;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Accommodation on twin\\/double sharing basis with Extra Bed\\/CWB &amp;amp; CNB.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Meals plan (MAP) - Breakfast &amp;amp; Dinner: Veg meals on Fixed Menu basis at Hotels &amp;amp; (&lt;strong&gt;EP&lt;\\/strong&gt;) only room basis at Kedarnath. &amp;nbsp;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer &amp;amp; Sightseeing by Ac Vehicle (A\\/c will switch off in Hills).&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:black&quot;&gt;Diver Allowance, Toll tax, parking Charges. &lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;DOCUMENTS REQUIRED FOR YATRA JOURNEY&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Aadhaar Card ( Front &amp;amp; Back Copy )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Contact Number incase of any emergency&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 96 hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"170043\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[170043],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170046\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[170046],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170049\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[170049],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170052\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[170052],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170055\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[170055],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170058\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[170058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170061\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[170061],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170064\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[170064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170067\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[170067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170070\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[170070],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170073\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[170073],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170076\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[170076],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170079\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[170079],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170082\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[170082],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170085\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[170085],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170088\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[170088],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170091\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[170091],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170094\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[170094],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170097\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[170097],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"170100\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[170100],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Haridwar,Barkot,Uttarkashi,Guptakashi,Kedarnath,Badrinath,Rudraprayag','Haridwar,Uttarakhand,Indian Subcontinent,North India,India,Barkot,Uttarkashi,Guptakashi,Kedarnath,Badrinath,Rudraprayag,Gangotri,Yamunotri','','11530,34474,28264,34396,13758,2001,34295',29095,61930,11,'6_1615460443_0.jpg,6_1615460454_0.jpg,6_1615460514_0.jpg,6_1615460523_0.jpg',NULL,NULL,2,'',0,'2021-09-22 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2021-09-22 17:43:16','2021-09-22 00:00:00',1,1,'0','0','0','','','',NULL,'chardham-yatra-2021-by-road',NULL,NULL,NULL,0),(8,2275,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2275\",\"VisaName\":\"Dubai 48 Hours Transit Visa\",\"Nationality\":null,\"VisaAdultRates\":1850,\"VisaChildRates\":1850,\"VisaInfantRates\":1850,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":5,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2275.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Transit\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your pan card&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Additional Mandatory Documents for Transit visa&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Confirmed return&amp;nbsp;air tickets&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Visa copy of the final destination country&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5 Days\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"2 Days\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"1499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1200.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',1850,1850,0,'8_',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-07-21 11:49:22','2023-07-21 00:00:00',1,1,'1','1','0','a','cf','cfe',NULL,'dubai-48-hours-transit-visa','[{\"question\":\"how to ckeck \",\"answer\":\"jhnjjjjjj\"}]',NULL,NULL,0),(9,2274,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2274\",\"VisaName\":\"Dubai 96 Hours Transit Visa\",\"Nationality\":null,\"VisaAdultRates\":4000,\"VisaChildRates\":4000,\"VisaInfantRates\":4000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":5,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2274.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Transit\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your pan card&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Additional Mandatory Documents for Transit visa&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Confirmed return&amp;nbsp;air tickets&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Visa copy of the final destination country&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5 Days\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"4 Days\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"1499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1200.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',4000,4000,0,'1616063078.jpg,9_',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-07-21 11:45:03','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'dubai-96-hours-transit-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(10,2273,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2273\",\"VisaName\":\"Dubai 60 Days Single Entry\",\"Nationality\":null,\"VisaAdultRates\":10500,\"VisaChildRates\":10500,\"VisaInfantRates\":10500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2273.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your pan card&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Confirmed return air ticket (not mandatory for application)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Duly filled&amp;nbsp;Visa Application Form attached herewith for your information&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5 Days\",\"VisaValidity\":\"58 Days\",\"VisaDuration\":\"60 Days\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"2499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1200.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',10500,10500,0,'10_',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-07-21 11:45:09','2023-07-21 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'dubai-60-days-single-entry',NULL,NULL,NULL,0),(11,2272,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2272\",\"VisaName\":\"Dubai 30 Days Single Entry \",\"Nationality\":null,\"VisaAdultRates\":6800,\"VisaChildRates\":6800,\"VisaInfantRates\":6800,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2272.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;Scanned colour copy of your pan card&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed return air ticket (not mandatory for application)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Birth Certificate :&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Only required for applicants below 18 years of age&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Duly filled&amp;nbsp;Visa Application Form attached herewith for your information&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"4-5 Days\",\"VisaValidity\":\"58 Days\",\"VisaDuration\":\"30 Days\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"699.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',6800,6800,0,'1691992295.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-07-21 11:45:16','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'dubai-30-days-single-entry','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(12,22734,1,5293,0,0,0,'Adventure,Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":22734,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SPECTACULAR_SOUTH_AFRICA_-_10_DAYS_80.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;BREATHTAKING SOUTH AFRICA&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nA land of immense history and geographical diversity, South Africa is a must on any traveller&amp;rsquo;s bucket-list. For no matter the nature of your wanderlust, there&amp;rsquo;s a thrilling experience waiting to satisfy it. South Africa tourism has the ideal mix of wildlife, adventure sports, coastlines, wineries, even deserts.&lt;br \\/&gt;\\r\\n&lt;strong&gt;Duration :&lt;\\/strong&gt; 9 Nights 10 Days&lt;br \\/&gt;\\r\\n&lt;strong&gt;Cities Covered : &lt;\\/strong&gt;Cape Town, Oudtshoorn, Knysna,&amp;nbsp;Sun City &amp;amp; Kruger&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Johannesburg\",\"DestinationPlacesSysId\":13189,\"SourcePlaces\":\"Cape Town\",\"SourcePlaceSysId\":5069,\"AgencyName\":\"I Need Trip\",\"Name\":\"BREATHTAKING SOUTH AFRICA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5786\",\"SupplierName\":\"TRAVCARE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Adventure,Wildlife\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5069,\"Title\":\"Cape Town\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481476,\"Name\":\"Garden Court Nelson Mandela Boulevard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Corner of Melbourne and Coronation Roads, Cape Town, Western Cape, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818306,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_01618910832.jpg\"},{\"ImagId\":4818307,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_01618910851.jpg\"}]},\"CityId\":5069,\"Brief\":\"&lt;p&gt;Close to the central business district and the &lt;strong&gt;Cape Town International Convention Centre &lt;\\/strong&gt;and just 15 minutes from Cape Town International airport, the Garden Court Nelson Mandela Boulevard hotel is ideally suited to business and leisure travellers alike.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Garden Court Nelson Mandela Boulevard offers guests a choice of &lt;strong&gt;292 &lt;\\/strong&gt;Standard and Executive en-suite rooms, with views of Signal Hill and the harbour. Guests at our Woodstock hotel enjoy a host of amenities, which include a self-service workstation, conferencing facilities, a gift shop and more.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is located near Woodstock and provides a great base from which to explore Cape Town attractions such as the Victoria and Alfred Waterfront, the iconic Table Mountain and the Cape&acirc;&euro;&trade;s pristine beaches. Cape Town is one of the world&acirc;&euro;&trade;s foremost cities &acirc;&euro;&ldquo; and for comfort, convenience and affordability, Garden Court Nelson Mandela Boulevard is an outstanding choice.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_4c47a2dee1bf78bca9cafb3cbc9ffda21618910832.png\",\"AccoAminitiesMask\":\"1111010010001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4930,\"Title\":\"Cango Wildlife Ranch\",\"Description\":\"Cango Wildlife Ranch is situated just 3km outside of the picturesque Karoo town of Oudtshoorn. It is the oldest and largest cheetah contact centre worldwide. It is is home to a variety of cats such as lion and jaguar. The Cango Wildlife Ranch is uniquely designed to comfortably host more than 40 species of animals, giving visitors the opportunity to view and, in some cases, even interact with a variety of endangered animals.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.478967,\"Long\":22.1453757,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/140\\/sightseeing\\/48_1525684797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18477,\"Title\":\"CROCODILE PARK\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18478,\"Title\":\"cruise on the vast Knysna Lagoon.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14261,\"CityName\":\"Knysna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4929,\"Title\":\"Cango Caves\",\"Description\":\"The Cango Caves are located in Precambrian limestones at the foothills of the Swartberg range near the town of Oudtshoorn, in the Western Cape Province of South Africa. the finest dripstone caverns, with their vast halls and towering formations can be find here. Cango Caves is the only show cave in Africa which offers a choice of Heritage  or Adventure Tours.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.392328,\"Long\":22.2127217,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525684402.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4938,\"Title\":\"Oudtshoorn Ostrich Farm\",\"Description\":\"Safari Ostrich Farm is a working ostrich farm in Oudtshoorn, Garden Route, South Africa. Established in 1956 as a tourist activity. It remains a must-see attraction when visiting Oudtshoorn on your Garden Route holiday. Safari Ostrich Farm is situated in the heart of &acirc;&euro;&oelig;Ostrich Country&acirc;&euro;\\u009d and is only 6 kms outside of the centre of Oudtshoorn\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.655548,\"Long\":22.1241037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525692813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18479,\"Title\":\"Kruger national Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14524,\"CityName\":\"Kruger National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":20426,\"Title\":\"Oudtshoorn\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481487,\"Name\":\"Queen\'s Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.591785\",\"Long\":\"22.202621\",\"Address\":\"05 Baron van Reede Street,Western Cape, Oudtshoorn\"},\"Images\":{\"Image\":[{\"ImagId\":4818310,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481487\\/5293_01618938302.jpg\"},{\"ImagId\":4818311,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481487\\/5293_01618938321.jpg\"}]},\"CityId\":20426,\"Brief\":\"&lt;p&gt;Situated near shops and eateries, this relaxed hotel is a 2-minute walk from the CP Nel Museum, and 3 km from both Oudtshoorn train station and the Cango Wildlife Ranch.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCosy, simple rooms with city or garden views feature free Wi-Fi, cable TV, and tea and coffeemaking facilities; some have wet bars and microwaves. Upgraded rooms add sitting areas.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nPrivate parking is free. There&amp;#39;s a polished restaurant with a semi open-air dining terrace overlooking an outdoor pool. There&amp;#39;s also a furnished patio and a communal living room.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481487\\/5293_48f7559bcbafb4bc5745cf0ac56ae9701618938302.png\",\"AccoAminitiesMask\":\"1111010010101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4930,\"Title\":\"Cango Wildlife Ranch\",\"Description\":\"Cango Wildlife Ranch is situated just 3km outside of the picturesque Karoo town of Oudtshoorn. It is the oldest and largest cheetah contact centre worldwide. It is is home to a variety of cats such as lion and jaguar. The Cango Wildlife Ranch is uniquely designed to comfortably host more than 40 species of animals, giving visitors the opportunity to view and, in some cases, even interact with a variety of endangered animals.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.478967,\"Long\":22.1453757,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/140\\/sightseeing\\/48_1525684797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18477,\"Title\":\"CROCODILE PARK\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18478,\"Title\":\"cruise on the vast Knysna Lagoon.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14261,\"CityName\":\"Knysna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4929,\"Title\":\"Cango Caves\",\"Description\":\"The Cango Caves are located in Precambrian limestones at the foothills of the Swartberg range near the town of Oudtshoorn, in the Western Cape Province of South Africa. the finest dripstone caverns, with their vast halls and towering formations can be find here. Cango Caves is the only show cave in Africa which offers a choice of Heritage  or Adventure Tours.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.392328,\"Long\":22.2127217,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525684402.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4938,\"Title\":\"Oudtshoorn Ostrich Farm\",\"Description\":\"Safari Ostrich Farm is a working ostrich farm in Oudtshoorn, Garden Route, South Africa. Established in 1956 as a tourist activity. It remains a must-see attraction when visiting Oudtshoorn on your Garden Route holiday. Safari Ostrich Farm is situated in the heart of &acirc;&euro;&oelig;Ostrich Country&acirc;&euro;\\u009d and is only 6 kms outside of the centre of Oudtshoorn\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.655548,\"Long\":22.1241037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525692813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18479,\"Title\":\"Kruger national Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14524,\"CityName\":\"Kruger National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":14261,\"Title\":\"Knysna\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481488,\"Name\":\"The Graywood Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34\\u00c2\\u00b0 02\\u00e2\\u20ac\\u2122 17.18\\u00e2\\u20ac\\u009d S\",\"Long\":\"23\\u00c2\\u00b0 02\\u00e2\\u20ac\\u2122 44.99\\u00e2\\u20ac\\u009d E\",\"Address\":\"Eden, Trotter St, Knysna Central, Knysna, 6571, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818312,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481488\\/5293_01618940355.jpg\"},{\"ImagId\":4818313,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481488\\/5293_01618940383.jpg\"}]},\"CityId\":14261,\"Brief\":\"&lt;p&gt;Set in a wooden lodge in Knysna town centre, this laid-back hotel is within 10 minutes&amp;#39; walk of shops and restaurants, 1.5 km from Thesens Island boat charters and 15 km from Brenton-on-Sea beaches.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bright, casual rooms feature tea and coffeemaking facilities, satellite TVs and free WiFi. Some include sofabeds and\\/or garden views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Full breakfast is complimentary. There&amp;#39;s a wood-beamed dining room and a train-themed bar, with vintage railroad memorabilia throughout the hotel. An outdoor pool sits amid lush courtyard gardens. Secure parking is free.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481488\\/5293_5ef2b11c2bbe61ab295d9c09795f092e1618940355.jpg\",\"AccoAminitiesMask\":\"1111010100001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4930,\"Title\":\"Cango Wildlife Ranch\",\"Description\":\"Cango Wildlife Ranch is situated just 3km outside of the picturesque Karoo town of Oudtshoorn. It is the oldest and largest cheetah contact centre worldwide. It is is home to a variety of cats such as lion and jaguar. The Cango Wildlife Ranch is uniquely designed to comfortably host more than 40 species of animals, giving visitors the opportunity to view and, in some cases, even interact with a variety of endangered animals.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.478967,\"Long\":22.1453757,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/140\\/sightseeing\\/48_1525684797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18477,\"Title\":\"CROCODILE PARK\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18478,\"Title\":\"cruise on the vast Knysna Lagoon.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14261,\"CityName\":\"Knysna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4929,\"Title\":\"Cango Caves\",\"Description\":\"The Cango Caves are located in Precambrian limestones at the foothills of the Swartberg range near the town of Oudtshoorn, in the Western Cape Province of South Africa. the finest dripstone caverns, with their vast halls and towering formations can be find here. Cango Caves is the only show cave in Africa which offers a choice of Heritage  or Adventure Tours.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.392328,\"Long\":22.2127217,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525684402.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4938,\"Title\":\"Oudtshoorn Ostrich Farm\",\"Description\":\"Safari Ostrich Farm is a working ostrich farm in Oudtshoorn, Garden Route, South Africa. Established in 1956 as a tourist activity. It remains a must-see attraction when visiting Oudtshoorn on your Garden Route holiday. Safari Ostrich Farm is situated in the heart of &acirc;&euro;&oelig;Ostrich Country&acirc;&euro;\\u009d and is only 6 kms outside of the centre of Oudtshoorn\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.655548,\"Long\":22.1241037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525692813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18479,\"Title\":\"Kruger national Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14524,\"CityName\":\"Kruger National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":26381,\"Title\":\"Sun City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481482,\"Name\":\"The Cabanas Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sun City Resort, R556, Sun City, 0316, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818308,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481482\\/5293_01618914734.jpg\"}]},\"CityId\":26381,\"Brief\":\"&lt;p&gt;On the sprawling grounds of Sun City Resort, this modern hotel overlooks tropical gardens and a lake beach. It&amp;#39;s 3.1 km from Pilanesberg National Park, 3.9 km from Route 556 and 12.2 km from Pilanesberg International Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The airy rooms have relaxed interiors, and provide flat-screen TVs with satellite channels, safes, tea and coffeemaking facilities, and minibars. Some add sofabeds and\\/or lake views. Wi-Fi is available, and room service is offered.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast is free. There are 2 golf courses, plus a day spa, a stone maze, and a waterpark with a man-made beach. The resort also has &lt;strong&gt;21 restaurants and bars, a casino&lt;\\/strong&gt;, and a shopping centre.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481482\\/5293_8d7b1f774110f0452c7928d4643107191618914734.jpg\",\"AccoAminitiesMask\":\"1111011110001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4930,\"Title\":\"Cango Wildlife Ranch\",\"Description\":\"Cango Wildlife Ranch is situated just 3km outside of the picturesque Karoo town of Oudtshoorn. It is the oldest and largest cheetah contact centre worldwide. It is is home to a variety of cats such as lion and jaguar. The Cango Wildlife Ranch is uniquely designed to comfortably host more than 40 species of animals, giving visitors the opportunity to view and, in some cases, even interact with a variety of endangered animals.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.478967,\"Long\":22.1453757,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/140\\/sightseeing\\/48_1525684797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18477,\"Title\":\"CROCODILE PARK\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18478,\"Title\":\"cruise on the vast Knysna Lagoon.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14261,\"CityName\":\"Knysna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4929,\"Title\":\"Cango Caves\",\"Description\":\"The Cango Caves are located in Precambrian limestones at the foothills of the Swartberg range near the town of Oudtshoorn, in the Western Cape Province of South Africa. the finest dripstone caverns, with their vast halls and towering formations can be find here. Cango Caves is the only show cave in Africa which offers a choice of Heritage  or Adventure Tours.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.392328,\"Long\":22.2127217,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525684402.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4938,\"Title\":\"Oudtshoorn Ostrich Farm\",\"Description\":\"Safari Ostrich Farm is a working ostrich farm in Oudtshoorn, Garden Route, South Africa. Established in 1956 as a tourist activity. It remains a must-see attraction when visiting Oudtshoorn on your Garden Route holiday. Safari Ostrich Farm is situated in the heart of &acirc;&euro;&oelig;Ostrich Country&acirc;&euro;\\u009d and is only 6 kms outside of the centre of Oudtshoorn\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.655548,\"Long\":22.1241037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525692813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18479,\"Title\":\"Kruger national Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14524,\"CityName\":\"Kruger National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":14524,\"Title\":\"Kruger National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481489,\"Name\":\"aha Casa do Sol Hotel and Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sabie Rd (R536), Hazyview, Mpumalanga, South Africa, 1242\"},\"Images\":{\"Image\":[{\"ImagId\":4818314,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481489\\/5293_01618942746.jpg\"},{\"ImagId\":4818315,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481489\\/5293_01618942775.jpg\"}]},\"CityId\":14524,\"Brief\":\"&lt;p&gt;A perfect setting in the heart of scenic Mpumalanga, the luxurious aha Casa do Sol Hotel Hazyview is located next to the Elephant Sanctuary and offers pristine pools, deeply shaded glades and lush flower gardens. The prevailing sense of elegance, peace and quiet belies the fact that the wild and untamed world of the famous Kruger National Park is a mere 15 minutes&acirc;&euro;&trade; drive away. The village architecture and sub-tropical gardens create a sanctuary of tranquillity and spectacular sunsets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Hotel has two excellent conference venues to accommodate 12-260 delegates. During winter months, guests can relax by the fireplace in the comfortable lounge area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;aha Casa do Sol Hotel Hazyview offers four different accommodation options: Casas, Villas, Twin and Double Suites, and the Casa Grande, which features a jacuzzi, private pool and sauna.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Cozinha Velha Restaurant serves only the freshest produce, picked from our gardens and used by our chefs in the preparation of all meals. It is renowned for superb wines and fine cuisine and offers a light lunch menu while alternating between a set dinner menu and a full buffet for dinner.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Because aha Casa do Sol Hotel Hazyview is situated within the Ilanga Nature and Game Reserve, the following activities are available: hiking, mountain biking, tennis, and fishing. The Hotel is also the ideal home-base from which to tour the Lowveld and discover its attractions: Kruger National Park, God&acirc;&euro;&trade;s Window, Blyde River Canyon and Bourke&acirc;&euro;&trade;s Luck Potholes.&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481489\\/5293_7c7b4af22f06362e2e87c15374ac6e451618942746.png\",\"AccoAminitiesMask\":\"1111011010001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4930,\"Title\":\"Cango Wildlife Ranch\",\"Description\":\"Cango Wildlife Ranch is situated just 3km outside of the picturesque Karoo town of Oudtshoorn. It is the oldest and largest cheetah contact centre worldwide. It is is home to a variety of cats such as lion and jaguar. The Cango Wildlife Ranch is uniquely designed to comfortably host more than 40 species of animals, giving visitors the opportunity to view and, in some cases, even interact with a variety of endangered animals.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.478967,\"Long\":22.1453757,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/140\\/sightseeing\\/48_1525684797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18477,\"Title\":\"CROCODILE PARK\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18478,\"Title\":\"cruise on the vast Knysna Lagoon.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14261,\"CityName\":\"Knysna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4929,\"Title\":\"Cango Caves\",\"Description\":\"The Cango Caves are located in Precambrian limestones at the foothills of the Swartberg range near the town of Oudtshoorn, in the Western Cape Province of South Africa. the finest dripstone caverns, with their vast halls and towering formations can be find here. Cango Caves is the only show cave in Africa which offers a choice of Heritage  or Adventure Tours.\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.392328,\"Long\":22.2127217,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525684402.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":4938,\"Title\":\"Oudtshoorn Ostrich Farm\",\"Description\":\"Safari Ostrich Farm is a working ostrich farm in Oudtshoorn, Garden Route, South Africa. Established in 1956 as a tourist activity. It remains a must-see attraction when visiting Oudtshoorn on your Garden Route holiday. Safari Ostrich Farm is situated in the heart of &acirc;&euro;&oelig;Ostrich Country&acirc;&euro;\\u009d and is only 6 kms outside of the centre of Oudtshoorn\",\"CurrencyType\":0,\"CityId\":20426,\"CityName\":\"Oudtshoorn\",\"Lat\":-33.655548,\"Long\":22.1241037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20426\\/sightseeing\\/48_1525692813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18479,\"Title\":\"Kruger national Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14524,\"CityName\":\"Kruger National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"162773\",\"Title\":\"       Cape Town : Upon arrival at Cape Town International Airport, a Travcare representative meets you for a transfer to your pre-booked hotel.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Cape Town is one of the most popular long-haul destinations in the world. Due to its unique topography, it is also one of the easiest places in which to orientate oneself as long as you remember that with Table Mountain behind you and Robben Island before you; you are facing north, looking across Table Bay and up the west coast of Africa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162774\",\"Title\":\"Cape Town - City Tour : After breakfast leave on a half-day Mother City tour. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;You will go for a scenic coastal drive through Clifton &amp;amp; Sea Point &amp;amp; later tour passes the Houses of Parliament, the Castle, the SA Museum, and a few other historical sights &amp;ndash; District Six, Bo-Kaap, Slave Lodge &amp;amp; ending at the bustling Greenmarket Square.&amp;nbsp; A cable car ride, takes you up the Table Mountain (weather permitting otherwise Signal Hill) for a breathtaking view over the city (entrance is included) Return to your hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162775\",\"Title\":\"Cape Town - Peninsula Tour : Breakfast is taken at the hotel. Depart on a full day Peninsula tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This comprehensive tour shows you the best of the spectacular Cape Peninsula and why it is it&amp;#39;s called the Fairest Cape. Travel past Sea Point and Camps Bay, past the famous beaches of Clifton and Llandudno towards Hout Bay. Drive along the Atlantic Seaboard. Pass through Noordhoek and Scarborough. Later you will take to the Cape of Good Hope Nature Reserve. Enjoy the funicular ride aboard the &amp;ldquo;Flying Dutchman&amp;rdquo; and enjoy the unforgettable spectacular views. Later get the photo opportunity to take some pictures at the second southern most tip of the African continent. Visit the beautiful Boulders Beach, and have the option to sit among the famous colony of Jackass Penguins. Thereafter we enjoy a short stop at the naval port of Simon&amp;#39;s Town and know about the legend of &amp;ldquo;Able Seaman Just Nuisance&amp;rdquo; the Great Dane Dog that was inducted in Royal Navy. Return to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7668,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162776\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162777\",\"Title\":\"Cape Town &acirc;&euro;&ldquo; Oudtshoorn : After breakfast, check and transfer to Oudtshoorn. It is known as the &acirc;&euro;&tilde;Feather Capital of the World&acirc;&euro;&trade; thanks to its huge ostrich industry.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Arrive and in the afternoon, enjoy a tour of the Wildlife Ranch where you will visit a crocodile Park where you have opportunity to take pictures with Cheetah.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check into hotel and spend rest of evening in the comfort of your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4930,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18477,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162778\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162779\",\"Title\":\"Oudtshoorn - Knysna \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast leave for a tour of the Cango Caves - In Oudtshoorn you go underground to marvel at the icy formations in the Cango Caves, regarded as one of South Africa&amp;rsquo;s most spectacular natural wonders &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later enjoy a tour of the Ostrich Farm before your transfer to Knysna.Arrive in Knysna, later you will go on a cruise on the vast Knysna Lagoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy an amazing view of the imposing sandstone &amp;lsquo;Heads&amp;rsquo; which guard the sea entrance to Knysna&amp;rsquo;s huge tidal lagoon, and the forests, marshes and pristine beaches surrounding it.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening, you check into the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14261,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481488,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18478,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4929,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4938,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162780\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14261,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162781\",\"Title\":\"Knysna &acirc;&euro;&ldquo; George - Johannesburg - Sun City    \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast transfer to George airport to board a flight to Johannesburg. On arrival you are met by a Travcare representative for a transfer to Sun City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Sun City complex is surrounded by two championship golf courses, numerous swimming pools and a huge man-made lake offering various water sports. Optional activities include Hot Air Ballooning. Enjoy lunch at the Raj Indian Restaurant (own account). Then you could relax at the Valley of the Waves, or take a walk through the gardens of the Lost City. This magical city knows no limits - you have the chance to win a fortune at the Casino and Entertainment Centre, there are lavish extravaganzas and a multitude of restaurants to cater for every taste.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481482,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162782\",\"Title\":\"Sun City : After breakfast you will enjoy your day at leisure. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Optional game drives to Pilanesberg Nature Reserve to see the Big 5 (cost of the game drive is not included)&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481482,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162783\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162784\",\"Title\":\"Sun City - Kruger : After breakfast transfer to Kruger National Park. \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;The Kruger National Park in South Africa is one of the oldest and largest reserves in Africa. The park boasts a tremendous variety of game &amp;ndash; The Big 5 and bird life in its numerous habitats.&amp;nbsp; You should see: elephant, giraffe, zebra, buffalo, warthog, lion, spotted hyenas, baboon, hippo, impala, kudu, vervet monkey, waterbuck, Tsessebe, wildebeest, bush baby, mongoose, duiker, steenbok, klipspringer, genet, bats.&amp;nbsp; You may see: leopard, wild dog, cheetah, roan antelope, sable antelope, bat-eared fox, rhino, honey badger, porcupine, rebook, aardvark, aardwolf, civet, and caracal and serval suni.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrive and check in the lodge.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162785\",\"Title\":\" Kruger National Park\\t\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Collect packed breakfast and depart for morning game drive inside the Kruger national Park, enjoy lunch (own cost) and proceed for an afternoon game drive.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18479,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162786\",\"Title\":\"Kruger National Park - Johannesburg        \",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, transfer to Or Tambo International for flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"22734\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"133834.34\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":129373,\"priceDoubleOcc\":\"133834.34\",\"priceSingleOcc\":374736.14,\"priceExtraBed\":\"100378.33\",\"priceWithoutBed\":\"66917.17\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":133834.34,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":14261.5,\"CEB\":21392.8,\"COSTDO\":28523,\"COSTSO\":79864.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25670.7,\"COSTTO\":25670.7}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;The above prices are subject to availability of flights and hotel accommodation and services at the time of processing the reservation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote is based on the above hotels and any change will impact the cost. Long week-ends &amp;amp; school holidays in SA may attract a supplement.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The check-in time is 1430 hrs and check out time is 1030 hrs. Early check-in or a late checkout is not guaranteed and is only on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day vehicle is 8-9 hrs and half &amp;ndash; day is 4-5 hrs. On the Garden Route the vehicle is available for 10-12 hrs. Any extra hours required may not be allowed and is purely on request and will be charged for.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The drivers\\/guides may not stay in the same hotel as the clients. It is customary to pay 10% gratuity (tips) both to the driver and the guide to ensure a more pleasurable services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any unutilised entrances\\/sightseeing is non-refundable, however if any entrance is cancelled on account of weather, that refund can be adjusted against next booking or collected before departing South Africa. No remittances towards any refund will be done.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The amount paid at the time of booking confirmation and request of Visa Letter is adjusted in the final invoice. This amount will be Forfeited in the event of cancellation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The prices are nett with all bank charges to your account.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cash payments made will attract 2% handling\\/cash deposit fees. All Master\\/Visa credit cards will attract 4% and American Express cards 5.75% handling fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We must receive the above nett quoted amounts in our bank, whether the amount transferred is in Dollar or Rand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Child policy in South Africa varies from hotel to hotel. In most of the hotels children will be accommodated in a family room subject to availability of such rooms.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels may not allow children below a certain age and some hotels don&amp;rsquo;t allow children to share in the same room with adults and will have to be accommodate in separate rooms since they do not have Family rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most hotels consider children above 12 years as adults and charged accordingly&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It is very important to check the child policy while requesting for a hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In South Africa, triple rooms are mostly higher category rooms and cost more than standard double\\/twin. Some hotels don&amp;rsquo;t allow triple sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations 30-day prior to the client&amp;rsquo;s arrival is subject to a cancellation fee. 30% advance required at the time of booking and balance of full payment required 35 days prior to arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The prices may change, due to Rand\\/Dollar exchange rate fluctuations, revision in fuel prices or govt. levies \\/ duties, without notice. It is deemed our detailed terms and conditions applicable have been read, understood and agreed upon.\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All flights, porterage and tips, mineral water, laundry, telephone or any other expense personal in nature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Insurance, we strongly suggest that the passenger&amp;rsquo;s take out their own insurance before departing for South Africa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drinks and lunches\\/dinner except where mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Items of a personal nature, driver and guide gratuities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees and excursions not mentioned above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porterage at hotels and airports&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses caused by reasons beyond our control such as bad weather, natural calamities (landslides, floods), flight delays, excess baggage, rescheduling or cancellations, any accidents, medical evacuations, riots, strikes, war, airline or hotel policies etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Meet and Greet Representation at the Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day &amp;ldquo;Cape Peninsula&amp;rdquo; &amp;amp; a half-day &amp;ldquo;Mother City&amp;rdquo; Tour in Cape Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in standard rooms in above or similar on bed &amp;amp; breakfast basis and dinner, bed and breakfast in Kruger&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; sightseeing is on Private basis in an air-conditioned luxury vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day visit to Cango Caves and Wildlife Ranch, Ostrich Farm and a cruise on the vast Knysna Lagoon.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees as per the itinerary with Table Mountain Cable car ride.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day Game drive in Kruger&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162773\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162773],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162774\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162774],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162775\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162775],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162776\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162776],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162777\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162777],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162778\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162778],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162779\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162779],\"Remark\":[\"&lt;p&gt;TOURS ON PVT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162780\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162780],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162781\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162781],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162782\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[162782],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162783\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[162783],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162784\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[162784],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162785\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[162785],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162786\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[162786],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Cape Town,Oudtshoorn,Knysna,Sun City,Kruger National Park','Cape Town,Southern Africa,South Africa,Oudtshoorn,Knysna,Sun City,Kruger National Park,George,Johannesburg','','5069,20426,14261,26381,14524',133834,133834,9,'12_1615468654_0.jpg,12_1615468693_0.jpg,12_1615468704_0.jpg,12_1615468716_0.jpg',NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'South Africa','195','2023-09-07 12:52:33','2023-09-07 00:00:00',1,1,'1','1','0','','','',NULL,'breathtaking-south-africa',NULL,NULL,NULL,0),(14,23958,1,5293,0,0,0,'Honeymoon,Beach,Family,Festivals and Events,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23958,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/HOLI_SPECIAL_-_The_Residence_Maldives_Dhigurah__48.jpg\",\"BookingValidUntill\":\"2021-03-18\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;h3&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;big&gt;&lt;strong&gt;CELEBRATE HOLI IN MALDIVES&lt;\\/strong&gt;&lt;\\/big&gt;&lt;\\/span&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;The Residence Maldives Dhigurah&lt;\\/strong&gt;&lt;strong&gt;&amp;nbsp;by Cenizaro&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Discover your own private luxury hideaway at The Residence Maldives at Dhigurah, located in the southern Maldives in the Gaafu Alifu Atoll. A palm-fringed paradise where you can immerse in divine relaxation, cocooned by a lush oasis of nature, turquoise lagoons and calming ocean blues.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;PCR Requirement on Arrival:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Please note that all inbound tourists&amp;nbsp;&lt;strong&gt;must present a negative PCR test result&lt;\\/strong&gt;&amp;nbsp;&lt;strong&gt;and document must be in English&lt;\\/strong&gt;. PCR test result has to be conducted within a maximum of 72 hours prior to departure to Maldives. In addition, all travelers entering Maldives are required to submit an Online Self Declarative Health Declaration within 24 hours prior their arrival and departure TO and FROM Maldives.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Please refer to the link -&amp;nbsp;&lt;a href=&quot;https:\\/\\/imuga.immigration.gov.mv\\/&quot; target=&quot;_blank&quot;&gt;https:\\/\\/imuga.immigration.gov.mv\\/&lt;\\/a&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&amp;nbsp;&lt;strong&gt;PCR Requirement on Departure:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests who require testing for departure from Maldives should inform the resort on-arrival to make the arrangements.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Should guests require a PCR test on departure, a sample swab needs to be collected 48 hours prior to departure in order for the Male&amp;rsquo;s hospital laboratories to process the results on time. Our in-house doctor will administer the procedure before we courier to Male. A copy of the travel itinerary and other items requested by the testing lab will also need to be provided on the guest&amp;rsquo;s departure.&amp;nbsp;&lt;strong&gt;PCR testing will be chargeable at USD 150 nett per person, per test&lt;\\/strong&gt;&amp;nbsp;and shall be charged to guest account. Payment will be collected upon arrival to the resort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Please be informed that testing laboratories in Maldives requires pre appointment hence we will require to send us the&amp;nbsp;&lt;strong&gt;passport copies of the guests&amp;nbsp;&lt;\\/strong&gt;to prepare the request for the PCR testing schedule if applicable.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Male\",\"DestinationPlacesSysId\":16508,\"SourcePlaces\":\"Male\",\"SourcePlaceSysId\":16508,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOLI SPECIAL - The Residence Maldives Dhigurah \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5892\",\"SupplierName\":\"SRILANKAN HOLIDAYS\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Festivals and Events,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-03-19\",\"To\":\"2021-03-18\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16508,\"Title\":\"Male\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477877,\"Name\":\"The Residence Maldives at Dhigurah\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0.6887971\",\"Long\":\"73.4419403\",\"Address\":\"Dhigurah, Maldives\"},\"Images\":[],\"CityId\":16508,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5892,\"SupplierName\":\"SRILANKAN HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"LAGOON POOL VILLA\",\"MealTypeName\":\"AI\"},{\"RefHotelId\":477878,\"Name\":\"The Residence Maldives at Dhigurah\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0.6887971\",\"Long\":\"73.4419403\",\"Address\":\"Dhigurah, Maldives\"},\"Images\":[],\"CityId\":16508,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5892,\"SupplierName\":\"SRILANKAN HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"Sunrise Water Pool Villa\",\"MealTypeName\":\"AI\"},{\"RefHotelId\":477879,\"Name\":\"The Residence Maldives at Dhigurah\",\"Star\":\"5.00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0.6887971\",\"Long\":\"73.4419403\",\"Address\":\"Dhigurah, Maldives\"},\"Images\":[],\"CityId\":16508,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111110101110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5892,\"SupplierName\":\"SRILANKAN HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"Sunset Water Villa with Pool\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"171002\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h3><span style=\\\"color:#e74c3c\\\"><big><strong>CELEBRATE HOLI IN MALDIVES&nbsp;<\\/strong><\\/big><\\/span><\\/h3>\\r\\n\\r\\n<p><strong>The Residence Maldives Dhigurah<\\/strong><strong>&nbsp;by Cenizaro<\\/strong><\\/p>\\r\\n\\r\\n<p>Discover your own private luxury hideaway at The Residence Maldives at Dhigurah, located in the southern Maldives in the Gaafu Alifu Atoll. A palm-fringed paradise where you can immerse in divine relaxation, cocooned by a lush oasis of nature, turquoise lagoons and calming ocean blues.<\\/p>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>IN-VILLA AMENITIES<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Complimentary WiFi in the villa and in selected areas of the resort<\\/li>\\r\\n\\t<li>Complimentary bicycles rental and buggy services on request<\\/li>\\r\\n\\t<li>In-villa coffee machine with daily refillable capsules and tea-making facilities<\\/li>\\r\\n\\t<li>Complimentary bottled water replenished daily<\\/li>\\r\\n\\t<li>Bottled juices, soft drinks, beer and snacks in villa minibar is complimentary and will be refilled once per day. Any additional replenishment of minibar items and liquor\\/spirits will be chargeable.<\\/li>\\r\\n\\t<li>Complimentary ironing of 2 items per person once during the stay<\\/li>\\r\\n\\t<li>Essential toiletry items such as toothbrush and toothpaste, shaving kit, comb and female sanitary products are provided on request.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p><span class=\\\"marker\\\"><strong>ACTIVITIES &amp; ENTERTAINMENT<\\/strong><\\/span><\\/p>\\r\\n\\r\\n<ul>\\r\\n\\t<li>Complimentary Sunrise and Sunset Yoga at The Spa by Clarins<\\/li>\\r\\n\\t<li>Full access to fully equipped gymnasium<\\/li>\\r\\n\\t<li>Complimentary rental of snorkelling equipment at the Water Sports Centre<\\/li>\\r\\n\\t<li>Complimentary Guided House Reef Snorkelling Excursion at The Dive Centre Available three times a week, reservations required<\\/li>\\r\\n\\t<li>Complimentary rental of non-motorized water sports such as Kayak, Stand-Up Paddling (excluding lessons) Windsurfing and catamaran requires a license to operate<\\/li>\\r\\n\\t<li>Complimentary Kids&rsquo; Club access for children aged 3-12 years old with daily activities and games from 10:00 am to 05:30 pm Baby sitting services are available and is chargeable.<\\/li>\\r\\n\\t<li>Complimentary access to the main pool with hourly poolside amenities and refreshments<\\/li>\\r\\n\\t<li>In-villa dining, private dining, spa, laundry services, telephone calls, diving, dive school excursions and water sports activities (excluding selected nonmotorized activities) are available at extra costs.<\\/li>\\r\\n\\t<li>Please note that the above activities may be subject to weather conditions.<\\/li>\\r\\n<\\/ul>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"LAGOON POOL VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477878,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunrise Water Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunset Water Villa with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"171005\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"LAGOON POOL VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477878,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunrise Water Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunset Water Villa with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"171008\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"LAGOON POOL VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477878,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunrise Water Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunset Water Villa with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"171011\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"LAGOON POOL VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477878,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunrise Water Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunset Water Villa with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"171014\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"LAGOON POOL VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477878,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunrise Water Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Sunset Water Villa with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23958\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"137500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":137500,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275000,\"priceExtraBed\":\"137500.00\",\"priceWithoutBed\":\"137500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23959\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"143000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":143000,\"priceDoubleOcc\":\"143000.00\",\"priceSingleOcc\":286000,\"priceExtraBed\":\"143000.00\",\"priceWithoutBed\":\"143000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"143000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23960\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"148500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-18\",\"To\":\"2021-03-22\",\"Currency\":1,\"priceTripleOcc\":148500,\"priceDoubleOcc\":\"148500.00\",\"priceSingleOcc\":297000,\"priceExtraBed\":\"148500.00\",\"priceWithoutBed\":\"148500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"148500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span class=&quot;marker&quot;&gt;For cancellations for any other reason than a positive PCR test the following policy remains in place&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;*There will be no refund on early departure except in the case of emergency and it is subject to RESORT&amp;rsquo;s decision.&lt;\\/strong&gt;&amp;nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 48&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All Inclusive 4 Nights Stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Live Bollywood Night ( Parlin Gill )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;High Tea with Indian Snacks&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;DJ Night with dinner on beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Movies under the sky&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Celebrate Holi with Aqua Zumba on the beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Maldives ( Dom Flight + Speed Boat )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited Alcoholic &amp;amp; Non-Alcoholic Beverages ( Glenfiddich 12 years, Absolute, Bacardi Oro Gold, JW Black Label etc )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary 60mins SPA for Adults&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Non-Motorised water sport activities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes &amp;amp; much more ( Green Tax )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"171002\":[{\"Sequence\":[0],\"TPInvnSysId\":[171002],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHT + SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171005\":[{\"Sequence\":[0],\"TPInvnSysId\":[171005],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHT + SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171008\":[{\"Sequence\":[0],\"TPInvnSysId\":[171008],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHT + SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171011\":[{\"Sequence\":[0],\"TPInvnSysId\":[171011],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHT + SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"171014\":[{\"Sequence\":[0],\"TPInvnSysId\":[171014],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHT + SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1}}','Male','Male,Indian Subcontinent,Maldives','','16508',137500,148500,4,'14_1615361944_0.jpg,14_1615362313_0.jpg,14_1615362349_0.jpg,14_1615362360_0.jpeg',NULL,NULL,2,'',0,'2021-03-19 00:00:00','2021-03-18 00:00:00','2021-03-18 00:00:00',3,'Maldives','133','2023-07-31 16:55:18','2021-03-19 00:00:00',1,1,'0','0','0','testkeyward','description','test',NULL,'holi-special-the-residence-maldives-dhigurah',NULL,NULL,NULL,0),(15,24249,1,5293,0,0,0,'Honeymoon,Family,Romantic,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":24249,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/MAGNIFICENT_RUSSIA_6.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Russia has been a popular tourist hotspot for years, attracting over thirty million tourists every single year, who visit to experience the country&amp;rsquo;s rich cultural heritage, beautiful architecture and sprawling natural beauty.&lt;br \\/&gt;\\r\\nHome to eleven time zones and a border spanning two continents, Russia, the world&amp;#39;s largest country, is truly a world of its own. As a country that has seen the rise and fall of great empires and unions, its history only adds to its distinct identity. With vast and immensely beautiful landscapes in Siberia and the Kamchatka Peninsula, culturally rich heritage sites in the North Caucasus, and pulsating cities such as Moscow, Russia makes for a destination worth a visit for travelers of all kinds.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Saint Petersburg\",\"DestinationPlacesSysId\":23644,\"SourcePlaces\":\"Moscow\",\"SourcePlaceSysId\":18488,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAGNIFICENT RUSSIA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5870\",\"SupplierName\":\"SATGURU TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Gala Dinner,Airport Transfers,Train Station Transfers,Sightseeing,Guided Tours,Train Ticket\",\"PackageType\":\"Honeymoon,Family,Romantic,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18488,\"Title\":\"Moscow\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479639,\"Name\":\"Vega Izmailovo Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Izmailovskoe Highway 71  3B  Moscow\"},\"Images\":{\"Image\":[{\"ImagId\":4817910,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479639\\/5293_01616579418.jpg\"}]},\"CityId\":18488,\"Brief\":\"&lt;p&gt;The &lt;strong&gt;4-star Vega Izmailovo Hotel Moscow&lt;\\/strong&gt; is set 2.2 km from St. Nikolay Church at Preobrazhensk Cemetery and 0.6 km from The Kremlin in Izmailovo. Featuring &lt;strong&gt;972 rooms&lt;\\/strong&gt; with views of the street, this venue is set within a short ride from Izmailovsky Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This accommodation is located in Izmailovo district, not far from Izmaylovo Kremlin. The hotel is set within 10 km from Moscow city centre. The property also lies close to &lt;strong&gt;Musuem of Bread.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Certain rooms include &lt;strong&gt;soundproof windows and smoke detectors&lt;\\/strong&gt;. It offers a microwave oven, an electric kettle and refrigerators along with hypoallergenic pillows and linens.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start your day with a delicious breakfast.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479639\\/5293_844a74134591006dffb578fa53d7fb1a1616579035.jpg\",\"AccoAminitiesMask\":\"1111111011011101001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":5266,\"Title\":\"City Tour (by car)\",\"Description\":\"Visit the beautiful sites of Moscow on this fully guided city tour\\r\\nVisit the beautiful sites of Moscow with this fully guided tour of the city. You&acirc;&euro;&trade;ll see the most famous sites as well as the most historic foundations.\\r\\n\\r\\nMake your way around Red Square with scenes of glorious architecture with St. Basil&acirc;&euro;&trade;s Cathedral, the Lenin Mausoleum and State Historical Museum. \\r\\n\\r\\nThen continue along the peaceful Moska River embankment as you take in the breath-taking views of the Kremlin before you reach the Cathedral of Christ the Saviour, New Maiden&acirc;&euro;&trade;s Convent and Moscow State University.\\r\\n\\r\\nThe tour doesn&acirc;&euro;&trade;t stop there as you get taken to Sparrow Hills&acirc;&euro;&trade; observation spot to see Moscow at its finest with a spectacular panoramic view. Travel on through the Memorial Complex at Poklonnaya Hill and Victory Park, Triumphal Arch, Kutuzov Avenue, New Arbat, Boulevard Ring, Pushkin Square, Tverskaya Street before finishing this grand tour at Manezhnaya Square.\\r\\n\\r\\nFull of sights and culture, this tour is the perfect way to see all the wonders of the city of Moscow.\",\"CurrencyType\":0,\"CityId\":18488,\"CityName\":\"Moscow\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18488\\/sightseeing\\/36_1527338007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":8891,\"Title\":\"THE METRO moscow\",\"Description\":\"The Moscow Metro has its own never-to-be-forgotten charm. It was opened in 1935 and became one of the USSR&amp;rsquo;s most, special architectural projects. That is why most of the central underground stations look like a museum. Every station has its own mood, different decorations and fascinating story. Take a journey in Moscow underground to get an unforgettable sacrament, of the city.\",\"CurrencyType\":0,\"CityId\":18488,\"CityName\":\"Moscow\",\"Lat\":55.8112551,\"Long\":37.8372086,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18488\\/sightseeing\\/THE_METRO_moscow_18488_1554113099.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":5339,\"Title\":\"Saint Petersburg, Russia\",\"Description\":\"saint Petersburg is one of the modern cities of Russia, as well as its cultural capital.The Historic Centre of Saint Petersburg and Connected layer of Monuments  manufacture  a UNESCO World Heritage Site. Saint Petersburg is home to the cottage, one of the largest art museums in the world. Many foreign consulates, orporationinternational cs, banks and businesses have offices in Saint Petersburg\",\"CurrencyType\":0,\"CityId\":23644,\"CityName\":\"Saint Petersburg\",\"Lat\":59.9342802,\"Long\":30.3350986,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23644\\/sightseeing\\/Saint_Petersburg,_Russia_23644_1527588332.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":18852,\"Title\":\"Kazan Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23644,\"CityName\":\"Saint Petersburg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":23644,\"Title\":\"Saint Petersburg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479670,\"Name\":\"Park Inn By Radisson Pulkovskaya Hotel and Conference \",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":23644,\"Brief\":\"&lt;p&gt;The Park Inn by Radisson Pulkovskaya Hotel &amp; Conference Centre St Petersburg, located on the tree-lined Moskovsk Avenue, offers convenient access to the Pulkovo Airport (LED), just 9 kilometers away. Our St. Petersburg hotel is also just 11 kilometers away from the city center. Nestled among elegant historic homes, verdant parks, stylish shopping centers, and vibrant restaurants, this is the perfect base for your stay in St. Petersburg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our 842 well-appointed rooms include 83 Business-Friendly Rooms and 27 Suites, and the hotel is 100% nonsmoking. Dine in one of our 2 restaurants, work out in the on-site fitness center, or take advantage of modern meeting facilities to host a business or social gathering in St. Petersburg.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111111101000111100100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":5266,\"Title\":\"City Tour (by car)\",\"Description\":\"Visit the beautiful sites of Moscow on this fully guided city tour\\r\\nVisit the beautiful sites of Moscow with this fully guided tour of the city. You&acirc;&euro;&trade;ll see the most famous sites as well as the most historic foundations.\\r\\n\\r\\nMake your way around Red Square with scenes of glorious architecture with St. Basil&acirc;&euro;&trade;s Cathedral, the Lenin Mausoleum and State Historical Museum. \\r\\n\\r\\nThen continue along the peaceful Moska River embankment as you take in the breath-taking views of the Kremlin before you reach the Cathedral of Christ the Saviour, New Maiden&acirc;&euro;&trade;s Convent and Moscow State University.\\r\\n\\r\\nThe tour doesn&acirc;&euro;&trade;t stop there as you get taken to Sparrow Hills&acirc;&euro;&trade; observation spot to see Moscow at its finest with a spectacular panoramic view. Travel on through the Memorial Complex at Poklonnaya Hill and Victory Park, Triumphal Arch, Kutuzov Avenue, New Arbat, Boulevard Ring, Pushkin Square, Tverskaya Street before finishing this grand tour at Manezhnaya Square.\\r\\n\\r\\nFull of sights and culture, this tour is the perfect way to see all the wonders of the city of Moscow.\",\"CurrencyType\":0,\"CityId\":18488,\"CityName\":\"Moscow\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18488\\/sightseeing\\/36_1527338007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":8891,\"Title\":\"THE METRO moscow\",\"Description\":\"The Moscow Metro has its own never-to-be-forgotten charm. It was opened in 1935 and became one of the USSR&amp;rsquo;s most, special architectural projects. That is why most of the central underground stations look like a museum. Every station has its own mood, different decorations and fascinating story. Take a journey in Moscow underground to get an unforgettable sacrament, of the city.\",\"CurrencyType\":0,\"CityId\":18488,\"CityName\":\"Moscow\",\"Lat\":55.8112551,\"Long\":37.8372086,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18488\\/sightseeing\\/THE_METRO_moscow_18488_1554113099.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":5339,\"Title\":\"Saint Petersburg, Russia\",\"Description\":\"saint Petersburg is one of the modern cities of Russia, as well as its cultural capital.The Historic Centre of Saint Petersburg and Connected layer of Monuments  manufacture  a UNESCO World Heritage Site. Saint Petersburg is home to the cottage, one of the largest art museums in the world. Many foreign consulates, orporationinternational cs, banks and businesses have offices in Saint Petersburg\",\"CurrencyType\":0,\"CityId\":23644,\"CityName\":\"Saint Petersburg\",\"Lat\":59.9342802,\"Long\":30.3350986,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23644\\/sightseeing\\/Saint_Petersburg,_Russia_23644_1527588332.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":18852,\"Title\":\"Kazan Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23644,\"CityName\":\"Saint Petersburg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"173373\",\"Title\":\"Arrival in Moscow &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18488,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479639,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173374\",\"Title\":\"Moscow City Tour including English Speaking Guide\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18488,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479639,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5266,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173375\",\"Title\":\"Metro Ride Incl. Guide + Entrance fees\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18488,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479639,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8891,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173376\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18488,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173377\",\"Title\":\"Arrival in Saint Petersburg &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23644,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173378\",\"Title\":\"Saint Petersburg City Tour Including English Speaking Guide\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23644,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5339,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173379\",\"Title\":\"Kazan Cathedral Including Guide\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23644,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18852,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173380\",\"Title\":\"Checkout from Hotel &amp; Departure to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23644,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24249\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40407,\"priceDoubleOcc\":\"41800.00\",\"priceSingleOcc\":117040,\"priceExtraBed\":\"31350.00\",\"priceWithoutBed\":\"20900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20900,\"CEB\":31350,\"COSTDO\":41800,\"COSTSO\":117040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37620,\"COSTTO\":37620}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&amp;bull; 03 Nights in Moscow on twin sharing basis (Hotel lzmailovo Vega 4*)&lt;br \\/&gt;\\r\\n&amp;bull; 03 Nights in Saint Petersburg on twin sharing basis (Hotel Park Inn SPB 4*)&lt;br \\/&gt;\\r\\n&amp;bull; 06 Buffet Breakfast in the Hotel&lt;br \\/&gt;\\r\\n&amp;bull; 01 Welcome Dinner with Belly dance show&lt;br \\/&gt;\\r\\n&amp;bull; Moscow City Tour Incl. ESG&lt;br \\/&gt;\\r\\n&amp;bull; Metro Ride Incl. Guide + Entrance fees&lt;br \\/&gt;\\r\\n&amp;bull; Saint Petersburg City Tour Incl. ESG&lt;br \\/&gt;\\r\\n&amp;bull; Kazan Cathedral Incl. Guide&lt;br \\/&gt;\\r\\n&amp;bull; Transfer from APT - HTL - APT&lt;br \\/&gt;\\r\\n&amp;bull; Transfer from HTL - RLY - HTL&lt;br \\/&gt;\\r\\n&amp;bull; VISA Invitation Letter (for tourist visa purpose only)&lt;br \\/&gt;\\r\\n&amp;bull; Registration Fees in Saint Petersburg&lt;br \\/&gt;\\r\\n&amp;bull; Sapsan 2nd class train ticket from MOW-SPB or SPB- MOW (One Way)&lt;br \\/&gt;\\r\\n&amp;bull; 24*7 Assistance in English &amp;amp; Russian&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"173373\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[173373],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173374\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173374],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173375\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[173375],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"173376\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173376],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173377\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173377],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173378\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[173378],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173379\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[173379],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173380\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[173380],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Moscow,Saint Petersburg','Moscow,Eastern Europe,Russia,Saint Petersburg,Russian Federation','','18488,23644',41800,41800,6,'15_1615383409_0.jpg,15_1615383424_0.jpg,15_1615383438_0.jpg,15_1616394458_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Russia,Russian Federation','507,181','2023-09-07 12:49:46','2023-09-07 00:00:00',1,1,'1','1','0','','','',NULL,'magnificent-russia',NULL,NULL,NULL,0),(16,24259,1,5293,0,0,0,'Honeymoon,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24259,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/centara-ras-fushi_1690542743\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;At Centara Ras Fushi Resort &amp;amp; Spa Maldives&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set on a pristine island in North Male&amp;rsquo; Atoll, just over 15 minutes away from Male&amp;rsquo; International Airport (Velana International Airport) by speedboat, Centara Ras Fushi Resort &amp;amp; Spa Maldives offers a relaxing and inspiring holiday experience along with plenty of opportunities to indulge, play and rejuvenate at the superb well-being area including SPA Cenvaree.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Designed as an adult-oriented destination however, offering guests the opportunity to travel with young adults (12-16 years), the resort features 140 villas located on the beachside or set above the lagoon. The resort is perfectly located with easy access to some of the Maldives&amp;rsquo; most sought-after diving spots. Giraavaru Cave and Kuda Haa are 5 minutes away, while Lion&amp;rsquo;s Head Kiki Reef (Hans Haas Place) and Shark Point approximately 15 minutes away; complemented by the PADI Dive Centre.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The guests also have a choice to enjoy a myriad of water sports. Aside from the great facilities and a variety of dining options, the resort offers a choice of meal plans to suit guests&amp;rsquo; every need, for a more unbridled holiday&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"CENTARA RAS FUSHI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479681,\"Name\":\"Centara Ras Fushi Resort and Spa Maldives\",\"Star\":\"4.00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"4.2003913\",\"Long\":\"73.41270449999999\",\"Address\":\"Male North Harbour, Boduthakurufaanu Magu, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tOcean Front Beach Villa\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"173486\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173487\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173488\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173489\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173490\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24259\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"69850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":67522,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":195580,\"priceExtraBed\":\"52387.50\",\"priceWithoutBed\":\"34925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34925,\"CEB\":52387.5,\"COSTDO\":69850,\"COSTSO\":195580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62865,\"COSTTO\":62865}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"173486\":[{\"Sequence\":[0],\"TPInvnSysId\":[173486],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"173487\":[{\"Sequence\":[0],\"TPInvnSysId\":[173487],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"173488\":[{\"Sequence\":[0],\"TPInvnSysId\":[173488],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"173489\":[{\"Sequence\":[0],\"TPInvnSysId\":[173489],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"173490\":[{\"Sequence\":[0],\"TPInvnSysId\":[173490],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',69850,69850,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:49:23','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'centara-ras-fushi',NULL,NULL,NULL,0),(17,24392,1,5293,1,0,0,'Adventure,Family,Hill Station,Festivals and Events,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24392,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ENJOY_HOLI_IN_DIGANTAA_RESORT_24.jpg\",\"BookingValidUntill\":\"2021-04-29\",\"AdvBookingDays\":5,\"DETAILS\":\"&lt;h3&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;HOLI PACKAGE (28TH MARCH 2021 - 30TH MARCH 2021)&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;&lt;big&gt;&lt;strong&gt;Digantaa Resort&lt;\\/strong&gt;&lt;\\/big&gt; is a venue to cater the needs of an over-demanding urban lifestyle. Keeping in view the need of time, we have created this unique wellness provision. &lt;big&gt;&lt;strong&gt;Digantaa Resort &lt;\\/strong&gt;&lt;\\/big&gt;is basically a &lt;strong&gt;spa and golf resort, &lt;\\/strong&gt;located near&lt;strong&gt; Dhanachuli, Mukteshwar, Uttarakhand.&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&amp;quot;The Philosophy of &lt;strong&gt;Digantaa Resort&lt;\\/strong&gt; is inspired by Ancient Indian Ayurvedic Tradition of&lt;em&gt;&lt;strong&gt; Panchmahabhoot&lt;\\/strong&gt;&lt;\\/em&gt; &amp;ndash; Shabd (Sound), Sparsh (Touch), Roop (Vision), Gandh (Smell) and Ras (Taste).&amp;quot; The unique balance between all these five great elements ensures the required balance between &amp;lsquo;Mana&amp;rsquo; (Mind), &amp;lsquo;Tana&amp;rsquo; (Body) and &amp;lsquo;Atman&amp;rsquo; (Soul). This way we claim to be the ultimate destination where we bridge a gap between you and yourself, nourish your body, and refresh your mind.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"RADIANT HOLI IN DIGANTAA RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5897\",\"SupplierName\":\"DESTINATION LAUNCHER LLP\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Activity,Sightseeing,Trekking\",\"PackageType\":\"Adventure,Family,Hill Station,Festivals and Events,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-03-15\",\"To\":\"2021-04-29\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478933,\"Name\":\"Digantaa Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.39509859999999\",\"Long\":\"79.6448702\",\"Address\":\"Village, Dhari - Bhatelia Rd, Kaul, Dhanachuli, Uttarakhand 263132, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Tesia\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":478934,\"Name\":\"Digantaa Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.39509859999999\",\"Long\":\"79.6448702\",\"Address\":\"Village, Dhari - Bhatelia Rd, Kaul, Dhanachuli, Uttarakhand 263132, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Myna\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":478935,\"Name\":\"Digantaa Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.39509859999999\",\"Long\":\"79.6448702\",\"Address\":\"Village, Dhari - Bhatelia Rd, Kaul, Dhanachuli, Uttarakhand 263132, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Magpie\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"174819\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><big><span class=\\\"marker\\\"><strong>&quot; Stay at Digantaa Resort is a unique experience. Exquisitely designed wooden cottages present you with the most luxurious and comfortable living.&quot;<\\/strong><\\/span><\\/big><\\/p>\\r\\n\\r\\n<p>An ideal holiday destination, Digantaa Resort seeks to cater to the growing needs of an over-demanding urban lifestyle. We have created this unique place for you keeping these very demands in mind. Digantaa Resort is basically a spa and golf resort, located near Dhanachuli, Mukteshwar, Uttarakhand.<br \\/>\\r\\nStay at Digantaa Resort is a unique experience. Exquisitely designed wooden cottages present you with the most luxurious and comfortable living. The rooms overlooking terrific mountain visuals are equipped with all the services that you expect to find in a place like ours.<br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478933,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":478934,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Myna\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":478935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Magpie\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174822\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478933,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":478934,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Myna\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":478935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Magpie\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174825\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478933,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":478934,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Myna\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":478935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Magpie\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24392\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":15400,\"priceExtraBed\":\"5390.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9345,\"priceDoubleOcc\":\"9345.00\",\"priceSingleOcc\":18690,\"priceExtraBed\":\"9345.00\",\"priceWithoutBed\":\"9345.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9345.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24393\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":8800,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":17600,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"4400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9975,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"9975.00\",\"priceWithoutBed\":\"9975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24394\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-28\",\"To\":\"2021-03-28\",\"Currency\":1,\"priceTripleOcc\":16500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11550.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"10395.00\",\"priceSingleOcc\":20790,\"priceExtraBed\":\"10395.00\",\"priceWithoutBed\":\"10395.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24392\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9078.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9078,\"priceDoubleOcc\":\"9078.00\",\"priceSingleOcc\":18156,\"priceExtraBed\":\"9078.00\",\"priceWithoutBed\":\"9078.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9078.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24393\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9690.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":9690,\"priceDoubleOcc\":\"9690.00\",\"priceSingleOcc\":19380,\"priceExtraBed\":\"9690.00\",\"priceWithoutBed\":\"9690.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24394\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10098.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-04-02\",\"Currency\":1,\"priceTripleOcc\":10098,\"priceDoubleOcc\":\"10098.00\",\"priceSingleOcc\":20196,\"priceExtraBed\":\"10098.00\",\"priceWithoutBed\":\"10098.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10098.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Buffet Breakfast, Lunch &amp;amp; Dinner at designated venue.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;HI-tea with Cookies&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Trekking with in the resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Outdoor games &amp;amp; Indoor games&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary two bottles of mineral water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-room-&amp;nbsp;Tea \\/ Coffee maker&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wi-Fi Connection&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Access to Indoor heated Swimming Pool &amp;nbsp;(swimming Costume mandatory&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Holi Celebration with Organic colour with snacks&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kids Below 7 year is comp above 7 -12years 25% Of the room package &amp;nbsp;and above 12 years 35% of the room package&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any r&amp;nbsp;Buffet Breakfast, Lunch &amp;amp; Dinner at designated venue.&amp;nbsp;&lt;br \\/&gt;\\r\\n\\tHI-tea with Cookies&lt;br \\/&gt;\\r\\n\\tTrekking with in the resort&lt;br \\/&gt;\\r\\n\\tComplimentary Outdoor games &amp;amp; Indoor games&lt;br \\/&gt;\\r\\n\\tComplimentary two bottles of mineral water&lt;br \\/&gt;\\r\\n\\tIn-room-&amp;nbsp;Tea \\/ Coffee maker&lt;br \\/&gt;\\r\\n\\tWi-Fi Connection&lt;br \\/&gt;\\r\\n\\tAccess to Indoor heated Swimming Pool &amp;nbsp;(swimming Costume mandatory&lt;br \\/&gt;\\r\\n\\tHoli Celebration with Organic colour with snacks&lt;br \\/&gt;\\r\\n\\tKids Below 7 year is comp above 7 -12years 25% Of the room package &amp;nbsp;and above 12 years 35% of the room packaevise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"174819\":[{\"Sequence\":[0],\"TPInvnSysId\":[174819],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}],\"174822\":[{\"Sequence\":[0],\"TPInvnSysId\":[174822],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}],\"174825\":[{\"Sequence\":[0],\"TPInvnSysId\":[174825],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}]},\"AllowBookingType\":1}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India,Mukteshwar','','18892',7700,16500,2,'17_1616393286_0.jpg,17_1616393314_0.jpg,17_1616393326_0.jpg,17_1616393326_1.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2021-03-15 00:00:00','2021-04-29 00:00:00','2021-04-29 00:00:00',3,'India','101','2021-04-06 11:54:11','2021-03-15 00:00:00',1,1,'0','0','0','','','',NULL,'radiant-holi-in-digantaa-resort',NULL,NULL,NULL,0),(18,24395,1,5293,0,0,0,'Honeymoon,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24395,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Andaman_Honeymoon_Package_7.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANDAMAN HONEYMOON PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5686\",\"SupplierName\":\"NAMHO\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic\",\"Validity\":{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478922,\"Name\":\"Hotel Shompen\",\"Star\":\"3.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648071\",\"Long\":\"92.73910389999999\",\"Address\":\"2 Middle Point, Opposite Bengali Club, Thomas Colony, Junglighat, Port Blair,  South Andaman and Island\"},\"Images\":{\"Image\":[{\"ImagId\":4817934,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478922\\/5293_01616771811.jpg\"}]},\"CityId\":32511,\"Brief\":\"&lt;p&gt;Welcome to &lt;strong&gt;Hotel ShompenHotel Shompen&lt;\\/strong&gt; - named after a local Tribe of Andaman and Nicobar Islands. is situated in the heart of the Port Blair city at Middle Point. The Hotel is a Luxury Hotel and is very centrally located and provides the best of the leisure and amenities to the Tourists, Business Personnel, Professionals on Official Trip to Andaman and Nicobar Island...The Hotel is presently offering 30 Rooms with many different layouts, modern amenities, the friendliness and personalized service.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478922\\/5293_232826066b52f652e00c69ee4061ebd61616771794.jpg\",\"AccoAminitiesMask\":\"1110010010010101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18884,\"Title\":\"Enjoy Sound and Light Show at Cellular Jail\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478923,\"Name\":\"Aparupa Sands Marina\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0357867\",\"Long\":\"92.99069469999999\",\"Address\":\"Govind Nagar 2 Havelock, Andaman and Nicobar Islands\"},\"Images\":{\"Image\":[{\"ImagId\":4817935,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478923\\/5293_01616778473.jpg\"}]},\"CityId\":11658,\"Brief\":\"&lt;p&gt;Havelock is a picturesque natural paradise with beautiful white sandy beaches, rich coral reefs and lush green forest. This is one of the beautiful sandy beaches fringed with green canopy of the rain-fed forests beckons everyone to enjoy the frolic and fun at the azure sea.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set exclusively on the world famous Beach No.2, also known as Govind Nagar, &lt;strong&gt;APARUPA Sands Marina&acirc;&euro;&ldquo; A beach resort in Havelock,&lt;\\/strong&gt; is the best place in terms of beach view, transportation, luxury, food and hospitality.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our passion is to provide you with the best service, be the best there is and stay ecological and environment friendly.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Surrounded in Acers, the resort consists of&lt;strong&gt; 32 elegantly designed cottages&lt;\\/strong&gt; (16 executive-Clusters and 16 Deluxe- Sea view) with spacious interiors, modern amenities and suited bathrooms.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We, at APARUPA Sands Marina, welcome you to the Andaman and promise to make your stay memorable and experience of a lifetime. Our beach side cottages provides an excellent view of the clear emerald waters and coconut trees studded beach. Its well-appointed cottages with modern amenities, warm and welcoming staff ensure that guests are comfortable and cared for.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478923\\/5293_f8fff8d44b06ee672c133c318c9a88681616778473.jpg\",\"AccoAminitiesMask\":\"1111010010000100100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Cottage\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18884,\"Title\":\"Enjoy Sound and Light Show at Cellular Jail\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478926,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\"4.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8190638\",\"Long\":\"93.0420566\",\"Address\":\"Beach No-3 Ramnagar Beach Neil Island SH6 Andaman and Nicobar Islands\"},\"Images\":{\"Image\":[{\"ImagId\":4817936,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_01616841401.jpg\"},{\"ImagId\":4817937,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_01616841419.jpg\"}]},\"CityId\":34567,\"Brief\":\"&lt;p&gt;Aquays Hotels &amp; Resorts is beautiful place situated at Neil Island. The most popular beach here is just on walkable distance.&lt;br \\/&gt;\\r\\nThe resort has it&amp;#39;s own restaurant which serves Indian, Chinese, Continental and other delicious sea foods.&lt;br \\/&gt;\\r\\nWe have a great team who can cater to your needs and make your trip more memorable and exicting.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_71e316e422ad730cea8b329eb26e64311616841401.jpeg\",\"AccoAminitiesMask\":\"1111111010101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Neil Plaza\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18884,\"Title\":\"Enjoy Sound and Light Show at Cellular Jail\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"174828\",\"Title\":\"Arrival at Port Blair Airport and Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174829\",\"Title\":\"Breakfast at Hotel &amp; Visit to Corbyn&#039;s Cove Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174830\",\"Title\":\"Enjoy Sound and Light Show at Cellular Jail \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18884,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174831\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174832\",\"Title\":\"Port Blair - Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#44546a&quot;&gt;Early morning departure by inter-island ferry to Havelock Island (57 kms by sea from Port Blair). Stay here overnight amongst sandy beach and lush green forest in a comfortable beach resort. After lunch, proceed to the Asia&amp;#39;s Best Beach &amp;quot;&lt;strong&gt;Radhanagar Beach&lt;\\/strong&gt; (Beach No.7).&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478923,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174833\",\"Title\":\" Havelock - Elephant beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Morning, Breakfast and proceed for &amp;ldquo;Elephant&amp;nbsp;Beach&amp;rdquo; also known as Coral Beach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephant&amp;nbsp;beach is popular for Snorkelling and other water-based activities such as Jet Ski ride, Banana Ride, Sea Walk.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Usually boat operators provide a 5-minute snorkelling experience complimentary, however the same cannot be guaranteed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You reach Elephant&amp;nbsp;beach via small 11 pax capacity sharing basis boat board at jetty&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You will be allotted a time for boat a day before and you need to get ready accordingly&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Do not forget to carry a water bottle, snacks and changing cloths.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Important: In case Elephant&amp;nbsp;Beach is not operational due to weather conditions OR Covid reasons, we will provide a trip to &amp;ldquo;Kala Patthar Beach&amp;rdquo; OR We can refund the applicable amount.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478923,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174834\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174835\",\"Title\":\"Havelock - Neil Island - Bharatpur Beach \\/ Sitapur Beach \\/ Natural Bridge  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ol&gt;\\r\\n\\t&lt;li&gt;Morning, Breakfast &amp;amp; proceed to jetty for onward journey to Neil Island&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet- Greet by our local representative and transfer to your booked hotel\\/ Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon, proceed to visit the following places:&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Bharatpura Beach:&lt;\\/span&gt;&lt;\\/strong&gt;&amp;nbsp;The white sand and shallow water beach is popular for swim, relaxation, and water activities such as Snorkelling, Boat diving and boat tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Sitapur beach&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Natural Bridge:&lt;\\/span&gt;&lt;\\/strong&gt;&amp;nbsp;Also known as Howrah Bridge the bridge has naturally formed by corals, its best seen during the low tide (**Subject to weather conditions).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing will be based on tide and local representative will brief the final schedule&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Neil Plaza\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18886,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18885,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174836\",\"Title\":\"Neil Island to Port Blair &amp; Direct Transfer to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24395\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":66000,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"11000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11000,\"CEB\":16500,\"COSTDO\":22000,\"COSTSO\":66000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19800,\"COSTTO\":19800}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Nights accommodation in mentioned hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in hotel\\/resort on the fixed menu&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy Sound and Light Show at Cellular Jail&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Corbyn&amp;#39;s Cove Beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Elephant beach with ferry ticket at Havelock Island&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Bharatpur Beach\\/Sitapur Beach\\/Natural Bridge in Neil Island&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry\\/Ferry Tickets at sightseeing places&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;To and Fro Private Ferry Tickets to Neil Island and Havelock&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers at Neil Island and Havelock in a AC Sumo\\/Scorpio\\/Eeco&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Excursions in a general ferry&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"174828\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[174828],\"Remark\":[\"&lt;p&gt;Transfers by AC Sumo&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174829\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[174829],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174830\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[174830],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174831\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[174831],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174832\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[174832],\"Remark\":[\"&lt;p&gt;Transfer by Ferry&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174833\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[174833],\"Remark\":[\"&lt;p&gt;Transfers in a AC Sumo\\/Eeco\\/Scorpio&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174834\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[174834],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174835\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[174835],\"Remark\":[\"&lt;p&gt;Transfer to Neil Island by Ferry &amp; Sightseeing in a AC Sumo\\/Scorpio\\/Eeco&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174836\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[174836],\"Remark\":[\"&lt;p&gt;Transfer by Ferry to Port Blair &amp; By Cab to Airport&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island','','32511,11658,34567',22000,22000,6,'18_1615464369_0.jpg,18_1615464388_0.jpg,18_1615464397_0.jpg,18_1615464404_0.jpg',NULL,NULL,2,'',0,'2023-08-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-08-07 13:53:44','2023-08-07 00:00:00',1,1,'1','1','1','','','',NULL,'andaman-honeymoon-package',NULL,NULL,NULL,0),(19,24480,1,5293,0,0,0,'Honeymoon,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24480,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SOULMATE_SPECIAL_-_DUBAI_PACKAGE_89.jpg\",\"BookingValidUntill\":\"2021-04-10\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;SOULMATE SPECIAL - DUBAI PACKAGE&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;(5 Nights 6&amp;nbsp;Days)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Amenities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guaranteed high floor with sea view rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Candle-light dinner at Al Dawaar Restaurant (Dubai&amp;#39;s Only Revolving Restaurant)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in at 11:00 AM and late check-out till 04:00 PM (subject to availability)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guaranteed room upgrade to Club Rooms with Cocktail Hours and Light Dinner from 06:00 PM - 08:00 PM&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"SOULMATE SPECIAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Romantic\",\"Validity\":{\"From\":\"2022-10-11\",\"To\":\"2021-04-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479607,\"Name\":\"HYATT REGENCY DUBAI - AL KHALEEJ ROAD -DEIRA\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817931,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479607\\/5293_01616768181.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;h1&gt;&Acirc;&nbsp;&lt;\\/h1&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#282828&quot;&gt;An iconic five star hotel in a city that has no equal&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#282828&quot;&gt;Hyatt Regency Dubai is in the heritage heart of the city &acirc;&euro;&ldquo; Deira. Situated on the Corniche, a renowned waterfront promenade, it is within walking distance of the Gold Souk. From a metro station nearby, access the Dubai Museum, Bastakia Quarter, the business district, shopping centers, and more. The Dubai International Airport is 15 minutes away.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479607\\/5293_6d584d12cf3d9c8e4b781fb68071d9ba1616768181.jpg\",\"AccoAminitiesMask\":\"1111111100001111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18419,\"Title\":\"Dubai Marina Dinner Cruise\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"175410\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel. Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479607,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175411\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening is going to be luxuriously romantic on a&amp;nbsp;&lt;strong&gt;Dhow Cruise&lt;\\/strong&gt;. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479607,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175412\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479607,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175413\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479607,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175414\",\"Title\":\"Day Free at Leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After all it&amp;rsquo;s a holiday and it should go in your own way with the flow of your mood right? So, enjoy your breakfast all relaxed in your hotel. The whole day is at your own disposal to spend it your way. You can select an optional tour from different options provided by us like going for an early morning Hot Air Balloon ride&amp;nbsp;or maybe you are not yet satiated of the thirst of shopping? How about a relaxed day at Jumeirah Beach? Any way, spend it your way. Return to hotel by night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479607,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175415\",\"Title\":\"Departure to Dubai Airport &amp; Back to India\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24480\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700},{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700},{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700},{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700},{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700},{\"From\":\"2021-03-12\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":29700,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"29700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29700,\"CEB\":29700,\"COSTDO\":29700,\"COSTSO\":59400,\"ACEB\":29700,\"COSTTO\":29700}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5 nights&amp;rsquo; accommodation in Hyatt Regency Deira&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina dhow cruise with dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert safari with BQQ dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th floor per person non-primetime with transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are valid for minimum of 2 pax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfer will be on sharing basis except Airport Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are inclusive of all local taxes and VAT except Tourism Dirhams.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;ADDITIONAL INCLUSIONS&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Amenities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guaranteed high floor with sea view rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Candle-light dinner at Al Dawaar Restaurant (Dubai&amp;#39;s Only Revolving Restaurant)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in at 11:00 AM and late check-out till 04:00 PM (subject to availability)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guaranteed room upgrade to Club Rooms with Cocktail Hours and Light Dinner from 06:00 PM - 08:00 PM&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"175410\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[175410],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175411\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[175411],\"Remark\":[\"&lt;p&gt;Tour Transfer on Sharing Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175412\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[175412],\"Remark\":[\"&lt;p&gt;Tour Transfers on Sharing Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175413\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[175413],\"Remark\":[\"&lt;p&gt;Tour Transfer&Acirc;&nbsp;on Sharing Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175414\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[175414],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175415\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[175415],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',29700,29700,5,'19_1615738146_0.jpg,19_1615738158_0.jpg,19_1615738158_1.jpg,19_1615738201_0.jpg',NULL,'[{\"day\":1,\"images\":\"dubai.jpg\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2022-10-11 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2023-07-27 17:36:38','2022-10-11 00:00:00',1,1,'0','0','0','','','',NULL,'soulmate-special',NULL,NULL,NULL,0),(21,24534,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24534,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/BASIC_DUBAI_PACKAGE_67.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Welcome to Dubai - where anything is possible.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once a&amp;nbsp;small fishing village in the Arabian Gulf, Dubai shares the spotlight with some of&amp;nbsp;the most cosmopolitan cities in the world. One of the seven emirates that make up the United Arab Emirates, the city is home to more than 200 nationalities and offers an unforgettable experience to all visitors. Whether it is by the banks of the Creek, or at the top of the&amp;nbsp;Burj Khalifa,&amp;nbsp;the world&amp;rsquo;s tallest building, Dubai lives and breathes a sense of possibility and innovation. And with an unparalleled coastline, beautiful desert and magnificent cityscapes, memories are just waiting to be made here.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAJESTIC DUBAI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5897\",\"SupplierName\":\"DESTINATION LAUNCHER LLP\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218152,\"Name\":\"Citymax Bur Dubai Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2557\",\"Long\":\"55.2918\",\"Address\":\"Kuwait Road,Dubai,United Arab Emirates, , , 25030\"},\"Images\":{\"Image\":[{\"ImagId\":4788292,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=hpRBSdtPJNq6P2baMb5ivpL2KTHi6PSmTOQthE+cCQx6FUY8HyMwA8qb3h2yuK9K\"}]},\"CityId\":8219,\"Brief\":\"YEAR OF OPENING : 2013.Just 20 minutes drive from Dubai International Airport, Citymax Hotels Bur Dubai is an ideal choice for those in Dubai hunting for bargains. With Khalid Bin Walid Metro station close by, the thriving Karama shopping and restaurant district is yours to explore. Alternatively, a visit to the world&#039;s largest shopping mall, Dubai Mall, is just a short taxi ride away. The Dubai International Financial Centre, World Trade Centre, Dubai Mall and Burj Khalifa are close by; with Dubai Creek and the city&#039;s Heritage and Diving Village just a stone&#039;s throw away.\\nAll 691 rooms offer contemporary comfort and put you close to the city&#039;s major attractions. The hotel&#039;s dining and entertainment options include Huddle Sports Bar &amp; Grill, Claypot ,the Indian restaurant, Sizzling Wok for Asian cuisine, City Cafe the all day dining restaurant, the 24hr coffee shop, the Aqua pool bar and 24hr Room service\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Queen Room ( Base Category)\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":433622,\"Name\":\"Admiral Plaza Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"25.2601076290171\",\"Long\":\"55.2913503348827\",\"Address\":\"Khalid Bin Walid Road, Al Nadha Street, Bur Dubai, \"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Admiral Plaza Hotel provides modern facilities to match the needs of business and leisure travellers alike. The service, professionalism and experienced management of the Admiral Plaza Hotel is indicative of the reputable pedigree of their hotels around the world, and all provide excellent facilities for the needs of it&#039;&#039;s guest.Admiral Plaza Hotel provides modern facilities to match the needs of business and leisure travellers alike...\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/7\\/9583704c897ce109b9028a4181f198ff-AE44FZ.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Queen Room ( Base Category)\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":5013,\"Name\":\"Arabian Courtyard Hotel and Spa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.262404779153\",\"Long\":\"55.29760658741\",\"Address\":\"Al Fahidi Street P.O.Box 46500\"},\"Images\":{\"Image\":[{\"ImagId\":120945,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/346\\/Arabian_Courtyard-_exterior_A.jpg\"},{\"ImagId\":120946,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/378\\/Executive_Room_A.jpg\"},{\"ImagId\":120947,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/394\\/Grand_Suite_A.jpg\"},{\"ImagId\":120948,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/362\\/Executive_Room_-_Twin_A.jpg\"},{\"ImagId\":120949,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/386\\/Family_Room_A.jpg\"},{\"ImagId\":120950,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/410\\/Heritage_Room_King_A.jpg\"},{\"ImagId\":120951,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/402\\/Heritage_Room_Twin_A.jpg\"},{\"ImagId\":120952,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/315\\/Arabian_Courtyard_-_GRAND_SUITE_BED_ROOM_2_A.jpg\"},{\"ImagId\":120953,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/335\\/Arabian_Courtyard_-_GRAND_SUITE_BED_ROOM_1_A.jpg\"},{\"ImagId\":120954,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/450\\/Swimming_Pool_A.jpg\"},{\"ImagId\":120955,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/466\\/Silk_Route_Chinese_Restaurant-Terrace_Seating_A.jpg\"},{\"ImagId\":120956,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/442\\/Silk_Route_Chinese_Restaurant-interior_A.jpg\"},{\"ImagId\":120957,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/426\\/Sherlock_Holmes-Bar_view_A.jpg\"},{\"ImagId\":120958,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/418\\/Sherlock_Holmes_English_Pub-Smoking_Area_A.jpg\"},{\"ImagId\":120959,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/434\\/Pharaoh_Cafe___Restaurant_A.jpg\"},{\"ImagId\":120960,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/354\\/Arabian_Courtyard-_room_washroom_A.jpg\"},{\"ImagId\":120961,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/370\\/Arabian_Courtyard-room_washroom_2_A.jpg\"},{\"ImagId\":120962,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/209\\/Arabian_Courtyard__-_Bastakiya_A.jpg\"},{\"ImagId\":120963,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/245\\/Arabian_Courtyard_-_WAITING_LOUNGE_A.jpg\"},{\"ImagId\":120964,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/268\\/Arabian_Courtyard_-Ahlan_Lounge_A.jpg\"},{\"ImagId\":120965,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/368\\/Arabian_Courtyard_-BUSINESS_CENTER_A.jpg\"},{\"ImagId\":120966,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/392\\/Arabian_Courtyard-_EXECUTIVE_LOUNGE_AREA_A.jpg\"},{\"ImagId\":120967,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/448\\/Arabian_Courtyard-_Indian_Restaurant_Mumtaz_Mahal_A.jpg\"},{\"ImagId\":120968,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/62\\/328\\/472\\/Arabian_Courtyard_-SERPINOS_PIZZERIA_A.jpg\"},{\"ImagId\":120969,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/458\\/VIP_Lounge_A.jpg\"}]},\"CityId\":8219,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Arabian Courtyard Hotel &amp;amp; Spa, you&amp;apos;ll be centrally located in Dubai, steps from Dubai Museum and Grand Mosque. This 4-star hotel is within close proximity of Textile Souk and Bastakiya.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 173 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Private bathrooms with shower\\/tub combinations feature designer toiletries and bidets. Conveniences include safes and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy facials. You&amp;apos;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and a spa tub. Additional features at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at one of the hotel&amp;apos;s dining establishments, which include 5 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a 24-hour business center, limo\\/town car service, and complimentary newspapers in the lobby. Planning an event in Dubai? This hotel has 2153 square feet (200 square meters) of space consisting of a conference center and meeting rooms. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/199\\/346\\/Arabian_Courtyard-_exterior_A.jpg\",\"AccoAminitiesMask\":\"110110100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Guest Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":490896,\"Name\":\"Grayton Hotel - Dubai - United Arab Emirates\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"25.2529098\",\"Long\":\"55.29656499999999\",\"Address\":\"Dubai - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_490896\\/5293_38e97c736e4478b7099921df90b90f971665391592.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Guest Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":521919,\"Name\":\"JW Marriott Marquis Hotel Dubai - Sheikh Zayed Road - Dubai - United Arab Emirates\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.1854005\",\"Long\":\"55.2580876\",\"Address\":\"Sheikh Zayed Rd - Business Bay - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":3160,\"Title\":\"Abu Dhabi city tour with Ferrari world\",\"Description\":\"After breakfast at hotel get ready  08:30 Am for Abu Dhabi City Tour: Drive around Abu Dhabi City on a tour Cab, and pay a visit to the Grand Mosque while you&amp;#039;re in the city. \\r\\n\\r\\nFerrari World: Visit the famous Ferrari World at Yas Island, a one-of-its-kind Ferrari theme park! Experience exciting rides, drives, games and shows for a true F1 experience.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4851552,\"Long\":54.6075651,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Abu_Dhabi_city_tour_with_Ferra_8219_1519040949.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"175679\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;On Arrival, Get your Private transfer from Airport to Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day Free at leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":5013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"},{\"IsIncluded\":false,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":521919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175682\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening is going to be luxuriously romantic on a&amp;nbsp;&lt;strong&gt;Dhow Cruise&lt;\\/strong&gt;. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":5013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"},{\"IsIncluded\":false,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":521919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175685\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor in Dubai Mall + Fountain Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":5013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"},{\"IsIncluded\":false,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":521919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175688\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":5013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"},{\"IsIncluded\":false,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":521919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175691\",\"Title\":\"ABU DHABI CITY TOUR WITH FERRARI WORLD\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Wake up in the morning and have a delicious breakfast at the hotel. Get ready to witness some of the marvelous and surreal architectural structures in this ultra-modern city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Abu Dhabi&lt;\\/strong&gt;, the capital of the UAE, is a destination that satisfies every genre of traveler. This Abu Dhabi City Tour with Ferrari World package is a perfect amalgamation of cultural heritage and modern development where you witness the striking beauty of Sheikh Zayed Grand Mosque and lose yourself in the thrill of the Ferrari World.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Abu Dhabi city tour and &lt;strong&gt;Ferrari World&lt;\\/strong&gt; tour starts with a visit to the majestic Islamic architectural beauty, Sheikh Zayed Grand Mosque. Our experienced tour guide will share insights about the history, culture, and development of Abu Dhabi from a mere fishing village to one of the most progressive and modernized settlements. Continue on to the Emirates Palace built with 114 magnificent domes. Head over to the Heritage Village, Abu Dhabi for great cultural insights into the lives of the Bedouins before driving pass the impressive Al Corniche. The second half of the day tour leads you to the largest indoor theme park in the world- the Ferrari World. Experience adrenaline rushing through your veins as you ride some of the fastest thrill rides!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel in Dubai&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218152,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Room ( Base Category)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":5013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"},{\"IsIncluded\":false,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":521919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3160,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175694\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24534\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46310.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44766,\"priceDoubleOcc\":\"46310.00\",\"priceSingleOcc\":129668,\"priceExtraBed\":\"34732.50\",\"priceWithoutBed\":\"23155.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23155,\"CEB\":34732.5,\"COSTDO\":46310,\"COSTSO\":129668,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41679,\"COSTTO\":41679}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24535\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"53020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":51253,\"priceDoubleOcc\":\"53020.00\",\"priceSingleOcc\":148456,\"priceExtraBed\":\"39765.00\",\"priceWithoutBed\":\"26510.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":53020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26510,\"CEB\":39765,\"COSTDO\":53020,\"COSTSO\":148456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47718,\"COSTTO\":47718}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24536\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"75240.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":72732,\"priceDoubleOcc\":\"75240.00\",\"priceSingleOcc\":210276,\"priceExtraBed\":\"56430.00\",\"priceWithoutBed\":\"37620.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37620,\"CEB\":56430,\"COSTDO\":75240,\"COSTSO\":210276,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67716,\"COSTTO\":67716}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking (We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(front page, address page or any observation page if any) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or WhatsApp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Vouchers&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is Tentative&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp; No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;In case of 2 to 6 Travelers&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of Group Bookings (i.e. 6 or more Travelers), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing with breakfast basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa + Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport transfers on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive of all Local Taxes and Vat except Tourism Dirhams Fee.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours, the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience:&lt;\\/strong&gt; We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour:&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault, we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience:&lt;\\/strong&gt;&amp;nbsp;Your time is valuable and you should not have to spend it searching for the right vacation. A travel agent can do that for you. They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships:&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp; trip already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money:&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships or at least match the price you find online while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself will not include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value:&amp;nbsp;&lt;\\/strong&gt;There are a lot of value additions that consumers do not even know about that can be added by a travel company. Even wonder why the couple in the cabin next to yours got champagne and you did not? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"175679\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[175679],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175682\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[175682],\"Remark\":[\"&lt;p&gt;ALL SIGHTSEEING ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175685\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[175685],\"Remark\":[\"&lt;p&gt;ALL SIGHTSEEING ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175688\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[175688],\"Remark\":[\"&lt;p&gt;ALL SIGHTSEEING ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175691\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[175691],\"Remark\":[\"&lt;p&gt;ALL SIGHTSEEING ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175694\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[175694],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',46310,75240,5,'21_1616153968_0.jpg,21_1616154936_0.jpg,21_1616154936_1.jpg,21_1616154936_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:48:52','2023-09-07 00:00:00',1,1,'1','1','0','','','',NULL,'majestic-dubai',NULL,NULL,NULL,0),(22,2437,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"3120\",\"Title\":\"Burj Khalifa\",\"Details\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"Duration\":\"\",\"Icon\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg\",\"ThumnailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg\",\"DetailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg\",\"InvnItemSysId\":\"2437\",\"From\":\"2023-09-12\",\"To\":\"2023-11-30\",\"Currency\":1,\"SupplierSysId\":\"5640\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"2500.00\",\"ChildEntryFee\":\"2200.00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[],\"PvtCost\":[{\"PaxCount\":1,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"2500.00\",\"ChildCost\":\"2500.00\",\"AdultMarkup\":\"100.00\",\"ChildMarkup\":\"100.00\",\"NetAdultCost\":\"2600.00\",\"NetChildCost\":\"2600.00\"},{\"PaxCount\":1,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"2500.00\",\"ChildCost\":\"2500.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"2550.00\",\"NetChildCost\":\"2550.00\"}],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"\",\"TimeSlots\":\"[[\\\"09:00 am\\\",\\\"10:00 pm\\\"]]                                                                           \",\"PickUpLocation\":\"\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[\\\"Camera and charger\\\"]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"80\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"55.2744\",\"latitude\":\"25.1972\",\"Address\":\"1 Sheikh Mohammed bin Rashid Blvd - Dubai - United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'22_1694583669_0.jpg',NULL,NULL,0,'',0,'2023-09-14 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 13:17:18','2023-09-14 00:00:00',1,1,'0','0','0','','','',NULL,'',NULL,NULL,NULL,0),(23,2428,3,5293,0,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"2860\",\"Title\":\"Local market in Delhi\",\"Details\":\"The vibrant and exotic atmosphere of Delhi markets can make shopping lots of fun. In fact, Delhi has the best markets in India, with handicrafts from all over the country.\",\"Duration\":\"60\",\"Icon\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/36_1515996535.gif\",\"ThumnailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/36_1515996535.gif\",\"DetailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/36_1515996535.gif\",\"InvnItemSysId\":\"2428\",\"From\":\"2021-01-04\",\"To\":\"2021-08-31\",\"Currency\":1,\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\".00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"1\":\"Breakfast\"},\"SICCost\":[],\"PvtCost\":[{\"PaxCount\":1,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"5000.00\",\"ChildCost\":\"4500.00\",\"AdultMarkup\":\"100.00\",\"ChildMarkup\":\"100.00\",\"NetAdultCost\":\"5100.00\",\"NetChildCost\":\"4600.00\"},{\"PaxCount\":1,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"5000.00\",\"ChildCost\":\"4500.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"5050.00\",\"NetChildCost\":\"4550.00\"}],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"60\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"70\",\"StartAgeYr\":\"8\",\"ContSysId\":\"101\",\"CitySysId\":\"7701\",\"longitude\":\"77.216721\",\"latitude\":\"28.6448\",\"Address\":\"Delhi\"}','Delhi','Delhi,India','','7701',0,0,0,'36_1515996535.gif',NULL,NULL,0,'',0,'2021-03-18 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'India','101','2023-09-12 16:03:49','2021-03-18 00:00:00',1,1,'0','0','0','','','',NULL,'',NULL,NULL,NULL,0),(25,22909,1,5293,0,0,0,'Adventure,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22909,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/FAMILY_FUN_PACKAGE_80.jpg\",\"BookingValidUntill\":\"2021-10-11\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;h3&gt;&lt;strong&gt;&lt;span class=&quot;marker&quot;&gt;FAMILY FUN PACKAGE&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;small&gt;&lt;big&gt;KIDS GO FREE \\/\\/ 5 Nights&amp;nbsp;6 Days&amp;nbsp;&lt;\\/big&gt;&lt;\\/small&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;1 Child below 12yrs old free ( Sharing on parents bed )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 Nights stay in Novotel Bur Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night stay at Lapita Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return PVT Dubai Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PVT Interhotel Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th Floor&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Aquarium + Underwater Zoo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dolphin &amp;amp; Seal Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Glow Garden + Dino Park&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Access to Dubai Parks while staying in Lapita ( Subject to Operational Status of Parks )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"FAMILY FUN PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Adventure,Family,Leisure\",\"Validity\":{\"From\":\"2022-10-11\",\"To\":\"2021-10-11\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476199,\"Name\":\"Novotel Bur Dubai Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.233329\",\"Long\":\"55.321046\",\"Address\":\"Umm Hurair 2 Dubai Healthcare City Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817927,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476199\\/5293_01616752007.jpg\"},{\"ImagId\":4817928,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476199\\/5293_01616752008.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;This 4-star hotel near Dubai Airport is close to&lt;strong&gt; Dubai Healthcare City metro station&lt;\\/strong&gt;, giving easy access to the &lt;strong&gt;Dubai Frame, Dubai Mall and Burj Khalifa.&lt;\\/strong&gt; Novotel Bur Dubai are conceived with your well-being in mind. Elegant, contemporary decor and cutting-edge amenities come together to create a peaceful, welcoming retreat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Amid hospitals and clinics in Dubai Healthcare City, this polished hotel is 9 km from shopping at &lt;strong&gt;The Dubai Mall, &lt;\\/strong&gt;and 7 km from&lt;strong&gt; Dubai International Airport&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Accommodations range from refined rooms with sitting areas to suites that have living\\/dining rooms and whirlpool baths. All have Wi-Fi access, flat-screen TVs and minibars, as well as tea and coffeemaking facilities. Room service is offered. Kids age 15 and under stay at no extra cost.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Amenities include a restaurant\\/bar, a fitness centre, and a heated rooftop pool with a bar. Parking, breakfast (surcharge) and massages are available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476199\\/5293_a307e98be4d2c44d081f692ef47e2cf51616752008.png\",\"AccoAminitiesMask\":\"1111111110101001010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479711,\"Name\":\"Lapita Dubai Parks And Resorts Autograph Collection\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Dubai Parks &amp; Resorts, Sheikh Zayed Road, P.O.Box: 334221, Dubai   United Arab Emirates\"},\"Images\":{\"Image\":[{\"ImagId\":4817923,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_01616684528.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&amp;#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND&acirc;&bdquo;&cent; Dubai, LEGOLAND&Acirc;&reg; Water Park, LEGOLAND&Acirc;&reg; Dubai, MOTIONGATE&acirc;&bdquo;&cent; Dubai and BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai are just a short walk away. Each of our accommodations showcases careful attention to detail, with artful styling and perks such as complimentary Wi-Fi, pillowtop beds, private balconies or terraces and marble bathrooms. Reserve one of our three villas to enjoy extra space, a plunge pool, a garden and picturesque views. Elsewhere at the hotel, we invite you to relax at the on-site spa, sample a flavorful meal from one of our several restaurants, sip a drink at our pool bar or take a dip in one of the temperature-controlled pools. Younger guests can have fun at the Kids and Teens Club and at the lazy river. For those planning events, our 26,296 square feet of flexible space is sure to inspire.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_1d1e7fe9b738f28895305358b46437301616684528.jpg\",\"AccoAminitiesMask\":\"1111011000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"ROOM WITH PARK ACCESS\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18426,\"Title\":\"Dubai Aquarium &amp; Underwater Zoo\",\"Description\":\"&lt;p&gt;Dubai Aquarium &amp; Underwater Zoo is located at The Dubai Mall, the largest mall in the world. Rising to the third floor of The Dubai Mall, the aquarium is home to 140 species of sea life and offers many incredible ways to experience the underwater world. Don&acirc;&euro;&trade;t miss the giant 10 million-litre tank at the Dubai Aquarium and Underwater Zoo, which contains more than 33,000 aquatic animals and the largest collection of sand tiger sharks including the 40 year old giant crocodile weighing 750 kg and measuring over 5m in length. Stroll through a 48m tunnel, with the aquarium enveloping you from overhead and around. It&acirc;&euro;&trade;s a complete fish-eye view, with sand tiger sharks and stingrays swimming overhead.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18428,\"Title\":\"Dubai Dolphinarium\",\"Description\":\"&lt;p&gt;Dubai Dolphinarium is a fully air-conditioned indoor space that is home to bottle-nose dolphins and fur seals that are the stars of the show here. A highlight at the Dolphinarium is the Dolphin and Seal Show. These fascinating creatures dance, juggle, play ball, jump through hoops and even paint! Watch in astonishment as these adorable mammals showcase their talent.&lt;\\/p&gt;&lt;p&gt;At Dolphin Planet, you will have multiple opportunities to get close to the dolphins, swim and dance with them or even feed them a meal. Learn all about these affectionate mammals while you get multiple kisses and hugs from them.&lt;\\/p&gt;&lt;p&gt;Spread over 5,000 square meters within Bur Dubai&acirc;&euro;&trade;s Creek Park, Dolphinarium isn&acirc;&euro;&trade;t just limited to these mammals of the sea. You can check out birds from all around the world. See a variety of different species, including cockatoos from Australia and macaws from South America fly overhead at the Exotic Bird Show. Get a picture with a Steller&acirc;&euro;&trade;s Sea Eagle and also feed the birds. Other attractions include a trampoline room, a mirror maze, and a 5D and 7D theatre.&lt;\\/p&gt;&lt;p&gt;Dubai Dolphinarium combines learning, fun and once in a lifetime experiences making it a great place to visit for people of all age groups.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18538,\"Title\":\"Glow Garden & Dino Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18435,\"Title\":\"Dubai Parks &amp; Resorts\",\"Description\":\"&lt;p&gt;Dubai Parks and Resorts is home to 3 world-class theme parks and 1 water park, a uniquely themed dining and retail destination and a Polynesian themed family resort. With over 100 rides, shows and attractions, Dubai Parks and Resorts have something to offer every member of the family.&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;MOTIONGATE&acirc;&bdquo;&cent; Dubai: MOTIONGATE&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the largest Hollywood-Inspired theme park in the region. Shoot at ghosts with the Ghostbusters, meet the Smurfs, hang with Shrek or join the Zoosters of Madagascar on an adrenaline-fueled escape! You can even learn Kung Fu with Po! With 27 immersive rides and attractions, exciting live entertainment and themed restaurants, MOTIONGATE&acirc;&bdquo;&cent; Dubai brings some of Hollywood&acirc;&euro;&trade;s most beloved films to life.&lt;\\/p&gt;&lt;p&gt;BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai: BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the world&acirc;&euro;&trade;s first theme park with rides, spellbinding live shows and dramatic attractions based on Bollywood blockbusters. This captivating theme park features rides where you will be immersed in Mumbai&acirc;&euro;&trade;s famous movie industry chase Shahrukh Khan as the mafia boss Don!, fly with Hritihik in Krrish, and watch live performances including a stunt show with Salman Khan&acirc;&euro;&trade;s Chulbul Pandey.&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Dubai: Explore a world where the LEGO&Acirc;&reg; brick comes to life at LEGOLAND&Acirc;&reg; Dubai. The ultimate Theme Park for families with kids aged 2-12 at Dubai Parks and Resorts. Set your imagination racing with over 40 LEGO themed rides, shows and interactive building experiences together with over 15,000 LEGO models. It&acirc;&euro;&trade;s where awesome awaits!&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Water Park: Splash into a world of LEGO&Acirc;&reg; adventures at LEGOLAND&Acirc;&reg; Water Park, the Middle East&acirc;&euro;&trade;s only Water&lt;\\/p&gt;&lt;p&gt;Park designed for families with kids aged 2-12 at Dubai Parks and Resorts. Let your creativity and imagination flow with over 20 LEGO themed water slides and attractions, including the LEGO Wave Pool and DUPLO&Acirc;&reg; toddler play area. It&acirc;&euro;&trade;s where awesome awaits!&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;RIVERLAND&acirc;&bdquo;&cent; Dubai: Riverland&acirc;&bdquo;&cent; Dubai is a uniquely themed retail and dining destination that is free for everyone to enjoy and the gateway into Dubai Parks and Resorts. It is the perfect place for families and friends to come together to meet, relax and recharge as well as enjoy an amazing selection of over 50 dining and retail stores.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"163867\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel. Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163868\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor +  Dubai Aquarium &amp; Underwater Zoo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18426,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163869\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163870\",\"Title\":\"Dolphin &amp; Seal Show + Glow Graden &amp; Dino Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18428,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18538,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163871\",\"Title\":\"Inter-hotel Transfer to Lapita Resorts + Enjoy Dubai Parks \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479711,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"ROOM WITH PARK ACCESS\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18435,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163872\",\"Title\":\"Departure Transfer to Dubai Airport \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22909\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36217.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-03-18\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5},{\"From\":\"2021-06-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"36217.50\",\"priceSingleOcc\":72435,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"36217.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36217.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36217.5,\"CEB\":36217.5,\"COSTDO\":36217.5,\"COSTSO\":72435,\"ACEB\":36217.5,\"COSTTO\":36217.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Above Rate is valid&amp;nbsp;for a minimum of 2 pax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers will be on sharing basis except mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are inclusive of all Local Taxes &amp;amp; Vat except Tourism Dirhams&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms &amp;amp; Rates are subject to availability at the time of actual booking&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The above rates are subject to change without prior notice.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;1 Child below 12yrs old free ( Sharing on parents bed )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 Nights stay in Novotel Bur Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night stay at Lapita Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return PVT Dubai Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PVT Interhotel Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th Floor&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Aquarium + Underwater Zoo&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dolphin &amp;amp; Seal Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Glow Garden + Dino Park&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Access to Dubai Parks while staying in Lapita ( Subject to Operational Status of Parks )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 96 hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"163867\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[163867],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163868\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[163868],\"Remark\":[\"&lt;p&gt;All Tours on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163869\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[163869],\"Remark\":[\"&lt;p&gt;Tour on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163870\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[163870],\"Remark\":[\"&lt;p&gt;All Tours on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163871\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[163871],\"Remark\":[\"&lt;p&gt;Interhotel Transfer on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163872\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[163872],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',36218,36218,5,'25_1616156636_0.jpg,25_1616156647_0.jpg,25_1616156657_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2022-10-11 00:00:00','2021-10-11 00:00:00','2021-10-11 00:00:00',3,'United Arab Emirates','228','2023-07-27 17:36:41','2022-10-11 00:00:00',1,1,'0','0','0','','','',NULL,'family-fun-package',NULL,NULL,NULL,0),(26,24614,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Offbeat',NULL,1,1,0,'{\"package\":{\"TPId\":24614,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_SIGNATURE_BOAT_TOUR_PACKAGE_54.jpg\",\"BookingValidUntill\":\"2021-04-10\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;SIGNATURE BOAT TOUR PACKAGE&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;5 Nights 6 Days&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights Stay at Lemon Tree Hotel Jumeirah&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Night Stay at Lapita Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hero Odysea Signature Boat (90 Minutes Self Drive]&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flying Cup&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Many other Inclusions&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"SIGNATURE BOAT TOUR PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Offbeat\",\"Validity\":{\"From\":\"2022-10-11\",\"To\":\"2021-04-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479648,\"Name\":\"Lemon Tree Hotel Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Al Wasl Road Umm Al Sheif Jumeirah\"},\"Images\":{\"Image\":[{\"ImagId\":4817911,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479648\\/5293_01616583127.png\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;The perfect decision while booking hotels in Dubai&lt;br \\/&gt;\\r\\nLocated on Al Wasl Road, and less than a kilometre from Jumeirah Open Beach and Sheikh Zayed Road, &lt;strong&gt;Lemon Tree Hotel, Dubai&lt;\\/strong&gt; is strategically situated in immediate proximity to many famous tourist destinations, and is equidistant from both Business Bay and Jumeirah Lake Towers (JLT), the two major business districts of Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A short twenty-minute drive from &lt;strong&gt;Dubai International Airport&lt;\\/strong&gt;, this property is one of&lt;strong&gt; the hotels near Dubai Internet City, Dubai Media City, Barsha Heights, and Knowledge Park,&lt;\\/strong&gt; as well as key tourist attractions like &lt;strong&gt;the Burj Al Arab and Mall of Emirates, Dubai&lt;\\/strong&gt;. This hotel is ideal for business and leisure travellers to the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Important city landmarks like Palm Jumeirah, Kite Beach, Dubai Marina, The Walk at JBR and Souk Madinat Jumeirah, are all easily accessible from the hotel. Travellers to the city can also explore the iconic &lt;strong&gt;Burj Khalifa&lt;\\/strong&gt;, the tallest building in the world, as well as the neighbouring&lt;strong&gt; Dubai Mall&lt;\\/strong&gt;, Dubai&acirc;&euro;&trade;s largest shopping mall, fashionable shopping hubs, inviting eateries and trendy nightlife destinations across Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is also well connected by road and air to the other Emirates, including &lt;strong&gt;Abu Dhabi, Ajman, Fujairah, Ras Al Khaimah, Sharjah and Umm Al Quwain&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479648\\/5293_fe6728e03b6a7a3eaa254e63fb9172d71616583127.jpg\",\"AccoAminitiesMask\":\"1111101000100101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479711,\"Name\":\"Lapita Dubai Parks And Resorts Autograph Collection\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Dubai Parks &amp; Resorts, Sheikh Zayed Road, P.O.Box: 334221, Dubai   United Arab Emirates\"},\"Images\":{\"Image\":[{\"ImagId\":4817923,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_01616684528.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&amp;#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND&acirc;&bdquo;&cent; Dubai, LEGOLAND&Acirc;&reg; Water Park, LEGOLAND&Acirc;&reg; Dubai, MOTIONGATE&acirc;&bdquo;&cent; Dubai and BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai are just a short walk away. Each of our accommodations showcases careful attention to detail, with artful styling and perks such as complimentary Wi-Fi, pillowtop beds, private balconies or terraces and marble bathrooms. Reserve one of our three villas to enjoy extra space, a plunge pool, a garden and picturesque views. Elsewhere at the hotel, we invite you to relax at the on-site spa, sample a flavorful meal from one of our several restaurants, sip a drink at our pool bar or take a dip in one of the temperature-controlled pools. Younger guests can have fun at the Kids and Teens Club and at the lazy river. For those planning events, our 26,296 square feet of flexible space is sure to inspire.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_1d1e7fe9b738f28895305358b46437301616684528.jpg\",\"AccoAminitiesMask\":\"1111011000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"ROOM WITH PARK ACCESS\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18444,\"Title\":\"Flying Cup Dubai\",\"Description\":\"&lt;p&gt;Flying Cup - an uplifting perspective located on The Beach, JBR&lt;\\/p&gt;&lt;p&gt;Flying Cup is an innovative food and entertainment concept that combines three experiences in one.&lt;\\/p&gt;&lt;p&gt;&acirc;&euro;&oelig;Grab a drink. Enjoy the spectacular views, and don&acirc;&euro;&trade;t forget the selfie!&acirc;&euro;\\u009d&lt;\\/p&gt;&lt;p&gt;Flying Cup is a ride designed to take passengers up to a height of a 12 story building and give them a 360&Acirc;&deg;panoramic view of their surroundings. Passengers travel with their feet dangling freely in the air for a unique sensation of freedom and excitement.&lt;\\/p&gt;&lt;p&gt;Flying Cup aims to give its passengers an &acirc;&euro;&tilde;uplifting perspective&acirc;&euro;&trade;. Every aspect of the ride seeks to enhance the passengers experience through a carefully selected location, advanced safety measures and handpicked refreshments.&lt;\\/p&gt;&lt;p&gt;Flying Cup can be enjoyed by individuals, couples and families alike. It is suitable for all ages (children from 4 year old are allowed on board) and is a must have &acirc;&euro;&oelig;selfie&acirc;&euro;\\u009d destination.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18435,\"Title\":\"Dubai Parks &amp; Resorts\",\"Description\":\"&lt;p&gt;Dubai Parks and Resorts is home to 3 world-class theme parks and 1 water park, a uniquely themed dining and retail destination and a Polynesian themed family resort. With over 100 rides, shows and attractions, Dubai Parks and Resorts have something to offer every member of the family.&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;MOTIONGATE&acirc;&bdquo;&cent; Dubai: MOTIONGATE&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the largest Hollywood-Inspired theme park in the region. Shoot at ghosts with the Ghostbusters, meet the Smurfs, hang with Shrek or join the Zoosters of Madagascar on an adrenaline-fueled escape! You can even learn Kung Fu with Po! With 27 immersive rides and attractions, exciting live entertainment and themed restaurants, MOTIONGATE&acirc;&bdquo;&cent; Dubai brings some of Hollywood&acirc;&euro;&trade;s most beloved films to life.&lt;\\/p&gt;&lt;p&gt;BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai: BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the world&acirc;&euro;&trade;s first theme park with rides, spellbinding live shows and dramatic attractions based on Bollywood blockbusters. This captivating theme park features rides where you will be immersed in Mumbai&acirc;&euro;&trade;s famous movie industry chase Shahrukh Khan as the mafia boss Don!, fly with Hritihik in Krrish, and watch live performances including a stunt show with Salman Khan&acirc;&euro;&trade;s Chulbul Pandey.&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Dubai: Explore a world where the LEGO&Acirc;&reg; brick comes to life at LEGOLAND&Acirc;&reg; Dubai. The ultimate Theme Park for families with kids aged 2-12 at Dubai Parks and Resorts. Set your imagination racing with over 40 LEGO themed rides, shows and interactive building experiences together with over 15,000 LEGO models. It&acirc;&euro;&trade;s where awesome awaits!&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Water Park: Splash into a world of LEGO&Acirc;&reg; adventures at LEGOLAND&Acirc;&reg; Water Park, the Middle East&acirc;&euro;&trade;s only Water&lt;\\/p&gt;&lt;p&gt;Park designed for families with kids aged 2-12 at Dubai Parks and Resorts. Let your creativity and imagination flow with over 20 LEGO themed water slides and attractions, including the LEGO Wave Pool and DUPLO&Acirc;&reg; toddler play area. It&acirc;&euro;&trade;s where awesome awaits!&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;RIVERLAND&acirc;&bdquo;&cent; Dubai: Riverland&acirc;&bdquo;&cent; Dubai is a uniquely themed retail and dining destination that is free for everyone to enjoy and the gateway into Dubai Parks and Resorts. It is the perfect place for families and friends to come together to meet, relax and recharge as well as enjoy an amazing selection of over 50 dining and retail stores.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"176243\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel. Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176244\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176245\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176246\",\"Title\":\"Dubai Signature Hero Odysea Boat Tour + Flying Cup\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Dubai Signature Hero Odysea Boat Tour&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drive your own boat and conquer the Arabian Gulf while exploring Dubai&amp;rsquo;s iconic coastline on a 90-minute guided adventure. This boat tour was designed for the adventurous type who prefer to sightsee Dubai&amp;rsquo;s iconic coastline in an exhilarating way. Reach speeds of 50km\\/h on this fun and safe boating adventure. Stop at famous landmarks like the manmade wonder of Palm Jumeirah, the distinctive Atlantis, The Palm and the world-famous Burj Al Arab. This 90-minute guided tour gives you the opportunity to take control of your travel experience and drive your own boat. Stop along the way and get some perfect snaps of Dubai&amp;rsquo;s most famous landmarks. As fun as a jetski, but safer, the untippable HERO OdySea boats are for the whole family. Become a hero, conquer the ocean and be the master of your own vessel!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Flying Cup&lt;\\/strong&gt; is an innovative food and entertainment concept that combines three experiences in one.&amp;nbsp;A 20-minute, slowly spinning ride rising up to 40m, with views over skyscrapers &amp;amp; the Persian Gulf.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;&lt;small&gt;FANTASTIC 360 PANORAMIC VIEWS&lt;\\/small&gt;&lt;\\/big&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;&lt;small&gt;BIRD-LIKE SENSATION OF FREEDOM&lt;\\/small&gt;&lt;\\/big&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;&lt;small&gt;YOUR FAVORITE DRINK&lt;\\/small&gt;&lt;\\/big&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479648,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176247\",\"Title\":\"Inter-hotel Transfer to Lapita Resorts \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning enjoy breakfast in Lemon Tree Dubai and transfer to Lapita Resorts.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary Access To All Dubai Parks During Stay At Lapita.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479711,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"ROOM WITH PARK ACCESS\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18435,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176248\",\"Title\":\"Departure to Dubai Airport \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24614\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40260.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260},{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260},{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260},{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260},{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260},{\"From\":\"2021-03-19\",\"To\":\"2021-04-10\",\"Currency\":1,\"priceTripleOcc\":40260,\"priceDoubleOcc\":\"40260.00\",\"priceSingleOcc\":80520,\"priceExtraBed\":\"40260.00\",\"priceWithoutBed\":\"40260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40260,\"CEB\":40260,\"COSTDO\":40260,\"COSTSO\":80520,\"ACEB\":40260,\"COSTTO\":40260}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;h3&gt;&lt;ins&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/ins&gt;&lt;\\/h3&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights Stay at Lemon Tree Hotel Jumeriah&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Night Stay at Lapita Resorts&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Return Dubai Airport Transfers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Inter Hotel Transfer &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hero Odysea &amp;nbsp;Signature Boat (90 Minutes Self Drive] &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Dubai City Tour + Burj Khalifa 124th Floor Non-Prime Time&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sharing Desert Safari &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flying Cup &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Access To All Dubai Parks During Stay At Lapita &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Package valid for a minimum of 2 pax.&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers will be as mentioned.&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Package&amp;nbsp;inclusive of all local taxes and VAT, except Tourism Dirham Fee&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"176243\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176243],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176244\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176244],\"Remark\":[\"&lt;p&gt;Tour on Sharing Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176245\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176245],\"Remark\":[\"&lt;p&gt;Tour Transfers on PVT&Acirc;&nbsp;Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176246\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176246],\"Remark\":[\"&lt;p&gt;Tour Transfers on Sharing Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176247\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[176247],\"Remark\":[\"&lt;p&gt;Interhotel Transfer on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176248\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176248],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',40260,40260,5,'26_1616157938_0.jpg,26_1616157950_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2022-10-11 00:00:00','2021-04-10 00:00:00','2021-04-10 00:00:00',3,'United Arab Emirates','228','2023-07-27 17:35:31','2022-10-11 00:00:00',1,1,'0','0','0','','','',NULL,'signature-boat-tour-package',NULL,NULL,NULL,0),(27,24730,1,5293,0,0,0,'Honeymoon,Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24730,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CENTARA_RAS_FUSHI_RESORT_-_SINGLE_STAY_79.jpg\",\"BookingValidUntill\":\"2021-12-19\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights Stay in Ocean Front Beach Villa&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (&amp;nbsp;Breakfast \\/ Lunch \\/ Dinner&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on Land Package Price Included ( Guest can claim while filing ITR )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"CENTARA RAS FUSHI RESORT - SINGLE STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Leisure\",\"Validity\":{\"From\":\"2021-09-03\",\"To\":\"2021-12-19\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479617,\"Name\":\"Centara Ras Fushi Resort & Spa Maldives\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"North Male&#039; Atoll, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4817912,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479617\\/5293_01616585615.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Centara Ras Fushi Resort &amp; Spa Maldives&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dive into absolute serenity. Less than 20 minutes away from Velana International Airport by speedboat, set on a pristine island blessed with tropical beauty in North Mal&eacute; Atoll, Centara Ras Fushi Resort &amp; Spa Maldives is an adults-only retreat that is ideal for couples and honeymooners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Light and airy villas with wooden flooring and natural fabrics provide sensational views of the Indian Ocean and offer the choice of beachside or overwater accommodation. Pure white sand and a sparkling blue lagoon make this a perfect playground for beach games, snorkelling and water sports, while the magical underwater world of some of the top dive sites in the Maldives are reached within less than half an hour by dhoni.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Exciting dining with a choice of dining programmes, along with a sublime spa, make this intimately scaled resort a haven for those seeking a tropical escape.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As an adults-only resort, guests must be aged 12 years and above.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479617\\/5293_df472f1571fa8d3037bc66fec6e8af0d1616585907.jpg\",\"AccoAminitiesMask\":\"1111101010001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tOcean Front Beach Villa\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177018\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>Live in comfort and tranquillity, and take in the great views from your oceanfront villa.<\\/p>\\r\\n\\r\\n<p>Located on powdery sands, the azure lagoon at your doorstep, Ocean Front Beach Villas feature living areas of 45 square metres including a sun lounging area looking out across the lagoon, a bedroom with a choice of either a plush king-size bed or twin beds, and a bathroom with shower.&nbsp;<\\/p>\\r\\n\\r\\n<p>In-room amenities include complimentary wireless internet access, flat-screen TV with DVD player, individually controlled air-conditioning, ceiling fan, minibar, tea and coffee making facilities, in-room safe, hairdryer, and telephone.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177019\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177020\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177021\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177022\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Ocean Front Beach Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24730\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"56560.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":56560,\"priceDoubleOcc\":\"56560.00\",\"priceSingleOcc\":113120,\"priceExtraBed\":\"56560.00\",\"priceWithoutBed\":\"56560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"56560.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":74760,\"priceDoubleOcc\":\"74760.00\",\"priceSingleOcc\":149520,\"priceExtraBed\":\"74760.00\",\"priceWithoutBed\":\"74760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights Stay in Ocean Front Beach Villa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling Equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on Land package Price (Guest can claim for the same while filing ITR)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177018\":[{\"Sequence\":[0],\"TPInvnSysId\":[177018],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177019\":[{\"Sequence\":[0],\"TPInvnSysId\":[177019],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177020\":[{\"Sequence\":[0],\"TPInvnSysId\":[177020],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177021\":[{\"Sequence\":[0],\"TPInvnSysId\":[177021],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177022\":[{\"Sequence\":[0],\"TPInvnSysId\":[177022],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','Maldives','Maldives,Indian Subcontinent','','16505',56560,74760,4,'27_1616576079_0.jpg,27_1616576089_0.jpg,27_1616576089_1.jpg,27_1616576089_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2021-09-03 00:00:00','2021-12-19 00:00:00','2021-12-19 00:00:00',3,'Maldives','133','2022-01-06 17:09:29','2021-09-03 00:00:00',1,1,'0','0','0','','','',NULL,'centara-ras-fushi-resort-single-stay',NULL,NULL,NULL,0),(28,24735,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24735,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/AFFORDABLE_DUBAI_PACKAGE_32.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The name Dubai alone conjures images of stunning architecture, buzzing malls, soaring business structures, and enchanting beaches. Dubai, the most visited city in the United Arab Emirates, has become one of the top tourist attractions on the planet. This glamorous metropolis offers a wealth of choices in every area, including entertainment, employment, and lodging, dining, and shopping. Additionally, Dubai has a fascinating historical past.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"AFFORDABLE DUBAI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5897\",\"SupplierName\":\"DESTINATION LAUNCHER LLP\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218072,\"Name\":\"Citymax Bur Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\", , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788212,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"\"}]},\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":490896,\"Name\":\"Grayton Hotel - Dubai - United Arab Emirates\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2529098\",\"Long\":\"55.29656499999999\",\"Address\":\"Dubai - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_490896\\/5293_38e97c736e4478b7099921df90b90f971665391592.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5897,\"SupplierName\":\"DESTINATION LAUNCHER LLP\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177040\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;On Arrival, Get transferred from Airport to Hotel. Evening at leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177043\",\"Title\":\" Desert Safari \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177046\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor in Dubai Mall \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177049\",\"Title\":\"Dhow Cruise in the Evening \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening is going to be luxuriously romantic on a&amp;nbsp;&lt;strong&gt;Dhow Cruise&lt;\\/strong&gt;. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":490896,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177052\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24735\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":36685,\"priceDoubleOcc\":\"37950.00\",\"priceSingleOcc\":106260,\"priceExtraBed\":\"28462.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":28462.5,\"COSTDO\":37950,\"COSTSO\":106260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34155,\"COSTTO\":34155}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24736\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":43065,\"priceDoubleOcc\":\"44550.00\",\"priceSingleOcc\":124740,\"priceExtraBed\":\"33412.50\",\"priceWithoutBed\":\"22275.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22275,\"CEB\":33412.5,\"COSTDO\":44550,\"COSTSO\":124740,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40095,\"COSTTO\":40095}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24737\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"51150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Accommodation with breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfer Will Be On Sharing Basis, Except Airport Transfers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa With Insurance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177040\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177040],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177043\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177043],\"Remark\":[\"ALL SIGHTSEEINGS ON SIC BASIS\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177046\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177046],\"Remark\":[\"ALL SIGHTSEEINGS ON SIC BASIS\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177049\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177049],\"Remark\":[\"ALL SIGHTSEEINGS ON SIC BASIS\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177052\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177052],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',37950,51150,4,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:48:13','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'affordable-dubai',NULL,NULL,NULL,0),(29,24748,1,5293,0,0,0,'Honeymoon,Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24748,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CENTARA_RAS_FUSHI_RESORT_-_SPLIT_STAY_57.jpg\",\"BookingValidUntill\":\"2021-12-19\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Ocean Front Beach Villa&amp;nbsp;+ 2 Nights Stay in Deluxe Water Villa&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (&amp;nbsp;Breakfast \\/ Lunch \\/ Dinner&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on Land Package Price Included ( Guest can claim while filing ITR )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"CENTARA RAS FUSHI RESORT - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Leisure\",\"Validity\":{\"From\":\"2021-09-01\",\"To\":\"2021-12-19\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479617,\"Name\":\"Centara Ras Fushi Resort & Spa Maldives\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"North Male&#039; Atoll, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4817912,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479617\\/5293_01616585615.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Centara Ras Fushi Resort &amp; Spa Maldives&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dive into absolute serenity. Less than 20 minutes away from Velana International Airport by speedboat, set on a pristine island blessed with tropical beauty in North Mal&eacute; Atoll, Centara Ras Fushi Resort &amp; Spa Maldives is an adults-only retreat that is ideal for couples and honeymooners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Light and airy villas with wooden flooring and natural fabrics provide sensational views of the Indian Ocean and offer the choice of beachside or overwater accommodation. Pure white sand and a sparkling blue lagoon make this a perfect playground for beach games, snorkelling and water sports, while the magical underwater world of some of the top dive sites in the Maldives are reached within less than half an hour by dhoni.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Exciting dining with a choice of dining programmes, along with a sublime spa, make this intimately scaled resort a haven for those seeking a tropical escape.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As an adults-only resort, guests must be aged 12 years and above.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479617\\/5293_df472f1571fa8d3037bc66fec6e8af0d1616585907.jpg\",\"AccoAminitiesMask\":\"1111101010001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177116\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p><strong>STAY 1 - OCEAN FRONT BEACH VILLA&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<p>Located on powdery sands, the azure lagoon at your doorstep, Ocean Front Beach Villas feature living areas of 45 square metres including a sun lounging area looking out across the lagoon, a bedroom with a choice of either a plush king-size bed or twin beds, and a bathroom with shower.&nbsp;<\\/p>\\r\\n\\r\\n<p>In-room amenities include complimentary wireless internet access, flat-screen TV with DVD player, individually controlled air-conditioning, ceiling fan, minibar, tea and coffee making facilities, in-room safe, hairdryer, and telephone.<\\/p>\\r\\n\\r\\n<p><strong>STAY 2 - DELUXE WATER VILLA<\\/strong><\\/p>\\r\\n\\r\\n<p>These romantic villas have 42 square metres of living space with either a king bed or twin beds, and a bathroom with shower.&nbsp;<\\/p>\\r\\n\\r\\n<p>Each villa features a host of amenities and services, including complimentary wireless internet access, flat-screen TV with DVD player, individually controlled air-conditioning, ceiling fan, minibar, tea and coffee making facilities, in-room safe, hairdryer, and telephone.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177117\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177118\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177119\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177120\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 Nights Ocean Front Beach Villa   2 Nights Deluxe Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24748\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"64064.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":64064,\"priceDoubleOcc\":\"64064.00\",\"priceSingleOcc\":128128,\"priceExtraBed\":\"64064.00\",\"priceWithoutBed\":\"64064.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64064.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-01\",\"To\":\"2021-12-19\",\"Currency\":1,\"priceTripleOcc\":83552,\"priceDoubleOcc\":\"83552.00\",\"priceSingleOcc\":167104,\"priceExtraBed\":\"83552.00\",\"priceWithoutBed\":\"83552.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"83552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Ocean Front Beach Villa + 2 Nights Stay in Deluxe Water Villa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling Equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on Land package Price (Guest can claim for the same while filing ITR)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177116\":[{\"Sequence\":[0],\"TPInvnSysId\":[177116],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177117\":[{\"Sequence\":[0],\"TPInvnSysId\":[177117],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177118\":[{\"Sequence\":[0],\"TPInvnSysId\":[177118],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177119\":[{\"Sequence\":[0],\"TPInvnSysId\":[177119],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177120\":[{\"Sequence\":[0],\"TPInvnSysId\":[177120],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','Maldives','Maldives,Indian Subcontinent','','16505',64064,83552,4,'29_1617197186_0.jpg,29_1617198051_0.jpg,29_1617198345_0.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2021-09-01 00:00:00','2021-12-19 00:00:00','2021-12-19 00:00:00',3,'Maldives','133','2022-01-06 17:10:20','2021-09-01 00:00:00',1,1,'0','0','0','','','',NULL,'centara-ras-fushi-resort-split-stay',NULL,NULL,NULL,0),(30,24757,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24757,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_SPLIT_STAY_95.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Sleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the moment you arrive, shoes are left at the door, so forget dress codes and come as you are. Here we live the barefoot idyll, so sit back and sink your toes into the softest white sand &amp;ndash; it doesn&amp;rsquo;t get better than this.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Priding ourselves on innovation, our main restaurant has a daily-changing menu to mix up seasonal flavours, and we serve plenty of the ocean&amp;rsquo;s bounty with the best seafood you&amp;rsquo;ll ever taste. You can even watch exotic fish pass under the glass floor below as you sink into a relaxing massage. It&amp;rsquo;s time to discover the true meaning of rest and rejuvenation here on our sapphire waters.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SUN SIYAM IRU VELI - SINGLE STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Sightseeing,Water Sports\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479657,\"Name\":\"Sun Siyam Iru Veli\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sun Siyam Iru Veli South Nilandhe Atoll Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"&lt;h3&gt;A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES&lt;\\/h3&gt;\\r\\n\\r\\n&lt;h3&gt;&lt;br \\/&gt;\\r\\nSleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;Fully all inclusive resort&lt;br \\/&gt;\\r\\nCertified diving school&lt;br \\/&gt;\\r\\nWine Academy tastings&lt;br \\/&gt;\\r\\nFishing lessons from the locals&lt;br \\/&gt;\\r\\nWeekly pool parties&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Beach Suite with Pool\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18997,\"Title\":\"DOLPHIN SUNSET CRUISE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16505,\"CityName\":\"Maldives\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":18998,\"Title\":\"Guided Snorkelling safari tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16505,\"CityName\":\"Maldives\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177205\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Offering sunrise or sunset views, these spacious suites invite relaxation. Floor-to-ceiling glass doors and an outdoor bathroom guarantee plenty of natural light, and with a large sundeck, private pool and your own stretch of beach, you&amp;rsquo;ve everything you&amp;rsquo;ll possibly need.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;KEY FEATURES&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n93sqm villa&lt;br \\/&gt;\\r\\nPrivate pool&lt;br \\/&gt;\\r\\nRight on the beach&lt;br \\/&gt;\\r\\nExtra bed available&lt;br \\/&gt;\\r\\n3 adults OR 2 adults &amp;amp; 2 children&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Beach Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177206\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Beach Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18997,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18998,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177207\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Beach Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177208\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Beach Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177209\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Beach Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24757\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"175450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Stay on Double sharing basis in Beach Suite with Pool&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Sea Plane&amp;nbsp;on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Minibar (Replenished once every day)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Floating Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;USD 100 Spa Credit per Adult per Stay&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177205\":[{\"Sequence\":[0],\"TPInvnSysId\":[177205],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"177206\":[{\"Sequence\":[0],\"TPInvnSysId\":[177206],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"177207\":[{\"Sequence\":[0],\"TPInvnSysId\":[177207],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"177208\":[{\"Sequence\":[0],\"TPInvnSysId\":[177208],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"177209\":[{\"Sequence\":[0],\"TPInvnSysId\":[177209],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent','','16505',175450,175450,4,'30_1617193931_0.jpg,30_1617193991_0.jpg,30_1617194869_0.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-07-29 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-07-29 11:56:59','2023-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'sun-siyam-iru-veli-single-stay',NULL,NULL,NULL,0),(31,24759,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24759,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_SPLIT_STAY_95.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Sleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the moment you arrive, shoes are left at the door, so forget dress codes and come as you are. Here we live the barefoot idyll, so sit back and sink your toes into the softest white sand &amp;ndash; it doesn&amp;rsquo;t get better than this.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Priding ourselves on innovation, our main restaurant has a daily-changing menu to mix up seasonal flavours, and we serve plenty of the ocean&amp;rsquo;s bounty with the best seafood you&amp;rsquo;ll ever taste. You can even watch exotic fish pass under the glass floor below as you sink into a relaxing massage. It&amp;rsquo;s time to discover the true meaning of rest and rejuvenation here on our sapphire waters.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SUN SIYAM IRU VELI - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Guided Tours,Water Sports\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479657,\"Name\":\"Sun Siyam Iru Veli\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sun Siyam Iru Veli South Nilandhe Atoll Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"&lt;h3&gt;A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES&lt;\\/h3&gt;\\r\\n\\r\\n&lt;h3&gt;&lt;br \\/&gt;\\r\\nSleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;Fully all inclusive resort&lt;br \\/&gt;\\r\\nCertified diving school&lt;br \\/&gt;\\r\\nWine Academy tastings&lt;br \\/&gt;\\r\\nFishing lessons from the locals&lt;br \\/&gt;\\r\\nWeekly pool parties&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18997,\"Title\":\"DOLPHIN SUNSET CRUISE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16505,\"CityName\":\"Maldives\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":18998,\"Title\":\"Guided Snorkelling safari tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16505,\"CityName\":\"Maldives\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177210\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 -&amp;nbsp;BEACH SUITE WITH POOL&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering sunrise or sunset views, these spacious suites invite relaxation. Floor-to-ceiling glass doors and an outdoor bathroom guarantee plenty of natural light, and with a large sundeck, private pool and your own stretch of beach, you&amp;rsquo;ve everything you&amp;rsquo;ll possibly need.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - OCEAN SUITE WITH POOL&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;These overwater villas are contemporary in design and flooded with natural light. A king size bedroom leads to a spacious bathroom, complete with a freestanding tub and separate walk-in rain shower. Fully-furnished outdoor decks all feature steps down to the lagoon and private plunge pools for sunset dips.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177211\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18997,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18998,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177212\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177213\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177214\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24759\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"182160.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":176088,\"priceDoubleOcc\":\"182160.00\",\"priceSingleOcc\":510048,\"priceExtraBed\":\"136620.00\",\"priceWithoutBed\":\"91080.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":182160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":91080,\"CEB\":136620,\"COSTDO\":182160,\"COSTSO\":510048,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":163944,\"COSTTO\":163944}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Suite with Pool + 2 Nights in Ocean Suite with Pool on Double Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal plan ( Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Sea Plane&amp;nbsp;on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Minibar (Replenished once every day)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Floating Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;USD 100 Spa Credit per Adult per Stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free usage of our private lounge at seaplane terminal (upon arrival only)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Special welcome: refreshing towels and sparkling wine (non-alcoholic beverages available upon request)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;01 Bottle of sparkling wine and a Fruit Platter on arrival day in suite bubble bath ( once during the stay )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary In-suite Breakfast for the couple once during the stay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bed Decoration on arrival night.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Honeymoon cake.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177210\":[{\"Sequence\":[0],\"TPInvnSysId\":[177210],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177211\":[{\"Sequence\":[0],\"TPInvnSysId\":[177211],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177212\":[{\"Sequence\":[0],\"TPInvnSysId\":[177212],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177213\":[{\"Sequence\":[0],\"TPInvnSysId\":[177213],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177214\":[{\"Sequence\":[0],\"TPInvnSysId\":[177214],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',182160,182160,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:47:44','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'sun-siyam-iru-veli-split-stay',NULL,NULL,NULL,0),(32,24814,1,5293,0,0,0,'Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24814,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/UNBEATABLE_DUBAI_ON_EMI_-_TRAVEL_NOW_PAY_LATER_89.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;UNBEATABLE DUBAI PACKAGE - EMI OFFER&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;**PAY NOW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 8495&amp;nbsp;per person&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;strong&gt;**BALANCE AMOUNT&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 3941\\/- in 9 Monthly Installments ( Interest Free )&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"UNBEATABLE DUBAI PACKAGE - EMI OFFER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Sightseeing,Guided Tours,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2021-03-30\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479696,\"Name\":\"Ascot Hotel Dubai\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Khalid bin waleed Road  Bur Dubai, Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817925,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479696\\/5293_01616739958.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;Built to serve the corporate guest, the&lt;strong&gt; Ascot Hotel &lt;\\/strong&gt;has been carefully engineered to cater to&nbsp;the business traveler&rsquo;s every need. Everything at the Ascot, from the elegant lobby to the thoughtfully designed rooms to the gourmet restaurants, is about subtlety and luxury rather than opulence and pomp. Located close to the airport and to the major business areas of Dubai, the Ascot has been meticulously fashioned to be the perfect place to stay, hold business meetings and entertain your guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nA boom in hospitality sector is a boom in the tourism industry. For its part, &lt;em&gt;Khamas Group has utilized its management prowess in the promotion of the local tourism industry, by maintaining spa and wellness centers, entertainment holes, and restaurants.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479696\\/5293_d2c682d7ddcec4ef6783cb553cc90e631616670889.png\",\"AccoAminitiesMask\":\"1111100000000001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &ndash; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Tour\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&rsquo;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&rsquo;s fastest elevator to the 124th floor &ndash; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&rsquo;s no better spot to watch the sun go down and the city sparkle to life than the top of world&rsquo;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &lsquo;At the Top, Burj Khalifa SKY&rsquo;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&rsquo;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &lsquo;At the Top, Burj Khalifa SKY&rsquo;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&rsquo;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&rsquo;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&rsquo;t miss. For a look at Dubai&rsquo;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&rsquo;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18419,\"Title\":\"Dhow Cruise Dinner Marina\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177583\",\"Title\":\"Delhi - Dubai (Arrival) + Transfer to hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to the city of glitz, Dubai! On arrival, clear customs and immigration, collect your baggage and exit the airport. Our tour operator will meet you there for your transfer to the hotel. After check in, you can relax in your room for a while and remove jet lag.<\\/p>\\r\\n\\r\\n<p>In the evening, you can go for a self exploration of the glistening city. Just a stroll would give you a good experience of flamboyance of the city. Indulge in some local Arabic cuisine on your way back to the hotel.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: Standard Check in time at Hotel is 1500 hours &amp; Early check in is Subject to Availability.<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479696,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177584\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Evening is for the exciting&nbsp;<strong>Desert Safari<\\/strong>, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: We don&#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.<\\/em><\\/p>\\r\\n\\r\\n<p><strong>Desert Safari Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.<\\/p>\\r\\n\\r\\n<p>You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.<\\/p>\\r\\n\\r\\n<p>There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479696,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177585\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a&nbsp;<strong>half day city tour of Dubai<\\/strong>. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&rsquo;s age old culture at Al Fahidi Fort, home to Dubai&rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.<\\/p>\\r\\n\\r\\n<p><strong>BURJ KHALIFA AT 124TH FLOOR<\\/strong> (NON PRIME SLOT)<\\/p>\\r\\n\\r\\n<p>Step out onto the world&#39;s highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore&nbsp;Dubai&#39;s&nbsp;most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479696,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177586\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.<\\/p>\\r\\n\\r\\n<p>Evening is going to be luxuriously romantic on a&nbsp;<strong>Dhow Cruise<\\/strong>. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><strong>Dhow Cruise Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available.<\\/p>\\r\\n\\r\\n<p>You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479696,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177587\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>Morning after breakfast check out from hotel and transfer to airport for departure flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24814\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":44000,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"44000.00\",\"priceWithoutBed\":\"44000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Accommodation on Double Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Economy Class Return Airfare in Indigo Airlines&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Tourist Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &amp;nbsp;Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari With BBQ Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Dhow Cruise With Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfer Will Be On Sharing Basis, Except Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177583\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177583],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177584\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177584],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177585\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177585],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177586\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177586],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177587\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177587],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-23\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureAirportCode\":\"DEL\",\"DepartureTime\":{\"date\":\"2021-04-06 06:50:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"ArrivalAirportCode\":\"DXB\",\"ArrivalTime\":{\"date\":\"2021-10-06 09:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":1,\"EstimateHours\":\"\"},{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-24\",\"DepartureAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"DepartureAirportCode\":\"DXB\",\"DepartureTime\":{\"date\":\"2021-04-10 23:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalTime\":{\"date\":\"2021-04-11 04:20:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":2,\"EstimateHours\":\"\"}]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',44000,44000,4,'32_1617361142_0.jpg,32_1617362120_0.jpg,32_1617363529_0.jpg,32_1617365071_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2021-03-30 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'United Arab Emirates','228','2021-12-24 15:41:21','2021-03-30 00:00:00',1,1,'0','0','0','','','',NULL,'unbeatable-dubai-package-emi-offer',NULL,NULL,NULL,0),(33,24818,1,5293,0,0,0,'Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24818,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/LUXURY_DUBAI_-_TRAVEL_NOW_PAY_LATER_10.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;LUXURY DUBAI&amp;nbsp;- EMI OFFER&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;**PAY NOW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 9495&amp;nbsp;per person&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;strong&gt;**BALANCE AMOUNT&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 4469\\/- in 9 Monthly Installments ( Interest Free )&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"LUXURY DUBAI - EMI OFFER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Sightseeing,Guided Tours,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2021-10-19\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479669,\"Name\":\"Movenpick Hotel and Apartments\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;Connect with Dubai&rsquo;s rich history and modern marvels at Park Regis Kris Kin Dubai, where Dubai connects. Park Regis Kris Kin hotel is ideally located in central Dubai moments from entertainment and shopping hubs such as Burjuman Shopping Centre a 400-meter walk away. Iconic attractions including Bur Dubai Market, Dubai Museum and Dubai Creek are within a short distance from the hotel. World Trade Exhibition Centre is a quick 10-minute taxi ride, making this an ideal accommodation choice for both business and leisure travellers alike.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Park Regis Kris Kin Dubai offers 384 spacious rooms and suites ranging from superior, deluxe, suites, and two bedroom suites that are perfect for both leisure and business travelers visiting Dubai for all occasions including a short stopover, romantic getaways, family holidays, business trips and long stay accommodation.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479669\\/5293_6a47d66697f2959dd52f56f0a388b0551616760800.jpg\",\"AccoAminitiesMask\":\"1111001010111111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &ndash; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&rsquo;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&rsquo;s fastest elevator to the 124th floor &ndash; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&rsquo;s no better spot to watch the sun go down and the city sparkle to life than the top of world&rsquo;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &lsquo;At the Top, Burj Khalifa SKY&rsquo;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&rsquo;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &lsquo;At the Top, Burj Khalifa SKY&rsquo;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&rsquo;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&rsquo;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&rsquo;t miss. For a look at Dubai&rsquo;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&rsquo;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18419,\"Title\":\"Dubai Marina Dinner Cruise\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177618\",\"Title\":\"Delhi - Dubai (Arrival) + Transfer to hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to the city of glitz, Dubai! On arrival, clear customs and immigration, collect your baggage and exit the airport. Our tour operator will meet you there for your transfer to the hotel. After check in, you can relax in your room for a while and remove jet lag.<\\/p>\\r\\n\\r\\n<p>In the evening, you can go for a self exploration of the glistening city. Just a stroll would give you a good experience of flamboyance of the city. Indulge in some local Arabic cuisine on your way back to the hotel.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: Standard Check in time at Hotel is 1400 hours &amp; Early check in is Subject to Availability.<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177619\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Evening is for the exciting&nbsp;<strong>Desert Safari<\\/strong>, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: We don&#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.<\\/em><\\/p>\\r\\n\\r\\n<p><strong>Desert Safari Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.<\\/p>\\r\\n\\r\\n<p>You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.<\\/p>\\r\\n\\r\\n<p>There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177620\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a&nbsp;<strong>half day city tour of Dubai<\\/strong>. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&rsquo;s age old culture at Al Fahidi Fort, home to Dubai&rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.<\\/p>\\r\\n\\r\\n<p><strong>BURJ KHALIFA AT 124TH FLOOR<\\/strong> (NON PRIME SLOT)<\\/p>\\r\\n\\r\\n<p>Step out onto the world&#39;s highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore&nbsp;Dubai&#39;s&nbsp;most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177621\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.<\\/p>\\r\\n\\r\\n<p>Evening is going to be luxuriously romantic on a&nbsp;<strong>Dhow Cruise<\\/strong>. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><strong>Dhow Cruise Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available.<\\/p>\\r\\n\\r\\n<p>You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177622\",\"Title\":\"Day Free at Leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After all it&rsquo;s a holiday and it should go in your own way with the flow of your mood right? So, enjoy your breakfast all relaxed in your hotel. The whole day is at your own disposal to spend it your way. You can select an optional tour from different options provided by us like going for an early morning Hot Air Balloon ride&nbsp;or maybe you are not yet satiated of the thirst of shopping? How about a relaxed day at Jumeirah Beach? Any way, spend it your way. Return to hotel by night.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177623\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>Morning after breakfast check out from hotel and transfer to airport for departure flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24818\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"49610.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":49610,\"priceDoubleOcc\":\"49610.00\",\"priceSingleOcc\":99220,\"priceExtraBed\":\"49610.00\",\"priceWithoutBed\":\"49610.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"6500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49610.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5 Nights Accommodation on Double Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Economy Class Return Airfare in Indigo Airlines&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Tourist Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &amp;nbsp;Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari With BBQ Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Dhow Cruise With Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfer Will Be On Sharing Basis, Except Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177618\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177618],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177619\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177619],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177620\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177620],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177621\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177621],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177622\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177622],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177623\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-23\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureAirportCode\":\"DEL\",\"DepartureTime\":{\"date\":\"2021-04-06 06:50:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"ArrivalAirportCode\":\"DXB\",\"ArrivalTime\":{\"date\":\"2021-04-06 09:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":1,\"EstimateHours\":\"\"},{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-24\",\"DepartureAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"DepartureAirportCode\":\"DXB\",\"DepartureTime\":{\"date\":\"2021-04-11 23:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalTime\":{\"date\":\"2021-04-12 04:20:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":2,\"EstimateHours\":\"\"}]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',49610,49610,5,'33_1617349109_0.jpg,33_1617349442_0.jpg,33_1617349780_0.jpg,33_1617351719_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-10-19 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'United Arab Emirates','228','2021-12-24 15:41:05','2021-10-19 00:00:00',1,1,'0','0','0','','','',NULL,'luxury-dubai-emi-offer',NULL,NULL,NULL,0),(34,24820,1,5293,0,0,0,'Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24820,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_WITH_ATLANTIS_-_TRAVEL_NOW_PAY_LATER_33.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;DUBAI WITH ATLANTIS - EMI OFFER&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;**PAY NOW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 12995&amp;nbsp;per person&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;strong&gt;**BALANCE AMOUNT&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;INR 6541\\/- in 9 Monthly Installments ( Interest Free )&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DUBAI WITH ATLANTIS - EMI OFFER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Sightseeing,Guided Tours,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2021-03-30\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479669,\"Name\":\"Park Regis Kris Kin Hotel Dubai\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817930,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479669\\/5293_01616760800.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;Connect with Dubai&rsquo;s rich history and modern marvels at Park Regis Kris Kin Dubai, where Dubai connects. Park Regis Kris Kin hotel is ideally located in central Dubai moments from entertainment and shopping hubs such as Burjuman Shopping Centre a 400-meter walk away. Iconic attractions including Bur Dubai Market, Dubai Museum and Dubai Creek are within a short distance from the hotel. World Trade Exhibition Centre is a quick 10-minute taxi ride, making this an ideal accommodation choice for both business and leisure travellers alike.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Park Regis Kris Kin Dubai offers 384 spacious rooms and suites ranging from superior, deluxe, suites, and two bedroom suites that are perfect for both leisure and business travelers visiting Dubai for all occasions including a short stopover, romantic getaways, family holidays, business trips and long stay accommodation.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479669\\/5293_6a47d66697f2959dd52f56f0a388b0551616760800.jpg\",\"AccoAminitiesMask\":\"1111001010111111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479710,\"Name\":\"Atlantis, The Palm\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Crescent Road  The Palm Jumeirah  Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817922,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479710\\/5293_01616683109.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;On iconic Palm Jumeirah island in the &lt;strong&gt;Arabian Gulf&lt;\\/strong&gt;, this posh resort is 14 km from &lt;strong&gt;Wild Wadi Water Park&lt;\\/strong&gt; and 15 km from the upscale shops in &lt;strong&gt;the Mall of the Emirates&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cozy rooms have minibars, flat-screens and free Wi-Fi, as well as gulf or&lt;strong&gt; island views&lt;\\/strong&gt;. Suites offer sitting areas; some include terraces, whirlpool baths and\\/or living rooms. Upgraded suites are set in the water tank of an aquarium, and have floor-to-ceiling windows with &lt;strong&gt;views of marine life&lt;\\/strong&gt;. Room service is available 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There are &lt;strong&gt;23 restaurants, plus a spa, a gym &amp; a water park&lt;\\/strong&gt;. Other amenities include an &lt;strong&gt;aquarium and a dolphin poo&lt;\\/strong&gt;l, along with a kids&rsquo; club and a &lt;strong&gt;nightclub&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479710\\/5293_090f181dac2369716f479f62065b59651616683109.jpg\",\"AccoAminitiesMask\":\"1111111110111101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"PALM KING ROOM\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &ndash; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&rsquo;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&rsquo;t miss. For a look at Dubai&rsquo;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&rsquo;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Tour\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&rsquo;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&rsquo;s fastest elevator to the 124th floor &ndash; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&rsquo;s no better spot to watch the sun go down and the city sparkle to life than the top of world&rsquo;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &lsquo;At the Top, Burj Khalifa SKY&rsquo;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&rsquo;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &lsquo;At the Top, Burj Khalifa SKY&rsquo;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&rsquo;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18419,\"Title\":\"Dhow Cruise Dinner Marina\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177632\",\"Title\":\"Delhi - Dubai (Arrival) + Transfer to hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Welcome to the city of glitz, Dubai! On arrival, clear customs and immigration, collect your baggage and exit the airport. Our tour operator will meet you there for your transfer to the hotel. After check in, you can relax in your room for a while and remove jet lag.<\\/p>\\r\\n\\r\\n<p>In the evening, you can go for a self exploration of the glistening city. Just a stroll would give you a good experience of flamboyance of the city. Indulge in some local Arabic cuisine on your way back to the hotel.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: Standard Check in time at Hotel is 1400 hours &amp; Early check in is Subject to Availability.<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177633\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Evening is for the exciting&nbsp;<strong>Desert Safari<\\/strong>, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: We don&#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.<\\/em><\\/p>\\r\\n\\r\\n<p><strong>Desert Safari Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.<\\/p>\\r\\n\\r\\n<p>You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.<\\/p>\\r\\n\\r\\n<p>There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177634\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a&nbsp;<strong>half day city tour of Dubai<\\/strong>. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&rsquo;s age old culture at Al Fahidi Fort, home to Dubai&rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.<\\/p>\\r\\n\\r\\n<p><strong>BURJ KHALIFA AT 124TH FLOOR<\\/strong> (NON PRIME SLOT)<\\/p>\\r\\n\\r\\n<p>Step out onto the world&#39;s highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore&nbsp;Dubai&#39;s&nbsp;most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177635\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.<\\/p>\\r\\n\\r\\n<p>Evening is going to be luxuriously romantic on a&nbsp;<strong>Dhow Cruise<\\/strong>. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><strong>Dhow Cruise Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available.<\\/p>\\r\\n\\r\\n<p>You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479669,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177636\",\"Title\":\"Inter-hotel Transfer to Atlantis The Palm\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>Morning enjoy breakfast in Park Regis, Dubai and Transfer to Atlantis The Palm.<\\/p>\\r\\n\\r\\n<p>Enjoy the activities Lost Chamber and Aquaventure in resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479710,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"PALM KING ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2927,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177637\",\"Title\":\"Departure\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>Morning after breakfast check out from hotel and transfer to airport for departure flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24820\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"70200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-05\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":70200,\"priceDoubleOcc\":\"70200.00\",\"priceSingleOcc\":140400,\"priceExtraBed\":\"70200.00\",\"priceWithoutBed\":\"70200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"9200.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;&amp;nbsp;No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Stay in Park Regis on Breakfast Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night Stay in Atlantis&amp;nbsp;on Half Board Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Economy Class Return Airfare in Indigo Airlines&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Tourist Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari With BBQ Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Dhow Cruise With Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Mall Visit + Burj Khalifa 124th Flor (Non-Prime Time) + Fountain Show &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfer Will Be On Sharing Basis, Except Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177632\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177632],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177633\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177633],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177634\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177634],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON SIC BASIS&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177635\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177635],\"Remark\":[\"&lt;p&gt;TOUR TRANSFER ON SIC BASIS&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177636\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177636],\"Remark\":[\"&lt;p&gt;INTERHOTEL TRANSFER ON PVT BASIS&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177637\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177637],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-23\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureAirportCode\":\"DEL\",\"DepartureTime\":{\"date\":\"2021-03-26 06:50:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"ArrivalAirportCode\":\"DXB\",\"ArrivalTime\":{\"date\":\"2021-03-26 09:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":1,\"EstimateHours\":\"3h 50m\"},{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E-24\",\"DepartureAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"DepartureAirportCode\":\"DXB\",\"DepartureTime\":{\"date\":\"2021-03-26 23:10:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalTime\":{\"date\":\"2021-03-26 04:20:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":2,\"EstimateHours\":\"3h 40m\"}]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',70200,70200,5,'34_1617353632_0.jpg,34_1617355745_0.jpg,34_1617356344_0.jpg,34_1617356913_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-03-30 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'United Arab Emirates','228','2021-12-24 15:40:48','2021-03-30 00:00:00',1,1,'0','0','0','','','',NULL,'dubai-with-atlantis-emi-offer',NULL,NULL,NULL,0),(35,24831,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":24831,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/PARADISE_ISLAND_RESORT_-_EMI_OFFER_87.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;This five star resort called&amp;nbsp;Paradise Island&amp;nbsp;has the local name Lankanfinolhu. Paradise Island, opened in 1994 is located in North Male&amp;rsquo; Atoll, which is 9.6km from the Airport. Paradise Island is 1km long and 230 meters wide and has beach all around with an excellent marine life around.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Paradise Island Resort is one of the most striking features in Maldives. The islands attraction lies in its first class service with a variety of stragically located restaurants and the widest possible range of sports both on land and on the sea.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;When your wife says she will be ready in five minutes, together with the Audemars Piguet Royal Oak, you affect people.&amp;rdquo; Its what aggressive Marchand to become a pilot.&amp;nbsp;replica watch&amp;nbsp;And that afflatus could prove analytical as some in the aerodynamics industry are admiration a pilot curtailment in America aural the next ten years &amp;ndash; authoritative recruiting adolescent humans to the profession paramount. &amp;ldquo;We wish added pilots. Wed like the aerodynamics to flourish. Wed like the apple of aerodynamics to be a little added popular.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you want a tropical island holiday in this land with white sands, clear lagoon, five star setting with excellent service,&amp;nbsp;togel online terbaik&amp;nbsp;Paradise will cater to all your needs. There is good news for surfing enthusiasts. The best surfing areas easily reachable and special trips can be arranged for resident guests who would like to go surfing&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"PARADISE ISLAND RESORT \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Travel Insurance\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure,Luxury Tours\",\"Validity\":{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479714,\"Name\":\"Paradise Island Resort, Maldives\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Lankanfinolhu North Mal&Atilde;&copy; Atoll P.O. Box 2073 Rep. of Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"&lt;p&gt;A MAJESTIC RETREAT SURROUNDED BY AZURE WATERS&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nImagine a secluded island with bright white beaches, a lagoon awash in deep blues and aquamarines, and soaring coconut palms swaying in the breeze. A network of paved pathways winds through the lush grounds, connecting the oceanfront accommodation, gourmet dining spots, sports facilities, and an inspiring spa. This is Paradise Island Resort &amp; Spa - a luxury resort in the Maldives where unforgettable experiences await.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479714\\/5293_eff1b9a2b67411f7578b9a6d3ce6afb11653050372.jpg\",\"AccoAminitiesMask\":\"1111101010001110110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177704\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 -&amp;nbsp; BEACH VILLA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set just behind the beach treeline, our Beach Villas provide the ultimate in tropical luxury. Inside the room is everything you need for a relaxing stay, from tastefully designed, comfortable furniture and satellite television to air conditioning. The tiled veranda is an idyllic place for an afternoon of reading or enjoying the ocean breeze, and the refreshing lagoon that surrounds the island is just a few steps away.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2&amp;nbsp;- WATER&amp;nbsp;VILLA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our magnificent, semi-detached Water Villas are bright, spacious, and luxuriously furnished.&amp;nbsp;Each water bungalow features its own staircase leading into the crystal clear lagoon below - the perfect place for swimming or snorkeling. Spend your days relaxing only a few feet above the blue waters of the Indian Ocean, soaking up the sun while being pampered by our attentive staff.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177705\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177706\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177707\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177708\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"02 NIGHTS  BEACH VILLA 02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24831\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"112860.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109098,\"priceDoubleOcc\":\"112860.00\",\"priceSingleOcc\":316008,\"priceExtraBed\":\"84645.00\",\"priceWithoutBed\":\"56430.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56430,\"CEB\":84645,\"COSTDO\":112860,\"COSTSO\":316008,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101574,\"COSTTO\":101574}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Superior Beach&amp;nbsp;Bungalow&amp;nbsp;+ 2 Nights Stay&amp;nbsp;in Water Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal plan ( Breakfast, Lunch &amp;amp; Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Speedboat&amp;nbsp;on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road Taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177704\":[{\"Sequence\":[0],\"TPInvnSysId\":[177704],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177705\":[{\"Sequence\":[0],\"TPInvnSysId\":[177705],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177706\":[{\"Sequence\":[0],\"TPInvnSysId\":[177706],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177707\":[{\"Sequence\":[0],\"TPInvnSysId\":[177707],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177708\":[{\"Sequence\":[0],\"TPInvnSysId\":[177708],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent','','16505',112860,112860,4,'35_1617107808_0.jpg,35_1617107818_0.jpg,35_1617107934_0.jpg,35_1617110069_0.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-07-29 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-07-29 11:53:49','2023-07-29 00:00:00',1,1,'1','1','1','paradise island resort, emi offer holiday packages, paradise island resort, emi offer honeymoon packages, paradise island resort, emi offer travel package, holiday package on emi, maldives package, holiday package maldives, maldives honeymoon.','PARADISE ISLAND RESORT EMI PACKAGE - Book holiday and honeymoon tour packages and get great deals on vocational tours package. Plan your holidays and honeymoon with us.','Luxury Maldives Holiday and Honeymoon Tour Packages On EMI - Paradise Island Resort ',NULL,'paradise-island-resort',NULL,NULL,NULL,0),(36,24835,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24835,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SUN_SIYAM_IRU_VELI_-_EMI_OFFER_5.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Sleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the moment you arrive, shoes are left at the door, so forget dress codes and come as you are. Here we live the barefoot idyll, so sit back and sink your toes into the softest white sand &amp;ndash; it doesn&amp;rsquo;t get better than this.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Priding ourselves on innovation, our main restaurant has a daily-changing menu to mix up seasonal flavours, and we serve plenty of the ocean&amp;rsquo;s bounty with the best seafood you&amp;rsquo;ll ever taste. You can even watch exotic fish pass under the glass floor below as you sink into a relaxing massage. It&amp;rsquo;s time to discover the true meaning of rest and rejuvenation here on our sapphire waters.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"SUN SIYAM IRU VELI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Sightseeing,Travel Insurance\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479657,\"Name\":\"Sun Siyam Iru Veli\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sun Siyam Iru Veli South Nilandhe Atoll Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"&lt;h3&gt;A PRIVATE POOL PARADISE FOR INDULGENT ESCAPES&lt;\\/h3&gt;\\r\\n\\r\\n&lt;h3&gt;&lt;br \\/&gt;\\r\\nSleek and spacious accommodations make Sun Siyam Iru Veli the ultimate tropical retreat. With front row lagoon views and a freshwater pool for every five star suite, all you have to do is check in, chill out and let our neighbouring dolphins provide your entertainment as they swim past each day.&lt;\\/h3&gt;\\r\\n\\r\\n&lt;p&gt;Fully all inclusive resort&lt;br \\/&gt;\\r\\nCertified diving school&lt;br \\/&gt;\\r\\nWine Academy tastings&lt;br \\/&gt;\\r\\nFishing lessons from the locals&lt;br \\/&gt;\\r\\nWeekly pool parties&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111010001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177727\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 -&amp;nbsp;BEACH SUITE WITH POOL&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering sunrise or sunset views, these spacious suites invite relaxation. Floor-to-ceiling glass doors and an outdoor bathroom guarantee plenty of natural light, and with a large sundeck, private pool and your own stretch of beach, you&amp;rsquo;ve everything you&amp;rsquo;ll possibly need.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - OCEAN SUITE WITH POOL&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;These overwater villas are contemporary in design and flooded with natural light. A king size bedroom leads to a spacious bathroom, complete with a freestanding tub and separate walk-in rain shower. Fully-furnished outdoor decks all feature steps down to the lagoon and private plunge pools for sunset dips.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177728\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177729\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177730\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177731\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479657,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2 Nights Beach Suite with Pool   2 Nights Ocean Suite with Pool\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24835\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"175340.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169495,\"priceDoubleOcc\":\"175340.00\",\"priceSingleOcc\":490952,\"priceExtraBed\":\"131505.00\",\"priceWithoutBed\":\"87670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87670,\"CEB\":131505,\"COSTDO\":175340,\"COSTSO\":490952,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157806,\"COSTTO\":157806}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Suite with Pool + 2 Nights in Ocean Suite with Pool on Double Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Economy Class Return Airfare in Indigo Airlines&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Sea Plane&amp;nbsp;on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Minibar (Replenished once every day)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Floating Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Dolphin Sunset Cruise, Guided Snorkelling safari tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;USD 100 Spa Credit per Adult per Stay&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177727\":[{\"Sequence\":[0],\"TPInvnSysId\":[177727],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177728\":[{\"Sequence\":[0],\"TPInvnSysId\":[177728],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177729\":[{\"Sequence\":[0],\"TPInvnSysId\":[177729],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177730\":[{\"Sequence\":[0],\"TPInvnSysId\":[177730],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"177731\":[{\"Sequence\":[0],\"TPInvnSysId\":[177731],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEA PLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',175340,175340,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:47:26','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'sun-siyam-iru-veli',NULL,NULL,NULL,0),(37,22078,1,5293,0,0,0,'Honeymoon,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22078,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/HONEYMOON_IN_DIGANTAA_NAINITIAL_21.jpg\",\"BookingValidUntill\":\"2021-06-30\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;Stay at Digantaa Resort is a unique experience. Exquisitely designed wooden cottages present you with the most luxurious and comfortable living.&amp;quot;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Nainital\",\"SourcePlaceSysId\":18892,\"AgencyName\":\"I Need Trip\",\"Name\":\"HONEYMOON IN DIGANTAA NAINITIAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5640\",\"SupplierName\":\"I NEED TRIP\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34550,\"Title\":\"Mukteshwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":474826,\"Name\":\"Digantaa Resorts\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.3958947\",\"Long\":\"79.6455989\",\"Address\":\"Bhatelia-Dhanachuli-BhimtalRoad, South Gola Range, Uttarakhand 263132, India\"},\"Images\":[],\"CityId\":34550,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_474826\\/5293_e54341e40506564339783450bdd01e3e1653389668.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Tesia\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"158075\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 Nights accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474826,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158076\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474826,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158077\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474826,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158078\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474826,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Tesia\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"158075\":[{\"Sequence\":[0],\"TPInvnSysId\":[158075],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"158076\":[{\"Sequence\":[0],\"TPInvnSysId\":[158076],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"158077\":[{\"Sequence\":[0],\"TPInvnSysId\":[158077],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"158078\":[{\"Sequence\":[0],\"TPInvnSysId\":[158078],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mukteshwar','Mukteshwar,Uttarakhand,Indian Subcontinent,North India,India',NULL,'34550',0,0,3,NULL,NULL,NULL,2,'',0,'2023-08-25 00:00:00','2021-06-30 00:00:00','2021-06-30 00:00:00',3,'India','101','2023-08-25 14:32:11','2023-08-25 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'honeymoon-in-digantaa-nainitial',NULL,NULL,NULL,0),(38,2548,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"18423\",\"Title\":\"Desert Safari Tour\",\"Details\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Get an exciting experience of the crossing the famous dunes before taking photos with the endless desert and the sun setting in the background, feel the fine sand slipping between your fingers as you make your way to the Desert camp. Here you will be welcomed with flavorful Arabic tea and coffee with dates and soft drinks to quench your thirst.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Feel the culture by dressing up in traditional attire and take selfies as the Henna artist paints your hand. This will be followed by Tanura show (traditional folk dance), Fire show and belly dancer perform to the rhythm of Arabic Music (The sequence of the event may change without prior notice).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Enjoy your meal with Veg and Non-Veg BBQ items experiencing the Arabic hospitality in this once in a lifetime Desert Safari tour in Dubai.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Budget Sharing&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by SUVs and Dune bashing in the desert for about 20 &ndash; 25 minutes ( depending on weather conditions).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The services will be provided at a safari camp with all amenities, toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard buffet menu includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Non-Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks (may be local brand), Water, Coffee and Gahwa are served complimentary.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet menu&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspincludes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Private Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be by exclusive 4 x 4 vehicle and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;menu&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items,&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Premium Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with deluxe amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International buffet&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspthat includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Pasta, Veg suttee, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;After all the evening fun you will be dropped back to your drop off location.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"Duration\":\"6 Hours\",\"Icon\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg\",\"ThumnailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg\",\"DetailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg\",\"InvnItemSysId\":\"2548\",\"From\":\"2023-09-15\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"5684\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"3450.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"2\":\"Dinner\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Drop off at the hotel.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Pick-up available from the hotel.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Transport&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Shows&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Henna tattoo&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Dune bashing&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Buffet Dinner&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Vegetarian options BBQ Dinner&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;tea&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;soft drinks&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;water&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;coffee&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"Advisory\":\"&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Pregnant women and people with heart problems are not allowed to take part in this activity.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Not suitable for persons suffering with back or neck problems.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Minimum Age: 3 years old&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;If you have a food allergy or dietary requirement, please advice when booking.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Vegetarian meals are available upon request. Casual wear&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Gloves.&lt;\\/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;On Islamic occasions and National holidays alcohol will not be served and there will be no live entertainment.&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Shisha &ndash; additional cost if requested on private table and not in the allotted shisha lounge.&lt;\\/span&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"RefundPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CancellationPolicy\":\"&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"ConfirmationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"ActivityGrType\":\"[\\\"Adventure\\\",\\\"Safari\\\",\\\"Sightseeing\\\",\\\"Outdoor Activities\\\"]\",\"ActivityType\":\"[\\\"Camping\\\",\\\"Camel Safari\\\",\\\"ATV driving\\\"]\",\"DurationInMin\":\"360\",\"DurationStr\":\"6 Hours\",\"TimeSlots\":\"[[\\\"15:00\\\",\\\"21:00\\\"]]\",\"PickUpLocation\":\"HOTEL\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Al Aveer Desert Camp\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'38_1694514772_0.jpg',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 13:01:27','2023-09-15 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (39,25156,1,5293,0,0,0,'Honeymoon,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25156,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ENTHRALLING_DUBAI_WITH_MALDIVES_57.jpg\",\"BookingValidUntill\":\"2021-05-15\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span class=&quot;marker&quot;&gt;ENTHRALLING DUBAI WITH MALDIVES&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;(7 Nights 8 Days)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 Nights Stay in Maldives &amp;amp; 04 Nights Stay in Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers &amp;amp; Sightseeing&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR Test by a Dha Approved in Dubai Hotel&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"ENTHRALLING DUBAI WITH MALDIVES\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479829,\"Name\":\"Sheraton Maldives Full Moon Resort & Spa\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Furanafushi Island North Mal&eacute; Atol, 08240, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4817943,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479829\\/5293_01617101022.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;On a private North Mal&eacute; Atoll island, this luxe beachfront resort is 7 km from Ibrahim Nasir International Airport and 9 km from Mal&eacute;&amp;#39;s city center.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring ocean-view balconies or terraces, airy rooms provide cable TV, Wi-Fi (fee), minifridges and coffeemakers. Rustic-chic cottages add open-air showers and\\/or direct beach access. Polished bungalows and villas are available; some are on stilts or have private pools. Upgraded units offer access to a lounge with free drinks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast (fee) is served in a buffet eatery. There are 6 other restaurants and bars. Additional amenities include an outdoor pool, a spa, a kids&amp;#39; club and a dive center.&lt;br \\/&gt;\\r\\n&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479829\\/5293_c2e9a9ec4a79b0e95bb8faa8484800ab1617101022.jpg\",\"AccoAminitiesMask\":\"1111111010001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Guest Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18419,\"Title\":\"Dhow Cruise Dinner Marina\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Tour\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&rsquo;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&rsquo;s fastest elevator to the 124th floor &ndash; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&rsquo;s no better spot to watch the sun go down and the city sparkle to life than the top of world&rsquo;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &lsquo;At the Top, Burj Khalifa SKY&rsquo;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&rsquo;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &lsquo;At the Top, Burj Khalifa SKY&rsquo;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&rsquo;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&rsquo;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&rsquo;t miss. For a look at Dubai&rsquo;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&rsquo;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &ndash; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}},{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":474975,\"Name\":\"Hyatt Place Dubai Jumeirah\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2461115\",\"Long\":\"55.27749979999999\",\"Address\":\"Al Mina Rd Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817942,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_474975\\/5293_01617097463.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Hyatt Place Dubai Jumeirah&lt;\\/strong&gt; is a new hotel near the exclusive Jumeirah neighborhood. Inspired by old and new Dubai, it offers modern essential experiences for work and play in a stylish setting. Situated close to La Mer, the hotel places its guests near the Business Hub, Burj Khalifa and is a 20 minute drive from the Dubai International Airport.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_474975\\/5293_27d1ed254b385b20d1bf9ea9a5e053901617097462.png\",\"AccoAminitiesMask\":\"1011101010001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"1 King Bed With Sofa Bed\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18419,\"Title\":\"Dhow Cruise Dinner Marina\",\"Description\":\"&lt;p&gt;Dubai Marina, characterized by a dramatic skyline of skyscrapers looks particularly impressive when illuminated at night. Take in these fascinating views as you cruise along the Marina in a traditional wooden dhow. Some of the enthralling architectural structures you will see are sky scrapers in the exclusive areas of the Marina residences, the Yacht club and the Dubai Marina Mall. As you leisurely sail along the Marina on this two hour tour, you can relish an international dinner buffet and be thoroughly entertained by a fun and colorful Tanura song and dance performance. The Marina Dinner Cruise with a complimentary welcome drink, delicious food, great entertainment and stunning views is the ideal way to enjoy the wonders of this man-made canal city!&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Tour\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&rsquo;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&rsquo;s fastest elevator to the 124th floor &ndash; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&rsquo;s no better spot to watch the sun go down and the city sparkle to life than the top of world&rsquo;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &lsquo;At the Top, Burj Khalifa SKY&rsquo;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&rsquo;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &lsquo;At the Top, Burj Khalifa SKY&rsquo;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&rsquo;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&rsquo;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&rsquo;t miss. For a look at Dubai&rsquo;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&rsquo;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &ndash; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180225\",\"Title\":\"ARRIVAL AT MALDIVES AIRPORT & TRANSFER TO RESORT\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>On Arrival, Get your Speedboat&nbsp;transfer from Airport to Resort. Day Free at leisure.<\\/p>\\r\\n\\r\\n<p>Overnight at Resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180226\",\"Title\":\"DAY AT LEISURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>Spend this day on your own. Enjoy the peaceful beaches and beautiful resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180227\",\"Title\":\" DAY AT LEISURE | OPTIONAL SPA  AND WELLNESS THERAPIES | RELAXATION\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p><strong><span style=\\\"color:#4e5f70\\\">Start the day with tasty breakfast.<br \\/>\\r\\nWe recommend you pamper yourself with an indulgent spa treatment. Choose from a relaxing aroma therapy treatment or a rejuvenating body spa wellness package. Enjoy the views of the vast Indian Ocean from your own Deluxe Room.<\\/span><\\/strong><br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Guest Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180228\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180229\",\"Title\":\"DEPARTURE TO MALE AIRPORT + ARRIVAL IN DUBAI + TRANSFER TO HOTEL\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Morning after breakfast check out from resort&nbsp;and transfer to male airport for departure flight.<\\/p>\\r\\n\\r\\n<p>On Arrival at Dubai Airport,&nbsp;Get your Private transfer by Lexus from Airport to Hotel. Day Free at leisure.<\\/p>\\r\\n\\r\\n<p>Overnight at Hotel<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 King Bed With Sofa Bed\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180230\",\"Title\":\"Dhow Cruise at Marina in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>Laze off in your bed as you have a relaxed morning today. Freshen up and enjoy the breakfast. Day is free for your own leisure. You can opt for some tour or you can go shopping. Dubai is famous for its extensive-n-expensive malls with all the latest fashion, designs and technology, teeming with top brands and addictive designer boutiques. You could also opt to go to the traditional markets called souks. It will be a nice experience altogether in the traditional lanes of trade.<\\/p>\\r\\n\\r\\n<p>Evening is going to be luxuriously romantic on a&nbsp;<strong>Dhow Cruise<\\/strong>. It is a traditional wooden boat that glides along the Dubai creek under starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to hotel afterwards.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><strong>Dhow Cruise Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available.<\\/p>\\r\\n\\r\\n<p>You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 King Bed With Sofa Bed\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180231\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>This morning, after having breakfast at the hotel, we proceed for a&nbsp;<strong>half day city tour of Dubai<\\/strong>. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&rsquo;s age old culture at Al Fahidi Fort, home to Dubai&rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.<\\/p>\\r\\n\\r\\n<p><strong>BURJ KHALIFA AT 124TH FLOOR<\\/strong> (NON PRIME SLOT)<\\/p>\\r\\n\\r\\n<p>Step out onto the world&#39;s highest observation deck with an outdoor terrace.<br \\/>\\r\\nExplore&nbsp;Dubai&#39;s&nbsp;most famous landmarks with a unique interactive experience, using motion senses.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 King Bed With Sofa Bed\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180232\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>Evening is for the exciting&nbsp;<strong>Desert Safari<\\/strong>, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.<\\/p>\\r\\n\\r\\n<p>Stay overnight at hotel in Dubai.<\\/p>\\r\\n\\r\\n<p><em>PLEASE NOTE: We don&#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.<\\/em><\\/p>\\r\\n\\r\\n<p><strong>Desert Safari Information:<\\/strong><\\/p>\\r\\n\\r\\n<p>You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.<\\/p>\\r\\n\\r\\n<p>You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.<\\/p>\\r\\n\\r\\n<p>There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.<\\/p>\\r\\n\\r\\n<p>If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.<\\/p>\\r\\n\\r\\n<p>Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 King Bed With Sofa Bed\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180233\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>Morning after breakfast check out from hotel and transfer to airport for departure flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25156\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"65092.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-15\",\"Currency\":1,\"priceTripleOcc\":65093,\"priceDoubleOcc\":\"65092.50\",\"priceSingleOcc\":130185,\"priceExtraBed\":\"65092.50\",\"priceWithoutBed\":\"65092.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65092.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 Nights Stay in Maldives &amp;amp; 04 Nights Stay in Dubai on Double Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in both Countries&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Return Airport Transfers in Dubai by Lexus&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sharing Return Airport Transfers in Maldives by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary PCR Test by a Dha Approved Clinic&amp;nbsp;in Dubai Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Dhow Cruise With Dinner in Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari With BBQ Dinner in Dubai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai&amp;#39;s Iconic Burj Khalifa &amp;quot;At The Top&amp;quot; 124th Floor&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive Of All Local Taxes And Vat Except Tourism Dirhams Fee.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180225\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[180225],\"Remark\":[\"&lt;p&gt;TRANSFER BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180226\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180226],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180227\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180227],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180228\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180228],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180229\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180229],\"Remark\":[\"&lt;p&gt;TRANSFER TO DUBAI HOTEL BY LEXUS&nbsp;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"180230\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[180230],\"Remark\":[\"&lt;p&gt;TRANSFER ON SHARING BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180231\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[180231],\"Remark\":[\"&lt;p&gt;TRANSFERS ON SHARING BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180232\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[180232],\"Remark\":[\"&lt;p&gt;TRANSFER ON SHARING BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180233\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[180233],\"Remark\":[\"&lt;p&gt;TRANSFER BY LEXUS&nbsp;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Maldives,Dubai','Maldives,Indian Subcontinent,Dubai,Middle East,United Arab Emirates',NULL,'16505,8219',65093,65093,7,NULL,NULL,NULL,2,'',0,'2021-04-06 00:00:00','2021-05-15 00:00:00','2021-05-15 00:00:00',3,'Maldives,United Arab Emirates','133,228','2021-12-24 15:40:09','2021-04-06 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'enthralling-dubai-with-maldives',NULL,NULL,NULL,0),(40,25166,1,5293,0,0,0,'Honeymoon,Adventure',NULL,1,1,0,'{\"package\":{\"TPId\":25166,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-07-05\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"test\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast\",\"PackageType\":\"Honeymoon,Adventure\",\"Validity\":{\"From\":\"2021-04-06\",\"To\":\"2021-07-05\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16508,\"Title\":\"Male\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3647,\"Title\":\"Male&rsquo; Fish Market\",\"Description\":\"Fishermen lay out daily catches of tuna &amp;amp; other fish on the tiled floor of this open marketplace. One is able to find various kinds of fishes from all around.\",\"CurrencyType\":0,\"CityId\":16508,\"CityName\":\"Male\",\"Lat\":4.1800937,\"Long\":73.5095144,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16508\\/sightseeing\\/Male&rsquo;_Fish_Market_16508_1529578589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}},{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3647,\"Title\":\"Male&rsquo; Fish Market\",\"Description\":\"Fishermen lay out daily catches of tuna &amp;amp; other fish on the tiled floor of this open marketplace. One is able to find various kinds of fishes from all around.\",\"CurrencyType\":0,\"CityId\":16508,\"CityName\":\"Male\",\"Lat\":4.1800937,\"Long\":73.5095144,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16508\\/sightseeing\\/Male&rsquo;_Fish_Market_16508_1529578589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180317\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180319\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":3647,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180321\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180323\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180325\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180327\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180329\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180331\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25166\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"138160.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":138160,\"priceDoubleOcc\":\"138160.00\",\"priceSingleOcc\":276320,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"138160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":138160,\"priceDoubleOcc\":\"138160.00\",\"priceSingleOcc\":276320,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"138160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":138160,\"priceDoubleOcc\":\"138160.00\",\"priceSingleOcc\":276320,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"138160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":138160,\"priceDoubleOcc\":\"138160.00\",\"priceSingleOcc\":276320,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"138160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":134053,\"priceDoubleOcc\":\"132000.00\",\"priceSingleOcc\":270160,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"132000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":137720,\"priceDoubleOcc\":\"137500.00\",\"priceSingleOcc\":275660,\"priceExtraBed\":\"138160.00\",\"priceWithoutBed\":\"138160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"137500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25167\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"346500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":346500,\"priceDoubleOcc\":\"346500.00\",\"priceSingleOcc\":693000,\"priceExtraBed\":\"346500.00\",\"priceWithoutBed\":\"346500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"346500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25166\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"131880.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":131880,\"priceDoubleOcc\":\"131880.00\",\"priceSingleOcc\":263760,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":131880,\"priceDoubleOcc\":\"131880.00\",\"priceSingleOcc\":263760,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":131880,\"priceDoubleOcc\":\"131880.00\",\"priceSingleOcc\":263760,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":131880,\"priceDoubleOcc\":\"131880.00\",\"priceSingleOcc\":263760,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":127960,\"priceDoubleOcc\":\"126000.00\",\"priceSingleOcc\":257880,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"126000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":131460,\"priceDoubleOcc\":\"131250.00\",\"priceSingleOcc\":263130,\"priceExtraBed\":\"131880.00\",\"priceWithoutBed\":\"131880.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"131250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25167\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"330750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-05-24\",\"Currency\":1,\"priceTripleOcc\":330750,\"priceDoubleOcc\":\"330750.00\",\"priceSingleOcc\":661500,\"priceExtraBed\":\"330750.00\",\"priceWithoutBed\":\"330750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"330750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180317\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[180317],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180319\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180319],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180321\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180321],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180323\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180323],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180325\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180327\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[180327],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180329\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[180329],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180331\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[180331],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Male,Maldives','Male,Indian Subcontinent,Maldives',NULL,'16508,16505',126000,346500,6,NULL,NULL,NULL,2,'',0,'2021-04-06 00:00:00','2021-07-05 00:00:00','2021-07-05 00:00:00',3,'Maldives','133','2021-04-07 12:55:09','2021-04-06 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'test',NULL,NULL,NULL,0),(41,2551,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"18419\",\"Title\":\"Dhow Cruise Marina\",\"Details\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;90 minutes of cruising in Dubai Marina, Yacht Club and Marina Towers&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International 3-Star buffet with Veg &amp; Non Veg dishes.(If Standard Option Booked)&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International 5-Star buffet with Veg &amp; Non Veg dishes.(If Premium Option Booked)&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Access to the open air upper deck and fully air conditioned lower deck&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Welcome drinks, water, tea and coffee available&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Live performance of Tanura Dance by professional artist&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Soothing music in the background&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"Duration\":\"2 Hours\",\"Icon\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg\",\"ThumnailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg\",\"DetailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg\",\"InvnItemSysId\":\"2551\",\"From\":\"2023-09-15\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"5711\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"3150.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"2\":\"Dinner\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"&lt;div&gt;Hotel pickup and drop-off if transfer option selected&lt;\\/div&gt;&lt;div&gt;Air-conditioned vehicle&lt;\\/div&gt;&lt;div&gt;Dinner - Buffet Dinner (Veg and Nonveg options are available)&lt;\\/div&gt;&lt;div&gt;Welcome drinks, Water, Tea &amp; Coffee&lt;\\/div&gt;&lt;div&gt;Live entertainment - Tanura Show with Soft background music&lt;\\/div&gt;&lt;div&gt;90 minutes of cruising in Dubai Marina&lt;\\/div&gt;&lt;div&gt;Entry\\/Admission - Dhow Cruise Dubai Marina&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;b&gt;&lt;u&gt;Exclusions&lt;\\/u&gt;&lt;\\/b&gt;&lt;\\/div&gt;&lt;div&gt;Gratuities,&lt;\\/div&gt;&lt;div&gt;Alcohol Available for purchase at an additional cost.&lt;\\/div&gt;\",\"Advisory\":\"&lt;ul&gt;&lt;li&gt;Not wheelchair accessible&lt;\\/li&gt;&lt;li&gt;Infants must sit on laps&lt;\\/li&gt;&lt;li&gt;Children must be accompanied by an adult&lt;\\/li&gt;&lt;li&gt;Stroller accessible&lt;\\/li&gt;&lt;li&gt;Vegetarian option is available, please advise at time of booking if required&lt;\\/li&gt;&lt;li&gt;Near public transportation&lt;\\/li&gt;&lt;li&gt;Most travelers can participate&lt;\\/li&gt;&lt;li&gt;Face masks required for travelers in public areas&lt;\\/li&gt;&lt;li&gt;Face masks required for guides in public areas&lt;\\/li&gt;&lt;li&gt;Hand sanitizer available to travelers and staff&lt;\\/li&gt;&lt;li&gt;Social distancing enforced throughout experience&lt;\\/li&gt;&lt;li&gt;Regularly sanitized high-traffic areas&lt;\\/li&gt;&lt;li&gt;Gear\\/equipment sanitized between use&lt;\\/li&gt;&lt;li&gt;Transportation vehicles regularly sanitized&lt;\\/li&gt;&lt;li&gt;Guides required to regularly wash hands&lt;\\/li&gt;&lt;li&gt;Regular temperature checks for staff&lt;\\/li&gt;&lt;li&gt;Temperature checks for travelers upon arrival&lt;\\/li&gt;&lt;li&gt;Paid stay-at-home policy for staff with symptoms&lt;\\/li&gt;&lt;li&gt;Contactless payments for gratuities and add-ons&lt;\\/li&gt;&lt;li&gt;Please maintain the social distancing and follow the Government guideline.&lt;\\/li&gt;&lt;li&gt;This tour\\/activity will have a maximum of 999 travelers&lt;\\/li&gt;&lt;li&gt;Confirmation will be received at time of booking&lt;\\/li&gt;&lt;\\/ul&gt;\",\"RefundPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"ConfirmationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"ActivityGrType\":\"[\\\"Sightseeing\\\",\\\"Outdoor Activities\\\"]\",\"ActivityType\":\"[\\\"Cruise\\\"]\",\"DurationInMin\":\"120\",\"DurationStr\":\"2 Hours\",\"TimeSlots\":\"[[\\\"20:00\\\",\\\"22:00\\\"]]\",\"PickUpLocation\":\"HOTEL\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Dhow Cruise Dubai Marina, Al khail Gate phase 2 , Room 708, Dubai 251032 United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'41_1694514698_0.jpg',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 13:14:05','2023-09-15 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0),(42,2552,3,5293,1,1,1,'',NULL,3,0,0,'{\"gtxPkgId\":\"18420\",\"Title\":\"Dubai City Tour\",\"Details\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Start your day being charmed by the culture of Dubai with a tour that takes you to some of the must-see sites in the city. We begin in the historical origins of the city, in the captivating neighbourhood of Al Fahidi (formerly Bastakyia), where you&rsquo;ll find Dubai&rsquo;s ancient fortress and Dubai Museum as you wind your way through the labyrinth of small streets.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Then it&rsquo;s time to enjoy Dubai as a local &ndash; hop aboard a traditional wooden taxi, known as Abras to cross the Dubai Creek, and enjoy the spectacular view of the city unfold before you as you head towards the District of Deira. Here you will be enchanted by the large variety of exotic spices in the famous spice Souk with time to buy a souvenir whilst visiting the Gold Souk.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Take a photo in front of Dubai&rsquo;s most beautiful mosque, the awe-inspiring Grand Mosque of Jumeirah built in the medieval Fatimid tradition, before heading to the elegant Burj Al Arab Hotel where you&rsquo;ll be dazzled by its glittering exterior.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Itinerary*&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 9am - Departure from the meeting point&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 9:15am - Jumeirah Beach photo stop&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 9:45am - Jumeirah Mosque visit&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 10:10am - Marjan Gallery visit&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 10:30am - Museum visit&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 11:10am - Abra Station&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 11:20am - Spice Souq and Gold Souq visit&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 12:25pm - Al Ras Metro Station&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; 12:45pm - Dubai Mall&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;*Please note that the itinerary order, times and duration may be subject to change due to unforeseen circumstances such as heavy traffic, accidents, diversions, severe weather, etc.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Important information - There may be restrictions&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The stop at the Jumairah Mosque does not include a guided entrance of the Mosque, but should you wish to enter, the Mosque is open on Saturdays, Sundays, Tuesdays and Thursdays from 8:45am till 9:45am only. Mondays and Wednesdays from 9am to 10am and from 10:15am to 11:15am. The mosque is closed on Fridays.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;**On Fridays, the National Museum of Dubai is closed in the morning, and guests will not be able to visit it.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"Duration\":\"4 Hours\",\"Icon\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg\",\"ThumnailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg\",\"DetailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg\",\"InvnItemSysId\":\"2552\",\"From\":\"2023-09-15\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"5711\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"2150.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"&lt;div&gt;&lt;font color=&quot;000000&quot; face=&quot;Poppins, sans-serif&quot;&gt;&lt;div&gt;Guide&lt;\\/div&gt;&lt;div&gt;Audio guide&lt;\\/div&gt;&lt;div&gt;Transport&lt;\\/div&gt;&lt;div&gt;&lt;b&gt;&lt;u&gt;&lt;br&gt;&lt;\\/u&gt;&lt;\\/b&gt;&lt;\\/div&gt;&lt;div&gt;&lt;div&gt;&lt;b&gt;&lt;u&gt;Exclusions&lt;\\/u&gt;&lt;\\/b&gt;&lt;\\/div&gt;&lt;div&gt;Drinks&lt;\\/div&gt;&lt;div&gt;Meal&lt;\\/div&gt;&lt;\\/div&gt;&lt;\\/font&gt;&lt;\\/div&gt;\",\"Advisory\":\"&lt;p style=&quot;text-align: left &quot;&gt;Please be informed that correct hotel name and check-in date is essential to ensure better service to our guests. When booking a Tour in Dubai, select the destination where your hotel is located to ensure your convenience of a correct pick-up. Ladies visiting the Mosque are required to cover their head with a scarf and ensure that their arms, legs, and heads are covered at all times. Men visiting the Mosque should wear long trousers.&lt;\\/p&gt;\",\"RefundPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[\\\"Sightseeing\\\"]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"240\",\"DurationStr\":\"4 Hours\",\"TimeSlots\":\"[[\\\"09:00\\\",\\\"13:00\\\"]]\",\"PickUpLocation\":\"HOTEL\",\"PickUpTime\":\"09:00\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"70\",\"StartAgeYr\":\"1\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Dubai, UAE\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'42_1694514617_0.jpg',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 12:48:33','2023-09-15 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0),(43,2553,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"18425\",\"Title\":\"Burj Khalifa Observation Deck\",\"Details\":\"&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Level 124:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Be thrilled by the world\'s fastest double-deck elevators, cruising at 10m\\/s.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Take a closer look at the world below through avant-garde, high powered, telescopes.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Step out onto the public outdoor observation terrace overlooking the ever-growing skyline.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Level 125:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;At 456 meters, Level 125 offers a spacious deck tastefully decorated in Arabic mashrabiya for stunning 360-degree views.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Capture your Burj Khalifa moments forever and integrate reality and special effects with green screen photography.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Set off on a virtual reality experience to the pinnacle of Burj Khalifa.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Enjoy a new immersive experience step on an inspired glass-floor with a twist. Feel the glass crack underneath your feet, as you explore the lofty heights from 456 meters in the air.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Level 148:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Enjoy a personalized tour, guided by a Guest Ambassador.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Step out onto the world\'s highest observation deck with an outdoor terrace at 555 meters.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif&quot;&gt;Refresh yourself with signature refreshments at SKY lounge.&lt;\\/span&gt;\",\"Duration\":\"2 Hours\",\"Icon\":\"\",\"ThumnailImg\":\"\",\"DetailImg\":\"\",\"InvnItemSysId\":\"2553\",\"From\":\"2023-09-15\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"5711\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"4250.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"&lt;ul&gt;&lt;li&gt;Admission tickets for at the top of the Burj Khalifa&lt;\\/li&gt;&lt;li&gt;Access to the telescopes on the observation deck&lt;\\/li&gt;&lt;li&gt;Wi-Fi throughout the attraction&lt;\\/li&gt;&lt;li&gt;Set off on a virtual reality experience to the pinnacle of Burj Khalifa&lt;\\/li&gt;&lt;li&gt;Entry\\/Admission - Burj Khalifa&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;b&gt;&lt;u&gt;Exclusions&lt;\\/u&gt;&lt;\\/b&gt; : Hotel transfers&lt;\\/p&gt;\",\"Advisory\":\"&lt;ul&gt;&lt;li&gt;&lt;b&gt;Wheelchair accessible&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Stroller accessible&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Near public transportation&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Transportation is wheelchair accessible&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Surfaces are wheelchair accessible&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Most travelers can participate&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Face masks required for travelers in public areas&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Face masks required for guides in public areas&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Face masks provided for travelers&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Hand sanitizer available to travelers and staff&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Social distancing enforced throughout experience&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Regularly sanitized high-traffic areas&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Gear\\/equipment sanitized between use&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Transportation vehicles regularly sanitized&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Guides required to regularly wash hands&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Regular temperature checks for staff&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Temperature checks for travelers upon arrival&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Paid stay-at-home policy for staff with symptoms&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Contactless payments for gratuities and add-ons&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;This experience requires good weather. If it&rsquo;s canceled due to poor weather, you&rsquo;ll be offered a different date or a full refund&lt;\\/b&gt;&lt;\\/li&gt;&lt;li&gt;&lt;b&gt;Confirmation will be received at time of booking&lt;\\/b&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"RefundPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[\\\"Sightseeing\\\",\\\"Indoor Activity\\\"]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"120\",\"DurationStr\":\"2 Hours\",\"TimeSlots\":\"[[\\\"__:__\\\",\\\"__:__\\\"]]\",\"PickUpLocation\":\"\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Burj Khalifa, 1 Mohammed Bin Rashid Boulevard Downtown Dubai, Dubai 9440 United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'43_1694514502_0.png',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 13:28:06','2023-09-15 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0),(44,2554,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"18426\",\"Title\":\"Dubai Aquarium &amp; Underwater Zoo\",\"Details\":\"&lt;p&gt;Dubai Aquarium &amp; Underwater Zoo is located at The Dubai Mall, the largest mall in the world. Rising to the third floor of The Dubai Mall, the aquarium is home to 140 species of sea life and offers many incredible ways to experience the underwater world. Don&rsquo;t miss the giant 10 million-litre tank at the Dubai Aquarium and Underwater Zoo, which contains more than 33,000 aquatic animals and the largest collection of sand tiger sharks including the 40 year old giant crocodile weighing 750 kg and measuring over 5m in length. Stroll through a 48m tunnel, with the aquarium enveloping you from overhead and around. It&rsquo;s a complete fish-eye view, with sand tiger sharks and stingrays swimming overhead.&lt;br&gt;&lt;\\/p&gt;\",\"Duration\":\"120\",\"Icon\":\"\",\"ThumnailImg\":\"\",\"DetailImg\":\"\",\"InvnItemSysId\":\"2554\",\"From\":\"2021-04-07\",\"To\":\"2021-10-31\",\"Currency\":1,\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"1390.00\",\"ChildEntryFee\":\"1390.00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[{\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"949\",\"ChildCost\":\"949\",\"AdultMarkup\":\"50\",\"ChildMarkup\":\"50\",\"NetAdultCost\":\"999\",\"NetChildCost\":\"999\"},{\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"949\",\"ChildCost\":\"949\",\"AdultMarkup\":\"50\",\"ChildMarkup\":\"50\",\"NetAdultCost\":\"999\",\"NetChildCost\":\"999\"}],\"PvtCost\":[{\"PaxCount\":1,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"3285.00\",\"ChildCost\":\"3285.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"3335.00\",\"NetChildCost\":\"3335.00\"},{\"PaxCount\":1,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"3285.00\",\"ChildCost\":\"3285.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"3335.00\",\"NetChildCost\":\"3335.00\"},{\"PaxCount\":2,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"1645.00\",\"ChildCost\":\"1645.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"1695.00\",\"NetChildCost\":\"1695.00\"},{\"PaxCount\":2,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"1645.00\",\"ChildCost\":\"1645.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"1695.00\",\"NetChildCost\":\"1695.00\"},{\"PaxCount\":3,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"1095.00\",\"ChildCost\":\"1095.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"1145.00\",\"NetChildCost\":\"1145.00\"},{\"PaxCount\":3,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"1095.00\",\"ChildCost\":\"1095.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"1145.00\",\"NetChildCost\":\"1145.00\"},{\"PaxCount\":4,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"821.00\",\"ChildCost\":\"821.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"871.00\",\"NetChildCost\":\"871.00\"},{\"PaxCount\":4,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"821.00\",\"ChildCost\":\"821.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"871.00\",\"NetChildCost\":\"871.00\"},{\"PaxCount\":5,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"875.00\",\"ChildCost\":\"875.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"925.00\",\"NetChildCost\":\"925.00\"},{\"PaxCount\":5,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"875.00\",\"ChildCost\":\"875.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"925.00\",\"NetChildCost\":\"925.00\"},{\"PaxCount\":6,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"730.00\",\"ChildCost\":\"730.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"780.00\",\"NetChildCost\":\"780.00\"},{\"PaxCount\":6,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"730.00\",\"ChildCost\":\"730.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"780.00\",\"NetChildCost\":\"780.00\"},{\"PaxCount\":7,\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"625.00\",\"ChildCost\":\"625.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"675.00\",\"NetChildCost\":\"675.00\"},{\"PaxCount\":7,\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"625.00\",\"ChildCost\":\"625.00\",\"AdultMarkup\":\"50.00\",\"ChildMarkup\":\"50.00\",\"NetAdultCost\":\"675.00\",\"NetChildCost\":\"675.00\"}],\"OtherInclusion\":\"&lt;p&gt;Pick up from your hotel (if sharing\\/private transfer option selected)&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;Entrance Ticket to Aquarium &amp; Under Water Zoo&lt;\\/p&gt;&lt;p&gt;Drop off at your Hotel (If transfer option selected)&lt;\\/p&gt;\",\"Advisory\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Not Inclusive Of&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Tips and gratuities&lt;\\/p&gt;&lt;p&gt;Alcoholic beverages&lt;\\/p&gt;&lt;p&gt;Quad bike&lt;\\/p&gt;&lt;p&gt;VIP service&lt;\\/p&gt;&lt;p&gt;Sand boarding&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Validity&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;The voucher is only valid on the specified date and time&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Eligibility&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;Children aged 0-3 can join this activity free of charge provided they will not occupy separate seats&lt;\\/p&gt;&lt;p&gt;Children aged 3 &amp; above will be charged the same rate as adults&lt;\\/p&gt;&lt;p&gt;There are no child tickets available for this package&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Prohibitions &amp; Limitations&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;This activity is not recommended for those with medical conditions (high blood pressure, epilepsy, etc.), pregnant women, or seniors&lt;\\/p&gt;\",\"RefundPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;Full refunds will be issued for cancellations made at least 72 hour(s) before the selected activity date&lt;\\/p&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Voucher Type&lt;\\/span&gt;&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;You can present either a printed or mobile voucher&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Pick Up Information&lt;\\/span&gt;&lt;\\/div&gt;&lt;div&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/div&gt;&lt;div&gt;Hotel Pick Up Information, Operator will reconfirm your pick up time in advance&lt;\\/div&gt;&lt;div&gt;Be at your hotel lobby 10 minutes before your selected pick up time&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Other Pick Up Information&lt;\\/span&gt;&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;If your driver is late, please contact 971 42 522 705&lt;\\/div&gt;&lt;div&gt;Please note: Pick up is available from hotels in Dubai only&lt;\\/div&gt;&lt;div&gt;Pick up service is not available from Abu Dhabi, Sharjah &amp; Ajman, Al Maha Resort, Jebel Ali, Bab Al Shams, Discovery Garden, and Investment City&lt;\\/div&gt;&lt;div&gt;Pick up from Dubai Airport is available from Holiday Inn Express Dubai Airport Hotel. To go there, you can use a local taxi (recommended) or hotel shuttle bus (both are chargeable)&lt;\\/div&gt;&lt;div&gt;Since this is a shared transfer, please be patient in case of delays along the pick up route&lt;\\/div&gt;&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"ConfirmationPolicy\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;You will receive confirmation of your booking instantly via email. In the event that you do not receive an email from us, please check your Spam folder or notify us via email on activitiesineedtrip.com&lt;br&gt;&lt;\\/p&gt;\",\"ActivityGrType\":\"[\\\"Indoor Activity\\\"]\",\"ActivityType\":\"[\\\"Wildlife\\\"]\",\"DurationInMin\":\"0\",\"DurationStr\":\"120\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"70\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"DUBAI MALL\"}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'44_1694514321_0.jpg',NULL,NULL,0,'',0,'2021-04-07 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-12 16:17:23','2021-04-07 00:00:00',1,1,'0','0','0','','','',NULL,'',NULL,NULL,NULL,0),(45,2555,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"18427\",\"Title\":\"Dubai Frame\",\"Details\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(68, 68, 68) font-family: halyard-text, sans-serif font-size: 17px text-align: start&quot;&gt;The Dubai Frame stands 493 feet tall, giving visitors a bird\'s eye view of the sprawling city of Dubai. The design was selected from over 900 proposals as part of a competition by the government of Dubai in 2009, and was opened in January 2018. Framing the past (Old Dubai) on one side and the present (New Dubai) on the other, this Dubai landmark is the largest frame in the world, and one that you just cannot miss!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"Duration\":\"2 Hours\",\"Icon\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617787105.jpg\",\"ThumnailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617787105.jpg\",\"DetailImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617787105.jpg\",\"InvnItemSysId\":\"2555\",\"From\":\"2023-09-14\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"5711\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"1500.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"&lt;ul&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased position: relative&quot;&gt;Entry to Dubai Frame&lt;\\/li&gt;&lt;\\/ul&gt;\",\"Advisory\":\"&lt;ul&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;It is highly recommended to book your Dubai Frame tickets in advance, especially on weekdays. This will guarantee your entry for the selected slot.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Due to safety reasons only up to 5 members of single groups are allowed per entry to avoid overcrowding at the venue.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Child tickets are available at reduced prices. This applies to children between ages 3 to 12. However, they must be accompanied by an adult. Free entry will be granted for children below 3 years.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;People of determination along with 2 companions may enter free of charge.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Luggage and large bags will not be permitted inside Dubai Frame. You are required to deposit these at a locker at a Gate 4 counter during the duration of your visit.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Do not lean over the railing.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Toys and sharp tools aren\'t allowed in the premises.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Since strollers can damage the glass flooring, it will not be allowed within the venue. Parents with infants are advised to deposit the stroller at the entrance and carry their child during the visiting period.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Photography is strictly prohibited in both galleries. However, other parts of the Dubai Frame permit photography.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;You will not be allowed to bring in any food or beverage items into the venue.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Pets are not allowed into the attraction.&nbsp;&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Smoking is strictly prohibited.&lt;\\/li&gt;&lt;li style=&quot;outline: none -webkit-font-smoothing: antialiased&quot;&gt;Please wear respectful clothing before entering the Dubai Frame.&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;\\/p&gt;\",\"RefundPolicy\":\"&lt;span style=&quot;color: rgb(68, 68, 68) font-family: halyard-text, sans-serif font-size: 15px&quot;&gt;These tickets are Non-refundable&lt;\\/span&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;\\/p&gt;&lt;div&gt;&lt;span style=&quot;color: rgb(68, 68, 68) font-family: halyard-text, sans-serif font-size: 15px&quot;&gt;These tickets can\'t be cancelled&lt;\\/span&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"ConfirmationPolicy\":\"&lt;br&gt;\",\"ActivityGrType\":\"[\\\"Indoor Activity\\\"]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"120\",\"DurationStr\":\"2 Hours\",\"TimeSlots\":\"[[\\\"09:00\\\",\\\"21:00\\\"]]\",\"PickUpLocation\":\"\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Gate 4, Zabeel Park, Dubai, United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'45_1694589382_0.jpg',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 15:41:18','2023-09-15 00:00:00',1,1,'1','1','0','','','',NULL,'',NULL,NULL,NULL,0),(46,25187,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25187,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/HONEYMOON_IN_SANDIES_BATHALA_RESORT_70.jpg\",\"BookingValidUntill\":\"2021-10-30\",\"AdvBookingDays\":10,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Bungalow + 2 Nights Stay in Water Bungalow on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary RT-PCR Test&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Selected House spirits and cocktails served between 06:00 pm to 12:00 midnight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Honeymoon Freebies&lt;\\/strong&gt; - Flowers setup in the room upon arrival.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SANDIES BATHALA RESORT - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5912\",\"SupplierName\":\"YOUNGISTAN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480527,\"Name\":\"Sandies Bathala Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"4.0702852\",\"Long\":\"72.9461981\",\"Address\":\"Bathalaa, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5912,\"SupplierName\":\"YOUNGISTAN\",\"priceaditionals\":null,\"RoomTypeName\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180462\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<ul>\\r\\n<\\/ul>\\r\\n\\r\\n<p><strong>STAY 1 - BEACH BUNGALOW<\\/strong><br \\/>\\r\\nBeach bungalows face the pristine and shallow water of the lagoon and have private deck veranda with direct access to the beach.&nbsp;Rooms feature custom-designed furniture, independent air conditioning, ceiling fan and bathroom with double basin and open-air shower.<\\/p>\\r\\n\\r\\n<p><strong>STAY 2 - WATER&nbsp;BUNGALOW<\\/strong><br \\/>\\r\\nWater bungalows built on stilts over the lagoon and on two separate piers host private terrace. Rooms are equipped with climate control, handmade wooden parquet doors, tasteful furnishings including custom made furniture, king size bed and sofa bed. Bathrooms have twin basins and a spacious walk-in shower.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180463\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180464\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180465\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180466\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2N BEACH BUNGALOW 2N WATER BUNGALOW\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25187\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"63000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-23\",\"To\":\"2021-10-30\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"63000.00\",\"priceWithoutBed\":\"63000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Bungalow + 2 Nights Stay in Water Bungalow on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan (Breakfast \\/ Lunch \\/ Dinner \\/ Drinks \\/ Snacks unlimited)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary RT-PCR Test.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Selected House spirits and cocktails served between 06:00 pm to 12:00 midnight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST \\/ Maldivian Tax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on land Package Price (Guest can claim the same while filing ITR)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink placed on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast , lunch and dinner served at the Galley restaurant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Soft drink fruit juices beer, house wine, tea and American coffee , served at the Island Bar from 10:00 Am 12:00 Am&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Selected cocktails and spirits (Champagne not included ) served at the Island Bar from 18:00 Pm -12:00 Am&lt;br \\/&gt;\\r\\n\\t&amp;radic; Mini fridge in the room&lt;br \\/&gt;\\r\\n\\t&amp;radic; Wi-Fi internet.&lt;br \\/&gt;\\r\\n\\t&amp;radic; Sun Loungers and Beach towels.&lt;br \\/&gt;\\r\\n\\t&amp;radic; Air-conditioned gym.&lt;br \\/&gt;\\r\\n\\t&amp;radic; Beach Valley.&lt;br \\/&gt;\\r\\n\\t&amp;radic; Exclusive Beachfront Swimming Pool&lt;br \\/&gt;\\r\\n\\t&amp;radic; Luxurious Resort Amenities\\r\\n\\t&lt;p&gt;&lt;strong&gt;Honeymoon Freebies&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Flowers setup in the room upon arrival.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180462\":[{\"Sequence\":[0],\"TPInvnSysId\":[180462],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180463\":[{\"Sequence\":[0],\"TPInvnSysId\":[180463],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180464\":[{\"Sequence\":[0],\"TPInvnSysId\":[180464],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180465\":[{\"Sequence\":[0],\"TPInvnSysId\":[180465],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180466\":[{\"Sequence\":[0],\"TPInvnSysId\":[180466],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',63000,63000,4,NULL,NULL,NULL,2,'',0,'2021-08-23 00:00:00','2021-10-30 00:00:00','2021-10-30 00:00:00',3,'Maldives','133','2022-01-24 14:13:45','2021-08-23 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'sandies-bathala-resort-split-stay',NULL,NULL,NULL,0),(47,25189,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25189,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/sun_siyam_olhuveli_-_split_stay_1627644032.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;From stepping off your flight, this expansive island of Olhuveli is just a 45 minute speedboat ride away. With no need for a seaplane, jump straight into exploring our two islands, or simply sink into blissful relaxation. This time together is all yours.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Traditional Maldives meets modern design at Sun Siyam Olhuveli, with&amp;nbsp;accommodations&amp;nbsp;ranging from Maldivian-inspired suites to sleek contemporary villas. Designed to cater to your every whim, we&amp;rsquo;ve three pools to choose from, including an adults-only infinity pool that never fails to impress &amp;ndash; but be warned, the lagoon may entice you into adventure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It all begins on the water, and whether it&amp;rsquo;s parasailing, kitesurfing or diving, there&amp;rsquo;s countless ways to&amp;nbsp;stay active. Our outstanding cuisine holds the ocean at its heart, too, with creative menus served across our selection of&amp;nbsp;restaurants and bars, all prepared by world-class chefs.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SUN SIYAM OLHUVELI \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476243,\"Name\":\"SUN SIYAM OLHUVELI MALDIVES\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\" South Male Atoll, Olhuveli Male, 08400, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4815965,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476243\\/5293_01612436649.jpg\"},{\"ImagId\":4815966,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476243\\/5293_11612436649.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Traditional Maldives meets modern design at Sun Siyam Olhuveli, with&Acirc;&nbsp;&lt;a href=&quot;https:\\/\\/www.sunsiyam.com\\/sun-siyam-olhuveli\\/accommodation\\/&quot;&gt;accommodations&lt;\\/a&gt;&Acirc;&nbsp;ranging from Maldivian-inspired suites to sleek contemporary villas. Designed to cater to your every whim, we&acirc;&euro;&trade;ve three pools to choose from, including an adults-only infinity pool that never fails to impress &acirc;&euro;&ldquo; but be warned, the lagoon may entice you into adventure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It all begins on the water, and whether it&acirc;&euro;&trade;s parasailing, kitesurfing or diving, there&acirc;&euro;&trade;s countless ways to&Acirc;&nbsp;&lt;a href=&quot;https:\\/\\/www.sunsiyam.com\\/sun-siyam-olhuveli\\/experiences\\/&quot;&gt;stay active&lt;\\/a&gt;. Our outstanding cuisine holds the ocean at its heart, too, with creative menus served across our selection of&Acirc;&nbsp;&lt;a href=&quot;https:\\/\\/www.sunsiyam.com\\/sun-siyam-olhuveli\\/restaurants-bars\\/&quot;&gt;restaurants and bars&lt;\\/a&gt;, all prepared by world-class chefs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Just 45 minutes by speedboat&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Spanning three paradise islands&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;11 bars and restaurants&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Secret shipwreck diving trips&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;World-class watersports&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476243\\/5293_796794a1b90f0589301fbf048b0c9fce1612436649.jpg\",\"AccoAminitiesMask\":\"1111011010101110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180470\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - DELUXE ROOM&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nOur standard accommodations are anything but standard. Doors open onto a spacious beachfront terrace or panoramic balcony, with the warm waters of the lagoon just a few steps away. Inside, a generously proportioned king size bedroom leads to a bathroom, with walk-in shower and dressing area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476243,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180471\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476243,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180472\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476243,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180473\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476243,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180474\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476243,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25189\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"76890.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":74327,\"priceDoubleOcc\":\"76890.00\",\"priceSingleOcc\":215292,\"priceExtraBed\":\"57667.50\",\"priceWithoutBed\":\"38445.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76890,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38445,\"CEB\":57667.5,\"COSTDO\":76890,\"COSTSO\":215292,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69201,\"COSTTO\":69201}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Stay in Deluxe Room&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies&lt;\\/strong&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fruit basket &amp;amp; a&amp;nbsp;bottle of wine upon arrival in the villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Special dinner for the couple at our A la carte restaurant ( once during stay ) 3 coarse menu&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Special evening turn down service with bed decoration on arrival night with Celebratory Cake&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;***Condition: To avail honeymoon package freebies, clients have to show a Marriage Certificate \\/ Wedding Card&amp;nbsp;not older than 12 months from their wedding date at the time of check-in at the hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180470\":[{\"Sequence\":[0],\"TPInvnSysId\":[180470],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180471\":[{\"Sequence\":[0],\"TPInvnSysId\":[180471],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180472\":[{\"Sequence\":[0],\"TPInvnSysId\":[180472],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180473\":[{\"Sequence\":[0],\"TPInvnSysId\":[180473],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180474\":[{\"Sequence\":[0],\"TPInvnSysId\":[180474],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEEDBOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',76890,76890,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:46:55','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'sun-siyam-olhuveli',NULL,NULL,NULL,0),(48,25194,1,5293,0,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":25194,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CHARDHAM_YATRA_BY_HELICOPTER_86.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;CHARDHAM YATRA 2021 - BY HELICOPTER&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\nEx-Sahastradhara (Dehradun)&lt;br \\/&gt;\\r\\n05&amp;nbsp;Nights &amp;amp; 06&amp;nbsp;Days Package (with complimentary night stay in Dehradun)&lt;br \\/&gt;\\r\\n&lt;strong&gt;Routing&lt;\\/strong&gt;: Dehradun&amp;ndash;Yamunotri&amp;ndash;Gangotri&amp;ndash;Kedarnath (Sersi)&amp;ndash;Badrinath&amp;ndash;Dehradun&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dehradun\",\"DestinationPlacesSysId\":7680,\"SourcePlaces\":\"Dehradun\",\"SourcePlaceSysId\":7680,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHARDHAM YATRA 2021 BY HELICOPTER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6311\",\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Cab,Airport Transfers,Train Station Transfers,Intercity Transfers,Guided Tours,Helicopter\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7680,\"Title\":\"Dehradun\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480845,\"Name\":\"Hotel Madhuban\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"97, Rajpur Rd, Hathibarkala Salwala, Dehradun, Uttarakhand 248001\"},\"Images\":[],\"CityId\":7680,\"Brief\":\"&lt;p&gt;The Madhuban Group of Hotels have been enchanting discerning business and leisure travelers to the Himalayan foothills for over 40 years.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480845\\/5293_718f285ad3a9d227f6736a29fb99a6e21617798636.jpg\",\"AccoAminitiesMask\":\"1100010000001111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":30178,\"Title\":\"Yamunotri\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480846,\"Name\":\"Yamunotri Cottages\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9736194\",\"Long\":\"78.4403919\",\"Address\":\"Near Helipad, Kharsali Village, Janki Chatti, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":30178,\"Brief\":\"&lt;p&gt;Welcome to your Chardham Yatra, with The pioneer of &quot; luxury pilgrimage in Yamunotri ,&quot; The Yamunotri Cottages is located in Kharsali village which is situated around Yamuna&amp;#39;s father&amp;#39;s home and placed between the Yamuna and the river Hiranyabahu It is adjacent to the only Helipad in Yamunotri amidst the stunning beauty and majestic snow clad Himalayas, beautiful meadows, conifer trees and stepping paddies. The Yamunotri Cottages is the ultimate place to relax and calm your mind during your &amp;#39;Chardham Yatra&amp;#39; at Kharsali.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480846\\/5293_5078cc856022b585ff91fa3876834a721617864758.jpg\",\"AccoAminitiesMask\":\"1110010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":10105,\"Title\":\"Gangotri\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480850,\"Name\":\"Prakriti The Retreat\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.04104019999999\",\"Long\":\"78.7983675\",\"Address\":\"Uttarkashi - Gangotri Rd, Dharali, Uttarakhand 249135, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818055,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480850\\/5293_01617864891.jpg\"}]},\"CityId\":10105,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480850\\/5293_906a564a0a44381874ef14ade528e52b1617864891.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":13758,\"Title\":\"Kedarnath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480855,\"Name\":\"Kanha Heli Resorts\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Triyuginarayan road, Global Vectra Helipad PO Triyuginarain, Uttarakhand 246471 India\"},\"Images\":[],\"CityId\":13758,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480855\\/5293_a9089dfc78d9ce4bbc8d990ab4ba4baf1617864816.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":2001,\"Title\":\"Badrinath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480852,\"Name\":\"New Hotel Snow Crest\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.740506\",\"Long\":\"79.496166\",\"Address\":\"Main Road Badrinath Dham, Badrinath, Uttarakhand 246422, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818054,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480852\\/5293_01617863278.jpg\"}]},\"CityId\":2001,\"Brief\":\"&lt;p&gt;Hotel Snow Crest - a star category hotel, provides its patrons with all modern facilities during their stay. The decor of the rooms have been designed to make you feel right at home with wooden furnishing to keep you warm throughout your stay. With a dedicated team of staff working around the clock, we promise to make your stay a pleasant one.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480852\\/5293_633e839678869891d25e7007d6e58dc01617863278.jpg\",\"AccoAminitiesMask\":\"1100010000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180496\",\"Title\":\"Arrival at Dehradun\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;You will be received at the airport \\/ railway station&lt;br \\/&gt;\\r\\nA cab will pick you up from airport \\/ railway station and drop you to the Hotel&lt;br \\/&gt;\\r\\nYou will be briefed by GVHL staff for your onward journey&lt;br \\/&gt;\\r\\nComplimentary stay &amp;amp; dinner at hotel&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7680,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480845,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180497\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7680,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180498\",\"Title\":\"Dehradun - Yamunotri\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;br \\/&gt;\\r\\n0530hrs &amp;ndash; Departure from Dehradun Hotel to Sahastradhara Helipad &amp;ndash; Packed breakfast will be provided by the hotel.&lt;br \\/&gt;\\r\\n0600hrs &amp;ndash; Departure from Sahastradhara Heliport by Helicopter for Kharsali&lt;br \\/&gt;\\r\\n0635hrs - Once you land at Kharsali Helipad for Yamunotri, you are made to check-in to your Hotel. Post a quick break, you visit the Yamunotri temple for darshan which is approximately a 6-hour trek both ways; if required, You will be provided with palkis\\/pony for this trek.&lt;br \\/&gt;\\r\\nOne of the four sites of Chota Chardham Yatra of Uttarakhand, Yamunotri (3293 m) is in the lap of River Goddess Yamuna. Yamunotri, lying on the top of Bandar Poonch Parvat, is the source of Yamuna River. The main attractions here are Goddess Yamuna and the natural hot springs at Janki Chatti, which are around 7 km away. The actual Champasar glacier is at an altitude of 4421 m above the seal level and is inaccessible. The temple, placed on the left bank of Yamuna River, was erected by Maharaja Pratap Shah of Tehri Garhwal. The idol of the Goddess here is in black marble.&lt;br \\/&gt;\\r\\nOvernight stay at the hotel, lunch &amp;amp; dinner included.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30178,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180499\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30178,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180500\",\"Title\":\"Yamunotri - Gangotri\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;0630hrs - Departure from Kharsali to Harsil by Helicopter (approx. flight time 25 mins). Packed breakfast will be provided before departure.&lt;br \\/&gt;\\r\\n0700hrs - Arrive at Harsil helipad, Gangotri; You will be received by our representative who&amp;rsquo;ll ensure that your luggage reaches your hotel room where a taxi will take you for VIP darshan to Gangotri temple which is 24 kms (45-60 mins) from the resort.&lt;br \\/&gt;\\r\\nGangotri, the origin of the River Ganges and seat of the goddess Ganga, is one of the four sites in the Chota Char Dham pilgrimage circuit. The original Gangotri Temple was built by the Nepalese general Amar Singh Thapa. The river is called Bhagirathi at the source and acquires the name Ganga from Devprayag onwards where it meets the Alaknanda.&lt;br \\/&gt;\\r\\nThe resort itself is picturesque alongside the Bhagirath river, nestled in the Himalayan mountains.&lt;br \\/&gt;\\r\\nVegetarian lunch &amp;amp; dinner will be served; your night halt will be memorable.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480850,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180501\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180502\",\"Title\":\"Gangotri - Kedarnath\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;0700hrs &amp;ndash; Departure from Harsil via helicopter for Kedarnath (Sersi\\/Phata\\/Guptkashi). Packed breakfast will be provided by the hotel.&lt;br \\/&gt;\\r\\n0730hrs &amp;ndash; Arrival at Kedarnath, as per government rules and regulations the helicopter will be changed at Sersi\\/Phata\\/Guptkashi and shuttle tickets will be provided. Upon arrival at Kedarnath You will be met by our representatives who will escort you to the holy shrine. The temple is about 500 metres and will take approximately 15 mins for you to reach. We will provide you with VIP darshan slips so that you can avoid the hustle of long queues at Kedarnath temple. The cost for these slips is INR 2500\\/- per person but it is included in your package.&lt;br \\/&gt;\\r\\nLord Shiva is worshipped as Kedarnath, the &amp;#39;Lord of Kedar Khand&amp;#39;, the historical name of the region. Surrounded by snow-capped peaks, Kedarnath is the most remote site among all Char Dham in Uttarakhand. This temple is the highest among the 12 Jyotirlingas.&lt;br \\/&gt;\\r\\nThe Kedarnath temple was originally constructed by the Pandava brothers of the Hindu Epic, Mahabharata and later renovated by Adi Shankaracharya during the 8th century. At the temple entrance gate, there is a Nandi bull statue (the divine Bull of the Lord). Pay respects to Bull and the divine lingam of Lord Shiva.&lt;br \\/&gt;\\r\\nAfter performing Darshan, You will be provided return shuttle tickets to Sersi\\/Phata\\/Guptkashi.&lt;br \\/&gt;\\r\\nUpon arrival at the hotel, we shall provide you with a cab for Triyuginarayan Temple Darshan provided complimentary by US.&lt;br \\/&gt;\\r\\nNight halt and meals have been catered for at Sersi\\/Phata\\/Guptkashi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480855,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180503\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180504\",\"Title\":\"Kedarnath - Badrinath\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;0830hrs - Departure from Kedarnath for Badrinath after breakfast.&lt;br \\/&gt;\\r\\n0910hrs &amp;ndash; Arrival at Badrinath; upon arrival you will be provided a cab which will take you to the Hotel to check-in and freshen up. Post this the cab will take you to the Badrinath Temple for darshan.&lt;br \\/&gt;\\r\\nThe holy temple of Lord Vishnu, known as Lord Badri here is one of the divine 108 Divya Desams. Take blessings of the Lord. The image of the presiding deity worshipped in the temple is 1 m (3.3 ft) tall, the black stone statue of Vishnu in the form of Badri-Narayan. The statue is considered by many Hindus to be one of eight Swayam Vyakta Kshetras, or self-manifested statues of Vishnu.&lt;br \\/&gt;\\r\\nRest of the day is off; lunch &amp;amp; dinner have been catered for and overnight stay in Badrinath.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480852,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180505\",\"Title\":\"Badrinath - Dehradun \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;0930hrs &amp;ndash; Departure from Badrinath by Helicopter after breakfast&lt;br \\/&gt;\\r\\n1030hrs - Arrival at Sahastradhara Helipad, Dehradun&lt;br \\/&gt;\\r\\n1100hrs - A cab will be provided till the Airport \\/ Railway Station for your onward journey&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm by Uttarakhand Government.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maximum 06 Passengers will be allowed in 01 Helicopter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Total passenger weight will not be in excess of 430 Kgs.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maximum Baggage Allowance 5Kgs\\/Person, Passenger may carry only one small pack of not more than 2 Kgs of weight in Flight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Excess volume baggage would not be allowed on Helicopter flight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All timings mentioned are indicative&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Assistance for priority Darshan at all Dham&amp;rsquo;s will be provided in your package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price is subject to change without prior notice. Please confirm in advance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Special puja arrangements at all locations not included in this package&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal nature such as laundry, extra bedding, telephone calls, tips, gratuities, table drink, room service, medical evacuation due to ill health&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Price includes CharDham Darshans by helicopter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price includes the cost of the vehicle at all locations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price includes the cost of night stay at all the locations on a twin\\/triple sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary stay and dinner at Dehradun Hotel one day before commencement of Yatra.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Vegetarian Meals at all locations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Palki &amp;amp; Pony Charges are included at Yamunotri.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price includes assistance in priority darshan at all the four temples. Any special puja charges will have to be paid directly by passengers.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180496\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[180496],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180497\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180497],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180498\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180498],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"180499\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180499],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180500\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180500],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"180501\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180501],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180502\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180502],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"180503\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[180503],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180504\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[180504],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"180505\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[180505],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dehradun,Yamunotri,Gangotri,Kedarnath,Badrinath','Dehradun,Uttarakhand,Indian Subcontinent,North India,India,Yamunotri,Gangotri,Kedarnath,Badrinath','','7680,30178,10105,13758,2001',0,0,5,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 14:31:27','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'chardham-yatra-2021-by-helicopter',NULL,NULL,NULL,0),(54,25356,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25356,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ALLURING_NORTH_EAST__49.jpg\",\"BookingValidUntill\":\"2021-07-15\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;Tour Starts : Ex Bagdodra&lt;br \\/&gt;\\r\\nDuration: 04 Nights\\/05 Days&lt;br \\/&gt;\\r\\nGangtok &amp;ndash; Tsomgo Lake - Darjeeling&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bagdogra\",\"DestinationPlacesSysId\":2012,\"SourcePlaces\":\"Bagdogra\",\"SourcePlaceSysId\":2012,\"AgencyName\":\"I Need Trip\",\"Name\":\"ALLURING NORTH EAST \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5870\",\"SupplierName\":\"SATGURU TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10106,\"Title\":\"Gangtok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481043,\"Name\":\"Potala Guest House (Jain Group of Hotels) \",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Tibet Road, East Sikkim, Gangtok, Arithang, Gangtok, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818098,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617964692.jpg\"},{\"ImagId\":4818101,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617965458.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Hotel Potala is one of the best budget properties in Gangtok serving guests and it is one of the most popular properties in Gangtok for &lt;strong&gt;vegetarian people&lt;\\/strong&gt;. To keep the Indian religious faiths in mind we provide Jain Foods also on request. &nbsp;Among all our five properties in Gangtok Hotel Potala is located closest from MG Marg and its situated at Tibet Road its just 3min walk from MG Marg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;30 ROOMS ( 19 deluxe, 1 six bedded deluxe , 1 four bedded deluxe, 1 family room super deluxe, 3 triple bedded super deluxe, 5 triple bedded deluxe )&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_43b7d433b941a64fb8b7c12e918845441617965440.png\",\"AccoAminitiesMask\":\"1010000000000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481025,\"Name\":\"Hotel Doma Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nam Nang Road Near BB-Gangtok-Namnag Road-Namnag Commercial Complex, Gangtok, Sikkim\"},\"Images\":{\"Image\":[{\"ImagId\":4818088,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617905789.jpg\"},{\"ImagId\":4818089,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617906338.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Doma Palace Hotels is a chain of four premium accommodation outlets situated in the Eastern &amp; Northern Districts of Sikkim. &lt;strong&gt;The Doma Palace Hotels &lt;\\/strong&gt;was established with an objective to promote and dispense pleasant and fairly memorable touring experiences to the incoming tourists &amp; locals who pay Sikkim a visit. And the management team at Doma inherently believes that a trip to this exotic kingdom cannot be cannot be considered a success, unless you&rsquo;ve experienced the comfort of premium accommodating facilities at Doma Palace Hotels.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_0488d14b7df0237fec635f2623ae62201617906338.png\",\"AccoAminitiesMask\":\"1110010010001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19295,\"Title\":\"Gangtok half day sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":401,\"Title\":\"Darjeeling City Tour\",\"Description\":\"One of the hill stations situated in India which provides with the diverse beauty in itself. A day spent is not enough to capture the beauty of the entire city and one needs to spend at least 2-3 days.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2006\\/thumb\\/City Tour_548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":7556,\"Title\":\"Darjeeling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480834,\"Name\":\"Hotel Pink Mountain\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"HOTEL PINK MOUNTAIN Gandhi Road, Near Bethany School Darjeeling-734101\"},\"Images\":[],\"CityId\":7556,\"Brief\":\"&lt;p&gt;Located in the heart of the Darjeeling City. Hotel Pink Mountain has been recognised as on of the Top Luxury Hotels in Darjeeling.The hotel is located close to the institutions of both power and pleasure. The spectacular view of Mount Kanchenjunga from hotel window and roof top garden.The hotel offers the finest level of comfort, elegant rooms for guests who are looking for a reposeful stay after a daylong business meeting and travelling.The Hotel Pink Mountain stands proudly along Gandhi Road, Near Heritage Bethany School.Famous historical landmarks and commercial hub are within walking distance from the Hotel Pink Mountain.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480834\\/5293_d685d876b2a08612161b22d29340838b1617783602.jpg\",\"AccoAminitiesMask\":\"1110010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481050,\"Name\":\"Hotel marvel International\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"7, H.D. Lama Road, Darjjeeling, West Bengal\"},\"Images\":{\"Image\":[{\"ImagId\":4818106,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_01617977953.jpg\"}]},\"CityId\":7556,\"Brief\":\"&lt;p&gt;Created to give you the very best of &lt;strong&gt;Darjeeling &lt;\\/strong&gt;and committed to provide you with a memorable stay at this exotic setting, is &lt;strong&gt;Hotel Marvel International &amp; Restaurant&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\nElegance and Service is what we aim at and client satisfaction is what we cherish. Hotel marvel is an Oasis of elegance and luxury, offering consistently high standards of facilities and service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Marvel International Hotel &amp; RestaurantSituated in the heart of Darjeeling, Hotel Marvel International is within a convenient 10-minute walk to the famous &lt;strong&gt;Mall Road and Big Bazar&lt;\\/strong&gt;. It operates a 24-hour front desk and provides free Wi-Fi access throughout the property. cosy rooms feature wall-to-wall carpeting, a seating area and a TV with cable channels. Each room comes with an attached bathroom offering hot and cold shower facilities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International has a tour desk that can assist guests with bookings of sightseeing excursions and travel arrangements. Laundry services and meeting\\/banqueting facilities are available on request.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel offers an in-house restaurant serving a menu of local, &lt;strong&gt;South Indian and Chinese dishes.&lt;\\/strong&gt; Guests may also enjoy meals in private with room service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International is approximately 75 km from the &lt;strong&gt;New Jalpaiguri Railway Station&lt;\\/strong&gt;, while &lt;strong&gt;Bagdogra Airport&lt;\\/strong&gt; is within 70 km away. Airport transfer can be arranged at an additional charge.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt;Whats app Number&nbsp;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\n&lt;span style=&quot;background-color:#2ecc71&quot;&gt;+91 7407617766&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_f0e17ac6c0f67e5dcff0659cb5dc19a91617977953.png\",\"AccoAminitiesMask\":\"1110010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19295,\"Title\":\"Gangtok half day sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":401,\"Title\":\"Darjeeling City Tour\",\"Description\":\"One of the hill stations situated in India which provides with the diverse beauty in itself. A day spent is not enough to capture the beauty of the entire city and one needs to spend at least 2-3 days.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2006\\/thumb\\/City Tour_548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181657\",\"Title\":\"NJP Railway Station \\/ IXB Airport - Gangtok (Approx. 5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Assistance at NJP Railway station \\/ IXB Airport transfer to Gangtok. (the capital of Sikkim Suits all from tranquillity to adventure, land of monastery, mystic rituals &amp; festivals at an height of 1670 meters \\/ 5480 feet). On arrival Check-in and own activity. Overnight stay at Gangtok.<\\/p>\\r\\n\\r\\n<p><strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB)<\\/strong><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181659\",\"Title\":\"Excursion to Tsomgo Lake & Baba Mandir \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast. start an excursion to Tsomgo Lake &amp; Baba Mandir (nearly 40 kms \\/ 2 hours drive - Situated at an elevation of 3753 meters \\/ 12310 feet - The Lake is oval shaped lake and &nbsp;Nearby is the sacred Baba Mandir known to be a very holy site for all. Back to Gangtok. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2181,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2183,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181661\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181663\",\"Title\":\"Gangtok half day sightseeing - Darjeeling (Approx. 06 Hrs)   \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast proceed for half day sightseeing. Visit Do Drul Chorten, Namgyal Institute of Tibetology(closed on Sundays), Cottage Industry(closed on Sundays) , Flower Show , Banjhakri Waterfall, Ganeshtok, HanumanTok, Tashi View Pointcheck out from hotel and then transfer to Darjeeling ( 2123 mtr \\/ 70001 feet) lies the land of breathtaking beauty, sloping tea gardens with spectacular views of the Mount Everest is the Queen of the hills. On arrival check into hotel. Overnight stay at Darjeeling.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19295,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181665\",\"Title\":\"Darjeeling Sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Early Morning (at 03.45 am) visit to Tiger hill (8,400 ft.) to watch sunrise Mt. Khangchendzongha (3rd highest peak) (depend on availability of token or permit). After breakfast visit Mountaineering Institute, P.N. Zoological Park ( closed on Thursday), Tenzing Rock, Tibetan Refugee self-help Centre (closed on Sunday) Japanese Temple. Ghoom Monastery and Batasia Loop. Overnight stay at Darjeeling.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":401,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181667\",\"Title\":\"Darjeeling \\u2013 NJP RLY Station \\/ IXB Airport (Approx. 3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast transfer to <strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB) <\\/strong>for your onwards journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25356\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7810.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":10083,\"priceDoubleOcc\":\"7810.00\",\"priceSingleOcc\":22440,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":10083,\"priceDoubleOcc\":\"7810.00\",\"priceSingleOcc\":22440,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":10083,\"priceDoubleOcc\":\"7810.00\",\"priceSingleOcc\":22440,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":10083,\"priceDoubleOcc\":\"7810.00\",\"priceSingleOcc\":22440,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":11477,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":24530,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":14630,\"priceDoubleOcc\":\"14630.00\",\"priceSingleOcc\":29260,\"priceExtraBed\":\"2860.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14630.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":11587,\"priceDoubleOcc\":\"9350.00\",\"priceSingleOcc\":25410,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":11587,\"priceDoubleOcc\":\"9350.00\",\"priceSingleOcc\":25410,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":11587,\"priceDoubleOcc\":\"9350.00\",\"priceSingleOcc\":25410,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":11587,\"priceDoubleOcc\":\"9350.00\",\"priceSingleOcc\":25410,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":12980,\"priceDoubleOcc\":\"11440.00\",\"priceSingleOcc\":27500,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16060,\"priceDoubleOcc\":\"16060.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"2420.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16060.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Gangtok + 2 Nights Darjeeling&amp;nbsp;Accommodation on double sharing basis respectively.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Continental Meal Plan ( Breakfast Included only )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Exclusive Non a\\/c vehicle for transfers &amp;amp; sightseeing. Please brief to guest that vehicle will not be at disposal it will be available to guest as per itinerary only (point to point basis).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All permit fees &amp;amp; hotel taxes (as per itinerary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are valid for INDIAN NATIONALS only.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;ins&gt;&lt;strong&gt;IMPORTANT NOTES&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Vehicle Used&lt;\\/strong&gt;: &amp;nbsp;01 Indica\\/Wagon R\\/ similar for 02 pax &amp;amp; 01 Xylo \\/ Innova \\/ Scorpio for 04 &amp;amp; 06 Pax as per the above itinerary only point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Supplement Cost for Nathula Pass&lt;\\/strong&gt; @ Rs. 5000&amp;nbsp;per car will be charged extra (Monday &amp;amp; Tuesday closed).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save your&amp;nbsp;money based on their supplier relationships or at least match the price while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself will include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181657\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181657],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181659\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181659],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181661\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181661],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181663\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181663],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181665\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181665],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181667\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181667],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Gangtok,Darjeeling','Gangtok,Sikkim,Indian Subcontinent,Northeast India,India,Darjeeling,West Bengal,East India',NULL,'10106,7556',7810,16060,4,NULL,NULL,NULL,2,'',0,'2021-04-12 00:00:00','2021-07-15 00:00:00','2021-07-15 00:00:00',3,'India','101','2021-12-28 17:05:21','2021-04-12 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'alluring-north-east',NULL,NULL,NULL,0),(55,25360,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25360,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/FASCINATING_NORTH_EAST_29.jpg\",\"BookingValidUntill\":\"2021-07-15\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;Tour Starts : Ex Bagdodra&lt;br \\/&gt;\\r\\nDuration: 06&amp;nbsp;Nights\\/07&amp;nbsp;Days&lt;br \\/&gt;\\r\\nKalimpong -Darjeeling - Gangtok &amp;ndash; Tsomgo Lake&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bagdogra\",\"DestinationPlacesSysId\":2012,\"SourcePlaces\":\"Bagdogra\",\"SourcePlaceSysId\":2012,\"AgencyName\":\"I Need Trip\",\"Name\":\"FASCINATING NORTH EAST\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5870\",\"SupplierName\":\"SATGURU TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13403,\"Title\":\"Kalimpong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481022,\"Name\":\"Hotel Tres\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Primtam Road, District-Darjeeling, Kalimpong, West Bengal \"},\"Images\":{\"Image\":[{\"ImagId\":4818085,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481022\\/5293_01617902294.jpg\"}]},\"CityId\":13403,\"Brief\":\"&lt;p&gt;&lt;strong&gt;Hotel Tres&lt;\\/strong&gt; is situated 1 km from the Kalimpong Post Office and great view of the &lt;strong&gt;Himalayas&lt;\\/strong&gt;.It offers free Wi-Fi.The accommodationin Kalimpong features &lt;strong&gt;14 rooms&lt;\\/strong&gt; with vintage decor, comprising a double bed, dressingmirror and a lounge wooden chair. The rooms have a telephone, cable television,kettle, room heating system, en suite bathroom and a view of the garden.Hotel Tres offersamenities that include laundry, medical and breakfast service as well asluggage storage. It also has a restaurant that serves Indian and Chinesedelights. It offers atravel desk to assist guests visiting the Deolo Hill (4 km), Teesta River (15km) and other tourist attractions. The Siliguri Bus Station is 69 km, the NewJalpaiguri Junction Railway Station is 72 km and the Bagdogra Airport is 79 kmfrom the hotel in Kalimpong.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481022\\/5293_a5b916199d3e0d29d0343d5f90ed385e1617902294.jpg\",\"AccoAminitiesMask\":\"1110010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481008,\"Name\":\"Hotel Sood Garden Retreat\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"8.5 Miles,Rishi Road, Kalimpong, West Bengal\"},\"Images\":{\"Image\":[{\"ImagId\":4818072,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481008\\/5293_01617879089.jpg\"},{\"ImagId\":4818074,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481008\\/5293_01617879687.png\"}]},\"CityId\":13403,\"Brief\":\"&lt;p&gt;Hotel Soods Garden - 8.5 Miles is where you will find us, just 800 meters before the Hustle and Bustle of the Market area set amidst Nature with a breath taking view, on the sunniest part of the Hills. For What Ever you have in mind you cant be better Located. Near to all the site seeing interests. Laze on the rolling Lawns and Gardens or just admire the Glory of the mighty Mt. Kanchenjunga from the Restaurant, Balconies or Lawns. Let the Children get naughty on the Outdoor Play Area, swings and slides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481008\\/5293_75c516418ffb063d9c3e2be815b0a4f01617879089.jpg\",\"AccoAminitiesMask\":\"1010010000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":816,\"Title\":\"Kalimpong City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13403,\"CityName\":\"Kalimpong\",\"Lat\":27.0593562,\"Long\":88.4694535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6679\\/thumb\\/Kalimpong City Tour_299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":401,\"Title\":\"Darjeeling City Tour\",\"Description\":\"One of the hill stations situated in India which provides with the diverse beauty in itself. A day spent is not enough to capture the beauty of the entire city and one needs to spend at least 2-3 days.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2006\\/thumb\\/City Tour_548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19296,\"Title\":\"GANGTOK LOCAL SIGHTSEEING\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":7556,\"Title\":\"Darjeeling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480834,\"Name\":\"Hotel Pink Mountain\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"HOTEL PINK MOUNTAIN Gandhi Road, Near Bethany School Darjeeling-734101\"},\"Images\":[],\"CityId\":7556,\"Brief\":\"&lt;p&gt;Located in the heart of the Darjeeling City. Hotel Pink Mountain has been recognised as on of the Top Luxury Hotels in Darjeeling.The hotel is located close to the institutions of both power and pleasure. The spectacular view of Mount Kanchenjunga from hotel window and roof top garden.The hotel offers the finest level of comfort, elegant rooms for guests who are looking for a reposeful stay after a daylong business meeting and travelling.The Hotel Pink Mountain stands proudly along Gandhi Road, Near Heritage Bethany School.Famous historical landmarks and commercial hub are within walking distance from the Hotel Pink Mountain.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480834\\/5293_d685d876b2a08612161b22d29340838b1617783602.jpg\",\"AccoAminitiesMask\":\"1110010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481050,\"Name\":\"Hotel marvel International\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"7, H.D. Lama Road, Darjjeeling, West Bengal\"},\"Images\":{\"Image\":[{\"ImagId\":4818106,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_01617977953.jpg\"}]},\"CityId\":7556,\"Brief\":\"&lt;p&gt;Created to give you the very best of &lt;strong&gt;Darjeeling &lt;\\/strong&gt;and committed to provide you with a memorable stay at this exotic setting, is &lt;strong&gt;Hotel Marvel International &amp; Restaurant&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\nElegance and Service is what we aim at and client satisfaction is what we cherish. Hotel marvel is an Oasis of elegance and luxury, offering consistently high standards of facilities and service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Marvel International Hotel &amp; RestaurantSituated in the heart of Darjeeling, Hotel Marvel International is within a convenient 10-minute walk to the famous &lt;strong&gt;Mall Road and Big Bazar&lt;\\/strong&gt;. It operates a 24-hour front desk and provides free Wi-Fi access throughout the property. cosy rooms feature wall-to-wall carpeting, a seating area and a TV with cable channels. Each room comes with an attached bathroom offering hot and cold shower facilities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International has a tour desk that can assist guests with bookings of sightseeing excursions and travel arrangements. Laundry services and meeting\\/banqueting facilities are available on request.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel offers an in-house restaurant serving a menu of local, &lt;strong&gt;South Indian and Chinese dishes.&lt;\\/strong&gt; Guests may also enjoy meals in private with room service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International is approximately 75 km from the &lt;strong&gt;New Jalpaiguri Railway Station&lt;\\/strong&gt;, while &lt;strong&gt;Bagdogra Airport&lt;\\/strong&gt; is within 70 km away. Airport transfer can be arranged at an additional charge.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt;Whats app Number&nbsp;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\n&lt;span style=&quot;background-color:#2ecc71&quot;&gt;+91 7407617766&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_f0e17ac6c0f67e5dcff0659cb5dc19a91617977953.png\",\"AccoAminitiesMask\":\"1110010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":816,\"Title\":\"Kalimpong City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13403,\"CityName\":\"Kalimpong\",\"Lat\":27.0593562,\"Long\":88.4694535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6679\\/thumb\\/Kalimpong City Tour_299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":401,\"Title\":\"Darjeeling City Tour\",\"Description\":\"One of the hill stations situated in India which provides with the diverse beauty in itself. A day spent is not enough to capture the beauty of the entire city and one needs to spend at least 2-3 days.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2006\\/thumb\\/City Tour_548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19296,\"Title\":\"GANGTOK LOCAL SIGHTSEEING\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":10106,\"Title\":\"Gangtok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481025,\"Name\":\"Hotel Doma Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nam Nang Road Near BB-Gangtok-Namnag Road-Namnag Commercial Complex, Gangtok, Sikkim\"},\"Images\":{\"Image\":[{\"ImagId\":4818088,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617905789.jpg\"},{\"ImagId\":4818089,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617906338.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Doma Palace Hotels is a chain of four premium accommodation outlets situated in the Eastern &amp; Northern Districts of Sikkim. &lt;strong&gt;The Doma Palace Hotels &lt;\\/strong&gt;was established with an objective to promote and dispense pleasant and fairly memorable touring experiences to the incoming tourists &amp; locals who pay Sikkim a visit. And the management team at Doma inherently believes that a trip to this exotic kingdom cannot be cannot be considered a success, unless you&rsquo;ve experienced the comfort of premium accommodating facilities at Doma Palace Hotels.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_0488d14b7df0237fec635f2623ae62201617906338.png\",\"AccoAminitiesMask\":\"1110010010001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481043,\"Name\":\"Potala Guest House (Jain Group of Hotels) \",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Tibet Road, East Sikkim, Gangtok, Arithang, Gangtok, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818098,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617964692.jpg\"},{\"ImagId\":4818101,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617965458.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Hotel Potala is one of the best budget properties in Gangtok serving guests and it is one of the most popular properties in Gangtok for &lt;strong&gt;vegetarian people&lt;\\/strong&gt;. To keep the Indian religious faiths in mind we provide Jain Foods also on request. &nbsp;Among all our five properties in Gangtok Hotel Potala is located closest from MG Marg and its situated at Tibet Road its just 3min walk from MG Marg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;30 ROOMS ( 19 deluxe, 1 six bedded deluxe , 1 four bedded deluxe, 1 family room super deluxe, 3 triple bedded super deluxe, 5 triple bedded deluxe )&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_43b7d433b941a64fb8b7c12e918845441617965440.png\",\"AccoAminitiesMask\":\"1010000000000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":816,\"Title\":\"Kalimpong City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13403,\"CityName\":\"Kalimpong\",\"Lat\":27.0593562,\"Long\":88.4694535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6679\\/thumb\\/Kalimpong City Tour_299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":401,\"Title\":\"Darjeeling City Tour\",\"Description\":\"One of the hill stations situated in India which provides with the diverse beauty in itself. A day spent is not enough to capture the beauty of the entire city and one needs to spend at least 2-3 days.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2006\\/thumb\\/City Tour_548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19296,\"Title\":\"GANGTOK LOCAL SIGHTSEEING\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181678\",\"Title\":\"IXB Airport \\/ NJP Railway Station \\u2013 Kalimpong (Approx. 03 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Assistance at NJP Railway station \\/ IXB Airport transfer to Kalimpong located at an average elevation of 1,250 metres (4,101 ft) &amp; a scenic backdrop of the Himalayan Mountains with their snow-covered peaks and lush green surroundings. &nbsp;On arrival check into hotel. Overnight stay at Kalimpong.<\\/p>\\r\\n\\r\\n<p><strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB)<\\/strong><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13403,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481022,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481008,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181680\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13403,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181682\",\"Title\":\"Kalimpong Half day Sightseeing \\u2013 Darjeeling (Approx. 03 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast check out from hotel and proceed for half day sightseeing at Kalimpong covering Durpin Dara Hill, Morgan House, Flower Nursery, Tagore House, Deolo Hill. On arrival at Darjeeling check into hotel. Overnight stay at Darjeeling.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":816,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181684\",\"Title\":\"Darjeeling Local Sightseeing   \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast check out from hotel and proceed for half day sightseeing at Kalimpong covering Durpin Dara Hill, Morgan House, Flower Nursery, Tagore House, Deolo Hill. On arrival at Darjeeling check into hotel. Overnight stay at Darjeeling.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":401,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181686\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181688\",\"Title\":\"Darjeeling \\u2013 Gangtok (Approx. 04 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast transfer to Gangtok. (the capital of Sikkim Suits all from tranquillity to adventure, land of monastery, mystic rituals &amp; festivals at an height of 1670 meters \\/ 5480 feet). On arrival Check-in and own activity. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181690\",\"Title\":\"Excursion to Tsomgo Lake & Baba Mandir\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast start an excursion to Tsomgo Lake &amp; Baba Mandir (nearly 40 kms \\/ 2 hours drive - Situated at an elevation of 3753 meters \\/ 12310 feet - The Lake is oval shaped lake and Nearby is the sacred Baba Mandir known to be a very holy site for all. Back to Gangtok. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1818,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181692\",\"Title\":\"Gangtok Local Sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast start full day sightseeing in Gangtok Covering Do Drul Chorten, Namgyal Institute of Tibetology(closed on Sundays), Cottage Industry(closed on Sundays) , Flower Show , Banjhakri Waterfall, Ganeshtok, HanumanTok, Tashi View Point. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19296,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181694\",\"Title\":\"Gangtok \\u2013 NJP Railway Station \\/ IXB Airport for onwards Journey (Approx. 05 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast transfer to <strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB) Airport<\\/strong> for onwards Journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25360\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":14703,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32560,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":14703,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32560,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":14703,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32560,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":14703,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32560,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16537,\"priceDoubleOcc\":\"14300.00\",\"priceSingleOcc\":35310,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":21010,\"priceDoubleOcc\":\"21010.00\",\"priceSingleOcc\":42020,\"priceExtraBed\":\"4510.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21010.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25361\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":36080,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":36080,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":36080,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":36080,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":18260,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":38830,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15950.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-12\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":22880,\"priceDoubleOcc\":\"22880.00\",\"priceSingleOcc\":45760,\"priceExtraBed\":\"4840.00\",\"priceWithoutBed\":\"3300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;1 Night Kalimpong + 3&amp;nbsp;Nights Gangtok + 2 Nights Darjeeling Accommodation on double sharing basis respectively.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Continental Meal Plan ( Breakfast Included only )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Exclusive Non a\\/c vehicle for transfers &amp;amp; sightseeing. Please brief to guest that vehicle will not be at disposal it will be available to guest as per itinerary only (point to point basis).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All permit fees &amp;amp; hotel taxes (as per itinerary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are valid for INDIAN NATIONALS only.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;ins&gt;&lt;strong&gt;IMPORTANT NOTES&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Vehicle Used&lt;\\/strong&gt;: &amp;nbsp;01 Indica\\/Wagon R\\/ similar for 02 pax &amp;amp; 01 Xylo \\/ Innova \\/ Scorpio for 04 &amp;amp; 06 Pax as per the above itinerary only point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Supplement Cost for Nathula Pass&lt;\\/strong&gt; @ Rs. 5000&amp;nbsp;per car will be charged extra (Monday &amp;amp; Tuesday closed).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181678\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181678],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181680\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181680],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181682\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181682],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181684\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181684],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181686\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181686],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181688\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181688],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181690\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181690],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181692\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181692],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181694\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[181694],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Kalimpong,Darjeeling,Gangtok','Kalimpong,West Bengal,Indian Subcontinent,East India,India,Darjeeling,Gangtok,Sikkim,Northeast India',NULL,'13403,7556,10106',11550,22880,6,NULL,NULL,NULL,2,'',0,'2021-04-12 00:00:00','2021-07-15 00:00:00','2021-07-15 00:00:00',3,'India','101','2021-12-24 16:39:12','2021-04-12 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'fascinating-north-east',NULL,NULL,NULL,0),(56,25376,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25376,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/WILD_AND_FEROCIOUS_KENYA__60.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;WILD AND FEROCIOUS KENYA&amp;nbsp;&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nA country in East Africa with coastline on the Indian Ocean. It encompasses savannah, lakelands, the dramatic Great Rift Valley and mountain highlands. It&amp;#39;s also home to wildlife like lions, elephants and rhinos.&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Duration :&lt;\\/strong&gt; 04 Nights 05 Days&lt;br \\/&gt;\\r\\n&lt;strong&gt;Cities Covered :&lt;\\/strong&gt; Masai Mara, Lake Naivasha &amp;amp; Nairobi&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nairobi\",\"DestinationPlacesSysId\":18894,\"SourcePlaces\":\"Masai Mara\",\"SourcePlaceSysId\":17007,\"AgencyName\":\"I Need Trip\",\"Name\":\"WILD & FEROCIOUS KENYA \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6330\",\"SupplierName\":\"ANDEVERYWHERE GLOBAL\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Offbeat,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17007,\"Title\":\"Masai Mara\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481307,\"Name\":\"Keekorok Lodge\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4818150,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481307\\/5293_01618300049.jpg\"},{\"ImagId\":4818151,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481307\\/5293_11618300049.jpg\"},{\"ImagId\":4818152,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481307\\/5293_21618300049.jpg\"},{\"ImagId\":4818153,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481307\\/5293_31618300049.jpg\"}]},\"CityId\":17007,\"Brief\":\"&lt;p&gt;Over 700 square miles of lush, sun-drenched plains encircle Keekorok Lodge, the first property in the Masai Mara Game Reserve in southwest Kenya. The lodge was opened in 1962 and is ideally situated in the direct path of the spectacular animal migration that occurs every year from July to October. Guests can experience unparalleled safari adventures, morning and evening game drives are a must for anyone visiting the reserve.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481307\\/5293_ef441882f7f7529d65ade16b6bdb8cf41618300049.jpg\",\"AccoAminitiesMask\":\"1111111110101111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17546,\"Title\":\"Masai Mara National Park\",\"Description\":\"Maasai Mara, also sometimes spelled Masai Mara and locally known simply as The Mara, is a large national game reserve in Narok, Kenya, contiguous with the Serengeti National Park in Tanzania. It is named in honor of the Maasai people, the ancestral inhabitants of the area, who migrated to the area from the Nile Basin. Their deion of the area when looked at from afar: &amp;quot;Mara&amp;quot; means &amp;quot;spotted&amp;quot; in the local Maasai language, due to the many short bushy trees which dot the landscape.\\r\\n\\r\\nMaasai Mara is one of the most famous and important wildlife conservation and wilderness areas in Africa, world-renowned for its exceptional populations of lion, African leopard, cheetah and African bush elephant. It also hosts the Great Migration, which secured it as one of the Seven Natural Wonders of Africa, and as one of the ten Wonders of the World.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Mara_National_Park_17007_1601623920.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null}]}},{\"CityId\":36151,\"Title\":\"Naivasha\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481308,\"Name\":\"Lake Naivasha Simba Lodge\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Lake Naivasha, Lake View, Moi S Lake Rd, Simba, Kenya\"},\"Images\":{\"Image\":[{\"ImagId\":4818156,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481308\\/5293_01618302180.jpg\"},{\"ImagId\":4818157,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481308\\/5293_11618302180.jpg\"}]},\"CityId\":36151,\"Brief\":\"&lt;p&gt;Lake Naivasha Simba lodge is an enchanting setting where contemporary comfort blends stylishly with nature to offer an environment where guests can refresh their senses, rekindle their love of travel and reconnect with the world around them.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Each room is blissfully private; you can sit on your balcony and watch our resident wildlife, take a nap and wake up to stunning bush views. Cocoon yourself in this exclusive hideaway and let your heart start to beat to the rhythm of Africa.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481308\\/5293_485082507f33915ba24ecd256696a2dd1618302180.jpg\",\"AccoAminitiesMask\":\"1111111110111111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17546,\"Title\":\"Masai Mara National Park\",\"Description\":\"Maasai Mara, also sometimes spelled Masai Mara and locally known simply as The Mara, is a large national game reserve in Narok, Kenya, contiguous with the Serengeti National Park in Tanzania. It is named in honor of the Maasai people, the ancestral inhabitants of the area, who migrated to the area from the Nile Basin. Their deion of the area when looked at from afar: &amp;quot;Mara&amp;quot; means &amp;quot;spotted&amp;quot; in the local Maasai language, due to the many short bushy trees which dot the landscape.\\r\\n\\r\\nMaasai Mara is one of the most famous and important wildlife conservation and wilderness areas in Africa, world-renowned for its exceptional populations of lion, African leopard, cheetah and African bush elephant. It also hosts the Great Migration, which secured it as one of the Seven Natural Wonders of Africa, and as one of the ten Wonders of the World.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Mara_National_Park_17007_1601623920.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null}]}},{\"CityId\":18894,\"Title\":\"Nairobi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481309,\"Name\":\"Lotus inn and Suites\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"19 Mpaka Road, Westlands, Nairobi\"},\"Images\":{\"Image\":[{\"ImagId\":4818158,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481309\\/5293_01618303225.jpg\"},{\"ImagId\":4818159,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481309\\/5293_11618303225.jpg\"}]},\"CityId\":18894,\"Brief\":\"&lt;p&gt;Lotos Inn and Suites offers fully furnished, luxurious serviced suites located in the heart of Nairobi&amp;#39;s upmarket West lands area. We feature 66 well-designed spacious Suites with a modern open living style. We also have a modern conference &amp; meeting room. Lotos Inn &amp; Suites also has a Signature rooftop restaurant, bar and lounge.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481309\\/5293_8dca2f185111fe36ababf1a32cd4362e1618303225.jpg\",\"AccoAminitiesMask\":\"1110010100001111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17546,\"Title\":\"Masai Mara National Park\",\"Description\":\"Maasai Mara, also sometimes spelled Masai Mara and locally known simply as The Mara, is a large national game reserve in Narok, Kenya, contiguous with the Serengeti National Park in Tanzania. It is named in honor of the Maasai people, the ancestral inhabitants of the area, who migrated to the area from the Nile Basin. Their deion of the area when looked at from afar: &amp;quot;Mara&amp;quot; means &amp;quot;spotted&amp;quot; in the local Maasai language, due to the many short bushy trees which dot the landscape.\\r\\n\\r\\nMaasai Mara is one of the most famous and important wildlife conservation and wilderness areas in Africa, world-renowned for its exceptional populations of lion, African leopard, cheetah and African bush elephant. It also hosts the Great Migration, which secured it as one of the Seven Natural Wonders of Africa, and as one of the ten Wonders of the World.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Mara_National_Park_17007_1601623920.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6330,\"SupplierName\":\"ANDEVERYWHERE GLOBAL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181768\",\"Title\":\"ARRIVAL IN MASAI MARA\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Nairobi International Airport - Meet our local guide after clearing customs and immigration - Transfer to Masai Mara National Reserve - Check In at Lodge &amp;nbsp;- Evening Game Drive - Dinner at Lodge - Night stay at Masai Mara.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481307,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181769\",\"Title\":\"MASAI MARA - GAME DRIVE \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Early morning wakeup call - Morning Game Drive - Return back to lodge - Breakfast at Lodge - Time to explore the lodge or visit to one of the Masai Village (Optional) - Lunch at the Lodge - Evening proceed for Game Drive - Dinner at the Lodge - Night stay at Masai Mara.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481307,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17546,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181770\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181771\",\"Title\":\"MASAI MARA - LAKE NAIVASHA\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Early morning wakeup call - Morning Game Drive - Return back to Lodge - Breakfast at Lodge - Check out - Proceed towards Lake Naivasha - Arrive and Check In - Lunch at the Hotel - Evening free to enjoy optional activities at Naivasha or enjoy the Hotel. Dinner at Hotel - Night stay at Lake Naivasha.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181772\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181773\",\"Title\":\"LAKE NAIVASHA - NAIROBI\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning breakfast at Hotel - Check out from Hotel - Proceed towards Nairobi - Lunch at Indian Restaurant - Check in at Hotel - Time to explore Nairobi or enjoy a visit to Nairobi Giraffe Centre (Optional) - Dinner at Indian Restaurant - Night stay at Nairobi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18894,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181774\",\"Title\":\"DEPARTURE TO NAIROBI AIRPORT\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning breakfast at hotel - Check out from Hotel - depart for Nairobi Airport - Tour Ends with sweet memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18894,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25376\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"71235.11\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":75141,\"priceDoubleOcc\":\"71235.11\",\"priceSingleOcc\":184916.02000000002,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71235.11,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":849.2,\"COSTSO\":2204.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":75141,\"priceDoubleOcc\":\"71235.11\",\"priceSingleOcc\":184916.02000000002,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71235.11,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":849.2,\"COSTSO\":2204.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":75141,\"priceDoubleOcc\":\"71235.11\",\"priceSingleOcc\":184916.02000000002,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71235.11,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":849.2,\"COSTSO\":2204.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":78279,\"priceDoubleOcc\":\"75941.06\",\"priceSingleOcc\":189621.97,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":75941.06,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":905.3,\"COSTSO\":2260.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":79140,\"priceDoubleOcc\":\"77232.89\",\"priceSingleOcc\":190913.8,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77232.89,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":920.7,\"COSTSO\":2275.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":82954,\"priceDoubleOcc\":\"82953.84\",\"priceSingleOcc\":196634.75,\"priceExtraBed\":\"82953.84\",\"priceWithoutBed\":\"56009.99\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":82953.84,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":667.7,\"CEB\":988.9,\"COSTDO\":988.9,\"COSTSO\":2344.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":988.9,\"COSTTO\":988.9}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;When travelling to Kenya please ensure you have Yellow Fever vaccination (has to be valid 10days before travel date) and Polio Vaccination (has to be valid 6weeks before travel date)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;With Effect From 1st January 2021, no Kenyan visas will be issued on arrival. All passengers travelling to Kenya from countries that require visas to enter Kenya shall be required to apply and obtain an e-visa before boarding. www.evisa.go.ke&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Prior to confirming the booking, we recommend you have a comprehensive travel, medical, cancellation, curtailment and insurance for the duration of your trip.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your passport must be valid 6 months from the date of travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Names should always be provided as per the passport when making a flight reservation and always recheck before the tickets are issued.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Please arrive at least 4 hours before your departure time at the airport. Carry all your original documents when travelling as it will be required during check-in at the airport.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of valid passport &amp;amp; Pan Card copy is must in order to confirm the booking.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare &amp;amp; Visa Charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any charges for Yellow Fever Vaccination, Polio Vaccination or RT-PCR Testing that needs to be done.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any items of personal nature like laundry, Paid TV, telephone Charges, additional meals, shopping, optional tours &amp;amp; activities, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything specifically not mentioned above in Inclusions.&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in mentioned hotels on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast in the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Lunch and Dinner at the hotel in Masai Mara and Lake Naivasha, as forming part of the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch and Dinner at Indian Restaurants in Nairobi.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Game Drives in Masai Mara, as forming part of the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Mineral Water during game drives and transfers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of Local English-Speaking guide throughout the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entire road journey and transportation in private 8-Seater Mini Van with Roof-Top push open.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;National Park fees as forming part of the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local Taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Covid-19 Insurance cover, covering medical as well as quarantine cost for 14 days from the day of detection. (claim up to cost of USD 200 per person, per day).&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181768\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181768],\"Remark\":[\"&lt;p&gt;Transfers in Private Mini Van with Roof-Top push open.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181769\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181769],\"Remark\":[\"&lt;p&gt;Transfers in Private Mini Van with Roof-Top push open.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181770\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181770],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181771\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181771],\"Remark\":[\"&lt;p&gt;Transfers in Private Mini Van with Roof-Top push open.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181772\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181772],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181773\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181773],\"Remark\":[\"&lt;p&gt;Transfers in Private Mini Van with Roof-Top push open.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181774\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181774],\"Remark\":[\"&lt;p&gt;Transfers in Private Mini Van with Roof-Top push open.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Masai Mara,Naivasha,Nairobi','Masai Mara,East African Islands,Kenya,Naivasha,Nairobi',NULL,'17007,36151,18894',71235,82954,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'Kenya','113','2023-09-07 12:43:41','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'wild-ferocious-kenya',NULL,NULL,NULL,0),(57,23296,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23296,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Long_Stay_Package_40.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Long Stay Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers,Bike\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476370,\"Name\":\"Lui Beach Resort\",\"Star\":\"2.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5033108\",\"Long\":\"73.7705112\",\"Address\":\"Aguada - Siolim Rd, Dando, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":476377,\"Name\":\"Ramatan Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5956843\",\"Long\":\"73.738958\",\"Address\":\"4, Ozran Beach Rd, Dmello Vaddo, Anjuna, Goa 403519, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":475958,\"Name\":\"CASA AHAANA - Goa\'s Luxury Resort\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5975837\",\"Long\":\"73.7566028\",\"Address\":\"426\\/7, Village, Anjuna, Goa 403509, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":476367,\"Name\":\"Pirache Art Hotel & Spa\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"15.5331869\",\"Long\":\"73.76302799999999\",\"Address\":\"Holiday St, Gauravaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":476372,\"Name\":\"Kalki Resorts\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5564595\",\"Long\":\"73.76159679999999\",\"Address\":\"7\\/24-B, Primo Bom Rd, Baga, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":476379,\"Name\":\"SAIRAJ BEACH RESORT - Calangute\",\"Star\":\"3.00\",\"Rating\":\"4.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"15.5402928\",\"Long\":\"73.763082\",\"Address\":\"No.166\\/13, Naikawaddo, Near Poriat Football Ground, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":476381,\"Name\":\"Grandeur De Sanchi\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5335195\",\"Long\":\"73.7617513\",\"Address\":\"1\\/230 - A, Holiday Street, Gaurawaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166655\",\"Title\":\"Arrival in Goa\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166660\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166665\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166670\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166675\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166680\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166685\",\"Title\":\"Discover Goa at your complete Leisure (no transport)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166690\",\"Title\":\"Departure from Goa\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23296\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14040,\"priceDoubleOcc\":\"15600.00\",\"priceSingleOcc\":31200,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23297\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14300,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"8250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23298\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15080,\"priceDoubleOcc\":\"17400.00\",\"priceSingleOcc\":34800,\"priceExtraBed\":\"8700.00\",\"priceWithoutBed\":\"8700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16120,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":37200,\"priceExtraBed\":\"9300.00\",\"priceWithoutBed\":\"9300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23296\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13650.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12285,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23297\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14437.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12513,\"priceDoubleOcc\":\"14437.50\",\"priceSingleOcc\":28875,\"priceExtraBed\":\"7218.75\",\"priceWithoutBed\":\"7218.75\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23298\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15225.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15225.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13195,\"priceDoubleOcc\":\"15225.00\",\"priceSingleOcc\":30450,\"priceExtraBed\":\"7612.50\",\"priceWithoutBed\":\"7612.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16275.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14105,\"priceDoubleOcc\":\"16275.00\",\"priceSingleOcc\":32550,\"priceExtraBed\":\"8137.50\",\"priceWithoutBed\":\"8137.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16275.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival.(Non Alcholic).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A.C. Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast, Lunch &amp;amp; Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station Pick up Drop By Private AC Car.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Non Gear Bike for 7 Days.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of Swimming pool as per the Pool Timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount (Entry Tickets) - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount (Entry Tickets) - Hammerzz Club.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166655\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[166655],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166660\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[166660],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166665\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[166665],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166670\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[166670],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166675\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[166675],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166680\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[166680],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166685\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[166685],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166690\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[166690],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',13650,18600,7,'57_1630311426_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"}]',1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2021-04-13 00:00:00','2021-04-13 00:00:00',1,1,'1','1','1','','','',NULL,'long-stay-package',NULL,NULL,NULL,0),(58,23285,1,5293,0,0,0,'Beach,Family,Offbeat',NULL,1,1,0,'{\"package\":{\"TPId\":23285,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Unlimited_Liquor_Package_13.png\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Unlimited Liquor Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Beach,Family,Offbeat\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476370,\"Name\":\"Lui Beach Resort\",\"Star\":\"2.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5033108\",\"Long\":\"73.7705112\",\"Address\":\"Aguada - Siolim Rd, Dando, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":476377,\"Name\":\"Ramatan Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5956843\",\"Long\":\"73.738958\",\"Address\":\"4, Ozran Beach Rd, Dmello Vaddo, Anjuna, Goa 403519, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":475958,\"Name\":\"CASA AHAANA - Goa\'s Luxury Resort\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5975837\",\"Long\":\"73.7566028\",\"Address\":\"426\\/7, Village, Anjuna, Goa 403509, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":476367,\"Name\":\"Pirache Art Hotel & Spa\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5331869\",\"Long\":\"73.76302799999999\",\"Address\":\"Holiday St, Gauravaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":476371,\"Name\":\"Joia Do Mar Resort\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"15.5510911\",\"Long\":\"73.764465\",\"Address\":\"Calangute - Arpora Rd, Porba Vaddo, Prabhu wada, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":476372,\"Name\":\"Kalki Resorts\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"15.5564595\",\"Long\":\"73.76159679999999\",\"Address\":\"7\\/24-B, Primo Bom Rd, Baga, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":476381,\"Name\":\"Grandeur De Sanchi\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5335195\",\"Long\":\"73.7617513\",\"Address\":\"1\\/230 - A, Holiday Street, Gaurawaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166559\",\"Title\":\"Arrival in Goa\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166564\",\"Title\":\"North Goa Sightseeing By Ac Coach\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, Proceed on a Half Day North Goa sightseeing tour&nbsp;as per hotel itinerary. Dinner &amp; Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":false,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166569\",\"Title\":\"South Goa Sightseeing By Ac Coach\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, Proceed on a Half Day South Goa sightseeing tour&nbsp;as per hotel itinerary. Dinner &amp; Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":false,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476367,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475958,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166574\",\"Title\":\"Departure from Goa\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23285\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23286\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23287\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7700,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23288\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23289\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23285\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23286\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23287\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6738,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23288\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23289\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival. (Non Alcholic)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ac Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station Transfers by AC Cab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Days City Tour by shared AC Coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited liquor for 3 Days(11 Am to 1 Pm &amp;amp; 8 Pm to 10 Pm).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of Swimming pool as per the Pool Timings&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount (Entry Tickets) - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount (Entry Tickets) - Hammerzz Club.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166559\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[166559],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166564\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[166564],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166569\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[166569],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166574\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[166574],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6825,9600,3,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2021-04-13 00:00:00','2021-04-13 00:00:00',1,1,'1','1','1',NULL,NULL,NULL,NULL,'unlimited-liquor-package',NULL,NULL,NULL,0),(59,23275,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23275,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Silver_Sands_Hideaway_Candolim_15.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Silver Sands Hideaway Candolim\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475977,\"Name\":\"Silver Sands Hideaway\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5207406\",\"Long\":\"73.7684072\",\"Address\":\"Pinto&#039;s Waddo, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166492\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166497\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166502\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166507\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166512\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475977,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23275\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23276\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23277\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23278\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10530,\"priceDoubleOcc\":\"11700.00\",\"priceSingleOcc\":23400,\"priceExtraBed\":\"7020.00\",\"priceWithoutBed\":\"7020.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23279\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13140.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11970,\"priceDoubleOcc\":\"13140.00\",\"priceSingleOcc\":26280,\"priceExtraBed\":\"8460.00\",\"priceWithoutBed\":\"8460.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23275\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23276\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8137.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23277\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9187.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23278\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10237.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9214,\"priceDoubleOcc\":\"10237.50\",\"priceSingleOcc\":20475,\"priceExtraBed\":\"6142.50\",\"priceWithoutBed\":\"6142.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10237.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23279\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11497.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10474,\"priceDoubleOcc\":\"11497.50\",\"priceSingleOcc\":22995,\"priceExtraBed\":\"7402.50\",\"priceWithoutBed\":\"7402.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11497.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166492\":[{\"Sequence\":[0],\"TPInvnSysId\":[166492],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166497\":[{\"Sequence\":[0],\"TPInvnSysId\":[166497],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166502\":[{\"Sequence\":[0],\"TPInvnSysId\":[166502],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166507\":[{\"Sequence\":[0],\"TPInvnSysId\":[166507],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166512\":[{\"Sequence\":[0],\"TPInvnSysId\":[166512],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[{\"AirlineName\":\"Direct\",\"AirlineCode\":\"LCC\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureAirportCode\":\"DEL\",\"DepartureTime\":{\"date\":\"1970-01-01 05:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Goa, IN - Dabolim Airport (GOI)\",\"ArrivalAirportCode\":\"GOI\",\"ArrivalTime\":{\"date\":\"1970-01-01 05:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":1,\"EstimateHours\":\"Non Stop\"},{\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DepartureAirportName\":\"Goa, IN - Dabolim Airport (GOI)\",\"DepartureAirportCode\":\"GOI\",\"DepartureTime\":{\"date\":\"1970-01-01 05:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalTime\":{\"date\":\"1970-01-01 05:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":2,\"EstimateHours\":\"2:45\"}]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6300,13140,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2021-04-13 17:24:19','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'silver-sands-hideaway-candolim',NULL,NULL,NULL,0),(60,23269,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23269,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Cygnett_Lite_Celestiial_Candolim_97.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Cygnett Lite Celestiial Candolim\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476540,\"Name\":\"Cygnett Inn Celestiial\",\"Star\":\"3.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.529331\",\"Long\":\"73.764768\",\"Address\":\"1168-D, Xiimer,, beside Jambaleshawar Temple, Gauravaddo, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166459\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166464\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166469\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166474\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166479\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23269\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23270\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23271\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23272\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23273\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13440.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23269\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23270\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23271\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23272\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23273\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11760.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166459\":[{\"Sequence\":[0],\"TPInvnSysId\":[166459],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166464\":[{\"Sequence\":[0],\"TPInvnSysId\":[166464],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166469\":[{\"Sequence\":[0],\"TPInvnSysId\":[166469],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166474\":[{\"Sequence\":[0],\"TPInvnSysId\":[166474],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166479\":[{\"Sequence\":[0],\"TPInvnSysId\":[166479],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[{\"AirlineName\":\"GoAir\",\"AirlineCode\":\"G8-285\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureAirportCode\":\"DEL\",\"DepartureTime\":{\"date\":\"2021-04-10 10:40:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Goa, IN - Dabolim Airport (GOI)\",\"ArrivalAirportCode\":\"GOI\",\"ArrivalTime\":{\"date\":\"2021-04-10 13:15:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":1,\"EstimateHours\":\"2:45\"},{\"AirlineName\":\"GoAir\",\"AirlineCode\":\"G8-286\",\"DepartureAirportName\":\"Goa, IN - Dabolim Airport (GOI)\",\"DepartureAirportCode\":\"GOI\",\"DepartureTime\":{\"date\":\"2021-04-13 17:45:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalTime\":{\"date\":\"2021-04-13 20:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Asia\\/Kolkata\"},\"FlightType\":2,\"EstimateHours\":\"2:45\"}]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7350,13440,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2021-04-13 17:24:41','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'cygnett-lite-celestiial-candolim',NULL,NULL,NULL,0),(61,23264,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23264,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Neelams_The_Grand_Calangute_79.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Neelams The Grand Calangute\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476534,\"Name\":\"Neelams The Grand Hotel\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5442782\",\"Long\":\"73.765692\",\"Address\":\"Post Office Rd, near KFC, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166434\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166439\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166444\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166449\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166454\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23264\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23265\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23266\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23267\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11070,\"priceDoubleOcc\":\"12300.00\",\"priceSingleOcc\":24600,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23268\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13740.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12510,\"priceDoubleOcc\":\"13740.00\",\"priceSingleOcc\":27480,\"priceExtraBed\":\"8820.00\",\"priceWithoutBed\":\"8820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23264\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23265\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8662.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23266\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9712.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23267\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10762.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9686,\"priceDoubleOcc\":\"10762.50\",\"priceSingleOcc\":21525,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10762.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23268\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12022.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10946,\"priceDoubleOcc\":\"12022.50\",\"priceSingleOcc\":24045,\"priceExtraBed\":\"7717.50\",\"priceWithoutBed\":\"7717.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12022.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166434\":[{\"Sequence\":[0],\"TPInvnSysId\":[166434],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166439\":[{\"Sequence\":[0],\"TPInvnSysId\":[166439],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166444\":[{\"Sequence\":[0],\"TPInvnSysId\":[166444],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166449\":[{\"Sequence\":[0],\"TPInvnSysId\":[166449],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166454\":[{\"Sequence\":[0],\"TPInvnSysId\":[166454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7350,13740,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:39','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'neelams-the-grand-calangute',NULL,NULL,NULL,0),(62,23258,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23258,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Azzure_By_Spree_Calangute_53.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Azzure By Spree Calangute\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476383,\"Name\":\"Azzure By Spree Hotels\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5387867\",\"Long\":\"73.76843149999999\",\"Address\":\"H. No. 2\\/16 A, Naika Vaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166409\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166414\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166419\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166424\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166429\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23258\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23259\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23260\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23261\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23262\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23258\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23259\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23260\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23261\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23262\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12810.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166409\":[{\"Sequence\":[0],\"TPInvnSysId\":[166409],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166414\":[{\"Sequence\":[0],\"TPInvnSysId\":[166414],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166419\":[{\"Sequence\":[0],\"TPInvnSysId\":[166419],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166424\":[{\"Sequence\":[0],\"TPInvnSysId\":[166424],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166429\":[{\"Sequence\":[0],\"TPInvnSysId\":[166429],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',8400,14640,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:42','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'azzure-by-spree-calangute',NULL,NULL,NULL,0),(63,23253,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23253,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Nagoa_Grande_Goa_21.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Nagoa Grande Goa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476382,\"Name\":\"Nagoa Grande Resort & Spa\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.560866\",\"Long\":\"73.78160299999999\",\"Address\":\"No &ndash; 18, 1, Nagoa, Arpora, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166384\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166389\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166394\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166399\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166404\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23253\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23254\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23255\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23256\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23257\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23253\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23254\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23255\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23256\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23257\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12810.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166384\":[{\"Sequence\":[0],\"TPInvnSysId\":[166384],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166389\":[{\"Sequence\":[0],\"TPInvnSysId\":[166389],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166394\":[{\"Sequence\":[0],\"TPInvnSysId\":[166394],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166399\":[{\"Sequence\":[0],\"TPInvnSysId\":[166399],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166404\":[{\"Sequence\":[0],\"TPInvnSysId\":[166404],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',8400,14640,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:47','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'nagoa-grande-goa',NULL,NULL,NULL,0),(64,23246,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23246,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Grandeur_De_Sanchi_Calangute_32.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Grandeur De Sanchi Calangute\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476381,\"Name\":\"Grandeur De Sanchi\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5335195\",\"Long\":\"73.7617513\",\"Address\":\"1\\/230 - A, Holiday Street, Gaurawaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166331\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166336\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166341\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166346\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166351\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23246\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23247\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23248\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23249\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"720.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23250\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13440.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23246\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23247\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23248\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23249\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23250\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11760.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166331\":[{\"Sequence\":[0],\"TPInvnSysId\":[166331],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166336\":[{\"Sequence\":[0],\"TPInvnSysId\":[166336],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166341\":[{\"Sequence\":[0],\"TPInvnSysId\":[166341],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166346\":[{\"Sequence\":[0],\"TPInvnSysId\":[166346],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166351\":[{\"Sequence\":[0],\"TPInvnSysId\":[166351],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7350,13440,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:49','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'grandeur-de-sanchi-calangute',NULL,NULL,NULL,0),(65,23241,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23241,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Amor_Beach_Resort_Candolim_57.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Amor Beach Resort Candolim\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476380,\"Name\":\"AMOR BEACH RESORT\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.51752310000001\",\"Long\":\"73.7651053\",\"Address\":\"Murrado Waddo, Candolim Beach Rd, Bardez, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166306\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166311\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166316\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166321\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166326\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23241\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23242\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23243\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23244\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23245\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13440.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23241\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7087.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23242\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23243\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23244\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23245\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11760.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166306\":[{\"Sequence\":[0],\"TPInvnSysId\":[166306],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166311\":[{\"Sequence\":[0],\"TPInvnSysId\":[166311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166316\":[{\"Sequence\":[0],\"TPInvnSysId\":[166316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166321\":[{\"Sequence\":[0],\"TPInvnSysId\":[166321],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166326\":[{\"Sequence\":[0],\"TPInvnSysId\":[166326],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7088,13440,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:54','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'amor-beach-resort-candolim',NULL,NULL,NULL,0),(66,23236,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23236,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Sairaj_Beach_Resort_Goa_32.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Sairaj Beach Resort Goa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476379,\"Name\":\"SAIRAJ BEACH RESORT - Calangute\",\"Star\":\"3.00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5402928\",\"Long\":\"73.763082\",\"Address\":\"No.166\\/13, Naikawaddo, Near Poriat Football Ground, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166281\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166286\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166291\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166296\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166301\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23236\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23237\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23238\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23239\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23240\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12840.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23236\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23237\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23238\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23239\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9975.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23240\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11235.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166281\":[{\"Sequence\":[0],\"TPInvnSysId\":[166281],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166286\":[{\"Sequence\":[0],\"TPInvnSysId\":[166286],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166291\":[{\"Sequence\":[0],\"TPInvnSysId\":[166291],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166296\":[{\"Sequence\":[0],\"TPInvnSysId\":[166296],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166301\":[{\"Sequence\":[0],\"TPInvnSysId\":[166301],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6300,12840,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:22:57','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'sairaj-beach-resort-goa',NULL,NULL,NULL,0),(67,23231,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23231,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Ramatan_Resort_Anjuna_70.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Ramatan Resort Anjuna\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476377,\"Name\":\"Ramatan Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5956843\",\"Long\":\"73.738958\",\"Address\":\"4, Ozran Beach Rd, Dmello Vaddo, Anjuna, Goa 403519, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166256\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166261\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166266\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166271\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166276\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23231\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23232\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23233\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23234\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23235\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12540.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23231\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23232\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7612.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23233\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8662.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23234\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9712.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23235\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10972.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166256\":[{\"Sequence\":[0],\"TPInvnSysId\":[166256],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166261\":[{\"Sequence\":[0],\"TPInvnSysId\":[166261],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166266\":[{\"Sequence\":[0],\"TPInvnSysId\":[166266],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166271\":[{\"Sequence\":[0],\"TPInvnSysId\":[166271],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166276\":[{\"Sequence\":[0],\"TPInvnSysId\":[166276],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6300,12540,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:00','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'ramatan-resort-anjuna',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (68,23226,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23226,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Silver_Sands_Holiday_Village_Goa_48.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Silver Sands Holiday Village Goa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476373,\"Name\":\"Silver Sands Holiday Village\",\"Star\":\"3.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5187414\",\"Long\":\"73.76456850000001\",\"Address\":\"Murodd Vaddo, Candolim Beach Rd, near Car Parking, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166229\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166234\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166239\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166244\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166249\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476373,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23226\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23227\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23228\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23229\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23230\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12240.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"12240.00\",\"priceSingleOcc\":24480,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23226\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5512.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23227\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23228\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23229\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23230\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10710.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9765,\"priceDoubleOcc\":\"10710.00\",\"priceSingleOcc\":21420,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166229\":[{\"Sequence\":[0],\"TPInvnSysId\":[166229],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166234\":[{\"Sequence\":[0],\"TPInvnSysId\":[166234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166239\":[{\"Sequence\":[0],\"TPInvnSysId\":[166239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166244\":[{\"Sequence\":[0],\"TPInvnSysId\":[166244],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166249\":[{\"Sequence\":[0],\"TPInvnSysId\":[166249],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',5513,12240,4,'68_1630069629_0.jpg,68_1630069629_1.jpg,68_1630069629_2.jpg,68_1630069629_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:02','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'silver-sands-holiday-village-goa',NULL,NULL,NULL,0),(69,23219,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23219,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Kalki_Resort_And_Cottages_22.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Kalki Resort And Cottages\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476372,\"Name\":\"Kalki Resorts\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5564595\",\"Long\":\"73.76159679999999\",\"Address\":\"7\\/24-B, Primo Bom Rd, Baga, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166189\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166194\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166199\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166204\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166209\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23219\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23220\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23221\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23222\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":22800,\"priceExtraBed\":\"6840.00\",\"priceWithoutBed\":\"6840.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23223\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12840.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"12840.00\",\"priceSingleOcc\":25680,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23219\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23220\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23221\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23222\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9975.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8978,\"priceDoubleOcc\":\"9975.00\",\"priceSingleOcc\":19950,\"priceExtraBed\":\"5985.00\",\"priceWithoutBed\":\"5985.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9975.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23223\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11235.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10238,\"priceDoubleOcc\":\"11235.00\",\"priceSingleOcc\":22470,\"priceExtraBed\":\"7245.00\",\"priceWithoutBed\":\"7245.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11235.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166189\":[{\"Sequence\":[0],\"TPInvnSysId\":[166189],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166194\":[{\"Sequence\":[0],\"TPInvnSysId\":[166194],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166199\":[{\"Sequence\":[0],\"TPInvnSysId\":[166199],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166204\":[{\"Sequence\":[0],\"TPInvnSysId\":[166204],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166209\":[{\"Sequence\":[0],\"TPInvnSysId\":[166209],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6563,12840,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:04','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'kalki-resort-and-cottages',NULL,NULL,NULL,0),(70,23174,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23174,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Cygnett_Inn_Celestiial_73.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Cygnett Inn Celestiial\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476540,\"Name\":\"Cygnett Inn Celestiial\",\"Star\":\"3.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.529331\",\"Long\":\"73.764768\",\"Address\":\"1168-D, Xiimer,, beside Jambaleshawar Temple, Gauravaddo, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165975\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165980\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165985\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165990\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23174\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"3.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23175\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23176\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23177\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23178\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23174\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6037.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23175\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23176\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23177\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23178\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10185.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbspIf in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amprsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp &amp;nbspdifference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;ampmdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;ampmdash or at least match the price you find &amp;ampmdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amprsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp&lt;\\/strong&gt;There are a lot of value &amp;ampndash additions that consumers don&amp;amprsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amprsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165975\":[{\"Sequence\":[0],\"TPInvnSysId\":[165975],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165980\":[{\"Sequence\":[0],\"TPInvnSysId\":[165980],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165985\":[{\"Sequence\":[0],\"TPInvnSysId\":[165985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165990\":[{\"Sequence\":[0],\"TPInvnSysId\":[165990],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',6038,11640,3,'70_1630591027_0.jpg,70_1630591027_1.jpg,70_1630591027_2.jpg,70_1630591027_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:17','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'cygnett-inn-celestiial',NULL,NULL,NULL,0),(71,2351,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2351\",\"VisaName\":\"30 Days Multiple Entry \",\"Nationality\":null,\"VisaAdultRates\":17100,\"VisaChildRates\":17100,\"VisaInfantRates\":17100,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2351.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Scanned colour copy of your pan card&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Confirmed return air ticket (not mandatory for application)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Duly filled&amp;nbsp;Visa Application Form attached herewith for your information&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"04 Working\",\"VisaValidity\":\"60\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"1500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1200.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',17100,17100,0,'71_',NULL,NULL,0,'',0,'2022-01-24 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-07-13 18:02:23','2022-01-24 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'30-days-multiple-entry',NULL,NULL,NULL,0),(72,2276,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2276\",\"VisaName\":\"Maldives Visa \",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Maldives\",\"VisaRequired\":2,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Visa On Arrival\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;To get that visa after you reach Male, you must produce some of the documents like&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Confirmed tickets to fly from the Maldives when your trip ends.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A valid passport that should have 6 months expiration from the date of arrival in the Maldives.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed hotel reservation and the vouchers that confirm the same. You might have to show the same at the immigration counter.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;The Department of Immigration always reserves the right to allow you a stay fewer than 30 days. In case you wish to extend the stay, a written application, 2 days prior to your visa expiry, can be submitted. You may then get new visa approval for the next 60 days or less, as the need may be. The department may reject or approve the application or request for a visa.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Do Indian Citizens need a Visa for Maldives?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you plan on visiting Maldives for holidays then&amp;nbsp;&lt;strong&gt;you do not need a pre-arrival visa&lt;\\/strong&gt;. It is just that one should have all the valid travel documents. Such as your&amp;nbsp;&lt;strong&gt;passport should be valid for 6 months&lt;\\/strong&gt;&amp;nbsp;beyond the date of arrival to the Maldives.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indians are given a&amp;nbsp;&lt;strong&gt;Tourist Visa on arrival at Male airport and it comes with the 30 days limit&lt;\\/strong&gt;. It is easy to fall in love with the place which may make push you to stay longer. If so, then it can be extended up to 90 days after approval from the respective authorities.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Do you know that Indians are an exception to this extension? Thanks to the close strategic, military, economic and cultural relationship. Other than this, it is Bruneians who are allowed for 15 days only.&amp;nbsp; The best part is that no fee is charged for the visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Is there a Visa on Arrival in Maldives for Indian Citizens?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Everyone needs a visa to enter another country but thankfully there are some countries like Maldives which&amp;nbsp;&lt;strong&gt;provide visa on arrival. The facility is absolutely free of cost&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Maldives is one of those liberal countries that attract visitors every year. But it is wise that one should check for the details with the visa office. At times, the rules may change.&lt;\\/p&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Maldives','Maldives',NULL,'133',0,0,0,'72_',NULL,NULL,0,'',0,'2023-07-22 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Maldives','133','2023-07-22 10:13:32','2023-07-22 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'maldives-visa',NULL,NULL,NULL,0),(73,2352,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2352\",\"VisaName\":\"90 Days Multiple Entry \",\"Nationality\":null,\"VisaAdultRates\":37500,\"VisaChildRates\":37500,\"VisaInfantRates\":37500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"United Arab Emirates\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"UAE VISA APPLICATION FORM\",\"DocFileName1\":\"UAE Visa Application Form_1_2352.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your pan card&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of the first and last page of your passport&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passport should be valid for at least 6 months&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scanned colour copy of your photograph ( 35mm x 45mm ) with white background covering 70-80% of face.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Confirmed return air ticket (not mandatory for application)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Duly filled&amp;nbsp;Visa Application Form attached herewith for your information&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"04 Working\",\"VisaValidity\":\"60\",\"VisaDuration\":\"90\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"1500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1200.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','United Arab Emirates','United Arab Emirates',NULL,'228',37500,37500,0,'73_',NULL,NULL,0,'',0,'2023-03-17 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'United Arab Emirates','228','2023-03-17 17:53:22','2023-03-17 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'90-days-multiple-entry',NULL,NULL,NULL,0),(74,23184,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23184,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Baga_Marina_Beach_Resort_32.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Baga Marina Beach Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475979,\"Name\":\"The Baga Marina Beach Resort & Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.555812\",\"Long\":\"73.75739700000001\",\"Address\":\"Calangute - Baga Rd, Saunta Waddo, Baga, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166020\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166025\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166030\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166035\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166040\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":475979,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23184\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23185\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23186\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23187\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23188\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13440.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12240,\"priceDoubleOcc\":\"13440.00\",\"priceSingleOcc\":26880,\"priceExtraBed\":\"8640.00\",\"priceWithoutBed\":\"8640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23184\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23185\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23186\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23187\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23188\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11760.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10710,\"priceDoubleOcc\":\"11760.00\",\"priceSingleOcc\":23520,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166020\":[{\"Sequence\":[0],\"TPInvnSysId\":[166020],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166025\":[{\"Sequence\":[0],\"TPInvnSysId\":[166025],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166030\":[{\"Sequence\":[0],\"TPInvnSysId\":[166030],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166035\":[{\"Sequence\":[0],\"TPInvnSysId\":[166035],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166040\":[{\"Sequence\":[0],\"TPInvnSysId\":[166040],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7350,13440,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:14','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'baga-marina-beach-resort',NULL,NULL,NULL,0),(75,23169,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23169,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Neelams_The_Grand_3.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Neelams The Grand\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476534,\"Name\":\"Neelams The Grand Hotel\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5442782\",\"Long\":\"73.765692\",\"Address\":\"Post Office Rd, near KFC, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":476382,\"Name\":\"Nagoa Grande Resort & Spa\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.560866\",\"Long\":\"73.78160299999999\",\"Address\":\"No &ndash; 18, 1, Nagoa, Arpora, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165955\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165960\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165965\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165970\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476534,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23169\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23170\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23171\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23172\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23173\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11940.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23169\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6037.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23170\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7087.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23171\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8137.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23172\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9187.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23173\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10447.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165955\":[{\"Sequence\":[0],\"TPInvnSysId\":[165955],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165960\":[{\"Sequence\":[0],\"TPInvnSysId\":[165960],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165965\":[{\"Sequence\":[0],\"TPInvnSysId\":[165965],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165970\":[{\"Sequence\":[0],\"TPInvnSysId\":[165970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',6038,11940,3,'75_1630498301_0.jpg,75_1630498301_1.jpg,75_1630498301_2.jpg,75_1630498301_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:19','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'neelams-the-grand',NULL,NULL,NULL,0),(76,23113,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23113,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Azzure_By_Spree_0.jpg\",\"BookingValidUntill\":\"2021-05-08\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Azzure By Spree\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476383,\"Name\":\"Azzure By Spree Hotels\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5387867\",\"Long\":\"73.76843149999999\",\"Address\":\"H. No. 2\\/16 A, Naika Vaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165494\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165499\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165504\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165509\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23113\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23114\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7290,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":16200,\"priceExtraBed\":\"4860.00\",\"priceWithoutBed\":\"4860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23115\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8370,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":18600,\"priceExtraBed\":\"5580.00\",\"priceWithoutBed\":\"5580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23116\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23117\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11940.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10890,\"priceDoubleOcc\":\"11940.00\",\"priceSingleOcc\":23880,\"priceExtraBed\":\"7740.00\",\"priceWithoutBed\":\"7740.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23113\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23114\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7087.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6379,\"priceDoubleOcc\":\"7087.50\",\"priceSingleOcc\":14175,\"priceExtraBed\":\"4252.50\",\"priceWithoutBed\":\"4252.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23115\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8137.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7324,\"priceDoubleOcc\":\"8137.50\",\"priceSingleOcc\":16275,\"priceExtraBed\":\"4882.50\",\"priceWithoutBed\":\"4882.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8137.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23116\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9187.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8269,\"priceDoubleOcc\":\"9187.50\",\"priceSingleOcc\":18375,\"priceExtraBed\":\"5512.50\",\"priceWithoutBed\":\"5512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23117\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10447.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9529,\"priceDoubleOcc\":\"10447.50\",\"priceSingleOcc\":20895,\"priceExtraBed\":\"6772.50\",\"priceWithoutBed\":\"6772.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10447.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165494\":[{\"Sequence\":[0],\"TPInvnSysId\":[165494],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165499\":[{\"Sequence\":[0],\"TPInvnSysId\":[165499],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165504\":[{\"Sequence\":[0],\"TPInvnSysId\":[165504],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165509\":[{\"Sequence\":[0],\"TPInvnSysId\":[165509],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',6563,11940,3,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-08 00:00:00','2021-05-08 00:00:00',3,'India','101','2023-08-25 15:23:23','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'azzure-by-spree',NULL,NULL,NULL,0),(77,23108,1,5293,0,0,0,'Honeymoon,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23108,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Nagoa_Grande_Resort_&_Spa_29.jpg\",\"BookingValidUntill\":\"2021-05-08\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Nagoa Grande Resort & Spa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476382,\"Name\":\"Nagoa Grande Resort & Spa\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.560866\",\"Long\":\"73.78160299999999\",\"Address\":\"No &ndash; 18, 1, Nagoa, Arpora, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165474\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165479\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165484\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165489\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23108\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23109\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23110\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23111\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23112\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23108\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23109\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23110\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23111\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23112\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10185.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165474\":[{\"Sequence\":[0],\"TPInvnSysId\":[165474],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165479\":[{\"Sequence\":[0],\"TPInvnSysId\":[165479],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165484\":[{\"Sequence\":[0],\"TPInvnSysId\":[165484],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165489\":[{\"Sequence\":[0],\"TPInvnSysId\":[165489],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',6300,11640,3,'77_1630498232_0.jpg,77_1630498232_1.jpg,77_1630498232_2.jpg,77_1630498232_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-08 00:00:00','2021-05-08 00:00:00',3,'India','101','2023-08-25 15:23:25','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'nagoa-grande-resort-spa',NULL,NULL,NULL,0),(78,23102,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":23102,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Grandeur_De_Sanchi_70.jpg\",\"BookingValidUntill\":\"2021-05-08\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Grandeur De Sanchi\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476381,\"Name\":\"Grandeur De Sanchi\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5335195\",\"Long\":\"73.7617513\",\"Address\":\"1\\/230 - A, Holiday Street, Gaurawaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165444\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165449\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165454\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165459\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23102\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6210,\"priceDoubleOcc\":\"6900.00\",\"priceSingleOcc\":13800,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23103\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23104\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23105\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23106\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23102\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6037.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23103\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23104\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23105\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23106\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10185.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165444\":[{\"Sequence\":[0],\"TPInvnSysId\":[165444],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165449\":[{\"Sequence\":[0],\"TPInvnSysId\":[165449],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165454\":[{\"Sequence\":[0],\"TPInvnSysId\":[165454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165459\":[{\"Sequence\":[0],\"TPInvnSysId\":[165459],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',6038,11640,3,'78_1630498338_0.jpg,78_1630498338_1.jpg,78_1630498338_2.jpg,78_1630498338_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-08 00:00:00','2021-05-08 00:00:00',3,'India','101','2023-08-25 15:23:29','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'grandeur-de-sanchi',NULL,NULL,NULL,0),(79,23189,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23189,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Whispering_Palms_Beach_Resort_Goa_79.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Whispering Palms Beach Resort Goa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476065,\"Name\":\"Whispering Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5103448\",\"Long\":\"73.7679753\",\"Address\":\"Fort Aguada Road, Candolim Beach Rd, opp. Sunset Beach Resort, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166048\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166053\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166058\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166063\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166068\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23189\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23190\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13620.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12258,\"priceDoubleOcc\":\"13620.00\",\"priceSingleOcc\":27240,\"priceExtraBed\":\"8172.00\",\"priceWithoutBed\":\"8172.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23191\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14820.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13338,\"priceDoubleOcc\":\"14820.00\",\"priceSingleOcc\":29640,\"priceExtraBed\":\"8892.00\",\"priceWithoutBed\":\"8892.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14820.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23192\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14418,\"priceDoubleOcc\":\"16020.00\",\"priceSingleOcc\":32040,\"priceExtraBed\":\"9612.00\",\"priceWithoutBed\":\"9612.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23193\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17460.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":15858,\"priceDoubleOcc\":\"17460.00\",\"priceSingleOcc\":34920,\"priceExtraBed\":\"11052.00\",\"priceWithoutBed\":\"11052.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17460.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23189\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23190\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11917.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10726,\"priceDoubleOcc\":\"11917.50\",\"priceSingleOcc\":23835,\"priceExtraBed\":\"7150.50\",\"priceWithoutBed\":\"7150.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11917.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23191\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12967.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11671,\"priceDoubleOcc\":\"12967.50\",\"priceSingleOcc\":25935,\"priceExtraBed\":\"7780.50\",\"priceWithoutBed\":\"7780.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12967.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23192\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14017.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12616,\"priceDoubleOcc\":\"14017.50\",\"priceSingleOcc\":28035,\"priceExtraBed\":\"8410.50\",\"priceWithoutBed\":\"8410.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23193\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15277.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13876,\"priceDoubleOcc\":\"15277.50\",\"priceSingleOcc\":30555,\"priceExtraBed\":\"9670.50\",\"priceWithoutBed\":\"9670.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15277.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166048\":[{\"Sequence\":[0],\"TPInvnSysId\":[166048],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166053\":[{\"Sequence\":[0],\"TPInvnSysId\":[166053],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166058\":[{\"Sequence\":[0],\"TPInvnSysId\":[166058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166063\":[{\"Sequence\":[0],\"TPInvnSysId\":[166063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166068\":[{\"Sequence\":[0],\"TPInvnSysId\":[166068],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',9450,17460,4,NULL,NULL,NULL,1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:11','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'whispering-palms-beach-resort-goa',NULL,NULL,NULL,0),(80,23208,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23208,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Joia_Do_Mar_Resort_Goa_83.jpg\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Joia Do Mar Resort Goa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476371,\"Name\":\"Joia Do Mar Resort\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5510911\",\"Long\":\"73.764465\",\"Address\":\"Calangute - Arpora Rd, Porba Vaddo, Prabhu wada, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166135\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 5 : Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166140\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166145\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166150\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166155\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23208\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23209\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23210\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23211\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9990,\"priceDoubleOcc\":\"11100.00\",\"priceSingleOcc\":22200,\"priceExtraBed\":\"6660.00\",\"priceWithoutBed\":\"6660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23212\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12540.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11430,\"priceDoubleOcc\":\"12540.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"8100.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23208\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23209\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7612.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23210\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8662.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23211\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9712.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8741,\"priceDoubleOcc\":\"9712.50\",\"priceSingleOcc\":19425,\"priceExtraBed\":\"5827.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9712.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23212\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10972.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-09\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10001,\"priceDoubleOcc\":\"10972.50\",\"priceSingleOcc\":21945,\"priceExtraBed\":\"7087.50\",\"priceWithoutBed\":\"7087.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10972.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166135\":[{\"Sequence\":[0],\"TPInvnSysId\":[166135],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166140\":[{\"Sequence\":[0],\"TPInvnSysId\":[166140],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166145\":[{\"Sequence\":[0],\"TPInvnSysId\":[166145],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166150\":[{\"Sequence\":[0],\"TPInvnSysId\":[166150],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"166155\":[{\"Sequence\":[0],\"TPInvnSysId\":[166155],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',6300,12540,4,'80_1630590405_0.jpg,80_1630590405_1.jpg,80_1630590405_2.jpg,80_1630590405_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2023-08-25 15:23:08','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'joia-do-mar-resort-goa',NULL,NULL,NULL,0),(81,22815,1,5293,0,0,0,'Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22815,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Whispering_Palms_Beach_Resort_90.jpg\",\"BookingValidUntill\":\"2021-05-02\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;Whispering Palms Beach Resort is located in Candolim, a 5-minute walk from the beach. It features a swimming pool, fitness centre and rooms with flat-screen TVs. Free parking is provided. The air-conditioned rooms at Beach Resort Whispering Palms come with large windows and have plenty of natural light. Amenities include a tea\\/coffee maker and minibar. Hot shower facilities and toiletries are provided in the private bathrooms. Guests can laze in the spa bath or practice yoga at the Mediation Centre. Laundry and dry cleaning services are also available upon request.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sun and Palms poolside restaurant serves international dishes while traditional Indian food is offered at the Aahaata. Crossroads Bar serves light snacks and refreshing beverages in a relaxing setting. Whispering Palms Beach Resort is 42 km from Dabolim Airport.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Whispering Palms Beach Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing,Water Sports\",\"PackageType\":\"Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-02\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476065,\"Name\":\"Whispering Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5103448\",\"Long\":\"73.7679753\",\"Address\":\"Fort Aguada Road, Candolim Beach Rd, opp. Sunset Beach Resort, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"163369\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163374\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163379\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163384\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476065,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"22815\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"22816\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9720,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":21600,\"priceExtraBed\":\"6480.00\",\"priceWithoutBed\":\"6480.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"22817\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22818\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"7920.00\",\"priceWithoutBed\":\"7920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"22819\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13320,\"priceDoubleOcc\":\"14640.00\",\"priceSingleOcc\":29280,\"priceExtraBed\":\"9360.00\",\"priceWithoutBed\":\"9360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"22815\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7612.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"22816\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8505,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":18900,\"priceExtraBed\":\"5670.00\",\"priceWithoutBed\":\"5670.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"22817\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9450,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22818\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10395,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"6930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"22819\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12810.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-01\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11655,\"priceDoubleOcc\":\"12810.00\",\"priceSingleOcc\":25620,\"priceExtraBed\":\"8190.00\",\"priceWithoutBed\":\"8190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;Breakfast&lt;\\/strong&gt;&lt;\\/span&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt;&lt;\\/span&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt;&lt;\\/span&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt;&lt;\\/span&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt;&lt;\\/span&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"163369\":[{\"Sequence\":[0],\"TPInvnSysId\":[163369],\"Remark\":[\"&lt;p&gt;Ony For Testing&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"163374\":[{\"Sequence\":[0],\"TPInvnSysId\":[163374],\"Remark\":[\"&lt;p&gt;Ony For Testing&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"163379\":[{\"Sequence\":[0],\"TPInvnSysId\":[163379],\"Remark\":[\"&lt;p&gt;Ony For Testing&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"163384\":[{\"Sequence\":[0],\"TPInvnSysId\":[163384],\"Remark\":[\"&lt;p&gt;Ony For Testing&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa',NULL,'37009',7613,14640,3,NULL,NULL,NULL,2,'',0,'2021-04-13 00:00:00','2021-05-02 00:00:00','2021-05-02 00:00:00',3,'India','101','2023-08-25 15:23:52','2021-04-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'whispering-palms-beach-resort',NULL,NULL,NULL,0),(82,23053,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23053,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Joia_Do_Mar_Resort_56.jpg\",\"BookingValidUntill\":\"2021-05-07\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Joia Do Mar Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476371,\"Name\":\"Joia Do Mar Resort\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5510911\",\"Long\":\"73.764465\",\"Address\":\"Calangute - Arpora Rd, Porba Vaddo, Prabhu wada, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165270\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165275\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165280\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165285\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23053\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5400,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":12000,\"priceExtraBed\":\"3600.00\",\"priceWithoutBed\":\"3600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23054\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6480,\"priceDoubleOcc\":\"7200.00\",\"priceSingleOcc\":14400,\"priceExtraBed\":\"4320.00\",\"priceWithoutBed\":\"4320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23055\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23056\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8640,\"priceDoubleOcc\":\"9600.00\",\"priceSingleOcc\":19200,\"priceExtraBed\":\"5760.00\",\"priceWithoutBed\":\"5760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23057\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11040.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10080,\"priceDoubleOcc\":\"11040.00\",\"priceSingleOcc\":22080,\"priceExtraBed\":\"7200.00\",\"priceWithoutBed\":\"7200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23053\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4725,\"priceDoubleOcc\":\"5250.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"3150.00\",\"priceWithoutBed\":\"3150.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23054\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23055\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6615,\"priceDoubleOcc\":\"7350.00\",\"priceSingleOcc\":14700,\"priceExtraBed\":\"4410.00\",\"priceWithoutBed\":\"4410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23056\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7560,\"priceDoubleOcc\":\"8400.00\",\"priceSingleOcc\":16800,\"priceExtraBed\":\"5040.00\",\"priceWithoutBed\":\"5040.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23057\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9660.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"9660.00\",\"priceSingleOcc\":19320,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"6300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165270\":[{\"Sequence\":[0],\"TPInvnSysId\":[165270],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165275\":[{\"Sequence\":[0],\"TPInvnSysId\":[165275],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165280\":[{\"Sequence\":[0],\"TPInvnSysId\":[165280],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165285\":[{\"Sequence\":[0],\"TPInvnSysId\":[165285],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',5250,11040,3,'82_1629980677_0.jpg,82_1629980677_1.jpg,82_1629980677_2.jpg,82_1629980677_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',2,'',0,'2021-04-13 00:00:00','2021-05-07 00:00:00','2021-05-07 00:00:00',3,'India','101','2023-08-25 15:23:49','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'joia-do-mar-resort',NULL,NULL,NULL,0),(83,23065,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23065,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Kalki_Resorts_63.jpg\",\"BookingValidUntill\":\"2021-05-07\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Kalki Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476372,\"Name\":\"Kalki Resorts\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5564595\",\"Long\":\"73.76159679999999\",\"Address\":\"7\\/24-B, Primo Bom Rd, Baga, Goa 403516, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165298\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165303\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165308\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165313\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476372,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23065\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5670,\"priceDoubleOcc\":\"6300.00\",\"priceSingleOcc\":12600,\"priceExtraBed\":\"3780.00\",\"priceWithoutBed\":\"3780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6750,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23067\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7830,\"priceDoubleOcc\":\"8700.00\",\"priceSingleOcc\":17400,\"priceExtraBed\":\"5220.00\",\"priceWithoutBed\":\"5220.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23068\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8910,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":19800,\"priceExtraBed\":\"5940.00\",\"priceWithoutBed\":\"5940.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23069\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11340.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10350,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":22680,\"priceExtraBed\":\"7380.00\",\"priceWithoutBed\":\"7380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11340.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23065\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5512.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23067\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7612.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23068\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8662.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7796,\"priceDoubleOcc\":\"8662.50\",\"priceSingleOcc\":17325,\"priceExtraBed\":\"5197.50\",\"priceWithoutBed\":\"5197.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8662.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23069\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9922.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9056,\"priceDoubleOcc\":\"9922.50\",\"priceSingleOcc\":19845,\"priceExtraBed\":\"6457.50\",\"priceWithoutBed\":\"6457.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9922.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165298\":[{\"Sequence\":[0],\"TPInvnSysId\":[165298],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165303\":[{\"Sequence\":[0],\"TPInvnSysId\":[165303],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165308\":[{\"Sequence\":[0],\"TPInvnSysId\":[165308],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165313\":[{\"Sequence\":[0],\"TPInvnSysId\":[165313],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',5513,11340,3,'83_1630069675_0.jpg,83_1630069675_1.jpg,83_1630069675_2.jpg,83_1630069675_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-07 00:00:00','2021-05-07 00:00:00',3,'India','101','2023-08-25 15:23:44','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'kalki-resorts',NULL,NULL,NULL,0),(84,23092,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23092,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Amor_Beach_Resort_66.jpg\",\"BookingValidUntill\":\"2021-05-08\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Amor Beach Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476380,\"Name\":\"AMOR BEACH RESORT\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.51752310000001\",\"Long\":\"73.7651053\",\"Address\":\"Murrado Waddo, Candolim Beach Rd, Bardez, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165424\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165429\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165434\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165439\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5940,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3960.00\",\"priceWithoutBed\":\"3960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23093\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7020,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"4680.00\",\"priceWithoutBed\":\"4680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23094\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"5400.00\",\"priceWithoutBed\":\"5400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23095\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9180,\"priceDoubleOcc\":\"10200.00\",\"priceSingleOcc\":20400,\"priceExtraBed\":\"6120.00\",\"priceWithoutBed\":\"6120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23096\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":10620,\"priceDoubleOcc\":\"11640.00\",\"priceSingleOcc\":23280,\"priceExtraBed\":\"7560.00\",\"priceWithoutBed\":\"7560.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5775.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5198,\"priceDoubleOcc\":\"5775.00\",\"priceSingleOcc\":11550,\"priceExtraBed\":\"3465.00\",\"priceWithoutBed\":\"3465.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5775.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23093\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6143,\"priceDoubleOcc\":\"6825.00\",\"priceSingleOcc\":13650,\"priceExtraBed\":\"4095.00\",\"priceWithoutBed\":\"4095.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6825.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23094\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7875.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7088,\"priceDoubleOcc\":\"7875.00\",\"priceSingleOcc\":15750,\"priceExtraBed\":\"4725.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23095\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"8925.00\",\"priceSingleOcc\":17850,\"priceExtraBed\":\"5355.00\",\"priceWithoutBed\":\"5355.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23096\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10185.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-07\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":9293,\"priceDoubleOcc\":\"10185.00\",\"priceSingleOcc\":20370,\"priceExtraBed\":\"6615.00\",\"priceWithoutBed\":\"6615.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:2980b9&quot;&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165424\":[{\"Sequence\":[0],\"TPInvnSysId\":[165424],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165429\":[{\"Sequence\":[0],\"TPInvnSysId\":[165429],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165434\":[{\"Sequence\":[0],\"TPInvnSysId\":[165434],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165439\":[{\"Sequence\":[0],\"TPInvnSysId\":[165439],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',5775,11640,3,'84_1630071534_0.jpg,84_1630071534_1.jpg,84_1630071534_2.jpg,84_1630071534_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-08 00:00:00','2021-05-08 00:00:00',3,'India','101','2023-08-25 15:23:41','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'amor-beach-resort',NULL,NULL,NULL,0),(85,23058,1,5293,0,0,0,'Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":23058,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Lui_Beach_Resort_32.jpg\",\"BookingValidUntill\":\"2021-05-07\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5375,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5375,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"\",\"Name\":\"Lui Beach Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5787\",\"SupplierName\":\"Only Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-13\",\"To\":\"2021-05-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":37009,\"Title\":\"North Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476370,\"Name\":\"Lui Beach Resort\",\"Star\":\"2.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5033108\",\"Long\":\"73.7705112\",\"Address\":\"Aguada - Siolim Rd, Dando, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":37009,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5787,\"SupplierName\":\"Only Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"165250\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<h2><strong>Day 1 : Arrival In Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>On your arrival at Dabolim Airport \\/ Madgaon Rly station \\/ Thivim Rly Station \\/ Vasco Railway Station \\/ Karmali Rly Station\\/ Panjim Bus Stop \\/ Mapusa Bus Stop in Goa, meet the tour representative and be assisted with transfer to the hotel. Check-in to the hotel and relax. Rest of the day is free to enjoy at your own leisure. You can head out to enjoy the crystal clear beaches of Goa in the evening.<\\/p>\\r\\n\\r\\n<h2><strong>Day 2 : Half Day Sightseeing Tour<\\/strong><\\/h2>\\r\\n\\r\\n<p>After breakfast, Proceed on a Half Day sightseeing tour in Goa as per hotel itinerary. Overnight stay at the Hotel\\/Resort.<\\/p>\\r\\n\\r\\n<h2><strong>Day 3 : Discover Goa at your complete Leisure (no transport)<\\/strong><\\/h2>\\r\\n\\r\\n<p>You are free to enjoy the day at your own leisure. Indulge yourself in activities of your choice. Exhilarate in various amenities proffered by the resort. Additionally, have mouthwatering food and enjoy walking around the sea coast.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\\r\\n<h2><strong>Day 4: Departure from Goa<\\/strong><\\/h2>\\r\\n\\r\\n<p>After having a lavish breakfast in the morning, check out from the hotel. You are free to board the flight, Train Bus to home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165255\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165260\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"165265\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":37009,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":476370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23058\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"4887.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4399,\"priceDoubleOcc\":\"4887.50\",\"priceSingleOcc\":9775,\"priceExtraBed\":\"2932.50\",\"priceWithoutBed\":\"2932.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23059\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6037.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5434,\"priceDoubleOcc\":\"6037.50\",\"priceSingleOcc\":12075,\"priceExtraBed\":\"3622.50\",\"priceWithoutBed\":\"3622.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6037.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23060\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7187.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6469,\"priceDoubleOcc\":\"7187.50\",\"priceSingleOcc\":14375,\"priceExtraBed\":\"4312.50\",\"priceWithoutBed\":\"4312.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23061\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8337.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":7504,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":16675,\"priceExtraBed\":\"5002.50\",\"priceWithoutBed\":\"5002.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23062\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9717.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8884,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":19435,\"priceExtraBed\":\"9717.50\",\"priceWithoutBed\":\"6382.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23058\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"4462.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4016,\"priceDoubleOcc\":\"4462.50\",\"priceSingleOcc\":8925,\"priceExtraBed\":\"2677.50\",\"priceWithoutBed\":\"2677.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23059\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5512.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":4961,\"priceDoubleOcc\":\"5512.50\",\"priceSingleOcc\":11025,\"priceExtraBed\":\"3307.50\",\"priceWithoutBed\":\"3307.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5512.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23060\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":5906,\"priceDoubleOcc\":\"6562.50\",\"priceSingleOcc\":13125,\"priceExtraBed\":\"3937.50\",\"priceWithoutBed\":\"3937.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23061\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7612.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":6851,\"priceDoubleOcc\":\"7612.50\",\"priceSingleOcc\":15225,\"priceExtraBed\":\"4567.50\",\"priceWithoutBed\":\"4567.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23062\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8872.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-06\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":8111,\"priceDoubleOcc\":\"8872.50\",\"priceSingleOcc\":17745,\"priceExtraBed\":\"8872.50\",\"priceWithoutBed\":\"5827.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8872.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Budget Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast&lt;\\/strong&gt; at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Standard&amp;nbsp;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Day city tour by a\\/c sharing coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Deluxe Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day city tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Luxury&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;Package Inclusions&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Premium&lt;\\/strong&gt;&lt;strong&gt;&lt;strong&gt; &lt;\\/strong&gt;Package Inclusion&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;strong&gt;(non alcoholic)&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C Accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport\\/Station a\\/c transfer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day North Goa tour by Private A\\/C Car.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;One Day South Goa tour by Private A\\/C Car.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily &lt;strong&gt;Breakfast &amp;amp; &lt;strong&gt;Dinner&lt;\\/strong&gt; &lt;\\/strong&gt;at resort.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% Discount &lt;strong&gt;(Entry Tickets)&lt;\\/strong&gt; - Casino Pride &amp;amp; Big Daddy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Discount &lt;strong&gt;(Entry Tickets)&amp;nbsp;&lt;\\/strong&gt;- Hammerzz Club.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of swimming pool as per the pool timings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Water Sports Combo Package(Jet Ski, Banana Ride, Bumper Ride, Boat Ride &amp;amp; Parasailing)&amp;nbsp;For all Passengers.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"165250\":[{\"Sequence\":[0],\"TPInvnSysId\":[165250],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165255\":[{\"Sequence\":[0],\"TPInvnSysId\":[165255],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165260\":[{\"Sequence\":[0],\"TPInvnSysId\":[165260],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"165265\":[{\"Sequence\":[0],\"TPInvnSysId\":[165265],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','North Goa','North Goa,Goa,Indian Subcontinent,West India,India,South Goa','','37009',4463,9718,3,'85_1629979879_0.jpg,85_1629979879_1.jpg,85_1629979879_2.jpg,85_1629979879_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',1,'',0,'2021-04-13 00:00:00','2021-05-07 00:00:00','2021-05-07 00:00:00',3,'India','101','2023-08-25 15:23:46','2021-04-13 00:00:00',1,1,'0','0','0','','','',NULL,'lui-beach-resort',NULL,NULL,NULL,0),(86,25388,1,5293,0,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":25388,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DO_DHAM_YATRA_2021_-_BY_HELICOPTER_85.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;DO DHAM YATRA 2021 - BY HELICOPTER&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\nEx-Sahastradhara (Dehradun)&lt;br \\/&gt;\\r\\n01 Day Package&lt;br \\/&gt;\\r\\n&lt;strong&gt;Routing&lt;\\/strong&gt;: Sahastradhara &amp;ndash; Badrinath - Kedarnath &amp;ndash; Sahastradhara&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":20,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dehradun\",\"DestinationPlacesSysId\":7680,\"SourcePlaces\":\"Dehradun\",\"SourcePlaceSysId\":7680,\"AgencyName\":\"I Need Trip\",\"Name\":\"DO DHAM YATRA 2021 - BY HELICOPTER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6311\",\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Cab,Guided Tours,Helicopter\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7680,\"Title\":\"Dehradun\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6311,\"SupplierName\":\"GLOBAL VECTRA HELICORP LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181854\",\"Title\":\"DAY TRIP TO KEDARNATH &amp; BADRINATH BY HELICOPTER\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;0700hrs&lt;\\/strong&gt; - Departure from Dehradun Sahastradhara Helipad.&lt;br \\/&gt;\\r\\n&lt;strong&gt;0800hrs&lt;\\/strong&gt; - Arrival at Badrinath, upon arrival you will be provided a car which will take you to Badrinath Temple where you will perform darshan following which you head back to the Helipad.&lt;br \\/&gt;\\r\\n&lt;strong&gt;1000hrs&lt;\\/strong&gt; - Departure from Badrinath by Helicopter&lt;br \\/&gt;\\r\\n&lt;strong&gt;1045hrs&lt;\\/strong&gt; - Arrival at Kedarnath; Due to Government regulations, you will have to change helicopter at Sitapur. Upon arrival at Kedarnath, you will be met by GVHL ground personnel, who will escort you to the holy shrine. We will offer VIP darshan slips at Kedarnath temple so you can avoid the long queue and finish darshan quickly. The cost for these slips is Rs. 2500 per person but we have included this in your package.&lt;br \\/&gt;\\r\\n&lt;strong&gt;1300hrs&lt;\\/strong&gt; &amp;ndash; Depart for Shri Kedarnath by Helicopter.&lt;br \\/&gt;\\r\\n&lt;strong&gt;1340hrs&lt;\\/strong&gt; - Arrival at Dehradun (Sahastradhara Helipad).&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7680,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":859,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm by Uttarakhand Government.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maximum 06 Passengers will be allowed in 01 Helicopter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Total passenger weight will not be in excess of 430 Kgs.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maximum Baggage Allowance 5Kgs\\/Person, Passenger may carry only one small pack of not more than 2 Kgs of weight in Flight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Excess volume baggage would not be allowed on Helicopter flight.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All timings mentioned are indicative&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Assistance for priority Darshan at both Dham&amp;rsquo;s will be provided in your package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price is subject to change without prior notice. Please confirm in advance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Special puja arrangements at all locations not included in this package&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal nature such as laundry, extra bedding, telephone calls, tips, gratuities, table drink, room service, medical evacuation due to ill health&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Price includes Kedarnath &amp;amp; Badrinath Temple Darshans by helicopter.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price includes the cost of vehicle\\/cab transfer&amp;nbsp;at Badrinath&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Price includes assistance in darshan at Kedarnath &amp;amp; Badrinath temples. Any special puja charges will have to be paid directly by passengers.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amp;rsquore passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amp;rsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amp;rsquot just about technology and systems. It&amp;amp;rsquos what we do for people with them that count. Simply put, we like helping people&amp;amp;mdashwhether they&amp;amp;rsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amp;rsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amp;rsquore natural partners with our clients, colleagues, and our community, and we&amp;amp;rsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amp;rsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181854\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181854],\"Remark\":[\"&lt;p&gt;ALL TRANSFERS BY HELICOPTER &amp; PRIVATE CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dehradun','Dehradun,Uttarakhand,Indian Subcontinent,North India,India,Badrinath,Kedarnath','','7680',0,0,0,NULL,NULL,'[{\"day\":1,\"images\":\"\"}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 14:14:42','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'do-dham-yatra-2021-by-helicopter',NULL,NULL,NULL,0),(88,24973,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Weekend,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24973,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_05_Charming_Cherrapunji_9.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 05 Charming Cherrapunji\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Weekend,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14868,\"Title\":\"Krang Suri Falls\",\"Description\":\"Krang Suri waterfall is known for being located within the mountains, which can also be seen from afar. To reach the waterfall the tourists must walk alongside the border of the mountains, which is a very narrow yet slippery path.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Krang_Suri_Falls_25073_1582626874.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9193,\"Title\":\"Laitlum Canyons\",\"Description\":\"Laitlum Canyons are perfectly perched in the Khasi Hills and is the most off-beat and explored places for a traveler looking for a unique experience. With a short hike to the edge of the hills, experience peace, adventure and beauty all at once. Visit the hilltop and admire the alluring views of the whole valley. Taking into account its surreal beauty and tranquillity, it is one of the must-visit places near Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}},{\"CityId\":34563,\"Title\":\"Cherrapunji\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467880,\"Name\":\"Pala Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kutmadan, Sohra, Cherrapunji, Shillong, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;&nbsp;At Pala Resort, we pride ourselves in outstanding services. Our Staffs would make sure that our esteemed guests feel relaxed and at home, we are happy to provide and offer:&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467880\\/4650_34a8b9a4ed689bd8198ad424f24ec46b1582889526.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467882,\"Name\":\"San Naela Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Land mark - Near NIT , SOHRA , Pynshadkhurai - Shella Road Saitsohpen, Cherrapunji&lrm;, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Resort San-Nael-La organize any enjoyable and memorable event you require. A truly remarkable destination where We try to keep your stay as special as you are. With experienced team in hospitality industry, we are second to none and can offer better service within your budget. It is very popular for its restaurant.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467882\\/4650_bd829c9e9e583c10af878ebf50c561ec1582889677.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467886,\"Name\":\"Sohra Plaza\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Situated in the wettest place on the planet (though not currently), this homestay offers you a comfortable and homely stay. Since there is almost no construction around this place, you get unobstructed views of the landscape of Khasi Hills.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467886\\/4650_6773560e9a6877706160c30298f3233d1582890001.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":479704,\"Name\":\"Smoky Falls Mae Fi Resort\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2403781\",\"Long\":\"91.676958\",\"Address\":\"Tyrna Enroute to Nongriat, via Sohra Cherrapunjee Cherrapunji, Tyrna, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Smoky Falls Mae Fi Resort is located at Tyrna Village, 7 km from Cherrapunjee enroute to the Double decker living root bridge and Rainbow Falls, Nongriat. You can stay at our resort and park your car here and get down to Nongriat. The trek from here is about an hour. The resort has a view point, where you can see many waterfalls falling down from Sohra \\/ Cherrapunjee mountain range.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479704\\/4650_6657b8ec009c75e090169b3e236037d81617359955.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14868,\"Title\":\"Krang Suri Falls\",\"Description\":\"Krang Suri waterfall is known for being located within the mountains, which can also be seen from afar. To reach the waterfall the tourists must walk alongside the border of the mountains, which is a very narrow yet slippery path.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Krang_Suri_Falls_25073_1582626874.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9193,\"Title\":\"Laitlum Canyons\",\"Description\":\"Laitlum Canyons are perfectly perched in the Khasi Hills and is the most off-beat and explored places for a traveler looking for a unique experience. With a short hike to the edge of the hills, experience peace, adventure and beauty all at once. Visit the hilltop and admire the alluring views of the whole valley. Taking into account its surreal beauty and tranquillity, it is one of the must-visit places near Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178808\",\"Title\":\"Guwahati \\u2013 Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178813\",\"Title\":\"Shillong - Laitlum Canyons -Krang Suri Falls - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast we proceed to Laitlum Canyons for some breathtaking views. We then visit Krang Suri Falls. It is one of the best waterfalls in Meghalaya. You can also swim in a naturally formed pool here. You can also go behind the waterfall and see the water falling in front of you. Evening return back to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14868,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9193,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178818\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178823\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Cherrapunji \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness. &nbsp;It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River. Proceed to Cherrapunji. &nbsp;Overnight stay in Cherrapunji.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479704,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15494,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178828\",\"Title\":\"Cherrapunji \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Cherrapunji. Visit &nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Overnight stay in Cherrapunji.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479704,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178833\",\"Title\":\"Cherrapunji - Guwahati (165 KM | 4.5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast today check out and proceed to Guwahati. Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.<br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24973\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10707.88\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8185,\"priceDoubleOcc\":\"10707.88\",\"priceSingleOcc\":20877.879999999997,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10707.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8185,\"priceDoubleOcc\":\"10707.88\",\"priceSingleOcc\":20877.879999999997,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10707.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8185,\"priceDoubleOcc\":\"10707.88\",\"priceSingleOcc\":20877.879999999997,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10707.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8185,\"priceDoubleOcc\":\"10707.88\",\"priceSingleOcc\":20877.879999999997,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10707.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8648,\"priceDoubleOcc\":\"11401.70\",\"priceSingleOcc\":21571.7,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11401.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10531,\"priceDoubleOcc\":\"14226.70\",\"priceSingleOcc\":24396.7,\"priceExtraBed\":\"3139.14\",\"priceWithoutBed\":\"1867.89\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14226.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24974\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8755.24\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6843,\"priceDoubleOcc\":\"8755.24\",\"priceSingleOcc\":16947.739999999998,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8755.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6843,\"priceDoubleOcc\":\"8755.24\",\"priceSingleOcc\":16947.739999999998,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8755.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6843,\"priceDoubleOcc\":\"8755.24\",\"priceSingleOcc\":16947.739999999998,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8755.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6843,\"priceDoubleOcc\":\"8755.24\",\"priceSingleOcc\":16947.739999999998,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8755.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8098,\"priceDoubleOcc\":\"10638.95\",\"priceSingleOcc\":18831.45,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10638.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9982,\"priceDoubleOcc\":\"13463.95\",\"priceSingleOcc\":21656.45,\"priceExtraBed\":\"3017.10\",\"priceWithoutBed\":\"1322.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13463.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24975\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12009.64\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9193,\"priceDoubleOcc\":\"12009.64\",\"priceSingleOcc\":23592.14,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12009.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9193,\"priceDoubleOcc\":\"12009.64\",\"priceSingleOcc\":23592.14,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12009.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9193,\"priceDoubleOcc\":\"12009.64\",\"priceSingleOcc\":23592.14,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12009.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9193,\"priceDoubleOcc\":\"12009.64\",\"priceSingleOcc\":23592.14,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12009.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10449,\"priceDoubleOcc\":\"13893.35\",\"priceSingleOcc\":25475.85,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13893.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":12332,\"priceDoubleOcc\":\"16718.35\",\"priceSingleOcc\":28300.85,\"priceExtraBed\":\"3559.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16718.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24976\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14577.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11896,\"priceDoubleOcc\":\"14577.00\",\"priceSingleOcc\":28419.5,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14577.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11896,\"priceDoubleOcc\":\"14577.00\",\"priceSingleOcc\":28419.5,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14577.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11896,\"priceDoubleOcc\":\"14577.00\",\"priceSingleOcc\":28419.5,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14577.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11896,\"priceDoubleOcc\":\"14577.00\",\"priceSingleOcc\":28419.5,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14577.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13214,\"priceDoubleOcc\":\"16554.50\",\"priceSingleOcc\":30397,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16554.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14909,\"priceDoubleOcc\":\"19097.00\",\"priceSingleOcc\":32939.5,\"priceExtraBed\":\"6533.66\",\"priceWithoutBed\":\"1186.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19097.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24977\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17334.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14001,\"priceDoubleOcc\":\"17334.20\",\"priceSingleOcc\":34001.7,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17334.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14001,\"priceDoubleOcc\":\"17334.20\",\"priceSingleOcc\":34001.7,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17334.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14001,\"priceDoubleOcc\":\"17334.20\",\"priceSingleOcc\":34001.7,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17334.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14001,\"priceDoubleOcc\":\"17334.20\",\"priceSingleOcc\":34001.7,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17334.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15319,\"priceDoubleOcc\":\"19311.70\",\"priceSingleOcc\":35979.2,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19311.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17014,\"priceDoubleOcc\":\"21854.20\",\"priceSingleOcc\":38521.7,\"priceExtraBed\":\"7333.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21854.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24973\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10044.56\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":7678,\"priceDoubleOcc\":\"10044.56\",\"priceSingleOcc\":19584.559999999998,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10044.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":7678,\"priceDoubleOcc\":\"10044.56\",\"priceSingleOcc\":19584.559999999998,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10044.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":7678,\"priceDoubleOcc\":\"10044.56\",\"priceSingleOcc\":19584.559999999998,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10044.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":7678,\"priceDoubleOcc\":\"10044.56\",\"priceSingleOcc\":19584.559999999998,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10044.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8112,\"priceDoubleOcc\":\"10695.40\",\"priceSingleOcc\":20235.4,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10695.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9878,\"priceDoubleOcc\":\"13345.40\",\"priceSingleOcc\":22885.4,\"priceExtraBed\":\"2944.68\",\"priceWithoutBed\":\"1752.18\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13345.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24974\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8212.88\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6419,\"priceDoubleOcc\":\"8212.88\",\"priceSingleOcc\":15897.88,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8212.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6419,\"priceDoubleOcc\":\"8212.88\",\"priceSingleOcc\":15897.88,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8212.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6419,\"priceDoubleOcc\":\"8212.88\",\"priceSingleOcc\":15897.88,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8212.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":6419,\"priceDoubleOcc\":\"8212.88\",\"priceSingleOcc\":15897.88,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8212.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":7597,\"priceDoubleOcc\":\"9979.90\",\"priceSingleOcc\":17664.9,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9979.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9363,\"priceDoubleOcc\":\"12629.90\",\"priceSingleOcc\":20314.9,\"priceExtraBed\":\"2830.20\",\"priceWithoutBed\":\"1240.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12629.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24975\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11265.68\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8623,\"priceDoubleOcc\":\"11265.68\",\"priceSingleOcc\":22130.68,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11265.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8623,\"priceDoubleOcc\":\"11265.68\",\"priceSingleOcc\":22130.68,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11265.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8623,\"priceDoubleOcc\":\"11265.68\",\"priceSingleOcc\":22130.68,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11265.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":8623,\"priceDoubleOcc\":\"11265.68\",\"priceSingleOcc\":22130.68,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11265.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":9801,\"priceDoubleOcc\":\"13032.70\",\"priceSingleOcc\":23897.7,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13032.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11568,\"priceDoubleOcc\":\"15682.70\",\"priceSingleOcc\":26547.7,\"priceExtraBed\":\"3339.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15682.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24976\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13674.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11159,\"priceDoubleOcc\":\"13674.00\",\"priceSingleOcc\":26659,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13674.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11159,\"priceDoubleOcc\":\"13674.00\",\"priceSingleOcc\":26659,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13674.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11159,\"priceDoubleOcc\":\"13674.00\",\"priceSingleOcc\":26659,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13674.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11159,\"priceDoubleOcc\":\"13674.00\",\"priceSingleOcc\":26659,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13674.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":12396,\"priceDoubleOcc\":\"15529.00\",\"priceSingleOcc\":28514,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15529.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13986,\"priceDoubleOcc\":\"17914.00\",\"priceSingleOcc\":30899,\"priceExtraBed\":\"6128.92\",\"priceWithoutBed\":\"1113.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17914.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24977\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16260.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13133,\"priceDoubleOcc\":\"16260.40\",\"priceSingleOcc\":31895.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16260.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13133,\"priceDoubleOcc\":\"16260.40\",\"priceSingleOcc\":31895.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16260.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13133,\"priceDoubleOcc\":\"16260.40\",\"priceSingleOcc\":31895.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16260.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13133,\"priceDoubleOcc\":\"16260.40\",\"priceSingleOcc\":31895.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16260.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14370,\"priceDoubleOcc\":\"18115.40\",\"priceSingleOcc\":33750.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18115.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-06\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15960,\"priceDoubleOcc\":\"20500.40\",\"priceSingleOcc\":36135.4,\"priceExtraBed\":\"6879.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20500.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178808\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178808],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178813\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178813],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178818\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178818],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178823\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178823],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178828\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178828],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178833\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178833],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Shillong,Cherrapunji','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Cherrapunji,Guwahati,Dawki',NULL,'25073,34563',8213,21854,4,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2021-07-29 16:23:46','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'no-05-charming-cherrapunji',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (89,24690,1,5293,0,0,0,'Wildlife,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":24690,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_11_North_East_Triangle_68.jpg\",\"BookingValidUntill\":\"2021-04-30\",\"AdvBookingDays\":7,\"DETAILS\":\"\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 11 North East Triangle\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4409\",\"SupplierName\":\"Assam Holidays 1\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Activity,Sightseeing,Car On Disposal\",\"PackageType\":\"Wildlife,Family,Hill Station\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-04-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13741,\"Title\":\"Kaziranga National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467876,\"Name\":\"Florican Lodge\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"AT Rd, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;KAZIRANGA FLORICAN is located by the National Highway 37 (ASEAN Highway 1) at Kohora in the heart of Kaziranga National Park, Assam. Here attention to details create a soothing blend of warm, effortless service and harmonious spaces!&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467876\\/4650_04f7f6f92c0f4905a6e18c38b39f35af1582888914.jpg\",\"AccoAminitiesMask\":\"1100010000000001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467875,\"Name\":\"Wild Grass Lodge\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, Resort Borgos, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;The Wild Grass Lodge is a jungle lodge located outside of kaziranga national park, 200 kms from guwahati, assam. It is built in an attractive rural style kind of architecture, with grounds having more than 40 species of trees over 200 species of shrubs, creepers and climbers. You will feel here perfect harmony of nature.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467875\\/4650_805691cb2c59fa1e24e9eece632b9c641582886856.jpg\",\"AccoAminitiesMask\":\"1100010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467872,\"Name\":\"Resort Borgos\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, No.2 Sildubi, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Resort Borgos offers impeccable service and all the essential amenities to invigorate travelers. Guests of the hotel can enjoy on-site features like 24-hour room service, Wi-Fi in public areas, car park, room service, airport transfer.&lt;br \\/&gt;\\r\\n&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467872\\/4650_c58de72a0c8d9967eb5b686d3e369db31582885013.jpg\",\"AccoAminitiesMask\":\"1110000000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467873,\"Name\":\"IORA The Retreat\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bogorijuri, Kohora, Kaziranga National Park, Resort Borgos, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Iora Resort spread in 20 acre with 4 star amenities and 42 rooms is a good option to stay in Kaziranga National Park.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467873\\/4650_985019eeee56c6be38bef58c156570841582886398.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467874,\"Name\":\"Dhanshree Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, Bogorijuri, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Dhanshree Resort offers a variety of spacious rooms and which were recently redesigned with comfortable and modern wooden furniture. Comfort, style, and value are hallmarks of dhanshree Resort accommodations. Wooden furniture including sofa, center table with wardrobe provides an elegant atmosphere.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467874\\/4650_1f5805cc60d7fd7285b44d20c7148eec1582886712.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Cottage\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1244,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.2716565,\"Long\":91.7308033,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1289\\/thumb\\/ Nohkalikai Falls_863.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}},{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1244,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.2716565,\"Long\":91.7308033,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1289\\/thumb\\/ Nohkalikai Falls_863.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467887,\"Name\":\"Kiranshree Grand\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"New Airport Road Mirzapur, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817962,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_01617279793.jpg\"},{\"ImagId\":4817963,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_11617279793.jpg\"},{\"ImagId\":4817964,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_21617279793.jpg\"},{\"ImagId\":4817965,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_31617279793.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;The historic city of Guwahati is the gateway to India&rsquo;s Northeast and Kiranshree Grand stands with pride at the gateway of Guwahati city. Just a few steps away from the Lokapriya Gopinath Bordoloi International Airport, this Hotel cum Resort is also ideal for anyone making a stopover on a trip to any other part of the northeastern region. The location of the hotel helps you travel to any part of Assam or the rest of the Northeast without getting stuck in the city traffic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegantly designed hotel cum resort boasts of 122 luxurious rooms and suites with state of the art facilities and 24x7 services and is spread over 6 acres of land. The moment you step inside the property, the wide pathway that leads to the main lobby of the hotel will awe you with its grandeur. On one side of the pathway is the high boundary wall covered in green vines while on the other side is the vast parking zone. As the pathway comes to an end you will see the beautiful palm court ahead and the main lobby on your right. The ardour to strike a fine balance between nature and modern lifestyle is visible all throughout the campus and the lobby is no different. While our reception desk carries out the formalities of check-in, maybe you can find some time to admire the architecture and decorations of the enormously spacious lobby that transcends space and dimension through the glass walls on three sides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can choose from Club Rooms, Grand Suites and Presidential Suites to meet your accomodational requirements during business trips, holidays etc. Or confine yourself in any of the Honeymoon Suites, to enjoy some intimate, romantic moments with your special one. Every floor of the residential blocks has a spacious lounge to relax.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_b5720a0bf7d7ce57d46dbd074ff16f6e1582890297.jpg\",\"AccoAminitiesMask\":\"1100010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467889,\"Name\":\"Shoolin Grand\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G.S. Road Opp Indian Oil Petrol Pump, Rukmini Gaon, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817961,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_01617279603.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Located in Rukmini Gaon of Guwahati City, we are ideally located within the conveniences of city life yet distant enough from it&rsquo;s over buzz. Something we all love from time to time. Hotel Shoolin Grand is equipped with premium infrastructure and services that guarantee a pleasurable stay. If you are looking for a uber luxurious experience, we have 45 premium category rooms, including three suites, and a multi-speciality spa with a unisex beauty salon. Food lovers can delight in the vast range of dishes in our multicuisine restaurant and experiment with tastes and flavors. While ensuring our guests the most comfortable stay, we also provide facilities of baby care room and kids play zone. We are also open for conferences and private events with our well set-up conference and banquet halls. So the next time you plan a visit to Guwahati or a carefree staycation, choose leisure, comfort, and impeccable facilities&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_9c4b5dba1c71af56b3d93db827f671a41582890981.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467890,\"Name\":\"Mayflower Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"MLN Road, Pan Bazaar, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817955,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_01617279253.jpg\"},{\"ImagId\":4817956,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_11617279253.jpg\"},{\"ImagId\":4817957,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_21617279253.jpg\"},{\"ImagId\":4817958,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_31617279253.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;We at Mayflower Hotel are bundled up with all comforts of modern day hospitality industry. Being a luxurious hotel, we understand the meaning of hospitality and treat you in a way that you feel at home. To your surprise, our room rates are amazing. You can also choose our premium range of rooms or suites at a much competitive price.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Booking in advance would help us in giving you a warm reception. If you have any query, send us a mail on &ldquo;reservation@mayflowerhotel.in.net&rdquo;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We also take this opportunity to thank our regular guests, for whom this website aims to provide all kind of information and latest updates. We welcome your suggestions to help us serve you better.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;So Come &amp; Enjoy with your Family &amp; Friends!&lt;br \\/&gt;\\r\\n&nbsp;&lt;br \\/&gt;\\r\\n&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_23d03b3e2d2bea930271959af28a36121582891147.jpg\",\"AccoAminitiesMask\":\"1000010000001001001\",\"AccoAminities\":[{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Irish\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467891,\"Name\":\"D Courtyard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"RG Baruah Rd, Rajdhani Nursery, Opp, Ganeshguri, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817951,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_01617278795.jpg\"},{\"ImagId\":4817952,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_11617278795.jpg\"},{\"ImagId\":4817953,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_21617278795.jpg\"},{\"ImagId\":4817954,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_31617278795.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel &amp;#39;D&amp;#39; Courtyard is reckoned among the luxury budget hotels in Guwahati. Most significantly the hotel aims to provide luxurious standard within budget without compromising with your comforts. We enrich the stay of our visitors with our holistic approach of delivering excellent services. Our personalized and customized services suit every guest unique needs. A part from the significant hotels in guwahati, we stand high considering the amenities and services we offer. Our professional and experienced staff aims to satisfy an individual&rsquo;s specific needs with full efficiency. Quality, elegance and comfort are what make it one of the best luxury budget hotels in Guwahati, Assam. The hotel with its host of facilities and services is designed to meet every need of leisure \\/ travel \\/ banquet \\/ conferencing services with best hospitality industry standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The 34 well appointed guest keys and suites are elegantly designed and the delectable dinning option, technologically advanced conferencing features exquisite recreation facilities as well as warm and attentive services are just some of the things that make Hotel &amp;#39;D&amp;#39; Courtyard, Guwahati a preferred destination of pure bliss.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_c68865f572bfcd7ac30b170f1de0f9281582891299.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467892,\"Name\":\"Hotel Rialto\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"GNB Rd, Pan Bazaar, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817947,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_01617278634.jpg\"},{\"ImagId\":4817948,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_11617278635.jpg\"},{\"ImagId\":4817949,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_21617278635.jpg\"},{\"ImagId\":4817950,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_01617278658.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel Rialto is a value for money accommodation offering a comfortable stay to its patrons. Guests can enjoy the delicacies at the in-house pure vegetarian restaurant. Arranged over five floors, guests have an option to choose from its 34 well-kept rooms that are equipped amenities in the rooms include toiletries, makeup mirror, mini-fridge, drinking water, flat-screen TV, telephone, comfortable bed, side table, sofa bed, work desk, separate seating area, and attached bathroom with the facility of hot\\/cold running water. This hotel in Guwahati features car parking, front desk, travel counter, and conference hall on its premises. Guests are offered laundry, room service, housekeeping, and doctor on call during their stay.Hotel Rialto is at a distance of Guwahati Railway Station, which is 1 km away, 1 km from Assam State Transport Corporation, 6 km from the Assam State Zoo Cum Botanical Garden and 22 km from Lokpriya Gopinath Bordoloi International Airport. Nearby points of interest to drop by are Kamakhya Temple (7 km), Silsako Lake (11 km) , and Umananda Temple (1 km).&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_b9c878b62fbdb948b7715129b6e02faf1582891612.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1244,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.2716565,\"Long\":91.7308033,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1289\\/thumb\\/ Nohkalikai Falls_863.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"176774\",\"Title\":\"Guwahati - Kaziranga National Park (230 KM  4.5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Guwahati. Meet and be assisted by our representative at the airport\\/Railway Station. Transfer to Kaziranga National Park, the home of the One Horn Indian Rhinoceros. Check in at your hotel\\/Lodge\\/resort. Evening you may visit Orchid Park and the nearby Tea Plantations. Overnight stay at Kaziranga National Park.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467876,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467875,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467874,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467873,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467872,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14951,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176779\",\"Title\":\"Kaziranga National Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>Early morning explore Kaziranga National Park on back of elephant. Apart from world&#39;s endangered One Horn Indian Rhinoceros, the Park sustains half the world&#39;s population of genetically pure Wild Water Buffaloes, over 1000 Wild elephants and perhaps the densest population of Royal Bengal Tiger anywhere. Kaziranga National Park is also a bird watcher&#39;s paradise and home to some 500 species of Birds. The Crested Serpent Eagle, Palla&#39;s Fishing Eagle, Greyheaded Fishing Eagle, Swamp Partridge, Bar-headed goose, whistling Teal, Bengal Florican, Storks, Herons and Pelicans are some of the species found here. We will return to the resort for breakfast. Afternoon we proceed for a jeep safari. Evening come back to the hotel. Overnight stay at Kaziranga National Park.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467876,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467875,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467874,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467873,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467872,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8421,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176784\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176789\",\"Title\":\"Kaziranga National Park\\u2013 Shillong (280 Km | 6 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast drive to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176794\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM  1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit&nbsp; Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1244,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176799\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River Evening return to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15494,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176804\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176809\",\"Title\":\"Shillong - Guwahati (100 KM  3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati. Arrive and check in at hotel. Visit Srimanta Sankardev Kalakshetra a place where Assamese history and culture is presented, You may also visit the Assam Film Museum to know the History of Assamese Cinema. Visit GTAC Tea Lounge to enjoy a cup of finest Assam Tea and also carry some Tea back home. Here you will find the finest quality of Organic, CTC, Orthodox, Green Tea, White Tea, Purple Tea etc. Evening you may take a River Cruise (Direct Payment) on the mighty River Brahmaputra. You may also visit the local market. Assam is famous for Assam Silk particularly Golden Muga Silk, Assam Tea, Bamboo and Cane Products. Overnight stay in Guwahati.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467891,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467890,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Irish\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467889,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1660,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176814\",\"Title\":\"Guwahati Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast check out from hotel. As time permits we may take a tour of the Kamakhya Temple and other Temples in Guwahati namely Purva Tirupati Shri Balaji Temple, Sukreswar Temple, Navagraha Temple, Umananda Temple at the Peacock Island which is the smallest inhabited River Island in the World, Assam State Museum, Dighali Pukhuri (Lake), State Zoo cum Botanical Garden, Planetarium and the Assam State Emporiums.&nbsp;With everlasting memories transfer to Guwahati airport\\/railway station for onward journey.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":81,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":82,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1217,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1697,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1834,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24690\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14102.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11958,\"priceDoubleOcc\":\"14102.40\",\"priceSingleOcc\":14102.4,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14102.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12701,\"priceDoubleOcc\":\"15216.58\",\"priceSingleOcc\":15216.58,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15216.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12701,\"priceDoubleOcc\":\"15216.58\",\"priceSingleOcc\":15216.58,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15216.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":12701,\"priceDoubleOcc\":\"15216.58\",\"priceSingleOcc\":15216.58,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15216.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13838,\"priceDoubleOcc\":\"16921.75\",\"priceSingleOcc\":16921.75,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16921.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":17096,\"priceDoubleOcc\":\"21809.00\",\"priceSingleOcc\":43053,\"priceExtraBed\":\"7670.44\",\"priceWithoutBed\":\"8164.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24691\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14102.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11732,\"priceDoubleOcc\":\"14102.40\",\"priceSingleOcc\":14102.4,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14102.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":\"16549.98\",\"priceSingleOcc\":16549.98,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16549.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":\"16549.98\",\"priceSingleOcc\":16549.98,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16549.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":\"16549.98\",\"priceSingleOcc\":16549.98,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16549.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14501,\"priceDoubleOcc\":\"18255.15\",\"priceSingleOcc\":18255.15,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18255.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":17759,\"priceDoubleOcc\":\"23142.40\",\"priceSingleOcc\":45742.4,\"priceExtraBed\":\"6991.31\",\"priceWithoutBed\":\"6087.31\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23142.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24692\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20463.17\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":\"20463.17\",\"priceSingleOcc\":20463.17,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20463.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":\"20463.17\",\"priceSingleOcc\":20463.17,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20463.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":\"20463.17\",\"priceSingleOcc\":20463.17,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20463.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":\"20463.17\",\"priceSingleOcc\":20463.17,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20463.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":17752,\"priceDoubleOcc\":\"22788.71\",\"priceSingleOcc\":22788.71,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22788.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":21010,\"priceDoubleOcc\":\"27675.96\",\"priceSingleOcc\":54795.96,\"priceExtraBed\":\"7678.35\",\"priceWithoutBed\":\"3384.35\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27675.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24693\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25255.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":\"25255.50\",\"priceSingleOcc\":25255.5,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25255.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":\"25255.50\",\"priceSingleOcc\":25255.5,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25255.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":\"25255.50\",\"priceSingleOcc\":25255.5,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25255.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":\"25255.50\",\"priceSingleOcc\":25255.5,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25255.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22462,\"priceDoubleOcc\":\"27713.25\",\"priceSingleOcc\":27713.25,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27713.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25456,\"priceDoubleOcc\":\"32205.00\",\"priceSingleOcc\":64410,\"priceExtraBed\":\"11958.79\",\"priceWithoutBed\":\"8514.55\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32205.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24694\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31142.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":\"31142.80\",\"priceSingleOcc\":31142.8,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31142.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":\"31142.80\",\"priceSingleOcc\":31142.8,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31142.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":\"31142.80\",\"priceSingleOcc\":31142.8,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31142.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":\"31142.80\",\"priceSingleOcc\":31142.8,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31142.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":27495,\"priceDoubleOcc\":\"33600.55\",\"priceSingleOcc\":33600.55,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33600.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":30489,\"priceDoubleOcc\":\"38092.30\",\"priceSingleOcc\":75382.3,\"priceExtraBed\":\"15283.25\",\"priceWithoutBed\":\"9282.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38092.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amprsquore passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amprsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amprsquot just about technology and systems. It&amp;amprsquos what we do for people with them that count. Simply put, we like helping people&amp;ampmdashwhether they&amp;amprsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amprsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amprsquore natural partners with our clients, colleagues, and our community, and we&amp;amprsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amprsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"2000\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"7857\",\"Value\":\"0\"},{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"7862\",\"Value\":\"25\"},{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"7867\",\"Value\":\"50\"},{\"DaysBefore\":3,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 3 Days\",\"TPRulesSysId\":\"7872\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"176774\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176774],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176779\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176779],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176784\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176784],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176789\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176789],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176794\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176794],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176799\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[176799],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176804\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176804],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176809\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176809],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176814\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[176814],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Kaziranga National Park,Shillong,Guwahati','Kaziranga National Park,Assam,Indian Subcontinent,Northeast India,India,Shillong,Meghalaya,Guwahati,Cherrapunji,Dawki,Mawlynnong',NULL,'13741,25073,11240',14102,38092,6,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-04-30 00:00:00','2021-04-30 00:00:00',3,'India','101','2021-07-29 16:23:50','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'no-11-north-east-triangle',NULL,NULL,NULL,0),(90,25431,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25431,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/CAPTIVATING_NORTH_EAST_90.jpg\",\"BookingValidUntill\":\"2021-07-15\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Tour Starts &lt;\\/strong&gt;: EX Bagdogra&lt;br \\/&gt;\\r\\n&lt;strong&gt;Duration&lt;\\/strong&gt;: 07 Nights\\/ 08 Days&lt;br \\/&gt;\\r\\n&lt;strong&gt;Routing&lt;\\/strong&gt; : Gangtok &amp;ndash; Tsomgo Lake &amp;nbsp;- Lachung - Yumthang Valley - Darjeeling &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bagdogra\",\"DestinationPlacesSysId\":2012,\"SourcePlaces\":\"Bagdogra\",\"SourcePlaceSysId\":2012,\"AgencyName\":\"I Need Trip\",\"Name\":\"CAPTIVATING NORTH EAST\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5870\",\"SupplierName\":\"SATGURU TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10106,\"Title\":\"Gangtok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481043,\"Name\":\"Potala Guest House (Jain Group of Hotels) \",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Tibet Road, East Sikkim, Gangtok, Arithang, Gangtok, India\"},\"Images\":{\"Image\":[{\"ImagId\":4818098,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617964692.jpg\"},{\"ImagId\":4818101,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_01617965458.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Hotel Potala is one of the best budget properties in Gangtok serving guests and it is one of the most popular properties in Gangtok for &lt;strong&gt;vegetarian people&lt;\\/strong&gt;. To keep the Indian religious faiths in mind we provide Jain Foods also on request. &nbsp;Among all our five properties in Gangtok Hotel Potala is located closest from MG Marg and its situated at Tibet Road its just 3min walk from MG Marg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;30 ROOMS ( 19 deluxe, 1 six bedded deluxe , 1 four bedded deluxe, 1 family room super deluxe, 3 triple bedded super deluxe, 5 triple bedded deluxe )&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481043\\/5293_43b7d433b941a64fb8b7c12e918845441617965440.png\",\"AccoAminitiesMask\":\"1010000000000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481025,\"Name\":\"Hotel Doma Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nam Nang Road Near BB-Gangtok-Namnag Road-Namnag Commercial Complex, Gangtok, Sikkim\"},\"Images\":{\"Image\":[{\"ImagId\":4818088,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617905789.jpg\"},{\"ImagId\":4818089,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_01617906338.jpg\"}]},\"CityId\":10106,\"Brief\":\"&lt;p&gt;Doma Palace Hotels is a chain of four premium accommodation outlets situated in the Eastern &amp; Northern Districts of Sikkim. &lt;strong&gt;The Doma Palace Hotels &lt;\\/strong&gt;was established with an objective to promote and dispense pleasant and fairly memorable touring experiences to the incoming tourists &amp; locals who pay Sikkim a visit. And the management team at Doma inherently believes that a trip to this exotic kingdom cannot be cannot be considered a success, unless you&rsquo;ve experienced the comfort of premium accommodating facilities at Doma Palace Hotels.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481025\\/5293_0488d14b7df0237fec635f2623ae62201617906338.png\",\"AccoAminitiesMask\":\"1110010010001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19308,\"Title\":\"chungthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2194,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is the best sunrise view point. It is 11 km from the town of Darjeeling. It has an amazing view of Mount Everest and Mt.Kangchenjunga together from its dedicated observatory and a viewing deck. People flock this place to have the most spell binding view of the golden snow peaks at sunrise.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":29.7228444,\"Long\":-95.516574,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501495208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":564,\"Title\":\"Ghoom Monastery\",\"Description\":\"Old Ghoom Monastery is the popular name of Yiga Choeling. The monastery belongs to the Gelukpa or the Yellow Hat sect and is known for its 15 feet-high statue of the Maitreya Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/685\\/thumb\\/Ghoom Monastery_40.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":161,\"Title\":\"Batasia Loop\",\"Description\":\"The Batasia Loop is a spiral railway created to lower the gradient of ascent of the Darjeeling Himalayan Railway in Darjeeling district of West Bengal, India. At this point, the track spirals around over itself through a tunnel and over a hilltop\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/414\\/thumb\\/Batasia Loop_493.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":34559,\"Title\":\"Lachung\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481360,\"Name\":\" Hotel Delight Royal Lachung\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Police station, Lachung, Sikkim 737120\"},\"Images\":{\"Image\":[{\"ImagId\":4818208,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481360\\/5293_01618386848.jpg\"},{\"ImagId\":4818209,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481360\\/5293_11618386848.jpg\"},{\"ImagId\":4818210,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481360\\/5293_21618386848.jpg\"}]},\"CityId\":34559,\"Brief\":\"&lt;p&gt;Hotel Royal Lachung is luxury accommodation in the small yet beautiful village in Lachung, which has beautiful mountains all around. The beautiful town of Lachung in Sikkim consists of various snow capped mountains, sparkling streams, peaks, breathtaking waterfalls and much more.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481360\\/5293_e7140fdf0f96861acc080c08e7e128f81618386848.jpg\",\"AccoAminitiesMask\":\"1110010100001111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":481361,\"Name\":\" Hotel Rufina Lachung Mandala\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"36\\/4B RamKrishna Samadhi Road, Kankurgachi, Kolkata &ndash; 700054 Near Indian Overseas Bank Kankurgachi Branch\"},\"Images\":{\"Image\":[{\"ImagId\":4818211,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481361\\/5293_01618387744.jpg\"}]},\"CityId\":34559,\"Brief\":\"&lt;p&gt;At Rufina Hotels, our desire is to link for guests to the very of our service in our properties.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the hills of Sikkim to the beach of Puri, our motive is to provide best and hygienic rooms to our all guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lachung Mandala is located at 8500ft. high altitude and it is 120 km away from gangtok, hotel a beautiful scenic beauty, having lobby and beautiful reception.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481361\\/5293_748894192ac8af53e57d5f62e162d3251618387744.jpg\",\"AccoAminitiesMask\":\"1110010100101110101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19308,\"Title\":\"chungthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2194,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is the best sunrise view point. It is 11 km from the town of Darjeeling. It has an amazing view of Mount Everest and Mt.Kangchenjunga together from its dedicated observatory and a viewing deck. People flock this place to have the most spell binding view of the golden snow peaks at sunrise.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":29.7228444,\"Long\":-95.516574,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501495208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":564,\"Title\":\"Ghoom Monastery\",\"Description\":\"Old Ghoom Monastery is the popular name of Yiga Choeling. The monastery belongs to the Gelukpa or the Yellow Hat sect and is known for its 15 feet-high statue of the Maitreya Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/685\\/thumb\\/Ghoom Monastery_40.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":161,\"Title\":\"Batasia Loop\",\"Description\":\"The Batasia Loop is a spiral railway created to lower the gradient of ascent of the Darjeeling Himalayan Railway in Darjeeling district of West Bengal, India. At this point, the track spirals around over itself through a tunnel and over a hilltop\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/414\\/thumb\\/Batasia Loop_493.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}},{\"CityId\":7556,\"Title\":\"Darjeeling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480834,\"Name\":\"Hotel Pink Mountain\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"HOTEL PINK MOUNTAIN Gandhi Road, Near Bethany School Darjeeling-734101\"},\"Images\":[],\"CityId\":7556,\"Brief\":\"&lt;p&gt;Located in the heart of the Darjeeling City. Hotel Pink Mountain has been recognised as on of the Top Luxury Hotels in Darjeeling.The hotel is located close to the institutions of both power and pleasure. The spectacular view of Mount Kanchenjunga from hotel window and roof top garden.The hotel offers the finest level of comfort, elegant rooms for guests who are looking for a reposeful stay after a daylong business meeting and travelling.The Hotel Pink Mountain stands proudly along Gandhi Road, Near Heritage Bethany School.Famous historical landmarks and commercial hub are within walking distance from the Hotel Pink Mountain.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480834\\/5293_d685d876b2a08612161b22d29340838b1617783602.jpg\",\"AccoAminitiesMask\":\"1110010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481050,\"Name\":\"Hotel marvel International\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"7, H.D. Lama Road, Darjjeeling, West Bengal\"},\"Images\":{\"Image\":[{\"ImagId\":4818106,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_01617977953.jpg\"}]},\"CityId\":7556,\"Brief\":\"&lt;p&gt;Created to give you the very best of &lt;strong&gt;Darjeeling &lt;\\/strong&gt;and committed to provide you with a memorable stay at this exotic setting, is &lt;strong&gt;Hotel Marvel International &amp; Restaurant&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\nElegance and Service is what we aim at and client satisfaction is what we cherish. Hotel marvel is an Oasis of elegance and luxury, offering consistently high standards of facilities and service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Marvel International Hotel &amp; RestaurantSituated in the heart of Darjeeling, Hotel Marvel International is within a convenient 10-minute walk to the famous &lt;strong&gt;Mall Road and Big Bazar&lt;\\/strong&gt;. It operates a 24-hour front desk and provides free Wi-Fi access throughout the property. cosy rooms feature wall-to-wall carpeting, a seating area and a TV with cable channels. Each room comes with an attached bathroom offering hot and cold shower facilities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International has a tour desk that can assist guests with bookings of sightseeing excursions and travel arrangements. Laundry services and meeting\\/banqueting facilities are available on request.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel offers an in-house restaurant serving a menu of local, &lt;strong&gt;South Indian and Chinese dishes.&lt;\\/strong&gt; Guests may also enjoy meals in private with room service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Marvel International is approximately 75 km from the &lt;strong&gt;New Jalpaiguri Railway Station&lt;\\/strong&gt;, while &lt;strong&gt;Bagdogra Airport&lt;\\/strong&gt; is within 70 km away. Airport transfer can be arranged at an additional charge.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt;Whats app Number&nbsp;&lt;\\/span&gt;&lt;br \\/&gt;\\r\\n&lt;span style=&quot;background-color:#2ecc71&quot;&gt;+91 7407617766&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481050\\/5293_f0e17ac6c0f67e5dcff0659cb5dc19a91617977953.png\",\"AccoAminitiesMask\":\"1110010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1818,\"Title\":\"Tsomgo Lake\",\"Description\":\"Tsomgo Lake, also known as Tsongmo Lake or Changu Lake, is a glacial lake in the East Sikkim district of the Indian state of Sikkim, some 40 kilometres from the capital Gangtok.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3722169,\"Long\":88.5951172,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/36_1519716423.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":19308,\"Title\":\"chungthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2194,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is the best sunrise view point. It is 11 km from the town of Darjeeling. It has an amazing view of Mount Everest and Mt.Kangchenjunga together from its dedicated observatory and a viewing deck. People flock this place to have the most spell binding view of the golden snow peaks at sunrise.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":29.7228444,\"Long\":-95.516574,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501495208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":564,\"Title\":\"Ghoom Monastery\",\"Description\":\"Old Ghoom Monastery is the popular name of Yiga Choeling. The monastery belongs to the Gelukpa or the Yellow Hat sect and is known for its 15 feet-high statue of the Maitreya Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/685\\/thumb\\/Ghoom Monastery_40.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":161,\"Title\":\"Batasia Loop\",\"Description\":\"The Batasia Loop is a spiral railway created to lower the gradient of ascent of the Darjeeling Himalayan Railway in Darjeeling district of West Bengal, India. At this point, the track spirals around over itself through a tunnel and over a hilltop\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/414\\/thumb\\/Batasia Loop_493.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5870,\"SupplierName\":\"SATGURU TRAVELS\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"182271\",\"Title\":\"IXB Airport \\/ NJP Railway Station - Gangtok (Approx. 5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Assistance at NJP Railway station \\/ IXB Airport transfer to Gangtok. The capital of Sikkim Suits all from tranquillity to adventure, land of monastery, mystic rituals &amp; festivals at an height of 1670 meters \\/ 5480 feet). On arrival Check-in and own activity. Overnight stay at Gangtok.<\\/p>\\r\\n\\r\\n<p><strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB)<\\/strong><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182273\",\"Title\":\"Excursion to Tsomgo Lake & Baba Mandir \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast start an excursion to Tsomgo Lake &amp; Baba Mandir (nearly 40 kilometers \\/ 2 hours drive - Situated at an elevation of 3753 meters \\/ 12310 feet - The Lake is oval shaped lake and &nbsp;Nearby is the sacred Baba Mandir known to be a very holy site for all. Back to Gangtok. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1818,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182275\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182277\",\"Title\":\"Gangtok - Lachung (Approx 6 Hrs.)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast drive to Lachung via Chungthang &ndash; Lachung is 125 kilometers, 5 to 6 hours drive &ndash;Chungthang nearly 3 hours of drive from Gangtok - Lachung situated at an altitude of 8600 feet - On the way enjoy a few wonderful locations like Naga Waterfalls and the confluence of Lachen Chu and Lachung Chu at Chungthang - The road leads through Rhododendron plants of the Singha Forest Reserve extended up to the Tibetan Plateau - Picturesque landscape, snow peaked mountains. On arrival check into hotel. Overnight stay at Lachung.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34559,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481361,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481360,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19308,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2259,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182279\",\"Title\":\"Excursion to Yumthang Valley \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast drive towards Yumthang situated at an elevation of nearly 11800 feet - On the way you may visit the famous hot spring which is known for its curative properties of skin diseases - Yumthang is a valley near the river Lachung Chu surrounded by mountains where the tree line ends - In spring the valley erupts in riots of colors as Primulae, Rhododendrons and many other Alpine flowers in full bloom along with snow covered valley except in autumn. &nbsp;Back to hotel. Overnight stay at Lachung.<br \\/>\\r\\n<strong>Optional Tour : Zero Point on direct payment basis.&nbsp;<\\/strong><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34559,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481361,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481360,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2193,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182281\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34559,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182283\",\"Title\":\"Lachung - Gangtok (Approx 6 Hrs.)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast drive to Gangtok Enroute visit Bhim Nala Waterfalls. On arrival at Gangtok check into hotel. Overnight stay at Gangtok.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3725,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182285\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182287\",\"Title\":\"Gangtok \\u2013 Darjeeling (Approx 3 Hrs.)  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast check out from hotel and transfer to Darjeeling (2123 meters \\/ 70001 feet lies the land of breathtaking beauty, sloping tea gardens with spectacular views of the Mount Everest is the Queen of the hills. On arrival check into hotel. Overnight stay at Darjeeling.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182289\",\"Title\":\"Darjeeling Sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>Early Morning (at 03.45 am) visit to Tiger hill (8,400 ft.) to watch &nbsp;sunrise Mt. Khangchendzongha (3rd highest peak) (depend on availability of token or permit). After breakfast visit Mountaineering Institute, P.N. Zoological Park ( closed on Thursday), Tenzing Rock, Tibetan Refugee self-help Centre (closed on Sunday) Japanese Temple. Ghoom Monastery and Batasia Loop. Overnight stay at Darjeeling.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480834,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2194,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2202,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1275,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1749,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":752,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":564,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1782,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":161,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182291\",\"Title\":\"Darjeeling \\u2013 NJP Railway Station \\/ IXB Airport (Approx 3 Hrs.)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>After breakfast transfer to <strong>New Jalpaiguri Railway Station (NJP) \\/ Bagdogra (IXB) Airport<\\/strong> for your onwards journey.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25431\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13530.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":17233,\"priceDoubleOcc\":\"13530.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13530.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":17233,\"priceDoubleOcc\":\"13530.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13530.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":17233,\"priceDoubleOcc\":\"13530.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13530.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":17233,\"priceDoubleOcc\":\"13530.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13530.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":19360,\"priceDoubleOcc\":\"16720.00\",\"priceSingleOcc\":41360,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":24640,\"priceDoubleOcc\":\"24640.00\",\"priceSingleOcc\":49280,\"priceExtraBed\":\"5830.00\",\"priceWithoutBed\":\"4070.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25432\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16830.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":20497,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":44660,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":20497,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":44660,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":20497,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":44660,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":20497,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":44660,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":22623,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20020.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-15\",\"Currency\":1,\"priceTripleOcc\":27830,\"priceDoubleOcc\":\"27830.00\",\"priceSingleOcc\":55660,\"priceExtraBed\":\"6930.00\",\"priceWithoutBed\":\"5060.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Night Lachung&amp;nbsp;+ 3&amp;nbsp;Nights Gangtok + 2 Nights Darjeeling Accommodation on double sharing basis respectively.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;CP Meal plan in Gangtok &amp;amp; Darjeeling \\/\\/ AP Meal Plan in Lachung.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Exclusive Non a\\/c vehicle for transfers &amp;amp; sightseeing. Please brief to guest that vehicle will not be at disposal it will be available to guest as per itinerary only (point to point basis).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All permit fees &amp;amp; hotel taxes (as per itinerary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are valid for INDIAN NATIONALS only.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;CP : Breakfast&lt;br \\/&gt;\\r\\nAP : Breakfast, Lunch &amp;amp; Dinner&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;IMPORTANT NOTES&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Vehicle Used&lt;\\/strong&gt;: &amp;nbsp;01 Indica\\/Wagon R\\/ similar for 02 pax &amp;amp; 01 Xylo \\/ Innova \\/ Scorpio for 04 &amp;amp; 06 Pax as per the above itinerary only point to point basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Supplement Cost for Nathula Pass&lt;\\/strong&gt; @ Rs. 5000&amp;nbsp;per car will be charged extra (Monday &amp;amp; Tuesday closed).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"182271\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[182271],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182273\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[182273],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182275\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[182275],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182277\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[182277],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182279\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[182279],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182281\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[182281],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182283\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[182283],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182285\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[182285],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182287\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[182287],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182289\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[182289],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182291\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[182291],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Gangtok,Lachung,Darjeeling','Gangtok,Sikkim,Indian Subcontinent,Northeast India,India,Lachung,Darjeeling,West Bengal,East India',NULL,'10106,34559,7556',13530,27830,7,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-07-15 00:00:00','2021-07-15 00:00:00',3,'India','101','2021-12-24 16:38:36','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'captivating-north-east',NULL,NULL,NULL,0),(91,24412,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Heritage,Culture,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24412,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Authentic_Turkey__0.jpg\",\"BookingValidUntill\":\"2021-06-07\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Turkey&amp;#39;s diverse landscapes, from Aegean olive groves to eastern steppe, provide a lyrical setting for its many great ruins. The country&amp;#39;s most magical scenery is to be found in Asian Anatolia, where beautiful vistas are provided by the vertiginous Mediterranean coastline, Cappadocia&amp;#39;s otherworldly &amp;#39;fairy chimney&amp;#39; rock formations and wavy valleys, the alpine pastures of the Ka&amp;ccedil;kar Mountains, and golden beaches such as 18km-long Patara. Whether you settle down with a &amp;ccedil;ay to enjoy the view across mountain-ringed Lake E\\u011firdir or explore the hilly hinterland on the southwest coast&amp;#39;s many peninsulas, Turkey&amp;#39;s landscape will leave a lasting impression.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Cappadocia\",\"DestinationPlacesSysId\":5094,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Authentic Turkey \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4934\",\"SupplierName\":\"55 DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Heritage,Culture,Romantic\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-06-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&ouml;n&uuml; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6072,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops which attract between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529997475.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice. Hand-painted blue tiles adorn the mosque&rsquo;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&rsquo;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u0131 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap\\u0131 was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&rsquo;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em\\u0131nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&rsquo; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&rsquo;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;to&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye\\u015fil Mosque and Ye\\u015fil Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17302,\"Title\":\"Groovy Minaret\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&rsquo;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null}]}},{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&ouml;n&uuml; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6072,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops which attract between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529997475.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice. Hand-painted blue tiles adorn the mosque&rsquo;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&rsquo;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u0131 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap\\u0131 was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&rsquo;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em\\u0131nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&rsquo; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&rsquo;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;to&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye\\u015fil Mosque and Ye\\u015fil Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17302,\"Title\":\"Groovy Minaret\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&rsquo;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&ouml;n&uuml; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6072,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops which attract between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529997475.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&uuml;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice. Hand-painted blue tiles adorn the mosque&rsquo;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&rsquo;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u0131 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap\\u0131 was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&rsquo;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em\\u0131nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&rsquo; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&rsquo;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;to&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye\\u015fil Mosque and Ye\\u015fil Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":17302,\"Title\":\"Groovy Minaret\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&rsquo;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"174989\",\"Title\":\"Arrival - Istanbul\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"<p>Welcome to Istanbul!<br \\/>\\r\\nThe Private Transfer Will Start From Istanbul Airport To Your Hotel, It takes&nbsp;Around 1 Hr. 30 Min. According To Traffic. Have A Safe Journey. Hotel Check-In &amp; Leisure Time.<\\/p>\\r\\n\\r\\n<p>After some&nbsp;relaxation, proceed to Bosphorus Dinner Cruise With Soft Drink (SIC Basis). Meet With Guide At Hotel Lobby, Pick Up From Hotel And Departure To Harbor.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nSailing On Bosphorus, Panoramic Tour Of Asia And Europe Continent, Belly Dancer Show, Turkish Folk Dances, Dj Music Performance, Dinner, Unlimited Soft Drink.<\\/p>\\r\\n\\r\\n<p>Menu:<br \\/>\\r\\nCold Starters Plate, Seasonal Salad, Meatballs Or Grilled Chicken, Turkish Dessert or Plate Or Fruit.<\\/p>\\r\\n\\r\\n<p>End Of The Tour, Drive Back To Hotel for an overnight stay.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10304,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174991\",\"Title\":\"Istanbul Old City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After Breakfast&nbsp;At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To a mesmerizing Istanbul Old City Tour.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nHagia Sophia- I Kebir Mosque, Topkapi Palace(Outside), Hippodrome, Blue Mosque, Grand Bazaar.<\\/p>\\r\\n\\r\\n<p>End Of The Tour, Drive Back To Hotel for an overnight stay.<\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6072,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8962,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5698,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6070,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8969,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174993\",\"Title\":\"Princess Island Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":3,\"Program\":\"<p>After Breakfast At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To Harbor.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nSailing To Buyukada Passing Through Kinaliada, Burgazada, Heybeliada Lunch At The Local Restaurant. Spend&nbsp;Time On the Island With Marvelous Beauty. Meet At The Harbor And Sailing To Istanbul.<\\/p>\\r\\n\\r\\n<p>End Of The Tour, Drive Back To Hotel for an overnight stay.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5699,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174995\",\"Title\":\"Bursa Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":4,\"Program\":\"<p>After Breakfast At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To Bursa.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nGreen Mosque &amp; Tomb, Inkaya Old Tree, Uludag Mountain Cable Car, Shopping Opportunities. Lunch At Local Restaurant.<\\/p>\\r\\n\\r\\n<p>End Of The Tour, Drive Back To Istanbul Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17317,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174997\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"174999\",\"Title\":\"Istanbul - Antalya\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>Check Out From Hotel, Meet With Your Driver, The Private Transfer Will Start From Your Hotel To Istanbul Airport, It Will Take Around 1 Hr. 30 Min. According To Traffic, Have A Safe Journey.<\\/p>\\r\\n\\r\\n<p>Welcome To Antalya, Meet With Airport Assistance And Driver, The Private Transfer Will Start From Antalya Airport To Your Hotel, It Will Take Around 1 Hr. Have A Safe Journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175001\",\"Title\":\"Antalya Old City & Waterfall Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":6,\"Program\":\"<p>Breakfast At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To Antalya City Tour.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nKarpuzkaldiran Waterfall, Duden Waterfall, Tunektepe Cable Car, Boat Tour, Old City; Hadrian Gate, Fluted Minaret, Grooved Minaret, Shopping Opportunities.<\\/p>\\r\\n\\r\\n<p>Lunch At Local Restaurant.<br \\/>\\r\\nEnd Of The Tour, Drive Back To Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17301,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17303,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17302,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175003\",\"Title\":\"Pamukkale Day Trip\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":7,\"Program\":\"<p>Breakfast At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To Pamukkale City.<\\/p>\\r\\n\\r\\n<p>Pamukkale is a town in western Turkey known for the mineral-rich thermal waters flowing down white travertine terraces on a nearby hillside. It neighbors Hierapolis, an ancient Roman spa city founded around 190 B.C. Ruins there include a well-preserved theatre and a necropolis with sarcophagi that stretch for 2km. The Antique Pool is famous for its submerged Roman columns, the result of an earthquake.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nHierapolis Ancient City, Pamukkale Travertines, Cleopatra Pool(Optional), Shopping Opportunities Lunch At Local Restaurant.<\\/p>\\r\\n\\r\\n<p>End Of The Tour, Drive Back To Antalya Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175005\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175007\",\"Title\":\"Antalya - Cappadocia\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>Check Out From Hotel, Meet With Your Driver, The Private Transfer Will Start From Your Hotel To Antalya Airport, It Will Take Around 1 Hr. Have A Safe Flight.<\\/p>\\r\\n\\r\\n<p>Welcome To Cappadocia, Meet With Airport Assistance And Driver, The Private Transfer Will Start From Kayseri Airport To Your Hotel, It Will Take Around 1 Hr. 30 Min. Have A Safe Journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175009\",\"Title\":\"Cappadocia City Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":9,\"Program\":\"<p>Breakfast At The Hotel, Meet With Guide At Hotel Lobby. Pick Up From Hotel And Departure To Cappadocia.<\\/p>\\r\\n\\r\\n<p>Highlights On Below:<br \\/>\\r\\nDervent Valley, Pasabag Valley, Zelve Open Air Museum, Goreme Panorama, Uchisar Castle Photo Stop, Shopping Opportunities. Lunch At Local Restaurant<br \\/>\\r\\nEnd Of The Tour, Drive Back To Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"175011\",\"Title\":\"Cappadocia - Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"<p>Check Out From Hotel, Meet With Your Driver, The Private Transfer Will Start From Your Hotel To Kayseri Airport, It Will Take Around 1 Hr. 30 Min. Have A Safe Flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24412\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"53625.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":53626,\"priceDoubleOcc\":\"53625.60\",\"priceSingleOcc\":107251.2,\"priceExtraBed\":\"39200.00\",\"priceWithoutBed\":\"13440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53625.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24413\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"62899.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":65688,\"priceDoubleOcc\":\"62899.20\",\"priceSingleOcc\":98873.6,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62899.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":65688,\"priceDoubleOcc\":\"62899.20\",\"priceSingleOcc\":98873.6,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62899.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":66061,\"priceDoubleOcc\":\"63459.20\",\"priceSingleOcc\":99433.6,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63459.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":66562,\"priceDoubleOcc\":\"64209.60\",\"priceSingleOcc\":100184,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64209.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":67771,\"priceDoubleOcc\":\"66024.00\",\"priceSingleOcc\":101998.4,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66024.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":71266,\"priceDoubleOcc\":\"71265.60\",\"priceSingleOcc\":107240,\"priceExtraBed\":\"50400.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"71265.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24412\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"51710.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":51710,\"priceDoubleOcc\":\"51710.40\",\"priceSingleOcc\":103420.8,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"51710.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24413\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"60652.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":63342,\"priceDoubleOcc\":\"60652.80\",\"priceSingleOcc\":95342.4,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60652.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":63342,\"priceDoubleOcc\":\"60652.80\",\"priceSingleOcc\":95342.4,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60652.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":63702,\"priceDoubleOcc\":\"61192.80\",\"priceSingleOcc\":95882.4,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61192.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":64184,\"priceDoubleOcc\":\"61916.40\",\"priceSingleOcc\":96606,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61916.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":65351,\"priceDoubleOcc\":\"63666.00\",\"priceSingleOcc\":98355.6,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63666.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-09\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":68720,\"priceDoubleOcc\":\"68720.40\",\"priceSingleOcc\":103410,\"priceExtraBed\":\"48600.00\",\"priceWithoutBed\":\"21600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68720.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any Domestic \\/ International Airfare.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Turkey Visa + Insurance.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Accommodation&amp;nbsp;Tax.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;1% Tourism Tax.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;RT-PCR Test Charges (Covid-19 test) in Both Countries.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;9 Nights accommodation on twin sharing basis as per itinerary in 4* or 5* hotels as mentioned.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Airport Transfers on PVT Basis.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Professional English-speaking local tour guide.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"174989\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[174989],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174991\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[174991],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174993\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[174993],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174995\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[174995],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174997\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[174997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"174999\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[174999],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"175001\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[175001],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175003\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[175003],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175005\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[175005],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175007\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[175007],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"175009\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[175009],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"175011\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[175011],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Istanbul,Antalya,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Antalya,Cappadocia','','12905,1151,5094',51710,71266,9,'91_1635250096_0.jpg,91_1635250096_1.jpg,91_1635250096_2.jpg,91_1635250096_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"}]',1,'',0,'2021-04-15 00:00:00','2021-06-07 00:00:00','2021-06-07 00:00:00',3,'Turkey','222','2023-08-25 15:28:00','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'authentic-turkey',NULL,NULL,NULL,0),(92,24272,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Offbeat,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":24272,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-06-02\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Kilimanjaro\",\"DestinationPlacesSysId\":14005,\"SourcePlaces\":\"Kilimanjaro\",\"SourcePlaceSysId\":14005,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"6 Days Tanzania Safari\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5902\",\"SupplierName\":\"Private Safaris - Global Destinations\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Landcruisers,Camping\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Offbeat,Activites Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-06-02\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1533,\"Title\":\"Arusha\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478622,\"Name\":\"Arusha Coffee Lodge by Elewana\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-3.374501599999999\",\"Long\":\"36.6439397\",\"Address\":\"Old Dodoma Road, Burka Coffee Estate, Arusha, Tanzania\"},\"Images\":[],\"CityId\":1533,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17560,\"Title\":\"Game Drive\",\"Description\":\"Game drive or sometimes also written gamedrive is a word which is based on two words, namely game and drive. The word game refers to animals that are not domesticated, the so called wildlife. The word drive refers to a drive with a vehicle. A game drive is usually part of a safari, a trip or a journey.\",\"CurrencyType\":0,\"CityId\":36832,\"CityName\":\"Serengeti\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36832\\/sightseeing\\/Game_Drive_36832_1601630216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18855,\"Title\":\"Lake Manyara National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":-3.445890099999999,\"Long\":35.8093071,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":17557,\"Title\":\"Ngorongoro Crater\",\"Description\":\"Ngorongoro District is one of the five districts of the Arusha Region of Tanzania. It is bordered to the north by Kenya, to the east by Monduli District, to the south by the Karatu District and to the west by the Mara Region\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19377\\/sightseeing\\/Ngorongoro_Crater_19377_1601628548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}},{\"CityId\":36832,\"Title\":\"Serengeti\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478623,\"Name\":\"Pioneer Camp by Elewana\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-2.6680619\",\"Long\":\"34.7345404\",\"Address\":\"Tanzania\"},\"Images\":[],\"CityId\":36832,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17560,\"Title\":\"Game Drive\",\"Description\":\"Game drive or sometimes also written gamedrive is a word which is based on two words, namely game and drive. The word game refers to animals that are not domesticated, the so called wildlife. The word drive refers to a drive with a vehicle. A game drive is usually part of a safari, a trip or a journey.\",\"CurrencyType\":0,\"CityId\":36832,\"CityName\":\"Serengeti\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36832\\/sightseeing\\/Game_Drive_36832_1601630216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18855,\"Title\":\"Lake Manyara National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":-3.445890099999999,\"Long\":35.8093071,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":17557,\"Title\":\"Ngorongoro Crater\",\"Description\":\"Ngorongoro District is one of the five districts of the Arusha Region of Tanzania. It is bordered to the north by Kenya, to the east by Monduli District, to the south by the Karatu District and to the west by the Mara Region\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19377\\/sightseeing\\/Ngorongoro_Crater_19377_1601628548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}},{\"CityId\":19377,\"Title\":\"Ngorongoro\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17560,\"Title\":\"Game Drive\",\"Description\":\"Game drive or sometimes also written gamedrive is a word which is based on two words, namely game and drive. The word game refers to animals that are not domesticated, the so called wildlife. The word drive refers to a drive with a vehicle. A game drive is usually part of a safari, a trip or a journey.\",\"CurrencyType\":0,\"CityId\":36832,\"CityName\":\"Serengeti\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36832\\/sightseeing\\/Game_Drive_36832_1601630216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18855,\"Title\":\"Lake Manyara National Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":-3.445890099999999,\"Long\":35.8093071,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":17557,\"Title\":\"Ngorongoro Crater\",\"Description\":\"Ngorongoro District is one of the five districts of the Arusha Region of Tanzania. It is bordered to the north by Kenya, to the east by Monduli District, to the south by the Karatu District and to the west by the Mara Region\",\"CurrencyType\":0,\"CityId\":19377,\"CityName\":\"Ngorongoro\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19377\\/sightseeing\\/Ngorongoro_Crater_19377_1601628548.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"173655\",\"Title\":\"Arusha\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Land at Kilimanjaro airport, After which we&nbsp;transfer you to your Arusha Hotel. Rest of day at leisure. Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1533,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173656\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1533,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173657\",\"Title\":\"Transfer from Arusha to Serengeti\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast transfer to Arusha airport and get aboard the flight to Serengeti, after which&nbsp;the Camp vehicle and driver will pick you up from the airport and transfer you to Camp. Then have&nbsp; Lunch at Camp followed by an afternoon Game Drive.<\\/p>\\r\\n\\r\\n<p>Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36832,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478623,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17560,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173658\",\"Title\":\"Serengeti\",\"MealPlanInclude\":\"Dinner\",\"Day\":3,\"Program\":\"<p>Morning and afternoon game drive through the Serengeti. Optional Balloon ride possible on this day. All meals at the camp.<\\/p>\\r\\n\\r\\n<p>Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36832,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478623,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17560,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173659\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36832,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173660\",\"Title\":\"Transfer from Serengeti To Ngorongoro \\u2013 Karatu via Lake Manyara\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast transfer to the airstrip and take a&nbsp;flight to Lake Manyara. Picnic lunches provided by Pioneer Camp included. After arrival at Lake Manyara airport, you continue on a Game Drive through Lake Manyara national park. In the late afternoon drive to your accommodation in Karatu.<\\/p>\\r\\n\\r\\n<p>Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19377,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18855,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173661\",\"Title\":\"Ngorongoro\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>Departure for a full day safari in the crater in the early morning. Picnic lunch within the crater. Arrival at your Lodge in the late afternoon.<\\/p>\\r\\n\\r\\n<p>Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19377,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17557,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173662\",\"Title\":\"Ngorongoro \\/ Arusha \\/ Departure JRO or Flight ZNZ\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast transfer to Lake Manyara airport and flight to Arusha. Arrival Arusha at around lunchtime (lunch not included on this day).<\\/p>\\r\\n\\r\\n<p>Transfer to Airport for your safe flight back home,<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19377,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24272\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"289173.62\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":289093,\"priceDoubleOcc\":\"289173.62\",\"priceSingleOcc\":386019.13,\"priceExtraBed\":\"288933.11\",\"priceWithoutBed\":\"177817.32\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"289173.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":246388,\"priceDoubleOcc\":\"246107.68\",\"priceSingleOcc\":332122.92,\"priceExtraBed\":\"246949.48\",\"priceWithoutBed\":\"149302.27\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"246107.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":279550,\"priceDoubleOcc\":\"279626.09\",\"priceSingleOcc\":378650.76,\"priceExtraBed\":\"279396.51\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"279626.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":283682,\"priceDoubleOcc\":\"283681.96\",\"priceSingleOcc\":382706.63,\"priceExtraBed\":\"283681.96\",\"priceWithoutBed\":\"170959.13\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"283681.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24272\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"276029.37\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-31\",\"Currency\":1,\"priceTripleOcc\":275953,\"priceDoubleOcc\":\"276029.37\",\"priceSingleOcc\":368472.81,\"priceExtraBed\":\"275799.78\",\"priceWithoutBed\":\"169734.72\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"276029.37\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":239349,\"priceDoubleOcc\":\"239076.04\",\"priceSingleOcc\":322633.71,\"priceExtraBed\":\"239893.78\",\"priceWithoutBed\":\"145036.49\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"239076.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-01\",\"To\":\"2021-06-30\",\"Currency\":1,\"priceTripleOcc\":271562,\"priceDoubleOcc\":\"271636.77\",\"priceSingleOcc\":367832.16000000003,\"priceExtraBed\":\"271413.75\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"271636.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-01\",\"To\":\"2021-10-31\",\"Currency\":1,\"priceTripleOcc\":275577,\"priceDoubleOcc\":\"275576.77\",\"priceSingleOcc\":371772.16000000003,\"priceExtraBed\":\"275576.77\",\"priceWithoutBed\":\"166074.58\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"2.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"275576.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% GST&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any International of Domestic airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Kenya \\/ Tanzania Visa&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5 Nights Accommodation and meals as specified in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airport Assistance by Atlas Holidays local Airport Representative on Arrival &amp;amp; Departure&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Activities as specified in the itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Transfers on as specified in the itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Shared airstrip transfers and Game drives with Camp vehicle and English-speaking Camp Guide as indicated in the itinerary (please be aware that due to unforeseeable weather and traffic circumstances, not every game drive can be guaranteed)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Per Departure only 1 Arrival and Departure transfer is included, additional arrivals and departures come with a Supplement based on Private Transfer rates&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Park entry fees to all parks and reserves included in the itinerary for 24hrs each (fees are subject to change)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Scheduled flights as specified in the itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Guarantee&amp;nbsp;Window Seating with access to the pop-up roof for back 6 Seats (NO A\\/C)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Service of English-speaking Safari Driver Guide per vehicle throughout the Safari&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;24\\/7 Atlas Holidays&amp;nbsp;Concierge &amp;amp; Emergency Service on phone&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Flying doctor&amp;rsquo;s coverage: (Covers clients within East Africa for a period of 30 days. In the eventuality of a medical emergency, they will be airlifted to Nairobi where they will be taken to a good hospital. Hospital bills are born by the patient.)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"7805\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"173655\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[173655],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173656\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173656],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173657\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173657],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173658\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[173658],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173659\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173659],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173660\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173660],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173661\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[173661],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173662\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[173662],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Arusha,Serengeti,Ngorongoro','Arusha,Tanzania,Serengeti,Ngorongoro,Karatu,Lake Manyara,Zanzibar',NULL,'1533,36832,19377',239076,289174,5,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-06-02 00:00:00','2021-06-02 00:00:00',3,'Tanzania','214','2023-08-25 15:28:05','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'6-days-tanzania-safari',NULL,NULL,NULL,0),(93,24224,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":24224,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-05-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Treat yourself to Kenya Wildlife packages. Whether you&amp;#39;re looking for a Wildlife package to relax and indulge, special holidays in Kenya with friends and family, a trip to your favourite chillout spot or a new adventure, you&amp;#39;ve come to the right place. Atlas Holidays&amp;nbsp;offers great deals and discounts on various vacation packages. Don&amp;#39;t miss our best value deals for other holiday destinations across the world.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"Starting from - INR 90,354\\/- per adult\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Nairobi\",\"DestinationPlacesSysId\":18894,\"SourcePlaces\":\"Nairobi\",\"SourcePlaceSysId\":18894,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Wildlife of Kenya\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5902\",\"SupplierName\":\"Private Safaris - Global Destinations\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Intercity Transfers,Activity,Sightseeing,Landcruisers,Bonfire\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-05-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18894,\"Title\":\"Nairobi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478483,\"Name\":\"Hilton Garden Inn Nairobi Airport\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":18894,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17547,\"Title\":\"Masai Cultural Village\",\"Description\":\"A visit to the Masai Mara region would not be complete with a visit to our nearby Maasai community boma (village), which delivers a unique insight into this age-old culture. The community with which the Olare Mara Kempinski has established a relationship is located just a short drive away and constitutes an enjoyable game drive in itself. Once arrived within the village, you can meet the people, visit a typical Maasai home, learn about Maasai daily life, enjoy dancing and singing displays and visit the community&amp;rsquo;s own handicrafts market.\\r\\n\\r\\n\\r\\nThe vibrancy of Maasai culture is unrivalled and typically centers around a brushwood enclosure into which the community&amp;rsquo;s cows and goats are herded at night. The village is built in line with age-old traditions whereby each woman has her own hut, and male society is regulated according to a complicated hierarchy of age-sets, warrior-clans, elders and laibons (prophet soothsayers). Maasai life is built upon a platform of joyous celebrations, which mark the passage of time from birth to death, the dispensation of justice, the changing of the seasons and the treasuring of the Maasai&amp;rsquo;s precious cattle. Unchanged for centuries, such celebrations typify a way of life that has remained untouched by the arrival of the technological age.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Cultural_Village_17007_1601624280.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18829,\"Title\":\"Balloon Safari\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102) font-family: &quot;PT Serif&quot;, &quot;Times New Roman&quot;, Times, serif text-align: center&quot;&gt;What better way to experience the Maasai Mara than to take a hot air balloon safari. Gliding silently over the savannah is 360 degrees of spectacular beauty!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614767993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18840,\"Title\":\"Game Drive\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":905,\"CityName\":\"Amboseli National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18827,\"Title\":\"Lake Naivasha Boat Ride\",\"Description\":\"&lt;p&gt;1 Hour guided boat ride  Lake Naivasha&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36151,\"CityName\":\"Naivasha\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36151\\/sightseeing\\/4539_1614767705.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18824,\"Title\":\"Game Drive\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;A&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drive is&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;an adventure that entails viewing wildlife in the comfort of a 4&times;4 open Land Rover which accommodates 4 to 6 people, a sure way to give you that classical safari feeling. Safari&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drives&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;are one of the most popular ways to see wildlife in the Masai Mara.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614776213.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}},{\"CityId\":905,\"Title\":\"Amboseli National Park\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17547,\"Title\":\"Masai Cultural Village\",\"Description\":\"A visit to the Masai Mara region would not be complete with a visit to our nearby Maasai community boma (village), which delivers a unique insight into this age-old culture. The community with which the Olare Mara Kempinski has established a relationship is located just a short drive away and constitutes an enjoyable game drive in itself. Once arrived within the village, you can meet the people, visit a typical Maasai home, learn about Maasai daily life, enjoy dancing and singing displays and visit the community&amp;rsquo;s own handicrafts market.\\r\\n\\r\\n\\r\\nThe vibrancy of Maasai culture is unrivalled and typically centers around a brushwood enclosure into which the community&amp;rsquo;s cows and goats are herded at night. The village is built in line with age-old traditions whereby each woman has her own hut, and male society is regulated according to a complicated hierarchy of age-sets, warrior-clans, elders and laibons (prophet soothsayers). Maasai life is built upon a platform of joyous celebrations, which mark the passage of time from birth to death, the dispensation of justice, the changing of the seasons and the treasuring of the Maasai&amp;rsquo;s precious cattle. Unchanged for centuries, such celebrations typify a way of life that has remained untouched by the arrival of the technological age.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Cultural_Village_17007_1601624280.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18829,\"Title\":\"Balloon Safari\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102) font-family: &quot;PT Serif&quot;, &quot;Times New Roman&quot;, Times, serif text-align: center&quot;&gt;What better way to experience the Maasai Mara than to take a hot air balloon safari. Gliding silently over the savannah is 360 degrees of spectacular beauty!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614767993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18840,\"Title\":\"Game Drive\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":905,\"CityName\":\"Amboseli National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18827,\"Title\":\"Lake Naivasha Boat Ride\",\"Description\":\"&lt;p&gt;1 Hour guided boat ride  Lake Naivasha&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36151,\"CityName\":\"Naivasha\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36151\\/sightseeing\\/4539_1614767705.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18824,\"Title\":\"Game Drive\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;A&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drive is&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;an adventure that entails viewing wildlife in the comfort of a 4&times;4 open Land Rover which accommodates 4 to 6 people, a sure way to give you that classical safari feeling. Safari&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drives&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;are one of the most popular ways to see wildlife in the Masai Mara.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614776213.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}},{\"CityId\":36151,\"Title\":\"Naivasha\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478417,\"Name\":\"Lake Naivasha Country Club\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-0.7719834999999998\",\"Long\":\"36.4214778\",\"Address\":\"Naivasha, Kenya\"},\"Images\":[],\"CityId\":36151,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17547,\"Title\":\"Masai Cultural Village\",\"Description\":\"A visit to the Masai Mara region would not be complete with a visit to our nearby Maasai community boma (village), which delivers a unique insight into this age-old culture. The community with which the Olare Mara Kempinski has established a relationship is located just a short drive away and constitutes an enjoyable game drive in itself. Once arrived within the village, you can meet the people, visit a typical Maasai home, learn about Maasai daily life, enjoy dancing and singing displays and visit the community&amp;rsquo;s own handicrafts market.\\r\\n\\r\\n\\r\\nThe vibrancy of Maasai culture is unrivalled and typically centers around a brushwood enclosure into which the community&amp;rsquo;s cows and goats are herded at night. The village is built in line with age-old traditions whereby each woman has her own hut, and male society is regulated according to a complicated hierarchy of age-sets, warrior-clans, elders and laibons (prophet soothsayers). Maasai life is built upon a platform of joyous celebrations, which mark the passage of time from birth to death, the dispensation of justice, the changing of the seasons and the treasuring of the Maasai&amp;rsquo;s precious cattle. Unchanged for centuries, such celebrations typify a way of life that has remained untouched by the arrival of the technological age.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Cultural_Village_17007_1601624280.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18829,\"Title\":\"Balloon Safari\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102) font-family: &quot;PT Serif&quot;, &quot;Times New Roman&quot;, Times, serif text-align: center&quot;&gt;What better way to experience the Maasai Mara than to take a hot air balloon safari. Gliding silently over the savannah is 360 degrees of spectacular beauty!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614767993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18840,\"Title\":\"Game Drive\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":905,\"CityName\":\"Amboseli National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18827,\"Title\":\"Lake Naivasha Boat Ride\",\"Description\":\"&lt;p&gt;1 Hour guided boat ride  Lake Naivasha&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36151,\"CityName\":\"Naivasha\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36151\\/sightseeing\\/4539_1614767705.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18824,\"Title\":\"Game Drive\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;A&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drive is&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;an adventure that entails viewing wildlife in the comfort of a 4&times;4 open Land Rover which accommodates 4 to 6 people, a sure way to give you that classical safari feeling. Safari&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drives&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;are one of the most popular ways to see wildlife in the Masai Mara.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614776213.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}},{\"CityId\":17007,\"Title\":\"Masai Mara\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17547,\"Title\":\"Masai Cultural Village\",\"Description\":\"A visit to the Masai Mara region would not be complete with a visit to our nearby Maasai community boma (village), which delivers a unique insight into this age-old culture. The community with which the Olare Mara Kempinski has established a relationship is located just a short drive away and constitutes an enjoyable game drive in itself. Once arrived within the village, you can meet the people, visit a typical Maasai home, learn about Maasai daily life, enjoy dancing and singing displays and visit the community&amp;rsquo;s own handicrafts market.\\r\\n\\r\\n\\r\\nThe vibrancy of Maasai culture is unrivalled and typically centers around a brushwood enclosure into which the community&amp;rsquo;s cows and goats are herded at night. The village is built in line with age-old traditions whereby each woman has her own hut, and male society is regulated according to a complicated hierarchy of age-sets, warrior-clans, elders and laibons (prophet soothsayers). Maasai life is built upon a platform of joyous celebrations, which mark the passage of time from birth to death, the dispensation of justice, the changing of the seasons and the treasuring of the Maasai&amp;rsquo;s precious cattle. Unchanged for centuries, such celebrations typify a way of life that has remained untouched by the arrival of the technological age.\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/Masai_Cultural_Village_17007_1601624280.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18829,\"Title\":\"Balloon Safari\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(102, 102, 102) font-family: &quot;PT Serif&quot;, &quot;Times New Roman&quot;, Times, serif text-align: center&quot;&gt;What better way to experience the Maasai Mara than to take a hot air balloon safari. Gliding silently over the savannah is 360 degrees of spectacular beauty!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614767993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18840,\"Title\":\"Game Drive\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":905,\"CityName\":\"Amboseli National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18827,\"Title\":\"Lake Naivasha Boat Ride\",\"Description\":\"&lt;p&gt;1 Hour guided boat ride  Lake Naivasha&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36151,\"CityName\":\"Naivasha\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36151\\/sightseeing\\/4539_1614767705.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null},{\"RefSSId\":18824,\"Title\":\"Game Drive\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;A&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drive is&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;an adventure that entails viewing wildlife in the comfort of a 4&times;4 open Land Rover which accommodates 4 to 6 people, a sure way to give you that classical safari feeling. Safari&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;game drives&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 36) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&nbsp;are one of the most popular ways to see wildlife in the Masai Mara.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17007,\"CityName\":\"Masai Mara\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17007\\/sightseeing\\/4539_1614776213.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5902,\"SupplierName\":\"Private Safaris - Global Destinations\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"173182\",\"Title\":\"Arrival in Nairobi\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Jambo! Welcome to Kenya. On arrival at the Jomo Kenyatta International Airport in Nairobi, Meet &amp; Greet by Atlas Holidays&#39; Local&nbsp;Representative.<\\/p>\\r\\n\\r\\n<p>Transfer to your Nairobi Hotel for Dinner &amp; overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18894,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478483,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173183\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18894,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17547,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":18829,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173184\",\"Title\":\"Nairobi - Amboseli\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"<p>Breakfast, checkout and departure to Amboseli National Park. Arrival at your Safari lodge in time for lunch. Some time at leisure prior to afternoon game drive within the park. Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18840,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":18827,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173185\",\"Title\":\"Wildlife Safari\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"<p>Breakfast at your Lodge. Morning game drive and return to your lodge for lunch. Afternoon game drive within the park. Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18840,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173186\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173187\",\"Title\":\"Amboseli - Lake Naivasha\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>Early Breakfast at your lodge followed by check out and drive to Lake Naivasha. Arrival at your lakeshore Lodge in time for lunch. Afternoon enjoy an optional 1-hour Boat Safari on the lake at extra cost. Dinner and overnight at your Lodge.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478417,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173188\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173189\",\"Title\":\"Lake Naivasha - Masai Mara\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>Breakfast, checkout and departure to the famous Masai Mara Game Reserve. Arrival at your Safari camp in time for lunch. Some time at leisure prior to afternoon game drive within the reserve. Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18824,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173190\",\"Title\":\"Wildlife Safari - Masai Mara\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"<p>Breakfast at your Lodge. Morning game drive and return to your camp for lunch. Afternoon game drive. Dinner and overnight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18824,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"173191\",\"Title\":\"Masai Mara - Departure\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"<p>Breakfast at your accommodation. Final morning game drive en-route to park gate. Drive back to Nairobi and drop off at Jomo Kenyatta Airport in the late afternoon for your departure flight in the evening.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17007,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18824,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24224\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"90354.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":98901,\"priceDoubleOcc\":\"98494.00\",\"priceSingleOcc\":125356,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"98494.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":114910,\"priceDoubleOcc\":\"122507.00\",\"priceSingleOcc\":149369,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"122507.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":93474,\"priceDoubleOcc\":\"90354.00\",\"priceSingleOcc\":117216,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"90354.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":98901,\"priceDoubleOcc\":\"98494.00\",\"priceSingleOcc\":125356,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"98494.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":114910,\"priceDoubleOcc\":\"122507.00\",\"priceSingleOcc\":149369,\"priceExtraBed\":\"95645.00\",\"priceWithoutBed\":\"78144.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"122507.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":78408,\"priceDoubleOcc\":\"72435.00\",\"priceSingleOcc\":91564,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72435.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":78408,\"priceDoubleOcc\":\"72435.00\",\"priceSingleOcc\":91564,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72435.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":78408,\"priceDoubleOcc\":\"72435.00\",\"priceSingleOcc\":91564,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72435.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":78408,\"priceDoubleOcc\":\"72435.00\",\"priceSingleOcc\":91564,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72435.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":84385,\"priceDoubleOcc\":\"81400.00\",\"priceSingleOcc\":100529,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"81400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":100393,\"priceDoubleOcc\":\"105413.00\",\"priceSingleOcc\":124542,\"priceExtraBed\":\"86284.00\",\"priceWithoutBed\":\"69597.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"105413.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24224\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"86247.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":94406,\"priceDoubleOcc\":\"94017.00\",\"priceSingleOcc\":119658,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"94017.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-03\",\"To\":\"2021-03-03\",\"Currency\":1,\"priceTripleOcc\":109687,\"priceDoubleOcc\":\"116938.50\",\"priceSingleOcc\":142579.5,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"116938.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":89226,\"priceDoubleOcc\":\"86247.00\",\"priceSingleOcc\":111888,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"86247.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":94406,\"priceDoubleOcc\":\"94017.00\",\"priceSingleOcc\":119658,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"94017.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-04\",\"To\":\"2021-03-30\",\"Currency\":1,\"priceTripleOcc\":109687,\"priceDoubleOcc\":\"116938.50\",\"priceSingleOcc\":142579.5,\"priceExtraBed\":\"91297.50\",\"priceWithoutBed\":\"74592.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"116938.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":74844,\"priceDoubleOcc\":\"69142.50\",\"priceSingleOcc\":87402,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"69142.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":74844,\"priceDoubleOcc\":\"69142.50\",\"priceSingleOcc\":87402,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"69142.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":74844,\"priceDoubleOcc\":\"69142.50\",\"priceSingleOcc\":87402,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"69142.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":74844,\"priceDoubleOcc\":\"69142.50\",\"priceSingleOcc\":87402,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"69142.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":80549,\"priceDoubleOcc\":\"77700.00\",\"priceSingleOcc\":95959.5,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"77700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-31\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":95830,\"priceDoubleOcc\":\"100621.50\",\"priceSingleOcc\":118881,\"priceExtraBed\":\"82362.00\",\"priceWithoutBed\":\"66433.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"100621.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5&amp;amp; GST.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;6 Nights Accommodation and meals as specified in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airport Assistance by Atlas Holidays local Airport Representative on Arrival &amp;amp; Departure&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Activities as specified in the itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Transfers on as specified in the itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Transportation in private custom-build Safari 4x4 vehicle with 6 Seats each&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Guaranteed Window Seating with access to the pop-up roof for back 6 Seats (NO A\\/C)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Service of English-speaking Safari Driver Guide per vehicle throughout the Safari&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Park entry fees to all parks and reserves included in the itinerary for 24hrs each (fees are subject to change)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;24\\/7 Atlas Holidays&amp;nbsp;Concierge &amp;amp; Emergency Service on phone&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Flying doctor&amp;rsquo;s coverage: (Covers clients within East Africa for a period of 30 days. In the eventuality of a medical emergency, they will be airlifted to Nairobi where they will be taken to a good hospital. Hospital bills are born by the patient.)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"7800\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"173182\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[173182],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173183\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173183],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173184\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[173184],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"173185\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[173185],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"173186\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173186],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173187\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[173187],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173188\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[173188],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173189\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[173189],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"173190\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[173190],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"173191\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[173191],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Nairobi,Amboseli National Park,Naivasha,Masai Mara','Nairobi,Kenya,Amboseli National Park,Naivasha,Masai Mara','','18894,905,36151,17007',69143,122507,6,'93_1628686120_0.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-05-31 00:00:00','2021-05-31 00:00:00',3,'Kenya','113','2023-08-25 15:28:07','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'wildlife-of-kenya',NULL,NULL,NULL,0),(94,23290,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":23290,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Golden_Triangle_with_Ranthambhore_4.png\",\"BookingValidUntill\":\"2021-05-10\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Golden Triangle refers to the cities of Delhi, Agra, Jaipur which when located on the map of India form the shape of a virtual triangle. Embark on a wonderful journey to explore the capital city of Delhi, to witness the wonder of the world, Taj Mahal at Agra and admire the pink city of Jaipur!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Golden Triangle with Ranthambhore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4709\",\"SupplierName\":\"Paramount Vaccations\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Train Station Transfers,Intercity Transfers\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Romantic\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-05-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":439714,\"Name\":\"Hotel Metro View\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"17 A \\/ 3, W.E.A., Delhi National Territory, New Delhi and NCR, India, , , 110005, \"},\"Images\":[],\"CityId\":7701,\"Brief\":\"Hotel Metro View is conveniently located in the popular Karol Bagh area. Offering a variety of facilities and services, the hotel provides all you need for a good night&#039;s sleep. All the necessary facilities, including 24-hour room service, free Wi-Fi in all rooms, 24-hour front desk, express check-in\\/check-out, luggage storage, are at hand. Guestrooms are fitted with all the amenities you need for a good night&#039;s sleep. In some of the rooms, guests can find television LCD\\/plasma screen, internet access &ndash; wireless, internet access &ndash; wireless (complimentary), non smoking rooms, air conditioning. To enhance guests&#039; stay, the hotel offers recreational facilities such as massage, garden. No matter what your reasons are for visiting New Delhi and NCR, Hotel Metro View will make you feel instantly at home.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiu7FKkDIAb9JbCGL5rhmqhVNJPNW7W+6jXM\\/HXhSjxdNOwOlYiVcxA1OHg\\/BvcQAy5MGVtpHAsnlZvQLNe3YCV99zVV\\/UglQIl\\/e4O4c+9MQ==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"Budget\",\"MealTypeName\":\"RO\"},{\"RefHotelId\":72424,\"Name\":\"Clark International\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.648206\",\"Long\":\"77.189085\",\"Address\":\"Saraswati Marg 5\\/47 West Extension Area\"},\"Images\":{\"Image\":[{\"ImagId\":1592490,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/905\\/931\\/27321_EXT_01_L_C.jpg\"}]},\"CityId\":7701,\"Brief\":\"This city hotel is located at the heart of the city serving the business traveller within budget rates. Shops can be found on the hotel&#039;s doorstep and Connaught Place is around 2 km away. A 20 to 25-minute drive will take guests to the Red Fort and India Gate, while a little further afield, approximately 20 km, they can visit the Lotus Temple and Qutab Minar.\\n\\nThe hotel is one of the most accessible hotels in New Delhi which offers 3-star amenities for valuable customers. Renovated in 2008, the air-conditioned business hotel offers guests 34 rooms in total and welcomes them into a lobby with 24-hour reception and check-out service, hotel safe, currency exchange facilities, lift access and a hairdressing salon. Guests may also relax in the TV lounge or cafe, dine in the restaurant and take advantage of the conference facilities, WLAN Internet access, room and laundry services and a car park.\\n\\nThe hotel offers large, spacious rooms and suites elegantly embellished with modern furniture, with gorgeous interiors, complemented excellently with satellite TV, individually regulated air conditioning and heating, direct dial telephone and a minibar\\/fridge to give the rooms an aura of romanticism and grandeur. An en suite bathroom with shower, bath and hairdryer, a double bed, Internet access and an in-room safe also feature in all guest rooms as standard.\\n\\nThe hotel has a restaurant that serves a wide variety of dishes and drinks. A continental breakfast buffet is served each morning.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/905\\/931\\/27321_EXT_01_L_C.jpg\",\"AccoAminitiesMask\":\"111000001010100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" 2N STANDARD ROOM\",\"MealTypeName\":\"RO\"},{\"RefHotelId\":436757,\"Name\":\"The Exotica Grand\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.647287\",\"Long\":\"77.166145\",\"Address\":\"1\\/12 West Patel Nagar\\nNear Metro station\\nOpposite Pillar No.201 , New Delhi, India, 110008\"},\"Images\":[],\"CityId\":7701,\"Brief\":\"Karol Bagh - Central Delhi\",\"MainImg\":\"http:\\/\\/api.cleartrip.com\\/places\\/hotels\\/2050\\/2050496\\/images\\/DSC_0218e_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"RO\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &lsquo;ceremonial axis&rsquo; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&ndash;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":965,\"Title\":\"Laxminarayan Temple\",\"Description\":\"The Laxminarayan Temple, also known as the Birla Mandir is a Hindu temple up to large extent dedicated to Laxminarayan in Delhi, India. Laxminarayan usually refers to Vishnu, Preserver in the Trimurti, also known as Narayan, when he is with his consort Lakshmi. The temple, inaugurated by Mahatma Gandhi, was built by Jugal Kishore Birla from 1933 and 1939. The side temples are dedicated to Shiva, Krishna and Buddha.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.635259,\"Long\":77.205754,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/672\\/thumb\\/Lakshminarayan Temple_350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1000,\"Title\":\"Lotus Temple\",\"Description\":\"The Lotus Temple, located in Delhi, India, is a Bah&aacute;&#039;&iacute; House of Worship completed in 1986. Notable for its flowerlike shape, it has become a prominent attraction in the city. Like all Bah&aacute;&#039;&iacute; Houses of Worship, the Lotus Temple is open to all, regardless of religion or any other qualification. The building is composed of 27 free-standing marble-clad &quot;petals&quot; arranged in clusters of three to form nine sides, with nine doors opening onto a central hall with height of slightly over 40 metres and a capacity of 2,500 people.The Lotus Temple has won numerous architectural awards and been featured in hundreds of newspaper and magazine articles. A 2001 CNN report referred to it as the most visited building in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5520725,\"Long\":77.259244,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":18215,\"Title\":\"Maharaja\'s City Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &lsquo;ceremonial axis&rsquo; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&ndash;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":965,\"Title\":\"Laxminarayan Temple\",\"Description\":\"The Laxminarayan Temple, also known as the Birla Mandir is a Hindu temple up to large extent dedicated to Laxminarayan in Delhi, India. Laxminarayan usually refers to Vishnu, Preserver in the Trimurti, also known as Narayan, when he is with his consort Lakshmi. The temple, inaugurated by Mahatma Gandhi, was built by Jugal Kishore Birla from 1933 and 1939. The side temples are dedicated to Shiva, Krishna and Buddha.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.635259,\"Long\":77.205754,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/672\\/thumb\\/Lakshminarayan Temple_350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1000,\"Title\":\"Lotus Temple\",\"Description\":\"The Lotus Temple, located in Delhi, India, is a Bah&aacute;&#039;&iacute; House of Worship completed in 1986. Notable for its flowerlike shape, it has become a prominent attraction in the city. Like all Bah&aacute;&#039;&iacute; Houses of Worship, the Lotus Temple is open to all, regardless of religion or any other qualification. The building is composed of 27 free-standing marble-clad &quot;petals&quot; arranged in clusters of three to form nine sides, with nine doors opening onto a central hall with height of slightly over 40 metres and a capacity of 2,500 people.The Lotus Temple has won numerous architectural awards and been featured in hundreds of newspaper and magazine articles. A 2001 CNN report referred to it as the most visited building in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5520725,\"Long\":77.259244,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":18215,\"Title\":\"Maharaja\'s City Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476617,\"Name\":\"Tiger Safari Resort\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0166207\",\"Long\":\"76.3653247\",\"Address\":\"Ranthambhore Rd, Subhash Nagar, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"Budget\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476618,\"Name\":\"Shergarh\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.3555241\",\"Long\":\"72.2300869\",\"Address\":\"Guman Singh Pura, Rajasthan 342022, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" 2N STANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476619,\"Name\":\"Anuraga Palace\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0168567\",\"Long\":\"76.364901\",\"Address\":\"Ranthambhor Rd, Subhash Nagar, Adinath Nagar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476620,\"Name\":\"The Tigress Resort & Spa\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0473622\",\"Long\":\"76.3987401\",\"Address\":\"Ranthambhor Rd, near Helipad, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &lsquo;ceremonial axis&rsquo; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&ndash;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":965,\"Title\":\"Laxminarayan Temple\",\"Description\":\"The Laxminarayan Temple, also known as the Birla Mandir is a Hindu temple up to large extent dedicated to Laxminarayan in Delhi, India. Laxminarayan usually refers to Vishnu, Preserver in the Trimurti, also known as Narayan, when he is with his consort Lakshmi. The temple, inaugurated by Mahatma Gandhi, was built by Jugal Kishore Birla from 1933 and 1939. The side temples are dedicated to Shiva, Krishna and Buddha.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.635259,\"Long\":77.205754,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/672\\/thumb\\/Lakshminarayan Temple_350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1000,\"Title\":\"Lotus Temple\",\"Description\":\"The Lotus Temple, located in Delhi, India, is a Bah&aacute;&#039;&iacute; House of Worship completed in 1986. Notable for its flowerlike shape, it has become a prominent attraction in the city. Like all Bah&aacute;&#039;&iacute; Houses of Worship, the Lotus Temple is open to all, regardless of religion or any other qualification. The building is composed of 27 free-standing marble-clad &quot;petals&quot; arranged in clusters of three to form nine sides, with nine doors opening onto a central hall with height of slightly over 40 metres and a capacity of 2,500 people.The Lotus Temple has won numerous architectural awards and been featured in hundreds of newspaper and magazine articles. A 2001 CNN report referred to it as the most visited building in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5520725,\"Long\":77.259244,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":18215,\"Title\":\"Maharaja\'s City Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476609,\"Name\":\"tiger safari resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"Budget\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476610,\"Name\":\"Shergarh\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.3555241\",\"Long\":\"72.2300869\",\"Address\":\"Guman Singh Pura, Rajasthan 342022, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" 2N STANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476613,\"Name\":\"Hotel Royal Polovictory\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.9214477\",\"Long\":\"75.7971941\",\"Address\":\"Motilal Atal Road Sindhi Camp Polovictory, Station Rd, Sindhi Camp, Jaipur, Rajasthan 302006, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"Budget\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413557,\"Name\":\"Crimson Park - The Heritage Jalmahal\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.949835\",\"Long\":\"75.84211\",\"Address\":\"Besides Jal Mahal, Ramgarh Mod Circle,Main Amer Road, , Amer Road, JAIPUR, Rajasthan, India, Pin-302002, 302002\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"The Heritage Palace is located at a distance of 7 km from Sindhi Camp Bus Station and 4 km from Hawa Mahal. This hotel offers a free internet access to their guests.   This hotel in Jaipur comprises of 52 rooms spread over 3 floors. Room comforts include a television, bottled drinking water, laundry and a telephone to the patrons.   null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/mau\\/qye\\/mbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" 2N STANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":423220,\"Name\":\"HOTEL ROYAL ORCHID JAIPUR\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.8448357\",\"Long\":\"75.7929236\",\"Address\":\"Opposite to BSNL Office, Tonk Road, Near Durgapura Flyover, Durgapura, Jaipur, India, 302018\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"Location\\nHotel Royal Orchid Jaipur is located in the business district of the Pink City close to the World Trade Park. The hotel is also near the Sawai Mansingh Stadium, Birla Temple, Birla Auditorium and the Museum of Indology. Jaipur International Airport (JAI) is only 3 km or less than a 15-minute drive from the property. \\n\\nRooms\\nAccommodations are equipped with air-conditioning, LCD TV, DVD player, minibar, tea and coffee making facilities, direct dial phone, wired and wireless high-speed internet access, electronic safe, iron and iron board, hairdryer, and en suite bathroom with amenities. Some of the rooms feature a living area and a plunge pool.\\n\\nProperty Features\\nThe in-house restaurant serves Indian cuisine and features an open-air area with live entertainment. In addition, the 24-hour cafe on site offers internationally-inspired menu and guests can unwind over drinks at the bar. For recreation, the hotel offers a rooftop swimming pool and a fitness gym. Other facilities and services include a 24-hour concierge, business center, meeting rooms, 24-hour room service, an executive lounge, and valet parking. Transfers to\\/from the airport can also be arranged on request.The HOTEL ROYAL ORCHID JAIPUR is a Tourist, Modern, Business, City hotel, Design Trendy, Eco Friendly hotel. Located in Jaipur area. Shopping is accessible by bus\\/taxi and the nightlife\\/restaurants are located in the hotel.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/76\\/767505\\/dLPmCG1W_ac86c9d5a9bac4dcd59d8104b914bb79.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476611,\"Name\":\"Anuraga Palace\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0168567\",\"Long\":\"76.364901\",\"Address\":\"Ranthambhor Rd, Subhash Nagar, Adinath Nagar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":476612,\"Name\":\"The Tigress Resort & Spa\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0473622\",\"Long\":\"76.3987401\",\"Address\":\"Ranthambhor Rd, near Helipad, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &lsquo;ceremonial axis&rsquo; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&ndash;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":965,\"Title\":\"Laxminarayan Temple\",\"Description\":\"The Laxminarayan Temple, also known as the Birla Mandir is a Hindu temple up to large extent dedicated to Laxminarayan in Delhi, India. Laxminarayan usually refers to Vishnu, Preserver in the Trimurti, also known as Narayan, when he is with his consort Lakshmi. The temple, inaugurated by Mahatma Gandhi, was built by Jugal Kishore Birla from 1933 and 1939. The side temples are dedicated to Shiva, Krishna and Buddha.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.635259,\"Long\":77.205754,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/672\\/thumb\\/Lakshminarayan Temple_350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1000,\"Title\":\"Lotus Temple\",\"Description\":\"The Lotus Temple, located in Delhi, India, is a Bah&aacute;&#039;&iacute; House of Worship completed in 1986. Notable for its flowerlike shape, it has become a prominent attraction in the city. Like all Bah&aacute;&#039;&iacute; Houses of Worship, the Lotus Temple is open to all, regardless of religion or any other qualification. The building is composed of 27 free-standing marble-clad &quot;petals&quot; arranged in clusters of three to form nine sides, with nine doors opening onto a central hall with height of slightly over 40 metres and a capacity of 2,500 people.The Lotus Temple has won numerous architectural awards and been featured in hundreds of newspaper and magazine articles. A 2001 CNN report referred to it as the most visited building in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5520725,\"Long\":77.259244,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null},{\"RefSSId\":18215,\"Title\":\"Maharaja\'s City Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4709,\"SupplierName\":\"Paramount Vaccations\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"166591\",\"Title\":\"Day 01: Arrival Delhi + Sightseeing [Delhi Monuments are closed on all Monday\\u2019s]\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Arrive Delhi. Assistance on arrival by our company Chauffeur &amp; transfer to your prebooked hotel. Later day free for sightseeing visiting<br \\/>\\r\\nQutub Minar (Tower of Victory), India Gate (War Memorial), drive past the President&#39;s House, Parliament House and the Secretariat<br \\/>\\r\\nBuildings, Raj Ghat and Shanti Vana - the cremation sites of Mahatma Gandhi and Jawaharlal Nehru, Lotus Temple [Bahia Temple],<br \\/>\\r\\nLakshminarayan Temple (a modern Hindu temple), drive pas the Jama Masjid and Red Fort. Overnight stay at Delhi.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"RO\",\"ROOMTYPENAME\":\"Budget\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":72424,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"RO\",\"ROOMTYPENAME\":\"2N STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":436757,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"RO\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":701,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":965,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1000,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1405,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166595\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166599\",\"Title\":\"Day 02: New Delhi to Agra [235 Kms 4 - 5 Hrs drive] [Taj Mahal is closed on all Friday\\u2019s]\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast check out from the hotel &amp; proceed to Agra. Arrive Agra &amp; transfer to your prebooked hotel. Later day free for sightseeing<br \\/>\\r\\nvisiting the world famous TAJ Mahal. Evening can visit the local markets for shopping. Over night stay at Agra.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166603\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166607\",\"Title\":\"Day 03: Agra to Ranthambhore [270 Kms 5 - 6 Hrs drive]\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast check out from the hotel &amp; free for sightseeing visiting the Agra Fort. Later day proceed to Ranthambhore. Arrive<br \\/>\\r\\nRanthambhore &amp; transfer to your prebooked hotel. Overnight stay at Ranthambhore.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476617,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Budget\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476618,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"2N STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":476619,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166611\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166615\",\"Title\":\"Day 04: Ranthambhore to Jaipur [180 Kms 3 - 4 Hours drive]\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Early Morning can do Jungle Safari [at own cost]. After breakfast check out from the hotel &amp; proceed to Jaipur. Arrive Jaipur &amp; transfer to<br \\/>\\r\\nyour prebooked hotel. Evening can visit Chokh Ki Dhani an ethnic Rajasthani resort to dine with cultural folk dances &amp; music [at own<br \\/>\\r\\ncost]. Over night stay at the Jaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166619\",\"Title\":\"Day 05: Jaipur City Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast sightseeing visiting to Amber Fort, the Old capital of Jaipur Rulers. Ride on the back of an elephant [at own cost] from the<br \\/>\\r\\nfoots of the hill up to the gates of the fortress. Later after Amber fort visit The Maharaja&rsquo;s City Palace Museum, Jai Singh&rsquo;s Astronomical<br \\/>\\r\\nObservatory [Jantar Mantar] and Hawa Mahal. Evening free at leisure. Overnight stay at Jaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476609,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Budget\"},{\"IsIncluded\":false,\"Id\":476609,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Budget\"},{\"IsIncluded\":false,\"Id\":476613,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Budget\"},{\"IsIncluded\":false,\"Id\":476613,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Budget\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":476610,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"2N STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":476610,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"2N STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":413557,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"2N STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":423220,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":true,\"Id\":476611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":476611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":476612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"},{\"IsIncluded\":false,\"Id\":476612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18215,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"166623\",\"Title\":\"Day 06: Jaipur to Railway station \\/ Airport drop\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>After breakfast check out from the hotel &amp; transfer to the airport \\/ railway station to board the flight \\/ train for onward destination.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23290\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14720.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":11078,\"priceDoubleOcc\":\"14720.00\",\"priceSingleOcc\":29440,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":11078,\"priceDoubleOcc\":\"14720.00\",\"priceSingleOcc\":29440,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":11078,\"priceDoubleOcc\":\"14720.00\",\"priceSingleOcc\":29440,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":9369,\"priceDoubleOcc\":\"12155.50\",\"priceSingleOcc\":26875.5,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12155.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":11078,\"priceDoubleOcc\":\"14720.00\",\"priceSingleOcc\":29440,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14122,\"priceDoubleOcc\":\"19285.50\",\"priceSingleOcc\":34005.5,\"priceExtraBed\":\"3795.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19285.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23291\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18239.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14306,\"priceDoubleOcc\":\"18239.00\",\"priceSingleOcc\":36478,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18239.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14306,\"priceDoubleOcc\":\"18239.00\",\"priceSingleOcc\":36478,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18239.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14306,\"priceDoubleOcc\":\"18239.00\",\"priceSingleOcc\":36478,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18239.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":12596,\"priceDoubleOcc\":\"15674.50\",\"priceSingleOcc\":33913.5,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15674.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14306,\"priceDoubleOcc\":\"18239.00\",\"priceSingleOcc\":36478,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18239.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":17350,\"priceDoubleOcc\":\"22804.50\",\"priceSingleOcc\":41043.5,\"priceExtraBed\":\"6440.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22804.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23292\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20999.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16683,\"priceDoubleOcc\":\"20999.00\",\"priceSingleOcc\":41998,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16683,\"priceDoubleOcc\":\"20999.00\",\"priceSingleOcc\":41998,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16683,\"priceDoubleOcc\":\"20999.00\",\"priceSingleOcc\":41998,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14973,\"priceDoubleOcc\":\"18434.50\",\"priceSingleOcc\":39433.5,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18434.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16683,\"priceDoubleOcc\":\"20999.00\",\"priceSingleOcc\":41998,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":19726,\"priceDoubleOcc\":\"25564.50\",\"priceSingleOcc\":46563.5,\"priceExtraBed\":\"8050.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25564.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23293\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21332.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":17672,\"priceDoubleOcc\":\"21332.50\",\"priceSingleOcc\":42665,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21332.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":17672,\"priceDoubleOcc\":\"21332.50\",\"priceSingleOcc\":42665,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21332.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":17672,\"priceDoubleOcc\":\"21332.50\",\"priceSingleOcc\":42665,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21332.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":17672,\"priceDoubleOcc\":\"21332.50\",\"priceSingleOcc\":42665,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21332.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":19381,\"priceDoubleOcc\":\"23897.00\",\"priceSingleOcc\":45229.5,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23897.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"28462.50\",\"priceSingleOcc\":49795,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28462.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"23290\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14080.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":10597,\"priceDoubleOcc\":\"14080.00\",\"priceSingleOcc\":28160,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":10597,\"priceDoubleOcc\":\"14080.00\",\"priceSingleOcc\":28160,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":10597,\"priceDoubleOcc\":\"14080.00\",\"priceSingleOcc\":28160,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":8961,\"priceDoubleOcc\":\"11627.00\",\"priceSingleOcc\":25707,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11627.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":10597,\"priceDoubleOcc\":\"14080.00\",\"priceSingleOcc\":28160,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":13508,\"priceDoubleOcc\":\"18447.00\",\"priceSingleOcc\":32527,\"priceExtraBed\":\"3630.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18447.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23291\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17446.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":13684,\"priceDoubleOcc\":\"17446.00\",\"priceSingleOcc\":34892,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17446.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":13684,\"priceDoubleOcc\":\"17446.00\",\"priceSingleOcc\":34892,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17446.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":13684,\"priceDoubleOcc\":\"17446.00\",\"priceSingleOcc\":34892,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17446.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":12049,\"priceDoubleOcc\":\"14993.00\",\"priceSingleOcc\":32439,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14993.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":13684,\"priceDoubleOcc\":\"17446.00\",\"priceSingleOcc\":34892,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17446.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16595,\"priceDoubleOcc\":\"21813.00\",\"priceSingleOcc\":39259,\"priceExtraBed\":\"6160.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21813.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23292\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20086.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":15957,\"priceDoubleOcc\":\"20086.00\",\"priceSingleOcc\":40172,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20086.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":15957,\"priceDoubleOcc\":\"20086.00\",\"priceSingleOcc\":40172,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20086.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":15957,\"priceDoubleOcc\":\"20086.00\",\"priceSingleOcc\":40172,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20086.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":14322,\"priceDoubleOcc\":\"17633.00\",\"priceSingleOcc\":37719,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17633.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":15957,\"priceDoubleOcc\":\"20086.00\",\"priceSingleOcc\":40172,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20086.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":18869,\"priceDoubleOcc\":\"24453.00\",\"priceSingleOcc\":44539,\"priceExtraBed\":\"7700.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24453.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23293\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20405.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20405.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20405.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20405.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20405.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20405.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20405.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20405.00\",\"priceSingleOcc\":40810,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20405.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":18539,\"priceDoubleOcc\":\"22858.00\",\"priceSingleOcc\":43263,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22858.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-02-10\",\"To\":\"2021-05-20\",\"Currency\":1,\"priceTripleOcc\":21450,\"priceDoubleOcc\":\"27225.00\",\"priceSingleOcc\":47630,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"1650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27225.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"166591\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[166591],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166595\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[166595],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166599\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[166599],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166603\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[166603],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166607\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[166607],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166611\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[166611],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166615\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[166615],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166619\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[166619],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"166623\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[166623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Delhi,Agra,Ranthambore,Jaipur','Delhi,Indian Subcontinent,North India,India,Agra,Uttar Pradesh,Ranthambore,Rajasthan,Jaipur',NULL,'7701,266,22593,12995',11627,28463,5,NULL,NULL,NULL,1,'',0,'2021-04-15 00:00:00','2021-05-10 00:00:00','2021-05-10 00:00:00',3,'India','101','2021-07-29 16:21:36','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'golden-triangle-with-ranthambhore',NULL,NULL,NULL,0),(95,25051,1,5293,0,0,0,'Honeymoon,Adventure,Religious,Hill Station,Heritage,Culture,Romantic,Shopping and Nightlife,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25051,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Untamed_Ladakh_88.png\",\"BookingValidUntill\":\"2021-07-01\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The modest flamboyancy nestled between the two mighty mountain ranges is rightly called Ladakh. The land of jagged mountains, quaint monasteries, serene lakes, and golden sand dunes assemble to an impeccable heritage. An effervescent destination that marks a magnificent culture, history, architecture, and landscape offer an opportunity for photography tours all year round. Capturing the vivid landscape and vivacious culture of Ladakh is reckoned to be a dream for any travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you have a zeal for photography, then we have a well-planned 7 days \\/ 6 nights Ladakh&amp;nbsp; Tour that can meet all your needs and expectations. This tour package is specially designed for passionate travellers who have a lust for exploring quaint villages, abandoned forts and diverse wildlife swathed with a rich traditional aura. With this tour, you can collect various uncontrolled emotions, labyrinthine nature, and the chivalrous locals in your camera and lifetime memories.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Untamed Ladakh\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Religious,Hill Station,Heritage,Culture,Romantic,Shopping and Nightlife,Offbeat,Leisure\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-01\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":119250,\"Name\":\"The Kaal\",\"Star\":\"3.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1642\",\"Long\":\"77.5736\",\"Address\":\"Skara Leh 194101\"},\"Images\":{\"Image\":[{\"ImagId\":2620339,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15050102500027206750.jpg?s=312x\"},{\"ImagId\":2620340,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15071318050032209289.jpg?s=312x\"},{\"ImagId\":2620341,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15071318050032209291.jpg?s=312x\"},{\"ImagId\":2620342,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15071318050032209292.jpg?s=312x\"},{\"ImagId\":2620343,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15071318050032209290.jpg?s=312x\"}]},\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/885\\/885865\\/885865_15050102500027206750.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000110000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":119275,\"Name\":\"Saboo Resorts\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1642\",\"Long\":\"77.5736\",\"Address\":\"Village Saboo \"},\"Images\":{\"Image\":[{\"ImagId\":2620590,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_24_t.jpg\"},{\"ImagId\":2620591,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_11_t.jpg\"},{\"ImagId\":2620592,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_14_t.jpg\"},{\"ImagId\":2620593,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_4_t.jpg\"},{\"ImagId\":2620594,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_20_t.jpg\"},{\"ImagId\":2620595,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_21_t.jpg\"},{\"ImagId\":2620596,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_22_t.jpg\"},{\"ImagId\":2620597,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_28_t.jpg\"},{\"ImagId\":2620598,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_3_t.jpg\"},{\"ImagId\":2620599,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_10_t.jpg\"},{\"ImagId\":2620600,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_23_t.jpg\"},{\"ImagId\":2620601,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_19_t.jpg\"},{\"ImagId\":2620602,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_2_t.jpg\"},{\"ImagId\":2620603,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_26_t.jpg\"},{\"ImagId\":2620604,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_5_t.jpg\"},{\"ImagId\":2620605,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_25_t.jpg\"},{\"ImagId\":2620606,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_8_t.jpg\"},{\"ImagId\":2620607,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_7_t.jpg\"},{\"ImagId\":2620608,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_9_t.jpg\"},{\"ImagId\":2620609,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_27_t.jpg\"},{\"ImagId\":2620610,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/56a1438a_t.jpg\"},{\"ImagId\":2620611,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_29_t.jpg\"}]},\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11120000\\/11115100\\/11115099\\/11115099_24_t.jpg\",\"AccoAminitiesMask\":\"111000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":119228,\"Name\":\"The Grand Dragon Ladakh\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1573005\",\"Long\":\"77.58020775\",\"Address\":\"Old Road Sheynam \"},\"Images\":{\"Image\":[{\"ImagId\":2620015,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_47_t.jpg\"},{\"ImagId\":2620016,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_35_t.jpg\"},{\"ImagId\":2620017,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_45_t.jpg\"},{\"ImagId\":2620018,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_51_t.jpg\"},{\"ImagId\":2620019,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_62_t.jpg\"},{\"ImagId\":2620020,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_34_t.jpg\"},{\"ImagId\":2620021,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_39_t.jpg\"},{\"ImagId\":2620022,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_40_t.jpg\"},{\"ImagId\":2620023,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_37_t.jpg\"},{\"ImagId\":2620024,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_43_t.jpg\"},{\"ImagId\":2620025,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_44_t.jpg\"},{\"ImagId\":2620026,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_61_t.jpg\"},{\"ImagId\":2620027,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_41_t.jpg\"},{\"ImagId\":2620028,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_55_t.jpg\"},{\"ImagId\":2620029,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_64_t.jpg\"},{\"ImagId\":2620030,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_54_t.jpg\"},{\"ImagId\":2620031,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_56_t.jpg\"},{\"ImagId\":2620032,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_57_t.jpg\"},{\"ImagId\":2620033,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_60_t.jpg\"},{\"ImagId\":2620034,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_50_t.jpg\"},{\"ImagId\":2620035,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_38_t.jpg\"},{\"ImagId\":2620036,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_42_t.jpg\"},{\"ImagId\":2620037,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_33_t.jpg\"},{\"ImagId\":2620038,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_46_t.jpg\"},{\"ImagId\":2620039,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_52_t.jpg\"},{\"ImagId\":2620040,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_79_t.jpg\"},{\"ImagId\":2620041,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_73_t.jpg\"},{\"ImagId\":2620042,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_66_t.jpg\"},{\"ImagId\":2620043,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_74_t.jpg\"},{\"ImagId\":2620044,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_75_t.jpg\"},{\"ImagId\":2620045,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_76_t.jpg\"},{\"ImagId\":2620046,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_77_t.jpg\"},{\"ImagId\":2620047,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_78_t.jpg\"},{\"ImagId\":2620048,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/a7395d79_t.jpg\"},{\"ImagId\":2620049,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/d7072646_t.jpg\"},{\"ImagId\":2620050,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_53_t.jpg\"},{\"ImagId\":2620051,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_36_t.jpg\"}]},\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2800000\\/2794300\\/2794209\\/2794209_47_t.jpg\",\"AccoAminitiesMask\":\"110000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":415501,\"Name\":\"The Kaal\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1642\",\"Long\":\"77.5736\",\"Address\":\"Skara, Leh 194101, Ladakh\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"The 3-star The Kaal Hotel offers comfort and convenience whether you&#039;re on business or holiday in Leh. The hotel offers a wide range of amenities and perks to ensure you have a great time. Facilities like free Wi-Fi in all rooms, 24-hour front desk, 24-hour room service, express check-in\\/check-out, luggage storage are readily available for you to enjoy. Internet access - wireless, internet access - wireless (complimentary), non smoking rooms, air conditioning, heating can be found in selected guestrooms. The hotel&#039;s peaceful atmosphere extends to its recreational facilities which include hot tub, golf course (within 3 km), children&#039;s playground, garden, games room. Convenience and comfort makes The Kaal Hotel the perfect choice for your stay in Leh.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/8e\\/c3\\/8ec3df474b894910d502b9da4260190ba5cd0a20.jpg\",\"AccoAminitiesMask\":\"1010000010001001000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":415527,\"Name\":\"Saboo Resorts\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.121512955031\",\"Long\":\"77.607731973112\",\"Address\":\"Village Saboo, Leh 194101, Ladakh\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;When you stay at Saboo Resorts in Leh, you&#039;ll be near the airport and within the vicinity of Namgyal Tsemo Gompa and Leh Temple.  This hotel is within the vicinity of Shey Palace and Sankar Gompa.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Stay in one of 15 guestrooms featuring flat-screen televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and slippers. Conveniences include phones and desks, and housekeeping is provided on a limited basis.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and tour\\/ticket assistance.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant or in a coffee shop\\/cafe. Or stay in and take advantage of the hotel&#039;s room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include multilingual staff, luggage storage, and laundry facilities. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/01\\/3e\\/013e9f63f0f717b947b486587e8bd78aa58563ed.jpg\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480520,\"Name\":\"Camp Silversand\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5839306\",\"Long\":\"77.4740813\",\"Address\":\"Near Karma Inn, Village Hundar, Nubra Valley, Ladakh, Hundar, 194401\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480521,\"Name\":\"Hundur Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480522,\"Name\":\"Hundur Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480523,\"Name\":\"Hotel Stendel Nubra\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.5497842\",\"Long\":\"77.552448\",\"Address\":\"Diskit, 194401\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480524,\"Name\":\"Hotel Karma Inn\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5852525\",\"Long\":\"77.4712962\",\"Address\":\"Hunder Road, Hundar, 194101\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480525,\"Name\":\"Hotel Stendel Nubra\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.5497842\",\"Long\":\"77.552448\",\"Address\":\"Diskit, 194401\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480526,\"Name\":\"Pangong Sarai Camps\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"33.8592975\",\"Long\":\"78.52821349999999\",\"Address\":\"Pangong Lake Rd, Man, Jammu and Kashmir 194201\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179471\",\"Title\":\"Day 01 \\u2013 Arrival in Leh\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Leh and proceed to your hotel.<\\/p>\\r\\n\\r\\n<p>Leh is dotted with stupas and crumbling mud-brick houses, the Old Town is dominated by a dagger of steep rocky ridge topped by an imposing Tibetan-style palace and fort. Beneath, the bustling bazaar area is draped in a thick veneer of souvenir shops, bars, and restaurants. It is advisable to relax and\\u00a0acclimatize to such a high-altitude region. After lunch, drive to Visit Shanti Stupa & Leh Palace, Later in the evening walk around\\u00a0the local market.<\\/p>\\r\\n\\r\\n<p>Dinner and overnight stay at the Hotel in Leh.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":119250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":119275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179474\",\"Title\":\"Day 02 \\u2013 Tour of Hemis, Thiksey & Shey Monastery\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, we drive to visit Hemis Monastery situated 45 kilometers west of Leh; Hemis is the largest and the wealthiest monastery in Ladakh. From Hemis, you are driven back taking the same route to visit Thiksey Monastery, located on a hillock with formidable views of the Indus valley. This is especially noteworthy for its gigantic seated statue of the Maitreya<br \\/>\\r\\nand is also known for its (Dukhang) assembly hall which houses hundreds of rectangular prayer books, stacked between wooden covers and bound in silk. After that, we continue to drive through series of chortens to visit Shey Palace the former summer palace of the King of Ladakh. Dinner and Over Night at the Hotel in Leh.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":119250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":119275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179477\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179480\",\"Title\":\"Day 03 \\u2013 Driver Over (Khardungla Pass) \\u2013 Nubra Valley and Hundur Sand Dunes (160 kms \\/ approx. 5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Check-out from the hotel after breakfast and drive over Khardungla - the World\'s highest motorable road at 18832 feet above<br \\/>\\r\\nsea level. At Khardungla pass the snow-capped peaks and the mountain views are amazing. The road then passes through a<br \\/>\\r\\nbridge laid on Glacier which finds its way in Guinness Book of world records, drives through the Valley which is extremely<br \\/>\\r\\nbeautiful for photography. Nubra Valley is the Oasis of Ladakh as you see some colorful trees in this region. Later reach your<br \\/>\\r\\ncampsite and visit the Sand Dunes. You are likely to get a sight of double-humped Bactrian camels, enjoy time at the Sand<br \\/>\\r\\nDunes of Nubra valley spread across Hundur Village. Dinner and overnight at the camp.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480520,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480521,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":480522,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":480523,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":480525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480524,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3575,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179483\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179486\",\"Title\":\"Day 04 \\u2013 Nubra Valley \\u2013 Pangong Lake via Shyok Valley (170 kms \\/ approx. 7 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After an early breakfast, we check out from Camp or hotel and drive towards Hunder where you have the opportunity to ride on a bacteria camel (double humped) amidst the sand dunes of this high altitude desert with snowcapped mountains on the horizon. Between Hunder and Diskit you come across sand dunes besides the road. Seen in isolation you could well be<br \\/>\\r\\namongst the sand dunes of the Thar Desert in Rajasthan. It is indeed a strange sight since immediately on the left of the road is the Rocky Mountains that characterize the Ladakhi landscape and in the distance can be seen snow-capped mountains. On the return stop at Diskit which is the headquarter town of Nubra Valley. Stroll around the bazaar observing the shops and local people going about their daily chores. Diskit is famous for 515 years old Buddhist Monastery, lying magnificently situated on a hilltop, facing the entire Valley. Later we drive towards Pangong Tso via Agham & Shyok Valley. Some of the road patches in areas are extremely tough(towards the Nubra side) in terms of road conditions but no doubt the journey is very scenic! Later after crossing this adventurous part\\u00a0we drive further towards Durbuk & Tangtse for Pangong you pass through few small villages of Changthang and finally, you can have a sudden view of the Pangong lake situated at 14,000 feet (4,267 m). This famous blue brackish Lake of Pangong is 5\\/6 Kms wide and over 133 Kms long with half of its running on the other side of the \\\"Indo-China Border\\\". One rarely feels so close to nature and the environment and the scenery is unforgettable. After the success of the 3 Idiots, this beautiful natural location has attracted more tourists from all over the world.<\\/p>\\r\\n\\r\\n<p>Upon arrival, we check-in at our Camp Near Pangong lake. Dinner & Overnight at the Camp.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480526,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480526,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480526,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3496,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179489\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179492\",\"Title\":\"Day 05 \\u2013 Pangong \\u2013 Leh via Hemis (240 kms \\/ approx. 6.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>Morning at leisure to explore the beauty of the lake and later we drive back to Leh via Changla Pass 5486 Mtrs en route<br \\/>\\r\\nvisiting Hemis Monastery & 3 Idiots Rancho School. Drive further to Leh and check-in at our hotel for Overnight<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":415501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":415527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7257,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179495\",\"Title\":\"Day 06 \\u2013 Leh Excursion to Sham Valley (40 kms \\/ approx. 2-3 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>After breakfast, you drive downstream along the River Indus on Leh \\u2013 Kargil Highway. And start our sightseeing with Hall Of Fame (Museum Constructed by India Army) near Leh is worth a visit for every Indian, and proceed further to Gurudwara Patthar Sahib at an altitude of 3600 Mtrs about 22 km from Leh was constructed in memory of Guru Nanak<br \\/>\\r\\nDev Ji Nestled deep in the Himalayas, A drive of another 4 km took us to Magnetic Hill which defies the law of gravity. As you move ahead from Magnetic Hills, just before Nimmu Village, there comes a famous Confluence Of Two Rivers Indus River coming from Tibet (left) and Zanskar River coming from Zanskar Valley (right). Zanskar River is known for its famous<br \\/>\\r\\nChadar Trek. Later we drive back to Leh. Overnight at Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":415501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":119275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":415527,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":119228,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179498\",\"Title\":\"Day 07 \\u2013 Departure from Leh\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast, you will be transferred to Leh airport for a return flight.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25051\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28014.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23276,\"priceDoubleOcc\":\"28014.00\",\"priceSingleOcc\":56028,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28014.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23276,\"priceDoubleOcc\":\"28014.00\",\"priceSingleOcc\":56028,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28014.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23276,\"priceDoubleOcc\":\"28014.00\",\"priceSingleOcc\":56028,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28014.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23276,\"priceDoubleOcc\":\"28014.00\",\"priceSingleOcc\":56028,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28014.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23276,\"priceDoubleOcc\":\"28014.00\",\"priceSingleOcc\":56028,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28014.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30268,\"priceDoubleOcc\":\"38502.00\",\"priceSingleOcc\":66516,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38502.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25052\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39192.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33856,\"priceDoubleOcc\":\"39192.00\",\"priceSingleOcc\":78384,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39192.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33856,\"priceDoubleOcc\":\"39192.00\",\"priceSingleOcc\":78384,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39192.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33856,\"priceDoubleOcc\":\"39192.00\",\"priceSingleOcc\":78384,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39192.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33856,\"priceDoubleOcc\":\"39192.00\",\"priceSingleOcc\":78384,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39192.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33856,\"priceDoubleOcc\":\"39192.00\",\"priceSingleOcc\":78384,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39192.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":40848,\"priceDoubleOcc\":\"49680.00\",\"priceSingleOcc\":88872,\"priceExtraBed\":\"23184.00\",\"priceWithoutBed\":\"11178.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"49680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25053\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"502320.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":343344,\"priceDoubleOcc\":\"502320.00\",\"priceSingleOcc\":1004640,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"502320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":343344,\"priceDoubleOcc\":\"502320.00\",\"priceSingleOcc\":1004640,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"502320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":343344,\"priceDoubleOcc\":\"502320.00\",\"priceSingleOcc\":1004640,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"502320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":343344,\"priceDoubleOcc\":\"502320.00\",\"priceSingleOcc\":1004640,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"502320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":343344,\"priceDoubleOcc\":\"502320.00\",\"priceSingleOcc\":1004640,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"502320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":48944,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":563040,\"priceExtraBed\":\"25392.00\",\"priceWithoutBed\":\"16974.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25051\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26796.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22264,\"priceDoubleOcc\":\"26796.00\",\"priceSingleOcc\":53592,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26796.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22264,\"priceDoubleOcc\":\"26796.00\",\"priceSingleOcc\":53592,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26796.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22264,\"priceDoubleOcc\":\"26796.00\",\"priceSingleOcc\":53592,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26796.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22264,\"priceDoubleOcc\":\"26796.00\",\"priceSingleOcc\":53592,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26796.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22264,\"priceDoubleOcc\":\"26796.00\",\"priceSingleOcc\":53592,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26796.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28952,\"priceDoubleOcc\":\"36828.00\",\"priceSingleOcc\":63624,\"priceExtraBed\":\"13200.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36828.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25052\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37488.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32384,\"priceDoubleOcc\":\"37488.00\",\"priceSingleOcc\":74976,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37488.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32384,\"priceDoubleOcc\":\"37488.00\",\"priceSingleOcc\":74976,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37488.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32384,\"priceDoubleOcc\":\"37488.00\",\"priceSingleOcc\":74976,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37488.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32384,\"priceDoubleOcc\":\"37488.00\",\"priceSingleOcc\":74976,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37488.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32384,\"priceDoubleOcc\":\"37488.00\",\"priceSingleOcc\":74976,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37488.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":39072,\"priceDoubleOcc\":\"47520.00\",\"priceSingleOcc\":85008,\"priceExtraBed\":\"22176.00\",\"priceWithoutBed\":\"10692.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25053\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"480480.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":328416,\"priceDoubleOcc\":\"480480.00\",\"priceSingleOcc\":960960,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"480480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":328416,\"priceDoubleOcc\":\"480480.00\",\"priceSingleOcc\":960960,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"480480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":328416,\"priceDoubleOcc\":\"480480.00\",\"priceSingleOcc\":960960,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"480480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":328416,\"priceDoubleOcc\":\"480480.00\",\"priceSingleOcc\":960960,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"480480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":328416,\"priceDoubleOcc\":\"480480.00\",\"priceSingleOcc\":960960,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"480480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":46816,\"priceDoubleOcc\":\"58080.00\",\"priceSingleOcc\":538560,\"priceExtraBed\":\"24288.00\",\"priceWithoutBed\":\"16236.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Oxygen Cylinder cost in Leh that is INR.1000\\/- per day if&lt;br \\/&gt;\\r\\n\\trequired.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;6 Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Oxygen cylinder for Nubra valley and Pangong Lake&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Transfers and Sightseeing as per itinerary by non a\\/c&lt;br \\/&gt;\\r\\n\\tprivate tourist vehicle using Toyota Innova \\/Mahindra&lt;br \\/&gt;\\r\\n\\tXylo.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179471\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179471],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179474\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179474],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179477\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179477],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179480\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179480],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179483\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179483],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179486\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179486],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179489\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179489],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179492\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179492],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179495\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179495],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179498\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[179498],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Leh,Nubra,Pangong','Leh,Jammu and kashmir,Indian Subcontinent,North India,India,Nubra,Pangong,Sham Valley','','15229,35282,35281',26796,502320,6,'95_1623234868_0.jpg,95_1623234868_1.jpg,95_1623234868_2.jpg,95_1623234868_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-01 00:00:00','2021-07-01 00:00:00',3,'India','101','2023-08-25 15:27:48','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'untamed-ladakh',NULL,NULL,NULL,0),(96,25037,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Leisure,Activites Tour,Day Tour',NULL,1,1,0,'{\"package\":{\"TPId\":25037,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Kultural_Kerala__53.png\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;From the pristine natural beauty to the chattering cascade, and mind-bobbing waterfall, Kerala is a combination of everything charismatic and alluring. And that&amp;#39;s perhaps the reason why it is nicknamed God&amp;#39;s Own Country. It looks like that a part of heaven has fallen right here on the earth. Kerala has many wildcards in its kitty that look picture perfect. To introduce travelers and solo wayfarers to all these beautiful places, Atlas Holidays&amp;nbsp;has a special tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Atlas Holidays is offering a magical six-day tour in the whimsical wonderland called Kerala that has a heady mix of misty mountains; sprawling plantations; captivating historic towns, and a vast labyrinth of the backwater. On this six-day tour, you will visit the famous attractions of Kerala like Munnar, Kumarakom, and Kochi.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Kochi\",\"DestinationPlacesSysId\":14275,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Kultural Kerala \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Leisure,Activites Tour,Day Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480440,\"Name\":\"At Wood Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0096095\",\"Long\":\"77.08107269999999\",\"Address\":\"20 Acre - Munnar Rd, Pottankadu, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":419237,\"Name\":\"Rivulet Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.028842765197\",\"Long\":\"77.055423217851\",\"Address\":\"Pallivassal Power House, Chithirapuram Post Office, Munnar 686555\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Chithirapuram, Rivulet is on a river and convenient to Dreamland Children Park and Attukad Waterfall.  This 4-star resort is within the vicinity of Mount Carmel Church and Carmal Church.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 24 individually decorated guestrooms, featuring minibars (stocked with some free items) and flat-screen televisions. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with bathtubs or showers feature complimentary toiletries and slippers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a terrace and a garden and make use of amenities such as complimentary wireless Internet access. This resort also features concierge services, a picnic area, and barbecue grills.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the resort&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/07\\/96\\/079629da3ef72ef7b7c5ee2016a949eb5922c189.jpg\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480441,\"Name\":\"Amber Dale Luxury Hotel & Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0516961\",\"Long\":\"77.04608549999999\",\"Address\":\"KSEB Tunnel Road, Pallivasal, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1871,\"Title\":\"Vembanad Lake\",\"Description\":\"Vembanad (Vembanad Kayal or Vembanad Kol) is the longest lake in India, and the largest lake in the state of Kerala. Spanning several districts in the state of Kerala, it is known as Vembanadu Lake in Kottayam, Punnamada Lake in Kuttanad and Kochi Lake in Kochi. Several groups of small islands including Vypin, Mulavukad, Vallarpadam, Willingdon Island are located in the Kochi Lake portion. Kochi Port is built around the Willingdon Island and the Vallarpadam island.\",\"CurrencyType\":0,\"CityId\":14578,\"CityName\":\"Kumarakom\",\"Lat\":9.5865373,\"Long\":76.4372116,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5531\\/thumb\\/Vembanad_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":419340,\"Name\":\"The Mountain Courtyard Thekkady\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.60571\",\"Long\":\"77.1646\",\"Address\":\"66th Mile Kurishumala Road, Spring Valley Post, Kumily, Thekkady 685509, Idukki\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Thekkady, The Mountain Courtyard Thekady is in a national park and convenient to Kadathanadan Kalari Centre and Mudra Cultural Centre.  This 4-star hotel is within close proximity of Periyar Wildlife Sanctuary and Periyar Boat Landing.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 50 guestrooms featuring minibars and LED televisions. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and slippers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take advantage of recreational opportunities offered, including an outdoor pool, a fitness center, and bicycles to rent. This hotel also features complimentary wireless Internet access, concierge services, and an arcade\\/game room.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 2 restaurants and a coffee shop\\/cafe. From your room, you can also access 24-hour room service. A complimentary buffet breakfast is served daily from 7:30 AM to 10 AM.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A shuttle from the hotel to the airport is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/10\\/49\\/1049bf1f906619d4840db89a6a18ee7aa886fd2e.jpg\",\"AccoAminitiesMask\":\"1000000100001101000\",\"AccoAminities\":[{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":419344,\"Name\":\"Greenwoods Resort Thekkady\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6119437\",\"Long\":\"77.1572269\",\"Address\":\"K.K .Road, Kumily, Thekkady 685509, Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Thekkady Greenwoods Nature Resort is a popular choice amongst travelers in Thekkady, whether exploring or just passing through. The hotel has everything you need for a comfortable stay. All the necessary facilities, including tours, currency exchange, restaurant, valet parking, coffee shop, are at hand. Each guestroom is elegantly furnished and equipped with handy amenities. Take a break from a long day and make use of massage, children&#039;s playground, table tennis, outdoor pool, pool (kids). Friendly staff, great facilities and close proximity to all that Thekkady has to offer are three great reasons you should stay at Thekkady Greenwoods Nature Resort.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480442,\"Name\":\"Treetop Resort\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.0879973\",\"Long\":\"76.52475290000001\",\"Address\":\"Silent Valley - Mukkali Rd, Chindaki, Mannarkkad, Kerala 678762, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1871,\"Title\":\"Vembanad Lake\",\"Description\":\"Vembanad (Vembanad Kayal or Vembanad Kol) is the longest lake in India, and the largest lake in the state of Kerala. Spanning several districts in the state of Kerala, it is known as Vembanadu Lake in Kottayam, Punnamada Lake in Kuttanad and Kochi Lake in Kochi. Several groups of small islands including Vypin, Mulavukad, Vallarpadam, Willingdon Island are located in the Kochi Lake portion. Kochi Port is built around the Willingdon Island and the Vallarpadam island.\",\"CurrencyType\":0,\"CityId\":14578,\"CityName\":\"Kumarakom\",\"Lat\":9.5865373,\"Long\":76.4372116,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5531\\/thumb\\/Vembanad_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":14578,\"Title\":\"Kumarakom\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":115176,\"Name\":\"Backwater Ripples Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.60533\",\"Long\":\"76.4312\",\"Address\":\"Kumarakom Kottayam 686 563\"},\"Images\":{\"Image\":[{\"ImagId\":2513632,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/542\\/1152191cdmssabrevfm_img_pho_000_nc__669140_Exterior___C.jpg\"},{\"ImagId\":2513633,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/552\\/1152191cdmssabrevfm_img_pho_000_nc__669143_Exterior___C.jpg\"},{\"ImagId\":2513634,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/573\\/1152191cdmssabrevfm_img_pho_000_nc__669149_Exterior___C.jpg\"},{\"ImagId\":2513635,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/582\\/1152191cdmssabrevfm_img_pho_000_nc__669152_Exterior___C.jpg\"},{\"ImagId\":2513636,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/630\\/1152191cdmssabrevfm_img_pho_000_nc__669167_Exterior___C.jpg\"},{\"ImagId\":2513637,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/669\\/1152191cdmssabrevfm_img_pho_000_nc__669179_Interior___A.jpg\"},{\"ImagId\":2513638,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/690\\/1152191cdmssabrevfm_img_pho_000_nc__669185_Interior___A.jpg\"},{\"ImagId\":2513639,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/721\\/1152191cdmssabrevfm_img_pho_000_nc__669194_Interior___A.jpg\"},{\"ImagId\":2513640,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/730\\/1152191cdmssabrevfm_img_pho_000_nc__669197_Interior___A.jpg\"}]},\"CityId\":14578,\"Brief\":\"Backwaters Riples is accessible by Road, as well as by lake, Cochin International Airport is 1 Housr 45 minutes by Road,Trivandrum International Airport is 3 hours by road and kottayam Railway station is 15 minutes by road, from muhamma jeety, it is just a 20 minute boat ride.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/20\\/92\\/542\\/1152191cdmssabrevfm_img_pho_000_nc__669140_Exterior___C.jpg\",\"AccoAminitiesMask\":\"100000000000000000\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":419717,\"Name\":\"Royal Riviera Hotel And Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6386419314864\",\"Long\":\"76.427418411196\",\"Address\":\"Near Post Office, Cheepunkal, Kumarakom 686563, Kerala\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"Royal Riviera Hotel &amp; Resort is conveniently located in the popular North Kumarakom area. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. Take advantage of the hotel&#039;s Wi-Fi in public areas, valet parking, elevator, room service, laundry service. Designed for comfort, selected guestrooms offer television LCD\\/plasma screen, DVD\\/CD player, balcony\\/terrace, daily newspaper, air conditioning to ensure a restful night. Take a break from a long day and make use of steamroom, massage, spa, water sports (non-motorized), outdoor pool. A welcoming atmosphere and excellent service are what you can expect during your stay at Royal Riviera Hotel &amp; Resort.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/0a\\/04\\/0a048463a98bcb1411cd5888dd09b068a0b27321.jpg\",\"AccoAminitiesMask\":\"1010001000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480466,\"Name\":\"Aveda Kumarakom\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5894807\",\"Long\":\"76.4252577\",\"Address\":\"V\\/240 A, Amankari Road, Athikkalam, Kumarakom, Kerala 686563, India\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1871,\"Title\":\"Vembanad Lake\",\"Description\":\"Vembanad (Vembanad Kayal or Vembanad Kol) is the longest lake in India, and the largest lake in the state of Kerala. Spanning several districts in the state of Kerala, it is known as Vembanadu Lake in Kottayam, Punnamada Lake in Kuttanad and Kochi Lake in Kochi. Several groups of small islands including Vypin, Mulavukad, Vallarpadam, Willingdon Island are located in the Kochi Lake portion. Kochi Port is built around the Willingdon Island and the Vallarpadam island.\",\"CurrencyType\":0,\"CityId\":14578,\"CityName\":\"Kumarakom\",\"Lat\":9.5865373,\"Long\":76.4372116,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5531\\/thumb\\/Vembanad_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":14275,\"Title\":\"Kochi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480471,\"Name\":\"Hotel Cochin Palace\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.963425099999998\",\"Long\":\"76.3002309\",\"Address\":\"55\\/1833 A1, KP Vallon Rd, Giringar Housing Colony, Giri Nagar, Kadavanthra, Kochi, Kerala 682020, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480472,\"Name\":\"Holiday Inn Cochin\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.990255399999997\",\"Long\":\"76.3161595\",\"Address\":\"33\\/1739 A Chakkaraparambu Junction, National Highway Bypass, Chakkaraparambu, Vennala, Kochi, Kerala 682028, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480473,\"Name\":\"Crowne Plaza Kochi\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.934124899999999\",\"Long\":\"76.3186795\",\"Address\":\"Xi\\/641A Kundanoor Junction NH-47 Bypass, Maradu, Po Ernakulam, Maradu, Kochi, Kerala 682304, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1871,\"Title\":\"Vembanad Lake\",\"Description\":\"Vembanad (Vembanad Kayal or Vembanad Kol) is the longest lake in India, and the largest lake in the state of Kerala. Spanning several districts in the state of Kerala, it is known as Vembanadu Lake in Kottayam, Punnamada Lake in Kuttanad and Kochi Lake in Kochi. Several groups of small islands including Vypin, Mulavukad, Vallarpadam, Willingdon Island are located in the Kochi Lake portion. Kochi Port is built around the Willingdon Island and the Vallarpadam island.\",\"CurrencyType\":0,\"CityId\":14578,\"CityName\":\"Kumarakom\",\"Lat\":9.5865373,\"Long\":76.4372116,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5531\\/thumb\\/Vembanad_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179360\",\"Title\":\"Day 01 \\u2013 Arrival in Kochi \\u2013 Drive to Munnar (180 kms \\/ approx. 7 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Kochi and drive to Munnar en route to visit Athirapally waterfalls.<\\/p>\\r\\n\\r\\n<p>Munnar - derived its name from the confluence of the three rivers around which the town grew. Today, it offers beautiful vistas, cardamom and spice plantations, aromatic oil factories, sights of several endangered species, and the purple-blue of the Neelakurinji flowers that bloom every 12 years.<\\/p>\\r\\n\\r\\n<p>Upon arrival, check-in at the hotel and spend the evening at leisure.<\\/p>\\r\\n\\r\\n<p>Overnight Stay at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":419237,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179363\",\"Title\":\"Day 02 \\u2013 Sightseeing in Munnar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast explore Eravikulam National Park, home to various elusive and endangered species. It is a great place to enjoy trekking and offers mind-blowing views of the tea plantations. Later, proceed towards the Tea Museum (closed on Monday), which gives an insight into the history of tea plantations of this region. Later visit Mattupetty Dam, Eco Point, and Flower Garden.<\\/p>\\r\\n\\r\\n<p>Return to the hotel for an overnight stay. Overnight Stay in Munnar<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":419237,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4293,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179366\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179369\",\"Title\":\"Day 03 \\u2013 Munnar \\u2013 Thekkady (120 kms \\/ approx. 4 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast, drive to Thekkady (Periyar) and on arrival check-in at the hotel.<\\/p>\\r\\n\\r\\n<p>Enjoy a full day sightseeing tour of Periyar. Set high in the ranges of the Western Ghats in Kerala, is the Periyar National Park and Tiger Reserve. Periyar wildlife sanctuary has a picturesque lake at the heart of the sanctuary. Herds of playful wild elephants have made Periyar Lake their favorite haunt for frolicking in the water. They can be witnessed bathing and swimming here. Enjoy a boat ride on the lake to view the wildlife at close quarters. Other inhabitants of Periyar include the leopard, wild dog, barking deer, mouse deer, Nilgiri langur, bonnet macaque, sambhar, porcupines, squirrels, gaur (Indian bison), wild boar, and sloth bear, and in the evening watch traditional Kalaripayattu show.<\\/p>\\r\\n\\r\\n<p>Return to the hotel for an overnight stay in Thekkady.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480442,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":419340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1352,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179372\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179375\",\"Title\":\"Day 04 \\u2013 Drive from Thekkady \\u2013 Kumarakom (130 kms \\/ approx. 4 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast, check-out and proceed to Kumarakom - a charming emerald peninsula jutting into the picturesque Vembanad Lake dotted with innumerable traditional country rafts, boats, and canoes. The freshwater of the lake flows into the mainland, making a labyrinth of lagoons, canals, and waterways.<\\/p>\\r\\n\\r\\n<p>Enjoy a sunset cruise in Vembanad Lake. Overnight at the backwater resort.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14578,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":419717,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":115176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1871,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179378\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14578,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179381\",\"Title\":\"Day 05 \\u2013 Kumarakom \\u2013 Kochi (60 kms \\/ approx. 1.5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>This morning you can experience the Village life of Kumarakom<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\nAymanam Village Visit<br \\/>\\r\\nAymanam is a typical Kerala village (08 km away from Kumarakom). Arundhati Roy&#39;s Booker prize-winning novel &ldquo;The God of Small Things&rdquo; was set at Aymanam. Aymanam village is a gem hidden in the landscape of Kerala. While there are no particular sightseeing places or tourist attractions in the village, the vibe and ambiance of the village make people come back to it again and again. The best things to do here would be taking a stroll through the natural setting, exploring the beauty of the village, and getting to know the locals of the region and their customs and traditions. This village visit includes Interaction with Kathakali Master, Canoe Ride, Temple Visit, Traditional Kerala Lunch(subject to availability), and English Speaking Guide.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\nLater, proceed towards Kochi, check inn at Hotel, evening enjoy Kathakali Dance performance or stroll at spice market of Kochi, return to the hotel for overnight stay.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480471,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480473,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179384\",\"Title\":\"Day 06 \\u2013 Departure from Kochi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, enjoy a city tour covering Mattancherry Palace- gifted to the king of Kochi, by the Portuguese in 1555, about 500-year-old Jewish Synagogue, Chinese fishing nets &amp; later you will be transferred to Kochi airport for return flight back home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25037\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12961.65\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10619,\"priceDoubleOcc\":\"12961.65\",\"priceSingleOcc\":25923.3,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12961.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10619,\"priceDoubleOcc\":\"12961.65\",\"priceSingleOcc\":25923.3,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12961.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10619,\"priceDoubleOcc\":\"12961.65\",\"priceSingleOcc\":25923.3,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12961.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10619,\"priceDoubleOcc\":\"12961.65\",\"priceSingleOcc\":25923.3,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12961.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10619,\"priceDoubleOcc\":\"12961.65\",\"priceSingleOcc\":25923.3,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12961.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13406,\"priceDoubleOcc\":\"17141.90\",\"priceSingleOcc\":30103.550000000003,\"priceExtraBed\":\"5934.00\",\"priceWithoutBed\":\"12961.65\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17141.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25038\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17557.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14741,\"priceDoubleOcc\":\"17557.05\",\"priceSingleOcc\":35114.1,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17557.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14741,\"priceDoubleOcc\":\"17557.05\",\"priceSingleOcc\":35114.1,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17557.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14741,\"priceDoubleOcc\":\"17557.05\",\"priceSingleOcc\":35114.1,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17557.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14741,\"priceDoubleOcc\":\"17557.05\",\"priceSingleOcc\":35114.1,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17557.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14741,\"priceDoubleOcc\":\"17557.05\",\"priceSingleOcc\":35114.1,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17557.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17528,\"priceDoubleOcc\":\"21737.30\",\"priceSingleOcc\":39294.35,\"priceExtraBed\":\"9108.00\",\"priceWithoutBed\":\"3933.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21737.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25039\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21971.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18604,\"priceDoubleOcc\":\"21971.90\",\"priceSingleOcc\":43943.8,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21971.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18604,\"priceDoubleOcc\":\"21971.90\",\"priceSingleOcc\":43943.8,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21971.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18604,\"priceDoubleOcc\":\"21971.90\",\"priceSingleOcc\":43943.8,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21971.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18604,\"priceDoubleOcc\":\"21971.90\",\"priceSingleOcc\":43943.8,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21971.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18604,\"priceDoubleOcc\":\"21971.90\",\"priceSingleOcc\":43943.8,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21971.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21391,\"priceDoubleOcc\":\"26152.15\",\"priceSingleOcc\":48124.05,\"priceExtraBed\":\"11868.00\",\"priceWithoutBed\":\"5313.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26152.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25037\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12398.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10157,\"priceDoubleOcc\":\"12398.10\",\"priceSingleOcc\":24796.2,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12398.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10157,\"priceDoubleOcc\":\"12398.10\",\"priceSingleOcc\":24796.2,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12398.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10157,\"priceDoubleOcc\":\"12398.10\",\"priceSingleOcc\":24796.2,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12398.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10157,\"priceDoubleOcc\":\"12398.10\",\"priceSingleOcc\":24796.2,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12398.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":10157,\"priceDoubleOcc\":\"12398.10\",\"priceSingleOcc\":24796.2,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12398.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":12823,\"priceDoubleOcc\":\"16396.60\",\"priceSingleOcc\":28794.699999999997,\"priceExtraBed\":\"5676.00\",\"priceWithoutBed\":\"2706.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16396.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25038\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16793.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14100,\"priceDoubleOcc\":\"16793.70\",\"priceSingleOcc\":33587.4,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16793.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14100,\"priceDoubleOcc\":\"16793.70\",\"priceSingleOcc\":33587.4,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16793.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14100,\"priceDoubleOcc\":\"16793.70\",\"priceSingleOcc\":33587.4,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16793.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14100,\"priceDoubleOcc\":\"16793.70\",\"priceSingleOcc\":33587.4,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16793.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14100,\"priceDoubleOcc\":\"16793.70\",\"priceSingleOcc\":33587.4,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16793.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16765,\"priceDoubleOcc\":\"20792.20\",\"priceSingleOcc\":37585.9,\"priceExtraBed\":\"8712.00\",\"priceWithoutBed\":\"3762.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20792.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25039\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21016.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17795,\"priceDoubleOcc\":\"21016.60\",\"priceSingleOcc\":42033.2,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21016.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17795,\"priceDoubleOcc\":\"21016.60\",\"priceSingleOcc\":42033.2,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21016.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17795,\"priceDoubleOcc\":\"21016.60\",\"priceSingleOcc\":42033.2,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21016.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17795,\"priceDoubleOcc\":\"21016.60\",\"priceSingleOcc\":42033.2,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21016.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17795,\"priceDoubleOcc\":\"21016.60\",\"priceSingleOcc\":42033.2,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21016.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20461,\"priceDoubleOcc\":\"25015.10\",\"priceSingleOcc\":46031.7,\"priceExtraBed\":\"11352.00\",\"priceWithoutBed\":\"5082.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25015.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if&amp;nbsp;not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Additional charges for Kumarakom village life&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5 Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179360\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179360],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179363\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179363],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179366\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179366],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179369\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179369],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179372\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179372],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179375\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179375],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179378\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179378],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179381\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179381],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179384\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179384],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Munnar,Thekkady,Kumarakom,Kochi','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Kumarakom,Kochi',NULL,'18697,27156,14578,14275',12398,26152,5,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2021-04-15 00:00:00','2021-04-15 00:00:00',1,1,'1','1','1',NULL,NULL,NULL,NULL,'kultural-kerala',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (97,25029,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Festivals and Events,Romantic,Offbeat,Leisure,Luxury Tours,Educational Tours,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":25029,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Quickly_South_97.png\",\"BookingValidUntill\":\"2021-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;One cannot consider it as hyperbole if it is said that South India is affluent with culture, history and natural beauty as every city or town in this part of the country is teeming with picturesque beauty endowed by Mother Nature. Bangalore, Mysore, and Ooty are among such places that reflect historical significance, natural beauty, and cultural affluence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This 05 Nights and 06 Days itinerary takes the travelers on a gratifying tour to Bangalore, Mysore, and Ooty. The major highlights of this tour package are exploring Tipu Sultan&amp;rsquo;s Palace and Ranganathaswamy Temple in Bangalore, visiting Chamundi, Devi Temple near Mysore, Krishnarajasagar Dam and Mysore Palace in Mysore, and a short trip to Dolphin&amp;rsquo;s Nose and Botanical Garden in Ooty. The tour is meticulously scheduled and incorporates the entire three destinations in a way that it covers the major attractions in a comprehensive way.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Madurai\",\"DestinationPlacesSysId\":16319,\"SourcePlaces\":\"Bangalore\",\"SourcePlaceSysId\":2262,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Quickly South\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Festivals and Events,Romantic,Offbeat,Leisure,Luxury Tours,Educational Tours,Women Only\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18821,\"Title\":\"Mysore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":418720,\"Name\":\"Regenta Central Herald\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.3144\",\"Long\":\"76.6483\",\"Address\":\"172 Nelson Mandela Road, Bannimantap, Mysore 570015, Karnataka\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":142163,\"Name\":\"Fortune JP Palace\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.318362991545\",\"Long\":\"76.662981212139\",\"Address\":\"3 Abba Road Nazarbad\"},\"Images\":{\"Image\":[{\"ImagId\":3126506,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/778\\/Fortune_1_C.jpg\"},{\"ImagId\":3126507,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/796\\/Fortune_3_A.jpg\"},{\"ImagId\":3126508,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/787\\/Fortune_2_A.jpg\"}]},\"CityId\":18821,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Centrally located in Mysore, Fortune JP Palace is minutes from Jayachamarajendra Art Gallery and Jaganmohan Palace and Art Gallery.  This 4-star hotel is within close proximity of Mysore Palace and St. Philomenas Church.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 108 individually furnished guestrooms, featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature designer toiletries and hair dryers. Conveniences include phones, as well as laptop-compatible safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself with massages and body treatments. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool and a fitness center. This Art Deco hotel also features wireless Internet access (surcharge), concierge services, and gift shops\\/newsstands.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;All-inclusive rates are available at this hotel. Meals and beverages at onsite dining establishments are included in all-inclusive rates. Charges may be applied for dining at some restaurants, special dinners and dishes, some beverages, and other amenities. &amp;lt;p&amp;gt;Grab a bite at one of the hotel&amp;apos;s 3 restaurants, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary buffet breakfast is served daily. &amp;lt;\\/p&amp;gt;&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include high-speed (wired) Internet access (surcharge), a 24-hour business center, and limo\\/town car service. Planning an event in Mysore? This hotel has facilities measuring 11700 square feet (1087 square meters), including a conference center. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/41\\/250\\/778\\/Fortune_1_C.jpg\",\"AccoAminitiesMask\":\"100100000000010000\",\"AccoAminities\":[{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":365601,\"Name\":\"Radisson Blu Plaza Hotel Mysore\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.298202\",\"Long\":\"76.665169\",\"Address\":\"1 MG Road, Mysore 570010, Karnataka\"},\"Images\":[],\"CityId\":18821,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Radisson Blu Plaza Hotel Mysore is centrally located in Mysore, walking distance from Mysore Zoo and close to Thonnur Lake.  This 5-star hotel is within close proximity of Mysore Palace and Kukkaranahalli Lake.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 140 air-conditioned rooms featuring kitchens. LED televisions with digital programming provide entertainment, while complimentary wireless Internet access keeps you connected. Bathrooms with separate bathtubs and showers feature deep soaking bathtubs and designer toiletries. Conveniences include safes and desks, and housekeeping is provided daily.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take time to pamper yourself with a visit to the full-service spa. You can take advantage of recreational amenities such as a health club, an outdoor pool, and a spa tub. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge) that operates within 185 km.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Grab a bite to eat at the hotel&#039;s restaurant, which features a bar and a pool view. You can also stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Buffet breakfasts are available for a fee.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a 24-hour business center, express check-in, and express check-out. Planning an event in Mysore? This hotel has 5063 square feet (470 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/0b\\/73\\/0b737b06a81d2282173e3996afc06c2da4adc38d.jpg\",\"AccoAminitiesMask\":\"1010000100001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":246,\"Title\":\"Brindavan Garden\",\"Description\":\"Visited by close to 2 million tourists per year, the garden is one of the major attractions of Srirangapatna. It is spread across an area of 60 acres . The garden is laid out in 3 terraces which contain water fountains, Ficus trees, foliage plants such as Duranta plumaria and Euphorbia and flowering plants like Celosia, Marigold and bougainvillea. There is also a lake within the garden with boating facilities available for visitors.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.5221567,\"Long\":76.9009191,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/283\\/thumb\\/Brindavan Garden_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":294,\"Title\":\"Chamundi Hills\",\"Description\":\"Patronised for centuries by Mysore rulers, Chamundeshwari Temple is located atop the Chamundi Hills.Named after goddess Chamundi, the Chamundeshwari Temple sits atop the main hill. The main hill itself features an ancient stone stairway of 1,008 steps leading to its summit.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2784749,\"Long\":76.6681937,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/235\\/thumb\\/Chamundi Hills_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1166,\"Title\":\"Mysore Maharaja Palace\",\"Description\":\"Ambavilas Palace otherwise known as the Mysore Palace, is a historical palace and a royal residence at Mysore. Mysore Palace is now one of the most famous tourist attractions in India, after the Taj Mahal, with more than 6 million annual visitors. The architectural style of domes of the palace is commonly described as Indo-Saracenic, with blends of the Hindu, Mughal, Rajput, and Gothic styles. It is a three-story stone structure with marble domes, and has a 145-foot five-story tower.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.3051351,\"Long\":76.6551483,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/231\\/thumb\\/Mysore Maharaja Palace_756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":237,\"Title\":\"Botanical Garden\",\"Description\":\"Sprawled over an area of 22 hectares, the garden is divided into several sections that are trimmed beautifully to present an endearing sight.  Another highlight of the Botanical Garden is the Toda hill, known as the Toda mund, which gives the visitors an insight into the lives and culture of Todas (a tribe of the Nilgiris). The slopes of the hill lie at an ascent of 2500 metres above mean sea level, as a result of which the garden enjoys a temperate climate ideal for a number of plants and shrubs to grow.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4040343,\"Long\":76.7019038,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4665\\/thumb\\/Botanical Garden_847.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":444,\"Title\":\"Doddabetta Peak\",\"Description\":\"Towering at a staggering height of 8650 feet or 2,623 meters above the sea level, Dodabetta, which literally translates into &amp;#039;big hill&amp;#039; is the highest peak in the Nilgiri Hills. Dodabetta is strategically located between the Western and Eastern Ghats, thus it is an ideal vantage point for the entire Nilgiris. Another unique feature of this hill is that it can be accessed by foot as well as by vehicle, thus appealing to the younger as well the older audience.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.41,\"Long\":76.7,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/241\\/thumb\\/Doddabetta Peak_186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1258,\"Title\":\"Ooty Lake\",\"Description\":\"The beautiful lake is spread over an area of 65 acres.  The Lake is surrounded by Eucalyptus trees and greenery all around. There is a mini train too for kids to hop on and take a quick tour of the lake. Boat races, as well as other events, are also organized here for two days in May.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4034709,\"Long\":76.6952991,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/240\\/thumb\\/Ooty Lake_258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":167,\"Title\":\"Bear Shola Falls\",\"Description\":\"This cascade is a seasonal attraction which comes to life in its fullest during the monsoons, when the water flows down from the hilltop making its way through the verdant greenery of the region.  The surrounding undulating terrains that are swathed with dense forests form a picturesque backdrop to these waterfalls, and the scenic beauty coupled with the mesmerising chirping of birds is a treat for one and all.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/591\\/thumb\\/Bear Shola Falls_153.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":901,\"Title\":\"Kodai Lake\",\"Description\":\"Kodaikanal Lake is a manmade lake in the Kodaikanal city which is also known as Kodai Lake. The star-shaped lake is centrally located in Kodaikanal and is surrounded by the rich green Palani Hills Range the main watershed for the lake. The lake is situated at an elevation of 2285m above sea level and has an average depth of 3.0m.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2343586,\"Long\":77.4863295,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/277\\/thumb\\/Kodai Lake_982.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":248,\"Title\":\"Bryant Park\",\"Description\":\"Situated on the eastern side of the Kodai Lake, the park is bejewelled with various species of plants and shrubs. They vary in a range of flowering plants, hybrids and grafts. Once you&amp;#039;ve had a stroll on the Coakers walk, the pathway will lead you towards the park. It is a popular spot amongst families as they can set up a picnic area in the park and watch their kids run around and tumble in the grass. The park also educates and trains students of Ornamental Horticulture as it is also recognised as a demonstration centre.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/275\\/thumb\\/Bryant Park_232.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":363,\"Title\":\"Coakers Walk\",\"Description\":\"Coakers Walk is a beautiful man-made one-kilometre-long walking plaza built on the mountains. The lovely path of Coakers Walk that curves by the edge of the gorgeous mountain have been constructed mainly for visitors to get a glimpse of Paradise on Earth.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/251\\/thumb\\/Coakers Walk_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1361,\"Title\":\"Pillar Rocks\",\"Description\":\"The Pillar Rocks have become a lovely picnic spot. Constituting a beautiful mini garden the place is named so as it has three vertically positioned boulders reaching up to a height of 400 feet. The aura here is full of affection and is evidence of a great love story. The &amp;#039;white cross&amp;#039; which once existed on these rocks represented David Gell&amp;#039;s excellent tribute to love.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/921\\/thumb\\/Pillar Rocks_793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1691,\"Title\":\"Suicide Point (green Valley View Point)\",\"Description\":\"Formerly known as Suicide point, the Green Valley View offers a breathtaking view of the plains, deep valleys and hills. It used to be known as suicide point because of the dangerous valley which is dense and deep below the point of more than 5000 feet drop.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2098553,\"Long\":77.476588,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/276\\/thumb\\/Suicide Point_116.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":20161,\"Title\":\"Ooty\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":150738,\"Name\":\"Gem Park-Ooty\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.420624\",\"Long\":\"76.704169\",\"Address\":\"Sheddon Road Ooty 643001\"},\"Images\":{\"Image\":[{\"ImagId\":3301897,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_67_t.jpg\"},{\"ImagId\":3301898,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_68_t.jpg\"},{\"ImagId\":3301899,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_69_t.jpg\"},{\"ImagId\":3301900,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_70_t.jpg\"},{\"ImagId\":3301901,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_71_t.jpg\"},{\"ImagId\":3301902,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_72_t.jpg\"},{\"ImagId\":3301903,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_73_t.jpg\"},{\"ImagId\":3301904,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_74_t.jpg\"},{\"ImagId\":3301905,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_75_t.jpg\"},{\"ImagId\":3301906,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_76_t.jpg\"},{\"ImagId\":3301907,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_77_t.jpg\"},{\"ImagId\":3301908,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_78_t.jpg\"},{\"ImagId\":3301909,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_79_t.jpg\"},{\"ImagId\":3301910,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_80_t.jpg\"},{\"ImagId\":3301911,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_81_t.jpg\"}]},\"CityId\":20161,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/1000000\\/200000\\/197900\\/197807\\/197807_67_t.jpg\",\"AccoAminitiesMask\":\"111110000001010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480418,\"Name\":\"LA MONTANA BY TGI\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.3863655\",\"Long\":\"76.71715619999999\",\"Address\":\"No.278-A1 ,Valley View, Lovedale Post, Grand Duff Road, Ooty, Tamil Nadu 643003, India\"},\"Images\":[],\"CityId\":20161,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480421,\"Name\":\"Sterling Ooty Elk Hill\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.3966061\",\"Long\":\"76.7017444\",\"Address\":\"Sterling Ooty Elk Hill - Resorts and Hotels 25, Ramakrishna Mutt Road R.K.Puram Elk Hill, Ooty, R.K.Puram, Fern Hill, Ooty, Tamil Nadu 643001, India\"},\"Images\":[],\"CityId\":20161,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":246,\"Title\":\"Brindavan Garden\",\"Description\":\"Visited by close to 2 million tourists per year, the garden is one of the major attractions of Srirangapatna. It is spread across an area of 60 acres . The garden is laid out in 3 terraces which contain water fountains, Ficus trees, foliage plants such as Duranta plumaria and Euphorbia and flowering plants like Celosia, Marigold and bougainvillea. There is also a lake within the garden with boating facilities available for visitors.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.5221567,\"Long\":76.9009191,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/283\\/thumb\\/Brindavan Garden_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":294,\"Title\":\"Chamundi Hills\",\"Description\":\"Patronised for centuries by Mysore rulers, Chamundeshwari Temple is located atop the Chamundi Hills.Named after goddess Chamundi, the Chamundeshwari Temple sits atop the main hill. The main hill itself features an ancient stone stairway of 1,008 steps leading to its summit.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2784749,\"Long\":76.6681937,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/235\\/thumb\\/Chamundi Hills_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1166,\"Title\":\"Mysore Maharaja Palace\",\"Description\":\"Ambavilas Palace otherwise known as the Mysore Palace, is a historical palace and a royal residence at Mysore. Mysore Palace is now one of the most famous tourist attractions in India, after the Taj Mahal, with more than 6 million annual visitors. The architectural style of domes of the palace is commonly described as Indo-Saracenic, with blends of the Hindu, Mughal, Rajput, and Gothic styles. It is a three-story stone structure with marble domes, and has a 145-foot five-story tower.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.3051351,\"Long\":76.6551483,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/231\\/thumb\\/Mysore Maharaja Palace_756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":237,\"Title\":\"Botanical Garden\",\"Description\":\"Sprawled over an area of 22 hectares, the garden is divided into several sections that are trimmed beautifully to present an endearing sight.  Another highlight of the Botanical Garden is the Toda hill, known as the Toda mund, which gives the visitors an insight into the lives and culture of Todas (a tribe of the Nilgiris). The slopes of the hill lie at an ascent of 2500 metres above mean sea level, as a result of which the garden enjoys a temperate climate ideal for a number of plants and shrubs to grow.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4040343,\"Long\":76.7019038,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4665\\/thumb\\/Botanical Garden_847.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":444,\"Title\":\"Doddabetta Peak\",\"Description\":\"Towering at a staggering height of 8650 feet or 2,623 meters above the sea level, Dodabetta, which literally translates into &amp;#039;big hill&amp;#039; is the highest peak in the Nilgiri Hills. Dodabetta is strategically located between the Western and Eastern Ghats, thus it is an ideal vantage point for the entire Nilgiris. Another unique feature of this hill is that it can be accessed by foot as well as by vehicle, thus appealing to the younger as well the older audience.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.41,\"Long\":76.7,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/241\\/thumb\\/Doddabetta Peak_186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1258,\"Title\":\"Ooty Lake\",\"Description\":\"The beautiful lake is spread over an area of 65 acres.  The Lake is surrounded by Eucalyptus trees and greenery all around. There is a mini train too for kids to hop on and take a quick tour of the lake. Boat races, as well as other events, are also organized here for two days in May.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4034709,\"Long\":76.6952991,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/240\\/thumb\\/Ooty Lake_258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":167,\"Title\":\"Bear Shola Falls\",\"Description\":\"This cascade is a seasonal attraction which comes to life in its fullest during the monsoons, when the water flows down from the hilltop making its way through the verdant greenery of the region.  The surrounding undulating terrains that are swathed with dense forests form a picturesque backdrop to these waterfalls, and the scenic beauty coupled with the mesmerising chirping of birds is a treat for one and all.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/591\\/thumb\\/Bear Shola Falls_153.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":901,\"Title\":\"Kodai Lake\",\"Description\":\"Kodaikanal Lake is a manmade lake in the Kodaikanal city which is also known as Kodai Lake. The star-shaped lake is centrally located in Kodaikanal and is surrounded by the rich green Palani Hills Range the main watershed for the lake. The lake is situated at an elevation of 2285m above sea level and has an average depth of 3.0m.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2343586,\"Long\":77.4863295,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/277\\/thumb\\/Kodai Lake_982.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":248,\"Title\":\"Bryant Park\",\"Description\":\"Situated on the eastern side of the Kodai Lake, the park is bejewelled with various species of plants and shrubs. They vary in a range of flowering plants, hybrids and grafts. Once you&amp;#039;ve had a stroll on the Coakers walk, the pathway will lead you towards the park. It is a popular spot amongst families as they can set up a picnic area in the park and watch their kids run around and tumble in the grass. The park also educates and trains students of Ornamental Horticulture as it is also recognised as a demonstration centre.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/275\\/thumb\\/Bryant Park_232.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":363,\"Title\":\"Coakers Walk\",\"Description\":\"Coakers Walk is a beautiful man-made one-kilometre-long walking plaza built on the mountains. The lovely path of Coakers Walk that curves by the edge of the gorgeous mountain have been constructed mainly for visitors to get a glimpse of Paradise on Earth.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/251\\/thumb\\/Coakers Walk_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1361,\"Title\":\"Pillar Rocks\",\"Description\":\"The Pillar Rocks have become a lovely picnic spot. Constituting a beautiful mini garden the place is named so as it has three vertically positioned boulders reaching up to a height of 400 feet. The aura here is full of affection and is evidence of a great love story. The &amp;#039;white cross&amp;#039; which once existed on these rocks represented David Gell&amp;#039;s excellent tribute to love.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/921\\/thumb\\/Pillar Rocks_793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1691,\"Title\":\"Suicide Point (green Valley View Point)\",\"Description\":\"Formerly known as Suicide point, the Green Valley View offers a breathtaking view of the plains, deep valleys and hills. It used to be known as suicide point because of the dangerous valley which is dense and deep below the point of more than 5000 feet drop.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2098553,\"Long\":77.476588,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/276\\/thumb\\/Suicide Point_116.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":14277,\"Title\":\"Kodaikanal\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":113796,\"Name\":\"The Carlton\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.235136414983\",\"Long\":\"77.488858113125\",\"Address\":\"Lake Road \"},\"Images\":{\"Image\":[{\"ImagId\":2484657,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/976\\/429\\/Resort_Image_C.jpg\"}]},\"CityId\":14277,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/976\\/429\\/Resort_Image_C.jpg\",\"AccoAminitiesMask\":\"100011100000010000\",\"AccoAminities\":[{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480422,\"Name\":\"Kodai Resort Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.2328797\",\"Long\":\"77.4944519\",\"Address\":\"Coaker&#039;s Walk, Kodaikanal, Tamil Nadu 624101, India\"},\"Images\":[],\"CityId\":14277,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480423,\"Name\":\"Sterling Kodai Lake\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.2304704\",\"Long\":\"77.4806\",\"Address\":\"44, Gymkhana Road, Lake View, Kodaikanal, Tamil Nadu 624101, India\"},\"Images\":[],\"CityId\":14277,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":246,\"Title\":\"Brindavan Garden\",\"Description\":\"Visited by close to 2 million tourists per year, the garden is one of the major attractions of Srirangapatna. It is spread across an area of 60 acres . The garden is laid out in 3 terraces which contain water fountains, Ficus trees, foliage plants such as Duranta plumaria and Euphorbia and flowering plants like Celosia, Marigold and bougainvillea. There is also a lake within the garden with boating facilities available for visitors.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.5221567,\"Long\":76.9009191,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/283\\/thumb\\/Brindavan Garden_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":294,\"Title\":\"Chamundi Hills\",\"Description\":\"Patronised for centuries by Mysore rulers, Chamundeshwari Temple is located atop the Chamundi Hills.Named after goddess Chamundi, the Chamundeshwari Temple sits atop the main hill. The main hill itself features an ancient stone stairway of 1,008 steps leading to its summit.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.2784749,\"Long\":76.6681937,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/235\\/thumb\\/Chamundi Hills_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1166,\"Title\":\"Mysore Maharaja Palace\",\"Description\":\"Ambavilas Palace otherwise known as the Mysore Palace, is a historical palace and a royal residence at Mysore. Mysore Palace is now one of the most famous tourist attractions in India, after the Taj Mahal, with more than 6 million annual visitors. The architectural style of domes of the palace is commonly described as Indo-Saracenic, with blends of the Hindu, Mughal, Rajput, and Gothic styles. It is a three-story stone structure with marble domes, and has a 145-foot five-story tower.\",\"CurrencyType\":0,\"CityId\":18821,\"CityName\":\"Mysore\",\"Lat\":12.3051351,\"Long\":76.6551483,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/231\\/thumb\\/Mysore Maharaja Palace_756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":237,\"Title\":\"Botanical Garden\",\"Description\":\"Sprawled over an area of 22 hectares, the garden is divided into several sections that are trimmed beautifully to present an endearing sight.  Another highlight of the Botanical Garden is the Toda hill, known as the Toda mund, which gives the visitors an insight into the lives and culture of Todas (a tribe of the Nilgiris). The slopes of the hill lie at an ascent of 2500 metres above mean sea level, as a result of which the garden enjoys a temperate climate ideal for a number of plants and shrubs to grow.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4040343,\"Long\":76.7019038,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4665\\/thumb\\/Botanical Garden_847.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":444,\"Title\":\"Doddabetta Peak\",\"Description\":\"Towering at a staggering height of 8650 feet or 2,623 meters above the sea level, Dodabetta, which literally translates into &amp;#039;big hill&amp;#039; is the highest peak in the Nilgiri Hills. Dodabetta is strategically located between the Western and Eastern Ghats, thus it is an ideal vantage point for the entire Nilgiris. Another unique feature of this hill is that it can be accessed by foot as well as by vehicle, thus appealing to the younger as well the older audience.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.41,\"Long\":76.7,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/241\\/thumb\\/Doddabetta Peak_186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1258,\"Title\":\"Ooty Lake\",\"Description\":\"The beautiful lake is spread over an area of 65 acres.  The Lake is surrounded by Eucalyptus trees and greenery all around. There is a mini train too for kids to hop on and take a quick tour of the lake. Boat races, as well as other events, are also organized here for two days in May.\",\"CurrencyType\":0,\"CityId\":20161,\"CityName\":\"Ooty\",\"Lat\":11.4034709,\"Long\":76.6952991,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/240\\/thumb\\/Ooty Lake_258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":167,\"Title\":\"Bear Shola Falls\",\"Description\":\"This cascade is a seasonal attraction which comes to life in its fullest during the monsoons, when the water flows down from the hilltop making its way through the verdant greenery of the region.  The surrounding undulating terrains that are swathed with dense forests form a picturesque backdrop to these waterfalls, and the scenic beauty coupled with the mesmerising chirping of birds is a treat for one and all.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/591\\/thumb\\/Bear Shola Falls_153.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":901,\"Title\":\"Kodai Lake\",\"Description\":\"Kodaikanal Lake is a manmade lake in the Kodaikanal city which is also known as Kodai Lake. The star-shaped lake is centrally located in Kodaikanal and is surrounded by the rich green Palani Hills Range the main watershed for the lake. The lake is situated at an elevation of 2285m above sea level and has an average depth of 3.0m.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2343586,\"Long\":77.4863295,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/277\\/thumb\\/Kodai Lake_982.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":248,\"Title\":\"Bryant Park\",\"Description\":\"Situated on the eastern side of the Kodai Lake, the park is bejewelled with various species of plants and shrubs. They vary in a range of flowering plants, hybrids and grafts. Once you&amp;#039;ve had a stroll on the Coakers walk, the pathway will lead you towards the park. It is a popular spot amongst families as they can set up a picnic area in the park and watch their kids run around and tumble in the grass. The park also educates and trains students of Ornamental Horticulture as it is also recognised as a demonstration centre.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/275\\/thumb\\/Bryant Park_232.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":363,\"Title\":\"Coakers Walk\",\"Description\":\"Coakers Walk is a beautiful man-made one-kilometre-long walking plaza built on the mountains. The lovely path of Coakers Walk that curves by the edge of the gorgeous mountain have been constructed mainly for visitors to get a glimpse of Paradise on Earth.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2324843,\"Long\":77.4647938,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/251\\/thumb\\/Coakers Walk_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1361,\"Title\":\"Pillar Rocks\",\"Description\":\"The Pillar Rocks have become a lovely picnic spot. Constituting a beautiful mini garden the place is named so as it has three vertically positioned boulders reaching up to a height of 400 feet. The aura here is full of affection and is evidence of a great love story. The &amp;#039;white cross&amp;#039; which once existed on these rocks represented David Gell&amp;#039;s excellent tribute to love.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2381136,\"Long\":77.4891822,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/921\\/thumb\\/Pillar Rocks_793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1691,\"Title\":\"Suicide Point (green Valley View Point)\",\"Description\":\"Formerly known as Suicide point, the Green Valley View offers a breathtaking view of the plains, deep valleys and hills. It used to be known as suicide point because of the dangerous valley which is dense and deep below the point of more than 5000 feet drop.\",\"CurrencyType\":0,\"CityId\":14277,\"CityName\":\"Kodaikanal\",\"Lat\":10.2098553,\"Long\":77.476588,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/276\\/thumb\\/Suicide Point_116.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179324\",\"Title\":\"Day 01 \\u2013Arrival in Bangalore \\u2013Drive to Mysore (140 kms \\/ approx. 3.5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Bangalore and Proceed to Mysore<\\/p>\\r\\n\\r\\n<p>An ancient city with more than 600 glorious years of legacy, Mysore is one of the most flamboyant places in India. Known for its glittering royal heritage, bustling markets, magnificent monuments, cosmopolitan culture, and a friendly populace, it is also a thriving center for the production of premium silk, sandalwood, and incense. After reaching, check-in at the hotel for an overnight stay.<\\/p>\\r\\n\\r\\n<p>(Optional) &ndash;Sri Chamarajendra Zoological Gardens &ndash;&ldquo;A WILD EXPERIENCE IN MYSORE&rdquo;. It is one of the most attractive and beautiful zoos in India, with a wide range of animal Collection. It&#39;s a plastic-free zone. Closed on Tuesday. Overnight in Mysore.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18821,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":418720,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":142163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365601,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179327\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18821,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179330\",\"Title\":\"Day 02 \\u2013Mysore \\u2013Ooty (125 kms \\/ approx. 3 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After early breakfast, visit Chamundi Hill and the Brindavan Gardens-spread over 150 acres. Later, visit Mysore Palace -The interior of Mysore Palace is richly carved, intricate, colorful, and architecturally thrilling. It is from this palace the erstwhile rulers, the Wodeyars, ruled the Mysore Kingdom. A Sound &amp; Light show which narrates the palace&#39;s history with effects of illumination is a must-watch for the palace. After lunch proceeds to Ooty.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480421,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":150738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":246,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":294,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1166,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179333\",\"Title\":\"Day 03 \\u2013Sightseeing in Ooty\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast, proceed for the sightseeing of Ooty. Enjoy a tour to Dodabetta Peak for a spectacular view. In the afternoon, visit the Botanical Gardens and the popular Ooty Lake. Overnight stay in Ooty.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480421,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":150738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":237,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":444,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1258,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179336\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20161,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179339\",\"Title\":\"Day04 \\u2013Drive from Ooty \\u2013Kodaikanal (250 kms \\/ approx. 7 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast, drive towards Kodaikanal &ndash;Centered on a very pretty lake, Kodai rambles up and down hillsides with patches of the shola forest, unique to the Western Ghats in South India, and evergreen broadleaf trees such as magnolia, mahogany, myrtle, and rhododendron. Another plant specialty around here is the kurinji shrub, whose lilac-blue blossoms only appear every 12 years. Check-in at the hotel upon arrival, for an overnight stay.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14277,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480422,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480423,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":113796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":167,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":901,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179342\",\"Title\":\"Day 04 \\u2013Drive from Ooty \\u2013Kodaikanal (250 kms \\/ approx. 7 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast proceeds for a local tour of Kodaikanal covering -Bryant Park, Coaker&#39;s walk, Pillar Rock, and Suicide point. In the evening, visit Kodai Lake, the man-made star-shaped lake, which spreads out over sixty acres.<\\/p>\\r\\n\\r\\n<p>Evening return back to the hotel and overnight stay at hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14277,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480422,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480423,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":113796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":363,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":901,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1361,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1691,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179345\",\"Title\":\"Day 06 \\u2013Departure from Madurai (135 kms \\/ approx. 3.5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, you will be transferred to Madurai airport for a return flight back home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14277,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25029\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24159.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19002,\"priceDoubleOcc\":\"24159.20\",\"priceSingleOcc\":48318.4,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24159.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19002,\"priceDoubleOcc\":\"24159.20\",\"priceSingleOcc\":48318.4,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24159.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19002,\"priceDoubleOcc\":\"24159.20\",\"priceSingleOcc\":48318.4,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24159.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19002,\"priceDoubleOcc\":\"24159.20\",\"priceSingleOcc\":48318.4,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24159.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19002,\"priceDoubleOcc\":\"24159.20\",\"priceSingleOcc\":48318.4,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24159.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22806,\"priceDoubleOcc\":\"29864.35\",\"priceSingleOcc\":54023.55,\"priceExtraBed\":\"8688.25\",\"priceWithoutBed\":\"8378.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29864.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25030\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26974.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20559,\"priceDoubleOcc\":\"26974.40\",\"priceSingleOcc\":53948.8,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26974.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20559,\"priceDoubleOcc\":\"26974.40\",\"priceSingleOcc\":53948.8,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26974.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20559,\"priceDoubleOcc\":\"26974.40\",\"priceSingleOcc\":53948.8,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26974.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20559,\"priceDoubleOcc\":\"26974.40\",\"priceSingleOcc\":53948.8,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26974.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20559,\"priceDoubleOcc\":\"26974.40\",\"priceSingleOcc\":53948.8,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26974.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24362,\"priceDoubleOcc\":\"32679.55\",\"priceSingleOcc\":59653.95,\"priceExtraBed\":\"7728.00\",\"priceWithoutBed\":\"5409.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32679.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25031\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34862.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30316,\"priceDoubleOcc\":\"34862.25\",\"priceSingleOcc\":69724.5,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34862.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30316,\"priceDoubleOcc\":\"34862.25\",\"priceSingleOcc\":69724.5,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34862.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30316,\"priceDoubleOcc\":\"34862.25\",\"priceSingleOcc\":69724.5,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34862.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30316,\"priceDoubleOcc\":\"34862.25\",\"priceSingleOcc\":69724.5,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34862.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30316,\"priceDoubleOcc\":\"34862.25\",\"priceSingleOcc\":69724.5,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34862.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34120,\"priceDoubleOcc\":\"40567.40\",\"priceSingleOcc\":75429.65,\"priceExtraBed\":\"21224.40\",\"priceWithoutBed\":\"11969.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40567.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25029\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23108.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18176,\"priceDoubleOcc\":\"23108.80\",\"priceSingleOcc\":46217.6,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23108.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18176,\"priceDoubleOcc\":\"23108.80\",\"priceSingleOcc\":46217.6,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23108.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18176,\"priceDoubleOcc\":\"23108.80\",\"priceSingleOcc\":46217.6,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23108.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18176,\"priceDoubleOcc\":\"23108.80\",\"priceSingleOcc\":46217.6,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23108.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18176,\"priceDoubleOcc\":\"23108.80\",\"priceSingleOcc\":46217.6,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23108.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21814,\"priceDoubleOcc\":\"28565.90\",\"priceSingleOcc\":51674.7,\"priceExtraBed\":\"8310.50\",\"priceWithoutBed\":\"8014.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28565.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25030\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25801.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19665,\"priceDoubleOcc\":\"25801.60\",\"priceSingleOcc\":51603.2,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25801.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19665,\"priceDoubleOcc\":\"25801.60\",\"priceSingleOcc\":51603.2,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25801.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19665,\"priceDoubleOcc\":\"25801.60\",\"priceSingleOcc\":51603.2,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25801.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19665,\"priceDoubleOcc\":\"25801.60\",\"priceSingleOcc\":51603.2,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25801.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19665,\"priceDoubleOcc\":\"25801.60\",\"priceSingleOcc\":51603.2,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25801.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23303,\"priceDoubleOcc\":\"31258.70\",\"priceSingleOcc\":57060.3,\"priceExtraBed\":\"7392.00\",\"priceWithoutBed\":\"5174.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31258.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25031\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33346.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28998,\"priceDoubleOcc\":\"33346.50\",\"priceSingleOcc\":66693,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33346.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28998,\"priceDoubleOcc\":\"33346.50\",\"priceSingleOcc\":66693,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33346.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28998,\"priceDoubleOcc\":\"33346.50\",\"priceSingleOcc\":66693,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33346.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28998,\"priceDoubleOcc\":\"33346.50\",\"priceSingleOcc\":66693,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33346.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28998,\"priceDoubleOcc\":\"33346.50\",\"priceSingleOcc\":66693,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33346.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32636,\"priceDoubleOcc\":\"38803.60\",\"priceSingleOcc\":72150.1,\"priceExtraBed\":\"20301.60\",\"priceWithoutBed\":\"11448.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38803.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179324\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179324],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179327\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179327],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179330\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179333\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179333],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179336\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179336],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179339\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179339],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179342\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179342],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179345\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179345],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Mysore,Ooty,Kodaikanal','Mysore,Karnataka,Indian Subcontinent,South India,India,Ooty,Tamil Nadu,Kodaikanal,Bangalore',NULL,'18821,20161,14277',23109,40567,5,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-06-30 00:00:00','2021-06-30 00:00:00',3,'India','101','2023-08-25 15:27:51','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'quickly-south',NULL,NULL,NULL,0),(98,25015,1,5293,0,0,0,'Honeymoon,Adventure,Family,Religious,Hill Station,Heritage,Culture,Weekend,Festivals and Events,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25015,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Highs_of_Himachal_6.png\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A holiday to beautiful Himachal does not get any better than this! Spend your fun-filled holidays amidst the snow-capped Himalayas and admire the beauty of enchanting nature at its best. You can take a trip to some magnificent places like Manali, Shimla, Dalhousie, Kullu, and Dharamshala. The natural richness of all these places will create a wonderful effect on your trip to Himachal. Our Himachal holiday package will make the vacations a special one. Take a tour of the incredible Himachal with the vivid landscapes, majestic apple orchards, lush-green forests, verdant valleys, and the snow-capped Himalayas. Our 9&amp;nbsp;nights and 10&amp;nbsp;days package have been specially designed to explore the incredible and pristine beauty of the Himachal and have unforgettable vacations.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Chandigarh\",\"DestinationPlacesSysId\":5765,\"SourcePlaces\":\"Chandigarh\",\"SourcePlaceSysId\":5765,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Highs of Himachal\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Hill Station,Heritage,Culture,Weekend,Festivals and Events,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":212116,\"Name\":\"Fairmount\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.083444520658\",\"Long\":\"77.16226238525\",\"Address\":\"Earls Field Estate Near St Bedes College\"},\"Images\":{\"Image\":[{\"ImagId\":4743485,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_8_t.jpg\"},{\"ImagId\":4743486,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_9_t.jpg\"},{\"ImagId\":4743487,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_10_t.jpg\"},{\"ImagId\":4743488,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_11_t.jpg\"},{\"ImagId\":4743489,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_12_t.jpg\"},{\"ImagId\":4743490,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_13_t.jpg\"}]},\"CityId\":1,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Shimla, Fairmount Hotel Shimla is minutes from Jakhu Temple and close to Christ Church.  This hotel is within close proximity of Shimla Mall and Lakkar Bazar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Stay in one of 16 guestrooms featuring LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms with showers are provided. Conveniences include phones, as well as desks and complimentary newspapers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and an arcade\\/game room. Additional amenities at this hotel include a television in a common area and tour\\/ticket assistance. Guests can get around on the complimentary shuttle, which operates within 4 km.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a train station pick-up service.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2980000\\/2976600\\/2976528\\/2976528_8_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":359135,\"Name\":\"Snow Valley Resort Shimla\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.09372\",\"Long\":\"77.13885\",\"Address\":\"Ghora chowki ( after kachighatti) NATIONAL HIGHWAY 22, Near Dargah\"},\"Images\":[],\"CityId\":1,\"Brief\":\"Snow Valley Resort Shimla is a popular choice amongst travelers in Shimla, whether exploring or just passing through. Featuring a complete list of amenities, guests will find their stay at the property a comfortable one. 24-hour room service, 24-hour security, convenience store, daily housekeeping, wheelchair accessible are there for guest&#039;s enjoyment. Comfortable guestrooms ensure a good night&#039;s sleep with some rooms featuring facilities such as television LCD\\/plasma screen, cleaning products, free welcome drink, locker, slippers. The hotel offers various recreational opportunities. Discover all Shimla has to offer by making Snow Valley Resort Shimla your base.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001100100\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":219799,\"Name\":\"East Bourne Resort & Spa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.088438\",\"Long\":\"77.16794\",\"Address\":\"Near Bishop Cotton School, , Khalini, SHIMLA, HIMACHAL PRADESH, India, Pin-171002, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4789935,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=a12Wzatglc1nsUWIgtWXhATD\\/DSE6+F3VeSPbME9pCW4oSWIlL1Tr0fW2keYZxRVU6Vy39rUVlgghxigwaDUWGmOmGDidJ3LX6Cb\\/YhIha4=\"}]},\"CityId\":1,\"Brief\":\"Featuring an indoor heated pool, East Bourne Resort &amp; Spa is a popular property in Shimla. This hotel is located at Near Bishop Cotton School and is 4km from Shimla Railway Station.   This resort with 72 rooms offers spacious accommodation on in Shimla. In-room amenities include hair dryer, tea\\/coffee maker, mini bar, LCD television, direct dial telephone and bathroom amenities. null\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=a12Wzatglc1nsUWIgtWXhATD\\/DSE6+F3VeSPbME9pCW4oSWIlL1Tr0fW2keYZxRVU6Vy39rUVlgghxigwaDUWGmOmGDidJ3LX6Cb\\/YhIha4=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":428,\"Title\":\"Dhauladhar Mountains\",\"Description\":\"Dhauladar is derived from &amp;ldquo;Dhaula&amp;rdquo; meaning white and &amp;ldquo;Dhar&amp;rdquo; meaning mountain range, hence the white mountains. This granite wall is crowned with snow throughout the year hence the name also called as the Outer Himalayas because it is the outermost range of the Himalayan Chain. The highest peak in Dhauladhar Mountain Range is the Hanuman ji Ka Tiba, about 5,639 meters high. \\r\\nThis is one of the major tourist attractions in Himachal Pradesh Himalayan Mountain Belt.\\r\\nDhauladhar Mountain Range rises from the Indian plains to the north of Kangra district of Himachal Pradesh. One can view the flora and fauna and observe various village life and beautiful remote location during the trek to the Dhauladhar ranges.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.219042,\"Long\":76.3234037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dhauladhar_Mountains_7824_1518277005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3482,\"Title\":\"Tibet Museum\",\"Description\":\"The Tibetan Museum or Tibet Museum is a fine specimen of Tibetan architecture in Mcleodganj and was primarily built to preserve the history and culture of Tibet. It also tells the story of the Chinese occupation and the continuing Tibetan resistance and exodus, through photographs, video and clear English-language display panels. The Museum is located in the complex of Dalai Lamba&amp;#039;s Temple, and it also covers the work life of Dalai Lama.\\r\\n \\r\\nThe stories of the lives of people have been showcased beautifully in the form of paintings and snaps, and lectures and exhibitions also conducted in the premises. The museum has also been a major tourist attraction from visitors all across the world.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2325474,\"Long\":76.3248874,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Tibet_Museum_7824_1518250115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1669,\"Title\":\"St. John Church\",\"Description\":\"St. John&amp;#039;s Chruch is one of the most important churches in Himachal Pradesh. Located on the way to Mcleodganj, this neo-gothic church is the oldest structure of Dharamsala. This church  was built in dedication to John the Baptist. T  in 1852. Also to Lord Elgin who was one of the viceroys of India, and was buried here in 1863 A.D.\\r\\nFamous as &amp;#039;St. John in the Wilderness&amp;#039; because it is situated in the majestic &amp;#039;Deodar&amp;#039; forest. \\r\\nIts main attraction, the Belgian stained-glass windows were donated by the wife of Lord Elgin.\\r\\nThe structure is so powerful that it survived the 1905 earthquake, which destroyed most buildings in Dharamshala.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426426,\"Long\":76.3181806,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/St._John_Church_7824_1518251083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":152,\"Title\":\"Bara Pathar Temple\",\"Description\":\"Bara Pathar Dalhousie Bara Pathar is one of the most popular tourist attractions in Dalhousie.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/549\\/thumb\\/Bara Pathar_334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":111,\"Title\":\"Bakrota Hill\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5387385,\"Long\":75.9709978,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6113\\/thumb\\/Bakrota Hill_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1670,\"Title\":\"St. John&#039;s Church\",\"Description\":\"St.John&amp;rsquo;s Church is the oldest church of the town that carries enormous historical significance.It was constructed during the British rules in India,this church established by the Protestant missionaries.Located between beautiful natural backdrop,this church is one of the most visited churches of the town.In addition,this church has the British style building made of wood and bricks.This church provides services every Sunday.It is an open for visitors five days in a week.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5356379,\"Long\":75.9680952,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7478\\/sightseeing\\/St._John&#039;s_Church_7478_1550663830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1027,\"Title\":\"Maharaja Ranjit Singh Museum\",\"Description\":\"Maharaja Ranjit Singh Museum situated in the middle of a beautiful garden Ram Bagh is a treasure house of the history, art and architecture of the Sikhs of the 18th and the 19th century.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6379495,\"Long\":74.8786727,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/174\\/thumb\\/Maharaja Ranjit Singh Museum_372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1897,\"Title\":\"Wagah Border\",\"Description\":\"Wagah is a village situated in Lahore District, Punjab, Pakistan and serves as a goods transit terminal and a railway station between Pakistan and India, and lies on the old Grand Trunk Road between Lahore, Punjab, Pakistan and Amritsar, India\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Wagah_Border_974_1504779463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":413921,\"Name\":\"Honeymoon Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.245608070862\",\"Long\":\"77.189798361938\",\"Address\":\"Left Bank, Aleo\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Honeymoon Inn in Manali, you&#039;ll be minutes from Rahala Falls and Tibetan Monastary.  This hotel is within close proximity of Hadimba Temple and Vashist Springs.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Stay in one of 59 guestrooms featuring LCD televisions. Your room comes with a memory foam bed. Complimentary wireless Internet access keeps you connected, and digital programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and rainfall showerheads.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and concierge services. Additional features at this hotel include an arcade\\/game room, a fireplace in the lobby, and a picnic area.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Grab a bite to eat at the hotel&#039;s restaurant, where you can take in a garden view, or stay in and take advantage of 24-hour room service. Breakfast is available for a fee.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/1d\\/5f\\/1d5fb7f7dd6d4e56643ad665de553960e9948c33.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":474327,\"Name\":\"3* Manali Heights\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":474651,\"Name\":\"4*Mastiff Grand (Earlier Citrus Resort)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":428,\"Title\":\"Dhauladhar Mountains\",\"Description\":\"Dhauladar is derived from &amp;ldquo;Dhaula&amp;rdquo; meaning white and &amp;ldquo;Dhar&amp;rdquo; meaning mountain range, hence the white mountains. This granite wall is crowned with snow throughout the year hence the name also called as the Outer Himalayas because it is the outermost range of the Himalayan Chain. The highest peak in Dhauladhar Mountain Range is the Hanuman ji Ka Tiba, about 5,639 meters high. \\r\\nThis is one of the major tourist attractions in Himachal Pradesh Himalayan Mountain Belt.\\r\\nDhauladhar Mountain Range rises from the Indian plains to the north of Kangra district of Himachal Pradesh. One can view the flora and fauna and observe various village life and beautiful remote location during the trek to the Dhauladhar ranges.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.219042,\"Long\":76.3234037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dhauladhar_Mountains_7824_1518277005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3482,\"Title\":\"Tibet Museum\",\"Description\":\"The Tibetan Museum or Tibet Museum is a fine specimen of Tibetan architecture in Mcleodganj and was primarily built to preserve the history and culture of Tibet. It also tells the story of the Chinese occupation and the continuing Tibetan resistance and exodus, through photographs, video and clear English-language display panels. The Museum is located in the complex of Dalai Lamba&amp;#039;s Temple, and it also covers the work life of Dalai Lama.\\r\\n \\r\\nThe stories of the lives of people have been showcased beautifully in the form of paintings and snaps, and lectures and exhibitions also conducted in the premises. The museum has also been a major tourist attraction from visitors all across the world.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2325474,\"Long\":76.3248874,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Tibet_Museum_7824_1518250115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1669,\"Title\":\"St. John Church\",\"Description\":\"St. John&amp;#039;s Chruch is one of the most important churches in Himachal Pradesh. Located on the way to Mcleodganj, this neo-gothic church is the oldest structure of Dharamsala. This church  was built in dedication to John the Baptist. T  in 1852. Also to Lord Elgin who was one of the viceroys of India, and was buried here in 1863 A.D.\\r\\nFamous as &amp;#039;St. John in the Wilderness&amp;#039; because it is situated in the majestic &amp;#039;Deodar&amp;#039; forest. \\r\\nIts main attraction, the Belgian stained-glass windows were donated by the wife of Lord Elgin.\\r\\nThe structure is so powerful that it survived the 1905 earthquake, which destroyed most buildings in Dharamshala.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426426,\"Long\":76.3181806,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/St._John_Church_7824_1518251083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":152,\"Title\":\"Bara Pathar Temple\",\"Description\":\"Bara Pathar Dalhousie Bara Pathar is one of the most popular tourist attractions in Dalhousie.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/549\\/thumb\\/Bara Pathar_334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":111,\"Title\":\"Bakrota Hill\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5387385,\"Long\":75.9709978,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6113\\/thumb\\/Bakrota Hill_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1670,\"Title\":\"St. John&#039;s Church\",\"Description\":\"St.John&amp;rsquo;s Church is the oldest church of the town that carries enormous historical significance.It was constructed during the British rules in India,this church established by the Protestant missionaries.Located between beautiful natural backdrop,this church is one of the most visited churches of the town.In addition,this church has the British style building made of wood and bricks.This church provides services every Sunday.It is an open for visitors five days in a week.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5356379,\"Long\":75.9680952,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7478\\/sightseeing\\/St._John&#039;s_Church_7478_1550663830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1027,\"Title\":\"Maharaja Ranjit Singh Museum\",\"Description\":\"Maharaja Ranjit Singh Museum situated in the middle of a beautiful garden Ram Bagh is a treasure house of the history, art and architecture of the Sikhs of the 18th and the 19th century.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6379495,\"Long\":74.8786727,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/174\\/thumb\\/Maharaja Ranjit Singh Museum_372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1897,\"Title\":\"Wagah Border\",\"Description\":\"Wagah is a village situated in Lahore District, Punjab, Pakistan and serves as a goods transit terminal and a railway station between Pakistan and India, and lies on the old Grand Trunk Road between Lahore, Punjab, Pakistan and Amritsar, India\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Wagah_Border_974_1504779463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":7824,\"Title\":\"Dharamshala\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":414303,\"Name\":\"Asia Health Resorts & Spa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.246708\",\"Long\":\"76.30105\",\"Address\":\"Strawberry hill, Near Dal Lake, Dharamshala Cantt, Dal Lake, DHARAMSHALA, HIMACHAL PRADESH, India, Pin-176216, 176216\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"Asia Health Resorts &amp; Spa near Dal Lake is set in the lap-of-Nature. The temperature controlled swimming pool is the highlight of this 4-star property. It houses a bar and coffee lounge with fire place.  It is maintained with 25 luxury rooms to choose from. The rooms come with  air conditioning, LCD television, mini-bar, wardrobe, and attached bathrooms with complimentary toiletries.   Guests can enjoy a gastronomical trip at Reflections the restaurant, which serves Indian, Chinese and Continental cuisine. A roof-top ambiance complemented with soft music and a variety of drinks entices all the senses of the guests to have a rollicking time at Tavern Bar. Overall wellness can be gained by either swimming in the pool or by visiting the Eva Spa.   null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/maw\\/wyg\\/lbp\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414308,\"Name\":\"WelcomHeritage Grace Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"32.221783\",\"Long\":\"76.31715\",\"Address\":\"558, Old Chari Road, , Kotwali Bazaar, DHARAMSHALA, HIMACHAL PRADESH, India, Pin-176215, 176215\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"Featuring free Wi-Fi access and 24-hour front desk facility, WelcomHeritage Grace Hotel is located 15 km away from the Gaggal Airport and 16 km away from the Chamunda Bus Stand.  This hotel in Dharamshala has well-furnished rooms. Some of the in-room amenities include attached Bhagsunag Waterfalls bathrooms, LCD TV with Satellite Channel and hot and cold running water supply.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/maw\\/wym\\/kbv\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480404,\"Name\":\"Citrus Classic Hotel Mcleodganj\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.2342431\",\"Long\":\"76.3248333\",\"Address\":\"Temple Rd, near Dalai Lama Temple, McLeod Ganj, Dharamshala, Himachal Pradesh 176219, India\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480405,\"Name\":\"WelcomHeritage Grace Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.2220086\",\"Long\":\"76.3169202\",\"Address\":\"558 Old Chari Road kotwali bazaar, Loharkadi Upper Sudher, Dharamshala, Himachal Pradesh 176215, India\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":428,\"Title\":\"Dhauladhar Mountains\",\"Description\":\"Dhauladar is derived from &amp;ldquo;Dhaula&amp;rdquo; meaning white and &amp;ldquo;Dhar&amp;rdquo; meaning mountain range, hence the white mountains. This granite wall is crowned with snow throughout the year hence the name also called as the Outer Himalayas because it is the outermost range of the Himalayan Chain. The highest peak in Dhauladhar Mountain Range is the Hanuman ji Ka Tiba, about 5,639 meters high. \\r\\nThis is one of the major tourist attractions in Himachal Pradesh Himalayan Mountain Belt.\\r\\nDhauladhar Mountain Range rises from the Indian plains to the north of Kangra district of Himachal Pradesh. One can view the flora and fauna and observe various village life and beautiful remote location during the trek to the Dhauladhar ranges.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.219042,\"Long\":76.3234037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dhauladhar_Mountains_7824_1518277005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3482,\"Title\":\"Tibet Museum\",\"Description\":\"The Tibetan Museum or Tibet Museum is a fine specimen of Tibetan architecture in Mcleodganj and was primarily built to preserve the history and culture of Tibet. It also tells the story of the Chinese occupation and the continuing Tibetan resistance and exodus, through photographs, video and clear English-language display panels. The Museum is located in the complex of Dalai Lamba&amp;#039;s Temple, and it also covers the work life of Dalai Lama.\\r\\n \\r\\nThe stories of the lives of people have been showcased beautifully in the form of paintings and snaps, and lectures and exhibitions also conducted in the premises. The museum has also been a major tourist attraction from visitors all across the world.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2325474,\"Long\":76.3248874,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Tibet_Museum_7824_1518250115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1669,\"Title\":\"St. John Church\",\"Description\":\"St. John&amp;#039;s Chruch is one of the most important churches in Himachal Pradesh. Located on the way to Mcleodganj, this neo-gothic church is the oldest structure of Dharamsala. This church  was built in dedication to John the Baptist. T  in 1852. Also to Lord Elgin who was one of the viceroys of India, and was buried here in 1863 A.D.\\r\\nFamous as &amp;#039;St. John in the Wilderness&amp;#039; because it is situated in the majestic &amp;#039;Deodar&amp;#039; forest. \\r\\nIts main attraction, the Belgian stained-glass windows were donated by the wife of Lord Elgin.\\r\\nThe structure is so powerful that it survived the 1905 earthquake, which destroyed most buildings in Dharamshala.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426426,\"Long\":76.3181806,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/St._John_Church_7824_1518251083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":152,\"Title\":\"Bara Pathar Temple\",\"Description\":\"Bara Pathar Dalhousie Bara Pathar is one of the most popular tourist attractions in Dalhousie.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/549\\/thumb\\/Bara Pathar_334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":111,\"Title\":\"Bakrota Hill\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5387385,\"Long\":75.9709978,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6113\\/thumb\\/Bakrota Hill_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1670,\"Title\":\"St. John&#039;s Church\",\"Description\":\"St.John&amp;rsquo;s Church is the oldest church of the town that carries enormous historical significance.It was constructed during the British rules in India,this church established by the Protestant missionaries.Located between beautiful natural backdrop,this church is one of the most visited churches of the town.In addition,this church has the British style building made of wood and bricks.This church provides services every Sunday.It is an open for visitors five days in a week.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5356379,\"Long\":75.9680952,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7478\\/sightseeing\\/St._John&#039;s_Church_7478_1550663830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1027,\"Title\":\"Maharaja Ranjit Singh Museum\",\"Description\":\"Maharaja Ranjit Singh Museum situated in the middle of a beautiful garden Ram Bagh is a treasure house of the history, art and architecture of the Sikhs of the 18th and the 19th century.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6379495,\"Long\":74.8786727,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/174\\/thumb\\/Maharaja Ranjit Singh Museum_372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1897,\"Title\":\"Wagah Border\",\"Description\":\"Wagah is a village situated in Lahore District, Punjab, Pakistan and serves as a goods transit terminal and a railway station between Pakistan and India, and lies on the old Grand Trunk Road between Lahore, Punjab, Pakistan and Amritsar, India\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Wagah_Border_974_1504779463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":7478,\"Title\":\"Dalhousie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":414333,\"Name\":\"Indraprastha Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.537546048421\",\"Long\":\"75.966340473145\",\"Address\":\"Near Bus Stand, 176304 Dalhousie\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"Indraprastha Resort is conveniently located in the popular Dalhousie area. Featuring a complete list of amenities, guests will find their stay at the property a comfortable one. Free Wi-Fi in all rooms, 24-hour security, photocopying, printer, taxi service are just some of the facilities on offer. Designed for comfort, selected guestrooms offer internet access - wireless, internet access - wireless (complimentary), air conditioning, heating, wake-up service to ensure a restful night. Entertain the hotel&#039;s recreational facilities, including fitness center, sauna, spa, massage, table tennis. Convenience and comfort makes Indraprastha Resort the perfect choice for your stay in Dalhousie.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/04\\/8b\\/048b6622de28312e9785bcb4b3a2fc383593379f.jpg\",\"AccoAminitiesMask\":\"1010000000001001000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414353,\"Name\":\"Hotel Dalhousie Heights\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.53773\",\"Long\":\"75.965996\",\"Address\":\"Lovers Lane, , Lovers Lane, DALHOUSIE, HIMACHAL PRADESH, India, Pin-176304, 176304\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"Offering complimentary internet access, Hotel Dalhousie Heights is accessible from the Dalhousie Bus Stand, which is 0.5 km away. The accommodation in Dalhousie is at a distance of 8 km from Shri Naag Devta Mandir. There is a restaurant available on the premises where guests can enjoy a host of dishes.  With its 45 well-appointed rooms to choose from that are spread over four floors, the property in Dalhousie offers a comfortable stay. A host of convenience available in the rooms include drinking water, comfortable bed, ceiling fan, wooden flooring, balcony, side table, television, makeup mirror, toiletries, wardrobe, Jacuzzi, and attached bathroom with the facility of hot\\/cold running water.  Apart from good accommodation in Dalhousie, the property provides housekeeping, laundry, and room service to its patrons. Few of the facilities include car parking, swimming pool, health club, conference room, steam\\/sauna room, and banquet hall available on the premises.    Nearby points of interest to drop by are Mata Jawala Temple (7 km) and Rock Garden (16 km). Hotel Dalhousie Heights is accessible from Pathankot Railway Station (80 km) and Pathankot Airport (89 km).null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/maw\\/vyg\\/jbt\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414377,\"Name\":\"JK Clarks Exotica\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.542181\",\"Long\":\"75.965484\",\"Address\":\"Church Baloon Road Dalhousie Distt.Chamba,Himachal Pradesh,India, 176304\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/8418\\/841880\\/images\\/ddddddddddddddddddddddddddddd_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":428,\"Title\":\"Dhauladhar Mountains\",\"Description\":\"Dhauladar is derived from &amp;ldquo;Dhaula&amp;rdquo; meaning white and &amp;ldquo;Dhar&amp;rdquo; meaning mountain range, hence the white mountains. This granite wall is crowned with snow throughout the year hence the name also called as the Outer Himalayas because it is the outermost range of the Himalayan Chain. The highest peak in Dhauladhar Mountain Range is the Hanuman ji Ka Tiba, about 5,639 meters high. \\r\\nThis is one of the major tourist attractions in Himachal Pradesh Himalayan Mountain Belt.\\r\\nDhauladhar Mountain Range rises from the Indian plains to the north of Kangra district of Himachal Pradesh. One can view the flora and fauna and observe various village life and beautiful remote location during the trek to the Dhauladhar ranges.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.219042,\"Long\":76.3234037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dhauladhar_Mountains_7824_1518277005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3482,\"Title\":\"Tibet Museum\",\"Description\":\"The Tibetan Museum or Tibet Museum is a fine specimen of Tibetan architecture in Mcleodganj and was primarily built to preserve the history and culture of Tibet. It also tells the story of the Chinese occupation and the continuing Tibetan resistance and exodus, through photographs, video and clear English-language display panels. The Museum is located in the complex of Dalai Lamba&amp;#039;s Temple, and it also covers the work life of Dalai Lama.\\r\\n \\r\\nThe stories of the lives of people have been showcased beautifully in the form of paintings and snaps, and lectures and exhibitions also conducted in the premises. The museum has also been a major tourist attraction from visitors all across the world.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2325474,\"Long\":76.3248874,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Tibet_Museum_7824_1518250115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1669,\"Title\":\"St. John Church\",\"Description\":\"St. John&amp;#039;s Chruch is one of the most important churches in Himachal Pradesh. Located on the way to Mcleodganj, this neo-gothic church is the oldest structure of Dharamsala. This church  was built in dedication to John the Baptist. T  in 1852. Also to Lord Elgin who was one of the viceroys of India, and was buried here in 1863 A.D.\\r\\nFamous as &amp;#039;St. John in the Wilderness&amp;#039; because it is situated in the majestic &amp;#039;Deodar&amp;#039; forest. \\r\\nIts main attraction, the Belgian stained-glass windows were donated by the wife of Lord Elgin.\\r\\nThe structure is so powerful that it survived the 1905 earthquake, which destroyed most buildings in Dharamshala.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426426,\"Long\":76.3181806,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/St._John_Church_7824_1518251083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":152,\"Title\":\"Bara Pathar Temple\",\"Description\":\"Bara Pathar Dalhousie Bara Pathar is one of the most popular tourist attractions in Dalhousie.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/549\\/thumb\\/Bara Pathar_334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":111,\"Title\":\"Bakrota Hill\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5387385,\"Long\":75.9709978,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6113\\/thumb\\/Bakrota Hill_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1670,\"Title\":\"St. John&#039;s Church\",\"Description\":\"St.John&amp;rsquo;s Church is the oldest church of the town that carries enormous historical significance.It was constructed during the British rules in India,this church established by the Protestant missionaries.Located between beautiful natural backdrop,this church is one of the most visited churches of the town.In addition,this church has the British style building made of wood and bricks.This church provides services every Sunday.It is an open for visitors five days in a week.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5356379,\"Long\":75.9680952,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7478\\/sightseeing\\/St._John&#039;s_Church_7478_1550663830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1027,\"Title\":\"Maharaja Ranjit Singh Museum\",\"Description\":\"Maharaja Ranjit Singh Museum situated in the middle of a beautiful garden Ram Bagh is a treasure house of the history, art and architecture of the Sikhs of the 18th and the 19th century.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6379495,\"Long\":74.8786727,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/174\\/thumb\\/Maharaja Ranjit Singh Museum_372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1897,\"Title\":\"Wagah Border\",\"Description\":\"Wagah is a village situated in Lahore District, Punjab, Pakistan and serves as a goods transit terminal and a railway station between Pakistan and India, and lies on the old Grand Trunk Road between Lahore, Punjab, Pakistan and Amritsar, India\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Wagah_Border_974_1504779463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":25773,\"Name\":\"Ramada Amritsar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.6357\",\"Long\":\"74.8727\",\"Address\":\"117 Hall Bazaar AMRITSAR 143006\"},\"Images\":{\"Image\":[{\"ImagId\":604585,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/55\\/692\\/29\\/31294_e1_A.jpg\"},{\"ImagId\":604586,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/55\\/692\\/33\\/31294_e3_A.jpg\"},{\"ImagId\":604587,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/55\\/692\\/37\\/31294_e4_A.jpg\"},{\"ImagId\":604588,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/648\\/562\\/31294_b1_C.jpg\"},{\"ImagId\":604589,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/55\\/692\\/25\\/31294_c1_A.jpg\"},{\"ImagId\":604590,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/300\\/358\\/31294_c2_A.jpg\"},{\"ImagId\":604591,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/300\\/362\\/31294_c3_A.jpg\"},{\"ImagId\":604592,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/300\\/366\\/31294_c4_A.jpg\"}]},\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/55\\/692\\/29\\/31294_e1_A.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480406,\"Name\":\"Hotel grand galaxy\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.63668109999999\",\"Long\":\"74.874616\",\"Address\":\"Plot No 5, Hotels Lane 2,Amritsar, Queens Road, INA Colony, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":428,\"Title\":\"Dhauladhar Mountains\",\"Description\":\"Dhauladar is derived from &amp;ldquo;Dhaula&amp;rdquo; meaning white and &amp;ldquo;Dhar&amp;rdquo; meaning mountain range, hence the white mountains. This granite wall is crowned with snow throughout the year hence the name also called as the Outer Himalayas because it is the outermost range of the Himalayan Chain. The highest peak in Dhauladhar Mountain Range is the Hanuman ji Ka Tiba, about 5,639 meters high. \\r\\nThis is one of the major tourist attractions in Himachal Pradesh Himalayan Mountain Belt.\\r\\nDhauladhar Mountain Range rises from the Indian plains to the north of Kangra district of Himachal Pradesh. One can view the flora and fauna and observe various village life and beautiful remote location during the trek to the Dhauladhar ranges.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.219042,\"Long\":76.3234037,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dhauladhar_Mountains_7824_1518277005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3482,\"Title\":\"Tibet Museum\",\"Description\":\"The Tibetan Museum or Tibet Museum is a fine specimen of Tibetan architecture in Mcleodganj and was primarily built to preserve the history and culture of Tibet. It also tells the story of the Chinese occupation and the continuing Tibetan resistance and exodus, through photographs, video and clear English-language display panels. The Museum is located in the complex of Dalai Lamba&amp;#039;s Temple, and it also covers the work life of Dalai Lama.\\r\\n \\r\\nThe stories of the lives of people have been showcased beautifully in the form of paintings and snaps, and lectures and exhibitions also conducted in the premises. The museum has also been a major tourist attraction from visitors all across the world.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2325474,\"Long\":76.3248874,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Tibet_Museum_7824_1518250115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1669,\"Title\":\"St. John Church\",\"Description\":\"St. John&amp;#039;s Chruch is one of the most important churches in Himachal Pradesh. Located on the way to Mcleodganj, this neo-gothic church is the oldest structure of Dharamsala. This church  was built in dedication to John the Baptist. T  in 1852. Also to Lord Elgin who was one of the viceroys of India, and was buried here in 1863 A.D.\\r\\nFamous as &amp;#039;St. John in the Wilderness&amp;#039; because it is situated in the majestic &amp;#039;Deodar&amp;#039; forest. \\r\\nIts main attraction, the Belgian stained-glass windows were donated by the wife of Lord Elgin.\\r\\nThe structure is so powerful that it survived the 1905 earthquake, which destroyed most buildings in Dharamshala.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426426,\"Long\":76.3181806,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/St._John_Church_7824_1518251083.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":152,\"Title\":\"Bara Pathar Temple\",\"Description\":\"Bara Pathar Dalhousie Bara Pathar is one of the most popular tourist attractions in Dalhousie.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/549\\/thumb\\/Bara Pathar_334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":111,\"Title\":\"Bakrota Hill\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5387385,\"Long\":75.9709978,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6113\\/thumb\\/Bakrota Hill_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1670,\"Title\":\"St. John&#039;s Church\",\"Description\":\"St.John&amp;rsquo;s Church is the oldest church of the town that carries enormous historical significance.It was constructed during the British rules in India,this church established by the Protestant missionaries.Located between beautiful natural backdrop,this church is one of the most visited churches of the town.In addition,this church has the British style building made of wood and bricks.This church provides services every Sunday.It is an open for visitors five days in a week.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5356379,\"Long\":75.9680952,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7478\\/sightseeing\\/St._John&#039;s_Church_7478_1550663830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1027,\"Title\":\"Maharaja Ranjit Singh Museum\",\"Description\":\"Maharaja Ranjit Singh Museum situated in the middle of a beautiful garden Ram Bagh is a treasure house of the history, art and architecture of the Sikhs of the 18th and the 19th century.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6379495,\"Long\":74.8786727,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/174\\/thumb\\/Maharaja Ranjit Singh Museum_372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1897,\"Title\":\"Wagah Border\",\"Description\":\"Wagah is a village situated in Lahore District, Punjab, Pakistan and serves as a goods transit terminal and a railway station between Pakistan and India, and lies on the old Grand Trunk Road between Lahore, Punjab, Pakistan and Amritsar, India\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Wagah_Border_974_1504779463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179175\",\"Title\":\"Day 01 \\u2013 Arrival to Chandigarh \\u2013 Drive to Shimla (115 kms \\/ approx. 3.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Chandigarh and proceed to Shimla - abounds in natural bounty and looks picture perfect.<\\/p>\\r\\n\\r\\n<p>The small hill station amidst the lofty snow-clad Himalayan ranges, surrounded by lakes and lush green pastures looks as though an artist has painted them. The unique thing about Shimla is that it still retains its colonial charm. Check-in at the hotel and spend the evening at leisure.<\\/p>\\r\\n\\r\\n<p>Overnight stay in Shimla.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":212116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":359135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219799,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179178\",\"Title\":\"Day 02 \\u2013 Trip to Kufri\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Drive to Kufri after breakfast. This is a popular picnic spot located 16km from Shimla. You may hike on foot to the Mahasu Peak or pay for a mule ride up the hill.<\\/p>\\r\\n\\r\\n<p>Mahasu is the tallest peak in Kufri that gives tourists an amazing view of distant snow-capped peaks. In the afternoon return to Shimla and visit Viceregal Lodge, Christ Church, St. Michael&#39;s Cathedral (Subject to availability due to Current restriction - COVID 19), and Jakhu temple. In the evening, take a walk on Shimla&rsquo;s famous boulevard, Mall Road. See fine specimens of colonial architecture, snack at the various eateries in the market, or shop for souvenirs.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":212116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":359135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219799,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1874,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":353,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1672,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179181\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179184\",\"Title\":\"Day 03 \\u2013 Shimla \\u2013 Kullu \\u2013 Manali (280 kms \\/ 6.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, check-out from the hotel and drive to Manali. On the way enjoy Kullu sightseeing.<\\/p>\\r\\n\\r\\n<p>It is the valley of gods, or the &lsquo;habitable end of the world&rsquo;, as the Kullu valley has come to be known, spreads out its charm on either side of the upper reaches of the river Beas. This valley is famous for the beauty and its majestic hills covered with Pine and Deodar forest sand sprawling apple orchards. Kullu valley is sandwiched between the Pir Panjal, Lower Himalayan, and Great Himalayan ranges. The valley is only 80 km long and 2 km at its broadest, yet a fairly wide area is open to the visitors to enjoy the spectacle of variegated mountain scenery. Later proceed to Manali &amp; it offers super views of the Dhauladhar and Pir Panjal ranges, and with mountain adventures beckoning from all directions, Manali is a year-round magnet for tourists. Apart from temples, Manali is popular among adventure tourists coming for trekking, paragliding, rafting, and skiing. Upon arrival, check-in at the hotel and spend the evening at leisure.<\\/p>\\r\\n\\r\\n<p>Overnight stay in Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":474651,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":428,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179187\",\"Title\":\"Day 04 \\u2013 Sightseeing in Manali\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>In the morning after breakfast, go on an adventurous drive to Solang valley &ndash; a major attraction, without which the trip remains incomplete.<\\/p>\\r\\n\\r\\n<p>All the above-mentioned adventure activities can be availed here at Solang Valley. Apart from activities, there are splendid views to enjoy in and around the Solang Valley. Later, today visit the popular Hadimba Temple, Naggar Castle, and Art gallery. In the evening, go for a walk along Mall Road.<\\/p>\\r\\n\\r\\n<p>Overnight stay at the Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":474651,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":630,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1175,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1482,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179190\",\"Title\":\"Day 05 \\u2013 Rohtang Pass & Atal Tunnel\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, we shall move to Rohtang pass (13,050ft) via Kothi, Gulaba, Beas Nala and Marhi. Spend some time at Rohtang pass and then continue your journey to Koksar after descending down from the opposite side. En route lunch (at own), we shall move to the northern end (North Portal) of Atal tunnel after crossing the Chandra bridge. Enjoy traversing the world&rsquo;s longest highway tunnel above 10,000ft from sea level. The tunnel is equipped with ultra-modern safety and other technical instruments. You will not lose your mobile network and high-speed 4G internet (BSNL only) even inside the tunnel. Then you will exit the tunnel from its southern end (South portal) at Dhundi. You will observe that you had entered the tunnel from the barren but beautiful land of Lahaul and exited at the green place at Dhundi. Then continue your trip to Solang valley. After spending some time at Solang, return back to Manali. At Solang, you can enjoy Gondola ride (ropeway), horse riding, zorbing, paragliding, ATV ride, and many more adventure activities. Overnight stay in Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":474651,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1485,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179193\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179196\",\"Title\":\"Day 06 \\u2013 Drive from Manali \\u2013 Dharamshala (215 kms \\/ approx. 6 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>After breakfast, check-out from the hotel and drive to Dharamshala. Upon arrival, check-in to the hotel. Spend the evening at leisure you may rejuvenate yourself with yoga and meditation retreats available in Dharamshala (optional) (Subject to availability due to current restriction COVID 19). Overnight stay in Dharamshala.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480404,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":414303,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":false,\"Id\":414308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"},{\"IsIncluded\":true,\"Id\":480405,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179199\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179202\",\"Title\":\"Day 07 \\u2013 Sightseeing in Dharamshala \\u2013 Drive to Dalhousie (115 kms \\/ approx. 3.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>After breakfast, visit Tsuglagkhang Complex - Centre of Tibetan culture, which includes a museum and the residence of His Holiness Dalai Lama &ndash; the spiritual leader of Tibetan Buddhism. Later, visit popular monasteries, Tibetan medical center, and the Church of St. John. Also, you may rejuvenate yourself with yoga and meditation retreats available in Dharamshala (optional). Later drive to Dalhousie. Upon arrival, check-in to the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414333,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":414353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":414377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3482,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1669,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179205\",\"Title\":\"Day 08 \\u2013 Sightseeing in Dalhousie with Khajjiar Excursion \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"<p>After breakfast, enjoy an excursion to Khajjiar which is 23 km from Dalhousie by road and 13 km from Kalatop is the mini Switzerland of India - Khajjiar. The lush green meadows are surrounded by thick pine and cedar forests. There is a small lake in the center of the saucer-shaped meadow which has in it a floating island. A little away from the lake is the temple of Khajji Nag belonging to 12th C. AD. The sanctum of the temple has been beautifully carved from wood. Later return back to Dalhousie &amp; visit Bhulwani Mata Mandir at Bara Pathar and hike up the Bakrota Hills to see an impressive ITINERARY view of snow-clad peaks. Also, see St. John&rsquo;s Church. It was the first to be built after the town of Dalhousie was founded. Overnight stay at the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414333,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":414353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":414377,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":152,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":111,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1670,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179208\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179211\",\"Title\":\"Day 09 \\u2013 Drive from Dalhousie \\u2013 Amritsar (200 kms \\/ 4.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p>After early breakfast, drive to Amritsar - colloquially known as Ambassador, is a spiritually significant city for the followers of Sikhism. The city derives its name from the sacred pool, which was founded in 1574 by Guru Ram Das - the 4th Sikh guru. This holy pond circumscribes Harmandir Sahib, which is popularly known as the Golden Temple amongst devotees. After check-in at the hotel, proceed to the India-Pakistan border at Wagah. Watch the &lsquo;Beating the Retreat ceremony where soldiers of both countries bring down their respective national flags in their unique styles. After returning, visit the iconic Golden Temple. If time permits you may visit Jalianwala Bagh and Ranjit museum. Overnight stay in Amritsar.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480406,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":25773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":580,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":739,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1027,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1897,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179214\",\"Title\":\"Day 10 \\u2013 Amritsar \\u2013 Departure from Chandigarh (232 kms \\/ approx. 5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"<p>After breakfast, you will be transferred to Chandigarh airport for a return journey back home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25015\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39860.15\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32691,\"priceDoubleOcc\":\"39860.15\",\"priceSingleOcc\":79720.3,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39860.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32691,\"priceDoubleOcc\":\"39860.15\",\"priceSingleOcc\":79720.3,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39860.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32691,\"priceDoubleOcc\":\"39860.15\",\"priceSingleOcc\":79720.3,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39860.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32691,\"priceDoubleOcc\":\"39860.15\",\"priceSingleOcc\":79720.3,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39860.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32691,\"priceDoubleOcc\":\"39860.15\",\"priceSingleOcc\":79720.3,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39860.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37919,\"priceDoubleOcc\":\"47702.00\",\"priceSingleOcc\":87562.15,\"priceExtraBed\":\"18354.00\",\"priceWithoutBed\":\"12144.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47702.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25016\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46982.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":38957,\"priceDoubleOcc\":\"46982.10\",\"priceSingleOcc\":93964.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46982.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":38957,\"priceDoubleOcc\":\"46982.10\",\"priceSingleOcc\":93964.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46982.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":38957,\"priceDoubleOcc\":\"46982.10\",\"priceSingleOcc\":93964.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46982.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":38957,\"priceDoubleOcc\":\"46982.10\",\"priceSingleOcc\":93964.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46982.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":38957,\"priceDoubleOcc\":\"46982.10\",\"priceSingleOcc\":93964.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46982.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":44186,\"priceDoubleOcc\":\"54825.10\",\"priceSingleOcc\":101807.2,\"priceExtraBed\":\"22908.00\",\"priceWithoutBed\":\"17595.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54825.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25017\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"59750.55\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":49404,\"priceDoubleOcc\":\"59750.55\",\"priceSingleOcc\":119501.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59750.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":49404,\"priceDoubleOcc\":\"59750.55\",\"priceSingleOcc\":119501.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59750.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":49404,\"priceDoubleOcc\":\"59750.55\",\"priceSingleOcc\":119501.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59750.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":49404,\"priceDoubleOcc\":\"59750.55\",\"priceSingleOcc\":119501.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59750.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":49404,\"priceDoubleOcc\":\"59750.55\",\"priceSingleOcc\":119501.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59750.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":54633,\"priceDoubleOcc\":\"67593.55\",\"priceSingleOcc\":127344.1,\"priceExtraBed\":\"28712.05\",\"priceWithoutBed\":\"24434.05\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67593.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25015\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38127.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":31270,\"priceDoubleOcc\":\"38127.10\",\"priceSingleOcc\":76254.2,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38127.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":31270,\"priceDoubleOcc\":\"38127.10\",\"priceSingleOcc\":76254.2,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38127.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":31270,\"priceDoubleOcc\":\"38127.10\",\"priceSingleOcc\":76254.2,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38127.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":31270,\"priceDoubleOcc\":\"38127.10\",\"priceSingleOcc\":76254.2,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38127.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":31270,\"priceDoubleOcc\":\"38127.10\",\"priceSingleOcc\":76254.2,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38127.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":36271,\"priceDoubleOcc\":\"45628.00\",\"priceSingleOcc\":83755.1,\"priceExtraBed\":\"17556.00\",\"priceWithoutBed\":\"11616.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45628.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25016\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44939.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37264,\"priceDoubleOcc\":\"44939.40\",\"priceSingleOcc\":89878.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44939.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37264,\"priceDoubleOcc\":\"44939.40\",\"priceSingleOcc\":89878.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44939.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37264,\"priceDoubleOcc\":\"44939.40\",\"priceSingleOcc\":89878.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44939.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37264,\"priceDoubleOcc\":\"44939.40\",\"priceSingleOcc\":89878.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44939.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37264,\"priceDoubleOcc\":\"44939.40\",\"priceSingleOcc\":89878.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44939.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":42265,\"priceDoubleOcc\":\"52441.40\",\"priceSingleOcc\":97380.8,\"priceExtraBed\":\"21912.00\",\"priceWithoutBed\":\"16830.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"52441.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25017\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57152.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":47256,\"priceDoubleOcc\":\"57152.70\",\"priceSingleOcc\":114305.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57152.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":47256,\"priceDoubleOcc\":\"57152.70\",\"priceSingleOcc\":114305.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57152.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":47256,\"priceDoubleOcc\":\"57152.70\",\"priceSingleOcc\":114305.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57152.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":47256,\"priceDoubleOcc\":\"57152.70\",\"priceSingleOcc\":114305.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57152.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":47256,\"priceDoubleOcc\":\"57152.70\",\"priceSingleOcc\":114305.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57152.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":52258,\"priceDoubleOcc\":\"64654.70\",\"priceSingleOcc\":121807.4,\"priceExtraBed\":\"27463.70\",\"priceWithoutBed\":\"23371.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"64654.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;9 Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179175\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179175],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179178\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179178],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179181\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179181],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179184\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179184],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179187\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179187],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179190\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179190],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179193\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179193],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179196\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179196],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179199\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[179199],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179202\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[179202],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179205\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[179205],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179208\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[179208],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179211\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[179211],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179214\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[179214],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shimla,Manali,Dharamshala,Dalhousie,Amritsar','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali,Dharamshala,Dalhousie,Amritsar,Punjab,Kullu,Kufri','','1,16593,7824,7478,974',38127,67594,9,'98_1623326367_0.jpg,98_1623326367_1.jpg,98_1623326367_2.jpg',NULL,'[{\"day\":1,\"images\":\"Chandigarh.jpg\"},{\"day\":2,\"images\":\"kufri 1.jpg\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 15:27:53','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'highs-of-himachal',NULL,NULL,NULL,0),(99,25002,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Hill Station,Culture,Weekend,Festivals and Events,Romantic,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":25002,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Best_of_North_East_65.png\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Northeastern part of India is blessed with oodles of natural splendors, and some of the best spots to witness them are Kaziranga National Park and Meghalaya. On one hand, where the Kaziranga National Park provides you the rare sight of the exotic one-horned rhinos, on the other hand, Meghalaya greets you with picture-perfect vistas. If you wish to enjoy a tour to both of these destinations, then avail of our special North-East India Travel Package. In this package, we have well planned a visit to both of these destinations. Once you grab this package, then traveling to North India will turn memorable and hassle-free&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Best of North East\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Intercity Transfers,Sightseeing,Landcruisers\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Hill Station,Culture,Weekend,Festivals and Events,Romantic,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480378,\"Name\":\"Hotel Yalana\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5704753\",\"Long\":\"91.89532799999999\",\"Address\":\"Main Road, Laitumkhrah, Nongkynrih, Laitumkhrah, Shillong, Meghalaya 793003, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480379,\"Name\":\"The Eee Cee Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"25.576671\",\"Long\":\"91.8829853\",\"Address\":\"Khyndailad, Jail Road, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":212077,\"Name\":\"The Majestic Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.580878308211\",\"Long\":\"91.887435583992\",\"Address\":\"ME-BA- AI Plaza Polo Market\"},\"Images\":{\"Image\":[{\"ImagId\":4742846,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_5_b.jpg\"},{\"ImagId\":4742847,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_6_b.jpg\"},{\"ImagId\":4742848,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_7_b.jpg\"},{\"ImagId\":4742849,\"Type\":\"FullImage\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_8_b.jpg\"},{\"ImagId\":4742850,\"Type\":\"FullImage\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_9_b.jpg\"},{\"ImagId\":4742851,\"Type\":\"FullImage\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_10_b.jpg\"},{\"ImagId\":4742852,\"Type\":\"FullImage\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_11_b.jpg\"},{\"ImagId\":4742853,\"Type\":\"FullImage\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_13_b.jpg\"},{\"ImagId\":4742854,\"Type\":\"FullImage\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_14_b.jpg\"},{\"ImagId\":4742855,\"Type\":\"FullImage\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_15_b.jpg\"},{\"ImagId\":4742856,\"Type\":\"FullImage\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_16_b.jpg\"},{\"ImagId\":4742857,\"Type\":\"FullImage\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_17_b.jpg\"},{\"ImagId\":4742858,\"Type\":\"FullImage\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_18_b.jpg\"},{\"ImagId\":4742859,\"Type\":\"FullImage\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_19_b.jpg\"},{\"ImagId\":4742860,\"Type\":\"FullImage\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_20_b.jpg\"},{\"ImagId\":4742861,\"Type\":\"FullImage\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_21_b.jpg\"},{\"ImagId\":4742862,\"Type\":\"FullImage\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_1_b.jpg\"},{\"ImagId\":4742863,\"Type\":\"FullImage\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_2_b.jpg\"},{\"ImagId\":4742864,\"Type\":\"FullImage\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_3_b.jpg\"},{\"ImagId\":4742865,\"Type\":\"FullImage\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_4_b.jpg\"}]},\"CityId\":25073,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Shillong, The Majestic Hotel is minutes from Jawaharlal Nehru Stadium and close to Golf Links Shillong. This hotel is within close proximity of Wards Lake.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 14 guestrooms featuring minibars. Rooms have private balconies. Wireless Internet access (surcharge) keeps you connected, and cable programming is available for your entertainment. Private bathrooms have complimentary toiletries and slippers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rec, Spa, Premium Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make use of convenient amenities such as wireless Internet access (surcharge), babysitting\\/childcare (surcharge), and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of The Majestic Hotel.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include luggage storage, laundry facilities, and a safe deposit box at the front desk. A roundtrip airport shuttle is available for a surcharge.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/images.travelnow.com\\/hotels\\/4000000\\/3310000\\/3303400\\/3303332\\/3303332_5_b.jpg\",\"AccoAminitiesMask\":\"101000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":421490,\"Name\":\"Hotel Polo Towers\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.580827\",\"Long\":\"91.886859\",\"Address\":\"Polo Grounds,Meghalaya,India, 793001\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"Hotel Polo Towers is the only four star hotel in Shillong (Meghalaya - INDIA) at a distance of 35 kms from Umroi Airport and 128 kms away from Borjhar (Guwahati).\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/4142\\/41426\\/images\\/Hotel_Polo_Towers_1.jpg_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":13741,\"Title\":\"Kaziranga National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480380,\"Name\":\"Hotel Kaziranga Holidays\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480381,\"Name\":\"Hotel Kaziranga Holiday\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.6029735\",\"Long\":\"93.4117917\",\"Address\":\"Village =Kohora Kohora, p\\/o=Kaziranga National park, No.1 Sildubi, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480382,\"Name\":\"Summit Green Village Resort & Spa\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.5686828\",\"Long\":\"93.044761\",\"Address\":\"Natun Danga, Jakhalabandha, Rangaloo, Assam 782136, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480383,\"Name\":\"Summit Green Village Resort & Spa\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.5686828\",\"Long\":\"93.044761\",\"Address\":\"Natun Danga, Jakhalabandha, Rangaloo, Assam 782136, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480384,\"Name\":\"Resort Borgos\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.6012496\",\"Long\":\"93.39628950000001\",\"Address\":\"Kaziranga National Park, No.2 Sildubi, Kohora, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":465697,\"Name\":\"Overnight Cruise\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":92936,\"Name\":\"Cygnett Inn Repose\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.1741\",\"Long\":\"91.7582\",\"Address\":\"ABC G.S. Road Tarun Nagar 2nd By-Lane \"},\"Images\":{\"Image\":[{\"ImagId\":2042959,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_11_t.jpg\"},{\"ImagId\":2042960,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_12_t.jpg\"},{\"ImagId\":2042961,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_14_t.jpg\"},{\"ImagId\":2042962,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/0e3dd616_t.jpg\"},{\"ImagId\":2042963,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/976a3514_t.jpg\"},{\"ImagId\":2042964,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/0b424e47_t.jpg\"},{\"ImagId\":2042965,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/2d7a80a9_t.jpg\"},{\"ImagId\":2042966,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/34fff9ae_t.jpg\"},{\"ImagId\":2042967,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/a5b4e6ac_t.jpg\"},{\"ImagId\":2042968,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/4670e92e_t.jpg\"},{\"ImagId\":2042969,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/ceb1281c_t.jpg\"},{\"ImagId\":2042970,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_9_t.jpg\"},{\"ImagId\":2042971,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_13_t.jpg\"},{\"ImagId\":2042972,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_10_t.jpg\"},{\"ImagId\":2042973,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_6_t.jpg\"},{\"ImagId\":2042974,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_7_t.jpg\"},{\"ImagId\":2042975,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_8_t.jpg\"},{\"ImagId\":2042976,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_3_t.jpg\"},{\"ImagId\":2042977,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_5_t.jpg\"},{\"ImagId\":2042978,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_1_t.jpg\"}]},\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/11000000\\/10970000\\/10966100\\/10966031\\/10966031_11_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480385,\"Name\":\"Hotel Rialto\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.1834462\",\"Long\":\"91.74541250000001\",\"Address\":\"GNB Rd, Pan Bazaar, Guwahati, Assam 781001, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480386,\"Name\":\"Arna Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.18355500000001\",\"Long\":\"91.76140149999999\",\"Address\":\"Arna residency, 138, UNB Rd, Silphukuri, Guwahati, Assam 781003, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480387,\"Name\":\"Hotel Royale de Casa\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.1328899\",\"Long\":\"91.79331789999999\",\"Address\":\"Beltola - Basistha Rd, Wireless, Beltola Tiniali, Guwahati, Assam 781028, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179083\",\"Title\":\"Day 01 \\u2013 Arrive Guwahati \\u2013 Shillong (110 kms \\/ approx. 3 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Transfer from Guwahati airport\\/railway station to Shillong en route visit Umiam Lake.<\\/p>\\r\\n\\r\\n<p>Shillong became the first capital of the State of Meghalaya. Located in undulating pine-covered hills, the city has a milder climate than tropical India. The city center is 1496m above sea level and currently has a population of around 270,000. Home to several waterfalls, it is also known as the Scotland of the East. The British legacy is still visible in the architecture and food habits of the population.<\\/p>\\r\\n\\r\\n<p>Overnight at Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480378,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":212077,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":421490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179086\",\"Title\":\"Day 02 \\u2013 Shillong \\u2013 Cherrapunjee \\u2013 Shillong (60 kms \\/ approx. 2 hours each way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>Breakfast at the hotel and drive to Cherrapunjee.<\\/p>\\r\\n\\r\\n<p>Cherrapunji in Meghalaya is one of the wettest places on the planet and the only place in India to receive rain throughout the year. The town of Cherrapunji is nestled in the East Khasi Hills about 50 km southwest of the state&rsquo;s capital, Shillong. Cherrapunji, also known as Sohra or Churra, means &lsquo;the land of oranges&rsquo;. The cliffs of Cherrapunji also offer stunning views of the plains of Bangladesh. Visit Arwah Cave, Nahkhalikai Falls, Mwasmai Cave, Seven Sister Falls, Dainthlen Waterfalls and Eco Park, and Rama Krishna Mission Museum. Return back to Shillong, en-route visit Shillong Peak offers a birds-eye view of the entire city and valley and Elephant Falls is a mountain stream gorging down two successive falls set in dells of fern covered rocks.<\\/p>\\r\\n\\r\\n<p>Overnight at Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480378,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":212077,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":421490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179089\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179092\",\"Title\":\"Day 03 \\u2013 Shillong \\u2013 Kaziranga (320 kms \\/ approx. 7 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast drive from Shillong to Kaziranga.<\\/p>\\r\\n\\r\\n<p>Kaziranga National park is a world heritage site famous for the Great Indian One Horned Rhinoceros. The landscape of Kaziranga is of sheer forest, tall elephant grass, rugged reeds, marshes, and shallow pools. Kaziranga also has a good number of Tigers and is home to a large breeding population of Elephants,<br \\/>\\r\\nWild Water Buffalo and Swamp Deer.<\\/p>\\r\\n\\r\\n<p>Overnight at hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"},{\"IsIncluded\":false,\"Id\":480384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8421,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179095\",\"Title\":\"Day 04 \\u2013 Kaziranga\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>Early morning elephant ride at the park &amp; return to the hotel for breakfast. Later Jeep Safari in the Central Range of the<br \\/>\\r\\npark. Overnight at hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480381,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":false,\"Id\":465697,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"},{\"IsIncluded\":true,\"Id\":480383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"},{\"IsIncluded\":false,\"Id\":480384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179098\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179101\",\"Title\":\"Day 05 \\u2013 Kaziranga \\u2013 Guwahati (230 kms \\/ approx. 4-5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After breakfast drive from Kaziranga to Guwahati.<\\/p>\\r\\n\\r\\n<p>The gateway to the northeast and the largest and most cosmopolitan city in the region, Guwahati serves as the starting block for most Northeast itineraries. It&rsquo;s a somewhat featureless city &ndash;<br \\/>\\r\\na prosaic heap of glass and concrete for the most part &ndash; but there are a scattering of interesting temples to explore. Walk its back alleys and old quarters, however, and you will be able to salvage a generous amount of local flavor that lingers amid its suburban sprawl of ponds, palm trees, small single-story traditional houses, and old colonial-era mansions.<\\/p>\\r\\n\\r\\n<p>Overnight at hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480385,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480386,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":92936,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480387,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179104\",\"Title\":\"\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast visit Kamakhya temple -<\\/p>\\r\\n\\r\\n<p>The temple is dedicated to the goddess Kamakhya an incarnation of Sati. It is on Nilachal hill, says the Shiva Purana, that the yoni or creative organ of Sati fell when Vishnu, in a bid to save the world from the Shiva&rsquo;s tandava nritta or dance of destruction, cut her dead body into 51 pieces with his Sudarshan chakra. Also<br \\/>\\r\\nvisit Navagraha temple, Umananda temple, Balaji Temple, state Zoo.<\\/p>\\r\\n\\r\\n<p>Overnight in Guwahati<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480385,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":480386,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":92936,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480387,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179107\",\"Title\":\"Day 07 \\u2013 Departure Guwahati\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast transfer to the airport\\/railway station in time for onward connection.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25002\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25668.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20332,\"priceDoubleOcc\":\"25668.00\",\"priceSingleOcc\":51336,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25668.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20332,\"priceDoubleOcc\":\"25668.00\",\"priceSingleOcc\":51336,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25668.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20332,\"priceDoubleOcc\":\"25668.00\",\"priceSingleOcc\":51336,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25668.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20332,\"priceDoubleOcc\":\"25668.00\",\"priceSingleOcc\":51336,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25668.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":20332,\"priceDoubleOcc\":\"25668.00\",\"priceSingleOcc\":51336,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25668.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24748,\"priceDoubleOcc\":\"32292.00\",\"priceSingleOcc\":57960,\"priceExtraBed\":\"9660.00\",\"priceWithoutBed\":\"8418.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32292.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25003\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31395.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"31395.00\",\"priceSingleOcc\":62790,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"31395.00\",\"priceSingleOcc\":62790,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"31395.00\",\"priceSingleOcc\":62790,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"31395.00\",\"priceSingleOcc\":62790,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"31395.00\",\"priceSingleOcc\":62790,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":29256,\"priceDoubleOcc\":\"38019.00\",\"priceSingleOcc\":69414,\"priceExtraBed\":\"11730.00\",\"priceWithoutBed\":\"9660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38019.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25004\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41193.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34730,\"priceDoubleOcc\":\"41193.00\",\"priceSingleOcc\":82386,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41193.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34730,\"priceDoubleOcc\":\"41193.00\",\"priceSingleOcc\":82386,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41193.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34730,\"priceDoubleOcc\":\"41193.00\",\"priceSingleOcc\":82386,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41193.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34730,\"priceDoubleOcc\":\"41193.00\",\"priceSingleOcc\":82386,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41193.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":34730,\"priceDoubleOcc\":\"41193.00\",\"priceSingleOcc\":82386,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41193.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":39146,\"priceDoubleOcc\":\"47817.00\",\"priceSingleOcc\":89010,\"priceExtraBed\":\"21804.00\",\"priceWithoutBed\":\"17940.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47817.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25002\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24552.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19448,\"priceDoubleOcc\":\"24552.00\",\"priceSingleOcc\":49104,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19448,\"priceDoubleOcc\":\"24552.00\",\"priceSingleOcc\":49104,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19448,\"priceDoubleOcc\":\"24552.00\",\"priceSingleOcc\":49104,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19448,\"priceDoubleOcc\":\"24552.00\",\"priceSingleOcc\":49104,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19448,\"priceDoubleOcc\":\"24552.00\",\"priceSingleOcc\":49104,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24552.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23672,\"priceDoubleOcc\":\"30888.00\",\"priceSingleOcc\":55440,\"priceExtraBed\":\"9240.00\",\"priceWithoutBed\":\"8052.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30888.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25003\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30030.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23760,\"priceDoubleOcc\":\"30030.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23760,\"priceDoubleOcc\":\"30030.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23760,\"priceDoubleOcc\":\"30030.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23760,\"priceDoubleOcc\":\"30030.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23760,\"priceDoubleOcc\":\"30030.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27984,\"priceDoubleOcc\":\"36366.00\",\"priceSingleOcc\":66396,\"priceExtraBed\":\"11220.00\",\"priceWithoutBed\":\"9240.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36366.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25004\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39402.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33220,\"priceDoubleOcc\":\"39402.00\",\"priceSingleOcc\":78804,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39402.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33220,\"priceDoubleOcc\":\"39402.00\",\"priceSingleOcc\":78804,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39402.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33220,\"priceDoubleOcc\":\"39402.00\",\"priceSingleOcc\":78804,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39402.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33220,\"priceDoubleOcc\":\"39402.00\",\"priceSingleOcc\":78804,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39402.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":33220,\"priceDoubleOcc\":\"39402.00\",\"priceSingleOcc\":78804,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39402.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":37444,\"priceDoubleOcc\":\"45738.00\",\"priceSingleOcc\":85140,\"priceExtraBed\":\"20856.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45738.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;6 Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179083\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179083],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179086\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179086],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179089\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179089],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179092\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179092],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179095\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179095],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179098\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179098],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179101\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179101],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179104\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179104],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179107\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[179107],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shillong,Kaziranga National Park,Guwahati','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Kaziranga National Park,Assam,Guwahati,Cherrapunji','','25073,13741,11240',24552,47817,6,'99_1633610146_0.jpg,99_1633610146_1.jpg,99_1633610146_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 15:27:57','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'best-of-north-east',NULL,NULL,NULL,0),(100,25299,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":25299,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Thrilling_Kashmir_16.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Known as Heaven on the Earth, Jammu &amp;amp; Kashmir is where Mother Nature has bestowed all her love. Enclosed by the Himalayas and Karakoram ranges; and festooned with verdant meadows, lush valleys, dense forests, splendid temples, this new union territory of India is a holiday destination to instantly fall in love with.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Being an ideal tourist destination for family tours, honeymoon tours and the perfect place for adventure enthusiasts, Jammu &amp;amp; Kashmir offers abundance tour options for travellers of all kind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The picturesque Jammu &amp;amp; Kashmir is even home to the popular Hindu shrines like Mata Vaishno Devi and Baba Amarath Cave, this place is always on the radar of pilgrimage tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The majestic valleys of Kashmir offer adventure opportunities like trekking and skiing. The serene destination is also famous for experiential travels in the form of either a stay at a houseboat or Shikara ride on Dal and Nigeen Lake. Nothing can beat the beauty of Jammu &amp;amp; Kashmir, and to believe it, one has to see it!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In our Jammu &amp;amp; Kashmir Travel Guide, we offer the best information that ensures an unmatched travel experience. With our affordable Jammu &amp;amp; Kashmir tour package includes every detail like places to visit by season, top things to do, the must-see popular tourist attractions, where to stay. With us, you can rest assured of every aspect of Jammu &amp;amp; Kashmir Tourism.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Thrilling Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Intercity Transfers,Activity,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Women Only\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181236\",\"Title\":\"Arrival in Srinagar | Local Sightseeing\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Srinagar Airport and transfer to Hotel or Houseboat, you will visit Mughal Garden &quot;Nishat Bagh&quot; (The Garden of Pleasure) and &quot;Shalimar Bagh&quot; (Abode of All). Drive along the lake at Boulevard, on return visit a local Handicrafts Emporium famous for hand-knotted silken carpets, shawls and jewellery ornaments. After lunch, in second half day Visit Shankaracharya Temple. Overnight stay at the Hotel \\/ Houseboat.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19274,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181239\",\"Title\":\"Srinagar - Gulmarg - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Early morning transfer to Gulmarg which is 53Kms from Srinagar at an altitude of 8700-ft. Gulmarg is also referred to as Meadow of Flowers is a famous Ski Resort &amp; the world&rsquo;s highest 18 hole Golf Course. The place was prominent during the British times. Enjoy the scenic view of Kongdori on a Cable Car Ride &ndash; OPTIONAL (Gondola). Return to Srinagar for Dinner &amp; Overnight stay at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181242\",\"Title\":\"Srinagar - Pahalgam - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, proceed for day trip to Pahalgam called as &ldquo;Valley of Shepherds. In Pahalgam, enjoy the nature walk around the banks of River Lidder. Pahalgam is famous for some trekking routes and is the base camp for Amarnath Pilgrimage. Return back to Srinagar for overnight stay at Hotel<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1278,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181245\",\"Title\":\"Departure from Srinagar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After Breakfast, Transfer to airport to board the flight for onwards destination.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5687.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4792,\"priceDoubleOcc\":\"5687.50\",\"priceSingleOcc\":13312.5,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4792,\"priceDoubleOcc\":\"5687.50\",\"priceSingleOcc\":13312.5,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4792,\"priceDoubleOcc\":\"5687.50\",\"priceSingleOcc\":13312.5,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4458,\"priceDoubleOcc\":\"5187.50\",\"priceSingleOcc\":12812.5,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4833,\"priceDoubleOcc\":\"5750.00\",\"priceSingleOcc\":13375,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6083,\"priceDoubleOcc\":\"7625.00\",\"priceSingleOcc\":15250,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"3000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9375.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7750,\"priceDoubleOcc\":\"9375.00\",\"priceSingleOcc\":20562.5,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9375.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7750,\"priceDoubleOcc\":\"9375.00\",\"priceSingleOcc\":20562.5,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9375.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7750,\"priceDoubleOcc\":\"9375.00\",\"priceSingleOcc\":20562.5,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9375.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7542,\"priceDoubleOcc\":\"9062.50\",\"priceSingleOcc\":20250,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9062.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7688,\"priceDoubleOcc\":\"9281.25\",\"priceSingleOcc\":20468.75,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9281.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8958,\"priceDoubleOcc\":\"11187.50\",\"priceSingleOcc\":22375,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"4500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25301\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8917,\"priceDoubleOcc\":\"10562.50\",\"priceSingleOcc\":22812.5,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8917,\"priceDoubleOcc\":\"10562.50\",\"priceSingleOcc\":22812.5,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8917,\"priceDoubleOcc\":\"10562.50\",\"priceSingleOcc\":22812.5,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8750,\"priceDoubleOcc\":\"10312.50\",\"priceSingleOcc\":22562.5,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8938,\"priceDoubleOcc\":\"10593.75\",\"priceSingleOcc\":22843.75,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10593.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10042,\"priceDoubleOcc\":\"12250.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"5625.00\",\"priceWithoutBed\":\"5625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5232.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4408,\"priceDoubleOcc\":\"5232.50\",\"priceSingleOcc\":12247.5,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5232.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4408,\"priceDoubleOcc\":\"5232.50\",\"priceSingleOcc\":12247.5,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5232.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4408,\"priceDoubleOcc\":\"5232.50\",\"priceSingleOcc\":12247.5,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5232.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4102,\"priceDoubleOcc\":\"4772.50\",\"priceSingleOcc\":11787.5,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4772.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":4447,\"priceDoubleOcc\":\"5290.00\",\"priceSingleOcc\":12305,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5290.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5597,\"priceDoubleOcc\":\"7015.00\",\"priceSingleOcc\":14030,\"priceExtraBed\":\"2760.00\",\"priceWithoutBed\":\"2760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7015.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8625.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7130,\"priceDoubleOcc\":\"8625.00\",\"priceSingleOcc\":18917.5,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7130,\"priceDoubleOcc\":\"8625.00\",\"priceSingleOcc\":18917.5,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7130,\"priceDoubleOcc\":\"8625.00\",\"priceSingleOcc\":18917.5,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6938,\"priceDoubleOcc\":\"8337.50\",\"priceSingleOcc\":18630,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8337.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7073,\"priceDoubleOcc\":\"8538.75\",\"priceSingleOcc\":18831.25,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8538.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8242,\"priceDoubleOcc\":\"10292.50\",\"priceSingleOcc\":20585,\"priceExtraBed\":\"4140.00\",\"priceWithoutBed\":\"4140.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10292.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25301\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9717.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8203,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":20987.5,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8203,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":20987.5,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8203,\"priceDoubleOcc\":\"9717.50\",\"priceSingleOcc\":20987.5,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9717.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8050,\"priceDoubleOcc\":\"9487.50\",\"priceSingleOcc\":20757.5,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8223,\"priceDoubleOcc\":\"9746.25\",\"priceSingleOcc\":21016.25,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9746.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9238,\"priceDoubleOcc\":\"11270.00\",\"priceSingleOcc\":22540,\"priceExtraBed\":\"5175.00\",\"priceWithoutBed\":\"5175.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like tips, laundry, telephone, beverages etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee \\/ Local Guide \\/ Hot lunch at any place during the tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in above inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cable Car \\/ Pony ride in Pahalgam \\/ Gulmarg \\/ Sonamarg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local sightseeing in vehicle in internal area of Pahalgam \\/ Gulmarg \\/ Sonmarg due to union restrictions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 Nights accommodation on Twin Sharing \\/ MAP Basis on the above mentioned Hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Travellerfor Arrival &amp;amp; Departure from Srinagar International Airport to Hotel \\/ HB &amp;amp; vice versa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveller for Full day trip to Mughal Gardens &amp;amp; Shankaracharya temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveler for Full day excursion trip to Gulmarg &amp;amp; Pahalgam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Boat (Shikara)Ride on Dal Lake &amp;ndash; Srinagar (04 Person to 01 Boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meeting &amp;amp; Assistance on Arrival &amp;amp; Departure by our Representative&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181236\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181239\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181242\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181242],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181245\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181245],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Gulmarg,Pahalgam','','35502',4773,12250,3,'100_1627653162_0.jpg,100_1627653162_1.jpg,100_1627653162_2.jpg,100_1627653162_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'India','101','2023-08-25 15:24:54','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'thrilling-kashmir',NULL,NULL,NULL,0),(102,25310,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Women Only',NULL,1,1,0,'{\"package\":{\"TPId\":25310,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Paradise_of_Kashmir_72.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Known as Heaven on the Earth, Jammu &amp;amp; Kashmir is where Mother Nature has bestowed all her love. Enclosed by the Himalayas and Karakoram ranges; and festooned with verdant meadows, lush valleys, dense forests, splendid temples, this new union territory of India is a holiday destination to instantly fall in love with.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Being an ideal tourist destination for family tours, honeymoon tours and the perfect place for adventure enthusiasts, Jammu &amp;amp; Kashmir offers abundance tour options for travellers of all kind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The picturesque Jammu &amp;amp; Kashmir is even home to the popular Hindu shrines like Mata Vaishno Devi and Baba Amarath Cave, this place is always on the radar of pilgrimage tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The majestic valleys of Kashmir offer adventure opportunities like trekking and skiing. The serene destination is also famous for experiential travels in the form of either a stay at a houseboat or Shikara ride on Dal and Nigeen Lake. Nothing can beat the beauty of Jammu &amp;amp; Kashmir, and to believe it, one has to see it!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In our Jammu &amp;amp; Kashmir Travel Guide, we offer the best information that ensures an unmatched travel experience. With our affordable Jammu &amp;amp; Kashmir tour package includes every detail like places to visit by season, top things to do, the must-see popular tourist attractions, where to stay. With us, you can rest assured of every aspect of Jammu &amp;amp; Kashmir Tourism.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Paradise of Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Women Only\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19277,\"Title\":\"Sonmarg\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181299\",\"Title\":\"Arrival in Srinagar | Half Day Sightseeing\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Srinagar Airport and you will visit Mughal Garden &quot;Nishat Bagh&quot; (The Garden of Pleasure) and &quot;Shalimar Bagh&quot; (Abode of All). Drive along the lake at Boulevard, on return visit a local Handicrafts Emporium famous for hand-knotted silken carpets, shawls and jewelry ornaments. After lunch, in second half day Visit Shankaracharya Temple.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19274,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181302\",\"Title\":\"Srinagar to Gulmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Early morning transfer to Gulmarg which is 53 Kms from Srinagar at an altitude of 8700-ft. Gulmarg is also referred to as Meadow of Flowers is a famous Ski Resort &amp; the world&rsquo;s highest 18 hole Golf Course. The place was prominent during the British times.Enjoy the scenic view of Kongdori on a Cable Car Ride &ndash; OPTIONAL (Gondola).<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181305\",\"Title\":\"Srinagar to Pahalgam to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, proceed for day trip to Pahalgam called as &ldquo;Valley of Shepherds. In Pahalgam, enjoy the nature walk around the banks of River Lidder. Pahalgam is famous for some trekking routes and is the base camp for Amarnath Pilgrimage.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1278,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181308\",\"Title\":\"Srinagar to Sonmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast leave with full day excursion for Sonmarg. Situated at an altitude of 9000 Ft. Sonmarg &ndash; 84Kms is also called as &ldquo;The meadow of gold&rdquo; has, as its backdrop, snowy mountains against a cerulean sky. The Sindh River that meanders through the valley abounds with trout and Mahaseer. Ponies can be hired for the trip up to Thajiwas Glacier, which is a major local attraction during the summer.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19277,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181311\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>After Breakfast, Transfer to airport to board the flight for onwards destination.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25310\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7358.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6239,\"priceDoubleOcc\":\"7358.75\",\"priceSingleOcc\":17608.75,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7358.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6239,\"priceDoubleOcc\":\"7358.75\",\"priceSingleOcc\":17608.75,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7358.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6239,\"priceDoubleOcc\":\"7358.75\",\"priceSingleOcc\":17608.75,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7358.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5944,\"priceDoubleOcc\":\"6916.25\",\"priceSingleOcc\":17166.25,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6916.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6500,\"priceDoubleOcc\":\"7750.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8167,\"priceDoubleOcc\":\"10250.00\",\"priceSingleOcc\":20500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\"4000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25311\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12093.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10063,\"priceDoubleOcc\":\"12093.75\",\"priceSingleOcc\":26843.75,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12093.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10063,\"priceDoubleOcc\":\"12093.75\",\"priceSingleOcc\":26843.75,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12093.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10063,\"priceDoubleOcc\":\"12093.75\",\"priceSingleOcc\":26843.75,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12093.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9930,\"priceDoubleOcc\":\"11895.00\",\"priceSingleOcc\":26645,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11895.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10646,\"priceDoubleOcc\":\"12968.75\",\"priceSingleOcc\":27718.75,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12968.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11833,\"priceDoubleOcc\":\"14750.00\",\"priceSingleOcc\":29500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25312\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14593.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12229,\"priceDoubleOcc\":\"14593.75\",\"priceSingleOcc\":31843.75,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14593.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12229,\"priceDoubleOcc\":\"14593.75\",\"priceSingleOcc\":31843.75,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14593.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12229,\"priceDoubleOcc\":\"14593.75\",\"priceSingleOcc\":31843.75,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14593.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12097,\"priceDoubleOcc\":\"14395.00\",\"priceSingleOcc\":31645,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14395.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12813,\"priceDoubleOcc\":\"15468.75\",\"priceSingleOcc\":32718.75,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15468.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14000,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":34500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25310\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6770.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5740,\"priceDoubleOcc\":\"6770.05\",\"priceSingleOcc\":16200.05,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6770.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5740,\"priceDoubleOcc\":\"6770.05\",\"priceSingleOcc\":16200.05,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6770.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5740,\"priceDoubleOcc\":\"6770.05\",\"priceSingleOcc\":16200.05,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6770.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5469,\"priceDoubleOcc\":\"6362.95\",\"priceSingleOcc\":15792.95,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6362.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":5980,\"priceDoubleOcc\":\"7130.00\",\"priceSingleOcc\":16560,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7130.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7513,\"priceDoubleOcc\":\"9430.00\",\"priceSingleOcc\":18860,\"priceExtraBed\":\"3680.00\",\"priceWithoutBed\":\"3680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25311\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11126.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9258,\"priceDoubleOcc\":\"11126.25\",\"priceSingleOcc\":24696.25,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11126.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9258,\"priceDoubleOcc\":\"11126.25\",\"priceSingleOcc\":24696.25,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11126.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9258,\"priceDoubleOcc\":\"11126.25\",\"priceSingleOcc\":24696.25,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11126.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9136,\"priceDoubleOcc\":\"10943.40\",\"priceSingleOcc\":24513.4,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10943.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9794,\"priceDoubleOcc\":\"11931.25\",\"priceSingleOcc\":25501.25,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11931.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10887,\"priceDoubleOcc\":\"13570.00\",\"priceSingleOcc\":27140,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13570.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25312\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13426.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11251,\"priceDoubleOcc\":\"13426.25\",\"priceSingleOcc\":29296.25,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13426.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11251,\"priceDoubleOcc\":\"13426.25\",\"priceSingleOcc\":29296.25,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13426.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11251,\"priceDoubleOcc\":\"13426.25\",\"priceSingleOcc\":29296.25,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13426.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11129,\"priceDoubleOcc\":\"13243.40\",\"priceSingleOcc\":29113.4,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13243.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11788,\"priceDoubleOcc\":\"14231.25\",\"priceSingleOcc\":30101.25,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14231.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12880,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":31740,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15870.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like tips, laundry, telephone, beverages etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee \\/ Local Guide \\/ Hot lunch at any place during the tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in above inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cable Car \\/ Pony ride in Pahalgam \\/ Gulmarg \\/ Sonamarg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local sightseeing in vehicle in internal area of Pahalgam \\/ Gulmarg \\/ Sonmarg due to union restrictions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04&amp;nbsp;Nights accommodation on Twin Sharing \\/ MAP Basis on the above mentioned Hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Travellerfor Arrival &amp;amp; Departure from Srinagar International Airport to Hotel \\/ HB &amp;amp; vice versa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveller for Full day trip to Mughal Gardens &amp;amp; Shankaracharya temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveler for Full day excursion trip to Gulmarg &amp;amp; Pahalgam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Boat (Shikara)Ride on Dal Lake &amp;ndash; Srinagar (04 Person to 01 Boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meeting &amp;amp; Assistance on Arrival &amp;amp; Departure by our Representative&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181299\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181299],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181302\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181302],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181305\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181305],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181308\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181308],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181311\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Gulmarg,Pahalgam,Sonmarg','','35502',6363,17250,4,'102_1623237920_0.jpg,102_1623237920_1.jpg,102_1623237920_2.jpg',NULL,'[{\"day\":1,\"images\":\"Shankaracharya Temple.jpg\"},{\"day\":2,\"images\":\"Gulmarg.jpg\"},{\"day\":3,\"images\":\"Pahlgam_2.jpg\"},{\"day\":4,\"images\":\"Sonmarg_2.jpg\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'India','101','2023-08-25 15:24:49','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'paradise-of-kashmir',NULL,NULL,NULL,0),(103,25380,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25380,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Fascinating_Kashmir_46.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Known as Heaven on the Earth, Jammu &amp;amp; Kashmir is where Mother Nature has bestowed all her love. Enclosed by the Himalayas and Karakoram ranges; and festooned with verdant meadows, lush valleys, dense forests, splendid temples, this new union territory of India is a holiday destination to instantly fall in love with.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Being an ideal tourist destination for family tours, honeymoon tours and the perfect place for adventure enthusiasts, Jammu &amp;amp; Kashmir offers abundance tour options for travellers of all kind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The picturesque Jammu &amp;amp; Kashmir is even home to the popular Hindu shrines like Mata Vaishno Devi and Baba Amarath Cave, this place is always on the radar of pilgrimage tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The majestic valleys of Kashmir offer adventure opportunities like trekking and skiing. The serene destination is also famous for experiential travels in the form of either a stay at a houseboat or Shikara ride on Dal and Nigeen Lake. Nothing can beat the beauty of Jammu &amp;amp; Kashmir, and to believe it, one has to see it!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In our Jammu &amp;amp; Kashmir Travel Guide, we offer the best information that ensures an unmatched travel experience. With our affordable Jammu &amp;amp; Kashmir tour package includes every detail like places to visit by season, top things to do, the must-see popular tourist attractions, where to stay. With us, you can rest assured of every aspect of Jammu &amp;amp; Kashmir Tourism.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Fascinating Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481095,\"Name\":\"HOTEL CITY GRACE \",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481312,\"Name\":\"Hotel ASH VALES \",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481176,\"Name\":\"GRAND KAISER\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481177,\"Name\":\"HOTEL GRAND MAHAL\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481208,\"Name\":\"Hotel Al Mehar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481209,\"Name\":\"Hotel Al Hamra\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481108,\"Name\":\"HOTEL SOLAR RESIDENCY\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481178,\"Name\":\"HOTEL SAMCI REVIERA\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481179,\"Name\":\"HOTEL VICTORY\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481180,\"Name\":\"PINE SPRING\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481321,\"Name\":\"HOTEL METROPOLIS\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":613,\"Title\":\"Gulmarg Ski Resort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2943\\/thumb\\/Ski Resort_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481322,\"Name\":\"Hotel Mama Palace\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481323,\"Name\":\"Hotel Green Park\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481324,\"Name\":\"Hotel Royal Park\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481325,\"Name\":\"Hotel Khaleel Palace\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481326,\"Name\":\"Hotel Alpine Ridge\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481327,\"Name\":\"Hotel Gulmarg Meadows\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481328,\"Name\":\"Hotel Shaa Inn\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481329,\"Name\":\"Hotel Pine Spring\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481330,\"Name\":\"Hotel Rose Wood\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":613,\"Title\":\"Gulmarg Ski Resort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2943\\/thumb\\/Ski Resort_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181790\",\"Title\":\"Arrival in Srinagar | Half Day Sightseeing\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Srinagar Airport and you will visit Mughal Garden &quot;Nishat Bagh&#39;&#39; (The Garden of Pleasure) and &quot;Shalimar Bagh&quot; (Abode of All). Drive along the lake at Boulevard, in return visit a local Handicrafts Emporium famous for hand-knotted silk carpets, shawls and jewelry ornaments. After lunch, on the second half day. Visit Shankaracharya Temple.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481208,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481178,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481179,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":false,\"Id\":481108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":true,\"Id\":481180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181793\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181796\",\"Title\":\"Srinagar to Gulmarg:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, proceed towards Gulmarg which is 53Kms from Srinagar at an altitude of 8700-ft. Gulmarg is also referred to as Meadow of Flowers is a famous Ski Resort &amp; the world&rsquo;s highest 18 hole Golf Course. The place was prominent during the British times. Enjoy the scenic view of Kongdori on a Cable Car Ride &ndash; OPTIONAL (Gondola).<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481322,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481324,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481325,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481326,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481328,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481329,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481330,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":613,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181799\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181802\",\"Title\":\"Gulmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After a sumptuous breakfast, proceed to Srinagar and enjoy the mesmerizing mountain view and sightseeing. Later check-in the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481208,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481178,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481179,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":false,\"Id\":481108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":true,\"Id\":481180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181805\",\"Title\":\"Srinagar to Sonmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast leave with a full day excursion for Sonamarg. Situated at an altitude of 9000 Ft. Sonamarg &ndash; 84Kms is also called as &ldquo;The meadow of gold&rdquo; has, as its backdrop, snowy mountains against a cerulean sky. The Sindh River that meanders through the valley abounds with trout and mahseer. Ponies can be hired for the trip up to Thajiwas Glacier, which is a major local attraction during the summer.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481208,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481178,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481179,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":false,\"Id\":481108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":true,\"Id\":481180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19306,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181808\",\"Title\":\"Srinagar to Pahalgam to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, proceed for a day trip to Pahalgam called &ldquo;Valley of Shepherds. In Pahalgam, enjoy the nature walk around the banks of River Lidder. Pahalgam is famous for some trekking routes and is the base camp for Amarnath Pilgrimage. Later return to Srinagar and check-in the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481208,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481209,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481178,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"},{\"IsIncluded\":false,\"Id\":481179,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":false,\"Id\":481108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":true,\"Id\":481180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"},{\"IsIncluded\":false,\"Id\":481321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1278,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1280,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181811\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After Breakfast, transfer to the airport to board the flight for onward destination<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25380\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10327.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8552,\"priceDoubleOcc\":\"10327.50\",\"priceSingleOcc\":23952.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10327.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8552,\"priceDoubleOcc\":\"10327.50\",\"priceSingleOcc\":23952.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10327.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8552,\"priceDoubleOcc\":\"10327.50\",\"priceSingleOcc\":23952.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10327.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8194,\"priceDoubleOcc\":\"9791.25\",\"priceSingleOcc\":23416.25,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9791.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8875,\"priceDoubleOcc\":\"10812.50\",\"priceSingleOcc\":24437.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10812.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10750,\"priceDoubleOcc\":\"13625.00\",\"priceSingleOcc\":27250,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25381\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15952.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13135,\"priceDoubleOcc\":\"15952.50\",\"priceSingleOcc\":35452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13135,\"priceDoubleOcc\":\"15952.50\",\"priceSingleOcc\":35452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13135,\"priceDoubleOcc\":\"15952.50\",\"priceSingleOcc\":35452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13111,\"priceDoubleOcc\":\"15916.25\",\"priceSingleOcc\":35416.25,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15916.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13958,\"priceDoubleOcc\":\"17187.50\",\"priceSingleOcc\":36687.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":39000,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25382\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19952.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"19952.50\",\"priceSingleOcc\":43452.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"19952.50\",\"priceSingleOcc\":43452.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16427,\"priceDoubleOcc\":\"19952.50\",\"priceSingleOcc\":43452.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19952.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16403,\"priceDoubleOcc\":\"19916.25\",\"priceSingleOcc\":43416.25,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19916.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":17208,\"priceDoubleOcc\":\"21125.00\",\"priceSingleOcc\":44625,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18792,\"priceDoubleOcc\":\"23500.00\",\"priceSingleOcc\":47000,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25380\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9501.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7868,\"priceDoubleOcc\":\"9501.30\",\"priceSingleOcc\":22036.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9501.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7868,\"priceDoubleOcc\":\"9501.30\",\"priceSingleOcc\":22036.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9501.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7868,\"priceDoubleOcc\":\"9501.30\",\"priceSingleOcc\":22036.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9501.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7539,\"priceDoubleOcc\":\"9007.95\",\"priceSingleOcc\":21542.95,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9007.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8165,\"priceDoubleOcc\":\"9947.50\",\"priceSingleOcc\":22482.5,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9947.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9890,\"priceDoubleOcc\":\"12535.00\",\"priceSingleOcc\":25070,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12535.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25381\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14676.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12084,\"priceDoubleOcc\":\"14676.30\",\"priceSingleOcc\":32616.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14676.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12084,\"priceDoubleOcc\":\"14676.30\",\"priceSingleOcc\":32616.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14676.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12084,\"priceDoubleOcc\":\"14676.30\",\"priceSingleOcc\":32616.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14676.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12062,\"priceDoubleOcc\":\"14642.95\",\"priceSingleOcc\":32582.95,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14642.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12842,\"priceDoubleOcc\":\"15812.50\",\"priceSingleOcc\":33752.5,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15812.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14260,\"priceDoubleOcc\":\"17940.00\",\"priceSingleOcc\":35880,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25382\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18356.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15113,\"priceDoubleOcc\":\"18356.30\",\"priceSingleOcc\":39976.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18356.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15113,\"priceDoubleOcc\":\"18356.30\",\"priceSingleOcc\":39976.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18356.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15113,\"priceDoubleOcc\":\"18356.30\",\"priceSingleOcc\":39976.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18356.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15090,\"priceDoubleOcc\":\"18322.95\",\"priceSingleOcc\":39942.95,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18322.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15832,\"priceDoubleOcc\":\"19435.00\",\"priceSingleOcc\":41055,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19435.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":17288,\"priceDoubleOcc\":\"21620.00\",\"priceSingleOcc\":43240,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21620.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like tips, laundry, telephone, beverages etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee \\/ Local Guide \\/ Hot lunch at any place during the tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in above inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cable Car \\/ Pony ride in Pahalgam \\/ Gulmarg \\/ Sonamarg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local sightseeing in vehicle in internal area of Pahalgam \\/ Gulmarg \\/ Sonmarg due to union restrictions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 Nights accommodation on Twin Sharing \\/ MAP Basis on the above mentioned Hotels or Houseboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Travellerfor Arrival &amp;amp; Departure from Srinagar International Airport to Hotel \\/ HB &amp;amp; vice ver&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveller for Full day trip to Mughal Gardens &amp;amp; Shankaracharya temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveler for Full day excursion trip to Gulmarg &amp;amp; Pahalgam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Boat (Shikara)Ride on Dal Lake &amp;ndash; Srinagar (04 Person to 01 Boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meeting &amp;amp; Assistance on Arrival &amp;amp; Departure by our Representative&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181790\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181790],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181793\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181796\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181796],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181799\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181799],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181802\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181802],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181805\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181805],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181808\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181808],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181811\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181811],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT,Gulmarg','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Gulmarg,Jammu and kashmir,Pahalgam,Sonmarg','','35502,11197',9008,23500,5,'103_1623227850_0.jpg,103_1623227850_1.jpg,103_1623227850_2.jpg,103_1623227850_3.jpg',NULL,'[{\"day\":1,\"images\":\"Dal lake.jpg\"},{\"day\":2,\"images\":\"HOTEL CITY GRACE_3.jpg\"},{\"day\":3,\"images\":\"HOTEL CITY GRACE_4.jpg\"},{\"day\":4,\"images\":\"Sonmarg.jpg\"},{\"day\":5,\"images\":\"Pahlgam.jpg\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'India','101','2023-08-25 15:24:47','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'fascinating-kashmir',NULL,NULL,NULL,0),(104,25405,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25405,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Scintillating_Kashmir_44.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Known as Heaven on the Earth, Jammu &amp;amp; Kashmir is where Mother Nature has bestowed all her love. Enclosed by the Himalayas and Karakoram ranges; and festooned with verdant meadows, lush valleys, dense forests, splendid temples, this new union territory of India is a holiday destination to instantly fall in love with.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Being an ideal tourist destination for family tours, honeymoon tours and the perfect place for adventure enthusiasts, Jammu &amp;amp; Kashmir offers abundance tour options for travellers of all kind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The picturesque Jammu &amp;amp; Kashmir is even home to the popular Hindu shrines like Mata Vaishno Devi and Baba Amarath Cave, this place is always on the radar of pilgrimage tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The majestic valleys of Kashmir offer adventure opportunities like trekking and skiing. The serene destination is also famous for experiential travels in the form of either a stay at a houseboat or Shikara ride on Dal and Nigeen Lake. Nothing can beat the beauty of Jammu &amp;amp; Kashmir, and to believe it, one has to see it!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In our Jammu &amp;amp; Kashmir Travel Guide, we offer the best information that ensures an unmatched travel experience. With our affordable Jammu &amp;amp; Kashmir tour package includes every detail like places to visit by season, top things to do, the must-see popular tourist attractions, where to stay. With us, you can rest assured of every aspect of Jammu &amp;amp; Kashmir Tourism.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Scintillating Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181970\",\"Title\":\"Arrival in Srinagar | Local Sightseeing\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Srinagar Airport and transfer to Hotel or Houseboat, you will visit Mughal Garden &quot;Nishat Bagh&rdquo;&#39; (The Garden of Pleasure) and &quot;Shalimar Bagh&quot; (Abode of All). Drive along the lake at Boulevard, in return visit a local Handicrafts Emporium famous for hand-knotted silk carpets, shawls and jewelry ornaments. After lunch, on the second half day. Visit Shankaracharya Temple. Overnight stay at the Hotel \\/ Houseboat.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19065,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19274,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181973\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181976\",\"Title\":\"Srinagar to Gulmarg\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, proceed towards Gulmarg which is 53Kms from Srinagar at an altitude of 8700-ft. Gulmarg is also referred to as Meadow of Flowers is a famous Ski Resort &amp; the world&rsquo;s highest 18 hole Golf Course. The place was prominent during the British times. Enjoy the scenic view of Kongdori on a Cable Car Ride &ndash; OPTIONAL (Gondola).<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181979\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181982\",\"Title\":\"\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Day 03: Gulmarg to Srinagar<\\/p>\\r\\n\\r\\n<p>After a sumptuous breakfast, proceed to Srinagar and enjoy the mesmerizing mountain view and sightseeing. Later check-in the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181985\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181988\",\"Title\":\"Srinagar to Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast, proceed towards Pahalgam (96 Kms) approx, known as the &ldquo;Valley of Shepherds&#39;&#39;. Enroute to Mattan temple. On arrival check-in at the Hotel. In Pahalgam, Enjoy a nature walk around the banks of River Lidder. Pahalgam is famous for some trekking routes and is also the base camp for Amarnath Pilgrimage<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1278,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1280,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181991\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181994\",\"Title\":\"Pahalgam to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, proceed to Srinagar by covering the beautiful sightseeing of Pahalgam which is called Switzerland of India.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181997\",\"Title\":\"Srinagar to Sonmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>After breakfast leave with a full day excursion for Sonamarg. Situated at an altitude of 9000 Ft. Sonamarg &ndash; 84 Kms is also called as &ldquo;The meadow of gold&rdquo; has, as its backdrop, snowy mountains against a cerulean sky. The Sindh River that meanders through the valley abounds with trout and mahseer. Ponies can be hired for the trip up to Thajiwas Glacier, which is a major local attraction during the summer.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19306,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182000\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After Breakfast, transfer to the airport to board the flight for onward destination.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25405\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10167,\"priceDoubleOcc\":\"12250.00\",\"priceSingleOcc\":28937.5,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10167,\"priceDoubleOcc\":\"12250.00\",\"priceSingleOcc\":28937.5,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10167,\"priceDoubleOcc\":\"12250.00\",\"priceSingleOcc\":28937.5,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9903,\"priceDoubleOcc\":\"11853.75\",\"priceSingleOcc\":28541.25,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11853.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10708,\"priceDoubleOcc\":\"13062.50\",\"priceSingleOcc\":29750,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13062.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13125,\"priceDoubleOcc\":\"16687.50\",\"priceSingleOcc\":33375,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25406\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18778.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15519,\"priceDoubleOcc\":\"18778.75\",\"priceSingleOcc\":41716.25,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18778.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15519,\"priceDoubleOcc\":\"18778.75\",\"priceSingleOcc\":41716.25,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18778.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15519,\"priceDoubleOcc\":\"18778.75\",\"priceSingleOcc\":41716.25,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18778.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15430,\"priceDoubleOcc\":\"18645.00\",\"priceSingleOcc\":41582.5,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18645.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16417,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":43062.5,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18292,\"priceDoubleOcc\":\"22937.50\",\"priceSingleOcc\":45875,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22937.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25407\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24546.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":20114,\"priceDoubleOcc\":\"24546.25\",\"priceSingleOcc\":53296.25,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24546.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":20114,\"priceDoubleOcc\":\"24546.25\",\"priceSingleOcc\":53296.25,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24546.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":20114,\"priceDoubleOcc\":\"24546.25\",\"priceSingleOcc\":53296.25,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24546.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":20055,\"priceDoubleOcc\":\"24457.50\",\"priceSingleOcc\":53207.5,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24457.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":21042,\"priceDoubleOcc\":\"25937.50\",\"priceSingleOcc\":54687.5,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25937.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":22917,\"priceDoubleOcc\":\"28750.00\",\"priceSingleOcc\":57500,\"priceExtraBed\":\"11250.00\",\"priceWithoutBed\":\"11250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25405\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11270.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9353,\"priceDoubleOcc\":\"11270.00\",\"priceSingleOcc\":26622.5,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9353,\"priceDoubleOcc\":\"11270.00\",\"priceSingleOcc\":26622.5,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9353,\"priceDoubleOcc\":\"11270.00\",\"priceSingleOcc\":26622.5,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9110,\"priceDoubleOcc\":\"10905.45\",\"priceSingleOcc\":26257.95,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10905.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9852,\"priceDoubleOcc\":\"12017.50\",\"priceSingleOcc\":27370,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12017.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12075,\"priceDoubleOcc\":\"15352.50\",\"priceSingleOcc\":30705,\"priceExtraBed\":\"5520.00\",\"priceWithoutBed\":\"5520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15352.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25406\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17276.45\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14278,\"priceDoubleOcc\":\"17276.45\",\"priceSingleOcc\":38378.95,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17276.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14278,\"priceDoubleOcc\":\"17276.45\",\"priceSingleOcc\":38378.95,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17276.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14278,\"priceDoubleOcc\":\"17276.45\",\"priceSingleOcc\":38378.95,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17276.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14196,\"priceDoubleOcc\":\"17153.40\",\"priceSingleOcc\":38255.9,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17153.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15103,\"priceDoubleOcc\":\"18515.00\",\"priceSingleOcc\":39617.5,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18515.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16828,\"priceDoubleOcc\":\"21102.50\",\"priceSingleOcc\":42205,\"priceExtraBed\":\"8280.00\",\"priceWithoutBed\":\"8280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25407\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22582.55\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18505,\"priceDoubleOcc\":\"22582.55\",\"priceSingleOcc\":49032.55,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22582.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18505,\"priceDoubleOcc\":\"22582.55\",\"priceSingleOcc\":49032.55,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22582.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18505,\"priceDoubleOcc\":\"22582.55\",\"priceSingleOcc\":49032.55,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22582.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":18451,\"priceDoubleOcc\":\"22500.90\",\"priceSingleOcc\":48950.9,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22500.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":19358,\"priceDoubleOcc\":\"23862.50\",\"priceSingleOcc\":50312.5,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23862.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":21083,\"priceDoubleOcc\":\"26450.00\",\"priceSingleOcc\":52900,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"10350.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26450.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like tips, laundry, telephone, beverages etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee \\/ Local Guide \\/ Hot lunch at any place during the tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in above inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cable Car \\/ Pony ride in Pahalgam \\/ Gulmarg \\/ Sonamarg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local sightseeing in vehicle in internal area of Pahalgam \\/ Gulmarg \\/ Sonmarg due to union restrictions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Nights accommodation on Twin Sharing \\/ MAP Basis on the above mentioned Hotels or Houseboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Travellerfor Arrival &amp;amp; Departure from Srinagar International Airport to Hotel \\/ HB &amp;amp; vice ver&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveller for Full day trip to Mughal Gardens &amp;amp; Shankaracharya temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveler for Full day excursion trip to Gulmarg &amp;amp; Pahalgam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Boat (Shikara)Ride on Dal Lake &amp;ndash; Srinagar (04 Person to 01 Boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meeting &amp;amp; Assistance on Arrival &amp;amp; Departure by our Representative&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181970\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181973\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181973],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181976\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181976],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181979\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181982\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181985\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181988\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181988],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181991\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181991],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181994\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181994],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181997\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"182000\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[182000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT,Gulmarg,Pahalgam','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Gulmarg,Jammu and kashmir,Pahalgam,Sonmarg','','35502,11197,20566',10905,28750,6,'104_1623230422_0.jpg,104_1623230422_1.jpg',NULL,'[{\"day\":1,\"images\":\"Nishat bagh.jpg\"},{\"day\":2,\"images\":\"Golf in gulmarg.jpg\"},{\"day\":3,\"images\":\"Sri nagar food.jpg\"},{\"day\":4,\"images\":\"Valley of Shepherds.jpg\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'India','101','2023-08-25 15:24:43','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'scintillating-kashmir',NULL,NULL,NULL,0),(105,24741,1,5293,0,0,0,'Adventure,Weekend,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":24741,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-06-22\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"International Youth Club\",\"Name\":\"Manali Kasol\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Inner Line Permit,Cab,Airport Transfers,Activity,Sightseeing,Guided Tours,Bike,Water Sports,Bonfire,Camping,Trekking\",\"PackageType\":\"Adventure,Weekend,Activites Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-06-22\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3559,\"Title\":\"Bhrigu Lake\",\"Description\":\"Also known as &amp;#039;Pool of the Gods&amp;#039;, Bhrigu Lake is a picturesque lake situated at an altitude of about 4240 m, at a distance of 36 kms from Manali Bus Stand. Bhrigu Lake Trek starts from Gulaba which is about 22 km from Manali and it is one of the best Manali trekking destinations. The Bhrigu Lake is lying east of the Rohtang Pass and is also a popular Himachal trekking site. The trek routes passes through Rola Kholi (7 km from Gulaba), Bhrigu Lake (7 Kms from Rola Kholi), Pandu Ropa (7 km from Bhrigu Lake) and ends at Vashist (8 km from Pandu Ropa). Once reach Bhrigu Lake, enjoy breathtaking views of the Himalayan Mountains.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2933619,\"Long\":77.242491,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Bhrigu_Lake_16593_1521093315.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":251,\"Title\":\"Buddhist Monastery\",\"Description\":\"The statue of the Lord Buddha presides in the monastery. The Gadhan Thekchoking Gompa is situated near the Mall in Manali. The monastery is run by the local people who gather funds through donations.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517999005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":362,\"Title\":\"Club House\",\"Description\":\"Club House is an entertainment zone, built in British-style and managed by the Himachal Pradesh Tourism Development Corporation (HPTDC). It is popular for indoor as well as outdoor activities like carrom, table tennis, pool and skating. For a relaxing day, head towards this place, which is easily reachable by bus or taxi. If sports are not on your mind, you may read some classics in the library or admire the pristine river that flows along the Club House. Do not miss to enjoy a sip of tea or coffee and relish delicious snacks at the in-house restaurant.\\r\\n\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2547788,\"Long\":77.1818787,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517998870.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2767,\"Title\":\"Dhakpo Shedrupling Monastery (Kias Monastery)\",\"Description\":\"Also known as Kias Monastery, Dhakpo Shedrupling Monastery is located in Kais village of Kullu District, at a distance of 10 km from Kullu Bus stand, 12 km from Naggar and 31 km from Manali. The picturesque view of the valleys which are surrounding the place make it an appealing destination. The monastery was inaugurated in the year 2005 by the great Noble laureate and it has been strongly dedicated to Dalai Lama. The monastery serves as a boarding school and university for the study of Buddhist philosophy and houses several Tibetan monks. This Monastery has a huge prayer hall with a huge Buddha statue.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.0244732,\"Long\":77.1357018,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Dhakpo_Shedrupling_Monastery_(_16593_1521096589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":433,\"Title\":\"Dhundi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6758\\/thumb\\/Dhundi_616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":527,\"Title\":\"Gadhan Thekchhokling Gompa\",\"Description\":\"Gadhan Thekchholing Gompa is also known as Manali Gompa.It was Tibetan refugees way back in the 1960s. It is the most renowned place in Manali which lends  visitors with an incomparable feeling of peace and solitude.  The architecture of the Gompa is in a distinctive pagoda style and the exteriors are decorated with paintings and murals that best describe the culture and philosophies of Buddhism. There are many paintings inside the temple which depict the &amp;lsquo;Kaal Chakra&amp;rsquo; or the flow of events in the life of Buddha.Gadhan Thekchholing Gompa is one of the top draws for tourists all over the world to seek blessings at.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2454872,\"Long\":77.1898676,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Gadhan_Thekchhokling_Gompa_16593_1518509075.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1051,\"Title\":\"Manali City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1970\\/thumb\\/City Tour_441.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3559,\"Title\":\"Bhrigu Lake\",\"Description\":\"Also known as &amp;#039;Pool of the Gods&amp;#039;, Bhrigu Lake is a picturesque lake situated at an altitude of about 4240 m, at a distance of 36 kms from Manali Bus Stand. Bhrigu Lake Trek starts from Gulaba which is about 22 km from Manali and it is one of the best Manali trekking destinations. The Bhrigu Lake is lying east of the Rohtang Pass and is also a popular Himachal trekking site. The trek routes passes through Rola Kholi (7 km from Gulaba), Bhrigu Lake (7 Kms from Rola Kholi), Pandu Ropa (7 km from Bhrigu Lake) and ends at Vashist (8 km from Pandu Ropa). Once reach Bhrigu Lake, enjoy breathtaking views of the Himalayan Mountains.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2933619,\"Long\":77.242491,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Bhrigu_Lake_16593_1521093315.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":251,\"Title\":\"Buddhist Monastery\",\"Description\":\"The statue of the Lord Buddha presides in the monastery. The Gadhan Thekchoking Gompa is situated near the Mall in Manali. The monastery is run by the local people who gather funds through donations.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517999005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":362,\"Title\":\"Club House\",\"Description\":\"Club House is an entertainment zone, built in British-style and managed by the Himachal Pradesh Tourism Development Corporation (HPTDC). It is popular for indoor as well as outdoor activities like carrom, table tennis, pool and skating. For a relaxing day, head towards this place, which is easily reachable by bus or taxi. If sports are not on your mind, you may read some classics in the library or admire the pristine river that flows along the Club House. Do not miss to enjoy a sip of tea or coffee and relish delicious snacks at the in-house restaurant.\\r\\n\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2547788,\"Long\":77.1818787,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517998870.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2767,\"Title\":\"Dhakpo Shedrupling Monastery (Kias Monastery)\",\"Description\":\"Also known as Kias Monastery, Dhakpo Shedrupling Monastery is located in Kais village of Kullu District, at a distance of 10 km from Kullu Bus stand, 12 km from Naggar and 31 km from Manali. The picturesque view of the valleys which are surrounding the place make it an appealing destination. The monastery was inaugurated in the year 2005 by the great Noble laureate and it has been strongly dedicated to Dalai Lama. The monastery serves as a boarding school and university for the study of Buddhist philosophy and houses several Tibetan monks. This Monastery has a huge prayer hall with a huge Buddha statue.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.0244732,\"Long\":77.1357018,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Dhakpo_Shedrupling_Monastery_(_16593_1521096589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":433,\"Title\":\"Dhundi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6758\\/thumb\\/Dhundi_616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":527,\"Title\":\"Gadhan Thekchhokling Gompa\",\"Description\":\"Gadhan Thekchholing Gompa is also known as Manali Gompa.It was Tibetan refugees way back in the 1960s. It is the most renowned place in Manali which lends  visitors with an incomparable feeling of peace and solitude.  The architecture of the Gompa is in a distinctive pagoda style and the exteriors are decorated with paintings and murals that best describe the culture and philosophies of Buddhism. There are many paintings inside the temple which depict the &amp;lsquo;Kaal Chakra&amp;rsquo; or the flow of events in the life of Buddha.Gadhan Thekchholing Gompa is one of the top draws for tourists all over the world to seek blessings at.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2454872,\"Long\":77.1898676,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Gadhan_Thekchhokling_Gompa_16593_1518509075.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1051,\"Title\":\"Manali City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1970\\/thumb\\/City Tour_441.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35283,\"Title\":\"Kasol\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3559,\"Title\":\"Bhrigu Lake\",\"Description\":\"Also known as &amp;#039;Pool of the Gods&amp;#039;, Bhrigu Lake is a picturesque lake situated at an altitude of about 4240 m, at a distance of 36 kms from Manali Bus Stand. Bhrigu Lake Trek starts from Gulaba which is about 22 km from Manali and it is one of the best Manali trekking destinations. The Bhrigu Lake is lying east of the Rohtang Pass and is also a popular Himachal trekking site. The trek routes passes through Rola Kholi (7 km from Gulaba), Bhrigu Lake (7 Kms from Rola Kholi), Pandu Ropa (7 km from Bhrigu Lake) and ends at Vashist (8 km from Pandu Ropa). Once reach Bhrigu Lake, enjoy breathtaking views of the Himalayan Mountains.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2933619,\"Long\":77.242491,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Bhrigu_Lake_16593_1521093315.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":251,\"Title\":\"Buddhist Monastery\",\"Description\":\"The statue of the Lord Buddha presides in the monastery. The Gadhan Thekchoking Gompa is situated near the Mall in Manali. The monastery is run by the local people who gather funds through donations.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517999005.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":362,\"Title\":\"Club House\",\"Description\":\"Club House is an entertainment zone, built in British-style and managed by the Himachal Pradesh Tourism Development Corporation (HPTDC). It is popular for indoor as well as outdoor activities like carrom, table tennis, pool and skating. For a relaxing day, head towards this place, which is easily reachable by bus or taxi. If sports are not on your mind, you may read some classics in the library or admire the pristine river that flows along the Club House. Do not miss to enjoy a sip of tea or coffee and relish delicious snacks at the in-house restaurant.\\r\\n\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2547788,\"Long\":77.1818787,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/21_1517998870.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2767,\"Title\":\"Dhakpo Shedrupling Monastery (Kias Monastery)\",\"Description\":\"Also known as Kias Monastery, Dhakpo Shedrupling Monastery is located in Kais village of Kullu District, at a distance of 10 km from Kullu Bus stand, 12 km from Naggar and 31 km from Manali. The picturesque view of the valleys which are surrounding the place make it an appealing destination. The monastery was inaugurated in the year 2005 by the great Noble laureate and it has been strongly dedicated to Dalai Lama. The monastery serves as a boarding school and university for the study of Buddhist philosophy and houses several Tibetan monks. This Monastery has a huge prayer hall with a huge Buddha statue.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.0244732,\"Long\":77.1357018,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Dhakpo_Shedrupling_Monastery_(_16593_1521096589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":433,\"Title\":\"Dhundi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6758\\/thumb\\/Dhundi_616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":527,\"Title\":\"Gadhan Thekchhokling Gompa\",\"Description\":\"Gadhan Thekchholing Gompa is also known as Manali Gompa.It was Tibetan refugees way back in the 1960s. It is the most renowned place in Manali which lends  visitors with an incomparable feeling of peace and solitude.  The architecture of the Gompa is in a distinctive pagoda style and the exteriors are decorated with paintings and murals that best describe the culture and philosophies of Buddhism. There are many paintings inside the temple which depict the &amp;lsquo;Kaal Chakra&amp;rsquo; or the flow of events in the life of Buddha.Gadhan Thekchholing Gompa is one of the top draws for tourists all over the world to seek blessings at.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2454872,\"Long\":77.1898676,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Gadhan_Thekchhokling_Gompa_16593_1518509075.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1051,\"Title\":\"Manali City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1970\\/thumb\\/City Tour_441.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177067\",\"Title\":\"arrival\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>hfhdsjfhdkuf gjhfgjdfjf<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177069\",\"Title\":\"delhi to munnar\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0hfjdshd<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3559,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":251,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":362,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2767,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":527,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177071\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":1051,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177073\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177075\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35283,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177077\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35283,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177079\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35283,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177081\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35283,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177093\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24741\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10667,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"10000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24742\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"16000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"1000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24741\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":15600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":10467,\"priceDoubleOcc\":\"10800.00\",\"priceSingleOcc\":16600,\"priceExtraBed\":\"9800.00\",\"priceWithoutBed\":\"9800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24742\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-03-24\",\"To\":\"2021-05-31\",\"Currency\":1,\"priceTripleOcc\":15800,\"priceDoubleOcc\":\"15800.00\",\"priceSingleOcc\":31600,\"priceExtraBed\":\"15800.00\",\"priceWithoutBed\":\"15800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"800.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;hghjhgjfdhgudfyfdu&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177067\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177069\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177069],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177071\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177071],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177073\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177073],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177075\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177075],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177077\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177077],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177079\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177079],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177081\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177081],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177093\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177093],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Delhi,Manali,Kasol','Delhi,Indian Subcontinent,North India,India,Manali,Himachal Pradesh,Kasol,Kullu','','7701,16593,35283',9800,16000,5,'105_1623241457_0.jpg,105_1623241457_1.jpg,105_1623241457_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-06-22 00:00:00','2021-06-22 00:00:00',3,'India','101','2021-04-15 00:00:00','2021-04-15 00:00:00',1,1,'1','1','1','','','',NULL,'manali-kasol',NULL,NULL,NULL,0),(106,24989,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Culture,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":24989,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Island_Hopping_in_Andaman_79.png\",\"BookingValidUntill\":\"2021-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman Island is a beautiful archipelago located in the eastern part of the Bay of Bengal. With crystal clear water, clean surroundings, and a peaceful ambiance, the eco-friendly beaches of Andaman Island are no less than a paradise for all beach lovers. This breath-taking archipelago has the potential to thrill and mesmerize travelers from around the world with its uniqueness and sheer natural beauty.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We offer 6 nights and 7 days Andaman Island Tour, which is mainly designed keeping in mind the needs and demands of beach enthusiasts who want to spend their vacation near the blue ocean water and enjoy the cool breeze. Our Andaman Island Tour is a perfect holiday cocktail with sea, sand, and sun to retreat from the busy city life.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Island Hopping in Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Culture,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480356,\"Name\":\"Hotel TSG Grand\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6333293\",\"Long\":\"92.72085969999999\",\"Address\":\"Great Andaman Trunk Rd, Dollygunj, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Ac Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":413619,\"Name\":\"Hotel TSG Grand\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"11.632758984246\",\"Long\":\"92.721921921635\",\"Address\":\"Andaman Trunk Road, Dolly Gunj, Port Blair 744103\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"TSG Grand a perfect paradigm which provides premium lifestyle is located three kilometers away from Port Blair Airport. This two-storey hotel boasts of 56 well furnished rooms that are well-equipped with mini bar. Book lovers can enjoy reading books in well set book shop. Guests are been provided with modern hotel facilities like 24 hour front desk, wedding services, exhibit space, gift shops, etc.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/7f\\/7b\\/7f7bffeb0979fafc4541ed6854ba23273c47992b.jpg\",\"AccoAminitiesMask\":\"1110000010001100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"Ac Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":193665,\"Name\":\"Sinclairs Bayview\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.663902\",\"Long\":\"92.755639\",\"Address\":\"South Point Port Blair\"},\"Images\":{\"Image\":[{\"ImagId\":4329510,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/21\\/475\\/959\\/INDBAYVIEW-1_C.jpg\"},{\"ImagId\":4329511,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/21\\/475\\/950\\/INDBAYVIEW-4_A.jpg\"},{\"ImagId\":4329512,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/21\\/475\\/941\\/INDBAYVIEW-3_A.jpg\"},{\"ImagId\":4329513,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/21\\/475\\/930\\/INDBAYVIEW-2_A.jpg\"}]},\"CityId\":32511,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Sinclairs Bayview Port Blair in Port Blair, you&amp;apos;ll be in the historical district and minutes from Aberdeen Clock Tower, and close to Rajiv Gandhi Water Sports Complex.  This hotel is within close proximity of Cellular Jail and Anthropological Museum.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 46 air-conditioned rooms featuring minibars and LED televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have complimentary toiletries and slippers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreation opportunities such as an outdoor pool or take in the view from a terrace and a garden. This hotel also features complimentary wireless Internet access, concierge services, and wedding services. The shuttle (surcharge) will take you to the nearby beach or shopping center.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include limo\\/town car service, complimentary newspapers in the lobby, and luggage storage. Planning an event in Port Blair? This hotel has 1453 square feet (135 square meters) of space consisting of a conference center and a meeting room. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a cruise ship terminal shuttle.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/21\\/475\\/959\\/INDBAYVIEW-1_C.jpg\",\"AccoAminitiesMask\":\"111100000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480355,\"Name\":\"Lemon Tree\'s Keys Select Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6500754\",\"Long\":\"92.7312312\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":474140,\"Name\":\"TSG Blue Resort\\/Symphony Palms\\/Sands Marina or sim\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480357,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0117653\",\"Long\":\"93.0071687\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":97162,\"Name\":\"Silversand Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0249\",\"Long\":\"92.9907\",\"Address\":\"No. 5, Vijay Nagar Beach \"},\"Images\":{\"Image\":[{\"ImagId\":2123877,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_13_t.jpg\"},{\"ImagId\":2123878,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_20_t.jpg\"},{\"ImagId\":2123879,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_27_t.jpg\"},{\"ImagId\":2123880,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_28_t.jpg\"},{\"ImagId\":2123881,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_3_t.jpg\"},{\"ImagId\":2123882,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_4_t.jpg\"},{\"ImagId\":2123883,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_9_t.jpg\"},{\"ImagId\":2123884,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_15_t.jpg\"},{\"ImagId\":2123885,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_8_t.jpg\"},{\"ImagId\":2123886,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_10_t.jpg\"},{\"ImagId\":2123887,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_11_t.jpg\"},{\"ImagId\":2123888,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_21_t.jpg\"},{\"ImagId\":2123889,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_22_t.jpg\"},{\"ImagId\":2123890,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_2_t.jpg\"},{\"ImagId\":2123891,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_23_t.jpg\"},{\"ImagId\":2123892,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_5_t.jpg\"},{\"ImagId\":2123893,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_7_t.jpg\"},{\"ImagId\":2123894,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_14_t.jpg\"},{\"ImagId\":2123895,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_17_t.jpg\"},{\"ImagId\":2123896,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_19_t.jpg\"},{\"ImagId\":2123897,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_24_t.jpg\"},{\"ImagId\":2123898,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_25_t.jpg\"},{\"ImagId\":2123899,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_26_t.jpg\"},{\"ImagId\":2123900,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_29_t.jpg\"},{\"ImagId\":2123901,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_30_t.jpg\"},{\"ImagId\":2123902,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_6_t.jpg\"},{\"ImagId\":2123903,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_31_t.jpg\"},{\"ImagId\":2123904,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_12_t.jpg\"}]},\"CityId\":11658,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at SilverSand Beach Resort in Havelock Island, you&amp;apos;ll be near the beach and within the region of Henry Lawrence Island.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 39 air-conditioned rooms featuring refrigerators and minibars. Flat-screen televisions are provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include desks and coffee\\/tea makers, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take in the views from a garden and make use of amenities such as tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;The front desk is staffed during limited hours. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9810000\\/9807400\\/9807319\\/9807319_13_t.jpg\",\"AccoAminitiesMask\":\"101000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480358,\"Name\":\"Symphony Summer Sands\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8157514\",\"Long\":\"93.04810289999999\",\"Address\":\"Ram Nagar Beach, Neil Island, Ram Nagar, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480359,\"Name\":\"Silver Sand Beach Resort Neil\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8288688\",\"Long\":\"93.030726\",\"Address\":\"Neil Kendra, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":480360,\"Name\":\"Symphony Summer Sands\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8157514\",\"Long\":\"93.04810289999999\",\"Address\":\"Ram Nagar Beach, Neil Island, Ram Nagar, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178979\",\"Title\":\"Arrival at Port Blair\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"<p>Arrive at Port Blair in the morning\\/afternoon by flight and transfer to Hotel. After some rest visit the famous Cellular Jail (Entry closes @ 1545 hrs), Cellular Jail, also known as Kalapani is an old colonial prison situated in Port Blair, the capital of Andaman and Nicobar Islands. Constructed by the Britishers during their colonial rule in India, Cellular Jail was used particularly to exile political prisoners where they were subjected to many atrocities at the hands of the British. The jail complex is now maintained by the Government of India and it is recognized as the national memorial monument that showcases the life of prisoners during the British era and then attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. The sound and light show at Cellular Jail are showcased as a conversation between an Atma (Spirit) and a Pipal Tree in the legendary actor Om Puri&#39;s Voice. The show is approximately 45 - 50 minutes. Later drop back to Hotel.<\\/p>\\r\\n\\r\\n<p>&bull;Our person will be waiting at the exit of the airport with your name on the placard. Kindly collect your luggage and walk to the exit gate point.<\\/p>\\r\\n\\r\\n<p>&bull;Our Tour Manager will brief you daily and on the first day will take you through the itinerary in detail and request you to spare time for the same.<\\/p>\\r\\n\\r\\n<p>&bull;In case your flight lands in the afternoon we may take you straight from the airport to Cellular Jail so that you are able to watch the light and sound show.<\\/p>\\r\\n\\r\\n<p>&bull;Once Cellular Jail visit is over guest will have to exit the Jail premises and wait at the garden opp to Jail and re-enter the Jail as per the timing of the Sound &amp; Light Show<\\/p>\\r\\n\\r\\n<p>&bull;Guest can avail refreshments like Tea, Coffee, Samosa, Coconut water, etc near the garden which is opposite the cellular jail on a direct payment basis<\\/p>\\r\\n\\r\\n<p>&bull;Please note that the vehicles are not allowed to stop outside cellular Jail, hence guests will be dropped approx. 400 Mtrs before Cellular Jail and will have to walk from the parking point until Jail. Once the Jail \\/ S&amp;L show visit is done the guest will have to walk again to the parking point to board the vehicle<\\/p>\\r\\n\\r\\n<p>&bull;Light and Sound Show at 1800 hrs or 1900 Hrs, depending on ticket availability<\\/p>\\r\\n\\r\\n<p>&bull;Cellular Jail is closed on Monday<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480356,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Ac Standard Room\"},{\"IsIncluded\":false,\"Id\":413619,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Ac Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480355,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":193665,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2804,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178982\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178985\",\"Title\":\"Day 02 \\u2013 Port Blair - Havelock\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Departure by Private \\/ Government Ferry (PB HL) from Port Blair &ndash; Havelock (Swaraj Dweep). The ferry takes 1.5-2.5 Hrs to reach Havelock (Swaraj Dweep) (Proceed inside the jetty with your own luggage as our staff is not allowed inside the jetty and once you enter the jetty proceed to the ferry counter and show the printout of your ticket and get the boarding stamped and then wait for the boarding announcement and then proceed with your luggage towards the ferry and any big luggage is to be handed over to the ferry staff and hand luggage to be carried on board and once you reach the destination collect your luggage outside the ferry and proceed towards the exit of the terminal). Our person will be waiting at the exit of the gate with Guest Names on a Placard. Proceed to selected Hotel and between around 1430 hrs - 1530 hrs proceed to Beach No 7* (Radhanagar Beach) rated as the &lsquo;Best Beach in Asia&rsquo; by Time Magazine and unwind and relax and enjoy the pristine white sand beach. To get the best view of Radhanagar Beach, we would recommend you to go in the water until Hip Level. Once there, turn around and you will see the Clean Blue Waters + the mystic white sand and the magical green trees, and this is the best view one can have of Radhanagar Beach. There are some local shops where guests purchase some snacks and refreshments. Evening at Leisure.<\\/p>\\r\\n\\r\\n<p>&bull; Kindly remind the hotel to provide packed breakfast at Port Blair since the same is not included at Havelock (Swaraj Dweep)<\\/p>\\r\\n\\r\\n<p>&bull; Carry valid Photo id (PAN Card not accepted) as the same is checked before boarding ferry<\\/p>\\r\\n\\r\\n<p>&bull; ALCOHOL cannot be carried on board the inter-island vessels (Private\\/ Govt)<\\/p>\\r\\n\\r\\n<p>&bull; Guest cannot swim in the water after sunset.<\\/p>\\r\\n\\r\\n<p>&bull; There are limited cars on Havelock (Swaraj Dweep) and hence guests are requested to adhere to the timelines shared by the Tour Manager.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474140,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480357,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":97162,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178988\",\"Title\":\"Day 03 \\u2013 Excursion to Elephant Beach \\/ Light House\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Embark on the most memorable excursion to Elephant Beach or Light House by sharing boat (Elephant Beach was called so as it was an Elephant Training Camp run by the Forest Department in the 1990s. The same is not operational now and there are no Elephants at Elephant Beach). The journey time is 30-45 mins and spends some time on the breathtaking white sands of Elephant Beach and you can enjoy a variety of Fruit Chats, Coconut Water, Samosa chat and Jalmuri, etc on direct payment basis and also you can also go for some water sports activities like Snorkeling, Sea Walk, Jet Ski, Glass bottom Boat, Banana Boat Ride, Sofa boat ride, Parasailing, etc on Direct payment. It&rsquo;s also a great place to just spend the day lying on the beach and relaxing. The beach is very scenic with fallen trees and white sand giving the photographer some interesting shots. The reef here starts very close to shore at a depth of about 1 meter. The large reef is mostly made up of hard coral and has plenty of marine life. Return back after 3 hrs in the same sharing boat back to Beach No 1. Our tour manager will meet and greet and assist with car transfers to proceed to Hotel. Evening at Leisure.<\\/p>\\r\\n\\r\\n<p>&bull; The boats to EB are managed by a boat association that needs individual guests to fill a consent form after which boats are allotted based on rotation and sharing basis.<\\/p>\\r\\n\\r\\n<p>&bull; Due to limited boats&nbsp;guests may have to wait until their boat is allotted and we have no control over the wait time.<\\/p>\\r\\n\\r\\n<p>&bull; Please carry a change of clothes, a towel, cap, sunglasses, and sunscreen and wear comfortable clothing for this trip.<\\/p>\\r\\n\\r\\n<p>&bull; Incase Elephant Beach trip is not operating due to sea conditions then the guest will be taken to Light House.<\\/p>\\r\\n\\r\\n<p>&bull; Guest can purchase water, snacks from shops nearby the counter before proceeding on the trip as nothing is available at Elephant Beach. Do not Litter on the beach and throw waste only in the dustbins.<\\/p>\\r\\n\\r\\n<p>&bull; DRINKING is strictly prohibited on Elephant Beach.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474140,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480357,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":97162,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178991\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178994\",\"Title\":\"Day 04 \\u2013 Havelock \\u2013 Neil Island\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Check out and return from Havelock (Swaraj Dweep) to Neil (Shaheed Dweep) by Private \\/ Government Ferry (HL NL) The ferry takes 1 hr to reach and once you reach the destination collect your luggage outside the ferry and proceed towards the exit of the terminal where our person will be waiting with your guest name on the Placard and transfer to Hotel in Neil (Shaheed Dweep) Island. Enjoy a comfortable overnight stay at Hotel in Neil (Shaheed Dweep) Island. Evening leisure.<\\/p>\\r\\n\\r\\n<p>&bull; Do note that all hotels on Havelock (Swaraj Dweep) have an early morning check out time and late checkout is provided at the discretion of the hotel management<\\/p>\\r\\n\\r\\n<p>&bull; Guest should be at private ferry counter for check-in at least an hour before vessel departure time<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480360,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480359,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480358,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178997\",\"Title\":\"Day 05 \\u2013 Neil Island \\u2013 Port Blair\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>Wake up to the quaint and mesmerizing Neil Island (Shaheed Dweep) also called the Vegetable bowl of Andaman&rsquo;s. Check Out and then proceed for the three beach visit covering Bharatpur (famous for Water Sports including Glass Bottom Boat Ride, Jet Ski, Snorkeling, Scuba Diving, Speed Boat Ride, etc on Direct Payment Basis), Laxmanpur beach (famous for its views as one can see Havelock Island on 01 sides and Port Blair on the other on a clear day) and Natural Bridge (also known as Howrah Bridge by the locals - this can be accessed only during the Low Tide). Return back to Port Blair by Private \\/ Government Ferry (NL PB) from Neil Island (Shaheed Dweep) to Port Blair. Our person will be waiting at the exit of the harbor and provide a meet and greet and then and drop you at PB Hotel. Evening at Leisure.<\\/p>\\r\\n\\r\\n<p>&bull; The beach visit is subject to tide schedule and our local rep will update you on the preferred time to visit.<\\/p>\\r\\n\\r\\n<p>&bull; Do note that all hotels on Neil (Shaheed Dweep) Island have an early morning check out time and late checkout is provided at the discretion of the hotel management<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480360,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480359,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480358,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6541,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179000\",\"Title\":\"Day 06 \\u2013 Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>Check out from Port Blair Hotel as per check-out time after which we will take you straight to the Airport to board your departure flight. Depart with sweet memories of these stunning Islands. Do note that all hotels on Port Blair have an early morning check-out time and late checkout is provided at the discretion of the hotel management and subject to availability. Port Blair Airport is a small airport with heavy rush and request all guest to be at the airport at least 1.5 hrs before departure flight timing...<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24989\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24340.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":22713,\"priceDoubleOcc\":\"24340.90\",\"priceSingleOcc\":48681.8,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24340.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":22713,\"priceDoubleOcc\":\"24340.90\",\"priceSingleOcc\":48681.8,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24340.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":22713,\"priceDoubleOcc\":\"24340.90\",\"priceSingleOcc\":48681.8,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24340.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":22713,\"priceDoubleOcc\":\"24340.90\",\"priceSingleOcc\":48681.8,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24340.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":22713,\"priceDoubleOcc\":\"24340.90\",\"priceSingleOcc\":48681.8,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24340.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24311,\"priceDoubleOcc\":\"26737.50\",\"priceSingleOcc\":51078.4,\"priceExtraBed\":\"19458.00\",\"priceWithoutBed\":\"15456.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26737.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24990\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29778.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":27690,\"priceDoubleOcc\":\"29778.10\",\"priceSingleOcc\":59556.2,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29778.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":27690,\"priceDoubleOcc\":\"29778.10\",\"priceSingleOcc\":59556.2,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29778.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":27690,\"priceDoubleOcc\":\"29778.10\",\"priceSingleOcc\":59556.2,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29778.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":27690,\"priceDoubleOcc\":\"29778.10\",\"priceSingleOcc\":59556.2,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29778.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":27690,\"priceDoubleOcc\":\"29778.10\",\"priceSingleOcc\":59556.2,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29778.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":29288,\"priceDoubleOcc\":\"32174.70\",\"priceSingleOcc\":61952.8,\"priceExtraBed\":\"23515.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32174.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44102.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37562,\"priceDoubleOcc\":\"44102.50\",\"priceSingleOcc\":88205,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37562,\"priceDoubleOcc\":\"44102.50\",\"priceSingleOcc\":88205,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37562,\"priceDoubleOcc\":\"44102.50\",\"priceSingleOcc\":88205,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37562,\"priceDoubleOcc\":\"44102.50\",\"priceSingleOcc\":88205,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37562,\"priceDoubleOcc\":\"44102.50\",\"priceSingleOcc\":88205,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44102.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":39160,\"priceDoubleOcc\":\"46499.10\",\"priceSingleOcc\":90601.6,\"priceExtraBed\":\"24481.20\",\"priceWithoutBed\":\"17553.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46499.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24989\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23282.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21726,\"priceDoubleOcc\":\"23282.60\",\"priceSingleOcc\":46565.2,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23282.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21726,\"priceDoubleOcc\":\"23282.60\",\"priceSingleOcc\":46565.2,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23282.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21726,\"priceDoubleOcc\":\"23282.60\",\"priceSingleOcc\":46565.2,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23282.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21726,\"priceDoubleOcc\":\"23282.60\",\"priceSingleOcc\":46565.2,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23282.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21726,\"priceDoubleOcc\":\"23282.60\",\"priceSingleOcc\":46565.2,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23282.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":23254,\"priceDoubleOcc\":\"25575.00\",\"priceSingleOcc\":48857.6,\"priceExtraBed\":\"18612.00\",\"priceWithoutBed\":\"14784.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25575.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24990\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28483.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26487,\"priceDoubleOcc\":\"28483.40\",\"priceSingleOcc\":56966.8,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26487,\"priceDoubleOcc\":\"28483.40\",\"priceSingleOcc\":56966.8,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26487,\"priceDoubleOcc\":\"28483.40\",\"priceSingleOcc\":56966.8,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26487,\"priceDoubleOcc\":\"28483.40\",\"priceSingleOcc\":56966.8,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26487,\"priceDoubleOcc\":\"28483.40\",\"priceSingleOcc\":56966.8,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":28015,\"priceDoubleOcc\":\"30775.80\",\"priceSingleOcc\":59259.2,\"priceExtraBed\":\"22492.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30775.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"42185.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":35929,\"priceDoubleOcc\":\"42185.00\",\"priceSingleOcc\":84370,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":35929,\"priceDoubleOcc\":\"42185.00\",\"priceSingleOcc\":84370,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":35929,\"priceDoubleOcc\":\"42185.00\",\"priceSingleOcc\":84370,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":35929,\"priceDoubleOcc\":\"42185.00\",\"priceSingleOcc\":84370,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":35929,\"priceDoubleOcc\":\"42185.00\",\"priceSingleOcc\":84370,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42185.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-01\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":37457,\"priceDoubleOcc\":\"44477.40\",\"priceSingleOcc\":86662.4,\"priceExtraBed\":\"23416.80\",\"priceWithoutBed\":\"16790.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44477.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Air tickets and airport taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vehicle at disposal at Port Blair &amp;amp; Havelock&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any extra excursions or sightseeing apart from the suggested tour itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porter Charges, Guide Charges including Cellular Jail &amp;amp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ross Island and Camera Ticket charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Other meals not mentioned laundry, telephone calls, and incidentals.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera \\/ Video camera fees applicable at the monument&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5-night accommodation in well-appointed rooms as mentioned above hotels or equivalent.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers and Sightseeing as per itinerary by private tourist vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal plan as mentioned above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry tickets, and ferry tickets to all sightseeing places.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Port Blair - Havelock + Havelock - Neil + Neil - Port&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Blair by Private \\/ Government Ferry&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Excursion to Elephant Beach\\/ Light House subject to weather conditions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drivers allowances, toll taxes and Govt. Service Tax&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178979\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178982\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178985\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178988\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178988],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178991\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178991],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178994\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178994],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178997\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179000\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island','','32511,11658,34567',23283,46499,5,'106_1623319031_0.jpg,106_1623319031_1.jpg,106_1623319031_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"NEIL ISLAND andaman.jpg\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-08-31 00:00:00','2021-08-31 00:00:00',3,'India','101','2023-08-25 15:28:03','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'island-hopping-in-andaman',NULL,NULL,NULL,0),(107,25064,1,5293,0,0,0,'Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":25064,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Heady_Himachal_II_15.png\",\"BookingValidUntill\":\"2021-07-02\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Snuggled in the western part of the Indian Himalayas, Himachal Pradesh is a trove of natural and geographical riches that allures honeymooners to spend some quality time in serenity. Our six nights and seven days&amp;nbsp;Package gifts you the pleasure of experiencing the tranquility of this hill station. Shimla, being the capital of Himachal welcomes the visitors with various tourist attractions like Kufri (a small and sweet hill station), Ridge Maidan (one of the snowfall spots), and Mall Road (the main street providing a cityscape). Further, our Himachal tour package also takes you to some of the must-visit destinations of Manali like the Solang Valley, Rohtang Pass, natural thermal springs, Hadimba Temple, and so on. In a nutshell, the exquisiteness of the place is wonderfully wrapped in this Himachal Travel Package.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Heady Himachal II\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner\",\"PackageType\":\"Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-07-02\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":219762,\"Name\":\"Fairmount Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.096485\",\"Long\":\"77.185485\",\"Address\":\"Earls Field Estate, Near St. Bedes College, Himachal Pradesh, Shimla, India, , , 171002\"},\"Images\":{\"Image\":[{\"ImagId\":4789898,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=ytl9DmwCsAOMI8k2tU0mDV06\\/W655FNtf\\/8ULNJvYGUjHjovDt0\\/Aj3UFgQ48VmgAYCoFeg+cd8=\"}]},\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=ytl9DmwCsAOMI8k2tU0mDV06\\/W655FNtf\\/8ULNJvYGUjHjovDt0\\/Aj3UFgQ48VmgAYCoFeg+cd8=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":212187,\"Name\":\"Snow Valley Resorts\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0992\",\"Long\":\"77.1738\",\"Address\":\"Ghora Chowki ( Near Kachi Ghatti ) \"},\"Images\":{\"Image\":[{\"ImagId\":4744568,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/fce3d10f_t.jpg\"},{\"ImagId\":4744569,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/82335e89_t.jpg\"},{\"ImagId\":4744570,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/bad84d2b_t.jpg\"},{\"ImagId\":4744571,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/beba4165_t.jpg\"},{\"ImagId\":4744572,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/bf97a526_t.jpg\"},{\"ImagId\":4744573,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_89_t.jpg\"},{\"ImagId\":4744574,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_90_t.jpg\"},{\"ImagId\":4744575,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/1a4cdf8e_t.jpg\"},{\"ImagId\":4744576,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/e04f32c1_t.jpg\"},{\"ImagId\":4744577,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/bd98d2ce_t.jpg\"},{\"ImagId\":4744578,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/f43cb1f6_t.jpg\"},{\"ImagId\":4744579,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/d6770164_t.jpg\"},{\"ImagId\":4744580,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/9a1bfde4_t.jpg\"},{\"ImagId\":4744581,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/ac8880c3_t.jpg\"},{\"ImagId\":4744582,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/b68a59cc_t.jpg\"},{\"ImagId\":4744583,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/dbe93d4e_t.jpg\"},{\"ImagId\":4744584,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/c1e2653d_t.jpg\"},{\"ImagId\":4744585,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/4a840002_t.jpg\"},{\"ImagId\":4744586,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/1647e37a_t.jpg\"},{\"ImagId\":4744587,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/69ad15c5_t.jpg\"},{\"ImagId\":4744588,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/f5953353_t.jpg\"},{\"ImagId\":4744589,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_88_t.jpg\"},{\"ImagId\":4744590,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_87_t.jpg\"},{\"ImagId\":4744591,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_86_t.jpg\"},{\"ImagId\":4744592,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_83_t.jpg\"},{\"ImagId\":4744593,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_82_t.jpg\"},{\"ImagId\":4744594,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_81_t.jpg\"},{\"ImagId\":4744595,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_79_t.jpg\"},{\"ImagId\":4744596,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_76_t.jpg\"},{\"ImagId\":4744597,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_72_t.jpg\"},{\"ImagId\":4744598,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_85_t.jpg\"},{\"ImagId\":4744599,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_80_t.jpg\"},{\"ImagId\":4744600,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_77_t.jpg\"},{\"ImagId\":4744601,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_73_t.jpg\"},{\"ImagId\":4744602,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_13_t.jpg\"},{\"ImagId\":4744603,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_18_t.jpg\"},{\"ImagId\":4744604,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_14_t.jpg\"},{\"ImagId\":4744605,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_74_t.jpg\"},{\"ImagId\":4744606,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/12809108_84_t.jpg\"}]},\"CityId\":1,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Snow Valley Resorts in Shimla, you&amp;apos;ll be convenient to Sankat Mochan Temple and Viceregal Lodge.  This hotel is within close proximity of State Museum and Himachal Pradesh University.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 72 air-conditioned rooms featuring flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have complimentary toiletries and slippers. Conveniences include safes and complimentary newspapers, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy recreation amenities such as a health club or take in the view from a terrace. Additional features at this hotel include complimentary wireless Internet access, complimentary babysitting\\/childcare, and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/13000000\\/12810000\\/12809200\\/12809108\\/fce3d10f_t.jpg\",\"AccoAminitiesMask\":\"111011000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":219799,\"Name\":\"East Bourne Resort & Spa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.088438\",\"Long\":\"77.16794\",\"Address\":\"Near Bishop Cotton School, , Khalini, SHIMLA, HIMACHAL PRADESH, India, Pin-171002, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4789935,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=a12Wzatglc1nsUWIgtWXhATD\\/DSE6+F3VeSPbME9pCW4oSWIlL1Tr0fW2keYZxRVU6Vy39rUVlgghxigwaDUWGmOmGDidJ3LX6Cb\\/YhIha4=\"}]},\"CityId\":1,\"Brief\":\"Featuring an indoor heated pool, East Bourne Resort &amp; Spa is a popular property in Shimla. This hotel is located at Near Bishop Cotton School and is 4km from Shimla Railway Station.   This resort with 72 rooms offers spacious accommodation on in Shimla. In-room amenities include hair dryer, tea\\/coffee maker, mini bar, LCD television, direct dial telephone and bathroom amenities. null\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=a12Wzatglc1nsUWIgtWXhATD\\/DSE6+F3VeSPbME9pCW4oSWIlL1Tr0fW2keYZxRVU6Vy39rUVlgghxigwaDUWGmOmGDidJ3LX6Cb\\/YhIha4=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":736,\"Title\":\"Jakhoo Temple\",\"Description\":\"Jakhoo Temple is an ancient temple in Shimla dedicated to Hindu deity Hanuman.It is believed that this temple holds the footprints of Lord Hanuman. Jhakoo Temple is located on the Jakhoo Hill which is 2.5 km from the Ridge. It offers a beautiful views of the Shivalik Mountains and the nearby town of Sanjauli.According to Legends  Lord Hanuman stopped there to rest while he was searching for the Sanjivni Booti to revive Lakshmana in the Epic Ramayana. Every year  a big festival is held in the Temple on Dussehra.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1013414,\"Long\":77.1835041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Jakhoo_Temple_1_1518244811.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1031,\"Title\":\"Mahasu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":31.1014267999999,\"Long\":77.5031764,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/\\\\N                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2401,\"Title\":\"Kullu\",\"Description\":\"Kullu or Kulu is the capital town of the Kullu district in the Indian state of Himachal Pradesh. It is located on the banks of the Beas River in the Kullu Valley about 10 kilometres north of the airport at Bhuntar.\",\"CurrencyType\":0,\"CityId\":14570,\"CityName\":\"Kullu\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"Kullu_16593_1504604585.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1041,\"Title\":\"Mall Road\",\"Description\":\"The Mall Road is one of the most popular tourist attractions in Shimla that enfolds many hotels, restaurants, clubs, bars, banks, shops, offices, post offices, and tourist offices. People can walk up and down the Mall road slowly and enjoy the scenic views of the nature while sipping their favorite coffee. A lot of people gather at the Ridge and Scandal point on Mall road to meet and talk with friends, see the views of the Himalayan range and to do some shopping. The Mall road is connected to the Ridge at the Scandal point, where a statue of the nationalist leader Lala Lajpat Rai has been erected. \",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Mall_Road_16593_1504696789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":413921,\"Name\":\"Honeymoon Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.245608070862\",\"Long\":\"77.189798361938\",\"Address\":\"Left Bank, Aleo\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Honeymoon Inn in Manali, you&#039;ll be minutes from Rahala Falls and Tibetan Monastary.  This hotel is within close proximity of Hadimba Temple and Vashist Springs.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Stay in one of 59 guestrooms featuring LCD televisions. Your room comes with a memory foam bed. Complimentary wireless Internet access keeps you connected, and digital programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and rainfall showerheads.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and concierge services. Additional features at this hotel include an arcade\\/game room, a fireplace in the lobby, and a picnic area.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Grab a bite to eat at the hotel&#039;s restaurant, where you can take in a garden view, or stay in and take advantage of 24-hour room service. Breakfast is available for a fee.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/1d\\/5f\\/1d5fb7f7dd6d4e56643ad665de553960e9948c33.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":474327,\"Name\":\"3* Manali Heights\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":474651,\"Name\":\"4*Mastiff Grand (Earlier Citrus Resort)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":736,\"Title\":\"Jakhoo Temple\",\"Description\":\"Jakhoo Temple is an ancient temple in Shimla dedicated to Hindu deity Hanuman.It is believed that this temple holds the footprints of Lord Hanuman. Jhakoo Temple is located on the Jakhoo Hill which is 2.5 km from the Ridge. It offers a beautiful views of the Shivalik Mountains and the nearby town of Sanjauli.According to Legends  Lord Hanuman stopped there to rest while he was searching for the Sanjivni Booti to revive Lakshmana in the Epic Ramayana. Every year  a big festival is held in the Temple on Dussehra.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1013414,\"Long\":77.1835041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Jakhoo_Temple_1_1518244811.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1031,\"Title\":\"Mahasu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":31.1014267999999,\"Long\":77.5031764,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/\\\\N                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2401,\"Title\":\"Kullu\",\"Description\":\"Kullu or Kulu is the capital town of the Kullu district in the Indian state of Himachal Pradesh. It is located on the banks of the Beas River in the Kullu Valley about 10 kilometres north of the airport at Bhuntar.\",\"CurrencyType\":0,\"CityId\":14570,\"CityName\":\"Kullu\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"Kullu_16593_1504604585.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1041,\"Title\":\"Mall Road\",\"Description\":\"The Mall Road is one of the most popular tourist attractions in Shimla that enfolds many hotels, restaurants, clubs, bars, banks, shops, offices, post offices, and tourist offices. People can walk up and down the Mall road slowly and enjoy the scenic views of the nature while sipping their favorite coffee. A lot of people gather at the Ridge and Scandal point on Mall road to meet and talk with friends, see the views of the Himalayan range and to do some shopping. The Mall road is connected to the Ridge at the Scandal point, where a statue of the nationalist leader Lala Lajpat Rai has been erected. \",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Mall_Road_16593_1504696789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":5765,\"Title\":\"Chandigarh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":60354,\"Name\":\"Lemon Tree Chandigarh\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7021049\",\"Long\":\"76.8000091\",\"Address\":\"Plot No. 3 MW Industrial Area Phase I\"},\"Images\":{\"Image\":[{\"ImagId\":1311822,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/63\\/LTIXCCHA01_C.jpg\"},{\"ImagId\":1311823,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/86\\/LTIXCCHA03_A.jpg\"},{\"ImagId\":1311824,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/95\\/LTIXCCHA03_(2)_A.jpg\"},{\"ImagId\":1311825,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/452\\/6.37.01.12_Conference_room_A.jpg\"},{\"ImagId\":1311826,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/461\\/6.37.01.05_Executive_room_A.jpg\"},{\"ImagId\":1311827,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/470\\/6.37.01.13_Life_Fitness_gym_A.jpg\"},{\"ImagId\":1311828,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/479\\/6.37.01.11_Slounge_A.jpg\"},{\"ImagId\":1311829,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/77\\/LTIXCCHA02_A.jpg\"},{\"ImagId\":1311830,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/425\\/6.37.01.09_Executive_suite_2_A.jpg\"},{\"ImagId\":1311831,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/434\\/6.37.01.08_Executive_suite_A.jpg\"},{\"ImagId\":1311832,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/443\\/6.37.01.10_Citrus_Cafe_A.jpg\"},{\"ImagId\":1311833,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/193\\/LTIXCCHA04_(5)_A.jpg\"},{\"ImagId\":1311834,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/104\\/LTIXCCHA04_A.jpg\"},{\"ImagId\":1311835,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/113\\/LTIXCCHA04_(1)_A.jpg\"},{\"ImagId\":1311836,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/151\\/LTIXCCHA04_(2)_A.jpg\"},{\"ImagId\":1311837,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/166\\/LTIXCCHA04_(3)_A.jpg\"},{\"ImagId\":1311838,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/362\\/6.37.01.14_Swimming_Pool_A.jpg\"},{\"ImagId\":1311839,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/371\\/6.37.01.01_Facade_C.jpg\"},{\"ImagId\":1311840,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/380\\/6.37.01.02_Reception_A.jpg\"},{\"ImagId\":1311841,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/389\\/6.37.01.06_Studio_room_A.jpg\"},{\"ImagId\":1311842,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/398\\/6.37.01.03_Lobby_seating_A.jpg\"},{\"ImagId\":1311843,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/407\\/6.37.01.07_Bathroom%2C_Studio_A.jpg\"},{\"ImagId\":1311844,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/720\\/416\\/6.37.01.04_Superior_room_A.jpg\"},{\"ImagId\":1311845,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/184\\/LTIXCCHA04_(4)_A.jpg\"}]},\"CityId\":5765,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/44\\/510\\/63\\/LTIXCCHA01_C.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimmin Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480579,\"Name\":\"4 By OYO - Chandigarh\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.6384661\",\"Long\":\"76.8224487\",\"Address\":\"Ambala Chandigarh Expy, Main Market, Zirakpur, Punjab 140603, India\"},\"Images\":[],\"CityId\":5765,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":480580,\"Name\":\"The Fern Residency\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7014738\",\"Long\":\"76.79117169999999\",\"Address\":\"28\\/8 Phase II, Industrial &amp; Business Park, Industrial Area Phase II, Chandigarh, 160002, India\"},\"Images\":[],\"CityId\":5765,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":353,\"Title\":\"Christ Church\",\"Description\":\"Christ Church is the second oldest church in North India.It was built in Neo-Gothic style of architecture it took nearly thirteen years to construct it.. The Church have something unique and exciting which makes it the favourite destination of people of all age groups. The church literally glows when it is lighted up at night. while in winters it dons the look of a magnificent castle. This majestic church has appeared in a number of famous Bollywood movies such as Black and 3 Idiots makes it a popular tourist attraction that people love to visit.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1044384,\"Long\":77.1734606,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Christ_Church_1_1518247962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":736,\"Title\":\"Jakhoo Temple\",\"Description\":\"Jakhoo Temple is an ancient temple in Shimla dedicated to Hindu deity Hanuman.It is believed that this temple holds the footprints of Lord Hanuman. Jhakoo Temple is located on the Jakhoo Hill which is 2.5 km from the Ridge. It offers a beautiful views of the Shivalik Mountains and the nearby town of Sanjauli.According to Legends  Lord Hanuman stopped there to rest while he was searching for the Sanjivni Booti to revive Lakshmana in the Epic Ramayana. Every year  a big festival is held in the Temple on Dussehra.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1013414,\"Long\":77.1835041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Jakhoo_Temple_1_1518244811.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1672,\"Title\":\"St. Michael&acirc;&euro;&trade;s Church\",\"Description\":\"St Michaels Cathedral in Shimla is a throwback to the Victorian era, dating back to 1886. The interiors of the cathedral are decorated in typical French- Gothic style architecture. Currently, the cathedral can hold a service of at least 400 people. Like other churches in India, St. Michael&amp;#039;s Cathedral incorporates a nave, a vestry, a confessional room, a baptistery room and two aisles. Organ in the church is considered to be the finest in North India.St. Michael&amp;#039;s Cathedral was once acknowledged as the &amp;#039;Ripon Place&amp;#039; because the building was in a construction process when Lord Ripon (1880-1884) was the Viceroy of India. It was the first Roman-Catholic church to be built in the hill station and was designed under the guidance of Henry Irwin, the then Superintendent Engineer and Architect of PWD in Shimla. All thanks to its beauty, grandeur and mirror work, the church is a great sight to look at moreover, it attracts devotees from all over India.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1048145,\"Long\":77.1734033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/St._Michael&acirc;&euro;&trade;s_Church_1_1530091691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1031,\"Title\":\"Mahasu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":31.1014267999999,\"Long\":77.5031764,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/\\\\N                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2401,\"Title\":\"Kullu\",\"Description\":\"Kullu or Kulu is the capital town of the Kullu district in the Indian state of Himachal Pradesh. It is located on the banks of the Beas River in the Kullu Valley about 10 kilometres north of the airport at Bhuntar.\",\"CurrencyType\":0,\"CityId\":14570,\"CityName\":\"Kullu\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"Kullu_16593_1504604585.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him\\u0101layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1041,\"Title\":\"Mall Road\",\"Description\":\"The Mall Road is one of the most popular tourist attractions in Shimla that enfolds many hotels, restaurants, clubs, bars, banks, shops, offices, post offices, and tourist offices. People can walk up and down the Mall road slowly and enjoy the scenic views of the nature while sipping their favorite coffee. A lot of people gather at the Ridge and Scandal point on Mall road to meet and talk with friends, see the views of the Himalayan range and to do some shopping. The Mall road is connected to the Ridge at the Scandal point, where a statue of the nationalist leader Lala Lajpat Rai has been erected. \",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Mall_Road_16593_1504696789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1482,\"Title\":\"Roerich Art Gallery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.1139526,\"Long\":77.1643337,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3778\\/thumb\\/Nicholas Roerich Art Gallery_260.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"179616\",\"Title\":\"Day 01 \\u2013Arrival in Delhi \\u2013Drive to Shimla (340 kms \\/ approx. 7hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Delhi and proceed to Shimla -abounds in natural bounty and looks picture perfect. The small hill station amidst the lofty snow-clad Himalayan ranges, surrounded by lakes and lush green pastures looks as though an artist has painted them. The unique thing about Shimla is that it still retains its colonial charm. Check-in at the hotel and spend the evening at leisure. Overnight stay in Shimla.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":219762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":212187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219799,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179619\",\"Title\":\"Day 02 \\u2013Trip to Kufri\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Drive to Kufri after breakfast. This is a popular picnic spot located 16km from Shimla. You may hike on foot to the Mahasu Peak or pay for a mule ride up the hill. Mahasu is the tallest peak in Kufri that gives tourists an amazing view of distant snow-capped peaks. In the afternoon return to Shimla and visit Viceregal Lodge, Christ Church, St. Michael&#39;s Cathedral (Subject to availability due to Current restriction -COVID 19), and visitJakhu the temple. In the evening, take a walk on Shimla&rsquo;s famous boulevard, Mall Road. See fine specimens of colonial architecture, snack at the various eateries in the market, or shop for souvenirs. Overnight stay in Shimla.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":219762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":212187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219799,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":353,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":736,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1672,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1874,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1031,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179622\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179625\",\"Title\":\"Day 03 \\u2013Shimla \\u2013Kullu \\u2013Manali (280 kms \\/ approx. 6.5 hours)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, check-out from the hotel and drive to Manali. On the way enjoy Kullu sightseeing. It is the valley of gods, or the &lsquo;habitable end of the world&rsquo;, as the Kullu valley has come to be known, spreads out its charm on either side of the upper reaches of the river Beas. This valley is famous for the beauty and its majestic hills covered with Pine and Deodar forest sand sprawling apple orchards. Kullu valley is sandwiched between the Pir Panjal, Lower Himalayan, and Great Himalayan ranges. The valley is only 80 km long and 2 km at its broadest, yet a fairly wide area is open to the visitors to enjoy the spectacle of variegated mountain scenery. Later proceed to Manali &amp; it offers super views of the Dhauladhar and Pir Panjal ranges, and with mountain adventures beckoning from all directions, Manali is a year-round magnet for tourists. Apart from temples, Manali is popular among adventure tourists coming for trekking, paragliding, rafting, and skiing. Upon arrival, check-in at the hotel and spend the evening at leisure. Overnight stay in Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2401,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179628\",\"Title\":\"Day04 \\u2013Sightseeing in Manali\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>In the morning after breakfast, go on an adventurous drive to Solang valley &ndash;a major attraction, without which the trip remains incomplete. All the above-mentioned adventure activities can be availed here at Solang Valley. Apart from activities, there are splendid views to enjoy in and around the Solang Valley. Later, today visit the popular Hadimba Temple, Naggar Castle, and Art gallery. In the evening, go for a walk along Mall Road. Overnight stay in Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":630,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1041,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1175,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1482,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179631\",\"Title\":\"Day 05 \\u2013Rohtang Pass & Atal Tunnel\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, we shall move to Rohtang pass (13,050ft) via Kothi, Gulaba, Beas Nala and Marhi. Spend some time at Rohtang pass and then continue your journey to Koksarafter descending down from the opposite side. En-route lunch (at own), we shall move to the northern end (North Portal) of the Atal tunnel after crossing the Chandra bridge. Enjoy traversing the world&rsquo;s longest highway tunnel above 10,000ft from sea level. The tunnel is equipped with ultra-modern safety and other technical instruments. You will not lose your mobile network and high-speed 4G internet (BSNL only) even inside the tunnel. Then you will exit the tunnel from its southern end (South portal) at Dhundi. You will observe that you had entered the tunnel from the barren but beautiful land of Lahaul and exited at the green place at Dhundi. Then continue your trip to Solang valley. After spending some time at Solang, return back to Manali. At Solang, you can enjoy Gondola rides (ropeway), horse riding, zorbing, paragliding, ATV ride, and many more adventure activities. Overnight stay in Manali.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":474327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":474651,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1485,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179634\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179637\",\"Title\":\"Day 06 \\u2013Drive from Manali \\u2013Chandigarh (300 kms \\/ approx. 8 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, drive towards Chandigarh and check-in at the hotel. If time permits, visit Nek Chand&#39;s Rock Garden which consists of man-made interlinked waterfalls and many other sculptures that have been made of scrap &amp; other kinds of wastes materials. Overnight stay in Chandigarh<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5765,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480579,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480580,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":60354,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"179640\",\"Title\":\"Day 07 \\u2013Drive From Chandigarh\\u2013Delhi (240 kms \\/ approx. 5 hours) Departure from Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast, you will be transferred to Delhi airport for return flight back home<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5765,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25064\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24050.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19730,\"priceDoubleOcc\":\"24050.25\",\"priceSingleOcc\":48100.5,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24050.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19730,\"priceDoubleOcc\":\"24050.25\",\"priceSingleOcc\":48100.5,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24050.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19730,\"priceDoubleOcc\":\"24050.25\",\"priceSingleOcc\":48100.5,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24050.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19730,\"priceDoubleOcc\":\"24050.25\",\"priceSingleOcc\":48100.5,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24050.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19730,\"priceDoubleOcc\":\"24050.25\",\"priceSingleOcc\":48100.5,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24050.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22596,\"priceDoubleOcc\":\"28350.00\",\"priceSingleOcc\":52400.25,\"priceExtraBed\":\"11088.00\",\"priceWithoutBed\":\"6678.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25065\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28046.55\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23200,\"priceDoubleOcc\":\"28046.55\",\"priceSingleOcc\":56093.1,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28046.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23200,\"priceDoubleOcc\":\"28046.55\",\"priceSingleOcc\":56093.1,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28046.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23200,\"priceDoubleOcc\":\"28046.55\",\"priceSingleOcc\":56093.1,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28046.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23200,\"priceDoubleOcc\":\"28046.55\",\"priceSingleOcc\":56093.1,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28046.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23200,\"priceDoubleOcc\":\"28046.55\",\"priceSingleOcc\":56093.1,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28046.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26067,\"priceDoubleOcc\":\"32346.30\",\"priceSingleOcc\":60392.85,\"priceExtraBed\":\"13507.20\",\"priceWithoutBed\":\"11491.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32346.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33273.45\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27777,\"priceDoubleOcc\":\"33273.45\",\"priceSingleOcc\":66546.9,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33273.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27777,\"priceDoubleOcc\":\"33273.45\",\"priceSingleOcc\":66546.9,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33273.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27777,\"priceDoubleOcc\":\"33273.45\",\"priceSingleOcc\":66546.9,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33273.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27777,\"priceDoubleOcc\":\"33273.45\",\"priceSingleOcc\":66546.9,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33273.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":27777,\"priceDoubleOcc\":\"33273.45\",\"priceSingleOcc\":66546.9,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33273.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30643,\"priceDoubleOcc\":\"37573.20\",\"priceSingleOcc\":70846.65,\"priceExtraBed\":\"16783.20\",\"priceWithoutBed\":\"14137.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37573.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25064\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22905.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18790,\"priceDoubleOcc\":\"22905.00\",\"priceSingleOcc\":45810,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18790,\"priceDoubleOcc\":\"22905.00\",\"priceSingleOcc\":45810,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18790,\"priceDoubleOcc\":\"22905.00\",\"priceSingleOcc\":45810,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18790,\"priceDoubleOcc\":\"22905.00\",\"priceSingleOcc\":45810,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18790,\"priceDoubleOcc\":\"22905.00\",\"priceSingleOcc\":45810,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22905.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21520,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":49905,\"priceExtraBed\":\"10560.00\",\"priceWithoutBed\":\"6360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25065\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26711.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22095,\"priceDoubleOcc\":\"26711.00\",\"priceSingleOcc\":53422,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26711.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22095,\"priceDoubleOcc\":\"26711.00\",\"priceSingleOcc\":53422,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26711.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22095,\"priceDoubleOcc\":\"26711.00\",\"priceSingleOcc\":53422,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26711.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22095,\"priceDoubleOcc\":\"26711.00\",\"priceSingleOcc\":53422,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26711.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22095,\"priceDoubleOcc\":\"26711.00\",\"priceSingleOcc\":53422,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26711.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24825,\"priceDoubleOcc\":\"30806.00\",\"priceSingleOcc\":57517,\"priceExtraBed\":\"12864.00\",\"priceWithoutBed\":\"10944.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30806.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31689.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26454,\"priceDoubleOcc\":\"31689.00\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31689.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26454,\"priceDoubleOcc\":\"31689.00\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31689.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26454,\"priceDoubleOcc\":\"31689.00\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31689.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26454,\"priceDoubleOcc\":\"31689.00\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31689.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26454,\"priceDoubleOcc\":\"31689.00\",\"priceSingleOcc\":63378,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31689.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-03\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":29184,\"priceDoubleOcc\":\"35784.00\",\"priceSingleOcc\":67473,\"priceExtraBed\":\"15984.00\",\"priceWithoutBed\":\"13464.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35784.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"179616\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[179616],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179619\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[179619],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179622\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179622],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179625\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[179625],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179628\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[179628],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179631\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[179631],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179634\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179634],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179637\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[179637],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"179640\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[179640],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shimla,Manali,Chandigarh','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali,Chandigarh,Delhi,Kullu,Kufri','','1,16593,5765',22905,37573,6,'107_1623324566_0.jpg,107_1623324566_1.jpg,107_1623324566_2.jpg',NULL,'[{\"day\":1,\"images\":\"shimla.jpg\"},{\"day\":2,\"images\":\"Kufri.jpg\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"road from manali.jpg\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-04-15 00:00:00','2021-07-02 00:00:00','2021-07-02 00:00:00',3,'India','101','2023-08-25 15:27:45','2021-04-15 00:00:00',1,1,'0','0','0','','','',NULL,'heady-himachal-ii',NULL,NULL,NULL,0),(108,25442,1,5293,0,0,0,'Adventure,Wildlife,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":25442,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-12-28\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"tets \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Helicopter\",\"PackageType\":\"Adventure,Wildlife,Beach,Family\",\"Validity\":{\"From\":\"2021-04-15\",\"To\":\"2021-12-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3160,\"Title\":\"Abu Dhabi city tour with Ferrari world\",\"Description\":\"After breakfast at hotel get ready  08:30 Am for Abu Dhabi City Tour: Drive around Abu Dhabi City on a tour Cab, and pay a visit to the Grand Mosque while you&amp;#039;re in the city. \\r\\n\\r\\nFerrari World: Visit the famous Ferrari World at Yas Island, a one-of-its-kind Ferrari theme park! Experience exciting rides, drives, games and shows for a true F1 experience.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4851552,\"Long\":54.6075651,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Abu_Dhabi_city_tour_with_Ferra_8219_1519040949.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":18431,\"Title\":\"Atlantis Aquaventure\",\"Description\":\"&lt;p&gt;A tour to Aquaventure Water park for an action-packed day out amid adventurous rides, exhilarating slides and Master Blast water coasters that propel you up and down on streams of water, prior to rolling you down along tunnels and finally freeing you into the river. Occupying an area of about 42 acres of land on Palm Jumeirah &ndash; one of the key man-made attractions in Dubai, Aquaventure is the Middle East&rsquo;s largest water park that offers the ultimate in family fun and entertainment. Topping the list of its attractions is perhaps the Ziggurat &ndash; the 27.5 meters Leap of Faith body slide (approximately nine storeys high) that takes you through a flawless acrylic tube bounded by sharks and rays. Adjoining the Ziggurat is the Rapids, about two kilometres long adventure ride that serves as a sophisticated park transport system to enable you to drift along or return to the waterslides. The park offers a thrilling segment to allow you to indulge in a slew of marine adventure activities, such as shark safari, shark snorkelling, ray feeding and diving (at additional cost). The park also comprises a 700 meters private beach, along with facilities to enjoy a slew of water sport activities, such as sailing, windsurfing and sea kayaking.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3224,\"Title\":\"Bollywood Theme Park\",\"Description\":\"Enjoy the unforgettable experience of your favourite Bollywood blockbusters coming to life at Dubai&amp;rsquo;s one-of-a-kind Bollywood Park! Step into a fantastic cinematic world and explore the 5 zones: Bollywood Boulevard Mumbai Chowk Rustic Ravine Royal Plaza and Bollywood Film Studios.\\r\\n\\r\\nEnjoy cinematic simulation rides blockbuster attractions flamboyant live shows extraordinary entertainment fine dining street food and shop at numerous boutiques in a theme park dedicated to all things Bollywood!\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.920851,\"Long\":55.0093677,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/bollywood_theme_park_8219_1519026127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":18426,\"Title\":\"Dubai Aquarium &amp; Underwater Zoo\",\"Description\":\"&lt;p&gt;Dubai Aquarium &amp; Underwater Zoo is located at The Dubai Mall, the largest mall in the world. Rising to the third floor of The Dubai Mall, the aquarium is home to 140 species of sea life and offers many incredible ways to experience the underwater world. Don&rsquo;t miss the giant 10 million-litre tank at the Dubai Aquarium and Underwater Zoo, which contains more than 33,000 aquatic animals and the largest collection of sand tiger sharks including the 40 year old giant crocodile weighing 750 kg and measuring over 5m in length. Stroll through a 48m tunnel, with the aquarium enveloping you from overhead and around. It&rsquo;s a complete fish-eye view, with sand tiger sharks and stingrays swimming overhead.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":105,\"Title\":\"Abu Dhabi\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3160,\"Title\":\"Abu Dhabi city tour with Ferrari world\",\"Description\":\"After breakfast at hotel get ready  08:30 Am for Abu Dhabi City Tour: Drive around Abu Dhabi City on a tour Cab, and pay a visit to the Grand Mosque while you&amp;#039;re in the city. \\r\\n\\r\\nFerrari World: Visit the famous Ferrari World at Yas Island, a one-of-its-kind Ferrari theme park! Experience exciting rides, drives, games and shows for a true F1 experience.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4851552,\"Long\":54.6075651,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Abu_Dhabi_city_tour_with_Ferra_8219_1519040949.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":18431,\"Title\":\"Atlantis Aquaventure\",\"Description\":\"&lt;p&gt;A tour to Aquaventure Water park for an action-packed day out amid adventurous rides, exhilarating slides and Master Blast water coasters that propel you up and down on streams of water, prior to rolling you down along tunnels and finally freeing you into the river. Occupying an area of about 42 acres of land on Palm Jumeirah &ndash; one of the key man-made attractions in Dubai, Aquaventure is the Middle East&rsquo;s largest water park that offers the ultimate in family fun and entertainment. Topping the list of its attractions is perhaps the Ziggurat &ndash; the 27.5 meters Leap of Faith body slide (approximately nine storeys high) that takes you through a flawless acrylic tube bounded by sharks and rays. Adjoining the Ziggurat is the Rapids, about two kilometres long adventure ride that serves as a sophisticated park transport system to enable you to drift along or return to the waterslides. The park offers a thrilling segment to allow you to indulge in a slew of marine adventure activities, such as shark safari, shark snorkelling, ray feeding and diving (at additional cost). The park also comprises a 700 meters private beach, along with facilities to enjoy a slew of water sport activities, such as sailing, windsurfing and sea kayaking.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3224,\"Title\":\"Bollywood Theme Park\",\"Description\":\"Enjoy the unforgettable experience of your favourite Bollywood blockbusters coming to life at Dubai&amp;rsquo;s one-of-a-kind Bollywood Park! Step into a fantastic cinematic world and explore the 5 zones: Bollywood Boulevard Mumbai Chowk Rustic Ravine Royal Plaza and Bollywood Film Studios.\\r\\n\\r\\nEnjoy cinematic simulation rides blockbuster attractions flamboyant live shows extraordinary entertainment fine dining street food and shop at numerous boutiques in a theme park dedicated to all things Bollywood!\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.920851,\"Long\":55.0093677,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/bollywood_theme_park_8219_1519026127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":18426,\"Title\":\"Dubai Aquarium &amp; Underwater Zoo\",\"Description\":\"&lt;p&gt;Dubai Aquarium &amp; Underwater Zoo is located at The Dubai Mall, the largest mall in the world. Rising to the third floor of The Dubai Mall, the aquarium is home to 140 species of sea life and offers many incredible ways to experience the underwater world. Don&rsquo;t miss the giant 10 million-litre tank at the Dubai Aquarium and Underwater Zoo, which contains more than 33,000 aquatic animals and the largest collection of sand tiger sharks including the 40 year old giant crocodile weighing 750 kg and measuring over 5m in length. Stroll through a 48m tunnel, with the aquarium enveloping you from overhead and around. It&rsquo;s a complete fish-eye view, with sand tiger sharks and stingrays swimming overhead.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"182388\",\"Title\":\"Miracle Garden with Global Village \",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p><strong>MIRACLE GARDEN<\\/strong><\\/p>\\r\\n\\r\\n<p>Visit the biggest flower garden ever built in Dubai: the Miracle Garden!&nbsp;<br \\/>\\r\\nSee over 45 million flowers blooming in front of you.<br \\/>\\r\\nIt is a flower garden which occupies over 72,000 square metres, making it the world&#39;s largest natural flower garden featuring over 50 million flowers and 250 million plants.&nbsp;<\\/p>\\r\\n\\r\\n<p><strong>GLOBAL VILLAGE&nbsp;<\\/strong><\\/p>\\r\\n\\r\\n<p>Global Village is known as the world&#39;s largest tourism.<br \\/>\\r\\nThe best of Global Village is region&rsquo;s cultural and entertainment with unlimited fun, excitement and adventure.&nbsp;<br \\/>\\r\\nFrom children rides, family rides to thrilling rides; Global Village is extra great on the entertainment quotient.<\\/p>\\r\\n\\r\\n<p>It brings together the best of cultural offerings through 32 giant stalls and pavilions representing more than 75 countries with different cultures.&nbsp;<br \\/>\\r\\nThe food, the souvenirs, shopping, rides, and excitement all makes it a cosmopolitan and diverse experience for all.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3160,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2927,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18431,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3224,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182390\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":18426,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182392\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182394\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182396\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25442\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"1980.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1980,\"priceDoubleOcc\":\"1980.00\",\"priceSingleOcc\":3960,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1980.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1980,\"priceDoubleOcc\":\"1980.00\",\"priceSingleOcc\":3960,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1980.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1980,\"priceDoubleOcc\":\"1980.00\",\"priceSingleOcc\":3960,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1980.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2127,\"priceDoubleOcc\":\"2200.00\",\"priceSingleOcc\":4180,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2310.00\",\"priceSingleOcc\":4290,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2310.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2493,\"priceDoubleOcc\":\"2750.00\",\"priceSingleOcc\":4730,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25443\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"3410.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3410,\"priceDoubleOcc\":\"3410.00\",\"priceSingleOcc\":6820,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3410.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3410,\"priceDoubleOcc\":\"3410.00\",\"priceSingleOcc\":6820,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3410.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3410,\"priceDoubleOcc\":\"3410.00\",\"priceSingleOcc\":6820,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3410.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3483,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":6930,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3630,\"priceDoubleOcc\":\"3740.00\",\"priceSingleOcc\":7150,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3740.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3703,\"priceDoubleOcc\":\"3850.00\",\"priceSingleOcc\":7260,\"priceExtraBed\":\"3410.00\",\"priceWithoutBed\":\"3410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3850.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25442\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"1944.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1944,\"priceDoubleOcc\":\"1944.00\",\"priceSingleOcc\":3888,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1944.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1944,\"priceDoubleOcc\":\"1944.00\",\"priceSingleOcc\":3888,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1944.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":1944,\"priceDoubleOcc\":\"1944.00\",\"priceSingleOcc\":3888,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1944.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2088,\"priceDoubleOcc\":\"2160.00\",\"priceSingleOcc\":4104,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2160,\"priceDoubleOcc\":\"2268.00\",\"priceSingleOcc\":4212,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2268.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":2448,\"priceDoubleOcc\":\"2700.00\",\"priceSingleOcc\":4644,\"priceExtraBed\":\"1944.00\",\"priceWithoutBed\":\"1944.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25443\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"3348.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3348,\"priceDoubleOcc\":\"3348.00\",\"priceSingleOcc\":6696,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3348.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3348,\"priceDoubleOcc\":\"3348.00\",\"priceSingleOcc\":6696,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3348.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3348,\"priceDoubleOcc\":\"3348.00\",\"priceSingleOcc\":6696,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3348.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3420,\"priceDoubleOcc\":\"3456.00\",\"priceSingleOcc\":6804,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3456.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3564,\"priceDoubleOcc\":\"3672.00\",\"priceSingleOcc\":7020,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3672.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-16\",\"To\":\"2021-12-28\",\"Currency\":1,\"priceTripleOcc\":3636,\"priceDoubleOcc\":\"3780.00\",\"priceSingleOcc\":7128,\"priceExtraBed\":\"3348.00\",\"priceWithoutBed\":\"3348.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"8.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"182388\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[182388],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182390\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[182390],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182392\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[182392],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182394\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[182394],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182396\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[182396],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Dubai,Abu Dhabi','Dubai,Middle East,United Arab Emirates,Abu Dhabi',NULL,'8219,105',1944,3850,3,NULL,NULL,NULL,2,'',0,'2021-04-15 00:00:00','2021-12-28 00:00:00','2021-12-28 00:00:00',3,'United Arab Emirates','228','2021-04-15 17:36:01','2021-04-15 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'tets',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (109,25749,1,5293,0,0,0,'Family,Heritage,Culture',NULL,1,1,0,'{\"package\":{\"TPId\":25749,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ALBANIA_\\u2013_GREECE_\\u2013_MACEDONIA_ON_ALEKSANDER_THE_GREAT_PATH_34.jpg\",\"BookingValidUntill\":\"2021-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Discover the most beautiful sites in Albania, northern Greece and Macedonia - rich in architecture and history, with stunning archaeological sites that blend contemporary cultures with ancient civilization.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5439,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5439,\"DestinationPlaces\":\"Tirana\",\"DestinationPlacesSysId\":27345,\"SourcePlaces\":\"Kruja\",\"SourcePlaceSysId\":14527,\"AgencyName\":\"TRAVEL ALBANIA\",\"Name\":\"Albania \\u2013 Greece \\u2013 Macedonia On Aleksander The Great Path\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6243\",\"SupplierName\":\"TRAVEL ALBANIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Sightseeing\",\"PackageType\":\"Family,Heritage,Culture\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8366,\"Title\":\"Durres\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8366,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":29006,\"Title\":\"Vlore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":29006,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":24302,\"Title\":\"Saranda\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":24302,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":13384,\"Title\":\"Kalambaka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":13384,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":19969,\"Title\":\"Ohrid\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":19969,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":27345,\"Title\":\"Tirana\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":27345,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"185113\",\"Title\":\"AIRPORT - KRUJA - DURRES\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p><span style=\\\"color:black\\\">Upon arrival at the airport Mother Teresa, the group will be welcomed by our local guide. Depart for Kruja, a small town located in northeast of Tirana, 560 m above sea level. Kruja has been inhabited since the third century B.C. It was accredited for the first time as a Christian religious center in the year 879. The famous English painter Edward Lear, who visited Kruja in 1848, wrote: &quot;Kruja, a charming little town nestled in the sky.&quot; Visit the castle, its typical Ottoman bazaar, the Museum of Skanderbeg and the Ethnographic Museum. Continue to Durres. Sightseeing and free time for dinner. Hotel accommodation.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8366,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185114\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8366,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185115\",\"Title\":\"DURRES - BERAT - VLORE\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p><strong><span style=\\\"color:black\\\">08.00<\\/span><\\/strong><span style=\\\"color:black\\\"> Breakfast at the hotel. <\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">09.00-11.00:<\\/span><\\/strong><span style=\\\"color:black\\\"> Explore the city of Durres, one of the most ancient cities in Albania, which has the largest port in the country and is the second largest industrial center after Tirana. Durres is located on a small peninsula on the Adriatic coast. The city was colonized by the Greeks in 627 B.C. and was named Epidamnos, later becoming known as Dyrrachium. &nbsp;From the Venetian Tower near the harbor, the medieval city walls take you to the Roman amphitheater (capacity 15,000 spectators), the largest in the Balkans, dating back to the 2<\\/span><span style=\\\"color:black\\\">nd<\\/span><span style=\\\"color:black\\\"> century B.C. The amphitheater contains a Christian crypt with a rare mosaic. &nbsp;Durres has Roman and Byzantine ruins and a beautiful archaeological museum.&nbsp; <\\/span><\\/p>\\r\\n\\r\\n<p><span style=\\\"color:black\\\">Depart to Berat, followed by free time for lunch. &nbsp;Berat is called the &quot;city of a thousand windows&quot;, divided into an &quot;upper town&quot; of 14<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\"> century origin, rich in Byzantine churches; and a &quot;low town&quot;. adorned with numerous ancient mosques. Its famous districts are the Castle, Mangalemi, and Gorica. Even today, its citadel is inhabited by more than a thousand families. &nbsp;There are countless places of interest in and around the Castle, including early Christian churches, the Cathedral of Santa Maria, and the many mosques built in the 14<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\">, 15<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\">, and 16<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\"> centuries. Transfer to Vlora. <\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">18.30 to 19.00<\\/span><\\/strong><span style=\\\"color:black\\\"> A little tour of the old town of Vlora, Independence Square<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">19:10<\\/span><\\/strong><span style=\\\"color:black\\\"> check-in at the 4* hotel and free time for dinner.&nbsp; Overnight in Vlora<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29006,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185116\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29006,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185117\",\"Title\":\"VLORA \\u2013 GJIROKASTER -SARANDE\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p><strong><span style=\\\"color:black\\\">8.00<\\/span><\\/strong><span style=\\\"color:black\\\"> - Breakfast at the hotel<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">9.00 - 11.20<\\/span><\\/strong><span style=\\\"color:black\\\"> Transfer to the ancient city of Gjirokaster, UNESCO Heritage Site.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">11:30 - 15.30<\\/span><\\/strong><span style=\\\"color:black\\\"> Tour of Gjirokaster. &nbsp;&nbsp;Many houses in Gjirokaster have a local distinctive style with roofs covered in stone slabs, giving it the nickname &quot;City of Stones&quot;. Of great importance and interest &nbsp;are the&nbsp; castle, the Museum of Arms, the Ethnographic Museum &ndash; also known as Enver Hoxha&rsquo;s home &ndash; and the home of the Zekate family, an important Gjirokaster family. Lunch at the Cajupi restaurant, overlooking the Ancient City.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">16:00 - 17:00<\\/span><\\/strong><span style=\\\"color:black\\\"> Transfer to Saranda, stopping on the way to visit a Mesopotam Palone - Christian Byzantine Church. Hotel accommodation and overnight in Saranda.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185118\",\"Title\":\"SARANDA \\u2013 BUTRINTI \\u2013 SARANDA \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p><strong><span style=\\\"color:black\\\">08:00<\\/span><\\/strong><span style=\\\"color:black\\\"> - Breakfast at the hotel. Transfer to the archaeological park of Butrint.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">09.30 &ndash; 13.00<\\/span><\\/strong><span style=\\\"color:black\\\"> Tour of the archaeological area. Butrint was mentioned by Virgil in the Eneid. The city is located across the sea from the Greek island of Corfu, and is one of the most important archaeological sites in the Mediterranean, declared &quot;World Heritage&quot; by UNESCO. The city retains Greek ruins; imposing Roman monuments; an early Christian Church and an Ottoman fort. Butrint has been inhabited almost continuously, from the 8<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\"> century B.C. and played an important role in the first Peloponnesian War.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">13:00 to 15:00<\\/span><\\/strong><span style=\\\"color:black\\\"> Free time for lunch at a local restaurant near Ksamil Park. In the afternoon visit the city of Saranda. Hotel accommodation and overnight in Saranda.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185119\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185120\",\"Title\":\"SARANDA - IOANNINA - KALAMBAKA\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p><strong><span style=\\\"color:black\\\">07:30<\\/span><\\/strong><span style=\\\"color:black\\\"> - Breakfast at the hotel. &nbsp;Transfer to Ioannina, crossing the border into Greece, stopping along the way for a break.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">11:30 to 12:30<\\/span><\\/strong><span style=\\\"color:black\\\"> Tour of Ioannina, the largest city of the Epirus region. Built on the shore of Pamvotis Lake, 500 meters above sea level, the city charms all visitors with its beauty and the warm atmosphere. It is a city of 100,000 inhabitants with a centenary history. &nbsp;In all the streets and in all the squares there are traces of its culture and tradition.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">12:30 to 13:30<\\/span><\\/strong><span style=\\\"color:black\\\"> Lunch in Ioannina. Transfer to Kalambaka.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">16.00 to 18.30<\\/span><\\/strong><span style=\\\"color:black\\\"> Meteora Tour. Meteora is a religious place with many Byzantine churches and monasteries. It is formed by 24 churches placed on a great impervious rock formation, in the past almost inaccessible. The first churches were built for hermits and monks in order to isolate themselves from the rest of the world, others were built during the fourteenth and fifteenth century to refuge from the Ottomans. Hotel accommodation.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13384,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185121\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13384,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185122\",\"Title\":\"KALAMBAKA - BITOLA - OHRID\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p><strong><span style=\\\"color:black\\\">07:30<\\/span><\\/strong><span style=\\\"color:black\\\"> - Breakfast at the hotel.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">08:10 to 12:40<\\/span><\\/strong><span style=\\\"color:black\\\"> Transfer to Bitola, crossing the border into Macedonia. Stop for a break during the trip. Free time for lunch at a restaurant in Bitola.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">14.10 to 16.00<\\/span><\\/strong><span style=\\\"color:black\\\"> Heraklea Tour. &nbsp;Heraklea is famous for its mosaics, ancient theaters, and Roman baths. It is the best-preserved city of the ancient Macedonian empire in the country. Founded in the fourth century B.C., it was conquered by the Romans two centuries later. It was built on the Egnatia Road and became one of the major population centers of the trade route. From the fourth to the sixth century B.C., Heraclea was also an Episcopal center. The earliest excavations date back to the First World War when the ancient glories of the Old City were revealed. Magnificent Roman baths, the Episcopal center, the Baptistery, a Jew temple, portico and a Roman theater are now used for summer concerts and theater shows, preserved in excellent conditions.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">16.10 to 17.00<\\/span><\\/strong><span style=\\\"color:black\\\"> A short tour of the city of Bitola, famous for its churches, mosques and bells.<\\/span><\\/p>\\r\\n\\r\\n<p><span style=\\\"color:black\\\">Bitola was part of Serbia in the fourteenth century and until1912 was under Turkish rule. For many centuries, Muslims made up the majority of the population of this city, while villages were populated by Slavic Macedonians. Bitola was previously known as Monastiri<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">17.00 to 18.20<\\/span><\\/strong><span style=\\\"color:black\\\"> Trasfer to &nbsp;Ohrid. Overnight in Ohrid.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19969,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185123\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19969,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185124\",\"Title\":\"OHRID - TIRANA\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p><strong><span style=\\\"color:black\\\">08.00<\\/span><\\/strong><span style=\\\"color:black\\\"> Breakfast at the hotel. Transfer to the ancient city of Ohrid. Located on the shores of Lake Ohrid, the town was declared a World Heritage in 1980. Thanks to the efforts of St. Clement and St. Naum of Ohrid, the first pan-Slavic University in Europe was founded. The visit comprises of the Church of St Sofia (11<\\/span><span style=\\\"color:black\\\">th<\\/span><span style=\\\"color:black\\\"> century), the most important medieval monument in Macedonia with magnificent Byzantine frescoes, paintings, and the San Clemente church with the icon of the Annunciation.<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">12:30 to 14:00<\\/span><\\/strong><span style=\\\"color:black\\\"> Free time for lunch at one of the restaurants on Lake Ohrid<\\/span><\\/p>\\r\\n\\r\\n<p><strong><span style=\\\"color:black\\\">14.00 to 16.30<\\/span><\\/strong><span style=\\\"color:black\\\"> Transfer to Tirana, capital city of Albania. Visit of the city. &nbsp;Accommodation in a 4* Hotel.&nbsp; <\\/span><\\/p>\\r\\n\\r\\n<p>&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185125\",\"Title\":\"Tirana - Mother Teresa Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p><strong><span style=\\\"color:black\\\">08.00<\\/span><\\/strong><span style=\\\"color:black\\\">- Breakfast at hotel and free time in Tirana. Depart to the airport.<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25749\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"840.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":840,\"priceDoubleOcc\":\"840.00\",\"priceSingleOcc\":1680,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":840,\"priceDoubleOcc\":\"840.00\",\"priceSingleOcc\":1680,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":880,\"priceDoubleOcc\":\"900.00\",\"priceSingleOcc\":1740,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"900.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":1280,\"priceDoubleOcc\":\"1500.00\",\"priceSingleOcc\":2340,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":1280,\"priceDoubleOcc\":\"1500.00\",\"priceSingleOcc\":2340,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-03\",\"To\":\"2021-12-31\",\"Currency\":32,\"priceTripleOcc\":1413,\"priceDoubleOcc\":\"1700.00\",\"priceSingleOcc\":2540,\"priceExtraBed\":\"840.00\",\"priceWithoutBed\":\"840.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"185113\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[185113],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185114\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[185114],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185115\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[185115],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185116\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[185116],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185117\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[185117],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185118\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[185118],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185119\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[185119],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185120\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[185120],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185121\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[185121],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185122\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[185122],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185123\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[185123],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185124\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[185124],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185125\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[185125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Durres,Vlore,Saranda,Kalambaka,Ohrid,Tirana','Durres,Eastern Europe,Albania,Vlore,Saranda,Kalambaka,Greece,Ohrid,Macedonia,Tirana,Berat,Ioannina,Kruja,Vlora Valona',NULL,'8366,29006,24302,13384,19969,27345',840,1700,7,NULL,NULL,NULL,2,'',0,'2021-07-29 00:00:00','2021-12-31 00:00:00','2021-12-31 00:00:00',3,'Albania,Greece,Macedonia','2,86,129','2021-07-29 16:28:10','2021-07-29 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'albania-–-greece-–-macedonia-on-aleksander-the-great-path',NULL,NULL,NULL,0),(110,26920,1,5293,0,0,0,'Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26920,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/roadtrip_to_the_hills_of_nainital_1627037322.jpeg\",\"BookingValidUntill\":\"2021-10-21\",\"AdvBookingDays\":5,\"DETAILS\":\"&lt;p&gt;Drive-in Vacations!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Escape the city life with these incredible weekend mountain getaways.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"VIKRAM VINTAGE IN\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6578\",\"SupplierName\":\"Vikram Vintage Inn,\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-21\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481672,\"Name\":\"Vikram Vintage Inn\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Mallital, near Chamber&#039;s High Court, Nainital, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818339,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481672\\/5293_01619461302.jpg\"}]},\"CityId\":18892,\"Brief\":\"&lt;p&gt;Situated 6800 feet above sea level in the magnificent Himalayas, Vikram Vintage Inn at Nainital offers comfort and serenity combined with all modern amenities. Elegant surroundings, efficient services and best of cuisines combined with the pristine beauty of the Kumaon Hills, make it a perfect destination for a holiday or a business conference.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located about one kilometre away from the Mall Road, Vikram Vintage Inn offers a perfect blend of serenity with excitement of the Mall Road closeby.&lt;br \\/&gt;\\r\\nCome and enjoy the lavish views from the 42 spacious, well-appointed rooms and suites. Vikram Vintage Inn, one of the finest luxury hotels in Nainital is well equipped with modern facilities for the comfort of the guests making your accommodation in Nainital a relaxing one. Special emphasis is put on maintaining the heritage value along with modern state of art amenities. The rooms and suites are spacious and well furnished with modern decor that adds to the delight of travellers and make their stay a memorable one.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481672\\/5293_1ab9e190db13779792ea5ba38b372f3b1619461302.png\",\"AccoAminitiesMask\":\"1110010010001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6578,\"SupplierName\":\"Vikram Vintage Inn,\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"192981\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"192983\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"192985\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481672,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare &amp;amp; Transpotation changes&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation for 02Night\\/3Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Compleimentry pick up &amp;amp; Drop from Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8210\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"192981\":[{\"Sequence\":[0],\"TPInvnSysId\":[192981],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"192983\":[{\"Sequence\":[0],\"TPInvnSysId\":[192983],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"192985\":[{\"Sequence\":[0],\"TPInvnSysId\":[192985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'110_1627364189_0.jpg,110_1627364189_1.jpg,110_1627364189_2.jpg,110_1627364189_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-21 00:00:00','2021-10-21 00:00:00',3,'India','101','2023-08-25 14:03:48','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'vikram-vintage-in',NULL,NULL,NULL,0),(111,26928,1,5293,0,0,0,'Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26928,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/cygnett_resort_mountain_breeze_1627041052.jpg\",\"BookingValidUntill\":\"2021-10-21\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A must halt before excursions of amazing Nainital, Cygnette Resort Mountain Breeze offers an exceptional blend of luxury &amp;amp; comfort to travellers.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"Cygnett Resort Mountain Breeze\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6580\",\"SupplierName\":\"Cygnett Resort Mountain Breeze\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"B\\/fast & Dinner\",\"PackageType\":\"Road Trip\",\"Validity\":{\"From\":\"2021-07-23\",\"To\":\"2021-10-21\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193000\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193001\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193002\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193011\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193012\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"26928\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":2640,\"priceDoubleOcc\":\"2640.00\",\"priceSingleOcc\":5280,\"priceExtraBed\":\"2640.00\",\"priceWithoutBed\":\"2640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or&amp;nbsp;Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8212\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193000\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193001\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193001],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193002\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193002],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193011\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193011],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193012\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[193012],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India',NULL,'18892',2640,2640,4,NULL,NULL,NULL,2,'',0,'2021-07-23 00:00:00','2021-10-21 00:00:00','2021-10-21 00:00:00',3,'India','101','2021-07-23 17:50:39','2021-07-23 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'cygnett-resort-mountain-breeze',NULL,NULL,NULL,0),(112,26933,1,5293,0,0,0,'Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26933,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/cygnett_resort_mountain_breeze_1627043022.jpg\",\"BookingValidUntill\":\"2021-07-26\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A must halt before excursions of amazing Nainital, Cygnette Resort Mountain Breeze offers an exceptional blend of luxury &amp;amp; comfort to travellers.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\" Cygnett Resort Mountain Breeze\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6580\",\"SupplierName\":\"Cygnett Resort Mountain Breeze\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"B\\/fast & Lunch\",\"PackageType\":\"Road Trip\",\"Validity\":{\"From\":\"2021-08-23\",\"To\":\"2021-07-26\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193122\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193123\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193124\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26933\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5280.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-26\",\"To\":\"2021-07-26\",\"Currency\":1,\"priceTripleOcc\":3960,\"priceDoubleOcc\":\"5280.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"1320.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation for 02Night\\/3Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Compleimentry pick up &amp;amp; Drop from Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8213\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193122\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193122],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193123\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193123],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193124\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193124],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',5280,5280,2,'112_1627368944_0.jpg,112_1627368944_1.jpg,112_1627368944_2.jpg,112_1627368944_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"}]',2,'',0,'2021-08-23 00:00:00','2021-07-26 00:00:00','2021-07-26 00:00:00',3,'India','101','2021-09-03 16:42:19','2021-08-23 00:00:00',1,1,'0','0','0','','','',NULL,'cygnett-resort-mountain-breeze',NULL,NULL,NULL,0),(113,26957,1,5293,0,0,0,'Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26957,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_classic_the_mall_1627290510.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL CLASSIC THE MALL \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6608\",\"SupplierName\":\"Hotel Classic The Mall - Nainital \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483796,\"Name\":\"Classic The Mall\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nainital Mall Road, Nainital ( Uttarakhand )\"},\"Images\":{\"Image\":[{\"ImagId\":4818896,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483796\\/5293_01626629276.jpg\"}]},\"CityId\":18892,\"Brief\":\"&lt;p&gt;The pivot of this hilltown is the Naini Lake. Its suitable yet pristine glory is manifested in the lofty snow-capped peaks, green valleys and serene lakes.Centrally Located on the Mall Road with splendid views of the Naini Lake and 25 Lake facing Rooms which offers ceaseless feast for your eyes. Family Cottages also available.One of the most sought-after summer destinations of India is Nainital. Set around a tal or lake, this is a small town with cottage-like houses and steep mountains covered with green forests. The charming hill station of Uttar Pradesh has many villas, bungalows, and a number of other sites of tourist importance. Situated at an altitude of 1,938 meters, the actual elevation starts from Kathgodam that covers an area of 30 km, giving it a rise of almost 1,300 meters till it reaches Nainital.The road follows the Balaya stream while gradually rising upwards to reach the main Nainital town. According to the local legends, the name of the place has been derived from the Naini Lake that lies just in the middle of the town. This lake is also called Tririshi Lake. Another belief says that the name of the city has been derived from the famous temple of goddess Naina.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483796\\/5293_335d71bf8059c0275f85e04be7fee2651626629276.jpg\",\"AccoAminitiesMask\":\"111000000000110000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6608,\"SupplierName\":\"Hotel Classic The Mall - Nainital \",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193148\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193150\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193152\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483796,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation for 02Night\\/3Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8298\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193148\":[{\"Sequence\":[0],\"TPInvnSysId\":[193148],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193150\":[{\"Sequence\":[0],\"TPInvnSysId\":[193150],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193152\":[{\"Sequence\":[0],\"TPInvnSysId\":[193152],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'113_1627366670_0.jpg,113_1627366670_1.jpg,113_1627366670_2.jpg,113_1627366670_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:03:35','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-classic-the-mall',NULL,NULL,NULL,0),(114,26966,1,5293,0,0,0,'Wildlife,Family,Hill Station,Weekend,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26966,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/la_niwasa_by_shivraj_1627293128.jpg\",\"BookingValidUntill\":\"2021-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"LA NIWASA BY SHIVRAJ\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6610\",\"SupplierName\":\"La Niwasa by Shivraj\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Wildlife,Family,Hill Station,Weekend,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483860,\"Name\":\"Hotel La niwasa by  Shivraj\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"near High Court Mallital Nainital, Uttarakhand 263001 India\"},\"Images\":{\"Image\":[{\"ImagId\":4818908,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483860\\/5293_01626784828.jpg\"}]},\"CityId\":18892,\"Brief\":\"&lt;p&gt;La Niwasa is new property in nanital with 25 rooms all of them with attached balcony . 20 rooms have beautiful hill view from the room amd balcony 5 of them are our executive suites . La Niwasa has indoor and open air dinning area . La Niwasa is 1.5 kms away from the Mall Road, well-located, yet away from the maddening crowd.&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483860\\/5293_fe6ce70bcd6b3ec6b0e47598ffad2f561626784828.jpg\",\"AccoAminitiesMask\":\"111001000010110000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6610,\"SupplierName\":\"La Niwasa by Shivraj\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Non view room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193186\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Non view room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Hill View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193188\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Non view room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Hill View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193190\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Non view room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Hill View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation for 02Night\\/3Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8214\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193186\":[{\"Sequence\":[0],\"TPInvnSysId\":[193186],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193188\":[{\"Sequence\":[0],\"TPInvnSysId\":[193188],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193190\":[{\"Sequence\":[0],\"TPInvnSysId\":[193190],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'114_1627368860_0.jpg,114_1627368860_1.jpg,114_1627368860_2.jpg,114_1627368860_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-11-30 00:00:00','2021-11-30 00:00:00',3,'India','101','2023-08-25 14:03:10','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'la-niwasa-by-shivraj',NULL,NULL,NULL,0),(115,26979,1,5293,0,0,0,'Wildlife,Family,Hill Station,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26979,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/bhikampur_lodge_by_howard_\\u00e2\\u20ac\\u201c_nainital_1627300827.webp\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6617\",\"SupplierName\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Wildlife,Family,Hill Station,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484025,\"Name\":\"Bhikampur Lodge By Howard\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.3838559\",\"Long\":\"79.4576218\",\"Address\":\"Raj Bhawan Rd, near DSB College, Tallital, Nainital, Uttarakhand 263001, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6617,\"SupplierName\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\",\"priceaditionals\":null,\"RoomTypeName\":\"Classic Room \",\"MealTypeName\":\"HB\"},{\"RefHotelId\":484026,\"Name\":\"Bhikampur Lodge By Howard\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.3838559\",\"Long\":\"79.4576218\",\"Address\":\"Raj Bhawan Rd, near DSB College, Tallital, Nainital, Uttarakhand 263001, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6617,\"SupplierName\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\",\"priceaditionals\":null,\"RoomTypeName\":\"Signature Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193295\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484026,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193297\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484026,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193299\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484026,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193295\":[{\"Sequence\":[0],\"TPInvnSysId\":[193295],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193297\":[{\"Sequence\":[0],\"TPInvnSysId\":[193297],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193299\":[{\"Sequence\":[0],\"TPInvnSysId\":[193299],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'115_1627370480_0.jpg,115_1627370480_1.jpg,115_1627370480_2.jpg,115_1627370480_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:02:49','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'bhikampur-lodge-by-howard-–-nainital',NULL,NULL,NULL,0),(116,27007,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":27007,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_chevron_fairhavens_nainital_1627370202.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL CHEVRON FAIRHAVENS, NAINITAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6632\",\"SupplierName\":\"Hotel Chevron Fairhavens, Nainital\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":354550,\"Name\":\"Hotel Chevron Fairhavens\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.394478447759\",\"Long\":\"79.451737763716\",\"Address\":\"Next To Head Post Office, Adjacent to Head Post Office\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Chevron Fairhavens in Nainital, you&#039;ll be on a lake and minutes from Kranteshwar Mahadev Temple, and close to Naina Devi Temple.  This historic hotel is within close proximity of Nainital Lake and Goddess Naina Devi.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 30 guestrooms. Cable television is provided for your entertainment.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and wedding services. Guests can catch a ride on the complimentary shuttle, which operates within 1 km.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a satisfying meal at a restaurant serving guests of Chevron Fairhavens.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include express check-in, express check-out, and a 24-hour front desk. Event facilities at this hotel consist of a conference center and a meeting room. Free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/56\\/a6\\/56a626f90756bc2e7f1eb854dff9a1fa0f2f759b.jpg\",\"AccoAminitiesMask\":\"1110000000001101100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6632,\"SupplierName\":\"Hotel Chevron Fairhavens, Nainital\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193493\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Emperor Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193495\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Emperor Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193497\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":354550,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Emperor Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8316\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193493\":[{\"Sequence\":[0],\"TPInvnSysId\":[193493],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193495\":[{\"Sequence\":[0],\"TPInvnSysId\":[193495],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193497\":[{\"Sequence\":[0],\"TPInvnSysId\":[193497],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'116_1627472132_0.jpg,116_1627472132_1.jpg,116_1627472132_2.jpg,116_1627472132_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:02:33','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-chevron-fairhavens-nainital',NULL,NULL,NULL,0),(117,27020,1,5293,0,0,0,'Wildlife,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27020,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/dynasty_resorts_1627379628.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Nainital\",\"SourcePlaceSysId\":18892,\"AgencyName\":\"I Need Trip\",\"Name\":\"Dynasty Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6634\",\"SupplierName\":\"Dynasty Resorts\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"B\\/fast & Dinner\",\"PackageType\":\"Wildlife,Hill Station,Leisure\",\"Validity\":{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483795,\"Name\":\"Dynasty Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nainital Road, KalaDungi, Dist Nainital, Khurpatal, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818895,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483795\\/5293_01626602237.jpg\"}]},\"CityId\":18892,\"Brief\":\"&lt;p&gt;&lt;strong&gt;Dynasty Resort, Khurpatal 10 Km from Nainital&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set in a valley overlooking Khurpatal Lake, this airy hotel in a European-style villa is 10 km from both Nainital Lake and Naina Devi Temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegant, fan-cooled rooms feature sitting areas, flat-screen TVs and kitchenettes, plus tea and coffeemaking facilities. Upgrades add sofas and scenic views, while suites add living rooms. Some have HDTVs. Room service is available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast and parking are included. There&amp;#39;s also a restaurant, an exercise room and a game room with a pool table. Other amenities include a play area and a spa.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483795\\/5293_1e1e4fd3d13d6ed01707a2f7be077ffe1626602237.png\",\"AccoAminitiesMask\":\"111010000000110100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6634,\"SupplierName\":\"Dynasty Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193553\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193555\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193557\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27020\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2860.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193553\":[{\"Sequence\":[0],\"TPInvnSysId\":[193553],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193555\":[{\"Sequence\":[0],\"TPInvnSysId\":[193555],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193557\":[{\"Sequence\":[0],\"TPInvnSysId\":[193557],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"FlightData\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India',NULL,'18892',2860,2860,2,NULL,NULL,NULL,2,'',0,'2021-07-27 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2021-07-28 11:08:30','2021-07-27 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'dynasty-resorts',NULL,NULL,NULL,0),(118,27024,1,5293,0,0,0,'Family,Hill Station,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27024,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/dynasty_resort_1627453788.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Nainital\",\"SourcePlaceSysId\":18892,\"AgencyName\":\"I Need Trip\",\"Name\":\"Dynasty Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6634\",\"SupplierName\":\"Dynasty Resorts\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"B\\/fast & Dinner\",\"PackageType\":\"Family,Hill Station,By Cab,Road Trip\",\"Validity\":{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193602\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193603\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193604\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27024\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2860.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-28\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2457,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":5720,\"priceExtraBed\":\"1320.00\",\"priceWithoutBed\":\"2860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193602\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193602],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193603\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193603],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193604\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193604],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',2860,2860,2,'118_1627472907_0.jpg,118_1627472907_1.jpg,118_1627472907_2.jpg,118_1627472907_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"}]',2,'',0,'2021-07-28 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2021-08-23 12:13:41','2021-07-28 00:00:00',1,1,'0','0','0','','','',NULL,'dynasty-resort',NULL,NULL,NULL,0),(119,27026,1,5293,0,0,0,'Adventure,Wildlife,Sports,Weekend,Leisure,Activites Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27026,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/anaamod_resort_jim_corbett_1627463351.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"Anand Aamod Resort jim corbett\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6636\",\"SupplierName\":\"Anand Hotesls and Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Adventure,Wildlife,Sports,Weekend,Leisure,Activites Tour,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484095,\"Name\":\"Anand Corbett Aamod Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.4671025\",\"Long\":\"79.1477477\",\"Address\":\"National Highway 121 Dhikuli, Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6636,\"SupplierName\":\"Anand Hotesls and Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":484096,\"Name\":\"Anand Corbett Aamod Resort and Spa\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.4671025\",\"Long\":\"79.1477477\",\"Address\":\"National Highway 121 Dhikuli, Ramnagar, Uttarakhand 244715, India\"},\"Images\":{\"Image\":[{\"ImagId\":4819057,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484096\\/5293_01627570417.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;A 4star property, Aamod Resort and Spa is placed at the distance of 11 km from the Ramnagar Railway Station and just 3 km from the famous Jim Corbett National Park. The Resort is located at the distance of 55 km from the Pantnagar Airport. Famous excursions situated near to the property are Ramnagar Kosi Reservoir(1.2 km), Kosi River(3.5 km), Jim Corbett Museum(29.9 km) and The Bijrani Range. Aamod Resort features comfortable and spotlessly clean rooms equipped with amenities such as air-conditioner, cable television, intercom, tea\\/coffee maker, sofa unit and well-appointed bathrooms. For a relaxing and convenient stay, the hotel offers facilities such as swimming pool, business centre, conference hall, Wi-Fi connectivity, spa, laundry, sightseeing and room service. Outdoor activities such as nature\\/jungle walk, trekking, rock climbing, river crossing and wild life movie show. In-house restaurant serves a wide array of delicious Continental, Chinese, Mughlai and North Indian delicacies. The hotel is well-suited to both business and leisure travellers.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484096\\/5293_b27dd363f06cea29d0ee3a83c3caed2f1627570417.jpg\",\"AccoAminitiesMask\":\"111111101000110100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6636,\"SupplierName\":\"Anand Hotesls and Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193607\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484096,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193609\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484096,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193611\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484095,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484096,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193607\":[{\"Sequence\":[0],\"TPInvnSysId\":[193607],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193609\":[{\"Sequence\":[0],\"TPInvnSysId\":[193609],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193611\":[{\"Sequence\":[0],\"TPInvnSysId\":[193611],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'119_1627474031_0.jpg,119_1627474031_1.jpg,119_1627474031_2.jpg,119_1627474031_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:01:45','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'anand-aamod-resort-jim-corbett',NULL,NULL,NULL,0),(120,27029,1,5293,0,0,0,'Adventure,Wildlife,Family,Weekend,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27029,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/serenity_corbett_resort_1627461567.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Serenity is a resort nestled in a Mango Orchard, surrounded by dense forest, hillocks and River Kosi providing picturesque and serene environment to the visitor. It is located about 5 kms away from Corbett Park&amp;rsquo;s entry gate Bijrani (famous for tiger sighting) in Dhikuli village. There are&amp;nbsp;22 AC rooms&amp;nbsp;with attached bath on a total land area of 3 acres. The resort comprises Golghar restaurant, a swimming pool and a conference hall with a lot of open space to move around. The resort is borne out of passion for nature and its preservation. Its caretakers are committed to the promotion of sustainable eco-friendly tourism. Thus, utmost care has been taken while developing the resort to ensure that not even a single tree is uprooted, even if that meant altering the project plans. Award winning Shankar Balram septic tank has been installed for toilets and the staff is dedicated in minimizing the use of plastic and follow appropriate dumping practices. The resort is a treat for bird lovers.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"SERENITY CORBETT RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6637\",\"SupplierName\":\"Serenity Corbett Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Wildlife,Family,Weekend,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484116,\"Name\":\"Serenity Corbett Resort\",\"Star\":\"4.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Jim Corbett National Park, Ladua Chaur, Village Dhikuli, Ranikhet Rd, near, Ramnagar, Uttarakhand 244715, India\"},\"Images\":{\"Image\":[{\"ImagId\":4819438,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484116\\/5293_01628587133.jpg\"},{\"ImagId\":4819439,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484116\\/5293_01628587152.jpg\"},{\"ImagId\":4819440,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484116\\/5293_01628587169.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;Serenity is a resort nestled in a Mango Orchard, surrounded by dense forest, hillocks and River Kosi providing picturesque and serene environment to the visitor. It is located about 5 kms away from Corbett Park&acirc;&euro;&trade;s entry gate Bijrani (famous for tiger sighting) in Dhikuli village. There are 22 AC rooms with attached bath on a total land area of 3 acres. The resort comprises of Gol Ghar restaurant, swimming pool and a conference hall with a lot of open space to move around. The resort is borne out of passion for nature and its preservation. It&acirc;&euro;&trade;s caretakers are committed to promotion of sustainable eco-friendly tourism. Thus, utmost care has been taken while developing the resort to ensure that not even a single tree is uprooted, even if that meant altering the project plans. Award winning Shankar Balram septic tank has been installed for toilets and the staff is dedicated in minimizing the use of plastic and follow appropriate dumping practices. The resort is a treat for bird lovers.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484116\\/5293_98849dfd92045efca14f2a9ec2afc1941628587133.jpg\",\"AccoAminitiesMask\":\"111101000100110100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6637,\"SupplierName\":\"Serenity Corbett Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"FB\"},{\"RefHotelId\":484117,\"Name\":\"Serenity Corbett Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.4557196\",\"Long\":\"79.1431078\",\"Address\":\"Jim Corbett National Park, Ladua Chaur, Village Dhikuli, Ranikhet Rd, near, Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6637,\"SupplierName\":\"Serenity Corbett Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Family Attic Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193616\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Family Attic Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193618\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Family Attic Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193620\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Family Attic Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Accommodation in well-appointed air-conditioned rooms with LED Screen&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Welcome drink on Arrival (Non-Alcoholic)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Breakfast ,Lunch &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Tea Coffee Make in Rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Evening wildlife Movie Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Complimentary use of Swimming Pool&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Free recreation facilities (table tennis, badminton, chess, ludo, carom &amp;amp;, etc.)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Check-in Time 01:00 PM &amp;amp; Check-out Time 11.00&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8332\",\"Value\":\"25\"},{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8334\",\"Value\":\"50\"},{\"DaysBefore\":3,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 3 Days\",\"TPRulesSysId\":\"8336\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193616\":[{\"Sequence\":[0],\"TPInvnSysId\":[193616],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193618\":[{\"Sequence\":[0],\"TPInvnSysId\":[193618],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193620\":[{\"Sequence\":[0],\"TPInvnSysId\":[193620],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'120_1627475806_0.jpg,120_1627475806_1.jpg,120_1627475806_2.jpg,120_1627475806_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2023-08-25 14:01:21','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'serenity-corbett-resort',NULL,NULL,NULL,0),(121,27031,1,5293,0,0,0,'Wildlife,Family,Weekend,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27031,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/country_inn_corbett_1627465127.jpg\",\"BookingValidUntill\":\"2021-10-26\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"COUNTRY INN CORBETT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6638\",\"SupplierName\":\"Country Inn Corbett\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Wildlife,Family,Weekend,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-26\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484122,\"Name\":\"Country Inn Corbett\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.48014190000001\",\"Long\":\"79.1470937\",\"Address\":\"Zero Garjia, P.O. Dhikuli, Nainital, Ramnagar, Uttarakhand 244715, India\"},\"Images\":{\"Image\":[{\"ImagId\":4819052,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484122\\/5293_01627560251.jpg\"},{\"ImagId\":4819053,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484122\\/5293_01627560271.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;This beautiful jungle resort is well located in the Dhikuli area of Jim Corbett National Park (On the Ranikhet National Highway). The resort is a 2 minute walk from the banks of river Kosi adjoining the core areas of the Jim Corbett National Park. The resort is spread across 3.4 acres of beautiful gardens and is dotted with tall fruit bearing mango trees all across. The rooms and layout of the resort gives the feel of the Jungle lodges of the colonial era and gets you close to nature. The resort offers a wide range of cuisines including local favorites, Indian delicacies and international favorites making it an ideal destination for your jungle holiday. The fun games, activities and adventure available in this region combine to make your holiday filled with many thrills one seeks while in the wilderness. Country Inn resorts are pet friendly.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484122\\/5293_f2969a916d6140d22a08a8c984d90f391627560251.jpg\",\"AccoAminitiesMask\":\"111101111100110101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6638,\"SupplierName\":\"Country Inn Corbett\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Deluxe Rooms\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193622\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484122,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Deluxe Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193623\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484122,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Deluxe Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193624\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484122,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Deluxe Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8218\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193622\":[{\"Sequence\":[0],\"TPInvnSysId\":[193622],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193623\":[{\"Sequence\":[0],\"TPInvnSysId\":[193623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193624\":[{\"Sequence\":[0],\"TPInvnSysId\":[193624],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'121_1627478668_0.jpg,121_1627478668_1.jpg,121_1627478668_2.jpg,121_1627478668_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-26 00:00:00','2021-10-26 00:00:00',3,'India','101','2023-08-25 14:01:06','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'country-inn-corbett',NULL,NULL,NULL,0),(122,27038,1,5293,0,0,0,'Adventure,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27038,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/krishna_corbett_resort_1627470230.jpeg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"KRISHNA CORBETT RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6639\",\"SupplierName\":\"Krishna Corbett Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484132,\"Name\":\"Krishna Corbett Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.46877199999999\",\"Long\":\"79.1477276\",\"Address\":\"Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6639,\"SupplierName\":\"Krishna Corbett Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Cottage\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":484134,\"Name\":\"Krishna Corbett Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.46877199999999\",\"Long\":\"79.1477276\",\"Address\":\"Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6639,\"SupplierName\":\"Krishna Corbett Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Family Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193655\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484134,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Family Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193657\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484134,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Family Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193659\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484134,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Family Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8219\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"193655\":[{\"Sequence\":[0],\"TPInvnSysId\":[193655],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193657\":[{\"Sequence\":[0],\"TPInvnSysId\":[193657],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"193659\":[{\"Sequence\":[0],\"TPInvnSysId\":[193659],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'122_1627476703_0.jpg,122_1627476703_1.jpg,122_1627476703_2.jpg,122_1627476703_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:00:51','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'krishna-corbett-resort',NULL,NULL,NULL,0),(124,25698,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Festivals and Events,Romantic,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":25698,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Golden_Triangle_and_Udaipur_82.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Golden triangle the most favored tour among tourists is a complete package of India&amp;rsquo;s most prominent cities. Golden triangle with fabulous art and architecture, historic monuments, and rich cultural heritage when combined with the romantic city of lakes Udaipur enhances the charm of the trip making it all the more aspiring. During the Golden Triangle &amp;amp; Udaipur tour, the tourist can see the best destinations of India like Delhi, Jaipur, and Agra which are ancient and historical cities, where the visitors can explore forts, places, and monuments. The three cities make a triangle from where the clients can go and discover the religious, cultural, and traditional values. Apart from these three cities, the visitors can have a wonderful trip to Udaipur, which is popularly known for its lakes and well-decorated forts. Further, in Udaipur, the tourists can also come close to the villagers and enjoy the vibrant multicolored festivals, fairs, art, and musical performance&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Golden Triangle and Udaipur\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Festivals and Events,Romantic,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":219640,\"Name\":\"SK Premium Park (Formerly Park Plaza New Delhi Har\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.63034078336736\",\"Long\":\"77.11350917567142\",\"Address\":\"1B, Sub District Centre Hari Nagar, 110064 New Delhi, India, Delhi, India, \"},\"Images\":{\"Image\":[{\"ImagId\":4789780,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhMTJBB2SyU2Pg2ZMj9rB7qFfXNB\\/DpEBk3Y27VnlG6W\\/dianStPD9KPIEKKaRI3bswijgvRQxMgW44o7PgQj9o\"}]},\"CityId\":7701,\"Brief\":\"Featuring a rooftop outdoor swimming pool and restaurant, Premium Park New Delhi Hari Nagar also offers free Wi-Fi. It is a 15-minute drive from Safdarjung Domestic and Indira Gandhi International Airport.Premium Park New Delhi Hari Nagar is less than 16 km from nearby attractions including Connaught Place and India Gate.Modern rooms include wood furnishings and a flat-screen cable TV. Room amenities include a work desk, minibar and tea\\/coffee maker.The hotel offers a 24-hour front desk and a fitness centre for guests to work-out. Airport transfers can be arranged and free valet parking is available.Coffee and fresh bread is available 24-hours at the Mosaic restaurant, which features a wide selection of a la carte menu items. Guests can choose from a variety of spirits, cocktails, beer and wine at the hotel&rsquo;s pub.The SK Premium Park (Formerly Park Plaza New Delhi Hari Nagar) is a  hotel. Located in DELHI area..\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhMTJBB2SyU2Pg2ZMj9rB7qFfXNB\\/DpEBk3Y27VnlG6W\\/dianStPD9KPIEKKaRI3bswijgvRQxMgW44o7PgQj9o\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":352537,\"Name\":\"The Claridges\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.600531697938\",\"Long\":\"77.216280698776\",\"Address\":\"12 Dr APJ Abdul Kalam Road, 110011 New Delhi, Dr APJ Abdul Kalam Road\"},\"Images\":[],\"CityId\":7701,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;A stay at The Claridges New Delhi places you in the heart of New Delhi, minutes from Gandhi Smriti and close to Humayun&#039;s Tomb.  This 5-star hotel is within close proximity of Lodhi Garden and India International Centre.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 132 individually decorated guestrooms, featuring refrigerators and plasma televisions. Rooms have private balconies. Digital programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms with showers feature designer toiletries and hair dryers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Relax and unwind with massages and body treatments. You&#039;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can get to nearby shops on the shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 4 restaurants and a coffee shop\\/cafe. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a 24-hour business center, limo\\/town car service, and express check-in. Event facilities at this hotel consist of a conference center and meeting rooms. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a train station pick-up service.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/02\\/dc\\/02dc90ee4f834eefe8381e0d18c732cda9e3b882.jpg\",\"AccoAminitiesMask\":\"1000000000001110000\",\"AccoAminities\":[{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":219553,\"Name\":\"LE MERIDIEN DELHI\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.6193670299637\",\"Long\":\"77.2190701961517\",\"Address\":\"Windsor Place, Delhi, India, 110001\"},\"Images\":{\"Image\":[{\"ImagId\":4789693,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhTAOcVjJE2DSOalW1gFzJswT43Mwe6Xn06x5iHtAefLq\\/ptXlC5FSbLJZhduM2cf9mfA03E3rVWk7\\/pUYtIHLO\"}]},\"CityId\":7701,\"Brief\":\"The hotel is conveniently located in the centre of the city, within a 2 km radius of major central government offices, Parliament House, the Presidential Palace, Rashtrapathi Bhawan and the bustling commercial and shopping district of Connaught Place. Indira Gandhi International Airport is located roughly 16 km from the hotel.FacilitiesGuests are welcomed in the lobby. The upper floors can be reached by lift. Amenities include currency exchange facilities. Gastronomic options include a restaurant, a caf&eacute; and a bar. Guests arriving in their own vehicles can park in the car park. Additional services include room service and a laundry. There is a business area with a conference room and a business centre.RoomsAll rooms feature air conditioning and a bathroom. A safe and a minibar also feature. A fridge and tea and coffee making equipment contribute to a comfortable stay. Internet access, a telephone, a TV and wireless internet access are provided as standard. In each of the bathrooms, guests will find a shower, a bathtub, a hairdryer and bathrobes.Sports\\/EntertainmentThe hotel offers an outdoor pool. The hot tub offers revitalisation. Active guests have various leisure options to choose from, including tennis, a gym and a spa. A disco provides entertainment. MealsThe hotel offers the following bookable meals and board options: breakfast, lunch and dinner.PaymentAll major credit cards, including American Express, VISA, Diners Club and MasterCard, are accepted for payment.The LE MERIDIEN DELHI is a Tourist, Modern, Business, City hotel, Full Service hotel. Located in DELHI area. Shopping is accessible by bus\\/taxi and the nightlife\\/restaurants are easily accessible by taxi or bus from the hotel.\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhTAOcVjJE2DSOalW1gFzJswT43Mwe6Xn06x5iHtAefLq\\/ptXlC5FSbLJZhduM2cf9mfA03E3rVWk7\\/pUYtIHLO\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M\\u0101ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":21418,\"Name\":\"Howard Plaza The Fern\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.164327974783\",\"Long\":\"78.038238286972\",\"Address\":\"Fatehabad Road Agra 282 001\"},\"Images\":{\"Image\":[{\"ImagId\":517343,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/369\\/_AKP3378_C.jpg\"},{\"ImagId\":517344,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/360\\/_AKP3428_A.jpg\"},{\"ImagId\":517345,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/378\\/_AKP3350_A.jpg\"},{\"ImagId\":517346,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/351\\/_AKP3389_A.jpg\"},{\"ImagId\":517347,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/387\\/_AKP3324_A.jpg\"},{\"ImagId\":517348,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/396\\/_AKP3489_A.jpg\"},{\"ImagId\":517349,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/414\\/_AKP3488_A.jpg\"},{\"ImagId\":517350,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/405\\/_AKP3512_A.jpg\"},{\"ImagId\":517351,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/423\\/_AKP3504_A.jpg\"},{\"ImagId\":517352,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/432\\/Exterior_C.jpg\"}]},\"CityId\":266,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/34\\/211\\/369\\/_AKP3378_C.jpg\",\"AccoAminitiesMask\":\"110110100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":21517,\"Name\":\"Hotel The Taj Vilas\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.1671\",\"Long\":\"78.0324\",\"Address\":\"Fatehabad Road opposite Hotel Trident\"},\"Images\":{\"Image\":[{\"ImagId\":518530,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_12_t.jpg\"},{\"ImagId\":518531,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_15_t.jpg\"},{\"ImagId\":518532,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_9_t.jpg\"},{\"ImagId\":518533,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_11_t.jpg\"},{\"ImagId\":518534,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_8_t.jpg\"},{\"ImagId\":518535,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_5_t.jpg\"},{\"ImagId\":518536,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_13_t.jpg\"},{\"ImagId\":518537,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_6_t.jpg\"},{\"ImagId\":518538,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_10_t.jpg\"},{\"ImagId\":518539,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_7_t.jpg\"},{\"ImagId\":518540,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_4_t.jpg\"},{\"ImagId\":518541,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_3_t.jpg\"},{\"ImagId\":518542,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_2_t.jpg\"},{\"ImagId\":518543,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_1_t.jpg\"},{\"ImagId\":518544,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_18_t.jpg\"}]},\"CityId\":266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Taj Vilas in Agra, you&amp;apos;ll be convenient to Mosque and the Jawab and Taj Mahal.  This hotel is within close proximity of Agra Fort and Itmad-ud-Daulah&amp;apos;s Tomb.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself to a stay in one of the 68 individually decorated guestrooms, featuring fireplaces and LCD televisions. Your room comes with a memory foam bed. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Conveniences include laptop-compatible safes and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy the convenience of ski-in\\/ski-out access at this hotel, which also features a 24-hour fitness center. Additional features at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s 24-hour room service.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a 24-hour business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6320000\\/6315700\\/6315677\\/6315677_12_t.jpg\",\"AccoAminitiesMask\":\"111001000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":355569,\"Name\":\"Crystal Sarovar Premiere\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.1574\",\"Long\":\"78.050461\",\"Address\":\"Fatehabad Road, Agra 282001, Fatehabad Road\"},\"Images\":[],\"CityId\":266,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Centrally located in Agra, Crystal Sarovar Premiere Agra is convenient to Agra Fort and Sadar Bazar.  This 5-star hotel is convenient to Itmad-ud-Daulah&#039;s Tomb.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 112 air-conditioned rooms featuring minibars and LED televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have showers and complimentary toiletries. Conveniences include safes and desks, and housekeeping is provided daily.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Treat yourself with massages and body treatments. You&#039;re sure to appreciate the recreational amenities, including a health club and an outdoor pool. Additional features at this hotel include complimentary wireless Internet access, concierge services, and wedding services.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant or in a coffee shop\\/cafe. Or stay in and take advantage of the hotel&#039;s 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary high-speed (wired) Internet access, a 24-hour business center, and express check-in. Event facilities at this hotel consist of a conference center and meeting rooms. Free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/39\\/76\\/3976f7c02548b3a7dcfd87f30c056d0d59a01cb0.jpg\",\"AccoAminitiesMask\":\"1010000010001100100\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M\\u0101ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":104920,\"Name\":\"Lemon Tree Premier\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.935323\",\"Long\":\"75.791716\",\"Address\":\"Nirwan Marg Bani Park\"},\"Images\":{\"Image\":[{\"ImagId\":2282542,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/883\\/LTJAILTP01_C.jpg\"},{\"ImagId\":2282543,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/891\\/LTJAILTP02_A.jpg\"},{\"ImagId\":2282544,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/902\\/LTJAILTP03_A.jpg\"},{\"ImagId\":2282545,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/910\\/LTJAILTP03_(1)_A.jpg\"},{\"ImagId\":2282546,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/918\\/LTJAILTP06_A.jpg\"}]},\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/883\\/LTJAILTP01_C.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413255,\"Name\":\"Four Points By Sheraton Jaipur City Square\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.864861036743\",\"Long\":\"75.795489102601\",\"Address\":\"City Square, Vasundhara Colony, Tonk Road, Jaipur 302018, Rajasthan\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Centrally located in Jaipur, Four Points by Sheraton Jaipur, City Square is convenient to World Trade Park and Sawai Mansingh Stadium.  This 4-star hotel is within close proximity of Birla Temple and Central Park.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 114 air-conditioned rooms featuring minibars and LCD televisions. Wireless Internet access (surcharge) keeps you connected, and cable programming is available for your entertainment. Partially open bathrooms with showers feature rainfall showerheads and complimentary toiletries. Conveniences include phones, as well as safes and desks.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Don&#039;t miss out on the many recreational opportunities, including a 24-hour health club, an outdoor pool, and a steam room. This hotel also features wireless Internet access (surcharge), concierge services, and babysitting\\/childcare (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&#039;s 24-hour room service. Meet other guests and eat at a complimentary reception. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a 24-hour business center, express check-in, and express check-out. Event facilities at this hotel consist of conference space and meeting rooms. Guests may use a train station pick-up service for a surcharge, and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/03\\/99\\/0399da00824f8269dc1e8208be2f9e7320760590.jpg\",\"AccoAminitiesMask\":\"1010000000001110000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413433,\"Name\":\"Hotel Vesta Maurya Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.915415\",\"Long\":\"75.811031\",\"Address\":\"S-35-A, Arvind Marg, Near M.I. Road,,Rajasthan,India, 302001\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"Hotel Vesta Maurya Palace, Jaipur, a centrally located sophisticated hotel is ideal for business travel as well as a relaxed holiday. The traditional hospitality, welcoming ambience and flawless personalised services attracts the discerned travellers. This modern hotel offers a host of amenities for business and leisure, tasty meals and soothing accommodations.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nHotel Vesta Maurya Palace is situated at Arvind Marg, near M.I. road. Prominent tourist hotspots in the vicinity include Hawa Mahal (Approx. 3km) and Albert Hall Museum (Approx. 2km). Hawa Mahal is a five-storey structure beautiful latticework built for the women folk. Made of red and pink sandstone, this historic monument also houses an archaeological museum. Amber Fort, Jaipur Zoo and Lakshmi Narayan Temple are some of the significant tourist locations worth exploring. \\n\\nJaipur International Airport: 15 km (approx.)\\nJaipur Railway Station: 4 km (approx.)\\n\\n&lt;b&gt;Hotel Features:&lt;\\/b&gt;\\nA pleasant ambience and a comfortable stay with essential amenities can be enjoyed by the guests at this hotel. The necessary amenities for the guests are room service, internet, 24-hour front desk, air conditioning, elevators, parking, travel desk, 24-hour security and doctor-on-call. Well-equipped banquet facilities and wedding services are available for hosting informal events. The hotel houses a pool and health club for rejuvenation. The business centre equipped with conference facilities, business services and audio visual equipment fulfil the needs of corporate travellers. ATM\\/Cash machine and non-smoking rooms are additional benefits. Chandragupt, the indoor multi-cuisine restaurant offers tempting meals while The Spirit of Jeypore, a tastefully designed in-house bar offers quality beverages.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nRoyal deluxe, studio and suite rooms are available for lodging at Hotel Vesta Maurya Palace. These air conditioned rooms are contemporary and smartly furnished. The wooden flooring enhances the overall look of the rooms while the in-room amenities such as LCD colour TV, telephone, tea\\/coffee maker, Wi-Fi access, refrigerator and writing desk offers much-needed convenience during the stay.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3141\\/314197\\/images\\/_MG_8014_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M\\u0101ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":225663,\"Name\":\"juSTa Rajputana\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.552949\",\"Long\":\"73.70264\",\"Address\":\"Hiran Magri, Sector-11, Near Savina Nath,Rajasthan,India, 313001\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"&lt;b&gt;Four-star Resort in the City of Lakes.&lt;\\/b&gt;\\n\\nRajputana Udaipur-A Justa Resort is a 4-star property with large and spacious rooms set against the backdrop of the Aravallis. The resort features lush green lawns and water bodies and houses an all-day Restaurant with an Alfresco dinning, a Bar by the Pool Garden and a &quot;Winter Grill by the Poolside&quot;. The resort also has a private stud farm, Spa, a Conference Hall and a swimming pool and is ideal for both the business and leisure traveler.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nRajputana Resort is located near Math Savina, 10 minutes from Udaipur&#039;s city center. The resort is located within accessible distance from a lot of places of tourist interest like - City Palace (4 kms), Lake Pichhola (4kms), Fateh Sagar Palace (4.5KM), Jag Mandir (4.5 kms), Monsoon Palace (15 kms), Jagdish Temple (5 kms) and Maharana Pratap Memorial (8 kms). Tourists can also take heritage walks around the city or indulge in boating in the nearby Lake Pichola and Lake Fateh Sagar.\\n\\nDistance from Udaipur City Railway Station: 4 kms (approx)\\nDistance from Udaipur Airport: 24 kms (approx)\\n\\n&lt;b&gt;Features:&lt;\\/b&gt;\\nThe resort has a multi-cuisine restaurant serving Indian, Continental and traditional Rajasthani cuisine, and also features a Bar &amp; Lounge. The resort has a swimming pool and open lawns for banquets, cocktail dinners, weddings and other events. There&#039;s a Conference Hall with audio-visual equipment and Wireless Internet facility is also available. There is ample parking space for guest&#039;s vehicles and Car Rental service is also provided by the resort. Some of the activities organized by the resort include Garden Walks, Theme Dinners, Barbeque &amp; Grill, Carom, Chess, Bonfire, Trekking and Boat rides.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nThe resort has 46 rooms fitted with Rajasthani interiors and come equipped with a seating area and attached bathrooms.\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICg7A8cpsaijimfNQMaEw56GeGxvIyJ2ivLBKF\\/OCO1uSXdXwLZqTZDwB59J7nInoAgTZ\\/2Bkh8X1nB5cjbR99Bm56swuiCbwE4=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":225716,\"Name\":\"RAMADA RESORT (Formerly Lotus Lake View Resort)\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.583565\",\"Long\":\"73.648759\",\"Address\":\"Kodiyat Road Rampura Choraha, Udaipur, Rajasthan 313 001, Udaipur, India, \"},\"Images\":[],\"CityId\":28058,\"Brief\":\"Location\\nThe resort is located in Udaipur, &ldquo;the city of lakes and palaces&rdquo;. It is set on one of the hills of Aravali Range, with a breath-taking view of the beautiful Ranges and Pichola Lake. The railway station is only 7 km away and the airport is 28 km away from the hotel.\\nFacilities\\nServices such as a safe and currency exchange facilities make for a comfortable stay. Internet access and wireless internet access are available in the public areas. Gastronomic options offered by the establishment include a restaurant and a dining area. A newspaper stand is also among the amenities at the establishment. Guests arriving in their own vehicles can park in the car park. Additional services include a childcare service, medical assistance, a transfer service, room service and a laundry.\\nRooms\\nAll accommodation units feature air conditioning and a bathroom. A balcony completes the range of amenities available in most rooms. The accommodation units each feature a double bed. A safe and a minibar also feature. The accommodation units offer a range of amenities, including tea and coffee making equipment. Convenient features include internet access, a telephone, a TV, a DVD player and wireless internet access. Each accommodation unit includes a bathroom with a shower.\\nSports\\/Entertainment\\nThe swimming pool is ideal for a refreshing dip. Active guests have various leisure options to choose from, including a gym, a spa, a sauna, massage treatments and Ayurveda. \\nMeals\\nThe establishment offers breakfast as a bookable board option.The RAMADA RESORT (Formerly Lotus Lake View Resort) is a Tourist hotel. Located in UDAIPUR area. Shopping is within walking distance and the nightlife\\/restaurants are right next to the hotel.\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhOpc+yPG5FGSrKGyIByFVcTu0RLBzKm7vhc+de4S9yIhjMK4uhnRo52ynSxNdkDq9cc0G\\/BIFjUFMeYW6Qu4yd\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481666,\"Name\":\"Bloom Boutique | Lake Pichola\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5829086\",\"Long\":\"73.6758175\",\"Address\":\"Dr.Chhagan Nath Ji Ki Bari, Outside Bhrampole, Ambamata, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481667,\"Name\":\"j\\u00fcSTa Rajputana Resort and Convention Centre\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.552939\",\"Long\":\"73.70264\",\"Address\":\"Math Marg, Sector 11, Savina, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":481668,\"Name\":\"Bloom Boutique | Lake Pichola\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5829086\",\"Long\":\"73.6758175\",\"Address\":\"Dr.Chhagan Nath Ji Ki Bari, Outside Bhrampole, Ambamata, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M\\u0101ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"184732\",\"Title\":\"Day 01 \\u2013 Arrival in Delhi\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Delhi and check-in at the hotel. India&#39;s capital &amp; a major gateway to the country, Delhi is contemporary and a bustling metropolis which successfully combines in its fold the ancient &amp; the modern. Its strategic location was one of the prime reasons why successive dynasties chose it as their seat of power. New Delhi also reflects the legacy the British left behind. Overnight in Delhi.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":219640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":352537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219553,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184735\",\"Title\":\"Day 02 \\u2013 Sightseeing in Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast, proceed for a full-day tour of Old and New Delhi. This fascinating city has been in existence since the 6th century BC and has seen ups and downs from the rule of the Pandavas right up to the British Raj. Visit Jama Masjid, which is the largest mosque in India, commissioned by Emperor Shah Jahan. The courtyard of the mosque can hold about 25,000 worshippers. Enjoy a rickshaw ride in Chandni Chowk, the busiest market in Old Delhi&hellip;noisy, chaotic and uniquely Indian. You will then drive past from the Red Fort, which was constructed during the rule of Emperor Shah Jahan and served as the residence for the Mughal royal family. It continues to be significant till date, as every Independence Day, the Prime Minister makes a speech from its ramparts as the Indian flag is hoisted. Later, drive past President House and several other government buildings in Edwin Lutyen&rsquo;s Delhi before you head toward Rajghat, the memorial to Mahatma Gandhi. This simple memorial marks the spot where Mahatma Gandhi was cremated in 1948. Thereafter, visit Humayun&rsquo;s Tomb, commissioned by Humayun&rsquo;s wife Hamida Banu Begum in 1562. It was the first garden tomb built in the Indian sub-continent where the Persian architect used red sandstone on a large scale. Later in the evening visit the Qutab Minar, which is the tallest brick minaret in the world; it was commissioned by Qutbuddin Aibak, the first Muslim ruler of Delhi. Overnight in Delhi.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":300,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":411,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2933,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":742,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1405,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1465,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184738\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184741\",\"Title\":\"Day 03 \\u2013 Delhi \\u2013 Agra (210 kms \\/ approx. 4 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>On arrival in Agra, check-in into your Hotel. Later proceed for Half Day City Tour of Agra. Visit the Red Fort, which was commissioned in 1565 by The Mughal Emperor, Akbar. The beautiful yet forbidding structure is a handsome example of Mughal architecture. Later, visit the Taj Mahal &hellip; a mausoleum built as a symbol of Emperor Shah Jahan&rsquo;s devotion to his beloved queen Mumtaz Mahal. Considered an architectural marvel, its construction took thousands of workers over 21 years to complete. Overnight in Agra.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21517,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":21418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":355569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184744\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184747\",\"Title\":\"Day 04 \\u2013 Agra \\u2013 Jaipur (230 kms \\/ approx. 5 hours)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast you will leave to Jaipur. On the way, you will visit Abhaneri and Fatehpur Sikri. Abhaneri &ndash; Abhaneri is a village in the Dausa district of Rajasthan state in India. The place is popular for the Chand Baori step well and Harshat Mata Temple. Fatehpur Sikri- It is believed to be one of the first carefully planned cities of the Mughals. It was built by Emperor Akbar in the 16th century AD. Its name basically means the &lsquo;City of Victory.&rsquo; Evening take a stroll in the markets of Jaipur for the traditional dresses and shoes, curio shops, blue pottery etc. Overnight in Jaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":413433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":104920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":413255,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184750\",\"Title\":\"Day 05 \\u2013 Jaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>Proceed for full-day sightseeing trip of Jaipur, also known as the &lsquo;Pink City&rsquo;. The city of Jaipur is capital to the state of Rajasthan, famous for its colorful culture, forts, palaces, and lakes. Jaipur owes its name to the founder of the city, warrior king Sawai Jai Singh II. Visit the Amber Fort. The best way to explore the fort is to ride up to it on Elephant back. Prominent structures inside the fort are the Diwan-i-Aam, adorned with latticed galleries, the Ganesh Pol, with a beautiful painted image of Lord Ganesh, and the stunning Sheesh Mahal, a hall decorated with thousands of tiny mirrors. Later, stop to photograph the beautiful Hawa Mahal, also known as the &ldquo;Palace of the Winds.&rdquo; This beautiful fa&ccedil;ade with its ornately carved latticework windows was designed so the ladies of the palace could look out onto the streets unobserved. Later you will visit the City Palace&hellip; again, a synthesis of Rajasthani and Mughal styles. The museums here showcase rare and ancient manuscripts, arms dating back to the 15th century, and costumes of erstwhile royalty. Later, visit the Jantar Mantar Observatory, comprising geometric devices for measuring time, and tracking stars in their orbits. Overnight in Jaipur<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184753\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184756\",\"Title\":\"Day 06 \\u2013 Jaipur \\u2013 Udaipur (390 kms \\/ approx. 6.5 hrous)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, proceed to Udaipur. Arrive Udaipur and check in to your hotel and relax. Rest of the day at leisure. Overnight in Udaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481668,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":225663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":225716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184759\",\"Title\":\"Day 07 \\u2013 Sightseeing in Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast, proceed for full-day tour of Udaipur. Visit the City Palace, standing on the east bank of Lake Pichola. The complex is a massive series of palaces built at different times from 1559. The balconies of the palace provide panoramic views of the Lake Palace Hotel and Jag Mandir on one side, and the city of Udaipur on the other. The paintings, mosaics, intricately carved &#39;chhatris&#39; and the architecturally brilliant facade all contribute to making your visit to the City Palace a truly memorable experience. Thereafter, visit a picturesque garden, Sahelion ki Bari. You will visit also visit Jagdish Temple, which is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. In the evening, enjoy a boat ride on Lake Pichola (depending upon the water level of lake), which is an artificial fresh water lake, created in the year 1362 AD. Rest of the day at leisure. Overnight in Udaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481666,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481667,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":225716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":720,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1360,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184762\",\"Title\":\"Day 08 \\u2013 Departure from Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>After breakfast, you will be transferred to Udaipur airport for return flight back home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25698\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23749.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19543,\"priceDoubleOcc\":\"23749.95\",\"priceSingleOcc\":47499.9,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23749.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19543,\"priceDoubleOcc\":\"23749.95\",\"priceSingleOcc\":47499.9,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23749.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19543,\"priceDoubleOcc\":\"23749.95\",\"priceSingleOcc\":47499.9,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23749.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19543,\"priceDoubleOcc\":\"23749.95\",\"priceSingleOcc\":47499.9,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23749.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19543,\"priceDoubleOcc\":\"23749.95\",\"priceSingleOcc\":47499.9,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23749.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":23649,\"priceDoubleOcc\":\"29908.20\",\"priceSingleOcc\":53658.15,\"priceExtraBed\":\"11130.00\",\"priceWithoutBed\":\"6190.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29908.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25699\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28820.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24108,\"priceDoubleOcc\":\"28820.40\",\"priceSingleOcc\":57640.8,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28820.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24108,\"priceDoubleOcc\":\"28820.40\",\"priceSingleOcc\":57640.8,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28820.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24108,\"priceDoubleOcc\":\"28820.40\",\"priceSingleOcc\":57640.8,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28820.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24108,\"priceDoubleOcc\":\"28820.40\",\"priceSingleOcc\":57640.8,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28820.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24108,\"priceDoubleOcc\":\"28820.40\",\"priceSingleOcc\":57640.8,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28820.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28214,\"priceDoubleOcc\":\"34978.65\",\"priceSingleOcc\":63799.05,\"priceExtraBed\":\"14683.20\",\"priceWithoutBed\":\"11839.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34978.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25700\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33441.45\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28205,\"priceDoubleOcc\":\"33441.45\",\"priceSingleOcc\":66882.9,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33441.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28205,\"priceDoubleOcc\":\"33441.45\",\"priceSingleOcc\":66882.9,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33441.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28205,\"priceDoubleOcc\":\"33441.45\",\"priceSingleOcc\":66882.9,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33441.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28205,\"priceDoubleOcc\":\"33441.45\",\"priceSingleOcc\":66882.9,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33441.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":28205,\"priceDoubleOcc\":\"33441.45\",\"priceSingleOcc\":66882.9,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33441.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":32311,\"priceDoubleOcc\":\"39599.70\",\"priceSingleOcc\":73041.15,\"priceExtraBed\":\"17732.40\",\"priceWithoutBed\":\"12180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39599.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25698\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22619.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18613,\"priceDoubleOcc\":\"22619.00\",\"priceSingleOcc\":45238,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22619.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18613,\"priceDoubleOcc\":\"22619.00\",\"priceSingleOcc\":45238,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22619.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18613,\"priceDoubleOcc\":\"22619.00\",\"priceSingleOcc\":45238,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22619.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18613,\"priceDoubleOcc\":\"22619.00\",\"priceSingleOcc\":45238,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22619.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18613,\"priceDoubleOcc\":\"22619.00\",\"priceSingleOcc\":45238,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22619.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22523,\"priceDoubleOcc\":\"28484.00\",\"priceSingleOcc\":51103,\"priceExtraBed\":\"10600.00\",\"priceWithoutBed\":\"5896.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25700\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31849.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26862,\"priceDoubleOcc\":\"31849.00\",\"priceSingleOcc\":63698,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31849.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26862,\"priceDoubleOcc\":\"31849.00\",\"priceSingleOcc\":63698,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31849.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26862,\"priceDoubleOcc\":\"31849.00\",\"priceSingleOcc\":63698,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31849.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26862,\"priceDoubleOcc\":\"31849.00\",\"priceSingleOcc\":63698,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31849.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26862,\"priceDoubleOcc\":\"31849.00\",\"priceSingleOcc\":63698,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31849.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-26\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":30772,\"priceDoubleOcc\":\"37714.00\",\"priceSingleOcc\":69563,\"priceExtraBed\":\"16888.00\",\"priceWithoutBed\":\"11600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37714.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"184732\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[184732],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184735\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[184735],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184738\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[184738],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184741\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[184741],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184744\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[184744],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184747\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[184747],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184750\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[184750],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184753\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[184753],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184756\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[184756],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184759\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[184759],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184762\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[184762],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Delhi,Agra,Jaipur,Udaipur','Delhi,Indian Subcontinent,North India,India,Agra,Uttar Pradesh,Jaipur,Rajasthan,Udaipur','','7701,266,12995,28058',22619,39600,7,'124_1632161751_0.jpg,124_1632161751_1.jpg,124_1632161751_2.jpg,124_1632161751_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 15:27:39','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'golden-triangle-and-udaipur',NULL,NULL,NULL,0),(125,25675,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":25675,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Golden_Jewels_of_India_19.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Golden Triangle comprising of three major cities of North India i.e. Delhi, Agra, and Jaipur representing old culture and traditions of ancient India at their best. Exploring these heritage sites always leave tourists with many unforgettable memories that will last for a long.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Atlas Holidays, we will take you on an exciting Golden Triangle tour of nights and days. During our tour, our expert guides will let you know everything you want to know about the place. Also, we will allow you to get dipped into the rich culture and tradition of the country and come across various hidden stories of the past and bravery.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":40,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Golden Jewels of India\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6026\",\"SupplierName\":\"Tamarind Global\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Culture,Weekend,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":219640,\"Name\":\"SK Premium Park (Formerly Park Plaza New Delhi Har\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.63034078336736\",\"Long\":\"77.11350917567142\",\"Address\":\"1B, Sub District Centre Hari Nagar, 110064 New Delhi, India, Delhi, India, \"},\"Images\":{\"Image\":[{\"ImagId\":4789780,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhMTJBB2SyU2Pg2ZMj9rB7qFfXNB\\/DpEBk3Y27VnlG6W\\/dianStPD9KPIEKKaRI3bswijgvRQxMgW44o7PgQj9o\"}]},\"CityId\":7701,\"Brief\":\"Featuring a rooftop outdoor swimming pool and restaurant, Premium Park New Delhi Hari Nagar also offers free Wi-Fi. It is a 15-minute drive from Safdarjung Domestic and Indira Gandhi International Airport.Premium Park New Delhi Hari Nagar is less than 16 km from nearby attractions including Connaught Place and India Gate.Modern rooms include wood furnishings and a flat-screen cable TV. Room amenities include a work desk, minibar and tea\\/coffee maker.The hotel offers a 24-hour front desk and a fitness centre for guests to work-out. Airport transfers can be arranged and free valet parking is available.Coffee and fresh bread is available 24-hours at the Mosaic restaurant, which features a wide selection of a la carte menu items. Guests can choose from a variety of spirits, cocktails, beer and wine at the hotel&rsquo;s pub.The SK Premium Park (Formerly Park Plaza New Delhi Hari Nagar) is a  hotel. Located in DELHI area..\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhMTJBB2SyU2Pg2ZMj9rB7qFfXNB\\/DpEBk3Y27VnlG6W\\/dianStPD9KPIEKKaRI3bswijgvRQxMgW44o7PgQj9o\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":352537,\"Name\":\"The Claridges\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.600531697938\",\"Long\":\"77.216280698776\",\"Address\":\"12 Dr APJ Abdul Kalam Road, 110011 New Delhi, Dr APJ Abdul Kalam Road\"},\"Images\":[],\"CityId\":7701,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;A stay at The Claridges New Delhi places you in the heart of New Delhi, minutes from Gandhi Smriti and close to Humayun&#039;s Tomb.  This 5-star hotel is within close proximity of Lodhi Garden and India International Centre.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 132 individually decorated guestrooms, featuring refrigerators and plasma televisions. Rooms have private balconies. Digital programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms with showers feature designer toiletries and hair dryers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Relax and unwind with massages and body treatments. You&#039;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can get to nearby shops on the shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 4 restaurants and a coffee shop\\/cafe. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a 24-hour business center, limo\\/town car service, and express check-in. Event facilities at this hotel consist of a conference center and meeting rooms. For a surcharge, guests may use a roundtrip airport shuttle (available 24 hours) and a train station pick-up service.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/02\\/dc\\/02dc90ee4f834eefe8381e0d18c732cda9e3b882.jpg\",\"AccoAminitiesMask\":\"1000000000001110000\",\"AccoAminities\":[{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":219553,\"Name\":\"LE MERIDIEN DELHI\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.6193670299637\",\"Long\":\"77.2190701961517\",\"Address\":\"Windsor Place, Delhi, India, 110001\"},\"Images\":{\"Image\":[{\"ImagId\":4789693,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhTAOcVjJE2DSOalW1gFzJswT43Mwe6Xn06x5iHtAefLq\\/ptXlC5FSbLJZhduM2cf9mfA03E3rVWk7\\/pUYtIHLO\"}]},\"CityId\":7701,\"Brief\":\"The hotel is conveniently located in the centre of the city, within a 2 km radius of major central government offices, Parliament House, the Presidential Palace, Rashtrapathi Bhawan and the bustling commercial and shopping district of Connaught Place. Indira Gandhi International Airport is located roughly 16 km from the hotel.FacilitiesGuests are welcomed in the lobby. The upper floors can be reached by lift. Amenities include currency exchange facilities. Gastronomic options include a restaurant, a caf&eacute; and a bar. Guests arriving in their own vehicles can park in the car park. Additional services include room service and a laundry. There is a business area with a conference room and a business centre.RoomsAll rooms feature air conditioning and a bathroom. A safe and a minibar also feature. A fridge and tea and coffee making equipment contribute to a comfortable stay. Internet access, a telephone, a TV and wireless internet access are provided as standard. In each of the bathrooms, guests will find a shower, a bathtub, a hairdryer and bathrobes.Sports\\/EntertainmentThe hotel offers an outdoor pool. The hot tub offers revitalisation. Active guests have various leisure options to choose from, including tennis, a gym and a spa. A disco provides entertainment. MealsThe hotel offers the following bookable meals and board options: breakfast, lunch and dinner.PaymentAll major credit cards, including American Express, VISA, Diners Club and MasterCard, are accepted for payment.The LE MERIDIEN DELHI is a Tourist, Modern, Business, City hotel, Full Service hotel. Located in DELHI area. Shopping is accessible by bus\\/taxi and the nightlife\\/restaurants are easily accessible by taxi or bus from the hotel.\",\"MainImg\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1PrhTAOcVjJE2DSOalW1gFzJswT43Mwe6Xn06x5iHtAefLq\\/ptXlC5FSbLJZhduM2cf9mfA03E3rVWk7\\/pUYtIHLO\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1713,\"Title\":\"Swaminarayan Akshardham Temple\",\"Description\":\"&amp;#039;Akshardham&amp;#039; means the divine abode of God. It is hailed as an eternal place of devotion, purity and peace. Swaminarayan Akshardham at New Delhi is a Mandir &amp;ndash; an abode of God, a Hindu house of worship, and a spiritual and cultural campus dedicated to devotion, learning and harmony. Timeless Hindu spiritual messages, vibrant devotional traditions and ancient architecture all are echoed in its art and architecture.The mandir is a humble tribute to Bhagwan Swaminarayan (1781- 1830), the avatars, devas and great sages of Hinduism. The traditionally-styled complex was inaugurated on 6 November 2005 with the blessings of HH Pramukh Swami Maharaj and through the devoted efforts of skilled artisans and volunteers.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6326526,\"Long\":77.3069447,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/65\\/thumb\\/Swaminarayan Akshardham Temple_310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2475,\"Title\":\"Janpath\",\"Description\":\"Janpath translated People&#039;s Path, is one of the main roads in New Delhi. It starts out as Radial Road 1 in Connaught Place, adjacent to Palika Bazaar, and runs North-South perpendicular to, and past Rajpath.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6154559,\"Long\":77.2186094,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1510124793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1383,\"Title\":\"Presidential Palace\",\"Description\":\"The Rashtrapati Bhavan: Presidential Residence&quot; previously &quot;Viceroy&#039;s House&quot;) is the official home of the president located at the Western end of Rajpath in New Delhi, India. It may refer to only the mansion (the 340-room main building) that has the president&#039;s official residence, halls, guest rooms and offices; it may also refer to the entire 130-hectare (320 acre) President Estate that additionally includes huge presidential gardens (Mughal Gardens), large open spaces, residences of bodyguards and staff, stables, other offices and utilities within its perimeter walls. In terms of area, it is one of the largest residences of a head of state in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.61436,\"Long\":77.199621,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/34_1513171619.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":355539,\"Name\":\"Hotel The Taj Vilas\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.1671\",\"Long\":\"78.0324\",\"Address\":\"Fatehabad Road, opposite Hotel Trident, Fatehabad Road\"},\"Images\":[],\"CityId\":266,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Agra, Taj Vilas is convenient to Mosque and the Jawab and Mehtab Bagh.  This hotel is within close proximity of Motilal Nehru Park and Jahangir Mahal.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Treat yourself to a stay in one of the 68 individually decorated guestrooms, featuring fireplaces and LCD televisions. Your room comes with a memory foam bed. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Conveniences include laptop-compatible safes and desks, and housekeeping is provided daily.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Enjoy the convenience of ski-in\\/ski-out access at this hotel, which also features a 24-hour fitness center. Additional features at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&#039;s 24-hour room service.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a 24-hour business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/86\\/8e\\/868ea6894e11f8f0aff8ac7b088d634bbeb4c171.jpg\",\"AccoAminitiesMask\":\"1110001100001100100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":355571,\"Name\":\"Howard Plaza The Fern\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.164327974783\",\"Long\":\"78.038238286972\",\"Address\":\"Fatehabad Road, Agra 282 001, Fatehabad Road\"},\"Images\":[],\"CityId\":266,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;In the heart of Agra, Howard Plaza The Fern is close to Mosque and the Jawab and Motilal Nehru Park.  This 4-star hotel is within close proximity of Mehtab Bagh and Shah Burj.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 86 air-conditioned rooms featuring minibars and flat-screen televisions. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with separate bathtubs and showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You&#039;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and a sauna. Additional features at this hotel include complimentary wireless Internet access, concierge services, and gift shops\\/newsstands.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 2 restaurants and a coffee shop\\/cafe. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge. Buffet breakfasts are available for a fee.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, limo\\/town car service, and express check-in. Planning an event in Agra? This hotel has 4000 square feet (372 square meters) of space consisting of conference space and a meeting room. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/07\\/88\\/07887b78e6a3015335287b5c303f62facb69361e.jpg\",\"AccoAminitiesMask\":\"1110001110001101100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":364516,\"Name\":\"Crystal Sarovar Premiere - A Sarovar Hotel\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.1574\",\"Long\":\"78.05046\",\"Address\":\"Fatehabad Road, Agra, Fatehabad Road, AGRA, UTTAR PRADESH, India, Pin-282001, 282001\"},\"Images\":[],\"CityId\":266,\"Brief\":\"Offering free Wi-Fi facility, Crystal Sarovar Premiere is situated at a distance of 1 km from the famous Taj Mahal.  This hotel in Agra has 112 well-appointed rooms. Some rooms offer the marvellous view of Taj Mahal. All rooms are equipped with amenities like bottled drinking water, television, lamp, tea\\/coffee maker and work desk. The rooms also have an attached bathroom with shower cubicle and hot\\/cold water facility.null\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=a12Wzatglc1nsUWIgtWXhATD\\/DSE6+F3VeSPbME9pCW4oSWIlL1Tr0fW2keYZxRVrDMQViZFE116Ma4DNvMH\\/Hy9U9EENdhf9wCc4uwfPiE=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\u00a0AC LUXURY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1713,\"Title\":\"Swaminarayan Akshardham Temple\",\"Description\":\"&amp;#039;Akshardham&amp;#039; means the divine abode of God. It is hailed as an eternal place of devotion, purity and peace. Swaminarayan Akshardham at New Delhi is a Mandir &amp;ndash; an abode of God, a Hindu house of worship, and a spiritual and cultural campus dedicated to devotion, learning and harmony. Timeless Hindu spiritual messages, vibrant devotional traditions and ancient architecture all are echoed in its art and architecture.The mandir is a humble tribute to Bhagwan Swaminarayan (1781- 1830), the avatars, devas and great sages of Hinduism. The traditionally-styled complex was inaugurated on 6 November 2005 with the blessings of HH Pramukh Swami Maharaj and through the devoted efforts of skilled artisans and volunteers.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6326526,\"Long\":77.3069447,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/65\\/thumb\\/Swaminarayan Akshardham Temple_310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2475,\"Title\":\"Janpath\",\"Description\":\"Janpath translated People&#039;s Path, is one of the main roads in New Delhi. It starts out as Radial Road 1 in Connaught Place, adjacent to Palika Bazaar, and runs North-South perpendicular to, and past Rajpath.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6154559,\"Long\":77.2186094,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1510124793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1383,\"Title\":\"Presidential Palace\",\"Description\":\"The Rashtrapati Bhavan: Presidential Residence&quot; previously &quot;Viceroy&#039;s House&quot;) is the official home of the president located at the Western end of Rajpath in New Delhi, India. It may refer to only the mansion (the 340-room main building) that has the president&#039;s official residence, halls, guest rooms and offices; it may also refer to the entire 130-hectare (320 acre) President Estate that additionally includes huge presidential gardens (Mughal Gardens), large open spaces, residences of bodyguards and staff, stables, other offices and utilities within its perimeter walls. In terms of area, it is one of the largest residences of a head of state in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.61436,\"Long\":77.199621,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/34_1513171619.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":104920,\"Name\":\"Lemon Tree Premier\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.935323\",\"Long\":\"75.791716\",\"Address\":\"Nirwan Marg Bani Park\"},\"Images\":{\"Image\":[{\"ImagId\":2282542,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/883\\/LTJAILTP01_C.jpg\"},{\"ImagId\":2282543,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/891\\/LTJAILTP02_A.jpg\"},{\"ImagId\":2282544,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/902\\/LTJAILTP03_A.jpg\"},{\"ImagId\":2282545,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/910\\/LTJAILTP03_(1)_A.jpg\"},{\"ImagId\":2282546,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/918\\/LTJAILTP06_A.jpg\"}]},\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/52\\/501\\/883\\/LTJAILTP01_C.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":413433,\"Name\":\"Hotel Vesta Maurya Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.915415\",\"Long\":\"75.811031\",\"Address\":\"S-35-A, Arvind Marg, Near M.I. Road,,Rajasthan,India, 302001\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"Hotel Vesta Maurya Palace, Jaipur, a centrally located sophisticated hotel is ideal for business travel as well as a relaxed holiday. The traditional hospitality, welcoming ambience and flawless personalised services attracts the discerned travellers. This modern hotel offers a host of amenities for business and leisure, tasty meals and soothing accommodations.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nHotel Vesta Maurya Palace is situated at Arvind Marg, near M.I. road. Prominent tourist hotspots in the vicinity include Hawa Mahal (Approx. 3km) and Albert Hall Museum (Approx. 2km). Hawa Mahal is a five-storey structure beautiful latticework built for the women folk. Made of red and pink sandstone, this historic monument also houses an archaeological museum. Amber Fort, Jaipur Zoo and Lakshmi Narayan Temple are some of the significant tourist locations worth exploring. \\n\\nJaipur International Airport: 15 km (approx.)\\nJaipur Railway Station: 4 km (approx.)\\n\\n&lt;b&gt;Hotel Features:&lt;\\/b&gt;\\nA pleasant ambience and a comfortable stay with essential amenities can be enjoyed by the guests at this hotel. The necessary amenities for the guests are room service, internet, 24-hour front desk, air conditioning, elevators, parking, travel desk, 24-hour security and doctor-on-call. Well-equipped banquet facilities and wedding services are available for hosting informal events. The hotel houses a pool and health club for rejuvenation. The business centre equipped with conference facilities, business services and audio visual equipment fulfil the needs of corporate travellers. ATM\\/Cash machine and non-smoking rooms are additional benefits. Chandragupt, the indoor multi-cuisine restaurant offers tempting meals while The Spirit of Jeypore, a tastefully designed in-house bar offers quality beverages.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nRoyal deluxe, studio and suite rooms are available for lodging at Hotel Vesta Maurya Palace. These air conditioned rooms are contemporary and smartly furnished. The wooden flooring enhances the overall look of the rooms while the in-room amenities such as LCD colour TV, telephone, tea\\/coffee maker, Wi-Fi access, refrigerator and writing desk offers much-needed convenience during the stay.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3141\\/314197\\/images\\/_MG_8014_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":423261,\"Name\":\"Four Points By Sheraton Jaipur\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.86485\",\"Long\":\"75.795407\",\"Address\":\"City Square, Vasundhara Colony, Tonk Road,Rajasthan,India, 302018\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"Four Points By Sheraton, Jaipur is located in the heart of the city, with pristine backdrop of the lush Aravalli hills. Warm hospitality and welcoming ambience ensures a pleasant stay. This hotel is ideal for business travelers as well as leisure tourists.\\n\\n&lt;b&gt;Location: &lt;\\/b&gt;\\nFour Points By Sheraton is located in City Square in Vasundhara Colony. Other popular tourist attractions include Albert Hall Museum, Hawa Mahal, City Palace and Jantar Mantar. \\n\\nDistances form Jaipur International Airport: Approx. 7km\\nDistances from Jaipur Railway Station: Approx.  7km\\n\\n&lt;b&gt;Hotel Features: &lt;\\/b&gt;\\nFour Points is ideal for corporate and leisure travelers, owing to well-decorated rooms with comfortable furniture and state-of-the-art facilities. The hotel also offers conference room, audio visual equipment, LCD\\/Projector, business services, convention center, meeting facilities, pick and drop facility and high speed internet for corporate guests. Guests can relax with health club, swimming pool, spa, massage center, steam rooms and travel desk for assistance. Other basic amenities include 24-hour front desk, 24-hour room service, air conditioning, elevators, laundry, non-smoking rooms, parking, concierge, game room, wedding services and a doctor on call. The Eatery- Restaurant specializes in a variety of dishes from Indian, Chinese, Continental and traditional Rajasthani menus and Bar Bar is a well-stocked bar with interesting mixes for its patrons.\\n\\n&lt;b&gt;Room: &lt;\\/b&gt;\\nFour Points offers Comfort Room, Club Room, Suite and Comfort Room New Year Package. Basic room amenities include air conditioning, hair dryer, internet access, iron, mini bar, newspaper, private bathroom, telephone, direct dialing, flat-screen TV, full length mirror, in-room menu, in-room safe, ironing board, laundry bag, luggage space, phone line, rollaway bed, table lamp, temp control, Wi-Fi access on charge, writing desk, international plug points and bedside controls panel for light.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3087\\/308760\\/images\\/1_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Premium Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1713,\"Title\":\"Swaminarayan Akshardham Temple\",\"Description\":\"&amp;#039;Akshardham&amp;#039; means the divine abode of God. It is hailed as an eternal place of devotion, purity and peace. Swaminarayan Akshardham at New Delhi is a Mandir &amp;ndash; an abode of God, a Hindu house of worship, and a spiritual and cultural campus dedicated to devotion, learning and harmony. Timeless Hindu spiritual messages, vibrant devotional traditions and ancient architecture all are echoed in its art and architecture.The mandir is a humble tribute to Bhagwan Swaminarayan (1781- 1830), the avatars, devas and great sages of Hinduism. The traditionally-styled complex was inaugurated on 6 November 2005 with the blessings of HH Pramukh Swami Maharaj and through the devoted efforts of skilled artisans and volunteers.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6326526,\"Long\":77.3069447,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/65\\/thumb\\/Swaminarayan Akshardham Temple_310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &mdash; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah\\u0101n-Num\\u0101 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":2475,\"Title\":\"Janpath\",\"Description\":\"Janpath translated People&#039;s Path, is one of the main roads in New Delhi. It starts out as Radial Road 1 in Connaught Place, adjacent to Palika Bazaar, and runs North-South perpendicular to, and past Rajpath.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6154559,\"Long\":77.2186094,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1510124793.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1383,\"Title\":\"Presidential Palace\",\"Description\":\"The Rashtrapati Bhavan: Presidential Residence&quot; previously &quot;Viceroy&#039;s House&quot;) is the official home of the president located at the Western end of Rajpath in New Delhi, India. It may refer to only the mansion (the 340-room main building) that has the president&#039;s official residence, halls, guest rooms and offices; it may also refer to the entire 130-hectare (320 acre) President Estate that additionally includes huge presidential gardens (Mughal Gardens), large open spaces, residences of bodyguards and staff, stables, other offices and utilities within its perimeter walls. In terms of area, it is one of the largest residences of a head of state in the world.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.61436,\"Long\":77.199621,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/34_1513171619.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6026,\"SupplierName\":\"Tamarind Global\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"184584\",\"Title\":\"Day 01 \\u2013 Arrival in Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p>Meet our representative upon arrival in Delhi and check-in at the hotel. India&#39;s capital &amp; a major gateway to the country, Delhi is contemporary and a bustling metropolis that successfully combines in its fold the ancient &amp; the modern. Its strategic location was one of the prime reasons why successive dynasties chose it as their seat of power. New Delhi also reflects the legacy the British left behind. After some rest proceed to modern Hindu temple Akshardham, return back to Hotel. Overnight in Delhi<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":219640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":352537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219553,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1713,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184587\",\"Title\":\"Day 02 \\u2013 Sightseeing in Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>After breakfast, proceed for a full-day tour of Old and New Delhi. This fascinating city has been in existence since the 6th century BC and has seen ups and downs from the rule of the Pandavas right up to the British Raj. Visit Jama Masjid, which is the largest mosque in India, commissioned by Emperor Shah Jahan. The courtyard of the mosque can hold about 25,000 worshippers. Enjoy a rickshaw ride in Chandni Chowk, the busiest market in Old Delhi&hellip;noisy, chaotic, and uniquely Indian. You will then drive past from the Red Fort, which was constructed during the rule of Emperor Shah Jahan and served as the residence for the Mughal royal family. It continues to be significant to date, as every Independence Day, the Prime Minister makes a speech from its ramparts as the Indian flag is hoisted. Later, drive past President House and several other government buildings in Edwin Lutyen&rsquo;s Delhi before you head toward Rajghat, the memorial to Mahatma Gandhi. This simple memorial marks the spot where Mahatma Gandhi was cremated in 1948. Thereafter, visit Humayun&rsquo;s Tomb, commissioned by Humayun&rsquo;s wife Hamida Banu Begum in 1562. It was the first garden-tomb built in the Indian sub-continent where the Persian architect used red sandstone on a large scale. Later in the evening visit the Qutab Minar, which is the tallest brick minaret in the world; it was commissioned by Qutbuddin Aibak, the first Muslim ruler of Delhi. Overnight in Delhi.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":219640,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":352537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219553,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":300,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":411,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2933,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":742,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2475,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1383,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1405,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1465,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184590\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184593\",\"Title\":\"Day 03 \\u2013 Delhi \\u2013 Agra (210 kms \\/ approx. 4 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>On arrival in Agra, check in to your Hotel. Later proceed for Half Day City Tour of Agra. Visit the Red Fort, which was commissioned in 1565 by The Mughal Emperor, Akbar. The beautiful yet forbidding structure is a handsome example of Mughal architecture. Later, visit the Taj Mahal &hellip; a mausoleum built as a symbol of Emperor Shah Jahan&rsquo;s devotion to his beloved queen Mumtaz Mahal. Considered an architectural marvel, its construction took thousands of workers over 21 years to complete. Overnight in Agra.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":355539,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":355571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":364516,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\\u00a0AC LUXURY\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184596\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184599\",\"Title\":\"Day 04 \\u2013 Agra \\u2013 Jaipur (230 kms \\/ approx. 5 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast, you will leave for Jaipur. On the way, you will visit Abhaneri and Fatehpur Sikri. Abhaneri &ndash; Abhaneri is a village in the Dausa district of Rajasthan state in India. The place is popular for the Chand Baori stepwell and Harshat Mata Temple. Fatehpur Sikri &ndash; It is believed to be one of the first carefully planned cities of the Mughals. It was built by Emperor Akbar in the 16th century AD. Its name basically means the &lsquo;City of Victory.&rsquo; The evening takes a stroll in the markets of Jaipur for the traditional dresses and shoes, curio shops, blue pottery, etc. Overnight in Jaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":413433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":104920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":423261,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"AC Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":499,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184602\",\"Title\":\"Day 05 \\u2013 Jaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p>Proceed for a full-day sightseeing trip of Jaipur, also known as the &lsquo;Pink City. The city of Jaipur is the capital of the state of Rajasthan, famous for its colorful culture, forts, palaces, and lakes. Jaipur owes its name to the founder of the city, warrior king Sawai Jai Singh II. Visit the Amber Fort. The best way to explore the fort is to ride up to it on Elephant back. Prominent structures inside the fort are the Diwan-i-Aam, adorned with latticed galleries, the Ganesh Pol, with a beautiful painted image of Lord Ganesh, and the stunning Sheesh Mahal, a hall decorated with thousands of tiny mirrors. Later, stop to photograph the beautiful Hawa Mahal, also known as the &ldquo;Palace of the Winds.&rdquo; This beautiful fa&ccedil;ade with its ornately carved latticework windows was designed so the ladies of the palace could look out onto the streets unobserved. Later you will visit the City Palace&hellip; again, a synthesis of Rajasthani and Mughal styles. The museums here showcase rare and ancient manuscripts, arms dating back to the 15th century, and costumes of erstwhile royalty. Later, visit the Jantar Mantar Observatory, comprising geometric devices for measuring time, and tracking stars in their orbits. Overnight in Jaipur.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":413433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":104920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":423261,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"AC Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"184605\",\"Title\":\"Day 06 \\u2013 Jaipur \\u2013 Delhi (250 kms \\/ approx. 5 hrs) Departure from Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, drive back to Delhi. You will be transferred to Delhi airport\\/railway station for a return flight back home.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25675\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14093.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11761,\"priceDoubleOcc\":\"14093.10\",\"priceSingleOcc\":28186.2,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14093.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11761,\"priceDoubleOcc\":\"14093.10\",\"priceSingleOcc\":28186.2,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14093.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11761,\"priceDoubleOcc\":\"14093.10\",\"priceSingleOcc\":28186.2,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14093.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11761,\"priceDoubleOcc\":\"14093.10\",\"priceSingleOcc\":28186.2,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14093.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11761,\"priceDoubleOcc\":\"14093.10\",\"priceSingleOcc\":28186.2,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14093.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13905,\"priceDoubleOcc\":\"17308.20\",\"priceSingleOcc\":31401.300000000003,\"priceExtraBed\":\"7098.00\",\"priceWithoutBed\":\"4678.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17308.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25676\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17273.55\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14646,\"priceDoubleOcc\":\"17273.55\",\"priceSingleOcc\":34547.1,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17273.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14646,\"priceDoubleOcc\":\"17273.55\",\"priceSingleOcc\":34547.1,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17273.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14646,\"priceDoubleOcc\":\"17273.55\",\"priceSingleOcc\":34547.1,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17273.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14646,\"priceDoubleOcc\":\"17273.55\",\"priceSingleOcc\":34547.1,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17273.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":14646,\"priceDoubleOcc\":\"17273.55\",\"priceSingleOcc\":34547.1,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17273.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16790,\"priceDoubleOcc\":\"20488.65\",\"priceSingleOcc\":37762.2,\"priceExtraBed\":\"9391.20\",\"priceWithoutBed\":\"7555.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20488.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25677\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19174.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16207,\"priceDoubleOcc\":\"19174.05\",\"priceSingleOcc\":38348.1,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19174.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16207,\"priceDoubleOcc\":\"19174.05\",\"priceSingleOcc\":38348.1,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19174.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16207,\"priceDoubleOcc\":\"19174.05\",\"priceSingleOcc\":38348.1,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19174.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16207,\"priceDoubleOcc\":\"19174.05\",\"priceSingleOcc\":38348.1,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19174.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16207,\"priceDoubleOcc\":\"19174.05\",\"priceSingleOcc\":38348.1,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19174.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18350,\"priceDoubleOcc\":\"22388.10\",\"priceSingleOcc\":41562.149999999994,\"priceExtraBed\":\"10273.20\",\"priceWithoutBed\":\"7665.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22388.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25675\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13422.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11201,\"priceDoubleOcc\":\"13422.00\",\"priceSingleOcc\":26844,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13422.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11201,\"priceDoubleOcc\":\"13422.00\",\"priceSingleOcc\":26844,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13422.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11201,\"priceDoubleOcc\":\"13422.00\",\"priceSingleOcc\":26844,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13422.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11201,\"priceDoubleOcc\":\"13422.00\",\"priceSingleOcc\":26844,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13422.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":11201,\"priceDoubleOcc\":\"13422.00\",\"priceSingleOcc\":26844,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13422.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13243,\"priceDoubleOcc\":\"16484.00\",\"priceSingleOcc\":29906,\"priceExtraBed\":\"6760.00\",\"priceWithoutBed\":\"4456.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25676\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16451.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13949,\"priceDoubleOcc\":\"16451.00\",\"priceSingleOcc\":32902,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16451.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13949,\"priceDoubleOcc\":\"16451.00\",\"priceSingleOcc\":32902,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16451.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13949,\"priceDoubleOcc\":\"16451.00\",\"priceSingleOcc\":32902,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16451.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13949,\"priceDoubleOcc\":\"16451.00\",\"priceSingleOcc\":32902,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16451.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13949,\"priceDoubleOcc\":\"16451.00\",\"priceSingleOcc\":32902,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16451.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15990,\"priceDoubleOcc\":\"19513.00\",\"priceSingleOcc\":35964,\"priceExtraBed\":\"8944.00\",\"priceWithoutBed\":\"7196.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19513.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25677\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18261.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"18261.00\",\"priceSingleOcc\":36522,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18261.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"18261.00\",\"priceSingleOcc\":36522,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18261.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"18261.00\",\"priceSingleOcc\":36522,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18261.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"18261.00\",\"priceSingleOcc\":36522,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18261.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"18261.00\",\"priceSingleOcc\":36522,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18261.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-23\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17476,\"priceDoubleOcc\":\"21322.00\",\"priceSingleOcc\":39583,\"priceExtraBed\":\"9784.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21322.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Air tickets and airport taxes&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rickshaw ride in Chandni Chowk&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Services of English-speaking guide during sightseeing tours&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"184584\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[184584],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184587\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[184587],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184590\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[184590],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184593\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[184593],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184596\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[184596],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184599\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[184599],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184602\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[184602],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"184605\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[184605],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Delhi,Agra,Jaipur','Delhi,Indian Subcontinent,North India,India,Agra,Uttar Pradesh,Jaipur,Rajasthan','','7701,266,12995',13422,22388,5,'125_1632160613_0.jpg,125_1632160613_1.jpg,125_1632160613_2.jpg,125_1632160613_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 15:27:43','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'golden-jewels-of-india',NULL,NULL,NULL,0),(126,24963,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24963,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_04_Hills_and_River_of_North_East_92.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":14,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 04 Hills and River of North East\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":243,\"Title\":\"Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nsture.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3748\\/thumb\\/Brahmaputra_301.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":92930,\"Name\":\"Rialto\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.18339\",\"Long\":\"91.74548425\",\"Address\":\"GNB Road, Panbazar, Near Panbazar Flyover \"},\"Images\":{\"Image\":[{\"ImagId\":2042855,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189685.jpg?s=312x\"},{\"ImagId\":2042856,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/aff.bstatic.com\\/images\\/hotel\\/max300\\/430\\/43086123.jpg\"},{\"ImagId\":2042857,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189671.jpg?s=312x\"},{\"ImagId\":2042858,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189673.jpg?s=312x\"},{\"ImagId\":2042859,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix2.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189674.jpg?s=312x\"}]},\"CityId\":11240,\"Brief\":\"Located in Fancy Bazaar, Hotel Rialto is a perfect starting point from which to explore Guwahati. Both business travelers and tourists can enjoy the hotel&#039;s facilities and services. Service-minded staff will welcome and guide you at the Hotel Rialto. Guestrooms are fitted with all the amenities you need for a good night&#039;s sleep. In some of the rooms, guests can find air conditioning, wake-up service, telephone, fan, television. The hotel offers various recreational opportunities. Friendly staff, great facilities and close proximity to all that Guwahati has to offer are three great reasons you should stay at Hotel Rialto.\",\"MainImg\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189685.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":414204,\"Name\":\"Mayflower Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.185057\",\"Long\":\"91.74441\",\"Address\":\"MLN Road, Panbazar, Panbazar, GUWAHATI, ASSAM, India, Pin-781001, 781001\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"Hotel Mayflower is located 1 km from Guwahati Railway Station and 7 km from Guwahati Zoo. This property in Guwahati provides guests with free breakfast and internet access.  This accommodation has 21 well-maintained guestrooms equipped with amenities like television, mirror, wake-up calls and wardrobe. The rooms also have separate sitting area and attached bathroom. null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/maq\\/oyf\\/fbs\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Irish\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467887,\"Name\":\"Kiranshree Grand\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"New Airport Road Mirzapur, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817962,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_01617279793.jpg\"},{\"ImagId\":4817963,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_11617279793.jpg\"},{\"ImagId\":4817964,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_21617279793.jpg\"},{\"ImagId\":4817965,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_31617279793.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;The historic city of Guwahati is the gateway to India&rsquo;s Northeast and Kiranshree Grand stands with pride at the gateway of Guwahati city. Just a few steps away from the Lokapriya Gopinath Bordoloi International Airport, this Hotel cum Resort is also ideal for anyone making a stopover on a trip to any other part of the northeastern region. The location of the hotel helps you travel to any part of Assam or the rest of the Northeast without getting stuck in the city traffic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegantly designed hotel cum resort boasts of 122 luxurious rooms and suites with state of the art facilities and 24x7 services and is spread over 6 acres of land. The moment you step inside the property, the wide pathway that leads to the main lobby of the hotel will awe you with its grandeur. On one side of the pathway is the high boundary wall covered in green vines while on the other side is the vast parking zone. As the pathway comes to an end you will see the beautiful palm court ahead and the main lobby on your right. The ardour to strike a fine balance between nature and modern lifestyle is visible all throughout the campus and the lobby is no different. While our reception desk carries out the formalities of check-in, maybe you can find some time to admire the architecture and decorations of the enormously spacious lobby that transcends space and dimension through the glass walls on three sides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can choose from Club Rooms, Grand Suites and Presidential Suites to meet your accomodational requirements during business trips, holidays etc. Or confine yourself in any of the Honeymoon Suites, to enjoy some intimate, romantic moments with your special one. Every floor of the residential blocks has a spacious lounge to relax.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_b5720a0bf7d7ce57d46dbd074ff16f6e1582890297.jpg\",\"AccoAminitiesMask\":\"1100010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467889,\"Name\":\"Shoolin Grand\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G.S. Road Opp Indian Oil Petrol Pump, Rukmini Gaon, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817961,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_01617279603.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Located in Rukmini Gaon of Guwahati City, we are ideally located within the conveniences of city life yet distant enough from it&rsquo;s over buzz. Something we all love from time to time. Hotel Shoolin Grand is equipped with premium infrastructure and services that guarantee a pleasurable stay. If you are looking for a uber luxurious experience, we have 45 premium category rooms, including three suites, and a multi-speciality spa with a unisex beauty salon. Food lovers can delight in the vast range of dishes in our multicuisine restaurant and experiment with tastes and flavors. While ensuring our guests the most comfortable stay, we also provide facilities of baby care room and kids play zone. We are also open for conferences and private events with our well set-up conference and banquet halls. So the next time you plan a visit to Guwahati or a carefree staycation, choose leisure, comfort, and impeccable facilities&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_9c4b5dba1c71af56b3d93db827f671a41582890981.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Excutive room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467891,\"Name\":\"D Courtyard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"RG Baruah Rd, Rajdhani Nursery, Opp, Ganeshguri, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817951,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_01617278795.jpg\"},{\"ImagId\":4817952,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_11617278795.jpg\"},{\"ImagId\":4817953,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_21617278795.jpg\"},{\"ImagId\":4817954,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_31617278795.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel &amp;#39;D&amp;#39; Courtyard is reckoned among the luxury budget hotels in Guwahati. Most significantly the hotel aims to provide luxurious standard within budget without compromising with your comforts. We enrich the stay of our visitors with our holistic approach of delivering excellent services. Our personalized and customized services suit every guest unique needs. A part from the significant hotels in guwahati, we stand high considering the amenities and services we offer. Our professional and experienced staff aims to satisfy an individual&rsquo;s specific needs with full efficiency. Quality, elegance and comfort are what make it one of the best luxury budget hotels in Guwahati, Assam. The hotel with its host of facilities and services is designed to meet every need of leisure \\/ travel \\/ banquet \\/ conferencing services with best hospitality industry standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The 34 well appointed guest keys and suites are elegantly designed and the delectable dinning option, technologically advanced conferencing features exquisite recreation facilities as well as warm and attentive services are just some of the things that make Hotel &amp;#39;D&amp;#39; Courtyard, Guwahati a preferred destination of pure bliss.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_c68865f572bfcd7ac30b170f1de0f9281582891299.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":243,\"Title\":\"Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nsture.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3748\\/thumb\\/Brahmaputra_301.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178778\",\"Title\":\"Guwahati \\u2013 Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178783\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit &nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.<br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8434,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9191,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178788\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness. &nbsp;It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River. Evening we will return back to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178793\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178798\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati. Arrive and check in at hotel. Visit Srimanta Sankardev Kalakshetra a place where Assamese history and culture is presented, You may also visit the Assam Film Museum to know the History of Assamese Cinema. Visit GTAC Tea Lounge to enjoy a cup of finest Assam Tea and also carry some Tea back home. Here you will find the finest quality of Organic, CTC, Orthodox, Green Tea, White Tea, Purple Tea etc. Evening you may take a River Cruise (Direct Payment) on the mighty River Brahmaputra. You may also visit the local market. Assam is famous for Assam Silk particularly Golden Muga Silk, Assam Tea, Bamboo and Cane Products. Overnight stay in Guwahati.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":92930,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467891,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":414204,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Irish\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467889,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Excutive room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":243,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1660,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178803\",\"Title\":\"Guwahati\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>After breakfast check out from hotel. As time permits we may take a tour of the Kamakhya Temple and other Temples in Guwahati namely Purva Tirupati Shri Balaji Temple, Sukreswar Temple, Navagraha Temple, Umananda Temple at the Peacock Island which is the smallest inhabited River Island in the World, Assam State Museum, Dighali Pukhuri (Lake), State Zoo cum Botanical Garden, Planetarium and the Assam State Emporiums. With everlasting memories transfer to Guwahati airport\\/railway station for onward journey.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":81,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":82,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1217,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1697,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1834,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24963\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8373.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6724,\"priceDoubleOcc\":\"8373.30\",\"priceSingleOcc\":20238.3,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8373.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7194,\"priceDoubleOcc\":\"9079.55\",\"priceSingleOcc\":20944.55,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9079.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7465,\"priceDoubleOcc\":\"9485.22\",\"priceSingleOcc\":21350.22,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9485.22\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6724,\"priceDoubleOcc\":\"8373.30\",\"priceSingleOcc\":20238.3,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8373.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7901,\"priceDoubleOcc\":\"10139.49\",\"priceSingleOcc\":22004.489999999998,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10139.49\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9689,\"priceDoubleOcc\":\"12822.11\",\"priceSingleOcc\":24687.11,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12822.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24964\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8797.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6968,\"priceDoubleOcc\":\"8797.05\",\"priceSingleOcc\":21001.05,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8797.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7438,\"priceDoubleOcc\":\"9502.17\",\"priceSingleOcc\":21706.17,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9502.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8605,\"priceDoubleOcc\":\"11252.54\",\"priceSingleOcc\":23456.54,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11252.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6968,\"priceDoubleOcc\":\"8797.05\",\"priceSingleOcc\":21001.05,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8797.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8145,\"priceDoubleOcc\":\"10562.11\",\"priceSingleOcc\":22766.11,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10562.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9987,\"priceDoubleOcc\":\"13324.96\",\"priceSingleOcc\":25528.96,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13324.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24965\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11785.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8931,\"priceDoubleOcc\":\"11785.90\",\"priceSingleOcc\":27040.9,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11785.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9402,\"priceDoubleOcc\":\"12493.28\",\"priceSingleOcc\":27748.28,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12493.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9673,\"priceDoubleOcc\":\"12898.95\",\"priceSingleOcc\":28153.95,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12898.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8933,\"priceDoubleOcc\":\"11789.29\",\"priceSingleOcc\":27044.29,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11789.29\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10110,\"priceDoubleOcc\":\"13555.48\",\"priceSingleOcc\":28810.48,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13555.48\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11900,\"priceDoubleOcc\":\"16239.23\",\"priceSingleOcc\":31494.23,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16239.23\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24966\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14284.33\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11443,\"priceDoubleOcc\":\"14284.33\",\"priceSingleOcc\":32025.33,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14284.33\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11939,\"priceDoubleOcc\":\"15027.87\",\"priceSingleOcc\":32768.87,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15027.87\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13283,\"priceDoubleOcc\":\"17043.79\",\"priceSingleOcc\":34784.79,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17043.79\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11443,\"priceDoubleOcc\":\"14284.33\",\"priceSingleOcc\":32025.33,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14284.33\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12683,\"priceDoubleOcc\":\"16144.31\",\"priceSingleOcc\":33885.31,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16144.31\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14284,\"priceDoubleOcc\":\"18545.56\",\"priceSingleOcc\":36286.56,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18545.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24967\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18707.15\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15055,\"priceDoubleOcc\":\"18707.15\",\"priceSingleOcc\":40742.15,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18707.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15550,\"priceDoubleOcc\":\"19448.43\",\"priceSingleOcc\":41483.43,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19448.43\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15765,\"priceDoubleOcc\":\"19771.61\",\"priceSingleOcc\":41806.61,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19771.61\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15052,\"priceDoubleOcc\":\"18702.63\",\"priceSingleOcc\":40737.630000000005,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18702.63\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16292,\"priceDoubleOcc\":\"20562.61\",\"priceSingleOcc\":42597.61,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20562.61\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":17893,\"priceDoubleOcc\":\"22963.86\",\"priceSingleOcc\":44998.86,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22963.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24963\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7854.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6307,\"priceDoubleOcc\":\"7854.60\",\"priceSingleOcc\":18984.6,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7854.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6749,\"priceDoubleOcc\":\"8517.10\",\"priceSingleOcc\":19647.1,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8517.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7002,\"priceDoubleOcc\":\"8897.64\",\"priceSingleOcc\":20027.64,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8897.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6307,\"priceDoubleOcc\":\"7854.60\",\"priceSingleOcc\":18984.6,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7854.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7412,\"priceDoubleOcc\":\"9511.38\",\"priceSingleOcc\":20641.379999999997,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9511.38\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9089,\"priceDoubleOcc\":\"12027.82\",\"priceSingleOcc\":23157.82,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12027.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24964\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8252.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6537,\"priceDoubleOcc\":\"8252.10\",\"priceSingleOcc\":19700.1,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8252.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6978,\"priceDoubleOcc\":\"8913.54\",\"priceSingleOcc\":20361.54,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8913.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8072,\"priceDoubleOcc\":\"10555.48\",\"priceSingleOcc\":22003.48,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10555.48\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6537,\"priceDoubleOcc\":\"8252.10\",\"priceSingleOcc\":19700.1,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8252.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7640,\"priceDoubleOcc\":\"9907.82\",\"priceSingleOcc\":21355.82,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9907.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9368,\"priceDoubleOcc\":\"12499.52\",\"priceSingleOcc\":23947.52,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12499.52\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24965\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11055.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8378,\"priceDoubleOcc\":\"11055.80\",\"priceSingleOcc\":25365.8,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11055.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"11719.36\",\"priceSingleOcc\":26029.36,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11719.36\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9074,\"priceDoubleOcc\":\"12099.90\",\"priceSingleOcc\":26409.9,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12099.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8380,\"priceDoubleOcc\":\"11058.98\",\"priceSingleOcc\":25368.98,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11058.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9484,\"priceDoubleOcc\":\"12715.76\",\"priceSingleOcc\":27025.760000000002,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12715.76\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11163,\"priceDoubleOcc\":\"15233.26\",\"priceSingleOcc\":29543.260000000002,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15233.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24966\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13399.46\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10734,\"priceDoubleOcc\":\"13399.46\",\"priceSingleOcc\":30041.46,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13399.46\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11199,\"priceDoubleOcc\":\"14096.94\",\"priceSingleOcc\":30738.940000000002,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14096.94\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12460,\"priceDoubleOcc\":\"15987.98\",\"priceSingleOcc\":32629.98,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15987.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10734,\"priceDoubleOcc\":\"13399.46\",\"priceSingleOcc\":30041.46,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13399.46\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11897,\"priceDoubleOcc\":\"15144.22\",\"priceSingleOcc\":31786.22,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15144.22\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13399,\"priceDoubleOcc\":\"17396.72\",\"priceSingleOcc\":34038.72,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17396.72\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24967\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17548.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14123,\"priceDoubleOcc\":\"17548.30\",\"priceSingleOcc\":38218.3,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17548.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14586,\"priceDoubleOcc\":\"18243.66\",\"priceSingleOcc\":38913.66,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18243.66\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14788,\"priceDoubleOcc\":\"18546.82\",\"priceSingleOcc\":39216.82,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18546.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14120,\"priceDoubleOcc\":\"17544.06\",\"priceSingleOcc\":38214.06,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17544.06\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15283,\"priceDoubleOcc\":\"19288.82\",\"priceSingleOcc\":39958.82,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19288.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16785,\"priceDoubleOcc\":\"21541.32\",\"priceSingleOcc\":42211.32,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21541.32\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178778\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178778],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178783\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178783],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178788\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178788],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178793\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178798\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178798],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178803\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178803],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shillong,Guwahati','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Guwahati,Assam,Cherrapunji,Dawki','','25073,11240',7855,22964,4,'126_1633611028_0.jpg,126_1633611028_1.jpg,126_1633611028_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',1,'',0,'2021-07-29 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2021-07-29 00:00:00','2021-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'no-04-hills-and-river-of-north-east',NULL,NULL,NULL,0),(127,24950,1,5293,0,0,0,'Adventure,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24950,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_03_Stunning_Shillong_30.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":14,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 03 Stunning Shillong\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Adventure,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14868,\"Title\":\"Krang Suri Falls\",\"Description\":\"Krang Suri waterfall is known for being located within the mountains, which can also be seen from afar. To reach the waterfall the tourists must walk alongside the border of the mountains, which is a very narrow yet slippery path.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Krang_Suri_Falls_25073_1582626874.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9193,\"Title\":\"Laitlum Canyons\",\"Description\":\"Laitlum Canyons are perfectly perched in the Khasi Hills and is the most off-beat and explored places for a traveler looking for a unique experience. With a short hike to the edge of the hills, experience peace, adventure and beauty all at once. Visit the hilltop and admire the alluring views of the whole valley. Taking into account its surreal beauty and tranquillity, it is one of the must-visit places near Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178695\",\"Title\":\"Guwahati \\u2013 Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178700\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit &nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8434,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9191,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178705\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness. &nbsp;It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River. Evening we will return back to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178710\",\"Title\":\"Shillong - Laitlum Canyons -Krang Suri Falls - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>After breakfast we proceed to Laitlum Canyons for some breathtaking views. We then visit Krang Suri Falls. It is one of the best waterfalls in Meghalaya. You can also swim in a naturally formed pool here. You can also go behind the waterfall and see the water falling in front of you. Evening return back to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14868,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9193,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178715\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.<br \\/>\\r\\n&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24950\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8885.19\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6786,\"priceDoubleOcc\":\"8885.19\",\"priceSingleOcc\":21880.190000000002,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8885.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7288,\"priceDoubleOcc\":\"9637.77\",\"priceSingleOcc\":22632.77,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9637.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7570,\"priceDoubleOcc\":\"10061.52\",\"priceSingleOcc\":23056.52,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10061.52\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6786,\"priceDoubleOcc\":\"8885.19\",\"priceSingleOcc\":21880.190000000002,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8885.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8042,\"priceDoubleOcc\":\"10768.90\",\"priceSingleOcc\":23763.9,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10768.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9925,\"priceDoubleOcc\":\"13593.90\",\"priceSingleOcc\":26588.9,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13593.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24951\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8885.19\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6786,\"priceDoubleOcc\":\"8885.19\",\"priceSingleOcc\":21880.190000000002,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8885.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7288,\"priceDoubleOcc\":\"9637.77\",\"priceSingleOcc\":22632.77,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9637.77\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7570,\"priceDoubleOcc\":\"10061.52\",\"priceSingleOcc\":23056.52,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10061.52\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6786,\"priceDoubleOcc\":\"8885.19\",\"priceSingleOcc\":21880.190000000002,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8885.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8042,\"priceDoubleOcc\":\"10768.90\",\"priceSingleOcc\":23763.9,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10768.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9925,\"priceDoubleOcc\":\"13593.90\",\"priceSingleOcc\":26588.9,\"priceExtraBed\":\"2587.70\",\"priceWithoutBed\":\"2587.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13593.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24952\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12226.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9074,\"priceDoubleOcc\":\"12226.60\",\"priceSingleOcc\":28046.6,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12226.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9574,\"priceDoubleOcc\":\"12976.92\",\"priceSingleOcc\":28796.92,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12976.92\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9857,\"priceDoubleOcc\":\"13401.80\",\"priceSingleOcc\":29221.8,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13401.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9075,\"priceDoubleOcc\":\"12227.73\",\"priceSingleOcc\":28047.73,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12227.73\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10330,\"priceDoubleOcc\":\"14111.44\",\"priceSingleOcc\":29931.440000000002,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14111.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12214,\"priceDoubleOcc\":\"16936.44\",\"priceSingleOcc\":32756.44,\"priceExtraBed\":\"2768.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16936.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24953\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14633.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11903,\"priceDoubleOcc\":\"14633.50\",\"priceSingleOcc\":32713.5,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14633.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12430,\"priceDoubleOcc\":\"15424.50\",\"priceSingleOcc\":33504.5,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15424.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12656,\"priceDoubleOcc\":\"15763.50\",\"priceSingleOcc\":33843.5,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15763.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11903,\"priceDoubleOcc\":\"14633.50\",\"priceSingleOcc\":32713.5,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14633.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13221,\"priceDoubleOcc\":\"16611.00\",\"priceSingleOcc\":34691,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16611.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14916,\"priceDoubleOcc\":\"19153.50\",\"priceSingleOcc\":37233.5,\"priceExtraBed\":\"6441.00\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19153.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20147.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16118,\"priceDoubleOcc\":\"20147.90\",\"priceSingleOcc\":43651.9,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20147.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16645,\"priceDoubleOcc\":\"20938.90\",\"priceSingleOcc\":44442.9,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20938.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16871,\"priceDoubleOcc\":\"21277.90\",\"priceSingleOcc\":44781.9,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21277.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16118,\"priceDoubleOcc\":\"20147.90\",\"priceSingleOcc\":43651.9,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20147.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":17436,\"priceDoubleOcc\":\"22125.40\",\"priceSingleOcc\":45629.4,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22125.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":19131,\"priceDoubleOcc\":\"24667.90\",\"priceSingleOcc\":48171.9,\"priceExtraBed\":\"8056.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24667.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24950\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8334.78\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6366,\"priceDoubleOcc\":\"8334.78\",\"priceSingleOcc\":20524.78,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8334.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6836,\"priceDoubleOcc\":\"9040.74\",\"priceSingleOcc\":21230.739999999998,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9040.74\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7101,\"priceDoubleOcc\":\"9438.24\",\"priceSingleOcc\":21628.239999999998,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9438.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6366,\"priceDoubleOcc\":\"8334.78\",\"priceSingleOcc\":20524.78,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8334.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7544,\"priceDoubleOcc\":\"10101.80\",\"priceSingleOcc\":22291.8,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10101.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9310,\"priceDoubleOcc\":\"12751.80\",\"priceSingleOcc\":24941.8,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12751.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24951\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8334.78\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6366,\"priceDoubleOcc\":\"8334.78\",\"priceSingleOcc\":20524.78,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8334.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6836,\"priceDoubleOcc\":\"9040.74\",\"priceSingleOcc\":21230.739999999998,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9040.74\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7101,\"priceDoubleOcc\":\"9438.24\",\"priceSingleOcc\":21628.239999999998,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9438.24\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6366,\"priceDoubleOcc\":\"8334.78\",\"priceSingleOcc\":20524.78,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8334.78\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7544,\"priceDoubleOcc\":\"10101.80\",\"priceSingleOcc\":22291.8,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10101.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9310,\"priceDoubleOcc\":\"12751.80\",\"priceSingleOcc\":24941.8,\"priceExtraBed\":\"2427.40\",\"priceWithoutBed\":\"2427.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12751.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24952\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11469.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8512,\"priceDoubleOcc\":\"11469.20\",\"priceSingleOcc\":26309.2,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11469.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8981,\"priceDoubleOcc\":\"12173.04\",\"priceSingleOcc\":27013.04,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12173.04\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9247,\"priceDoubleOcc\":\"12571.60\",\"priceSingleOcc\":27411.6,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12571.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8513,\"priceDoubleOcc\":\"11470.26\",\"priceSingleOcc\":26310.260000000002,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11470.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9691,\"priceDoubleOcc\":\"13237.28\",\"priceSingleOcc\":28077.28,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13237.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11457,\"priceDoubleOcc\":\"15887.28\",\"priceSingleOcc\":30727.28,\"priceExtraBed\":\"2597.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15887.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24953\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13727.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"13727.00\",\"priceSingleOcc\":30687,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13727.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11660,\"priceDoubleOcc\":\"14469.00\",\"priceSingleOcc\":31429,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14469.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11872,\"priceDoubleOcc\":\"14787.00\",\"priceSingleOcc\":31747,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14787.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"13727.00\",\"priceSingleOcc\":30687,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13727.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12402,\"priceDoubleOcc\":\"15582.00\",\"priceSingleOcc\":32542,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15582.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13992,\"priceDoubleOcc\":\"17967.00\",\"priceSingleOcc\":34927,\"priceExtraBed\":\"6042.00\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17967.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18899.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15119,\"priceDoubleOcc\":\"18899.80\",\"priceSingleOcc\":40947.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18899.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15614,\"priceDoubleOcc\":\"19641.80\",\"priceSingleOcc\":41689.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19641.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15826,\"priceDoubleOcc\":\"19959.80\",\"priceSingleOcc\":42007.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19959.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15119,\"priceDoubleOcc\":\"18899.80\",\"priceSingleOcc\":40947.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18899.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16356,\"priceDoubleOcc\":\"20754.80\",\"priceSingleOcc\":42802.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20754.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":17946,\"priceDoubleOcc\":\"23139.80\",\"priceSingleOcc\":45187.8,\"priceExtraBed\":\"7557.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23139.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178695\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178695],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178700\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178700],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178705\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178705],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178710\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178710],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178715\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178715],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shillong','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Guwahati,Cherrapunji,Dawki,Mawlynnong','','25073',8335,24668,4,'127_1633611841_0.jpg,127_1633611841_1.jpg,127_1633611841_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',1,'',0,'2021-07-29 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2021-07-29 00:00:00','2021-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'no-03-stunning-shillong',NULL,NULL,NULL,0),(128,24945,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24945,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/no_02_marvelous_meghalaya_1627052297.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":14,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 02 Marvelous Meghalaya \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}},{\"CityId\":34563,\"Title\":\"Cherrapunji\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467880,\"Name\":\"Pala Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kutmadan, Sohra, Cherrapunji, Shillong, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;&nbsp;At Pala Resort, we pride ourselves in outstanding services. Our Staffs would make sure that our esteemed guests feel relaxed and at home, we are happy to provide and offer:&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467880\\/4650_34a8b9a4ed689bd8198ad424f24ec46b1582889526.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467882,\"Name\":\"San Naela Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Land mark - Near NIT , SOHRA , Pynshadkhurai - Shella Road Saitsohpen, Cherrapunji&lrm;, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Resort San-Nael-La organize any enjoyable and memorable event you require. A truly remarkable destination where We try to keep your stay as special as you are. With experienced team in hospitality industry, we are second to none and can offer better service within your budget. It is very popular for its restaurant.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467882\\/4650_bd829c9e9e583c10af878ebf50c561ec1582889677.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467886,\"Name\":\"Sohra Plaza\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Situated in the wettest place on the planet (though not currently), this homestay offers you a comfortable and homely stay. Since there is almost no construction around this place, you get unobstructed views of the landscape of Khasi Hills.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467886\\/4650_6773560e9a6877706160c30298f3233d1582890001.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":479704,\"Name\":\"Smoky Falls Mae Fi Resort\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2403781\",\"Long\":\"91.676958\",\"Address\":\"Tyrna Enroute to Nongriat, via Sohra Cherrapunjee Cherrapunji, Tyrna, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Smoky Falls Mae Fi Resort is located at Tyrna Village, 7 km from Cherrapunjee enroute to the Double decker living root bridge and Rainbow Falls, Nongriat. You can stay at our resort and park your car here and get down to Nongriat. The trek from here is about an hour. The resort has a view point, where you can see many waterfalls falling down from Sohra \\/ Cherrapunjee mountain range.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479704\\/4650_6657b8ec009c75e090169b3e236037d81617359955.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178670\",\"Title\":\"Guwahati \\u2013 Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check-in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178675\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River Evening return to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178680\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178685\",\"Title\":\"Shillong - Cherrapunji  (65 KM | 1.5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit &nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Overnight stay in Cherrapunji.Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit &nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Overnight stay in Cherrapunji.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479704,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8434,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9191,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178690\",\"Title\":\"Cherrapunji - Guwahati (165 KM | 4.5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>After breakfast today check out and proceed to Guwahati. Enroute in Shillong (If Time Permits) visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24945\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7175.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5465,\"priceDoubleOcc\":\"7175.50\",\"priceSingleOcc\":17345.5,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7175.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5865,\"priceDoubleOcc\":\"7774.40\",\"priceSingleOcc\":17944.4,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7774.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5714,\"priceDoubleOcc\":\"7548.40\",\"priceSingleOcc\":17718.4,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7548.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5465,\"priceDoubleOcc\":\"7175.50\",\"priceSingleOcc\":17345.5,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7175.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6467,\"priceDoubleOcc\":\"8678.40\",\"priceSingleOcc\":18848.4,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8678.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7974,\"priceDoubleOcc\":\"10938.40\",\"priceSingleOcc\":21108.4,\"priceExtraBed\":\"2045.30\",\"priceWithoutBed\":\"1480.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10938.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24946\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7175.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5594,\"priceDoubleOcc\":\"7175.50\",\"priceSingleOcc\":17345.5,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7175.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5993,\"priceDoubleOcc\":\"7774.40\",\"priceSingleOcc\":17944.4,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7774.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5842,\"priceDoubleOcc\":\"7548.40\",\"priceSingleOcc\":17718.4,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7548.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5895,\"priceDoubleOcc\":\"7627.50\",\"priceSingleOcc\":17797.5,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7627.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6347,\"priceDoubleOcc\":\"8305.50\",\"priceSingleOcc\":18475.5,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8305.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7854,\"priceDoubleOcc\":\"10565.50\",\"priceSingleOcc\":20735.5,\"priceExtraBed\":\"2429.50\",\"priceWithoutBed\":\"1469.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10565.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24947\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9252.44\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6993,\"priceDoubleOcc\":\"9252.44\",\"priceSingleOcc\":21682.440000000002,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9252.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7394,\"priceDoubleOcc\":\"9853.60\",\"priceSingleOcc\":22283.6,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9853.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7605,\"priceDoubleOcc\":\"10170.00\",\"priceSingleOcc\":22600,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6993,\"priceDoubleOcc\":\"9252.44\",\"priceSingleOcc\":21682.440000000002,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9252.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7998,\"priceDoubleOcc\":\"10759.86\",\"priceSingleOcc\":23189.86,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10759.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9488,\"priceDoubleOcc\":\"12995.00\",\"priceSingleOcc\":25425,\"priceExtraBed\":\"2474.70\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12995.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24948\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11147.45\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9060,\"priceDoubleOcc\":\"11147.45\",\"priceSingleOcc\":25272.45,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11147.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9481,\"priceDoubleOcc\":\"11780.25\",\"priceSingleOcc\":25905.25,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11780.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9662,\"priceDoubleOcc\":\"12051.45\",\"priceSingleOcc\":26176.45,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12051.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9060,\"priceDoubleOcc\":\"11147.45\",\"priceSingleOcc\":25272.45,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11147.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10114,\"priceDoubleOcc\":\"12729.45\",\"priceSingleOcc\":26854.45,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12729.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11470,\"priceDoubleOcc\":\"14763.45\",\"priceSingleOcc\":28888.45,\"priceExtraBed\":\"4883.86\",\"priceWithoutBed\":\"1175.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14763.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24949\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13904.65\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11164,\"priceDoubleOcc\":\"13904.65\",\"priceSingleOcc\":30572.15,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13904.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11583,\"priceDoubleOcc\":\"14531.80\",\"priceSingleOcc\":31199.3,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14531.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11763,\"priceDoubleOcc\":\"14803.00\",\"priceSingleOcc\":31470.5,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14803.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11164,\"priceDoubleOcc\":\"13904.65\",\"priceSingleOcc\":30572.15,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13904.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12219,\"priceDoubleOcc\":\"15486.65\",\"priceSingleOcc\":32154.15,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15486.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13571,\"priceDoubleOcc\":\"17515.00\",\"priceSingleOcc\":34182.5,\"priceExtraBed\":\"5683.90\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17515.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24945\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6731.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5127,\"priceDoubleOcc\":\"6731.00\",\"priceSingleOcc\":16271,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6731.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5501,\"priceDoubleOcc\":\"7292.80\",\"priceSingleOcc\":16832.8,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7292.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5360,\"priceDoubleOcc\":\"7080.80\",\"priceSingleOcc\":16620.8,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7080.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5127,\"priceDoubleOcc\":\"6731.00\",\"priceSingleOcc\":16271,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6731.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6067,\"priceDoubleOcc\":\"8140.80\",\"priceSingleOcc\":17680.8,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8140.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7480,\"priceDoubleOcc\":\"10260.80\",\"priceSingleOcc\":19800.8,\"priceExtraBed\":\"1918.60\",\"priceWithoutBed\":\"1388.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10260.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24946\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6731.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5247,\"priceDoubleOcc\":\"6731.00\",\"priceSingleOcc\":16271,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6731.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5622,\"priceDoubleOcc\":\"7292.80\",\"priceSingleOcc\":16832.8,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7292.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5480,\"priceDoubleOcc\":\"7080.80\",\"priceSingleOcc\":16620.8,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7080.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5530,\"priceDoubleOcc\":\"7155.00\",\"priceSingleOcc\":16695,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7155.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5954,\"priceDoubleOcc\":\"7791.00\",\"priceSingleOcc\":17331,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7791.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7367,\"priceDoubleOcc\":\"9911.00\",\"priceSingleOcc\":19451,\"priceExtraBed\":\"2279.00\",\"priceWithoutBed\":\"1378.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9911.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24947\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8679.28\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6560,\"priceDoubleOcc\":\"8679.28\",\"priceSingleOcc\":20339.28,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8679.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6936,\"priceDoubleOcc\":\"9243.20\",\"priceSingleOcc\":20903.2,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9243.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7134,\"priceDoubleOcc\":\"9540.00\",\"priceSingleOcc\":21200,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6560,\"priceDoubleOcc\":\"8679.28\",\"priceSingleOcc\":20339.28,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8679.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7503,\"priceDoubleOcc\":\"10093.32\",\"priceSingleOcc\":21753.32,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10093.32\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8900,\"priceDoubleOcc\":\"12190.00\",\"priceSingleOcc\":23850,\"priceExtraBed\":\"2321.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24948\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10456.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8498,\"priceDoubleOcc\":\"10456.90\",\"priceSingleOcc\":23706.9,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10456.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8894,\"priceDoubleOcc\":\"11050.50\",\"priceSingleOcc\":24300.5,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11050.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9064,\"priceDoubleOcc\":\"11304.90\",\"priceSingleOcc\":24554.9,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11304.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8498,\"priceDoubleOcc\":\"10456.90\",\"priceSingleOcc\":23706.9,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10456.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9488,\"priceDoubleOcc\":\"11940.90\",\"priceSingleOcc\":25190.9,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11940.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10760,\"priceDoubleOcc\":\"13848.90\",\"priceSingleOcc\":27098.9,\"priceExtraBed\":\"4581.32\",\"priceWithoutBed\":\"1102.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13848.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24949\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13043.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10473,\"priceDoubleOcc\":\"13043.30\",\"priceSingleOcc\":28678.3,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13043.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10865,\"priceDoubleOcc\":\"13631.60\",\"priceSingleOcc\":29266.6,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13631.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11035,\"priceDoubleOcc\":\"13886.00\",\"priceSingleOcc\":29521,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13886.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10473,\"priceDoubleOcc\":\"13043.30\",\"priceSingleOcc\":28678.3,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13043.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11462,\"priceDoubleOcc\":\"14527.30\",\"priceSingleOcc\":30162.3,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14527.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-24\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12731,\"priceDoubleOcc\":\"16430.00\",\"priceSingleOcc\":32065,\"priceExtraBed\":\"5331.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178670\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178670],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178675\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178675],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178680\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178680],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178685\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178685],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178690\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178690],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shillong,Cherrapunji','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Cherrapunji,Guwahati,Dawki','','25073,34563',6731,17515,3,'128_1633606348_0.jpg,128_1633606348_1.jpg,128_1633606348_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"}]',1,'',0,'2021-07-29 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2021-07-29 00:00:00','2021-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'no-02-marvelous-meghalaya',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (129,24664,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24664,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Package_no_01_Shillong_Beauty_94.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#984806&quot;&gt;Please Note&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All our tours can be fully customized to meet your requirement. You can change the number of days at any destination, add or delete any sightseeing in the itinerary as per your interest, change the hotel and\\/or the room category, change the transport used for the tour, choose a meal plan suitable to you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 01 Shillong Beauty\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":20083,\"Title\":\"DOUBLE DECKER LIVING ROOT BRIDGE\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&rsquo;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&rsquo;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9181,\"Title\":\"Ward\'s Lake\",\"Description\":\"Nestled at the center of the city, Ward&rsquo;s Lake is a must-visit spot in Shillong. The refreshing lake encircled with lush gardens and verdant trees is the best place to spend the evening watching the dancing evening show. Take a break and head for a boat ride and enjoy the natural beauty of Ward&rsquo;s Lake.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8863422,\"Long\":25.5754998,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"176627\",\"Title\":\"Guwahati \\u2013 Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &#39;Scotland of the East&quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176632\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM  1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p>Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit&nbsp; Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176637\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p>After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River Evening return to Shillong. Overnight in Shillong.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20083,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176642\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p>After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9181,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24664\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6854.58\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5620,\"priceDoubleOcc\":\"7458.00\",\"priceSingleOcc\":17628,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7458.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5846,\"priceDoubleOcc\":\"7797.00\",\"priceSingleOcc\":17967,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7797.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6223,\"priceDoubleOcc\":\"8362.00\",\"priceSingleOcc\":18532,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8362.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7729,\"priceDoubleOcc\":\"10622.00\",\"priceSingleOcc\":20792,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10622.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24665\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6854.58\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5620,\"priceDoubleOcc\":\"7458.00\",\"priceSingleOcc\":17628,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7458.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5846,\"priceDoubleOcc\":\"7797.00\",\"priceSingleOcc\":17967,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7797.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6223,\"priceDoubleOcc\":\"8362.00\",\"priceSingleOcc\":18532,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8362.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7729,\"priceDoubleOcc\":\"10622.00\",\"priceSingleOcc\":20792,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10622.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24666\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9362.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6934,\"priceDoubleOcc\":\"9362.05\",\"priceSingleOcc\":21792.05,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9362.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7336,\"priceDoubleOcc\":\"9964.34\",\"priceSingleOcc\":22394.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7562,\"priceDoubleOcc\":\"10303.34\",\"priceSingleOcc\":22733.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10303.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6934,\"priceDoubleOcc\":\"9362.05\",\"priceSingleOcc\":21792.05,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9362.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7939,\"priceDoubleOcc\":\"10868.34\",\"priceSingleOcc\":23298.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10868.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9445,\"priceDoubleOcc\":\"13128.34\",\"priceSingleOcc\":25558.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13128.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24667\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11175.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9066,\"priceDoubleOcc\":\"11175.70\",\"priceSingleOcc\":25300.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11175.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9487,\"priceDoubleOcc\":\"11808.50\",\"priceSingleOcc\":25933.5,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11808.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9668,\"priceDoubleOcc\":\"12079.70\",\"priceSingleOcc\":26204.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12079.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9066,\"priceDoubleOcc\":\"11175.70\",\"priceSingleOcc\":25300.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11175.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10120,\"priceDoubleOcc\":\"12757.70\",\"priceSingleOcc\":26882.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12757.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11476,\"priceDoubleOcc\":\"14791.70\",\"priceSingleOcc\":28916.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14791.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24668\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15311.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12223,\"priceDoubleOcc\":\"15311.50\",\"priceSingleOcc\":33391.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15311.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12645,\"priceDoubleOcc\":\"15944.30\",\"priceSingleOcc\":34024.3,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15944.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12826,\"priceDoubleOcc\":\"16215.50\",\"priceSingleOcc\":34295.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16215.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12223,\"priceDoubleOcc\":\"15311.50\",\"priceSingleOcc\":33391.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15311.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13278,\"priceDoubleOcc\":\"16893.50\",\"priceSingleOcc\":34973.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16893.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14634,\"priceDoubleOcc\":\"18927.50\",\"priceSingleOcc\":37007.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18927.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24664\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6429.96\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5272,\"priceDoubleOcc\":\"6996.00\",\"priceSingleOcc\":16536,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6996.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5484,\"priceDoubleOcc\":\"7314.00\",\"priceSingleOcc\":16854,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7314.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5837,\"priceDoubleOcc\":\"7844.00\",\"priceSingleOcc\":17384,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7844.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7250,\"priceDoubleOcc\":\"9964.00\",\"priceSingleOcc\":19504,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24665\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6429.96\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5272,\"priceDoubleOcc\":\"6996.00\",\"priceSingleOcc\":16536,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6996.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5484,\"priceDoubleOcc\":\"7314.00\",\"priceSingleOcc\":16854,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7314.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5837,\"priceDoubleOcc\":\"7844.00\",\"priceSingleOcc\":17384,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7844.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7250,\"priceDoubleOcc\":\"9964.00\",\"priceSingleOcc\":19504,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24666\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8782.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6505,\"priceDoubleOcc\":\"8782.10\",\"priceSingleOcc\":20442.1,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8782.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6882,\"priceDoubleOcc\":\"9347.08\",\"priceSingleOcc\":21007.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9347.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7094,\"priceDoubleOcc\":\"9665.08\",\"priceSingleOcc\":21325.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9665.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6505,\"priceDoubleOcc\":\"8782.10\",\"priceSingleOcc\":20442.1,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8782.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7447,\"priceDoubleOcc\":\"10195.08\",\"priceSingleOcc\":21855.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10195.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8860,\"priceDoubleOcc\":\"12315.08\",\"priceSingleOcc\":23975.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12315.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24667\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10483.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8504,\"priceDoubleOcc\":\"10483.40\",\"priceSingleOcc\":23733.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8900,\"priceDoubleOcc\":\"11077.00\",\"priceSingleOcc\":24327,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11077.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9069,\"priceDoubleOcc\":\"11331.40\",\"priceSingleOcc\":24581.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11331.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8504,\"priceDoubleOcc\":\"10483.40\",\"priceSingleOcc\":23733.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9493,\"priceDoubleOcc\":\"11967.40\",\"priceSingleOcc\":25217.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11967.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10765,\"priceDoubleOcc\":\"13875.40\",\"priceSingleOcc\":27125.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13875.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24668\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14363.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11466,\"priceDoubleOcc\":\"14363.00\",\"priceSingleOcc\":31323,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14363.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11861,\"priceDoubleOcc\":\"14956.60\",\"priceSingleOcc\":31916.6,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14956.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12031,\"priceDoubleOcc\":\"15211.00\",\"priceSingleOcc\":32171,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15211.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11466,\"priceDoubleOcc\":\"14363.00\",\"priceSingleOcc\":31323,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14363.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12455,\"priceDoubleOcc\":\"15847.00\",\"priceSingleOcc\":32807,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15847.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13727,\"priceDoubleOcc\":\"17755.00\",\"priceSingleOcc\":34715,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17755.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Value Added Services&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary 500 ml of packaged drinking water per person per day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary finest Tea of Assam to take back home sweet memories of North East India (500 grams per family 250 grams per person)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary cup of refreshing Assam Tea (Chai or Saa as called in Assam) at Laheke Chai Cafe en route Kaziranga.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of VIP Darshan at Kamakhya Temple (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of River Cruise at Guwahati (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dedicated Tour Coordinator 24 x 7 throughout the Tour.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"176627\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176627],\"Remark\":[\"&lt;p&gt;Car on Disposal Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176632\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176632],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176637\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176637],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176642\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176642],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Shillong','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Cherrapunji,Dawki,Mawlynnong','','25073',6430,18928,3,'129_1633607679_0.jpg,129_1633607679_1.jpg,129_1633607679_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"}]',1,'',0,'2021-07-29 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2021-07-29 00:00:00','2021-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'no-01-shillong-beauty',NULL,NULL,NULL,0),(130,26999,1,5293,0,0,0,'Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26999,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ladakh_suv_expedition_srinagar_to_leh_ladakh_1627307633.png\",\"BookingValidUntill\":\"2021-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get ready for one of the most exciting journey exploring the beautiful Ladakh. This journey will take you through some of the most breathtaking and challenging but yet so peaceful and magnificent landscapes found on this planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For millions of years of permanence, the Himalayas with freezing mountain streams, high altitude gorgeous passes, majestically laden plains and enormous mountain lakes in Leh Ladakh region have left a lasting impression on the lucky ones who have got a chance to travel to this remote Himalayan region. Broad evergreen valleys and majestic snow-capped ranges, ornate temples and meditative ceremonies, serenity and vibrant celebrations, bustling cities, and remote wilderness, deep gorges, and breathtaking passes, make a truly spectacular setting for a travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be treated to long strokes, open roads and spectacular views all while climbing the world&amp;rsquo;s highest motorable passes. A trip to Leh Ladakh is a dream of every traveller and definitely, the journey of a lifetime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bringing some of the best routes for you to experience. Select your favourite route and get ready for this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Ladakh SUV Expedition (Srinagar to Leh)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479941,\"Name\":\"Deluxe Swiss Camps and Hotels \",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481148,\"Name\":\"Houseboats\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":13569,\"Title\":\"Kargil\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480037,\"Name\":\"Hotel Zojila Residency Kargil\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13569,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480048,\"Name\":\"The Silk Route Ladakh\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481082,\"Name\":\"Three Rosses\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481083,\"Name\":\"The Himalaya\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481084,\"Name\":\"Cho Palace\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.15090789999999\",\"Long\":\"77.5645227\",\"Address\":\"Skara Near Badami Baug Leh Jammu and Kashmir, Leh, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481075,\"Name\":\"Royal Riders Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481076,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481078,\"Name\":\"The Ladakh Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481079,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481080,\"Name\":\"Goodluck Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193408\",\"Title\":\"Arrival in Srinagar\\/Sonmarg:\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On landing at the Srinagar Airport, meet our representative and transfer to the pre-booked accommodation for an overnight stay in Sonamarg. In the evening, our tour captain will give you a little brief about the journey and itinerary.<\\/p>\\r\\n\\r\\n<p><em>Dinner &amp; Overnight Stay at Srinagar<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479941,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481148,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19065,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193409\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193410\",\"Title\":\"Srinagar\\/Sonmarg to Kargil:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, travel to Kargil, the main battleground during the Kargil war 1999, passing through Kargil. En route, you will meander through the thrilling Zojila pass and Drass, the second coldest inhabited place on earth. Visit the Tiger Hills and other famous peaks in Kargil. You will reach Kargil by evening, on arriving check in to the hotel. Relax and spend time with your friends.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner &amp; Overnight Stay in Kargil<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480037,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19067,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":453,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1785,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193411\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193412\",\"Title\":\"Kargil to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>As morning gilds over the skies, after breakfast, you will head towards Leh. On the way, you will visit the Dha-Hanu village, where the last race of Indo-Aryans resides. You will be amazed to see people adorned with jewellery and flowers. En route, you will also see the beautiful confluence of Zanskar and Indus River, the intriguing phenomenon of Magnetic Hills and the divine visit at Gurudwara Pather Sahib. After exploration, return back to your hotel for an overnight stay.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19068,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19059,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193413\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193414\",\"Title\":\"Leh to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Wake up to a refreshing morning and travel to Nubra Valley, a cold desert with vast&nbsp;landscapes and mountain ranges. Feel the thrill of crossing one of the highest motorable passes in the world, Khardung La. Once you reach Nubra, enjoy a camel ride in the desert mountains of Hunder (additional cost). Overnight stay will be provided in Nubra.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19911,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193415\",\"Title\":\"Nubra Valley to Turtuk Village to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After the sun peeps out, you will pack your bags as you will leave for Turtuk village which was under Pakistan before 1971. Nestled in the Nubra tehsil, 205 km from the Leh town, on the banks of the Shyok River, it is the last village before LOC. With stunning beauty throughout the valley, you will be blessed with views you might have not seen before. After exploring Turtuk you will travel back towards Nubra.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19061,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193416\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193417\",\"Title\":\"Nubra Valley to Pangong Tso:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>Prepare for another day of a daring off-roading experience as you traverse through untamed paths in the high mountains. The route leads to the beautiful Pangong Tso (lake) via Shyok river or Wari La Pass. It is quite challenging yet thrilling and is generally used by the army. On arrival, train your sights on the enchanting blue lake. After sightseeing, you will leave for Tangste for overnight stay. (*In case Pangong Tso is closed then we shall ride back to Leh and do the day excusrion to Pangong Tso on the next day in suv\\/tempo traveller)<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Pangong Tso<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481078,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481079,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481080,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193418\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193419\",\"Title\":\"Pangong Tso to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>In the morning, get set for yet another journey exhilarating ride as you head back to Leh, via Chang La pass (the third highest mountain pass in the world) and Choglamsar. En route, stop at the famous Druk White Lotus School, featured in the blockbuster Bollywood movie &lsquo;3 Idiots&rsquo; and Shanti Stupa, a beautiful white-domed Buddhist stupa surrounded by a stunning scenery of vast mountains. As you return back to Leh, you will check-in to the hotel.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19063,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19062,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193420\",\"Title\":\"Leh Departure:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>After the Breakfast. Get transfer to the airport on your own to board the flight for your onward journey.<\\/p>\\r\\n\\r\\n<p><em>Trip Ends<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26999\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":70250,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":24500,\"priceDoubleOcc\":\"20750.00\",\"priceSingleOcc\":71500,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":25750,\"priceDoubleOcc\":\"22625.00\",\"priceSingleOcc\":73375,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":27833,\"priceDoubleOcc\":\"25750.00\",\"priceSingleOcc\":76500,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":32000,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":82750,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":44500,\"priceDoubleOcc\":\"50750.00\",\"priceSingleOcc\":101500,\"priceExtraBed\":\"25750.00\",\"priceWithoutBed\":\"22625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"50750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26999\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17940.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":21773,\"priceDoubleOcc\":\"17940.00\",\"priceSingleOcc\":64630,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":22540,\"priceDoubleOcc\":\"19090.00\",\"priceSingleOcc\":65780,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19090.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":23690,\"priceDoubleOcc\":\"20815.00\",\"priceSingleOcc\":67505,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20815.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":25607,\"priceDoubleOcc\":\"23690.00\",\"priceSingleOcc\":70380,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":29440,\"priceDoubleOcc\":\"29440.00\",\"priceSingleOcc\":76130,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":40940,\"priceDoubleOcc\":\"46690.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"23690.00\",\"priceWithoutBed\":\"20815.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Personal expenses like Telephone, Laundry, Tips and Table Drinks etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any type of insurance-Medical, Accidental, theft&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ Rail fare other than what in mentioned in &amp;ldquo;Inclusions&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any lunch and other meals not mentioned in package inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and monument entry fees during sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost incurred due to extension, change of itinerary due to natural calamities, road, blocks, vehicle breakdown, union issues and factors beyond our control&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional accommodation \\/ food cost incurred due to any delay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than allowed one 60 liters of rucksack\\/backpack shall be charged at Rs. 250 per day\\/10 kg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything that is not mentioned in the Inclusion sections&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Hotels \\/ Camps \\/ Guest Houses on double \\/ triple sharing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals - Breakfast and Dinner. Dinner on Check in Day to Breakfast on Check out Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of experienced Road Captain from Himachal &amp;amp; Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Leh Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inner Line permit of all participants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SUV or Sedan upto 6 Pax. For more than 6 Pax, there will be Tempo Traveler.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport, Railway station or Bus stop pick up or drop&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193408\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193408],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193409\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193409],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193410\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193410],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193411\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193411],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193412\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193412],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193413\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193413],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193414\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193414],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193415\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[193415],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193416\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193416],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193417\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193417],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193418\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193418],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193419\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193419],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193420\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[193420],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT,Kargil,Leh,Nubra,Pangong','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Kargil,Jammu and kashmir,Leh,Nubra,Pangong,Turtuk','','35502,13569,15229,35282,35281',17940,50750,7,'130_1627647384_0.jpg,130_1627647384_1.jpg,130_1627647384_2.jpg,130_1627647384_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-15 00:00:00','2021-09-15 00:00:00',3,'India','101','2023-08-25 15:24:31','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'ladakh-suv-expedition-(srinagar-to-leh)',NULL,NULL,NULL,0),(131,26994,1,5293,0,0,0,'Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26994,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ladakh_suv_expedition_srinagar_leh_srinagar_1627305317.png\",\"BookingValidUntill\":\"2021-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get ready for one of the most exciting journey exploring the beautiful Ladakh. This journey will take you through some of the most breathtaking and challenging but yet so peaceful and magnificent landscapes found on this planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For millions of years of permanence, the Himalayas with freezing mountain streams, high altitude gorgeous passes, majestically laden plains and enormous mountain lakes in Leh Ladakh region have left a lasting impression on the lucky ones who have got a chance to travel to this remote Himalayan region. Broad evergreen valleys and majestic snow-capped ranges, ornate temples and meditative ceremonies, serenity and vibrant celebrations, bustling cities, and remote wilderness, deep gorges, and breathtaking passes, make a truly spectacular setting for a travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be treated to long strokes, open roads and spectacular views all while climbing the world&amp;rsquo;s highest motorable passes. A trip to Leh Ladakh is a dream of every traveller and definitely, the journey of a lifetime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bringing some of the best routes for you to experience. Select your favourite route and get ready for this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Ladakh SUV Expedition (Srinagar Leh Srinagar)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479941,\"Name\":\"Deluxe Swiss Camps and Hotels \",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481148,\"Name\":\"Houseboats\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19064,\"Title\":\"Fotu La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20131,\"Title\":\"Shikara Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":13569,\"Title\":\"Kargil\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480037,\"Name\":\"Hotel Zojila Residency Kargil\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13569,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19064,\"Title\":\"Fotu La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20131,\"Title\":\"Shikara Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480048,\"Name\":\"The Silk Route Ladakh\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481082,\"Name\":\"Three Rosses\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481083,\"Name\":\"The Himalaya\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481084,\"Name\":\"Cho Palace\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.15090789999999\",\"Long\":\"77.5645227\",\"Address\":\"Skara Near Badami Baug Leh Jammu and Kashmir, Leh, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19064,\"Title\":\"Fotu La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20131,\"Title\":\"Shikara Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481075,\"Name\":\"Royal Riders Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481076,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19064,\"Title\":\"Fotu La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20131,\"Title\":\"Shikara Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481078,\"Name\":\"The Ladakh Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481079,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481080,\"Name\":\"Goodluck Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19064,\"Title\":\"Fotu La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20131,\"Title\":\"Shikara Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193379\",\"Title\":\"Arrival in Srinagar\\/Sonmarg:\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On landing at the Srinagar Airport, meet our representative and transfer to the pre-booked house for an overnight stay in Sonamarg. In the evening, our tour captain will give you a little brief about the journey and itinerary.<\\/p>\\r\\n\\r\\n<p><em>Dinner &amp; Overnight Stay at Srinagar<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479941,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481148,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193380\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193381\",\"Title\":\"Srinagar\\/Sonmarg to Kargil:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, travel to Kargil, the main battleground during the Kargil war 1999, passing through Kargil. En route, you will meander through the thrilling Zojila pass and Drass, the second coldest inhabited place on earth. Visit the Tiger Hills and other famous peaks in Kargil. You will reach Kargil by evening, on arriving check in to the hotel. Relax and spend time with your friends.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner &amp; Overnight Stay in Kargil<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480037,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":453,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1785,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19067,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193382\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193383\",\"Title\":\"Kargil to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>As morning gilds over the skies, after breakfast, you will head towards Leh. On the way, you will visit the Dha-Hanu village, where the last race of Indo-Aryans resides. You will be amazed to see people adorned with jewelry and flowers. En route, you will also see the beautiful confluence of Zanskar and Indus River, the intriguing phenomenon of Magnetic Hills and the divine visit at Gurudwara Pather Sahib. After exploration, return back to your hotel for an overnight stay.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19068,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19059,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193384\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193385\",\"Title\":\"Leh to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Wake up to a refreshing morning and travel to Nubra Valley, a cold desert with vast landscapes and mountain ranges. Feel the thrill of crossing one of the highest motorable pass in the world, Khardung La. Once you reach Nubra, enjoy a camel ride in the desert mountains of Hunder (additional cost). Overnight stay will be provided in Nubra.<\\/p>\\r\\n\\r\\n<p><em>Bikes &amp; SUV, Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19911,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193386\",\"Title\":\"Nubra Valley to Turtuk Village to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After the sun peeps out, you will pack your bags as you will leave for Turtuk village which was under Pakistan before 1971. Nestled in the Nubra tehsil, 205 km from the Leh town, on the banks of the Shyok River, it is the last village before LOC. With stunning beauty throughout the valley, you will be blessed with views you might have not seen before. After exploring Turtuk you will travel back towards Nubra.<\\/p>\\r\\n\\r\\n<p><em>Bikes &amp; SUV, Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19061,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193387\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193388\",\"Title\":\"Nubra Valley to Pangong Tso:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>Prepare for another day of a daring off-roading experience as you traverse through untamed paths in the high mountains. The route leads to the beautiful Pangong Tso (lake) via Shyok river or Wari La Pass. It is quite challenging yet thrilling and is generally used by the army. On arrival, train your sights on the enchanting blue lake. After sightseeing, you will leave for Tangste for overnight stay. (*In case Pangong Tso is closed then we shall ride back to Leh and do the day excusrion to Pangong Tso on the next day in suv\\/tempo traveller)<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Pangong Tso<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481078,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481079,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481080,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193389\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193390\",\"Title\":\"Pangong Tso to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>In the morning, get set for yet another journey exhilarating ride as you head back to Leh, via Chang La pass (the third highest mountain pass in the world) and Choglamsar. En route, stop at the famous Druk White Lotus School, featured in the blockbuster Bollywood movie &lsquo;3 Idiots&rsquo; and Shanti Stupa, a beautiful white-domed Buddhist stupa surrounded by a stunning scenery of vast mountains. As you return back to Leh, you will check-in to the hotel.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19063,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193391\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193392\",\"Title\":\"Leh to Kargil:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"<p>As soon as the morning unfolds today, you will leave from Leh Ladakh, to explore the famous town of Kargil. You can visit the Buddhist monastery of Lamayuru, which is settled at a height 3,510 m. Later drive on Fotu La mountain pass and then drive to Kargil. Stay the night in camps.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Kargil<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480037,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19064,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":959,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193393\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193394\",\"Title\":\"Kargil to Sonmarg\\/Srinagar:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p>Today begin your journey to Srinagar, where you may visit numerous attractions such as Shalimar Bagh and take a Shikara ride on the picturesque Dal Lake. In the evening, rest at your pre-booked stay.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Sonmarg\\/Srinagar<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479941,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481148,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19065,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20131,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193395\",\"Title\":\"Srinagar Fly out Departure:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"<p>Complete your amazing Himalayan excursion by taking the flight from Srinagar. If your flight is scheduled late, you can explore Srinagar at your own leisure.<\\/p>\\r\\n\\r\\n<p><em>Breakfast &amp; Check Out<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26994\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":32000,\"priceDoubleOcc\":\"25750.00\",\"priceSingleOcc\":98375,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":33250,\"priceDoubleOcc\":\"27625.00\",\"priceSingleOcc\":100250,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":35125,\"priceDoubleOcc\":\"30437.50\",\"priceSingleOcc\":103062.5,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":38250,\"priceDoubleOcc\":\"35125.00\",\"priceSingleOcc\":107750,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":44500,\"priceDoubleOcc\":\"44500.00\",\"priceSingleOcc\":117125,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"72625.00\",\"priceSingleOcc\":145250,\"priceExtraBed\":\"35125.00\",\"priceWithoutBed\":\"35125.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"72625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26994\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23690.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":29440,\"priceDoubleOcc\":\"23690.00\",\"priceSingleOcc\":90505,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":30590,\"priceDoubleOcc\":\"25415.00\",\"priceSingleOcc\":92230,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25415.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":32315,\"priceDoubleOcc\":\"28002.50\",\"priceSingleOcc\":94817.5,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28002.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":35190,\"priceDoubleOcc\":\"32315.00\",\"priceSingleOcc\":99130,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32315.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":40940,\"priceDoubleOcc\":\"40940.00\",\"priceSingleOcc\":107755,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40940.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":58190,\"priceDoubleOcc\":\"66815.00\",\"priceSingleOcc\":133630,\"priceExtraBed\":\"32315.00\",\"priceWithoutBed\":\"32315.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66815.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Personal expenses like Telephone, Laundry, Tips and Table Drinks etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any type of insurance-Medical, Accidental, theft&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ Rail fare other than what in mentioned in &amp;ldquo;Inclusions&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any lunch and other meals not mentioned in package inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and monument entry fees during sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost incurred due to extension, change of itinerary due to natural calamities, road, blocks, vehicle breakdown, union issues and factors beyond our control&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional accommodation \\/ food cost incurred due to any delay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than allowed one 60 liters of rucksack\\/backpack shall be charged at Rs. 250 per day\\/10 kg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything that is not mentioned in the Inclusion sections&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Hotels \\/ Camps \\/ Guest Houses on double \\/ triple sharing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals - Breakfast and Dinner. Dinner on Check in Day to Breakfast on Check out Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of experienced Road Captain from Himachal &amp;amp; Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Leh Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inner Line permit of all participants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SUV or Sedan upto 6 Pax. For more than 6 Pax, there will be Tempo Traveler.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport, Railway station or Bus stop pick up or drop&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193379\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193379],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193380\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193380],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193381\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193381],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193382\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193382],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193383\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193383],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193384\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193384],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193385\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193385],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193386\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[193386],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193387\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193387],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193388\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193388],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193389\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193389],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193390\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193390],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193391\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[193391],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193392\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[193392],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193393\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[193393],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193394\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[193394],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193395\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[193395],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT,Kargil,Leh,Nubra,Pangong','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Kargil,Jammu and kashmir,Leh,Nubra,Pangong,Turtuk','','35502,13569,15229,35282,35281',23690,72625,9,'131_1627649942_0.jpg,131_1627649942_1.jpg,131_1627649942_2.jpg,131_1627649942_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-15 00:00:00','2021-09-15 00:00:00',3,'India','101','2023-08-25 15:24:34','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'ladakh-suv-expedition-(srinagar-leh-srinagar)',NULL,NULL,NULL,0),(132,26969,1,5293,0,0,0,'Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":26969,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ladakh_suv_expedition_srinagar_leh_manali_1627294651.png\",\"BookingValidUntill\":\"2021-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get ready for one of the most exciting journey exploring the beautiful Ladakh. This journey will take you through some of the most breathtaking and challenging but yet so peaceful and magnificent landscapes found on this planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For millions of years of permanence, the Himalayas with freezing mountain streams, high altitude gorgeous passes, majestically laden plains and enormous mountain lakes in Leh Ladakh region have left a lasting impression on the lucky ones who have got a chance to travel to this remote Himalayan region. Broad evergreen valleys and majestic snow-capped ranges, ornate temples and meditative ceremonies, serenity and vibrant celebrations, bustling cities, and remote wilderness, deep gorges, and breathtaking passes, make a truly spectacular setting for a travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be treated to long strokes, open roads and spectacular views all while climbing the world&amp;rsquo;s highest motorable passes. A trip to Leh Ladakh is a dream of every traveller and definitely, the journey of a lifetime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bringing some of the best routes for you to experience. Select your favourite route and get ready for this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Ladakh SUV Expedition (Srinagar Leh Manali)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479941,\"Name\":\"Deluxe Swiss Camps and Hotels \",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481148,\"Name\":\"Houseboats\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35502,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":13569,\"Title\":\"Kargil\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480037,\"Name\":\"Hotel Zojila Residency Kargil\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13569,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480048,\"Name\":\"The Silk Route Ladakh\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481082,\"Name\":\"Three Rosses\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481083,\"Name\":\"The Himalaya\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481084,\"Name\":\"Cho Palace\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.15090789999999\",\"Long\":\"77.5645227\",\"Address\":\"Skara Near Badami Baug Leh Jammu and Kashmir, Leh, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481075,\"Name\":\"Royal Riders Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481076,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481078,\"Name\":\"The Ladakh Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481079,\"Name\":\"The Nature Nest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481080,\"Name\":\"Goodluck Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35292,\"Title\":\"Tso moriri\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484016,\"Name\":\"Dorjey Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35292,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":484019,\"Name\":\"Tso Kar Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35292,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":484020,\"Name\":\"Swiss Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35292,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":34461,\"Title\":\"Sarchu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484021,\"Name\":\"Garja Hills Swiss Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34461,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":484022,\"Name\":\"Gold Drop Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34461,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481088,\"Name\":\"Meridian Adventure Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481089,\"Name\":\"Riverside Rafting Camps\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481090,\"Name\":\"Manu Vatika\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481091,\"Name\":\"BD Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481092,\"Name\":\"Manali Green\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481093,\"Name\":\"Park Paradise\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":453,\"Title\":\"Drass Valley\",\"Description\":\"The Drass valley starts from the base of the Zojila pass, the Himalayan gateway to Ladakh. For centuries its inhabitants are known to have negotiated this formidable pass even during the most risky period in the late autumn or early spring, when the whole sector remains snow-bound and is subject to frequent snow storms, to transport traders merchandise across and to help stranded travellers to traverse it. By virtue of their mastery over the pass they had established a monopoly over the carrying trade during the heydays of the Pan-Asian trade. A hardly people enduring with fortitude and harshness of the valley winter, the inhabitants of Drass can well be described as the guardians of Ladakh gateway. The inhabitants here are Dard and Muslims. There is a bank and tourist bungalow in Drass.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.5538522,\"Long\":76.1348944,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4283\\/thumb\\/Drass Valley_830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1785,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is a mountain in the Drass-Kargil area of Jammu &amp;amp; Kashmir, India. It is one of the highest peaks in the area and was the subject of a battle during the 1999 India-Pakistan Kargil War. Its recapture was one of the most important objectives for Indian forces during the Kargil War.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":32.7040254,\"Long\":74.8712036,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1418\\/thumb\\/Kargil War Peaks_800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19067,\"Title\":\"Zojila Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19068,\"Title\":\"Dha-Hanu Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19911,\"Title\":\"Camel Ride (Additional Cost)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20121,\"Title\":\"Shyok River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19913,\"Title\":\"Wari La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&deg;C to 10&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20122,\"Title\":\"Tso Moriri Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35292,\"CityName\":\"Tso moriri\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20123,\"Title\":\"Tsokar Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20124,\"Title\":\"Lachung La\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20125,\"Title\":\"More Plains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":20126,\"Title\":\"Gata Loops\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34461,\"CityName\":\"Sarchu\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193212\",\"Title\":\"Arrival in Srinagar\\/Sonmarg:\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On landing at the Srinagar Airport, meet our representative and transfer to the pre-booked house for an overnight stay in Sonamarg. In the evening, our team will give you a little brief about the journey and itinerary.<\\/p>\\r\\n\\r\\n<p><em>Dinner &amp; Overnight Stay at Srinagar<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479941,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe\"},{\"IsIncluded\":false,\"Id\":481148,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193213\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193214\",\"Title\":\"Srinagar\\/Sonmarg to Kargil:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, ride to Kargil, the main battleground during the Kargil war 1999, passing through Kargil. En route, you will meander through the thrilling Zojila pass and Drass, the second coldest inhabited place on earth. Visit the Tiger Hills and other famous peaks in Kargil. You will reach Kargil by evening, on arriving check in to the hotel. Relax and spend time with your friends.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner &amp; Overnight Stay in Kargil<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480037,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":453,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1785,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19067,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193215\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193216\",\"Title\":\"Kargil to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>As morning gilds over the skies, after breakfast, you will head towards Leh. On the way, you will visit the Dha-Hanu village, where the last race of Indo-Aryans resides. You will be amazed to see people adorned with jewellery and flowers. En route, you will also see the beautiful confluence of Zanskar and Indus River, the intriguing phenomenon of Magnetic Hills and the divine visit at Gurudwara Pather Sahib. After exploration, return back to your hotel for an overnight stay.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19068,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19059,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193217\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193221\",\"Title\":\"Leh to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Wake up to a refreshing morning and travel to Nubra Valley, a cold desert with vast&nbsp;landscapes and mountain ranges. Feel the thrill of crossing one of the highest motorable passes in the world, Khardung La. Once you reach Nubra, enjoy a camel ride in the desert mountains of Hunder (additional cost). Overnight stay will be provided in Nubra.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19911,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193222\",\"Title\":\"Nubra Valley to Turtuk Village to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After the sun peeps out, you will pack your bags as you will leave for Turtuk village which was under Pakistan before 1971. Nestled in the Nubra tehsil, 205 km from the Leh town, on the banks of the Shyok River, it is the last village before LOC. With stunning beauty throughout the valley, you will be blessed with views you might have not seen before. After exploring Turtuk you will travel back towards Nubra.<\\/p>\\r\\n\\r\\n<p><em>Bikes &amp; SUV, Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481075,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481076,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19061,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193223\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193227\",\"Title\":\"Nubra Valley to Pangong Tso:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>Prepare for another day of a daring off-roading experience as you traverse through untamed paths in the high mountains. The route leads to the beautiful Pangong Tso (lake) via Shyok river or Wari La Pass. It is quite challenging yet thrilling and is generally used by the army. On arrival, train your sights on the enchanting blue lake. (*In case Pangong Tso is closed then we shall ride back to Leh and do the day excusrion to Pangong Tso on the next day in suv\\/tempo traveller)<\\/p>\\r\\n\\r\\n<p><em>Bikes &amp; SUV, Breakfast, Dinner and Overnight Stay in Pangong Tso<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481078,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481079,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481080,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20121,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19913,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3496,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193228\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193229\",\"Title\":\"Pangong Tso to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>In the morning, get set for yet another journey exhilarating ride as you head back to Leh, via Chang La pass (the third highest mountain pass in the world) and Choglamsar. En route, stop at the famous Druk White Lotus School, featured in the blockbuster Bollywood movie &lsquo;3 Idiots&rsquo; and Shanti Stupa, a beautiful white-domed Buddhist stupa surrounded by a stunning scenery of vast mountains.<\\/p>\\r\\n\\r\\n<p><em>Bikes &amp; SUV, Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480048,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481084,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19063,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193230\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193231\",\"Title\":\"Leh to Tso-Moriri:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"<p>Post breakfast, we will travel to Tso-Moriri.<\\/p>\\r\\n\\r\\n<p>Tso-Moriri lake in Changthang region of Ladakh is one of the most beautiful, calm and sacred (for ladakhis) high altitude lakes in India. In fact, it is the largest high altitude lake in India that is entirely in Indian Territory. This beautiful blue pallet lake is about 7 KM wide at its broadest point and about 19 KM long. Being part of the wetland reserve under Ramsar site, it is actual known as Tso-Moriri Wetland Conservation Reserve and one cannot pitch any tents or construct anything near the banks of the lake. It is the highest Ramsar site in the world. A large number of flora and fauna is found in the region. Since, it is very near to the Line of Actual Control, one need to get Inner Line Permit to visit Tso Moriri.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Tso-Moriri<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35292,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484016,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":484019,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":484020,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20122,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193232\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35292,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193233\",\"Title\":\"Tso-Moriri to Sarchu:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p>With the energy revamped and the heart ready to take in more, we begin our day amidst the beautiful mountains and fill up on breakfast. The journey from Tsomoriri to Sarchu will challenge us, amaze us, and leave us asking for more. We will visit the Tsokar lake before we reach Sarchu. We will also be crossing Naki la (15,647 ft), and Lachung la (16,616 ft) and travel across the famous More plains and Gata Loops!<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Sarchu<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34461,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484021,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":484022,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20123,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19054,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20124,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20125,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20126,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193234\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34461,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193235\",\"Title\":\"Sarchu to Kullu Manali:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"<p>This is the final leg of our ritual road trip. We start our day early as we leave for Manali. The route is slightly rough, so this day we shall try and cover the maximum distance with minimum stopovers. We arrive in Manali by the evening. Later, we all celebrate the completion of our epic road journey.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Manali<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481090,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481091,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481092,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":481093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193236\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193237\",\"Title\":\"Kullu Manali to Delhi Departure:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"<p>Trip Ends today after breakfast, we check out of the hotel at 10AM and explore the nearby cafes with our fellow travelers, reliving and relishing the beautiful journey that was once a dream and how it has become not just an achievement, but a chronicle! Leave for Delhi in the evening via an overnight Volvo bus, taking with us memories worth a lifetime and friendships to cherish forever!<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Manali<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193238\",\"Title\":\"Arrival in Delhi\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"<p><em>Trip Ends<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26969\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27312.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":30438,\"priceDoubleOcc\":\"27312.50\",\"priceSingleOcc\":101500,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":31688,\"priceDoubleOcc\":\"29187.50\",\"priceSingleOcc\":103375,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":33563,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":106187.5,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":36688,\"priceDoubleOcc\":\"36687.50\",\"priceSingleOcc\":110875,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":42938,\"priceDoubleOcc\":\"46062.50\",\"priceSingleOcc\":120250,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46062.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":61688,\"priceDoubleOcc\":\"74187.50\",\"priceSingleOcc\":148375,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"32000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"26969\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25127.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":28003,\"priceDoubleOcc\":\"25127.50\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25127.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":29153,\"priceDoubleOcc\":\"26852.50\",\"priceSingleOcc\":95105,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26852.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":30878,\"priceDoubleOcc\":\"29440.00\",\"priceSingleOcc\":97692.5,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":33753,\"priceDoubleOcc\":\"33752.50\",\"priceSingleOcc\":102005,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":39503,\"priceDoubleOcc\":\"42377.50\",\"priceSingleOcc\":110630,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42377.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":56753,\"priceDoubleOcc\":\"68252.50\",\"priceSingleOcc\":136505,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68252.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Personal expenses like Telephone, Laundry, Tips and Table Drinks etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any type of insurance-Medical, Accidental, theft&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ Rail fare other than what in mentioned in &amp;ldquo;Inclusions&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any lunch and other meals not mentioned in package inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and monument entry fees during sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost incurred due to extension, change of itinerary due to natural calamities, road, blocks, vehicle breakdown, union issues and factors beyond our control&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional accommodation \\/ food cost incurred due to any delay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than allowed one 60 liters of rucksack\\/backpack shall be charged at Rs. 250 per day\\/10 kg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything that is not mentioned in the Inclusion sections&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Hotels \\/ Camps \\/ Guest Houses on double \\/ triple sharing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals - Breakfast and Dinner. Dinner on Check in Day to Breakfast on Check out Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of experienced Road Captain from Himachal &amp;amp; Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Leh Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inner Line permit of all participants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SUV or Sedan upto 6 Pax. For more than 6 Pax, there will be Tempo Traveler.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport, Railway station or Bus stop pick up or drop&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193212\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[193212],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193213\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193213],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193214\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[193214],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193215\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193215],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193216\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[193216],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193217\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193217],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193221\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[193221],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193222\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[193222],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193223\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193223],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193227\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[193227],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193228\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193228],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193229\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[193229],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193230\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[193230],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193231\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[193231],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193232\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[193232],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193233\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[193233],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193234\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[193234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193235\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[193235],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"193236\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[193236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"193237\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[193237],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"3\"]}},\"193238\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[193238],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT,Kargil,Leh,Nubra,Pangong,Tso moriri,Sarchu,Manali,Delhi','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Kargil,Jammu and kashmir,Leh,Nubra,Pangong,Tso moriri,Sarchu,Manali,Himachal Pradesh,Delhi','','35502,13569,15229,35282,35281,35292,34461,16593,7701',25128,74188,11,'132_1627651189_0.jpg,132_1627651189_1.jpg,132_1627651189_2.jpg,132_1627651189_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"},{\"day\":11,\"images\":\"\"},{\"day\":12,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-15 00:00:00','2021-09-15 00:00:00',3,'India','101','2023-08-25 15:24:38','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'ladakh-suv-expedition-(srinagar-leh-manali)',NULL,NULL,NULL,0),(133,25402,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25402,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Glimpse_of_Kashmir_59.jpg\",\"BookingValidUntill\":\"2021-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Known as Heaven on the Earth, Jammu &amp;amp; Kashmir is where Mother Nature has bestowed all her love. Enclosed by the Himalayas and Karakoram ranges; and festooned with verdant meadows, lush valleys, dense forests, splendid temples, this new union territory of India is a holiday destination to instantly fall in love with.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Being an ideal tourist destination for family tours, honeymoon tours and the perfect place for adventure enthusiasts, Jammu &amp;amp; Kashmir offers abundance tour options for travellers of all kind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The picturesque Jammu &amp;amp; Kashmir is even home to the popular Hindu shrines like Mata Vaishno Devi and Baba Amarath Cave, this place is always on the radar of pilgrimage tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The majestic valleys of Kashmir offer adventure opportunities like trekking and skiing. The serene destination is also famous for experiential travels in the form of either a stay at a houseboat or Shikara ride on Dal and Nigeen Lake. Nothing can beat the beauty of Jammu &amp;amp; Kashmir, and to believe it, one has to see it!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In our Jammu &amp;amp; Kashmir Travel Guide, we offer the best information that ensures an unmatched travel experience. With our affordable Jammu &amp;amp; Kashmir tour package includes every detail like places to visit by season, top things to do, the must-see popular tourist attractions, where to stay. With us, you can rest assured of every aspect of Jammu &amp;amp; Kashmir Tourism.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Srinagar UT\",\"SourcePlaceSysId\":35502,\"AgencyName\":\"International Youth Club\",\"Name\":\"Glimpse of Kashmir\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Culture,Weekend,Romantic,Leisure,Sr. Citizen,Private,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19274,\"Title\":\"Mughal Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19275,\"Title\":\"Shankaracharya Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19306,\"Title\":\"Sonmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1278,\"Title\":\"Pahalgam City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5455\\/thumb\\/Pahalgam City Tour_158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1280,\"Title\":\"Pahalgam Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3698\\/thumb\\/Pahalgam Sightseen_927.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181952\",\"Title\":\"Arrival in Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>Pick up from Srinagar Airport and proceed to check-in the hotel and have some rest.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181955\",\"Title\":\"Srinagar Local Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>Today after breakfast, visit Mughal Garden &quot;Nishat Bagh&quot; (The Garden of Pleasure) and &quot;Shalimar Bagh&quot; (Abode of All). Drive along the lake at Boulevard, in return visit a local Handicrafts Emporium famous for hand-knotted silk carpets, shawls and jewellery ornaments. After lunch, on the second half day. Visit Shankaracharya Temple. Overnight stay at the Hotel \\/ Houseboat.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19274,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19065,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181958\",\"Title\":\"Srinagar to Gulmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Early morning transfer to Gulmarg which is 53 Kms from Srinagar at an altitude of 8700-ft. Gulmarg is also referred to as Meadow of Flowers is a famous Ski Resort &amp; the world&rsquo;s highest 18 hole Golf Course. The place was prominent during the British times.Enjoy the scenic view of Kongdori on a Cable Car Ride &ndash; OPTIONAL (Gondola).<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181961\",\"Title\":\"Srinagar to Sonmarg to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast leave with a full day excursion for Sonamarg. Situated at an altitude of 9000 Ft. Sonamarg &ndash; 84 Kms is also called as &ldquo;The meadow of gold&rdquo; has, as its backdrop, snowy mountains against a cerulean sky. The Sindh River that meanders through the valley abounds with trout and mahseer. Ponies can be hired for the trip up to Thajiwas Glacier, which is a major local attraction during the summer.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19306,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181964\",\"Title\":\"Srinagar to Pahalgam to Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, proceed for a day trip to Pahalgam called &ldquo;Valley of Shepherds.In Pahalgam, enjoy the nature walk around the banks of River Lidder. Pahalgam is famous for some trekking routes and is the base camp for Amarnath Pilgrimage. Later return to Srinagar and check-in the hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1278,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1280,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181967\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After Breakfast, transfer to the airport to board the flight for onward destination.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25402\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9077.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7718,\"priceDoubleOcc\":\"9077.50\",\"priceSingleOcc\":21327.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7718,\"priceDoubleOcc\":\"9077.50\",\"priceSingleOcc\":21327.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7718,\"priceDoubleOcc\":\"9077.50\",\"priceSingleOcc\":21327.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7361,\"priceDoubleOcc\":\"8541.25\",\"priceSingleOcc\":20791.25,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8541.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":8042,\"priceDoubleOcc\":\"9562.50\",\"priceSingleOcc\":21812.5,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9562.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9833,\"priceDoubleOcc\":\"12250.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"5000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25403\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14077.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11885,\"priceDoubleOcc\":\"14077.50\",\"priceSingleOcc\":31452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11885,\"priceDoubleOcc\":\"14077.50\",\"priceSingleOcc\":31452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11885,\"priceDoubleOcc\":\"14077.50\",\"priceSingleOcc\":31452.5,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14077.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11833,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":31375,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"15250.00\",\"priceSingleOcc\":32625,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14083,\"priceDoubleOcc\":\"17375.00\",\"priceSingleOcc\":34750,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17375.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25404\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16890.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14385,\"priceDoubleOcc\":\"16890.00\",\"priceSingleOcc\":37327.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16890.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14385,\"priceDoubleOcc\":\"16890.00\",\"priceSingleOcc\":37327.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16890.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14385,\"priceDoubleOcc\":\"16890.00\",\"priceSingleOcc\":37327.5,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16890.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":14333,\"priceDoubleOcc\":\"16812.50\",\"priceSingleOcc\":37250,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16812.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15167,\"priceDoubleOcc\":\"18062.50\",\"priceSingleOcc\":38500,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18062.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":16750,\"priceDoubleOcc\":\"20437.50\",\"priceSingleOcc\":40875,\"priceExtraBed\":\"9375.00\",\"priceWithoutBed\":\"9375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20437.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25402\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8351.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7101,\"priceDoubleOcc\":\"8351.30\",\"priceSingleOcc\":19621.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8351.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7101,\"priceDoubleOcc\":\"8351.30\",\"priceSingleOcc\":19621.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8351.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7101,\"priceDoubleOcc\":\"8351.30\",\"priceSingleOcc\":19621.3,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8351.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":6772,\"priceDoubleOcc\":\"7857.95\",\"priceSingleOcc\":19127.95,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7857.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":7398,\"priceDoubleOcc\":\"8797.50\",\"priceSingleOcc\":20067.5,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8797.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":9047,\"priceDoubleOcc\":\"11270.00\",\"priceSingleOcc\":22540,\"priceExtraBed\":\"4600.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25403\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12951.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10934,\"priceDoubleOcc\":\"12951.30\",\"priceSingleOcc\":28936.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12951.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10934,\"priceDoubleOcc\":\"12951.30\",\"priceSingleOcc\":28936.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12951.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10934,\"priceDoubleOcc\":\"12951.30\",\"priceSingleOcc\":28936.3,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12951.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":10887,\"priceDoubleOcc\":\"12880.00\",\"priceSingleOcc\":28865,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12880.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":11653,\"priceDoubleOcc\":\"14030.00\",\"priceSingleOcc\":30015,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":12957,\"priceDoubleOcc\":\"15985.00\",\"priceSingleOcc\":31970,\"priceExtraBed\":\"6900.00\",\"priceWithoutBed\":\"6900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15985.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25404\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15538.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13234,\"priceDoubleOcc\":\"15538.80\",\"priceSingleOcc\":34341.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15538.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13234,\"priceDoubleOcc\":\"15538.80\",\"priceSingleOcc\":34341.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15538.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13234,\"priceDoubleOcc\":\"15538.80\",\"priceSingleOcc\":34341.3,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15538.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13187,\"priceDoubleOcc\":\"15467.50\",\"priceSingleOcc\":34270,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15467.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":13953,\"priceDoubleOcc\":\"16617.50\",\"priceSingleOcc\":35420,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16617.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-04-15\",\"To\":\"2021-07-31\",\"Currency\":1,\"priceTripleOcc\":15410,\"priceDoubleOcc\":\"18802.50\",\"priceSingleOcc\":37605,\"priceExtraBed\":\"8625.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18802.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Items of personal nature like tips, laundry, telephone, beverages etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee \\/ Local Guide \\/ Hot lunch at any place during the tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in above inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cable Car \\/ Pony ride in Pahalgam \\/ Gulmarg \\/ Sonamarg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local sightseeing in vehicle in internal area of Pahalgam \\/ Gulmarg \\/ Sonmarg due to union restrictions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 Nights accommodation on Twin Sharing \\/ MAP Basis on the above mentioned Hotels or Houseboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Travellerfor Arrival &amp;amp; Departure from Srinagar International Airport to Hotel \\/ HB &amp;amp; vice ver&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveller for Full day trip to Mughal Gardens &amp;amp; Shankaracharya temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Etios\\/ Tavera \\/Xylo\\/Scorpio\\/Tempo Traveler for Full day excursion trip to Gulmarg &amp;amp; Pahalgam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Boat (Shikara)Ride on Dal Lake &amp;ndash; Srinagar (04 Person to 01 Boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meeting &amp;amp; Assistance on Arrival &amp;amp; Departure by our Representative&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181952\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181952],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181955\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181955],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181958\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181958],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181961\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181961],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181964\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181964],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"181967\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181967],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Srinagar UT','Srinagar UT,Uttarakhand,Indian Subcontinent,North India,India,Gulmarg,Pahalgam,Sonmarg','','35502',7858,20438,5,'133_1627652477_0.jpg,133_1627652477_1.jpg,133_1627652477_2.jpg,133_1627652477_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-07-31 00:00:00','2021-07-31 00:00:00',3,'India','101','2023-08-25 15:24:45','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'glimpse-of-kashmir',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (134,24931,1,5293,0,0,0,'Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":24931,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Ladakh_SUV_Expedition_(Leh_to_Leh)_24.jpg\",\"BookingValidUntill\":\"2021-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get ready for one of the most exciting journey exploring the beautiful Ladakh. This journey will take you through some of the most breathtaking and challenging but yet so peaceful and magnificent landscapes found on this planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For millions of years of permanence, the Himalayas with freezing mountain streams, high altitude gorgeous passes, majestically laden plains and enormous mountain lakes in Leh Ladakh region have left a lasting impression on the lucky ones who have got a chance to travel to this remote Himalayan region. Broad evergreen valleys and majestic snow-capped ranges, ornate temples and meditative ceremonies, serenity and vibrant celebrations, bustling cities, and remote wilderness, deep gorges, and breathtaking passes, make a truly spectacular setting for a travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be treated to long strokes, open roads and spectacular views all while climbing the world&amp;rsquo;s highest motorable passes. A trip to Leh Ladakh is a dream of every traveller and definitely, the journey of a lifetime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bringing some of the best routes for you to experience. Select your favourite route and get ready for this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"International Youth Club\",\"Name\":\"Ladakh SUV Expedition (Leh to Leh)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178561\",\"Title\":\"Arrival in Leh:\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On arriving in Leh, get briefed on the programme and upcoming events of your journey. Thereafter, transfer to the guesthouse and enjoy an overnight stay.<\\/p>\\r\\n\\r\\n<p><em>Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178562\",\"Title\":\"Leh Local Sightseeing:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After having sumptuous breakfast , the group will leave for a sightseeing to Pathar sahib Gurudwara , magnetic hill and watch the nbeauty of the confluence of River Indua and Zanskar. The ride to these places will be through NH1 Leh Srinagar Highway surrounded by army checkposts and camps. One would enjoy a smooth ride over the highway as one would on an air strip with an added advantage of scenic views.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19059,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178563\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178564\",\"Title\":\"Leh to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Wake up to a refreshing morning and travel to Nubra Valley, a cold desert with vast landscapes and mountain ranges. Feel the thrill of crossing one of the highest motorable passes in the world, Khardung La. Once you reach Nubra, enjoy a camel ride in the desert mountains of Hunder (additional cost). Overnight stay will be provided in Nubra<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3575,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178565\",\"Title\":\"Nubra Valley to Turtuk Village to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>After the sun peeps out, you will pack your bags as you will leave for Turtuk village which was under Pakistan before 1971. Nestled in the Nubra tehsil, 205 km from the Leh town, on the banks of the Shyok River, it is the last village before LOC. With stunning beauty throughout the valley, you will be blessed with views you might have not seen before. After exploring Turtuk you will ride back towards Nubra.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19061,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178566\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178567\",\"Title\":\"Nubra Valley to Pangong Tso:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>Prepare for another day of a daring off-roading experience as you traverse through untamed paths in the high mountains. The route leads to the beautiful Pangong Tso (lake) via Shyok river or Wari La Pass. It is quite challenging yet thrilling and is generally used by the army. On arrival, train your sights on the enchanting blue lake. After sightseeing, you will leave for Tangste for overnight stay. (*In case Pangong Tso is closed then we shall ride back to Leh and do the day excusrion to Pangong Tso on the next day in suv\\/tempo traveller)<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Pangong Tso<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7257,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178568\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178569\",\"Title\":\"Pangong Tso to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>In the morning, get set for yet another journey exhilarating ride as you head back to Leh, via Chang La pass (the third highest mountain pass in the world) and Choglamsar. En route, stop at the famous Druk White Lotus School, featured in the blockbuster Bollywood movie &lsquo;3 Idiots&rsquo; and Shanti Stupa, a beautiful white-domed Buddhist stupa surrounded by a stunning scenery of vast mountains.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19063,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178570\",\"Title\":\"Leh Departure:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>Get transfer to the airport on your own to board the flight for your onward journey. Trip Ends.<\\/p>\\r\\n\\r\\n<p><em>Breakfast<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24931\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":14292,\"priceDoubleOcc\":\"13250.00\",\"priceSingleOcc\":42125,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":14708,\"priceDoubleOcc\":\"13875.00\",\"priceSingleOcc\":42750,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":15333,\"priceDoubleOcc\":\"14812.50\",\"priceSingleOcc\":43687.5,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14812.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":16375,\"priceDoubleOcc\":\"16375.00\",\"priceSingleOcc\":45250,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16375.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":18458,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":48375,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":24708,\"priceDoubleOcc\":\"28875.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14812.50\",\"priceWithoutBed\":\"14812.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28875.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24931\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11236.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":12119,\"priceDoubleOcc\":\"11236.00\",\"priceSingleOcc\":35722,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11236.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":12473,\"priceDoubleOcc\":\"11766.00\",\"priceSingleOcc\":36252,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11766.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":13003,\"priceDoubleOcc\":\"12561.00\",\"priceSingleOcc\":37047,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12561.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":13886,\"priceDoubleOcc\":\"13886.00\",\"priceSingleOcc\":38372,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13886.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":15653,\"priceDoubleOcc\":\"16536.00\",\"priceSingleOcc\":41022,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16536.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":20953,\"priceDoubleOcc\":\"24486.00\",\"priceSingleOcc\":48972,\"priceExtraBed\":\"12561.00\",\"priceWithoutBed\":\"12561.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24486.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Personal expenses like Telephone, Laundry, Tips and Table Drinks etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any type of insurance-Medical, Accidental, theft&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ Rail fare other than what in mentioned in &amp;ldquo;Inclusions&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any lunch and other meals not mentioned in package inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and monument entry fees during sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost incurred due to extension, change of itinerary due to natural calamities, road, blocks, vehicle breakdown, union issues and factors beyond our control&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional accommodation \\/ food cost incurred due to any delay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than allowed one 60 liters of rucksack\\/backpack shall be charged at Rs. 250 per day\\/10 kg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything that is not mentioned in the Inclusion sections&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Hotels \\/ Camps \\/ Guest Houses on double \\/ triple sharing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals - Breakfast and Dinner. Dinner on Check in Day to Breakfast on Check out Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of experienced Road Captain from Himachal &amp;amp; Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Leh Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inner Line permit of all participants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SUV or Sedan upto 6 Pax. For more than 6 Pax, there will be Tempo Traveler.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport, Railway station or Bus stop pick up or drop&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178561\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178561],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178562\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178562],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178563\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178563],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178564\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178564],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178565\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178565],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178566\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178566],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178567\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178567],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178568\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[178568],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178569\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[178569],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178570\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[178570],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Leh,Nubra,Pangong','Leh,Jammu and kashmir,Indian Subcontinent,North India,India,Nubra,Pangong,Turtuk','','15229,35282,35281',11236,28875,6,'134_1627648285_0.jpg,134_1627648285_1.jpg,134_1627648285_2.jpg,134_1627648285_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-15 00:00:00','2021-09-15 00:00:00',3,'India','101','2023-08-25 15:25:11','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'ladakh-suv-expedition-(leh-to-leh)',NULL,NULL,NULL,0),(135,24889,1,5293,0,0,0,'Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":24889,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Ladakh_SUV_Expedition_(Manali_Leh_Srinagar)_80.jpg\",\"BookingValidUntill\":\"2021-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get ready for one of the most exciting journey exploring the beautiful Ladakh. This journey will take you through some of the most breathtaking and challenging but yet so peaceful and magnificent landscapes found on this planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For millions of years of permanence, the Himalayas with freezing mountain streams, high altitude gorgeous passes, majestically laden plains and enormous mountain lakes in Leh Ladakh region have left a lasting impression on the lucky ones who have got a chance to travel to this remote Himalayan region. Broad evergreen valleys and majestic snow-capped ranges, ornate temples and meditative ceremonies, serenity and vibrant celebrations, bustling cities, and remote wilderness, deep gorges, and breathtaking passes, make a truly spectacular setting for a travel enthusiast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be treated to long strokes, open roads and spectacular views all while climbing the world&amp;rsquo;s highest motorable passes. A trip to Leh Ladakh is a dream of every traveller and definitely, the journey of a lifetime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bringing some of the best routes for you to experience. Select your favourite route and get ready for this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5568,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5568,\"DestinationPlaces\":\"Srinagar UT\",\"DestinationPlacesSysId\":35502,\"SourcePlaces\":\"Manali\",\"SourcePlaceSysId\":16593,\"AgencyName\":\"International Youth Club\",\"Name\":\"Ladakh SUV Expedition (Manali Leh Srinagar)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5885\",\"SupplierName\":\"International Youth Club\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Inner Line Permit,Sightseeing\",\"PackageType\":\"Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2021-07-29\",\"To\":\"2021-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35366,\"Title\":\"Jispa\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":13569,\"Title\":\"Kargil\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}},{\"CityId\":35502,\"Title\":\"Srinagar UT\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":168,\"Title\":\"Beas River\",\"Description\":\"Beas River also known as the Bias.The river rises in the Himalayas in central Himachal Pradesh.Its total length is 470 kilometres and its drainage basin is 20303 square kilometres large.The Beas forms the world famous valleys of Kullu and Kangra. The great thinker and r of the Mahabharta Maharishi Vyas meditated at this spot. The river after passing through dense evergreen forests reaches the town of Kullu.The world famous tourist resort of Manali is situated on the right banks of the river Beas. The attraction of the Beas river has been so great that whoever came here remained to stay.Tourists can also enjoy  rafting biking cycling and trekking here.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Beas_River_16593_1518440248.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him\\u0101chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19047,\"Title\":\"Atal Tunnel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35366,\"CityName\":\"Jispa\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3586,\"Title\":\"Baralacha La Pass\",\"Description\":\"Situated at an altitude of 16,040 feet, Baralacha La Pass is a high mountain pass in the Zanskar range in Jammu and Kashmir. It is a high plateau where three different mountain ranges - Pir Panjal, Zanskar and the Great Himalayas - meet at an altitude above 16,000 feet. This mountain pass, one of the highest passes in Ladakh is around 73 kilometers away from Keylong on Manali - Leh road. Just a few kilometers away from the Bara-lacha Pass towards Manali is the Bhaga river, a tributary of the Chandrabhaga river, which originates from the Surya Taal Lake. This pass is the point of commencement for several treks which include the famous Suraj Tal  trek and Chandra Tal trek. During the winter season the pass is closed due to heavy snowfall.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":32.7585019,\"Long\":77.4199516,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1519363528.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19050,\"Title\":\"Chandrabhaga River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19051,\"Title\":\"Chenab\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19053,\"Title\":\"Deepak Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19056,\"Title\":\"Lachulung La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19054,\"Title\":\"Nakeela Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19052,\"Title\":\"Suraj Taal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19057,\"Title\":\"Tanglang La Pass\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19055,\"Title\":\"Whisky Nallah\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19049,\"Title\":\"Zingzingbar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19058,\"Title\":\"Indus River\",\"Description\":\"&lt;p&gt;Here you can see the confluence of two beautiful rivers Indus and Zanskar. Indus arrives from China and meet Zanskar River at Sangam Point in Leh.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/5568_1617183908.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &ldquo;magnetic hill&rdquo; is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19059,\"Title\":\"Zanskar River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19060,\"Title\":\"Hunder\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19061,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19062,\"Title\":\"Choglamsar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19063,\"Title\":\"Druk White Lotus School\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":959,\"Title\":\"Lamayuru\",\"Description\":\"Lamayuru or Yuru Monastery is a Tibetan Buddhist monastery in Lamayouro, Leh district, India. It is situated on the Srinagar-Leh highway 15 kilometres east of the Fotu La at a height of 3,510 metres.\",\"CurrencyType\":0,\"CityId\":13569,\"CityName\":\"Kargil\",\"Lat\":34.2832931,\"Long\":76.7733263,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5088\\/thumb\\/Lamayuru_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19065,\"Title\":\"Dal Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null},{\"RefSSId\":19066,\"Title\":\"Shalimar Bagh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35502,\"CityName\":\"Srinagar UT\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5885,\"SupplierName\":\"International Youth Club\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178221\",\"Title\":\"Delhi to Kullu Manali:\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>On the first day of your trip, board a Volvo bus to Manali from Delhi. It will be an overnight journey so make sure that you are well prepared.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178222\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178223\",\"Title\":\"Arrival in Kullu Manali:\",\"MealPlanInclude\":\"Dinner\",\"Day\":2,\"Program\":\"<p>Once you reach Manali, check in at the riverside swiss camps and have some rest. Today&rsquo;s day is rest and acclimatization day. You may enjoy a relaxing nature walk on your own to Hadimba Temple and Manu temple around Beas River. Hadimba Temple is truly one-of-a-kind, as it is dedicated to Hadimba Devi, wife of the mighty Bhima from the Hindu epic Mahabharata. Manu Temple located near river Beas is dedicated to sage Manu, the creator of the world.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner &amp; Overnight Stay at Riverside Camps in Kullu<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":168,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2788,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1070,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178224\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178225\",\"Title\":\"Kullu Manali to Jispa\\/Billing via Atal Tunnel:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>Your long-awaited journey to Ladakh finally begins on this day. Pack your bags and get set for a thrilling experience. On the way, you will pass Vashisht Hot Springs. Although Manali is known for its freezing temperatures, these hot springs which are located 6 km from the town, have temperatures ranging from 43-50 &deg;C. You will then visit Solang Valley, known for a variety of winter sports. Once you reach Jipsa, an overnight stay will be provided.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Swiss Camps at Jispa\\/Billing<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35366,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19047,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178226\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35366,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178227\",\"Title\":\"Jispa\\/Billing to Leh via Sarchu:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>On this day, gear up for an adventure as you cross the 16,043-ft-high Bara-lacha la Pass in the Zanskar Range. The rough patches of Darcha and Zingzingbar will give you an adrenaline boost. You will also get to spend some time near Chandrabhaga river (also known as Chenab) so make sure that you have a camera handy and take mesmerizing pictures. En route, you can visit Suraj Taal and Deepak Taal, two breath-taking lakes in the Lahaul and Spiti region. On your journey towards Leh, the hub of Ladakh region, the route will take you through Nakeela Pass, Whisky Nallah, Lachulung La Pass, Pang, More Plains, and Tanglang La Pass. When you reach Leh, check in at the accommodation and stay overnight.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnights Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3586,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19050,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19051,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19053,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19056,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19054,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19052,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19057,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19055,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2630,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19049,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178228\",\"Title\":\"Leh Local Sightseeing:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>After having sumptuous breakfast , the group will leave for a sightseeing to Pathar sahib Gurudwara , magnetic hill and watch the nbeauty of the confluence of River Indua and Zanskar. The ride to these places will be through NH1 Leh Srinagar Highway surrounded by army checkposts and camps. One would enjoy a smooth ride over the highway as one would on an air strip with an added advantage of scenic views.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19059,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178229\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178230\",\"Title\":\"Leh to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>Wake up to a refreshing morning and travel to Nubra Valley, a cold desert with vast landscapes and mountain ranges. Feel the thrill of crossing one of the highest motorable passes in the world, Khardung La. Once you reach Nubra, enjoy a camel ride in the desert mountains of Hunder (additional cost). Overnight stay will be provided in Nubra<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19060,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178231\",\"Title\":\"Nubra Valley to Turtuk Village to Nubra Valley:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"<p>After the sun peeps out, you will pack your bags as you will leave for Turtuk village which was under Pakistan before 1971. Nestled in the Nubra tehsil, 205 km from the Leh town, on the banks of the Shyok River, it is the last village before LOC. With stunning beauty throughout the valley, you will be blessed with views you might have not seen before. After exploring Turtuk you will ride back towards Nubra.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Nubra Valley<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19061,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178232\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178233\",\"Title\":\"Nubra Valley to Pangong Tso:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"<p>Prepare for another day of a daring off-roading experience as you traverse through untamed paths in the high mounatains. The route leads to the beautiful Pangong Tso (lake) via Shyok river or Wari La Pass. It is quite challenging yet thrilling and is generally used by the army. On arrival, train your sights on the enchanting blue lake. After sightseeing, you will leave for Tangste for overnight stay. (*In case Pangong Tso is closed then we shall ride back to Leh and do the day excusrion to Pangong Tso on the next day in suv\\/tempo traveller)<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Pangong Tso<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178234\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178235\",\"Title\":\"Pangong Tso to Leh:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"<p>In the morning, get set for yet another journey as you travel back to Leh, via Chang La pass (the third highest mountain pass in the world) and Choglamsar. En route, stop at the famous Druk White Lotus School, featured in the blockbuster Bollywood movie &lsquo;3 Idiots&rsquo; and Shanti Stupa, a beautiful white-domed Buddhist stupa surrounded by a stunning scenery of vast mountains.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Leh<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19063,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178236\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178237\",\"Title\":\"Leh to Kargil:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"<p>As soon as the morning unfolds today, you will embark the suv expedition to Leh Ladakh, which involves exploring the town of Kargil. You can visit the Buddhist monastery of Lamayuru, which is settled at a height 3,510 m. Later drive on Fotu La mountain pass and then drive to Kargil. Stay the night in camps.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Kargil<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":959,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178238\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13569,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178239\",\"Title\":\"Kargil to Srinagar:\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":11,\"Program\":\"<p>Today embark on the suv expedition to Srinagar, where you may visit numerous attractions such as Shalimar Bagh and take a Shikara ride on the picturesque Dal Lake. In the evening, rest at your pre-booked stay.<\\/p>\\r\\n\\r\\n<p><em>Breakfast, Dinner and Overnight Stay in Sonmarg\\/Srinagar<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19065,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19066,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178240\",\"Title\":\"Srinagar Departure:\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"<p>Complete your amazing Himalayan excursion by taking the flight from Srinagar. If your flight is scheduled late, you can explore Srinagar at your own leisure.<\\/p>\\r\\n\\r\\n<p><em>Breakfast &amp; Check Out<\\/em><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35502,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24889\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27312.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":30438,\"priceDoubleOcc\":\"27312.50\",\"priceSingleOcc\":101500,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":31688,\"priceDoubleOcc\":\"29187.50\",\"priceSingleOcc\":103375,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":33563,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":106187.5,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":36688,\"priceDoubleOcc\":\"36687.50\",\"priceSingleOcc\":110875,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36687.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":42938,\"priceDoubleOcc\":\"46062.50\",\"priceSingleOcc\":120250,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46062.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":61688,\"priceDoubleOcc\":\"74187.50\",\"priceSingleOcc\":148375,\"priceExtraBed\":\"32000.00\",\"priceWithoutBed\":\"27312.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"25.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74187.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24889\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25127.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":28003,\"priceDoubleOcc\":\"25127.50\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25127.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":29153,\"priceDoubleOcc\":\"26852.50\",\"priceSingleOcc\":95105,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26852.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":30878,\"priceDoubleOcc\":\"29440.00\",\"priceSingleOcc\":97692.5,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":33753,\"priceDoubleOcc\":\"33752.50\",\"priceSingleOcc\":102005,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33752.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":39503,\"priceDoubleOcc\":\"42377.50\",\"priceSingleOcc\":110630,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42377.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-05-28\",\"To\":\"2021-09-15\",\"Currency\":1,\"priceTripleOcc\":56753,\"priceDoubleOcc\":\"68252.50\",\"priceSingleOcc\":136505,\"priceExtraBed\":\"29440.00\",\"priceWithoutBed\":\"29440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"68252.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;big&gt;If&lt;\\/big&gt;&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;ins&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/ins&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span class=&quot;marker&quot;&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Personal expenses like Telephone, Laundry, Tips and Table Drinks etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any type of insurance-Medical, Accidental, theft&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ Rail fare other than what in mentioned in &amp;ldquo;Inclusions&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any lunch and other meals not mentioned in package inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and monument entry fees during sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost incurred due to extension, change of itinerary due to natural calamities, road, blocks, vehicle breakdown, union issues and factors beyond our control&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional accommodation \\/ food cost incurred due to any delay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra luggage other than allowed one 60 liters of rucksack\\/backpack shall be charged at Rs. 250 per day\\/10 kg&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything that is not mentioned in the Inclusion sections&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Hotels \\/ Camps \\/ Guest Houses on double \\/ triple sharing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals - Breakfast and Dinner. Dinner on Check in Day to Breakfast on Check out Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of experienced Road Captain from Himachal &amp;amp; Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Leh Ladakh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inner Line permit of all participants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SUV or Sedan upto 6 Pax. For more than 6 Pax, there will be Tempo Traveler.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport, Railway station or Bus stop pick up or drop&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178221\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178221],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"3\"]}},\"178222\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178222],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178223\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178223],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178224\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178224],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178225\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178225],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178226\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178226],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178227\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178227],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178228\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178228],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178229\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[178229],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178230\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[178230],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178231\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[178231],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178232\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[178232],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178233\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[178233],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178234\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[178234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178235\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[178235],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178236\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[178236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178237\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[178237],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178238\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[178238],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178239\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[178239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"3\"]}},\"178240\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[178240],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"FlightData\":[]}}','Delhi,Manali,Jispa,Leh,Nubra,Pangong,Kargil,Srinagar UT','Delhi,Indian Subcontinent,North India,India,Manali,Himachal Pradesh,Jispa,Srinagar UT,Uttarakhand,Pangong,Jammu and kashmir,Leh,Kargil,Nubra','','7701,16593,35366,15229,35282,35281,13569,35502',25128,74188,11,'135_1627650701_0.jpg,135_1627650701_1.jpg,135_1627650701_2.jpg,135_1627650701_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"},{\"day\":11,\"images\":\"\"},{\"day\":12,\"images\":\"\"}]',2,'',0,'2021-07-29 00:00:00','2021-09-15 00:00:00','2021-09-15 00:00:00',3,'India','101','2023-08-25 15:25:15','2021-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'ladakh-suv-expedition-(manali-leh-srinagar)',NULL,NULL,NULL,0),(137,27075,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27075,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/oblu_select_at_sangeli_-_split_stay_1627641970.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;YOUR VIBRANT CHIC PARADISE AWAITS&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Situated in the North-Western tip of Mal&amp;eacute; Atoll, Maldives is the blissfully romantic OBLU SELECT Sangeli. Stay in chic, tropical villas and suites and immerse in a medley of flavours at exotic restaurants and bars. Lose yourself in a picturesque setting - swaying palm trees, pristine white beaches, and a turquoise lagoon beaming with vibrant coral life. Every element of a luxurious vacation is blended into your stay for a truly carefree and memorable getaway at the finest beach resort in Maldives!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"OBLU SELECT AT SANGELI - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476544,\"Name\":\"OBLU SELECT at Sangeli\",\"Star\":\"5.00\",\"Rating\":\"4.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"4.637675799999999\",\"Long\":\"73.4001789\",\"Address\":\"Sangeli Island North Male, 20094, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4818049,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476544\\/5293_01617816507.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Set exclusively near &lt;strong&gt;North Mal&Atilde;&copy; Atoll Island,&lt;\\/strong&gt; this upscale all-inclusive resort is 50 minutes by speedboat from &lt;strong&gt;Male International airport.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Luxurious villas come with minibars and open-air bathrooms, plus direct beach or lagoon access. Some feature private pools and\\/or soaking tubs. Suites add living areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In addition to meals, water sports such as snorkeling, kayaking and paddle boarding are complimentary. There&amp;#39;s a vibrant restaurant offering fine dining. Other amenities include 3 more restaurants, an adults-only pool, a cocktail bar and a gym, plus a garden and a spa.&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476544\\/5293_ab912ca7f7c2a91bbdf3f552ffad2dd61617816507.png\",\"AccoAminitiesMask\":\"1111111110001100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193943\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 - BEACH VILLA&amp;nbsp;: Simple and tasteful, your veranda opens right up to the beach.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;STAY 2 - WATER VILLA&amp;nbsp;: Spacious and warmly designed, the water bungalows are set along the far end of the island each with a private balcony offering an infinite view of the ocean.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476544,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193944\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476544,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193945\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476544,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193946\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476544,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193947\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476544,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27075\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"121330.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Villa&amp;nbsp;+ 2 Nights Stay in Water Villa&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan (Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon freebies :- Romantically shaped bed decoration - once per stay. romantic candle light dinner for the couple once during stay. one honeymoon cake, romantic turn down service - Aromatic bubble bath - once per stay.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Activities and Adventure :- &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;ENTERTAINMENT &amp;minus;&lt;\\/strong&gt; Sangeli island comes alive with local Boduberu music and DJ night organized TWICE a week &amp;minus; Live music performances organized THRICE a week.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GYM AND RECREATION &amp;minus;&lt;\\/strong&gt; Unlimited access to our fully equipped gymnasium and recreation centre &amp;minus; Weekly and seasonal group activities including yoga, strength training, pilates, and more &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;SNORKELING AND WATERSPORTS &amp;minus;&lt;\\/strong&gt; Complimentary use of snorkelling equipment throughout the stay &amp;minus; Complimentary use of non-motorized water sports equipment: Stand-Up Paddle Board, Kayak, and Pedalos.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;EXCURSIONS :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ONE complimentary Sunset Fishing per guest during stay ** &amp;minus; ONE complimentary excursion per guest from a selection of excursions**: &amp;acirc;&amp;oelig;&amp;ldquo; Local Island Cultural Experience &amp;acirc;&amp;oelig;&amp;ldquo; Guided Snorkelling Trip &amp;nbsp;&amp;acirc;&amp;oelig;&amp;ldquo; Moonlight Cruise &amp;nbsp;** Weather permitting.&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;THE KIDS CLUB &amp;minus; &lt;\\/strong&gt;A host of fun activities and learning experiences organized daily for kids Additional Services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;IN VILLA MINIBAR : &amp;minus;&lt;\\/strong&gt; Replenished ONCE DAILY with an assortment of alcoholic and non-alcoholic beverages along with a selection of snacks.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;ONE BANYAN ISLAND -&lt;\\/strong&gt; Strictly for Adults Only &amp;minus; ONE BANYAN - an ADULTS ONLY Island from Sunrise to Sunset.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;SPA ** &amp;minus;&lt;\\/strong&gt; The ELENA Spa offers a range of holistic treatment inspired by natural elements, that nourish the mind, body, and soul &amp;nbsp; **Eligible per person per stay for adults (15 years and above) depending on the duration of the stay: &amp;minus; 4-7 nights stay: ONE 45 minutes spa treatment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Beverages :- &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Unlimited orders from a wide selection of liquor at The Courtyard, Simply Veg, Just Grill, The Sangs Bar, and One Banyan Bar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Includes premium brands of spirits, wines, and beers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited orders from a selection of : &amp;minus; Sixteen cocktails and ten mocktails at THE SANGS &amp;minus; Ten cocktails and ten mocktails at ONE BANYAN Bar, SIMPLY VEG, and JUST GRILL &amp;minus; One cocktail of the day, one mocktail of the day, wine, beer,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Soft drinks at THE ROCK &amp;bull; Soft drinks, mineralized water, and an assortment of tea and coffee available at all outlets.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193943\":[{\"Sequence\":[0],\"TPInvnSysId\":[193943],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193944\":[{\"Sequence\":[0],\"TPInvnSysId\":[193944],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193945\":[{\"Sequence\":[0],\"TPInvnSysId\":[193945],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193946\":[{\"Sequence\":[0],\"TPInvnSysId\":[193946],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193947\":[{\"Sequence\":[0],\"TPInvnSysId\":[193947],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',121330,121330,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:40:43','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'oblu-select-at-sangeli-split-stay',NULL,NULL,NULL,0),(138,27081,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27081,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/heritance_aarah_-_split_stay_1627641935.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Await a 40-minute scenic sea plane ride at the exclusive Heritance Aarah Lounge when you arrive in Male.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Nestled within the scenic Raa Atoll, this Premium All-Inclusive resort in the Maldives sets the tone for the perfect getaway, with a myriad of offerings from an impressive array of dining options by award-winning chefs, to exploring the over or underwater marvels of the Raa Atoll.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Responsible travel is at the heart of Heritance Aarah. We are the first LEED Gold certified building in the Maldives and the first green-rated building. We are also Travelife Gold certified and invite you to join our eco-initiatives whilst at the resort.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"HERITANCE AARAH \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484166,\"Name\":\"Heritance Aarah\",\"Star\":\".00\",\"Rating\":\"4.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"5.446365300000001\",\"Long\":\"72.9411087\",\"Address\":\"Raa Atoll, Republic of MALDIVES Raa North MV, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Beach Villa \",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194003\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - BEACH VILLA&amp;nbsp;:&lt;\\/strong&gt; Enjoy direct access to the soft blanket of warm white sands right from your door&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beach Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194004\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beach Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194005\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beach Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194006\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beach Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194007\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beach Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"27081\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"191730.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":185339,\"priceDoubleOcc\":\"191730.00\",\"priceSingleOcc\":536844,\"priceExtraBed\":\"143797.50\",\"priceWithoutBed\":\"95865.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":191730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":95865,\"CEB\":143797.5,\"COSTDO\":191730,\"COSTSO\":536844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":172557,\"COSTTO\":172557}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Stay in Beach Villa&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan (Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by&amp;nbsp;Domestic Flight + Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"194003\":[{\"Sequence\":[0],\"TPInvnSysId\":[194003],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEAPLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194004\":[{\"Sequence\":[0],\"TPInvnSysId\":[194004],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEAPLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194005\":[{\"Sequence\":[0],\"TPInvnSysId\":[194005],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEAPLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194006\":[{\"Sequence\":[0],\"TPInvnSysId\":[194006],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEAPLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194007\":[{\"Sequence\":[0],\"TPInvnSysId\":[194007],\"Remark\":[\"&lt;p&gt;TRANSFERS BY SEAPLANE&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male','','16505',191730,191730,4,'138_1627638499_0.jpg,138_1627638499_1.jpg,138_1627638499_2.jpg,138_1627638499_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-07-29 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-07-29 11:33:15','2023-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'heritance-aarah',NULL,NULL,NULL,0),(139,27082,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27082,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/the_residence_maldives_-_split_stay_1627641712.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A world away from the everyday, The Residence Maldives creates the time and space for you to rediscover the meaning of relaxation, well taken care of by our attentive yet discreet hospitality.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Designed in harmony with the natural environment, the resort seamlessly blends traditional Maldivian architecture with contemporary elegance and modern comforts. Luxuriate in the privacy of the resort&amp;rsquo;s beachfront and over-water villas that offer an oasis just steps from the sand, or the pleasure of slipping straight from your deck into the cool, clear waters to reach your own private lagoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Embrace the destination through our unique dining experiences and a myriad of activities &amp;ndash; from lazing on sun-kissed beaches to snorkelling, island hopping or exploring the remarkable marine life in many nearby dive sites. Whether seeking the perfect couple&amp;rsquo;s retreat or a memorable family holiday, surrender to the enchantment of The Residence Maldives.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"THE RESIDENCE MALDIVES - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":217136,\"Name\":\"The Residence Maldives\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0.675644000000000\",\"Long\":\"73.439484000000000\",\"Address\":\"Falhumaafushi Island, Gaafu Alifu A Male Maldives, , Maldives, \"},\"Images\":{\"Image\":[{\"ImagId\":4787285,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=hpRBSdtPJNrQuwRo5I\\/exPbdtjJGoRI2R1Qo2\\/mGLJmRgCsFQbnsI1g6NhpvJtPuFtYuEjcLMpcyTuOzE45Keg==\"}]},\"CityId\":16505,\"Brief\":\"The Residence Maldives is located 242 miles south of the Male International Airport.It takes 55 mins flight to Kooddoo Airport and 7 mins speedboat transfer to the resort with surcharge. Step out of your Beach Villa and feel the warm sand trickling between your toes.Built on the idyllic seashore amidst the soothing greenery, each Beach Villa comes with direct access to the beach - a delightful playground for your little ones. The spacious living room leads out to a cosy verandah so you can enjoy the expansive views of the ocean. Breakfast, Lunch and Dinner are available at the resort Hotel is located in the tropical island with over water villa. Hotel has a small size lobby The Residence Maldives is nestled on Falhumaafushi, a pristine island in the Gaafu Alifu Atoll,This secluded retreat, a Leading Hotel of The World - 1km long by 120m at its widest point - offers unparalleled beauty. Its elegant interiors blend seamlessly with its traditional Maldivian architecture. The private villas evoke a pleasingly classic yet modern style, their bespoke furnishings rubbing shoulders with local artifacts and wall-art. High ceilings and French windows ensure every villa is airy and light filled. The beach front or over-water villas offer either a &quot;toes in the sand&quot;&Acirc;\\u009d experience or the chance to slip straight from your deck into the cool, clear waters to reach your own private dive site. A buggy service is readily available to transport you around the island. -Green tax 6$ per person per night to be paid directly to the hotel. - Free Breakfast A La Carte upgrade based on Bed and Breakfast  and Half Board rate plans. -Gala dinners (Christmas, New Year&#039;s etc..) are compulsory and to be paid directly to the hotel. -For transfers please contact the hotel directly. - Early Booking Offer 14 Days prior, from 01.5 - 31.10.15 get upgrade to HB meals valid for 2 Pax.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194008\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - SUNRISE BEACH POOL VILLA&amp;nbsp;:&lt;\\/strong&gt;&amp;nbsp;Experience the airy relaxation of our Beach Villas located along the shimmering seashore, nestled amid soothing greenery. Delight in direct access to the beach - a palm-fringed playground for your little ones - and a spacious living room that leads out to a private terrace where you can bask in the expansive ocean views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - SUNRISE WATER POOL&amp;nbsp;VILLA&amp;nbsp;: &lt;\\/strong&gt;Tucked away in one of the most private locations of the resort, indulge in the luxury of space within a Deluxe Water Pool Villa, heightened by the spectacular feeling of airy openness that enlivens all your senses. Surrender to the pleasure of relaxation within the oversized living room designed to immerse you in absolute comfort while reading or unwinding on the sofa, or contemplating the glorious views.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194009\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194010\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194011\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194012\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights stay in Sunrise Beach Pool Villa   02 Nights stay in Sunrise Water Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"27082\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"118580.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":114627,\"priceDoubleOcc\":\"118580.00\",\"priceSingleOcc\":332024,\"priceExtraBed\":\"88935.00\",\"priceWithoutBed\":\"59290.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59290,\"CEB\":88935,\"COSTDO\":118580,\"COSTSO\":332024,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":106722,\"COSTTO\":106722}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Sunrise Beach Pool Villa&amp;nbsp;+ 2 Nights Stay in Sunrise Water Pool Villa&amp;nbsp;Villa&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan (&amp;nbsp;Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Domestic Flight + Speedboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Non-motorised Water Sports Activities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance upto USD 50,000 included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;90 Min Dolphin Cruise (Per Couple)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"194008\":[{\"Sequence\":[0],\"TPInvnSysId\":[194008],\"Remark\":[\"&lt;p&gt;TRANSFERS BY&Acirc;&nbsp;DOMESTIC FLIGHT + SPEED BOAT.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194009\":[{\"Sequence\":[0],\"TPInvnSysId\":[194009],\"Remark\":[\"&lt;p&gt;TRANSFERS BY&Acirc;&nbsp;DOMESTIC FLIGHT + SPEED BOAT.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194010\":[{\"Sequence\":[0],\"TPInvnSysId\":[194010],\"Remark\":[\"&lt;p&gt;TRANSFERS BY&Acirc;&nbsp;DOMESTIC FLIGHT + SPEED BOAT.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194011\":[{\"Sequence\":[0],\"TPInvnSysId\":[194011],\"Remark\":[\"&lt;p&gt;TRANSFERS BY&Acirc;&nbsp;DOMESTIC FLIGHT + SPEED BOAT.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"194012\":[{\"Sequence\":[0],\"TPInvnSysId\":[194012],\"Remark\":[\"&lt;p&gt;TRANSFERS BY&Acirc;&nbsp;DOMESTIC FLIGHT + SPEED BOAT.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',118580,118580,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:39:32','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'the-residence-maldives-split-stay',NULL,NULL,NULL,0),(140,27173,1,5293,0,0,0,'Adventure,Wildlife,Private,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27173,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/independence_day_package_--2n3d_1627885099.jpg\",\"BookingValidUntill\":\"2021-08-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;La Perle River Resorts is a beautiful resort located on the bank of River kosi. It has been launched in the year 2004 with the name &amp;ldquo;La Perle&amp;rdquo;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The resort has been spread over 4.5 acre of land with 39&amp;nbsp;luxury rooms. The gardens are well maintained in the middle of Mango Orchards with a perfect combination of wilderness &amp;amp; nature. La Perle is among the best jungle theme property with all the luxurious facilities you need to unwind and relax. The nearest city is Ramnagar which is just 6 kms away.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"INDEPENDENCE DAY PACKAGE - La Perle River Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6654\",\"SupplierName\":\"La Perle River Resorts\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"All Meals\",\"PackageType\":\"Adventure,Wildlife,Private,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-08-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484279,\"Name\":\"La Perle River Resorts\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.451532\",\"Long\":\"79.1408005\",\"Address\":\"Village Ladhuachaur P.O. Dhikuli, Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6654,\"SupplierName\":\"La Perle River Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"Tiger Den Cottage\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194608\",\"Title\":\"Day 01 &acirc;&euro;&ldquo; 13th August 2021\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Check in at La Perle River Resort, Lunch at&amp;nbsp; multicuisine restaurants&amp;nbsp;&amp;ldquo;Baagh Haveli&amp;rdquo; &lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Day free for leisure actively to explore the resort recreational activity, Live Singing \\/ Music on the dec&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Dinner at restaurant. &amp;nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Tiger Den Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194609\",\"Title\":\"Day 02&acirc;&euro;&ldquo;  14th August 2021\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Breakfast &amp;amp; Lunch at restaurant &amp;ldquo;Baagh Haveli&amp;rdquo;, &lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Experience Jungle Safar&amp;nbsp; in Corbett National Park (Zone as per availibility ) &amp;nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&amp;nbsp;02 + 02 Snacks (Use your own Liquor), Live Singing \\/ Music &amp;nbsp;on the deck. Dinner at &amp;ldquo;Baagh Haveli&amp;rdquo; restaurant.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Tiger Den Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194610\",\"Title\":\"Day - 03 &acirc;&euro;&ldquo; 15th August 2021\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Breakfast at restaurant, Check out and way to your respective place.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;If Jeep Safari not available than amount for safari will be refunded.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy Jeep Jungle Safari in Corbett National Park (Subject to Availibility)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation with Lunch, Dinner &amp;amp; Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in respective room for 2 Nights &amp;amp; 3 Days.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of in-house recreational activities &amp;amp; kids zone* (Complimentary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of Swimming Pool &amp;amp; Gymnasium (Complimentary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&amp;nbsp;Above rates are valid&amp;nbsp; (Minimum 06 Pax travelling together) *Conditions apply.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8222\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"194608\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[194608],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"194609\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[194609],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"194610\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[194610],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'140_1628168294_0.jpg,140_1628168294_1.jpg,140_1628168294_2.jpg,140_1628168294_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"}]',2,'',0,'2023-08-25 00:00:00','2021-08-15 00:00:00','2021-08-15 00:00:00',3,'India','101','2023-08-25 17:08:28','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'independence-day-package-la-perle-river-resorts',NULL,NULL,NULL,0),(141,27205,1,5293,0,0,0,'Adventure,Wildlife,Group Tours,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27205,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\" TARANGI RESORT AND SPA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6656\",\"SupplierName\":\"Tarangi Resort and Spa!\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Wildlife,Group Tours,Road Trip\",\"Validity\":{\"From\":\"2023-08-03\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483814,\"Name\":\"Tarangi Jim Corbett Resort and Spa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Ramnagar, Dhikuli, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818905,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483814\\/5293_01626686416.jpg\"},{\"ImagId\":4818906,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483814\\/5293_01626686436.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;Enjoy the harmony of nature at Tarangi Resort &amp; Spa Corbett that never fails to surprise its guests with luxurious facilities and accommodations while embracing the wilderness called Corbett.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Offers soothing massages, steam and sauna at the signature spa, Sansha Spa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The rooms provide views of the Kosi River and Sitabani Forest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bonfires with barbecue snacks can be arranged in the outdoors for some special occasions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Provides outdoor and indoor activities like badminton, trampoline, yoga and table tennis.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483814\\/5293_57d78055e2d014524244421a0704849e1626686416.jpg\",\"AccoAminitiesMask\":\"111100000000100101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6656,\"SupplierName\":\"Tarangi Resort and Spa!\",\"priceaditionals\":null,\"RoomTypeName\":\"Sarang\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194871\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Sarang\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194873\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Sarang\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194875\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Sarang\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":483814,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Luxury Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Welcome drink on arrival (Non-alcoholic).&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Buffet Meals at&amp;nbsp;&lt;strong&gt;our multi-cuisine restaurant &amp;ndash; &amp;lsquo;Platter&amp;rsquo; for Sarang Wing&amp;nbsp;&lt;\\/strong&gt;and&amp;nbsp;&lt;strong&gt;&amp;lsquo;Panorama&amp;rsquo; for&amp;nbsp;Tarangi&amp;nbsp;wing .&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;02 Mineral water complimentary every day.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Complimentary wi-fi for two devices per room.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Free access to recreational zone for adults (table tennis, foosball, board games, library)&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Outdoor games (Cricket, badminton, volleyball, trampoline).&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Free access to the kid&amp;#39;s area zone.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;Common bonfire in designated areas (In winters).&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;span style=&quot;color:black&quot;&gt;All applicable taxes.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8225\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"194871\":[{\"Sequence\":[0],\"TPInvnSysId\":[194871],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194873\":[{\"Sequence\":[0],\"TPInvnSysId\":[194873],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194875\":[{\"Sequence\":[0],\"TPInvnSysId\":[194875],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'141_1628318251_0.jpg,141_1628318251_1.jpg,141_1628318251_2.jpg,141_1628318251_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-03 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-03 10:53:41','2023-08-03 00:00:00',1,1,'0','0','0','','','',NULL,'tarangi-resort-and-spa',NULL,NULL,NULL,0),(142,27208,1,5293,0,0,0,'Wildlife,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27208,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"INFINITY RESORTS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6657\",\"SupplierName\":\"Infinity Resorts \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Activity\",\"PackageType\":\"Wildlife,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194889\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194890\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194891\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8297\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":[],\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'142_1628317538_0.jpg,142_1628317538_1.jpg,142_1628317538_2.jpg,142_1628317538_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2023-08-25 14:00:15','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'infinity-resorts',NULL,NULL,NULL,0),(143,27215,1,5293,0,0,0,'Wildlife,Family,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27215,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAULIK MANSION RESORT - JIM CORBETT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6662\",\"SupplierName\":\"Maulik Mansion Resort - Jim Corbett \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Wildlife,Family,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481395,\"Name\":\"Maulik Mansion Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Corbett National Park, Dhikuli, Ramnagar, Nainital, Uttrakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818246,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481395\\/5293_01618481639.jpg\"},{\"ImagId\":4818247,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481395\\/5293_01618481660.jpg\"},{\"ImagId\":4818248,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481395\\/5293_01618481678.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;Cuddled by Nature, nuzzled by animals, the Maulik Mansion Hotel will be the tree-house in the jungle you always dreamed of. On the very periphery of the oldest wildlife sanctuary in India, we take pride in promising you one of the most memorable journeys of your life. Come over and let us take you on a mysterious quest to discover Nature&acirc;&euro;&trade;s secrets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Amidst the calm greenery and lush scenery, the chirping of the birds is the only sound that will disturb you in your poetic isolation. At Maulik Mansion, you will be amazed to find the latest amenities in a remote place that is so far away from the modernity. An occasional roar of a lonely Bengal tiger may shake you out of your reverie. Your hands will automatically move towards your camera craving for a single shot of the canine in action. Besides the royal king of the feline fraternity, the Maulik Mansion is located at a place where an array of different birds can be easily spotted, mostly in the mornings and evenings. Bird-gazers may not have to venture far to fulfill their pursuit. Migratory birds fly over our hotel, flock after flock, during different migratory seasons and it&acirc;&euro;&trade;s a sight to behold!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our hotel is not located near the river-side, which means that you do not have to bother about the blood-sucking mosquitoes, especially during the day time. No stale smell of putrid stagnant water during summers, no flying insects during monsoons and no chilly breeze-puffs during winters. Our hotel is in the coziest part on the outskirts of the jungle and we bet you will fall in love with it at first sight.&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481395\\/5293_dab7d026b27d8ea90887ad4be62c68361618481639.jpg\",\"AccoAminitiesMask\":\"1111111110001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6662,\"SupplierName\":\"Maulik Mansion Resort - Jim Corbett \",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194920\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room With BathTub\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194922\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room With BathTub\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194924\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":481395,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room With BathTub\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival (Non -Alcoholic)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in well appointed room.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary 2 Bottles mineral water each day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Buffet meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internet facilities (free wifi)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free access to Indoor &amp;amp; Outdoor Games (Pool, Chess, Carom, Volleyball, Badminton etc)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for kids&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of Swimming Pool (swimwear mandatory) &amp;amp; Gym&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Common Bonfire with light Music&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Nature Walk (On request)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8227\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"194920\":[{\"Sequence\":[0],\"TPInvnSysId\":[194920],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194922\":[{\"Sequence\":[0],\"TPInvnSysId\":[194922],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194924\":[{\"Sequence\":[0],\"TPInvnSysId\":[194924],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'143_1628315433_0.jpg,143_1628315433_1.jpg,143_1628315433_2.jpg,143_1628315433_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 14:00:02','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'maulik-mansion-resort-jim-corbett',NULL,NULL,NULL,0),(144,27217,1,5293,0,0,0,'Wildlife,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27217,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"TIGER CAMP RESORT - CORBETT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6666\",\"SupplierName\":\"Tiger Camp Resort - Corbett\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Wildlife,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484172,\"Name\":\"Tiger Camp Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Jim Corbett National Park, Laduachaure, P.O, Dhikuli, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4819058,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484172\\/5293_01627571975.jpg\"}]},\"CityId\":13146,\"Brief\":\"&lt;p&gt;One of the most &amp;#39;value for money&amp;#39; places to stay while visiting Corbett National Park. In house facilities include extremely comfortable cottages with en suite facilities, 4x4 vehicles and expert guides for wildlife safaris, 2 elephants for tiger tracking, special dinners and bar-be-cue on order, campfires, nature and bird walks, Himalayan excursions and varied activities. Remember to ask for special deals. You can ask us for yoga and meditation programmes.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484172\\/5293_85f8334cfa9ee2a145da26ddf06a48cd1627571975.jpg\",\"AccoAminitiesMask\":\"111101000000110001010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":6666,\"SupplierName\":\"Tiger Camp Resort - Corbett\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"194926\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194928\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"194930\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&amp;bull; Breakfast ,Lunch or Dinner.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull; Complimentary access to recreation facilities available at hotel including Swimming Pool.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull; Complimentary stay for child below 05 years without extra bed.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull; 15% Discount on laundry.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull; 15% Discount on Business Centre Bills, Telephone Calls.&amp;nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;&lt;strong&gt;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8330\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"194926\":[{\"Sequence\":[0],\"TPInvnSysId\":[194926],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194928\":[{\"Sequence\":[0],\"TPInvnSysId\":[194928],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"194930\":[{\"Sequence\":[0],\"TPInvnSysId\":[194930],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',0,0,2,'144_1628316399_0.jpg,144_1628316399_1.jpg,144_1628316399_2.jpg,144_1628316399_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2023-08-25 13:59:49','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'tiger-camp-resort-corbett',NULL,NULL,NULL,0),(145,27331,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":27331,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/andaman_best_seller_1629872355.jpg\",\"BookingValidUntill\":\"2022-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANDAMAN BEST SELLER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2021-10-29\",\"To\":\"2022-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475440,\"Name\":\"The Luxor\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6755097\",\"Long\":\"92.7232317\",\"Address\":\"Haddo, Port Blair, Andaman and Nicobar Islands 744102, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475813,\"Name\":\"J Hotel\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6691667\",\"Long\":\"92.74249999999999\",\"Address\":\"Aberdeen Bazaar, Near Clock Tower, Aberdeen Bazar, Aberdeen, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477716,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478817,\"Name\":\"radha krishna havelock\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484569,\"Name\":\"Aquays Hotels & Resorts\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0289344\",\"Long\":\"93.0016957\",\"Address\":\"No. 5, Govind Nagar Beach Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195657\",\"Title\":\"Arrival \\u2013 Port Blair \\u2013 Cellular Jail - Light & Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p><strong>Port Blair<\\/strong><\\/p>\\r\\n\\r\\n<p>Arrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. Later in the afternoon visit Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India\\u2019s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195660\",\"Title\":\"Port Blair - Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast you will transfer to Jetty. Head to Havelock Island on board Cruise connecting the two islands! Havelock, about 54 kilometers northeast of Port Blair, the Island is a hidden jewel. Few Indians know of this stunning beach destination in their own backyard while heading for Phuket (in Thailand) across the waters of Andaman Sea. Havelock is a serene tropical island encompassing about 86 square kilometers. Its clear waters are rated among the best in the world for snorkeling and scuba diving. Close to 1000 different species of marine life inhabit the waters of the Andaman Islands. Scuba divers can see nudibranchs, sea slugs and snails, varieties of ghost pipe fish, jaw fish and many different crustaceans of all shapes and sizes. With its serene beaches, 40 meters visibility underwater, colorful coral reefs and \\u2018far from the maddening crowd\\u2019 appeal, Havelock Island has emerged as a dream destination among discerning travelers. Arrive at Havelock Jetty, you are met and assisted by our representative. Board the waiting vehicles and drive to the hotel. Check in at the hotel. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195663\",\"Title\":\"Havelock \\u2013 Radha Nagar Beach (or Beach No. 7)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast, proceed for Radha Nagar Beach (or Beach No. 7) is the jewel in the crown of Havelock Island. Located on the western side of the island, it stands away from the cluster. The glorious white sand beach shot to global fame when Time magazine (in 2004) rated it as the finest in Asia. With lush tropical forest rising on a hill to one side, the draw of this white sand beach has steadily grown in the legion of avid beach buffs. The popularity of this beach has triggered cruises from across the Andaman Sea. Travelers cruise over a few days from Thailand to experience the magic of this beach. A wide beach that runs over a few kilometers, Radha Nagar is simply stunning. It lends itself to a variety of activities. Overnight at the Hotel.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\nDid you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn\\u2019t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that\\u2019s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195666\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195669\",\"Title\":\"Havelock to Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nToday in the morning have breakfast and Leisure. Afternoon Board the vehicles and drive to Havelock Jetty. From here sail to Port Blair on board Cruise. Upon arrival check into the hotel. Overnight stay at the Hotel.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\n(Optional Elephanta Beach @ INR 1150\\/- Per Pax)<br \\/>\\r\\nProceed for snorkeling at Elephant beach. Elephant Beach is a small pristine beach, rather remotely located, it can be reached by boat. The beach is also an extremely good place for snorkeling with an easily accessible house reef, which boasts of beautiful corals and other marine life. The beach has also emerged as Havelock\\u2019s favorite spot for scuba diving. It is tailor made to be a beginner\\u2019s dive site.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195672\",\"Title\":\"Port Blair- North bay (Coral Island) \\u2013 Ross island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nToday after breakfast embark on a day long three island cruises. One of the most sought-after activities. It covers a panorama of seven harbors that include the North Bay and Ross island. It leaves a lasting impression. Visit Ross Island. Once the administrative headquarters of the British and capital of these Islands, the island is now under the Indian Navy. It stands now as a ruin of the bygone days with the old structures almost in debris. There is a small museum named Smritika, it holds photographs and the other antiques of the Britisher\\u2019s relevant to these islands. The island is famous for friendly flocks of Deer and lush green walking trails. North Bay, the water lovers may enjoy snorkeling or take a glass bottom boat ride (Optional on direct payment) in its shallow waters with a chance to see corals up close. Return to the hotel. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195675\",\"Title\":\"Depart from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nDrop to Airport \\/ Harbors for Return journey with a wonderful holiday memories.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"27331\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15884,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17050.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15884,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17050.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15884,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17050.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16031,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":34320,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16104,\"priceDoubleOcc\":\"17380.00\",\"priceSingleOcc\":34430,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17380.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19111,\"priceDoubleOcc\":\"21890.00\",\"priceSingleOcc\":38940,\"priceExtraBed\":\"10527.00\",\"priceWithoutBed\":\"10527.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21890.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":29475,\"priceDoubleOcc\":\"29474.50\",\"priceSingleOcc\":58949,\"priceExtraBed\":\"29474.50\",\"priceWithoutBed\":\"29474.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29474.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27332\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20898.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18853,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41797.8,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18853,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41797.8,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18853,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41797.8,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18853,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41797.8,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"21010.00\",\"priceSingleOcc\":41908.9,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21010.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":22007,\"priceDoubleOcc\":\"25630.00\",\"priceSingleOcc\":46528.9,\"priceExtraBed\":\"11737.00\",\"priceWithoutBed\":\"11737.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25630.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":41248,\"priceDoubleOcc\":\"41247.80\",\"priceSingleOcc\":82495.6,\"priceExtraBed\":\"41247.80\",\"priceWithoutBed\":\"41247.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41247.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27333\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24090.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21223,\"priceDoubleOcc\":\"24090.00\",\"priceSingleOcc\":48180,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24090.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21223,\"priceDoubleOcc\":\"24090.00\",\"priceSingleOcc\":48180,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24090.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21223,\"priceDoubleOcc\":\"24090.00\",\"priceSingleOcc\":48180,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24090.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21223,\"priceDoubleOcc\":\"24090.00\",\"priceSingleOcc\":48180,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24090.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21295,\"priceDoubleOcc\":\"24198.90\",\"priceSingleOcc\":48288.9,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24198.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24303,\"priceDoubleOcc\":\"28710.00\",\"priceSingleOcc\":52800,\"priceExtraBed\":\"12221.00\",\"priceWithoutBed\":\"12221.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28710.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":54588,\"priceDoubleOcc\":\"54587.50\",\"priceSingleOcc\":109175,\"priceExtraBed\":\"54587.50\",\"priceWithoutBed\":\"54587.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"54587.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary &amp;#39;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"195657\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[195657],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195660\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195660],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195663\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195663],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195666\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195666],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195669\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195669],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195672\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195672],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195675\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[195675],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island','','32511,11658',17050,54588,5,'145_1628684471_0.jpg,145_1628684471_1.jpg,145_1628684471_2.jpg,145_1628684471_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-10-29 00:00:00','2022-08-31 00:00:00','2022-08-31 00:00:00',3,'India','101','2022-12-26 16:53:09','2021-10-29 00:00:00',1,1,'0','0','0','','','',NULL,'andaman-best-seller',NULL,NULL,NULL,0),(146,27346,1,5293,1,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27346,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/andaman_fun_filled_1629872280.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"FABULOUS ANDAMANS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity,Sightseeing\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478116,\"Name\":\"The Luxor\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475860,\"Name\":\"J Hotel\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6691667\",\"Long\":\"92.74249999999999\",\"Address\":\"Aberdeen Bazaar, Near Clock Tower, Aberdeen Bazar, Aberdeen, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477716,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475440,\"Name\":\"The Luxor\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6755097\",\"Long\":\"92.7232317\",\"Address\":\"Haddo, Port Blair, Andaman and Nicobar Islands 744102, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":193674,\"Name\":\"J Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6543\",\"Long\":\"92.7307\",\"Address\":\"Aberdeen Bazaar, near Clock Tower \"},\"Images\":{\"Image\":[{\"ImagId\":4329569,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_12_t.jpg\"},{\"ImagId\":4329570,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_4_t.jpg\"},{\"ImagId\":4329571,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_14_t.jpg\"},{\"ImagId\":4329572,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_16_t.jpg\"},{\"ImagId\":4329573,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_26_t.jpg\"},{\"ImagId\":4329574,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_29_t.jpg\"},{\"ImagId\":4329575,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_20_t.jpg\"},{\"ImagId\":4329576,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_27_t.jpg\"},{\"ImagId\":4329577,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_19_t.jpg\"},{\"ImagId\":4329578,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_28_t.jpg\"},{\"ImagId\":4329579,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_15_t.jpg\"},{\"ImagId\":4329580,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_18_t.jpg\"},{\"ImagId\":4329581,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_21_t.jpg\"},{\"ImagId\":4329582,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_24_t.jpg\"}]},\"CityId\":32511,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at J Hotel places you in the heart of Port Blair, steps from Aberdeen Clock Tower and close to Rajiv Gandhi Water Sports Complex.  This hotel is within the region of Cellular Jail and Mahatma Gandhi National Marine Park.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 32 air-conditioned rooms featuring refrigerators and LCD televisions. Wired and wireless Internet access is complimentary, while MP3 docking stations and cable programming provide entertainment. Conveniences include phones, as well as desks and coffee\\/tea makers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take in the views from a terrace and make use of amenities such as complimentary wireless Internet access and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of J Hotel.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, dry cleaning\\/laundry services, and an elevator (lift). Planning an event in Port Blair? This hotel has facilities measuring 800 square feet (72 square meters), including a meeting room. A roundtrip airport shuttle is available for a surcharge.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6670000\\/6666000\\/6665996\\/6665996_12_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478817,\"Name\":\"radha krishna havelock\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484569,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0289344\",\"Long\":\"93.0016957\",\"Address\":\"No. 5, Govind Nagar Beach Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484578,\"Name\":\"APARUPA SANDS MARINA\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0357867\",\"Long\":\"92.99069469999999\",\"Address\":\"GOVIND NAGAR 2 HAVELOCK, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":473992,\"Name\":\"Overnight Journey\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"0\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478820,\"Name\":\"Coral Garden Beach Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":478926,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\"4.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8190638\",\"Long\":\"93.0420566\",\"Address\":\"Beach No-3 Ramnagar Beach Neil Island SH6 Andaman and Nicobar Islands\"},\"Images\":{\"Image\":[{\"ImagId\":4817936,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_01616841401.jpg\"},{\"ImagId\":4817937,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_01616841419.jpg\"}]},\"CityId\":34567,\"Brief\":\"&lt;p&gt;Aquays Hotels &amp; Resorts is beautiful place situated at Neil Island. The most popular beach here is just on walkable distance.&lt;br \\/&gt;\\r\\nThe resort has it&amp;#39;s own restaurant which serves Indian, Chinese, Continental and other delicious sea foods.&lt;br \\/&gt;\\r\\nWe have a great team who can cater to your needs and make your trip more memorable and exicting.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_478926\\/5293_71e316e422ad730cea8b329eb26e64311616841401.jpeg\",\"AccoAminitiesMask\":\"1111111010101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484579,\"Name\":\"Neha Palace hotel\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8396554\",\"Long\":\"93.02029580000001\",\"Address\":\"Lakshmanpur, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195810\",\"Title\":\"Arrival &acirc;&euro;&ldquo; Port Blair &acirc;&euro;&ldquo; Cellular Jail - Light &amp; Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nArrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. Later in the afternoon + Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India&amp;rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence.&lt;br \\/&gt;\\r\\nOvernight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195813\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195816\",\"Title\":\"Port Blair &acirc;&euro;&ldquo; Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;Havelock Island&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nToday after breakfast you will transfer to Jetty. Head to Havelock Island on board Cruise connecting the two islands! Havelock, about 54 kilometers northeast of Port Blair, the Island is a hidden jewel. Few Indians know of this stunning beach destination in their own backyard while heading for Phuket (in Thailand) across the waters of Andaman Sea. Arrive at Havelock Jetty, you are met and assisted by our representative. Board the waiting vehicles and drive to the hotel. overnight stay at Havelock.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484578,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195819\",\"Title\":\"Havelock- visit to Radha Nagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;Havelock Island&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nToday after breakfast proceed to the Radhanagar Beach, one of the most picturesque beaches on the Islands. The beach has also been ranked 07th among the beaches of Asia by the TIME magazine. Return to hotel \\/ resort. Stay Overnight in Havelock Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Did you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&amp;rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&amp;rsquo;s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":false,\"Id\":473992,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Deluxe\"},{\"IsIncluded\":true,\"Id\":484578,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195822\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195825\",\"Title\":\"Havelock &acirc;&euro;&ldquo; Neil Island  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Neil Island&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nMorning after breakfast exiting expedition for Neil Islands. On arrival meeting and assistance at Neil Island jetty thereafter leave by surface to Resort. proceed to Bharatpura beach and Laxmanpura beach natural bridge Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484579,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":478820,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":478926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195828\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195831\",\"Title\":\"Neil Island - Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nToday in the morning have breakfast and Leisure. Afternoon Board the vehicles and drive to Neil Island Jetty. From here sail to Port Blair on board Cruise. Upon Arrival check into the hotel. EVEINING free for shopping Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":193674,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195834\",\"Title\":\"Port Blair- North bay (Corel Island) &acirc;&euro;&ldquo; Ross island (Wed - Closed)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nToday after breakfast embark on a day long three island cruises. One of the most sought-after activities. It covers a panorama of seven harbors that include the North Bay and Ross island. It leaves a lasting impression. Visit Ross Island. Once the administrative headquarters of the British and capital of these Islands, the island is now under the Indian Navy. It stands now as a ruin of the bygone days with the old structures almost in debris. There is a small museum named Smritika, it holds photographs and the other antiques of the Britishers relevant to these islands. The island is famous for friendly flocks of Deer and lush green walking trails. North Bay, the water lovers may enjoy snorkeling or take a glass bottom boat ride (Optional on direct payment) in its shallow waters with a chance to see corals up close. Return to the hotel. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":193674,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195837\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nDrop to Airport \\/ Harbor for Return journey with a wonderful holiday memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"27346\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22990.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22224,\"priceDoubleOcc\":\"22990.00\",\"priceSingleOcc\":68970,\"priceExtraBed\":\"17242.50\",\"priceWithoutBed\":\"11495.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11495,\"CEB\":17242.5,\"COSTDO\":22990,\"COSTSO\":68970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20691,\"COSTTO\":20691}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27347\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27280.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26371,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":81840,\"priceExtraBed\":\"20460.00\",\"priceWithoutBed\":\"13640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13640,\"CEB\":20460,\"COSTDO\":27280,\"COSTSO\":81840,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24552,\"COSTTO\":24552}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27348\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29986,\"priceDoubleOcc\":\"31020.00\",\"priceSingleOcc\":93060,\"priceExtraBed\":\"23265.00\",\"priceWithoutBed\":\"15510.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15510,\"CEB\":23265,\"COSTDO\":31020,\"COSTSO\":93060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27918,\"COSTTO\":27918}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8294\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"195810\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[195810],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195813\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195813],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195816\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195816],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195819\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195819],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195822\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195822],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195825\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195825],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195828\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195828],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195831\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195831],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195834\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[195834],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195837\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[195837],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island','','32511,11658,34567',22990,31020,6,'146_1628680991_0.jpg,146_1628680991_1.jpg,146_1628680991_2.jpg,146_1628680991_3.jpg',NULL,'[{\"day\":1,\"images\":\"The Luxor hotel.jpg\"},{\"day\":2,\"images\":\"Radha krishna havlock.jpg\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2023-08-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-08-07 13:43:44','2023-08-07 00:00:00',1,1,'1','1','0','','','',NULL,'fabulous-andamans',NULL,NULL,NULL,0),(147,27349,1,5293,0,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27349,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/andamans-_chota_break_1629871805.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"SCENIC BEAUTY - ANDAMANS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477369,\"Name\":\"The Luxor\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475813,\"Name\":\"J Hotel\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6691667\",\"Long\":\"92.74249999999999\",\"Address\":\"Aberdeen Bazaar, Near Clock Tower, Aberdeen Bazar, Aberdeen, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477716,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":413850,\"Name\":\"Aparupa Sands Marina\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.037432\",\"Long\":\"92.98667\",\"Address\":\"Govind Nagar, Beach Number 2, Govind Nagar Beach, HAVELOCK, ANDAMAN NICOBAR, India, Pin-744101, 744101\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"Featuring front desk facility, Aparupa Sands Marina is a beach property, situated at a distance of 2 km from Blue Corals Dive.  This hotel in Havelock accommodates 32 spacious cottages. All rooms have a balcony. Some of the in-room amenities include television, in-room safe, wake-up calls, wardrobe, tea\\/coffee maker free packed water and an attached bathroom with hot and cold water facility. null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/mau\\/pye\\/lbt\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477371,\"Name\":\"Radhakrishna Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0352575\",\"Long\":\"92.9878353\",\"Address\":\"Govindnagar, Havelock Island, Andaman, 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484569,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0289344\",\"Long\":\"93.0016957\",\"Address\":\"No. 5, Govind Nagar Beach Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195840\",\"Title\":\"Arrival- Cellular Jail + Light &amp; Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nArrival at Port Blair in the afternoon and transfer to respective Hotel. After lunch visit the National Memorial-Cellular Jail, designed especially for solitary confinement it earned the Islands the dreaded name of Kala Pani.&lt;br \\/&gt;\\r\\nIn the evening witness the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Overnight at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477369,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195843\",\"Title\":\"Port Blair- Havelock- Visit to Radha Nagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;Havelock Island&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nAfter breakfast and as per ferry timing transfer to Jetty to take the onward ferry to Havelock Island. On arrival at Havelock Island, our representative will receive and escort you to check-in to the respective hotel \\/ resort. After check in, proceed to the Radha Nagar Beach, one of the most picturesque beaches on the Islands. The beach has also been ranked 07th among the beaches of Asia by the TIME magazine. Return to hotel \\/ resort. Overnight at Havelock Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nDid you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&amp;rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&amp;rsquo;s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477369,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":475813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195846\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195849\",\"Title\":\"Return to Port Blair from Havelock Island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nMorning at leisure. Later in the afternoon transfer to Havelock Jetty to take the return ferry to Port Blair as per ferry timing. Upon return from Havelock Island, transfer to Hotel. Overnight stay at respective Hotel \\/ Resort at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":413850,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195852\",\"Title\":\"Port Blair- Drop at airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Port Blair&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nDrop at Airport. Return home with memories of a wonderful short break.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"27349\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17490.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27350\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19690.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19034,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":59070,\"priceExtraBed\":\"14767.50\",\"priceWithoutBed\":\"9845.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9845,\"CEB\":14767.5,\"COSTDO\":19690,\"COSTSO\":59070,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17721,\"COSTTO\":17721}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27351\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-08\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"195840\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[195840],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195843\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195843],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195846\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195846],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195849\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195849],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195852\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195852],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island',NULL,'32511,11658',17490,21450,3,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:39:02','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'scenic-beauty-andamans',NULL,NULL,NULL,0),(148,27352,1,5293,0,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27352,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/andaman_super_saver_1629872458.jpg\",\"BookingValidUntill\":\"2022-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANDAMAN SUPER SAVER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2021-10-29\",\"To\":\"2022-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195855\",\"Title\":\"Arrival \\u2013 Port Blair \\u2013 Cellular Jail \\u2013 Light & Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nArrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. First half of the day is at leisure. Later in the afternoon visit Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India&rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195858\",\"Title\":\"Port Blair- Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast you will transfer to Jetty. Head to Havelock Island on board Cruise connecting the two islands! Havelock, about 54 kilometers northeast of Port Blair, the Island is a hidden jewel. Few Indians know of this stunning beach destination in their own backyard while heading for Phuket (in Thailand) across the waters of Andaman Sea. Havelock is a serene tropical island encompassing about 86 square kilometers. Its clear waters are rated among the best in the world for snorkeling and scuba diving. Close to 1000 different species of marine life inhabit the waters of the Andaman Islands. Scuba divers can see nudibranchs, sea slugs and snails, varieties of ghost pipe fish, jaw fish and a number of different crustaceans of all shapes and sizes. With its serene beaches, 40 meters visibility underwater, colorful coral reefs and &lsquo;far from the maddening crowd&rsquo; appeal, Havelock Island has emerged as a dream destination among discerning travelers. Arrive at Havelock Jetty, you are met and assisted by our representative. Board the waiting vehicles and drive to the hotel. Check in at the hotel. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195861\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195864\",\"Title\":\"Havelock \\u2013 Radha Nagar Beach (or Beach No. 7)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast, proceed for Radha Nagar Beach (or Beach No. 7) is the jewel in the crown of Havelock Island. Located on the western side of the island, it stands away from the cluster. The glorious white sand beach shot to global fame when Time magazine (in 2004) rated it as the finest in Asia. With lush tropical forest rising on a hill to one side, the draw of this white sand beach has steadily grown in the legion of avid beach buffs. The popularity of this beach has triggered cruises from across the Andaman Sea. Travelers cruise over a few days from Thailand to experience the magic of this beach. A wide beach that runs over a few kilometers, Radha Nagar is simply stunning. It lends itself to a variety of activities. Overnight at the Hotel.<br \\/>\\r\\nDid you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&rsquo;s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195867\",\"Title\":\"Havelock \\u2013 Port Blair Ross Island\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nAfter breakfast transfer to Havelock Jetty. From here sail to Port Blair on board Cruise. Upon Arrival check into the hotel. Overnight stay at the Hotel. After reached to port Blair embark on a day long three island cruises. One of the most sought-after activities. It covers a panorama of seven harbors that include the Ross Island. It leaves a lasting impression.<br \\/>\\r\\nVisit Ross Island. Once the administrative headquarters of the British and capital of these Islands, the island is now under the Indian Navy. It stands now as a ruin of the bygone days with the old structures almost in debris. There is a small museum named Smritika, it holds photographs and the other antiques of the Britishers relevant to these islands. The island is famous for friendly flocks of Deer and lush green walking trails.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195870\",\"Title\":\"Depart from Port Blair\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nDrop to Airport \\/ Harbor for Return journey with a wonderful holiday memories.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"27352\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16440.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15008,\"priceDoubleOcc\":\"16440.00\",\"priceSingleOcc\":32880,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15008,\"priceDoubleOcc\":\"16440.00\",\"priceSingleOcc\":32880,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15008,\"priceDoubleOcc\":\"16440.00\",\"priceSingleOcc\":32880,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15168,\"priceDoubleOcc\":\"16680.00\",\"priceSingleOcc\":33120,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":15168,\"priceDoubleOcc\":\"16680.00\",\"priceSingleOcc\":33120,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":16448,\"priceDoubleOcc\":\"18600.00\",\"priceSingleOcc\":35040,\"priceExtraBed\":\"10296.00\",\"priceWithoutBed\":\"10296.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13757,\"priceDoubleOcc\":\"15070.00\",\"priceSingleOcc\":30140,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15070.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13757,\"priceDoubleOcc\":\"15070.00\",\"priceSingleOcc\":30140,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15070.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13757,\"priceDoubleOcc\":\"15070.00\",\"priceSingleOcc\":30140,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15070.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13904,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":30360,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15290.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":13904,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":30360,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15290.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":15077,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":32120,\"priceExtraBed\":\"9438.00\",\"priceWithoutBed\":\"15070.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17050.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":23403,\"priceDoubleOcc\":\"23402.50\",\"priceSingleOcc\":46805,\"priceExtraBed\":\"23402.50\",\"priceWithoutBed\":\"23402.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27353\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20004.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":17824,\"priceDoubleOcc\":\"20004.00\",\"priceSingleOcc\":40008,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20004.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":17824,\"priceDoubleOcc\":\"20004.00\",\"priceSingleOcc\":40008,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20004.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":17824,\"priceDoubleOcc\":\"20004.00\",\"priceSingleOcc\":40008,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20004.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":17928,\"priceDoubleOcc\":\"20160.00\",\"priceSingleOcc\":40164,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18008,\"priceDoubleOcc\":\"20280.00\",\"priceSingleOcc\":40284,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19288,\"priceDoubleOcc\":\"22200.00\",\"priceSingleOcc\":42204,\"priceExtraBed\":\"11400.00\",\"priceWithoutBed\":\"20004.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16339,\"priceDoubleOcc\":\"18337.00\",\"priceSingleOcc\":36674,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18337.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16339,\"priceDoubleOcc\":\"18337.00\",\"priceSingleOcc\":36674,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18337.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16434,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":36817,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16434,\"priceDoubleOcc\":\"18480.00\",\"priceSingleOcc\":36817,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16507,\"priceDoubleOcc\":\"18590.00\",\"priceSingleOcc\":36927,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18590.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":17681,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":38687,\"priceExtraBed\":\"10450.00\",\"priceWithoutBed\":\"10450.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20350.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":32998,\"priceDoubleOcc\":\"32997.80\",\"priceSingleOcc\":65995.6,\"priceExtraBed\":\"32997.80\",\"priceWithoutBed\":\"32997.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32997.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27354\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22680.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19872,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":45360,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19872,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":45360,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19872,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":45360,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19951,\"priceDoubleOcc\":\"22798.80\",\"priceSingleOcc\":45478.8,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22798.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":19951,\"priceDoubleOcc\":\"22798.80\",\"priceSingleOcc\":45478.8,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22798.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-11\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21312,\"priceDoubleOcc\":\"24840.00\",\"priceSingleOcc\":47520,\"priceExtraBed\":\"11760.00\",\"priceWithoutBed\":\"22680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18216,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20790.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18216,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20790.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18216,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20790.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18289,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41688.9,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18289,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":41688.9,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19536,\"priceDoubleOcc\":\"22770.00\",\"priceSingleOcc\":43560,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"10780.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22770.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":43313,\"priceDoubleOcc\":\"43312.50\",\"priceSingleOcc\":86625,\"priceExtraBed\":\"43312.50\",\"priceWithoutBed\":\"43312.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43312.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8289\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"195855\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[195855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195858\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195861\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195861],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195864\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195864],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195867\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195867],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195870\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195870],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island','','32511,11658',15070,43313,4,'148_1628683633_0.jpg,148_1628683633_1.jpg,148_1628683633_2.jpg,148_1628683633_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2021-10-29 00:00:00','2022-08-31 00:00:00','2022-08-31 00:00:00',3,'India','101','2022-12-26 16:56:29','2021-10-29 00:00:00',1,1,'0','0','0','','','',NULL,'andaman-super-saver',NULL,NULL,NULL,0),(149,27355,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27355,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENCE OF ANDAMANS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,All Meals,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2021-10-29\",\"To\":\"2022-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20520,\"Title\":\"Visit Radha Nagar Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20520,\"Title\":\"Visit Radha Nagar Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20520,\"Title\":\"Visit Radha Nagar Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195873\",\"Title\":\"Port Blair- Cellular Jail - Light & Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nArrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. Later in the afternoon visit Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India&rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195876\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195879\",\"Title\":\"Port Blair- Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast you will transfer to Jetty. Head to Havelock Island on board Cruise connecting the two islands! Havelock, about 54 kilometers northeast of Port Blair, the Island is a hidden jewel. Few Indians know of this stunning beach destination in their own backyard while heading for Phuket (in Thailand) across the waters of Andaman Sea. Havelock is a serene tropical island encompassing about 86 square kilometers. Its clear waters are rated among the best in the world for snorkeling and scuba diving. Close to 1000 different species of marine life inhabit the waters of the Andaman Islands. Scuba divers can see nudi branchs, sea slugs and snails, varieties of ghost pipe fish, jaw fish and a number of different crustaceans of all shapes and sizes. With its serene beaches, 40 meters visibility underwater, colorful coral reefs and &lsquo;far from the maddening crowd&rsquo; appeal, Havelock Island has emerged as a dream destination among discerning travelers. Arrive at Havelock Jetty, you are met and assisted by our representative. Board the waiting vehicles and drive to the hotel. Check in at the hotel. Overnight at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195882\",\"Title\":\"Havelock \\u2013 Visit Radha Nagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"<p><strong>Havelock Island<\\/strong><br \\/>\\r\\nToday after breakfast, proceed for Radha Nagar Beach (or Beach No. 7) is the jewel in the crown of Havelock Island. Located on the western side of the island, it stands away from the cluster. The glorious white sand beach shot to global fame when Time magazine (in 2004) rated it as the finest in Asia. With lush tropical forest rising on a hill to one side, the draw of this white sand beach has steadily grown in the legion of avid beach buffs. The popularity of this beach has triggered cruises from across the Andaman Sea. Travelers cruise over a few days from Thailand to experience the magic of this beach. A wide beach that runs over a few kilometers, Radha Nagar is simply stunning. It lends itself to a variety of activities. Overnight at the Hotel.<br \\/>\\r\\nDid you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&rsquo;s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20520,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195885\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195888\",\"Title\":\"Havelock - Neil Island - Visit Laxmanpur and Bharatpura Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"<p><strong>Neil Island<\\/strong><br \\/>\\r\\nMorning after breakfast exiting expedition for Neil Islands, on arrival meeting and assistance at Neil Island jetty thereafter drive towards your Resort, Check in and experience your resort.<\\/p>\\r\\n\\r\\n<p><br \\/>\\r\\nAfter having your lunch at your resort, proceed to Bharatpura beach to try your hand in adventure activities and Laxmanpur beach for sunset experience, Overnight stay at hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195891\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195894\",\"Title\":\"Neil Island - Port Blair\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nToday in the morning have breakfast and Leisure. Afternoon Board the vehicles and drive to Neil Island Jetty. From here sail to Port Blair on board Cruise. Upon Arrival check into the hotel. Evening free for shopping, Overnight stay at the Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195897\",\"Title\":\"Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p><strong>Port Blair<\\/strong><br \\/>\\r\\nDrop to Airport \\/ Harbor for Return journey with wonderful holiday memories<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"27355\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20398.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18439,\"priceDoubleOcc\":\"20398.80\",\"priceSingleOcc\":40797.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20398.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18439,\"priceDoubleOcc\":\"20398.80\",\"priceSingleOcc\":40797.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20398.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18439,\"priceDoubleOcc\":\"20398.80\",\"priceSingleOcc\":40797.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20398.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18439,\"priceDoubleOcc\":\"20398.80\",\"priceSingleOcc\":40797.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20398.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":18439,\"priceDoubleOcc\":\"20398.80\",\"priceSingleOcc\":40797.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20398.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":20039,\"priceDoubleOcc\":\"22798.80\",\"priceSingleOcc\":43197.6,\"priceExtraBed\":\"12276.00\",\"priceWithoutBed\":\"12276.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22798.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"18698.90\",\"priceSingleOcc\":37397.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18698.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"18698.90\",\"priceSingleOcc\":37397.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18698.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"18698.90\",\"priceSingleOcc\":37397.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18698.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"18698.90\",\"priceSingleOcc\":37397.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18698.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"18698.90\",\"priceSingleOcc\":37397.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18698.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":18369,\"priceDoubleOcc\":\"20898.90\",\"priceSingleOcc\":39597.8,\"priceExtraBed\":\"11253.00\",\"priceWithoutBed\":\"18698.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20898.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":27957,\"priceDoubleOcc\":\"27956.50\",\"priceSingleOcc\":55913,\"priceExtraBed\":\"27956.50\",\"priceWithoutBed\":\"27956.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27956.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27356\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23998.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21367,\"priceDoubleOcc\":\"23998.80\",\"priceSingleOcc\":47997.6,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23998.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21367,\"priceDoubleOcc\":\"23998.80\",\"priceSingleOcc\":47997.6,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23998.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21367,\"priceDoubleOcc\":\"23998.80\",\"priceSingleOcc\":47997.6,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23998.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21367,\"priceDoubleOcc\":\"23998.80\",\"priceSingleOcc\":47997.6,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23998.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":21688,\"priceDoubleOcc\":\"24480.00\",\"priceSingleOcc\":48478.8,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24480.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":23048,\"priceDoubleOcc\":\"26520.00\",\"priceSingleOcc\":50518.8,\"priceExtraBed\":\"13728.00\",\"priceWithoutBed\":\"23998.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19587,\"priceDoubleOcc\":\"21998.90\",\"priceSingleOcc\":43997.8,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21998.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19587,\"priceDoubleOcc\":\"21998.90\",\"priceSingleOcc\":43997.8,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21998.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19587,\"priceDoubleOcc\":\"21998.90\",\"priceSingleOcc\":43997.8,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21998.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19587,\"priceDoubleOcc\":\"21998.90\",\"priceSingleOcc\":43997.8,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21998.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":19881,\"priceDoubleOcc\":\"22440.00\",\"priceSingleOcc\":44438.9,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22440.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":21127,\"priceDoubleOcc\":\"24310.00\",\"priceSingleOcc\":46308.9,\"priceExtraBed\":\"12584.00\",\"priceWithoutBed\":\"21998.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24310.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":42488,\"priceDoubleOcc\":\"42487.50\",\"priceSingleOcc\":84975,\"priceExtraBed\":\"42487.50\",\"priceWithoutBed\":\"42487.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42487.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27960.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":45516,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":45516,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":45516,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24332,\"priceDoubleOcc\":\"27720.00\",\"priceSingleOcc\":45276,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":24572,\"priceDoubleOcc\":\"28080.00\",\"priceSingleOcc\":45636,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-12\",\"To\":\"2021-08-31\",\"Currency\":1,\"priceTripleOcc\":26012,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":47796,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"27960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":55920,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":55920,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":55920,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24492,\"priceDoubleOcc\":\"27960.00\",\"priceSingleOcc\":55920,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27960.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":24572,\"priceDoubleOcc\":\"28080.00\",\"priceSingleOcc\":56040,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-02\",\"To\":\"2021-09-30\",\"Currency\":1,\"priceTripleOcc\":26012,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":58200,\"priceExtraBed\":\"14520.00\",\"priceWithoutBed\":\"14520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2021-12-14\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-12-21\",\"To\":\"2022-08-31\",\"Currency\":1,\"priceTripleOcc\":53623,\"priceDoubleOcc\":\"53622.80\",\"priceSingleOcc\":107245.6,\"priceExtraBed\":\"53622.80\",\"priceWithoutBed\":\"53622.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"53622.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8286\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"195873\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[195873],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195876\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195876],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195879\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[195879],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195882\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[195882],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195885\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195888\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[195888],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195891\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195894\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[195894],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"195897\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[195897],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island','','32511,11658,34567',18699,53623,5,'149_1628682247_0.jpg,149_1628682247_1.jpg,149_1628682247_2.jpg,149_1628682247_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-10-29 00:00:00','2022-08-31 00:00:00','2022-08-31 00:00:00',3,'India','101','2022-12-26 16:58:07','2021-10-29 00:00:00',1,1,'0','0','0','','','',NULL,'essence-of-andamans',NULL,NULL,NULL,0),(150,27376,1,5293,0,0,0,'Family,Weekend,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27376,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;f&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mukteshwar\",\"DestinationPlacesSysId\":34550,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"THE ALPINE CHALET RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6685\",\"SupplierName\":\"The Alpine Chalet Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Family,Weekend,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34550,\"Title\":\"Mukteshwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483136,\"Name\":\"JuSTa Mukteshwar Retreat and Spa\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Village Saliyakot, Tehsil Dhari, Mukteshwar, District Nainital, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818662,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483136\\/5293_01624701404.jpg\"}]},\"CityId\":34550,\"Brief\":\"&lt;p&gt;All rooms are fitted with air conditioning, a flat-screen TV with satellite channels, a fridge, a kettle, a shower, a hairdryer and a desk. At the resort, the rooms are fitted with a private bathroom with free toiletries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A continental breakfast is available each morning at juSTa Mukteshwar Retreat &amp; Spa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At the accommodation guests are welcome to take advantage of a hot tub. You can play billiards at juSTa Mukteshwar Retreat &amp; Spa, and the area is popular for cycling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The nearest airport is Pantnagar, 47 km from the resort, and the property offers a paid airport shuttle service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We speak your language!&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483136\\/5293_0c2209fec28084ba6d5c4fafd708e7841624701404.png\",\"AccoAminitiesMask\":\"1111111010101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6685,\"SupplierName\":\"The Alpine Chalet Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"OAK CHALET \",\"MealTypeName\":\"HB\"},{\"RefHotelId\":455027,\"Name\":\"\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":34550,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6685,\"SupplierName\":\"The Alpine Chalet Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"BALSA CHALET\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"195966\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"OAK CHALET\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"BALSA CHALET\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195968\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"OAK CHALET\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"BALSA CHALET\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"195970\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"OAK CHALET\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"BALSA CHALET\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accomodation in Well appointed Room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals According to Plan booked.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea \\/ Coffee Maker in the Room with Replenishment Once in a Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily 1 Bottle of Mineral Water Complimentary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8284\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"195966\":[{\"Sequence\":[0],\"TPInvnSysId\":[195966],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"195968\":[{\"Sequence\":[0],\"TPInvnSysId\":[195968],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"195970\":[{\"Sequence\":[0],\"TPInvnSysId\":[195970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mukteshwar','Mukteshwar,Uttarakhand,Indian Subcontinent,North India,India','','34550',0,0,2,'150_1630329007_0.jpg,150_1630329007_1.jpg,150_1630329007_2.jpg,150_1630329007_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 13:59:19','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'the-alpine-chalet-resort',NULL,NULL,NULL,0),(151,27403,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":27403,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-11-10\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mukteshwar\",\"DestinationPlacesSysId\":34550,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DYO -THE ORGANIC VILLAGE RESORT - MUKTESHWAR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6686\",\"SupplierName\":\"Dyo -The Organic Village Resort - Mukteshwar \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-11-10\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34550,\"Title\":\"Mukteshwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484622,\"Name\":\"Dyo - The Organic Village Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.4444206\",\"Long\":\"79.650269\",\"Address\":\"Amravati Estate, Bhatelia-Mukteshwar Rd, Mukteshwar, Uttarakhand 263132, India\"},\"Images\":[],\"CityId\":34550,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6686,\"SupplierName\":\"Dyo -The Organic Village Resort - Mukteshwar \",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"196123\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"196125\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"196127\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":484622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Luxury Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&amp;quot;&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8282\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"196123\":[{\"Sequence\":[0],\"TPInvnSysId\":[196123],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"196125\":[{\"Sequence\":[0],\"TPInvnSysId\":[196125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"196127\":[{\"Sequence\":[0],\"TPInvnSysId\":[196127],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mukteshwar','Mukteshwar,Uttarakhand,Indian Subcontinent,North India,India','','34550',0,0,2,'151_1630324332_0.jpg,151_1630324332_1.jpg,151_1630324332_2.jpg,151_1630324332_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-11-10 00:00:00','2021-11-10 00:00:00',3,'India','101','2023-08-25 13:59:08','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'dyo-the-organic-village-resort-mukteshwar',NULL,NULL,NULL,0),(152,27417,1,5293,0,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27417,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-12-20\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mukteshwar\",\"DestinationPlacesSysId\":34550,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"OJASWI HIMALAYAN RESORT MUKTESHWARA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6687\",\"SupplierName\":\"Ojaswi Himalayan Resotelort Mukteshwar \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-20\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34550,\"Title\":\"Mukteshwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484628,\"Name\":\"Ojaswi Himalayan Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.4906974\",\"Long\":\"79.6304112\",\"Address\":\"Sitla, Gram,Chatola, Shitla Road, Mukteshwar, Uttarakhand 263138, India\"},\"Images\":[],\"CityId\":34550,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6687,\"SupplierName\":\"Ojaswi Himalayan Resotelort Mukteshwar \",\"priceaditionals\":null,\"RoomTypeName\":\"Jungle Retreat\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"196217\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Jungle Retreat\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Terrace Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"196219\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Jungle Retreat\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Terrace Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"196221\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34550,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Jungle Retreat\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Terrace Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8280\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"196217\":[{\"Sequence\":[0],\"TPInvnSysId\":[196217],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"196219\":[{\"Sequence\":[0],\"TPInvnSysId\":[196219],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"196221\":[{\"Sequence\":[0],\"TPInvnSysId\":[196221],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mukteshwar','Mukteshwar,Uttarakhand,Indian Subcontinent,North India,India','','34550',0,0,2,'152_1630324797_0.jpg,152_1630324797_1.jpg,152_1630324797_2.jpg,152_1630324797_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-20 00:00:00','2021-12-20 00:00:00',3,'India','101','2023-08-25 13:58:49','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'ojaswi-himalayan-resort-mukteshwara',NULL,NULL,NULL,0),(153,27679,1,5293,0,0,0,'Family,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27679,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_harshikhar_-_bhimtal_1629371444.jpg\",\"BookingValidUntill\":\"2021-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bhimtal\",\"DestinationPlacesSysId\":3138,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL HARSHIKHAR - BHIMTAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6720\",\"SupplierName\":\"Hotel Harshikhar - Bhimtal\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,All Meals\",\"PackageType\":\"Family,Hill Station,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":3138,\"Title\":\"Bhimtal\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484955,\"Name\":\"Hotel Harshikhar\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.339652\",\"Long\":\"79.557966\",\"Address\":\"Lake, Bhowali-Bhimtal-Haldwani Rd, near Bhimtal, Bhimtal, Uttarakhand 263136, India\"},\"Images\":[],\"CityId\":3138,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6720,\"SupplierName\":\"Hotel Harshikhar - Bhimtal\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198013\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3138,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198014\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3138,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198015\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3138,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8279\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198013\":[{\"Sequence\":[0],\"TPInvnSysId\":[198013],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198014\":[{\"Sequence\":[0],\"TPInvnSysId\":[198014],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198015\":[{\"Sequence\":[0],\"TPInvnSysId\":[198015],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bhimtal','Bhimtal,Uttarakhand,Indian Subcontinent,North India,India','','3138',0,0,2,'153_1630325581_0.jpg,153_1630325581_1.jpg,153_1630325581_2.jpg,153_1630325581_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-31 00:00:00','2021-12-31 00:00:00',3,'India','101','2023-08-25 13:58:33','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-harshikhar-bhimtal',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (154,27688,1,5293,0,0,0,'Honeymoon,Hill Station,Romantic,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27688,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/karma_vilas_by_howard_1629373061.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mussoorie\",\"DestinationPlacesSysId\":18776,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"KARMA VILAS BY HOWARD\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6617\",\"SupplierName\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Honeymoon,Hill Station,Romantic,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18776,\"Title\":\"Mussoorie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484074,\"Name\":\" Karma Vilas By Howard\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Claire Villa Estate Big Bend Picture Palace Road, Balahisar, Mussoorie, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4819008,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484074\\/5293_01627396368.jpg\"}]},\"CityId\":18776,\"Brief\":\"&lt;p&gt;Located in Mussoorie, 2.2 km from Mussoorie Mall Road, Karma Vilas By Howard provides accommodation with a restaurant, free private parking, a garden and a terrace. All rooms feature a TV with satellite channels and a private bathroom. The accommodation offers a 24-hour front desk, airport transfers, room service and free WiFi throughout the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At the hotel each room is equipped with a wardrobe and a shared bathroom.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Continental and buffet breakfast options are available daily at Karma Vilas By Howard.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests at the accommodation will be able to enjoy activities in and around Mussoorie, like cycling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Camel&amp;#39;s Back Road is 2.5 km from Karma Vilas By Howard, while Kempty Falls is 17 km away. The nearest airport is Dehradun Airport, 30 km from the hotel.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_484074\\/5293_e74e09d2cf026695d9058d505f12105b1627396368.png\",\"AccoAminitiesMask\":\"111001000100110100001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":6617,\"SupplierName\":\"BHIKAMPUR LODGE BY HOWARD \\u00e2\\u20ac\\u201c NAINITAL\",\"priceaditionals\":null,\"RoomTypeName\":\"Classic Room \",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198047\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198049\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198051\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Bonfire on Common Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Complimentary Room up-gradation to next category \\/ Subject to Availability&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Barbeque on Request&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;GST included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Check-in and Check-out time 12 Noon&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8277\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198047\":[{\"Sequence\":[0],\"TPInvnSysId\":[198047],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198049\":[{\"Sequence\":[0],\"TPInvnSysId\":[198049],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198051\":[{\"Sequence\":[0],\"TPInvnSysId\":[198051],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mussoorie','Mussoorie,Uttarakhand,Indian Subcontinent,North India,India','','18776',0,0,2,'154_1630326765_0.jpg,154_1630326765_1.jpg,154_1630326765_2.jpg,154_1630326765_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:58:08','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'karma-vilas-by-howard',NULL,NULL,NULL,0),(155,27801,1,5293,0,0,0,'Family,Hill Station,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27801,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/dynasty_resort_1629700774.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DYNASTY RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6634\",\"SupplierName\":\"Dynasty Resorts\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Hill Station,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":483795,\"Name\":\"Dynasty Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Nainital Road, KalaDungi, Dist Nainital, Khurpatal, Uttarakhand\"},\"Images\":{\"Image\":[{\"ImagId\":4818895,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483795\\/5293_01626602237.jpg\"}]},\"CityId\":18892,\"Brief\":\"&lt;p&gt;&lt;strong&gt;Dynasty Resort, Khurpatal 10 Km from Nainital&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set in a valley overlooking Khurpatal Lake, this airy hotel in a European-style villa is 10 km from both Nainital Lake and Naina Devi Temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegant, fan-cooled rooms feature sitting areas, flat-screen TVs and kitchenettes, plus tea and coffeemaking facilities. Upgrades add sofas and scenic views, while suites add living rooms. Some have HDTVs. Room service is available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast and parking are included. There&amp;#39;s also a restaurant, an exercise room and a game room with a pool table. Other amenities include a play area and a spa.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_483795\\/5293_1e1e4fd3d13d6ed01707a2f7be077ffe1626602237.png\",\"AccoAminitiesMask\":\"111010000000110100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6634,\"SupplierName\":\"Dynasty Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198764\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198765\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198766\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483795,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8271\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198764\":[{\"Sequence\":[0],\"TPInvnSysId\":[198764],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198765\":[{\"Sequence\":[0],\"TPInvnSysId\":[198765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198766\":[{\"Sequence\":[0],\"TPInvnSysId\":[198766],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India',NULL,'18892',0,0,2,NULL,NULL,NULL,2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:57:11','2023-08-25 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'dynasty-resort',NULL,NULL,NULL,0),(156,27805,1,5293,0,0,0,'Family,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27805,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/cygnett_resort_mountain_breeze_1629702948.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Nainital\",\"DestinationPlacesSysId\":18892,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\" CYGNETT RESORT MOUNTAIN BREEZE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6580\",\"SupplierName\":\"Cygnett Resort Mountain Breeze\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Family,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476918,\"Name\":\"Cygnett Resort Mountain Breeze Nainital - Best Resort in Nainital\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.33958639999999\",\"Long\":\"79.48205659999999\",\"Address\":\"House no.118, Jeolikote, Uttarakhand 263127, India\"},\"Images\":[],\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6580,\"SupplierName\":\"Cygnett Resort Mountain Breeze\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198779\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476918,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198780\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476918,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198781\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476918,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation for 02Night\\/3Days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast ,Lunch or Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookies on day of arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Packaged Drinking water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Compleimentry pick up &amp;amp; Drop from Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fun Activities for Kids&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8274\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198779\":[{\"Sequence\":[0],\"TPInvnSysId\":[198779],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198780\":[{\"Sequence\":[0],\"TPInvnSysId\":[198780],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198781\":[{\"Sequence\":[0],\"TPInvnSysId\":[198781],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Nainital','Nainital,Uttarakhand,Indian Subcontinent,North India,India','','18892',0,0,2,'156_1633603915_0.jpg,156_1633603915_1.jpg,156_1633603915_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:56:43','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'cygnett-resort-mountain-breeze',NULL,NULL,NULL,0),(157,27815,1,5293,0,0,0,'Family,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27815,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ganga_heritage_by_howard_1629705531.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Haridwar\",\"DestinationPlacesSysId\":11530,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"GANGA HERITAGE BY HOWARD\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6725\",\"SupplierName\":\"Karma Vilas by Howard-\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485144,\"Name\":\"Ganga Heritage By Howard\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9597359\",\"Long\":\"78.17172889999999\",\"Address\":\"near Har ki Pauri, Har Ki Pauri, Bhimgoda, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6725,\"SupplierName\":\"Karma Vilas by Howard-\",\"priceaditionals\":null,\"RoomTypeName\":\"Classic \\u00e2\\u20ac\\u201c Hill Facing\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485145,\"Name\":\"Ganga Heritage By Howard\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9597359\",\"Long\":\"78.17172889999999\",\"Address\":\"near Har ki Pauri, Har Ki Pauri, Bhimgoda, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6725,\"SupplierName\":\"Karma Vilas by Howard-\",\"priceaditionals\":null,\"RoomTypeName\":\"Signature\\u00e2\\u20ac\\u201cGanga Facing\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198830\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485144,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic \\u00e2\\u20ac\\u201c Hill Facing\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485145,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature\\u00e2\\u20ac\\u201cGanga Facing\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198832\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485144,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic \\u00e2\\u20ac\\u201c Hill Facing\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485145,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature\\u00e2\\u20ac\\u201cGanga Facing\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198834\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485144,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Classic \\u00e2\\u20ac\\u201c Hill Facing\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485145,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Signature\\u00e2\\u20ac\\u201cGanga Facing\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Room up-gradation to next category \\/ Subject to Availability&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8269\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198830\":[{\"Sequence\":[0],\"TPInvnSysId\":[198830],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198832\":[{\"Sequence\":[0],\"TPInvnSysId\":[198832],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198834\":[{\"Sequence\":[0],\"TPInvnSysId\":[198834],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Haridwar','Haridwar,Uttarakhand,Indian Subcontinent,North India,India','','11530',0,0,2,'157_1630327809_0.jpg,157_1630327809_1.jpg,157_1630327809_2.jpg,157_1630327809_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:56:15','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'ganga-heritage-by-howard',NULL,NULL,NULL,0),(159,27826,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27826,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/coco_bodu_hithi_-_split_stay_1629895932.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Bodu Hithi Island, in North Mal&amp;eacute; Atoll, is our beautiful Maldivian resort. The rhythm of life here is serene. The essential tropical mood stimulates and refreshes the senses. And the mystery of the House Reef meets the open elegance of pristine palm-fringed beaches. That the Mal&amp;eacute; International Airport is only 40 minutes away feels unreal.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Coco Bodu Hithi Resort in the Maldives reflects the Island&amp;rsquo;s character in its every dimension. Our Maldives resort is your chic retreat. Reconnect with yourself, your loved ones and the wonder of the natural world. Remind yourself what time out and travel should feel like. Breathe the clean, sea air. Meet the Hawksbill turtles. Witness the peaceful majesty of the native Nurse sharks. Explore the exotic colours of the reef&amp;rsquo;s inhabitants. Swim with Manta rays. Take a sunset cruise across calm waters. Sink your toes into the white sand and ease yourself into island life and its relaxing, dreamy pace. All of this is yours, at the Coco Bodu Hithi Maldives Resort.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"COCO BODU HITHI - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Flight,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":392168,\"Name\":\"Coco Bodu Hithi\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"K. Boduhithi, Maldives Islands, Maldives, , , , \"},\"Images\":[],\"CityId\":16505,\"Brief\":\"Located in North Male Atoll, Coco Bodu Hithi is a perfect starting point from which to explore Maldives Islands. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. Free Wi-Fi in all rooms, 24-hour front desk, express check-in\\/check-out, luggage storage, Wi-Fi in public areas are there for guest&#039;s enjoyment. Television LCD\\/plasma screen, internet access &acirc;&euro;&ldquo; wireless, private pool, internet access &acirc;&euro;&ldquo; wireless (complimentary), non smoking rooms can be found in selected guestrooms. The hotel&#039;s peaceful atmosphere extends to its recreational facilities which include private beach, fitness center, sauna, outdoor pool, indoor pool. For reliable service and professional staff, Coco Bodu Hithi caters to your needs.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEgkGZK2iagaFjGxYML67342J7Ha3JCjPVQVHgFpw9hgUVEe23JcA3qAuglDRuZad3RtlaqG8VF4tWmk42PtxvTJVge4gjRlF+hi+q1QWSeNHg==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198933\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 ISLAND VILLA WITH POOL&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As you relax in your garden, pool or on your deck, the rustling of the balmy ocean breeze in the palms overhead is a gentle island song. Inside, a bathtub for two, a king size bed, and a sunken living area all offer elegant character and unconditional comfort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;STAY 2 WATER VILLA WITH POOL&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At the foot of the bed, delicate drapes and sliding doors lead to a decked terrace. On this sleek platform over the water, a day bed awaits under the shade of the authentic Maldivian thatched roof. A dining table and chairs invite alfresco dining, and a private infinity pool gives you a stylish way to cool down.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198934\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198935\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198936\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198937\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS ISLAND VILLA WITH POOL   02 NIGHTS WATER VILLA WITH POOL\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27826\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"146300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141423,\"priceDoubleOcc\":\"146300.00\",\"priceSingleOcc\":409640,\"priceExtraBed\":\"109725.00\",\"priceWithoutBed\":\"73150.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":73150,\"CEB\":109725,\"COSTDO\":146300,\"COSTSO\":409640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":131670,\"COSTTO\":131670}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Island&amp;nbsp;Villa with Pool + 2 Nights Stay in Water Villa with Pool on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Honeymooners will receive a refreshing welcome drink on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The Couple will provided a Tropical Fruit Platter , as well as a Bed Decoration.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The couple is also entitled to a Romantic 03 coarse Candle Lit Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% discount on all Spa Treatment and Coco Gift.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20 minutes free try out photography session with 2 printed picture and 2 soft copies.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"198933\":[{\"Sequence\":[0],\"TPInvnSysId\":[198933],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198934\":[{\"Sequence\":[0],\"TPInvnSysId\":[198934],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198935\":[{\"Sequence\":[0],\"TPInvnSysId\":[198935],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198936\":[{\"Sequence\":[0],\"TPInvnSysId\":[198936],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198937\":[{\"Sequence\":[0],\"TPInvnSysId\":[198937],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male','','16505',146300,146300,4,'159_1629796928_0.jpg,159_1629796928_1.jpg,159_1629796928_2.jpg,159_1629796928_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-07-29 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:33:33','2023-07-29 00:00:00',1,1,'0','0','0','','','',NULL,'coco-bodu-hithi-split-stay',NULL,NULL,NULL,0),(160,27860,1,5293,0,0,0,'Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":27860,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/amara_grbaga_goa_1629798426.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Redefine Your Vacation at one of the Hotels Near Baga Beach&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy your memorable vacation by the Baga Beach at Amara Grand Baga, Goa. We depict the true essence of Goan vibrant culture and vigour. With an unparalleled location, just a few steps from the most popular beach in North Goa, we offer the perfect choice for our guests to spend their memorable holiday. Enjoy unmatched hospitality and impeccable service at one of the best hotels near Baga Beach.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"I Need Trip\",\"Name\":\"AMARA GRAND BAGA, GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6785\",\"SupplierName\":\"Amara Grand Baga,\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner,Welcome Drink,Airport Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Beach,Family\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485216,\"Name\":\"Amara Grand Baga\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5568199\",\"Long\":\"73.7597991\",\"Address\":\"Survey No 233 E &amp; D, Calangute - Baga Rd, Baga, Goa 403516, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6785,\"SupplierName\":\"Amara Grand Baga,\",\"priceaditionals\":null,\"RoomTypeName\":\"Amara Premium\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"199180\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485216,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199181\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485216,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199182\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485216,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199183\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485216,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27860\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"4950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4785,\"priceDoubleOcc\":\"4950.00\",\"priceSingleOcc\":14850,\"priceExtraBed\":\"3712.50\",\"priceWithoutBed\":\"2475.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2475,\"CEB\":3712.5,\"COSTDO\":4950,\"COSTSO\":14850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4455,\"COSTTO\":4455}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#212121&quot;&gt;4th Night Complimentary Offer - Book for 3 Nights and get 4th Night Free on room only basis, Compulsory Meal Supplement applicable For CP - Rs 1500 Per Couple, MAP - Rs 2,000 Per Couple&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;A Mocktail on Arrival&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Airport Transfers by Sanitized Private Air Conditioned Vehicle&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Accommodation in Well appointed Air-Conditioned room with Private Balcony&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Buffet\\/Fixed Menu meals as per plan at our Poolside Restro Bar Casa Medici&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;One Full Day South Goa Sightseeing by AC Coach on Sic basis ( Includes : Dolphin Spotting, Miramar Beach, Donapaula Beach, Old Goa Church, Mangueshi Temple, Balaji Temple, St. Augustin Tower, Boat Cruise Point ). If Sightseeing is not operational due to state guidelines, than Rs 500 Meal Credit voucher will be given, No Cash refund.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Two bottles of mineral water everyday&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Complimentary Use of swimming pool (Proper swimming costumes compulsory, To be operational as per State govt guidelines)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Happy Hours with 1+1 Offer between 12pm-4pm everyday at Casa Medici Bar&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Exclusive 15% discount at our Inhouse Spa &amp;ldquo;Casa De kaya&amp;rdquo; (Spa, Steam and Sauna Packages)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Exclusive 10% discount on Big Daddy Casino Entry fee*&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;All rooms are equipped with Mini bar (Chargeable) &amp;amp; Safe Locker&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Complimentary use of Tea\\/Coffee maker.(replenished once daily).&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Free Wi-Fi to all our in-house guests&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8329\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"199180\":[{\"Sequence\":[0],\"TPInvnSysId\":[199180],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199181\":[{\"Sequence\":[0],\"TPInvnSysId\":[199181],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199182\":[{\"Sequence\":[0],\"TPInvnSysId\":[199182],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199183\":[{\"Sequence\":[0],\"TPInvnSysId\":[199183],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India','','10576',4950,4950,3,'160_1630319575_0.jpg,160_1630319575_1.jpg,160_1630319575_2.jpg,160_1630319575_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-08-25 15:32:03','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'amara-grand-baga-goa',NULL,NULL,NULL,0),(161,27862,1,5293,0,0,0,'Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":27862,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/amara_grinn_calangute_goa_1629800133.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Amara Grand Inn Calangute, Goa, offers the perfect location for an intimate relaxed getaway. Located at the heart of Goa, our hotel near Calangute beach offers&amp;nbsp;Premium Rooms, luxury&amp;nbsp;facilities&amp;nbsp;such as a swimming pool and exciting activities like a boat cruise on Mandovi river. Enjoy the enduring lure of Goa with your stay at our Goa beach resort.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goathland\",\"SourcePlaceSysId\":10577,\"AgencyName\":\"I Need Trip\",\"Name\":\"AMARA GRAND INN CALANGUTE GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6785\",\"SupplierName\":\"Amara Grand Baga,\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Beach,Family\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485220,\"Name\":\"Amara Grand Inn Calangute\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5370589\",\"Long\":\"73.7679441\",\"Address\":\"Near St Alex Church Naika Vaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6785,\"SupplierName\":\"Amara Grand Baga,\",\"priceaditionals\":null,\"RoomTypeName\":\"Amara Premium\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":485221,\"Name\":\"Amara Grand Inn Calangute\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5370589\",\"Long\":\"73.7679441\",\"Address\":\"Near St Alex Church Naika Vaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6785,\"SupplierName\":\"Amara Grand Baga,\",\"priceaditionals\":null,\"RoomTypeName\":\"Amara Premium\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"199191\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485220,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485221,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199193\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485220,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485221,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199195\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485220,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485221,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Amara Premium\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27862\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2860.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":2765,\"priceDoubleOcc\":\"2860.00\",\"priceSingleOcc\":8580,\"priceExtraBed\":\"2145.00\",\"priceWithoutBed\":\"1430.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":2860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1430,\"CEB\":2145,\"COSTDO\":2860,\"COSTSO\":8580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":2574,\"COSTTO\":2574}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27863\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"3520.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":3403,\"priceDoubleOcc\":\"3520.00\",\"priceSingleOcc\":10560,\"priceExtraBed\":\"5280.00\",\"priceWithoutBed\":\"1760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1760,\"CEB\":5280,\"COSTDO\":3520,\"COSTSO\":10560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3168,\"COSTTO\":3168}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#212121&quot;&gt;4th Night Complimentary Offer - Book for 3 Nights and get 4th Night Free on room only basis, Compulsory Meal Supplement applicable For CP - Rs 1500 Per Couple, MAP - Rs 2,000 Per Couple&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;A Mocktail on Arrival&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Airport Transfers by Sanitized Private Air Conditioned Vehicle&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Accommodation in Well appointed Air-Conditioned room with Private Balcony&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Buffet\\/Fixed Menu meals as per plan at our Poolside Restro Bar Casa Medici&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;One Full Day South Goa Sightseeing by AC Coach on Sic basis ( Includes : Dolphin Spotting, Miramar Beach, Donapaula Beach, Old Goa Church, Mangueshi Temple, Balaji Temple, St. Augustin Tower, Boat Cruise Point ). If Sightseeing is not operational due to state guidelines, than Rs 500 Meal Credit voucher will be given, No Cash refund.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Two bottles of mineral water everyday&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Complimentary Use of swimming pool (Proper swimming costumes compulsory, To be operational as per State govt guidelines)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Happy Hours with 1+1 Offer between 12pm-4pm everyday at Casa Medici Bar&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Exclusive 10% discount on Big Daddy Casino Entry fee*&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;All rooms are equipped with Mini bar (Chargeable) &amp;amp; Safe Locker&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Complimentary use of Tea\\/Coffee maker.(replenished once daily).&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#212121&quot;&gt;Free Wi-Fi to all our in-house guests&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8327\",\"Value\":\"1\"}],\"BuspickupLocation\":[],\"TransferData\":{\"199191\":[{\"Sequence\":[0],\"TPInvnSysId\":[199191],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199193\":[{\"Sequence\":[0],\"TPInvnSysId\":[199193],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199195\":[{\"Sequence\":[0],\"TPInvnSysId\":[199195],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India','','10576',2860,3520,2,'161_1630070362_0.jpg,161_1630070362_1.jpg,161_1630070362_2.jpg,161_1630070362_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-08-25 15:31:29','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'amara-grand-inn-calangute-goa',NULL,NULL,NULL,0),(162,27864,1,5293,0,0,0,'Beach,Family,Sports',NULL,1,1,0,'{\"package\":{\"TPId\":27864,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/cygnett-inn-celestial-goa_1691401346\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;When the glistening sandy beaches and azure waters of India&amp;rsquo;s ultimate party destination beckon, heading to the Cygnett Inn Celestiial is a no-brainer. This sophisticated hotel has a lot to offer leisure and business travellers alike without even mentioning its very enviable location near Candolim Beach in North Goa.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"I Need Trip\",\"Name\":\"CYGNETT INN CELESTIAL GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6580\",\"SupplierName\":\"Cygnett Resort Mountain Breeze\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Beach,Family,Sports\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485225,\"Name\":\"Cygnett Inn Celestiial\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.529331\",\"Long\":\"73.764768\",\"Address\":\"1168-D, Xiimer,, beside Jambaleshawar Temple, Gauravaddo, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6580,\"SupplierName\":\"Cygnett Resort Mountain Breeze\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":485226,\"Name\":\"Cygnett Inn Celestiial\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.529331\",\"Long\":\"73.764768\",\"Address\":\"1168-D, Xiimer,, beside Jambaleshawar Temple, Gauravaddo, Candolim, Goa 403515, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6580,\"SupplierName\":\"Cygnett Resort Mountain Breeze\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe \\/ Club Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"199197\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485225,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485226,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe \\/ Club Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199199\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485225,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485226,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe \\/ Club Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199201\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485225,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485226,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe \\/ Club Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"27864\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"4400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":4253,\"priceDoubleOcc\":\"4400.00\",\"priceSingleOcc\":13200,\"priceExtraBed\":\"3300.00\",\"priceWithoutBed\":\"2200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2200,\"CEB\":3300,\"COSTDO\":4400,\"COSTSO\":13200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":3960,\"COSTTO\":3960}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27865\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":5317,\"priceDoubleOcc\":\"5500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"4125.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2750,\"CEB\":4125,\"COSTDO\":5500,\"COSTSO\":16500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":4950,\"COSTTO\":4950}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8272\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"199197\":[{\"Sequence\":[0],\"TPInvnSysId\":[199197],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199199\":[{\"Sequence\":[0],\"TPInvnSysId\":[199199],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199201\":[{\"Sequence\":[0],\"TPInvnSysId\":[199201],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India','','10576',4400,5500,2,'162_1629979614_0.jpg,162_1629979614_1.jpg,162_1629979614_2.jpg,162_1629979614_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-08-25 15:31:08','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'cygnett-inn-celestial-goa',NULL,NULL,NULL,0),(163,27870,1,5293,0,0,0,'Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":27870,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/cygnett_style_signature_mcleodganj_1629806313.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mcleodganj\",\"DestinationPlacesSysId\":17267,\"SourcePlaces\":\"Mcleodganj\",\"SourcePlaceSysId\":17267,\"AgencyName\":\"I Need Trip\",\"Name\":\"CYGNETT STYLE  SINGNATURE MCLEODGANJ \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6580\",\"SupplierName\":\"Cygnett Resort Mountain Breeze\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Family,Hill Station\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17267,\"Title\":\"Mcleodganj\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475869,\"Name\":\"Hotel Imperial 9 Mcleodganj\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":17267,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6580,\"SupplierName\":\"Cygnett Resort Mountain Breeze\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":485231,\"Name\":\"Cygnett Style Signature Mcleodganj\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.23556799999999\",\"Long\":\"76.3272193\",\"Address\":\"Jogiwara Rd, McLeod Ganj, Dharamshala, Himachal Pradesh 176219, India\"},\"Images\":[],\"CityId\":17267,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6580,\"SupplierName\":\"Cygnett Resort Mountain Breeze\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"199223\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17267,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475869,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199225\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17267,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475869,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"199227\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17267,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475869,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8267\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"199223\":[{\"Sequence\":[0],\"TPInvnSysId\":[199223],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199225\":[{\"Sequence\":[0],\"TPInvnSysId\":[199225],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"199227\":[{\"Sequence\":[0],\"TPInvnSysId\":[199227],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mcleodganj','Mcleodganj,Himachal Pradesh,Indian Subcontinent,North India,India','','17267',0,0,2,'163_1630320940_0.jpg,163_1630320940_1.jpg,163_1630320940_2.jpg,163_1630320940_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:55:57','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'cygnett-style-singnature-mcleodganj',NULL,NULL,NULL,0),(164,27726,1,5293,0,0,0,'Beach,Hill Station,Weekend,Offbeat,Leisure,By Cab,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":27726,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/torrentium_lodge__chhota_shimla_1630307561.jpg\",\"BookingValidUntill\":\"2021-11-18\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"TORRENTIUM LODGE ( CHHOTA SHIMLA)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6746\",\"SupplierName\":\"Bridge View Regency \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Only Breakfast,Breakfast & Dinner\",\"PackageType\":\"Beach,Hill Station,Weekend,Offbeat,Leisure,By Cab,Activites Tour\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-11-18\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485035,\"Name\":\"Torrentium Lodge\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0869939\",\"Long\":\"77.1799758\",\"Address\":\"near Tibatan School, Knollswood, Chotta Shimla, Shimla, Himachal Pradesh 171002, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6746,\"SupplierName\":\"Bridge View Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485036,\"Name\":\"Torrentium Lodge\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0869939\",\"Long\":\"77.1799758\",\"Address\":\"near Tibatan School, Knollswood, Chotta Shimla, Shimla, Himachal Pradesh 171002, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6746,\"SupplierName\":\"Bridge View Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room with Jacuzzi Bath\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198273\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485036,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room with Jacuzzi Bath\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198275\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485036,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room with Jacuzzi Bath\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198277\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485036,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room with Jacuzzi Bath\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"198273\":[{\"Sequence\":[0],\"TPInvnSysId\":[198273],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198275\":[{\"Sequence\":[0],\"TPInvnSysId\":[198275],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198277\":[{\"Sequence\":[0],\"TPInvnSysId\":[198277],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India','','1',0,0,2,'164_1630321391_0.jpg,164_1630321391_1.jpg,164_1630321391_2.jpg,164_1630321391_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-11-18 00:00:00','2021-11-18 00:00:00',3,'India','101','2023-08-25 13:56:30','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'torrentium-lodge-(-chhota-shimla)',NULL,NULL,NULL,0),(165,27723,1,5293,0,0,0,'Honeymoon,Family,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":27723,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/bridge_view_regency_1629444916.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"BRIDGE VIEW REGENCY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6746\",\"SupplierName\":\"Bridge View Regency \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485030,\"Name\":\"Bridge View Regency\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.10224\",\"Long\":\"77.1780524\",\"Address\":\"Mall Road Near Moti Mahal Opposite Tourism Lift, The Mall, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6746,\"SupplierName\":\"Bridge View Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485031,\"Name\":\"Bridge View Regency\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.10224\",\"Long\":\"77.1780524\",\"Address\":\"Mall Road Near Moti Mahal Opposite Tourism Lift, The Mall, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6746,\"SupplierName\":\"Bridge View Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198262\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485030,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198264\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485030,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198266\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485030,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485031,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8275\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"198262\":[{\"Sequence\":[0],\"TPInvnSysId\":[198262],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198264\":[{\"Sequence\":[0],\"TPInvnSysId\":[198264],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"198266\":[{\"Sequence\":[0],\"TPInvnSysId\":[198266],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India','','1',0,0,2,'165_1630321743_0.jpg,165_1630321743_1.jpg,165_1630321743_2.jpg,165_1630321743_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:57:40','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'bridge-view-regency',NULL,NULL,NULL,0),(166,28081,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":28081,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/golden_fern_resort_shimla_1630307795.jpg\",\"BookingValidUntill\":\"2021-12-20\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Shimla\",\"SourcePlaceSysId\":1,\"AgencyName\":\"I Need Trip\",\"Name\":\"GOLDEN FERN RESORT SHIMLA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6794\",\"SupplierName\":\" Golden Fern Resort Shimla\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-20\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485466,\"Name\":\"Golden Fern Resort\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0891678\",\"Long\":\"77.1405961\",\"Address\":\"Taradevi Rd, Bagh, Shimla, Himachal Pradesh 171004, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6794,\"SupplierName\":\" Golden Fern Resort Shimla\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room   (With Balcony with City View)\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485467,\"Name\":\"Golden Fern Resort\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0891678\",\"Long\":\"77.1405961\",\"Address\":\"Taradevi Rd, Bagh, Shimla, Himachal Pradesh 171004, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6794,\"SupplierName\":\" Golden Fern Resort Shimla\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room   ( With Balcony with City View)\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"200525\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room   (With Balcony with City View)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Room   ( With Balcony with City View)\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200527\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room   (With Balcony with City View)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Room   ( With Balcony with City View)\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200529\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room   (With Balcony with City View)\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Executive Room   ( With Balcony with City View)\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Well Appointed room as per the category chosen&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee makers in The Room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Mineral water complimentary Per Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Buffet Breakfast and Dinner as per the package chosen.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8303\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"200525\":[{\"Sequence\":[0],\"TPInvnSysId\":[200525],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200527\":[{\"Sequence\":[0],\"TPInvnSysId\":[200527],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200529\":[{\"Sequence\":[0],\"TPInvnSysId\":[200529],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India','','1',0,0,2,'166_1630323040_0.jpg,166_1630323040_1.jpg,166_1630323040_2.jpg,166_1630323040_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-20 00:00:00','2021-12-20 00:00:00',3,'India','101','2023-08-25 13:55:44','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'golden-fern-resort-shimla',NULL,NULL,NULL,0),(167,28091,1,5293,0,0,0,'Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":28091,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_springfields_1630309185.jpg\",\"BookingValidUntill\":\"2021-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Shimla\",\"SourcePlaceSysId\":1,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL SPRINGFIELDS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6796\",\"SupplierName\":\"Hotel Springfield\'s\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Hill Station\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":455027,\"Name\":\"\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6796,\"SupplierName\":\"Hotel Springfield\'s\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"200573\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200574\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200575\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200598\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200599\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Well Appointed room as per the category chosen&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee makers in The Room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two Bottles of Mineral water complimentary Per Day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Buffet Breakfast and Dinner as per the package chosen.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"200573\":[{\"Sequence\":[0],\"TPInvnSysId\":[200573],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200574\":[{\"Sequence\":[0],\"TPInvnSysId\":[200574],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200575\":[{\"Sequence\":[0],\"TPInvnSysId\":[200575],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200598\":[{\"Sequence\":[0],\"TPInvnSysId\":[200598],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200599\":[{\"Sequence\":[0],\"TPInvnSysId\":[200599],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India','','1',0,0,4,'167_1630319102_0.jpg,167_1630319102_1.jpg,167_1630319102_2.jpg,167_1630319102_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-15 00:00:00','2021-12-15 00:00:00',3,'India','101','2023-08-25 13:55:30','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-springfields',NULL,NULL,NULL,0),(168,28106,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28106,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_honeymoon_inn_1630317794.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Manali\",\"DestinationPlacesSysId\":16593,\"SourcePlaces\":\"Manali\",\"SourcePlaceSysId\":16593,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL HONEYMOON INN\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6799\",\"SupplierName\":\"HOTEL HONEYMOON INN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Hill Station,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485485,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.23389309999999\",\"Long\":\"77.1963157\",\"Address\":\"Left Bank, Aleo, Manali, Himachal Pradesh 175131, India\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6799,\"SupplierName\":\"HOTEL HONEYMOON INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485486,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.23389309999999\",\"Long\":\"77.1963157\",\"Address\":\"Left Bank, Aleo, Manali, Himachal Pradesh 175131, India\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6799,\"SupplierName\":\"HOTEL HONEYMOON INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"200668\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485485,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485486,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200670\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485485,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485486,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200672\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485485,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485486,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200674\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485485,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485486,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening Tea with Cookies Free use of X-box Gaming and Pool Table for One Hour (Once during the stay)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Laundry upto 4 Garments (Once during stay) Free Use of Wi-Fi, All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8311\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"200668\":[{\"Sequence\":[0],\"TPInvnSysId\":[200668],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200670\":[{\"Sequence\":[0],\"TPInvnSysId\":[200670],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200672\":[{\"Sequence\":[0],\"TPInvnSysId\":[200672],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200674\":[{\"Sequence\":[0],\"TPInvnSysId\":[200674],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Manali','Manali,Himachal Pradesh,Indian Subcontinent,North India,India','','16593',0,0,3,'168_1630323684_0.jpg,168_1630323684_1.jpg,168_1630323684_2.jpg,168_1630323684_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:54:33','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-honeymoon-inn',NULL,NULL,NULL,0),(169,28118,1,5293,0,0,0,'Honeymoon,Family,Romantic,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28118,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_honeymoon_inn_1630319642.jpeg\",\"BookingValidUntill\":\"2021-12-16\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Manali\",\"DestinationPlacesSysId\":16593,\"SourcePlaces\":\"Manali\",\"SourcePlaceSysId\":16593,\"AgencyName\":\"I Need Trip\",\"Name\":\"HOTEL HONEYMOON INN\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6800\",\"SupplierName\":\"Holiday inn Hotels\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Romantic,Road Trip\",\"Validity\":{\"From\":\"2021-08-30\",\"To\":\"2021-12-16\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485489,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0973768\",\"Long\":\"77.17749289999999\",\"Address\":\"The Mall, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6800,\"SupplierName\":\"Holiday inn Hotels\",\"priceaditionals\":null,\"RoomTypeName\":\"Super Deluxe\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":485490,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0973768\",\"Long\":\"77.17749289999999\",\"Address\":\"The Mall, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6800,\"SupplierName\":\"Holiday inn Hotels\",\"priceaditionals\":null,\"RoomTypeName\":\"Honeymoon Special\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"200735\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Honeymoon Special\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200737\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Honeymoon Special\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200739\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Honeymoon Special\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"200741\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Super Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":485490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Honeymoon Special\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"28118\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5830.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4547,\"priceDoubleOcc\":\"5830.00\",\"priceSingleOcc\":11660,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"5830.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"5830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28119\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6270.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-01\",\"To\":\"2021-12-16\",\"Currency\":1,\"priceTripleOcc\":4840,\"priceDoubleOcc\":\"6270.00\",\"priceSingleOcc\":12540,\"priceExtraBed\":\"1980.00\",\"priceWithoutBed\":\"1980.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6270.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening Tea with Cookies&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free use of X-box Gaming and Pool Table for One Hour (Once during the stay)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Laundry upto 4 Garments (Once during stay) Free Use of Wi-Fi, All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8313\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"200735\":[{\"Sequence\":[0],\"TPInvnSysId\":[200735],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200737\":[{\"Sequence\":[0],\"TPInvnSysId\":[200737],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200739\":[{\"Sequence\":[0],\"TPInvnSysId\":[200739],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"200741\":[{\"Sequence\":[0],\"TPInvnSysId\":[200741],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"FlightData\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali','','1',5830,6270,3,'169_1630323291_0.jpg,169_1630323291_1.jpg,169_1630323291_2.jpg,169_1630323291_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',2,'',0,'2021-08-30 00:00:00','2021-12-16 00:00:00','2021-12-16 00:00:00',3,'India','101','2021-08-30 17:12:03','2021-08-30 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-honeymoon-inn',NULL,NULL,NULL,0),(170,28177,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28177,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/brennia-kottefuru---split-stay_1690609646\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Brennia Kottefaru lies within the realm of stunning islands in Raa Atoll, Maldives. Kottefaru is a secluded island blessed with a 360 degrees beach, turquoise lagoon, and house reef with exceptional marine biodiversity. You may reach the island by either a scenic 40-minute seaplane journey from Male&amp;rsquo; International Airport, or with a 20-minute domestic flight to Ifuru Airport and followed with a 20-minute speedboat ride to the resort.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"BRENNIA KOTTEFURU - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484371,\"Name\":\"Brennia Kottefaru\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"5.509729599999999\",\"Long\":\"73.042137\",\"Address\":\"Brennia Kottefaru Kottefaru, 20081, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"201033\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 - BEACH VILLA&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Placed near the island shore, offering a view of the ocean, are our 47 Beach Villas of 143 sqm. Walk out of your room right onto the white sandy beach of Brennia and enjoy the dazzling view.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;STAY 2 - WATER VILLA&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Suspended above the ocean surrounding the island, sit 20 Water Villas, each 111 square meters in size with stairs leading right into the ocean, your own natural pool.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201034\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201035\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201036\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201037\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484371,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"28177\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"113630.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":109842,\"priceDoubleOcc\":\"113630.00\",\"priceSingleOcc\":318164,\"priceExtraBed\":\"85222.50\",\"priceWithoutBed\":\"56815.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113630,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":56815,\"CEB\":85222.5,\"COSTDO\":113630,\"COSTSO\":318164,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102267,\"COSTTO\":102267}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Villa + 2 Nights Stay in Water Villa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Sea Plane.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling Equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One complimentary excursion (combined) will be provided once during the stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Non-motorized water sports (paddle board, kayak and canoe)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon freebies :-&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On arrival Fruits and Turn down service with homemade cookies and Chocolate.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In villa Bed decoration , Bottle of rose sparkling wine.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Candle Lit Set up menu dinner once during the stay.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"201033\":[{\"Sequence\":[0],\"TPInvnSysId\":[201033],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201034\":[{\"Sequence\":[0],\"TPInvnSysId\":[201034],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201035\":[{\"Sequence\":[0],\"TPInvnSysId\":[201035],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201036\":[{\"Sequence\":[0],\"TPInvnSysId\":[201036],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201037\":[{\"Sequence\":[0],\"TPInvnSysId\":[201037],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',113630,113630,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:31:37','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'brennia-kottefuru-split-stay',NULL,NULL,NULL,0),(171,28186,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28186,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/adaaran-club-rannalhi---split-stay_1690610216\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Adaaran Club Rannalhi is featured among the best hotels in Maldives and sits exclusively at the tip of the South Male atoll within the exotic collection of islands known as the Maldives. Its unique location offers access to pristine beaches, excellent scuba diving opportunities and a relaxed environment with easy access to the capital city of Male. Bask in the golden sun and frolic on the soft sands as you experience friendly Maldivian hospitality and explore the rich tropical wonders of a vibrant island nation during your stay at our inviting Maldives hotel.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"ADAARAN CLUB RANNALHI - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":392058,\"Name\":\"Adaaran Club Rannalhi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"South Male Atoll, Maldives Islands, Maldives, , , , \"},\"Images\":[],\"CityId\":16505,\"Brief\":\"The 4-star Adaaran Club Rannalhi Hotel offers comfort and convenience whether you&#039;re on business or holiday in Maldives Islands. The property features a wide range of facilities to make your stay a pleasant experience. 24-hour room service, 24-hour security, convenience store, daily housekeeping, gift\\/souvenir shop are there for guest&#039;s enjoyment. Guestrooms are designed to provide an optimal level of comfort with welcoming decor and some offering convenient amenities like television LCD\\/plasma screen, slippers, non smoking rooms, air conditioning, wake-up service. The hotel offers various recreational opportunities. Discover all Maldives Islands has to offer by making Adaaran Club Rannalhi Hotel your base.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiML+TprZkTabTwwwPgGXxCQkEoOgYSSU4zDCPJITQWu3T7bfF4pqI+eIsPca6E9dQjDyMKD1sP8oHi\\/pVeBZ5h+U+ZPd65lPIbeijr60b11A==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"201091\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 - STANDARD BUNGALOW&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring modern design with a tropical flair, our Standard Rooms offer both terrace and balcony views and are situated throughout the expanse of the island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;STAY 2 - WATER BUNGALOW&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Reside atop glistening turquoise waters in a contemporary water bungalow equipped with modern comforts.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201092\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201093\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201094\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201095\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392058,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   02 Nights Water Bungalow\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28186\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"94600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":91447,\"priceDoubleOcc\":\"94600.00\",\"priceSingleOcc\":264880,\"priceExtraBed\":\"70950.00\",\"priceWithoutBed\":\"47300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47300,\"CEB\":70950,\"COSTDO\":94600,\"COSTSO\":264880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":85140,\"COSTTO\":85140}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Standard Bungalow&amp;nbsp;+ 2 Nights Stay in Water Bungalow&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (&amp;nbsp;Breakfast \\/ Lunch \\/ Dinner&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speed Boat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fruit Basket, Bed Decoration &amp;amp; Candlelight Dinner.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"201091\":[{\"Sequence\":[0],\"TPInvnSysId\":[201091],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201092\":[{\"Sequence\":[0],\"TPInvnSysId\":[201092],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201093\":[{\"Sequence\":[0],\"TPInvnSysId\":[201093],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201094\":[{\"Sequence\":[0],\"TPInvnSysId\":[201094],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"201095\":[{\"Sequence\":[0],\"TPInvnSysId\":[201095],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',94600,94600,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:31:03','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'adaaran-club-rannalhi-split-stay',NULL,NULL,NULL,0),(172,28358,1,5293,0,0,0,'Honeymoon,Adventure,Family,Cruise,Hill Station,Weekend,Romantic,Leisure,By Cab,Activites Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28358,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/honeymoon_inn_1631012318.jpg\",\"BookingValidUntill\":\"2021-12-16\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Located in Mall road, Honeymoon Inn Mussoorie offers you a heavenly getaway to take a breather with sights of the scenic hills.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mussoorie\",\"DestinationPlacesSysId\":18776,\"SourcePlaces\":\"Mussoorie\",\"SourcePlaceSysId\":18776,\"AgencyName\":\"I Need Trip\",\"Name\":\"HONEYMOON INN, MUSSOORIE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6799\",\"SupplierName\":\"HOTEL HONEYMOON INN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Adventure,Family,Cruise,Hill Station,Weekend,Romantic,Leisure,By Cab,Activites Tour,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-16\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18776,\"Title\":\"Mussoorie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485790,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.45913179999999\",\"Long\":\"78.0719627\",\"Address\":\"The Mall Rd, The Mall Road, Mussoorie, Uttarakhand 248179, India\"},\"Images\":[],\"CityId\":18776,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6799,\"SupplierName\":\"HOTEL HONEYMOON INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":420565,\"Name\":\"Honeymoon Inn Mussoorie\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.45982\",\"Long\":\"78.064366\",\"Address\":\"The Mall, Near Library Point,Uttaranchal,India, 248179\"},\"Images\":[],\"CityId\":18776,\"Brief\":\"Just like its name Honeymoon Inn, this is a perfect accommodation option for celebrating your honeymoon with your partner. With luxurious interiors and specially designed rooms for honeymooners, this hotel ensures guests have a memorable stay.\\n\\n&lt;b&gt;Location&lt;\\/b&gt;\\nLocated on the Mall road, this hotel is close to many interesting sites. The popular places where guests can pay a visit include Mussoorie Lake, Bhatta Falls and Nag Devta Temple.\\n\\nDistances from Jolly Grant Airport - Approx. 56km\\nDistances from Dehradun railway station - Approx. 31km\\n\\n&lt;b&gt;Hotel Features&lt;\\/b&gt;\\nHoneymoon Inn has ample facilities for guest&#039;s comfortable stay. Room service, internet, business centre, 24-hour front desk, 24-hour room service, laundry, non-smoking rooms, travel desk, dry cleaning\\/laundry, banquet facilities, conference facilities, transportation service, doctor on call are some of the facilities on offer. For a unique dining experience and having a great night, guests can visit the in-house restaurant and disco.\\n\\n&lt;b&gt;Rooms&lt;\\/b&gt;\\nThis hotel provides two options Deluxe room and Super Deluxe room. All the rooms have the best view of Dehradoon Valley from large windows. Rooms feature CCTV with satellite entertainment, colour television, newspaper, private bathroom, telephone, in room menu and room heater.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/4109\\/41098\\/images\\/Hotel_Front_copy_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6799,\"SupplierName\":\"HOTEL HONEYMOON INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202103\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485790,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":420565,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202105\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485790,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":420565,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202107\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485790,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":420565,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free one pickup from Library by Rickshaw on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8319\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"202103\":[{\"Sequence\":[0],\"TPInvnSysId\":[202103],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202105\":[{\"Sequence\":[0],\"TPInvnSysId\":[202105],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202107\":[{\"Sequence\":[0],\"TPInvnSysId\":[202107],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mussoorie','Mussoorie,Uttarakhand,Indian Subcontinent,North India,India','','18776',0,0,2,'172_1631100659_0.jpg,172_1631100659_1.jpg,172_1631100659_2.jpg,172_1631100659_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-16 00:00:00','2021-12-16 00:00:00',3,'India','101','2023-08-25 13:54:12','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'honeymoon-inn-mussoorie',NULL,NULL,NULL,0),(173,28364,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":28364,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2021-11-21\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 03&amp;nbsp;Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( All Inclusive&amp;nbsp;Meal Plan - Breakfast&amp;nbsp;\\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks Unlimited )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers&amp;nbsp;as per the itinerary in an Domestic Flight + Speed Boat&amp;nbsp;on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, Parking Fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon Freebies :- 01 bottle of sparkling wine and a fruit platter on arrival day , complimentary in suite Breakfast for the couple once during stay, special evening turn down service with bed decoration on arrival night, 01 celebratory honeymoon cake.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 5% on Land Package cost included ( Guest can claim while filing ITR )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SIYAM WORLD - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Romantic\",\"Validity\":{\"From\":\"2021-09-07\",\"To\":\"2021-11-21\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485537,\"Name\":\"Siyam World Maldives\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"5.731071099999999\",\"Long\":\"73.359327\",\"Address\":\"Medhudheli, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Water Villa With Pool\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202134\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>STAY 1 - WATER VILLA WITH POOL<\\/p>\\r\\n\\r\\n<p>In need of a little sea-laxation? Situated overwater, with direct access to the turquoise lagoon, Water Villas are perfect for those seeking the ultimate overwater retreat. Featuring a private sundeck with sun loungers and a fresh water pool to cool off in, a bathroom with indoor showers, mini bar, Wi-Fi and views that are out of this world. We think it can&#39;t get any more perfect!<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202135\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202136\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202137\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202138\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"28364\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"74816.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-21\",\"Currency\":1,\"priceTripleOcc\":74816,\"priceDoubleOcc\":\"74816.00\",\"priceSingleOcc\":149632,\"priceExtraBed\":\"74816.00\",\"priceWithoutBed\":\"74816.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"74816.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Siyam World \\u2605\\u2605\\u2605\\u2605\\u2605&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 03&amp;nbsp;Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( All Inclusive&amp;nbsp;Meal Plan - Breakfast&amp;nbsp;\\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks Unlimited )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers&amp;nbsp;as per the itinerary in an Domestic Flight + Speed Boat&amp;nbsp;on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, Parking Fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon Freebies :- 01 bottle of sparkling wine and a fruit platter on arrival day , complimentary in suite Breakfast for the couple once during stay, special evening turn down service with bed decoration on arrival night, 01 celebratory honeymoon cake.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#f1c40f&quot;&gt;TCS 5% on Land Package cost included ( Guest can claim while filing ITR )&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202134\":[{\"Sequence\":[0],\"TPInvnSysId\":[202134],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHTS + SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"202135\":[{\"Sequence\":[0],\"TPInvnSysId\":[202135],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHTS + SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"202136\":[{\"Sequence\":[0],\"TPInvnSysId\":[202136],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHTS + SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"202137\":[{\"Sequence\":[0],\"TPInvnSysId\":[202137],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHTS + SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"202138\":[{\"Sequence\":[0],\"TPInvnSysId\":[202138],\"Remark\":[\"&lt;p&gt;DOMESTIC FLIGHTS + SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"FlightData\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',74816,74816,4,NULL,NULL,NULL,2,'',0,'2021-09-07 00:00:00','2021-11-21 00:00:00','2021-11-21 00:00:00',3,'Maldives','133','2021-09-07 17:12:10','2021-09-07 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'siyam-world-split-stay',NULL,NULL,NULL,0),(175,28382,1,5293,0,0,0,'Honeymoon,Sports,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28382,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/honeymoon_inn_shimla_1631080953.jpg\",\"BookingValidUntill\":\"2021-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Unravel a romantic getaway at the Honeymoon Inn, offering splendid mountain views, stylish interiors and a comprehensive list of top-notch amenities.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Shimla\",\"DestinationPlacesSysId\":1,\"SourcePlaces\":\"Shimla\",\"SourcePlaceSysId\":1,\"AgencyName\":\"I Need Trip\",\"Name\":\"HONEYMOON INN, Shimla\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6799\",\"SupplierName\":\"HOTEL HONEYMOON INN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Sports,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485808,\"Name\":\"Honeymoon Inn\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0973768\",\"Long\":\"77.17749289999999\",\"Address\":\"The Mall, Shimla, Himachal Pradesh 171001, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6799,\"SupplierName\":\"HOTEL HONEYMOON INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202223\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202224\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202225\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202223\":[{\"Sequence\":[0],\"TPInvnSysId\":[202223],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202224\":[{\"Sequence\":[0],\"TPInvnSysId\":[202224],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202225\":[{\"Sequence\":[0],\"TPInvnSysId\":[202225],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India','','1',0,0,2,'175_1631101355_0.jpg,175_1631101355_1.jpg,175_1631101355_2.jpg,175_1631101355_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-09-30 00:00:00','2021-09-30 00:00:00',3,'India','101','2023-08-25 13:53:58','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'honeymoon-inn-shimla',NULL,NULL,NULL,0),(178,28480,1,5293,0,0,0,'Honeymoon,Family,Heritage,Weekend,Shopping and Nightlife,Leisure,By Cab,By Volvo,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28480,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/shakun_hotels__resorts_1631526782.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;We would like to present ourselves as Shakun Hotels and Resorts, Jaipur. Located in the heart of the city, a proudly vegetarian and smoke free boutique hotel that offers to the discerning guests aesthetically designed and meticulously laid out rooms and suites. A roof top pool with fitness centre, multiple food and beverage service outlet options along with a well stocked bar and complimentary internet facilities across the hotel premises all comes together to make the guest stay even more enticing and comfortable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Location:&amp;nbsp;The hotel is ideal for business travellers and tourists alike, thanks to its proximity to transport hubs and tourist attractions. It is at a distance of 11 Km away from the Jaipur International Airport, 03 Km away from Jaipur Railway Station and 03 Km away from the Inter State Bus Terminus at Sindhi Camp. All major places of interests are within a close proximity of around 05 Km radius including the Old city and market place, City Palace, Hawa Mahal, Birla Mandir and Albert Hall Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Room Amenities:&amp;nbsp;Guests can choose from rooms categories of Deluxe, Club and Suite. Rooms come with a view of the Nahargarh fort, State Assembly Hall and the Aravalli Ranges. All rooms are equipped with Tea \\/ Coffee maker, Mini bar, Wi-Fi, Automatic temperature controls, en suite bathroom with hot \\/ cold running water, Shower area and supplies of essential bathroom toiletries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Facilities:&amp;nbsp;Services include 24 hrs front desk, express laundry services, daily housekeeping and in room dining provisions. The hotel also offers a fitness centre, rooftop pool (operational timing - 07:00 AM to 07:00 PM) and 15000 sq ft conference and event space to host official and social gatherings. The Ball Rooms named as Rosewood and Pebble comes equipped with the latest audio \\/ video facilities, projector and an open-air patio. There are two meeting rooms with a 24-hour Business centre. Sightseeing and travel needs on mind! Our dedicated Travel Desk at lobby level is ready to chip in for help, for all your travel and related needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dining:&amp;nbsp;Connoisseur of good food! And craving to treat those taste buds. Step into our renowned award winning roman theme fine dining multi cuisine restaurant &amp;rdquo;Pantheon&amp;rdquo; located at the lobby level serving the finest of regional, national and delectable mix of world cuisine. Hours of operation: Lunch 1230 Hrs 1500 Hrs, Dinner 1930 Hrs 2300 Hrs. Additional Special Discounts for in-house guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Love dining in an informal setting. No problems. Head into &amp;ldquo;Tamarind&amp;rdquo;, our all day dinning and get to choose from an array of mouth watering dishes spread out in a buffet set up for your convenience. Hours of operation: 0730 Hrs 1030 Hrs. Additional Special Discounts for in-house guests.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drained out after day&amp;rsquo;s work! Or just looking to chill out by adding that little extra fun quotient to your stay. Give yourself a chance to unwind at our very popular in-house bar &amp;ldquo;Vetiver&amp;rdquo;. Double up your spirits by indulging anytime during the Happy Hours between 1100 Hrs - 2000 Hrs. Hours of operation: 1100 Hrs 2300 Hrs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Here, we have been designed a very special rate to encourage all our prospective partners who wish to use our services in offering their clienteles an unforgettable stay experience.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"I Need Trip\",\"Name\":\"Shakun Hotels & Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7116\",\"SupplierName\":\"Shakun Hotels & Resorts\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Heritage,Weekend,Shopping and Nightlife,Leisure,By Cab,By Volvo,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485947,\"Name\":\"Shakun Hotels and Resorts\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7116,\"SupplierName\":\"Shakun Hotels & Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202940\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485947,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202941\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485947,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202942\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485947,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;p&gt;&amp;nbsp;The special rates are inclusive Taxes, presently at 12%. In event of any future amendments in the current tax structure or new taxes as and when imposed by the Government shall be levied extra.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Check in - 14.00 Hrs, early arrivals subject to availability. For guaranteed early check in, reservation needs to made from previous night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Check out - 12.00 Hrs, late check outs are available on request till 14.00 Hrs free of cost subject to availability.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Up gradation to higher category Club Rooms with above meal plan inclusions available at INR 1000.00\\/- + Tax only.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Children&amp;rsquo;s up to 06 yrs Complementary in the same room on meal plan without an extra bed.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;As per government directives, it is mandatory for all guests to provide government issued photo id proof with their address at the time of check in. All foreign nationals to provide valid passport and visa copy or OCI card. Local resident id is not valid, failing which the hotel reserves the right of refusal.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Carrying or consumption of outside food and liquor is not permitted within the hotel premises.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Above Rates not applicable for Conference, Marriage Party, Social Gatherings, X-Mas \\/ New Year, Long Weekends, Blackout Dates or any other Special Event, for which a separate custom made rate shall be applicable.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;The hotel prides in offering a completely non smoking environment to it guests and violation of which in any form may attract financial penalty.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;To guarantee a reservation, please provide the hotel with a valid credit card with its expiry date or an advance deposit. All reservations booked under a guarantee will continue to be held by the hotel from the actual date of arrival until following day up till 18.00 Hrs. All bookings received otherwise will be treated as non guaranteed and may be released &amp;nbsp;&amp;nbsp;after 18.00 Hrs on the day of arrival at hotel&amp;rsquo;s discretion. &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;In an event of a No-Show, Cancellation \\/ Amendment (In part or full), within 72 Hrs or less from the date of check-in, a retention charge of 1 night&amp;rsquo;s applicable room rate may be levied. In addition, should the guest check-out early, 1 night&amp;rsquo;s applicable room rate may be charged in lieu of the night(s) being released.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Please note that property has a mandatory Gala Dinner on 24th&amp;nbsp;December and 31st&amp;nbsp;December 2021. All Bookings will be accepted with the following rates.&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;24th&amp;nbsp;December 2021&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;INR 2000.00 including Tax Per Adult&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;INR 1000.00 including Tax Per Child (07-12 Years)&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Complimentary (06 Years and Below)&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;31st&amp;nbsp;December 2021&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;INR 3000.00 including Tax Per Adult&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;INR 1500.00 including Tax Per Child (07-12 Years)&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Complimentary (06 Years and Below)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202940\":[{\"Sequence\":[0],\"TPInvnSysId\":[202940],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202941\":[{\"Sequence\":[0],\"TPInvnSysId\":[202941],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202942\":[{\"Sequence\":[0],\"TPInvnSysId\":[202942],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India','','12995',0,0,2,'178_1632158837_0.jpg,178_1632158837_1.jpg,178_1632158837_2.jpg,178_1632158837_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:53:43','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'shakun-hotels-resorts',NULL,NULL,NULL,0),(179,28548,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Shopping and Nightlife,Leisure,By Cab',NULL,1,1,0,'{\"package\":{\"TPId\":28548,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/laxmi_palace_heritage_boutique_hotel_1631692702.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Laxmi Palace Heritage is a luxury hotel that offers an elegant mix of heritage and boutique services designed to meet the needs of a modern traveller&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"I Need Trip\",\"Name\":\"Laxmi Palace Heritage Boutique Hotel\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":1,\"Value\":\"Inbound                                           \"},\"Supplier\":{\"SupplierId\":\"7120\",\"SupplierName\":\"Laxmi Palace Heritage Boutique Hotel\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Shopping and Nightlife,Leisure,By Cab\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486001,\"Name\":\"Laxmi Palace Heritage Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.92526789999999\",\"Long\":\"75.8011526\",\"Address\":\"D-194, &agrave;&curren;&oelig;&agrave;&curren;&mdash;&agrave;&curren;&brvbar;&agrave;&yen;&euro;&agrave;&curren;&para; &agrave;&curren;&reg;&agrave;&curren;&frac34;&agrave;&curren;&deg;&agrave;&yen;\\u008d&agrave;&curren;&mdash; Behind Sindhi Camp, Kanti Nagar, Bani Park, Jaipur, Rajasthan 302016, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7120,\"SupplierName\":\"Laxmi Palace Heritage Boutique Hotel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486002,\"Name\":\"Laxmi Palace Heritage Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.92526789999999\",\"Long\":\"75.8011526\",\"Address\":\"D-194, &agrave;&curren;&oelig;&agrave;&curren;&mdash;&agrave;&curren;&brvbar;&agrave;&yen;&euro;&agrave;&curren;&para; &agrave;&curren;&reg;&agrave;&curren;&frac34;&agrave;&curren;&deg;&agrave;&yen;\\u008d&agrave;&curren;&mdash; Behind Sindhi Camp, Kanti Nagar, Bani Park, Jaipur, Rajasthan 302016, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7120,\"SupplierName\":\"Laxmi Palace Heritage Boutique Hotel\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203385\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486001,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486002,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203387\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486001,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486002,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203389\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486001,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486002,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check-in &amp;amp; Check-out:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel&amp;rsquo;s check-in time&amp;nbsp;1400 hours&amp;nbsp;&amp;amp; check out time is&amp;nbsp;1200 hours. Early check-in and late checkout&amp;nbsp;requests can be considered subject to availability of rooms with applicable charges.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Check-in Requirements:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; As per Government of India norms, you are requested to carry a valid photo-ID for all guests which feature your address and present it at the time of arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; For Indian Nationals: Driver&amp;rsquo;s License, Passport, Voter ID or Aadhar Card. PAN cards are not accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; For Foreign Nationals: Passport and Visa.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Child and Extra Adult Policy:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;Children Below&amp;nbsp;6&amp;nbsp;years will be on a complimentary basis with existing bed&amp;rsquo;s.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;Extra Mattress for children for 5 to 12 will be charged at&amp;nbsp;INR 700 plus GST&amp;nbsp;on EP\\/CP whereas.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;Above 12 years of Age will be considered as Adult and you need to take a separate room as Triple occupancy is not allowed in&amp;nbsp;Deluxe&amp;nbsp;room&amp;nbsp;whereas extra&amp;nbsp;bed in other room categories.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;The Deluxe Room has a maximum capacity of 2 adults +1 Kid below 6 on the existing bed.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Cancellation Policy: -&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;Full refund if booking cancelled before 3 days of arrival date&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;No refund if booking is cancelled within 3 days of arrival date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;We do not accept personal cheques.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; &amp;nbsp;Any change in the reservation may attract additional charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":3,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 3 Days\",\"TPRulesSysId\":\"8388\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203385\":[{\"Sequence\":[0],\"TPInvnSysId\":[203385],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203387\":[{\"Sequence\":[0],\"TPInvnSysId\":[203387],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203389\":[{\"Sequence\":[0],\"TPInvnSysId\":[203389],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India','','12995',0,0,2,'179_1631961240_0.jpg,179_1631961240_1.jpg,179_1631961240_2.jpg,179_1631961240_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:53:30','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'laxmi-palace-heritage-boutique-hotel',NULL,NULL,NULL,0),(180,28550,1,5293,0,0,0,'Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28550,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/bamboo_saa_resort__spa_1631694221.png\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;color:#17365d&quot;&gt;We feel great pleasure to introduce one of Udaipur&amp;rsquo;s primarily located retreat&amp;#39;s &amp;ndash;&amp;nbsp;&lt;strong&gt;Bamboo Saa Resort &amp;amp; Spa&lt;\\/strong&gt;, located near to Sajjangarh fort well known as Monsoon Palace, Udaipur. A Resort dedicated for domestic &amp;amp; International guests, royal weddings &amp;amp; special events like conferences, reunions and more. Bamboo Saa is a 4 Star Resort with the&amp;nbsp;facilities&amp;nbsp;and staff that are dedicated towards providing a valuable&amp;nbsp;experience&amp;nbsp;to guests in the areas of hospitality. Presenting excellent service to domestic and International&amp;nbsp;travelers, a family, or a group.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;color:#17365d&quot;&gt;We offer a tranquil atmosphere coupled with pampering and relaxation in a truly extravagant nature surrounding with 71 well-appointed (25 Patang Cottage with open to sky bathtub &amp;amp; separate sitting area, 06 Swiss Chalet cottage with Private Balcony, 20 Regal Deluxe with balcony &amp;amp; 20 Regal Classic with Jharokha) Rooms with modern facilities, High Speed Wi-Fi connectivity, Swimming pool, Spa, an array of exquisite F&amp;amp;B outlets with a varied choice of cuisines from Indian, continental and oriental in our multi-cuisine Bay Leaf Restaurant.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Bamboo Saa Resort & Spa\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7121\",\"SupplierName\":\"Bamboo Saa Resort & Spa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486008,\"Name\":\"Bamboo Saa Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5913295\",\"Long\":\"73.6519667\",\"Address\":\"1499\\/1500, Resort, Rani Rd, near Sajjangarh Bio Park, Harsh Nagar, Eklavya Colony, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7121,\"SupplierName\":\"Bamboo Saa Resort & Spa\",\"priceaditionals\":null,\"RoomTypeName\":\"Regal Classic\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486010,\"Name\":\"Bamboo Saa Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5913295\",\"Long\":\"73.6519667\",\"Address\":\"1499\\/1500, Resort, Rani Rd, near Sajjangarh Bio Park, Harsh Nagar, Eklavya Colony, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7121,\"SupplierName\":\"Bamboo Saa Resort & Spa\",\"priceaditionals\":null,\"RoomTypeName\":\"Regal Deluxe\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203391\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486008,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486010,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203393\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486008,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486010,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203395\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486008,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486010,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Regal Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For peak dates we would require 100% advance payment for the confirmation of reservation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;n keeping with Government regulations, we request all guests (on single\\/double\\/triple occupancy) to carry a photo identity to present on check-in. Foreign nationals are required to present their valid passport and visa. Indian nationals can present any government issued photo identity card e.g. driving license, passport, voter&amp;rsquo;s ID card and Adhar Card.&amp;nbsp; In absence of above Hotel will decline to check in the guest.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For additional information on the hotel visit&amp;nbsp;www.bamboosaa.com&amp;nbsp;our website includes comprehensive information on the hotel services and facilities, map to the hotel, photographs of the hotel, etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal : Breakfast and Dinner&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8394\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203391\":[{\"Sequence\":[0],\"TPInvnSysId\":[203391],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203393\":[{\"Sequence\":[0],\"TPInvnSysId\":[203393],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203395\":[{\"Sequence\":[0],\"TPInvnSysId\":[203395],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'180_1631957211_0.jpg,180_1631957211_1.jpg,180_1631957211_2.jpg,180_1631957211_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:53:15','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'bamboo-saa-resort-spa',NULL,NULL,NULL,0),(181,28562,1,5293,0,0,0,'Honeymoon,Religious,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28562,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_lakend_1631699930.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;It is our pleasure to reintroduce one of Udaipur&amp;rsquo;s primarily located retreat - Hotel Lakend [A part of Alka Group of Hotels),&lt;br \\/&gt;\\r\\nlocated on Shore of Fateh Sagar Lake, Udaipur. At our property facilities &amp;amp; services are dedicated for domestic&lt;br \\/&gt;\\r\\n&amp;amp; International guests, royal weddings &amp;amp; special events like conferences, reunions and many more. Lakend is a 4 Star Deluxe&lt;br \\/&gt;\\r\\ncategory Hotel where the management is structured well to provide valuable experience in the hospitality sector.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We offer a tranquil atmosphere coupled with pampering and relaxation in a truly extravagant lake shore surrounding with 84&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;well-appointed Lake Facing and City Facing Rooms with modern facilities, wi-fi connectivity, room automation, air-&lt;br \\/&gt;\\r\\nconditioning and heating, an array of exquisite F&amp;amp;B outlets, a pool side lake facing bar with a varied choice of cuisines from&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indian, continental and oriental in our multi-cuisine restaurant - The Urban Tadka.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Lakend\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7122\",\"SupplierName\":\"Hotel Lakend\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Honeymoon,Religious,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486013,\"Name\":\"Hotel Lakend\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5913401\",\"Long\":\"73.6763908\",\"Address\":\"Alkapuri. Fatehsagar lake shore, Ambamata, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7122,\"SupplierName\":\"Hotel Lakend\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe City View Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486015,\"Name\":\"Hotel Lakend\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7122,\"SupplierName\":\"Hotel Lakend\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe lake View\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203450\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486015,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe lake View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203452\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486015,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe lake View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203454\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486013,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486015,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe lake View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free use of Minibar&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8399\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203450\":[{\"Sequence\":[0],\"TPInvnSysId\":[203450],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203452\":[{\"Sequence\":[0],\"TPInvnSysId\":[203452],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203454\":[{\"Sequence\":[0],\"TPInvnSysId\":[203454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'181_1631963005_0.jpg,181_1631963005_1.jpg,181_1631963005_2.jpg,181_1631963005_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:53:03','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-lakend',NULL,NULL,NULL,0),(182,28582,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28582,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/comfort_inn_sapphire_1631770526.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:white&quot;&gt;The Comfort Inn Sapphire, Jaipur is a&amp;nbsp;Choice hotel international&amp;nbsp;franchise,&amp;nbsp;is a brand new, contemporary boutique 32-room&amp;nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:white&quot;&gt;hotel including 2 suites, located in the heart of the city on M.I. Road which is ultimate base to explore the famous&amp;nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:white&quot;&gt;Pink City of India! Subtle modern decoration, use of sumptuous fabrics which is truly modern and extremely&amp;nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;background-color:white&quot;&gt;elegant. The Comfort in your room will make your stay memorable one.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"I Need Trip\",\"Name\":\"Comfort Inn Sapphire\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7123\",\"SupplierName\":\"Comfort Inn Sapphire\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486035,\"Name\":\"Comfort Inn Sapphire\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9177032\",\"Long\":\"75.8111261\",\"Address\":\"C-5 Mirza Ismail Road Circle, near Panchbatti, Jayanti Market, New Colony, Jaipur, Rajasthan 302001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7123,\"SupplierName\":\"Comfort Inn Sapphire\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203579\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203580\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203581\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8410\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203579\":[{\"Sequence\":[0],\"TPInvnSysId\":[203579],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203580\":[{\"Sequence\":[0],\"TPInvnSysId\":[203580],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203581\":[{\"Sequence\":[0],\"TPInvnSysId\":[203581],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India','','12995',0,0,2,'182_1631961850_0.jpg,182_1631961850_1.jpg,182_1631961850_2.jpg,182_1631961850_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:52:46','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'comfort-inn-sapphire',NULL,NULL,NULL,0),(183,28584,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28584,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_nirbana_palace_1631772094.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Nirbana Palace\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7124\",\"SupplierName\":\"Hotel Nirbana Palace\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486038,\"Name\":\"NIRBANA PALACE A HERITAGE HOTEL\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9217918\",\"Long\":\"75.7947564\",\"Address\":\"Main D-Villa Building,Khasa Kothi Circle, MI Rd, Behind Hotel Teej, Chanakyapuri, Kanti Nagar, Bani Park, Jaipur, Rajasthan 302001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7124,\"SupplierName\":\"Hotel Nirbana Palace\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203588\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486038,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203589\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486038,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203590\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486038,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"8411\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203588\":[{\"Sequence\":[0],\"TPInvnSysId\":[203588],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203589\":[{\"Sequence\":[0],\"TPInvnSysId\":[203589],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203590\":[{\"Sequence\":[0],\"TPInvnSysId\":[203590],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India','','12995',0,0,2,'183_1632159405_0.jpg,183_1632159405_1.jpg,183_1632159405_2.jpg,183_1632159405_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2023-08-25 13:52:35','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-nirbana-palace',NULL,NULL,NULL,0),(184,28617,1,5293,0,0,0,'Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab',NULL,1,1,0,'{\"package\":{\"TPId\":28617,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/fateh_garh_resort_by_fateh_collection_1631856371.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Witness Rajasthani royalty and rich heritage up close at Fateh Garh Resort by Fateh Collection, an immaculate mix of contemporary luxury and traditionally preserved ambience.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Head to the luxury spa or infinity pool to de-stress and rejuvenate.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Soak in captivating views of Lake Pichola and Aravalli hills.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indulge in fun-filled activities like zip-lining, vintage car ride, horse riding, jeep safaris and more.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Relish authentic Rajasthani meals served at the property&amp;#39;s speciality restaurant.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Fateh Garh Resort by Fateh Collection\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7128\",\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Romantic,Shopping and Nightlife,Leisure,By Cab\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486086,\"Name\":\"Hotel Fateh Garh Udaipur (A Heritage Renaissance Resort)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"Renaissance Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486082,\"Name\":\"Hotel Fateh Garh Udaipur (A Heritage Renaissance Resort)\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5681631\",\"Long\":\"73.64120059999999\",\"Address\":\"Sisarma - Bujra, Road, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"Plunge Pool Suite\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203784\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486086,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Renaissance Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Plunge Pool Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Fateh Garh Suite with Jacuzzi\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203788\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486086,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Renaissance Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Plunge Pool Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Fateh Garh Suite with Jacuzzi\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203792\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486086,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Renaissance Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Plunge Pool Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Fateh Garh Suite with Jacuzzi\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea Coffee maker in the room&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8427\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"203784\":[{\"Sequence\":[0],\"TPInvnSysId\":[203784],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203788\":[{\"Sequence\":[0],\"TPInvnSysId\":[203788],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203792\":[{\"Sequence\":[0],\"TPInvnSysId\":[203792],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'184_1631960774_0.jpg,184_1631960774_1.jpg,184_1631960774_2.jpg,184_1631960774_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 13:52:14','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'fateh-garh-resort-by-fateh-collection',NULL,NULL,NULL,0),(185,28622,1,5293,0,0,0,'Honeymoon,Family,Heritage,Culture,Weekend,Romantic,Leisure,By Cab',NULL,1,1,0,'{\"package\":{\"TPId\":28622,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/fateh_niwas_by_fateh_collection_1631858240.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Fateh Niwas by Fateh Collection captivates a royal cosmopolitan experience of Udaipur by offering a perfect blend of traditional hospitality and international facilities.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Features 4 expansive venues for small and large celebrations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Offers magical views of The City Palace, Jag Mandir, Monsoon Palace, Lake Pichola and the Aravalli hills from the rooftop.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hosts a range of activities and experiences on the premises like horse-riding, private dinners, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Houses two swimming pools, one on the rooftop and other in the garden area.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Fateh Niwas by Fateh Collection\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7128\",\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Heritage,Culture,Weekend,Romantic,Leisure,By Cab\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486087,\"Name\":\"Fateh Niwas\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5767787\",\"Long\":\"73.6549132\",\"Address\":\"Rampura Circle, Sisarma Road, NH76A, Udaipur, Rajasthan 313031, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486088,\"Name\":\"Fateh Niwas\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5767787\",\"Long\":\"73.6549132\",\"Address\":\"Rampura Circle, Sisarma Road, NH76A, Udaipur, Rajasthan 313031, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203801\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486087,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203803\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486087,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203805\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486087,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"203801\":[{\"Sequence\":[0],\"TPInvnSysId\":[203801],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203803\":[{\"Sequence\":[0],\"TPInvnSysId\":[203803],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203805\":[{\"Sequence\":[0],\"TPInvnSysId\":[203805],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'185_1631959976_0.jpg,185_1631959976_1.jpg,185_1631959976_2.jpg,185_1631959976_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 13:51:55','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'fateh-niwas-by-fateh-collection',NULL,NULL,NULL,0),(186,28625,1,5293,0,0,0,'Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28625,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/rampratap_palace_by_fateh_collection_1631859503.jpg\",\"BookingValidUntill\":\"2021-10-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Set against the backdrop of the Aravalli hills, Rampratap Palace is a lakeview hotel combining traditional hospitality and contemporary amenities for a luxurious stay&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Indulge in a rejuvenating massage or beauty treatment at the in-house massage room.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy mesmerising lake views from the comfort of your room.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore attractions such as Moti Magri and Aravalli Vatika, a short drive from the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy delectable Indian and oriental dishes at the garden restaurant overlooking the lake.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Rampratap Palace by Fateh Collection\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7128\",\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Hill Station,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486089,\"Name\":\"Ram Pratap Palace By Fateh Collection\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5905051\",\"Long\":\"73.6779768\",\"Address\":\"5-B, Alkapuri, Fateh Sagar Lake, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486090,\"Name\":\"Ram Pratap Palace By Fateh Collection\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5905051\",\"Long\":\"73.6779768\",\"Address\":\"5-B, Alkapuri, Fateh Sagar Lake, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7128,\"SupplierName\":\"Fateh Garh Resort by Fateh Collection\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Lake Facing Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"203811\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486090,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Lake Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203813\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486090,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Lake Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"203815\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486090,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Lake Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea Coffe Maker in the room&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"203811\":[{\"Sequence\":[0],\"TPInvnSysId\":[203811],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203813\":[{\"Sequence\":[0],\"TPInvnSysId\":[203813],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"203815\":[{\"Sequence\":[0],\"TPInvnSysId\":[203815],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'186_1631958163_0.jpg,186_1631958163_1.jpg,186_1631958163_2.jpg,186_1631958163_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-30 00:00:00','2021-10-30 00:00:00',3,'India','101','2023-08-25 13:51:37','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'rampratap-palace-by-fateh-collection',NULL,NULL,NULL,0),(187,28673,1,5293,0,0,0,'Adventure,Family,Heritage,Culture,Weekend,Festivals and Events,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28673,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/the_mamas_resort_camp_1632117802.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaisalmer\",\"DestinationPlacesSysId\":12996,\"SourcePlaces\":\"Jaisalmer\",\"SourcePlaceSysId\":12996,\"AgencyName\":\"I Need Trip\",\"Name\":\"The Mamas Resort and Camp\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7132\",\"SupplierName\":\"THE MAMA\\u00e2\\u20ac\\u2122S RESORT and CAMP\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Activity\",\"PackageType\":\"Adventure,Family,Heritage,Culture,Weekend,Festivals and Events,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486167,\"Name\":\"The Mama\'s Resort and Camp\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.6189326\",\"Long\":\"70.7083152\",\"Address\":\"Dist Jaisalmer village :, Khuri, Khoohdi, Rajasthan 345034, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7132,\"SupplierName\":\"THE MAMA\\u00e2\\u20ac\\u2122S RESORT and CAMP\",\"priceaditionals\":null,\"RoomTypeName\":\"COTTAGE ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486168,\"Name\":\"The Mama\'s Resort and Camp\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.6189326\",\"Long\":\"70.7083152\",\"Address\":\"Dist Jaisalmer village :, Khuri, Khoohdi, Rajasthan 345034, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7132,\"SupplierName\":\"THE MAMA\\u00e2\\u20ac\\u2122S RESORT and CAMP\",\"priceaditionals\":null,\"RoomTypeName\":\"Swiss Luxury Tent\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204172\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486167,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGE ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Swiss Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204174\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486167,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGE ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Swiss Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204176\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486167,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGE ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486168,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Swiss Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Christmas Supplement: 20th Dec 2020 &amp;ndash; 5th Jan&lt;br \\/&gt;\\r\\n\\t2021Per Couple INR 2500&lt;br \\/&gt;\\r\\n\\tNew Year Eve Supplement: 31st Dec 2020 Per person&lt;br \\/&gt;\\r\\n\\tINR 5500\\/-&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Cultural Evening&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Camp Fire (In winters only )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Evening Tea\\/Coffee with snacks&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Buffet Dinner &amp;amp;amp; Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;2 Bottles of Mineral water&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8465\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204172\":[{\"Sequence\":[0],\"TPInvnSysId\":[204172],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204174\":[{\"Sequence\":[0],\"TPInvnSysId\":[204174],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204176\":[{\"Sequence\":[0],\"TPInvnSysId\":[204176],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaisalmer','Jaisalmer,Rajasthan,Indian Subcontinent,North India,India','','12996',0,0,2,'187_1632142904_0.jpg,187_1632142904_1.jpg,187_1632142904_2.jpg,187_1632142904_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:51:23','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'the-mamas-resort-and-camp',NULL,NULL,NULL,0),(188,28676,1,5293,0,0,0,'Honeymoon,Family,Religious,Heritage,Culture,Weekend,Festivals and Events,Romantic,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28676,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/royal_pavilion_camps_1632120076.jpg\",\"BookingValidUntill\":\"2022-01-02\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaisalmer\",\"DestinationPlacesSysId\":12996,\"SourcePlaces\":\"Jaisalmer\",\"SourcePlaceSysId\":12996,\"AgencyName\":\"I Need Trip\",\"Name\":\"Royal Pavilion Camps\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7133\",\"SupplierName\":\"Royal Pavilion Camps\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Heritage,Culture,Weekend,Festivals and Events,Romantic,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-01-02\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486170,\"Name\":\"Royal Pavilion Camps- Best Luxury Camp in Jaisalmer\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.8551542\",\"Long\":\"70.55193919999999\",\"Address\":\"Sam Desert, Jaisalmer, Kanoi, Rajasthan 345001, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7133,\"SupplierName\":\"Royal Pavilion Camps\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Swiss Tents\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204187\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Swiss Tents\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204188\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Swiss Tents\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204189\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Swiss Tents\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily&amp;nbsp;Breakfast and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camel ride on twin sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/ coffee and a platter of&amp;nbsp; &amp;nbsp;assorted veg.&amp;nbsp; Pakoda (before dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Lavish dinner in a&amp;nbsp; beautifully designed&amp;nbsp; tented&amp;nbsp; dining&amp;nbsp; hall or&amp;nbsp; under&amp;nbsp; millions&amp;nbsp; of&amp;nbsp; stars.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Live performances by the local musicians, accommodation in luxurious tent\\/s.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bonfire to sit around in the winters only.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8473\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204187\":[{\"Sequence\":[0],\"TPInvnSysId\":[204187],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204188\":[{\"Sequence\":[0],\"TPInvnSysId\":[204188],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204189\":[{\"Sequence\":[0],\"TPInvnSysId\":[204189],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaisalmer','Jaisalmer,Rajasthan,Indian Subcontinent,North India,India','','12996',0,0,2,'188_1632142529_0.jpg,188_1632142529_1.jpg,188_1632142529_2.jpg,188_1632142529_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-01-02 00:00:00','2022-01-02 00:00:00',3,'India','101','2023-08-25 13:51:04','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'royal-pavilion-camps',NULL,NULL,NULL,0),(189,28686,1,5293,0,0,0,'Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28686,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_devansh_by_inspira_1632127809.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Devansh by Inspira\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7136\",\"SupplierName\":\"Hotel Devansh by Inspira\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486186,\"Name\":\"Hotel Devansh by Inspira\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.6063697\",\"Long\":\"73.7145317\",\"Address\":\"Plot No 2, 100 Feet Road, Mewar Circle, near Essar Petrol Pump, Shobhagpura, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7136,\"SupplierName\":\"Hotel Devansh by Inspira\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Heritage Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486187,\"Name\":\"Hotel Devansh by Inspira\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.6063697\",\"Long\":\"73.7145317\",\"Address\":\"Plot No 2, 100 Feet Road, Mewar Circle, near Essar Petrol Pump, Shobhagpura, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7136,\"SupplierName\":\"Hotel Devansh by Inspira\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Family Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204306\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486186,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Heritage Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Family Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204308\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486186,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Heritage Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Family Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204310\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486186,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Heritage Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486187,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Family Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcom Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Air conditioned 27 Rooms with Hi Speed Wi-Fi.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Daily Housekeeping &amp;amp; 24 hrs Room Service&amp;nbsp; .&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;LED TV with Satellite Connection, Geyser, Mini Bar, Safety Locker, Electric Tea\\/Coffee Maker in all rooms.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;A multi cuisine restaurant with Rajasthani, Punjabi, South Indian, Italian, Chinese &amp;amp; Continental dine.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8476\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204306\":[{\"Sequence\":[0],\"TPInvnSysId\":[204306],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204308\":[{\"Sequence\":[0],\"TPInvnSysId\":[204308],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204310\":[{\"Sequence\":[0],\"TPInvnSysId\":[204310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'189_1632158336_0.jpg,189_1632158336_1.jpg,189_1632158336_2.jpg,189_1632158336_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:50:28','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-devansh-by-inspira',NULL,NULL,NULL,0),(190,28690,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28690,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_udai_palace_1632129496.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Udai Palace\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7136\",\"SupplierName\":\"Hotel Devansh by Inspira\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486194,\"Name\":\"Hotel Udai Palace - Centrally Located Budget Family Stay\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5755869\",\"Long\":\"73.6991697\",\"Address\":\"11-Agrasen Nagar, Opp. Central Bus Stand, Udaipole, Jawahar Nagar, Ganga Gali, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7136,\"SupplierName\":\"Hotel Devansh by Inspira\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Comfort Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204322\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486194,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Comfort Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204323\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486194,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Comfort Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204324\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486194,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Comfort Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air conditioned Rooms with Hi Speed Wi-Fi.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8481\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204322\":[{\"Sequence\":[0],\"TPInvnSysId\":[204322],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204323\":[{\"Sequence\":[0],\"TPInvnSysId\":[204323],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204324\":[{\"Sequence\":[0],\"TPInvnSysId\":[204324],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'190_1632157411_0.jpg,190_1632157411_1.jpg,190_1632157411_2.jpg,190_1632157411_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:50:10','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-udai-palace',NULL,NULL,NULL,0),(191,28695,1,5293,0,0,0,'Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28695,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/the_ananta_1632132662.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Udaipur\",\"SourcePlaceSysId\":28058,\"AgencyName\":\"I Need Trip\",\"Name\":\"The Ananta\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7138\",\"SupplierName\":\"The Ananta\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Religious,Heritage,Culture,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486206,\"Name\":\"The Ananta Udaipur\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5704281\",\"Long\":\"73.6261347\",\"Address\":\"Village Bujhda, Tehsil Girwa, Kodiyat Main Rd, Udaipur, Rajasthan 313031, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7138,\"SupplierName\":\"The Ananta\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Suite\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204368\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486206,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204369\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486206,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204370\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486206,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Suite\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accomodation on doubke sharing&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;25% discount on F&amp;amp;B outlets and room service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;35% discount on Spa Service and Laundary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited free beer or IMFL(7:00 pm to 8:00 pm) or Lunch(TDH)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complementry use of WIFI&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free entry at our table to plateau pub Zenith&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free recreational activity(cycling and yoga classes, mini golf) based on availability&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two kids upto 10yrs are complementry(with mattress)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"204368\":[{\"Sequence\":[0],\"TPInvnSysId\":[204368],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204369\":[{\"Sequence\":[0],\"TPInvnSysId\":[204369],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204370\":[{\"Sequence\":[0],\"TPInvnSysId\":[204370],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Udaipur','Udaipur,Rajasthan,Indian Subcontinent,North India,India','','28058',0,0,2,'191_1632159711_0.jpg,191_1632159711_1.jpg,191_1632159711_2.jpg,191_1632159711_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 13:49:47','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'the-ananta',NULL,NULL,NULL,0),(192,28742,1,5293,0,0,0,'Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28742,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/the_kothi_heritage_1632289140.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;We like to introduce ourselves from THE KOTHI HERITAGE, a 129&amp;nbsp;years old heritage property converted as a&amp;nbsp;Heritage Hotel&amp;nbsp;,renovated with all modern,contemporary&amp;nbsp;and luxurious facilities with perfect heritage touch.&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nIdeally located just 10 minutes from Jodhpur Airport and very &amp;nbsp;near to Jodhpur Railway Station and situated in the heart of the Blue City Jodhpur , welcomes you to a comfortable stay in Jodhpur with our impeccable personalized services and elegant appearance.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"The Kothi Heritage\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7142\",\"SupplierName\":\"The Kothi Heritage\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486278,\"Name\":\"The Kothi Heritage\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2785822\",\"Long\":\"73.00203979999999\",\"Address\":\"BACHRAJ JI KA BAGH, 9TH A PAL ROAD, BEHIND HDFC BANK, Sardarpura, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7142,\"SupplierName\":\"The Kothi Heritage\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486279,\"Name\":\"The Kothi Heritage\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2785822\",\"Long\":\"73.00203979999999\",\"Address\":\"BACHRAJ JI KA BAGH, 9TH A PAL ROAD, BEHIND HDFC BANK, Sardarpura, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7142,\"SupplierName\":\"The Kothi Heritage\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486280,\"Name\":\"The Kothi Heritage\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2785822\",\"Long\":\"73.00203979999999\",\"Address\":\"BACHRAJ JI KA BAGH, 9TH A PAL ROAD, BEHIND HDFC BANK, Sardarpura, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7142,\"SupplierName\":\"The Kothi Heritage\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204874\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486280,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204877\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486280,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204880\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486280,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free WIFI&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"204874\":[{\"Sequence\":[0],\"TPInvnSysId\":[204874],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204877\":[{\"Sequence\":[0],\"TPInvnSysId\":[204877],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204880\":[{\"Sequence\":[0],\"TPInvnSysId\":[204880],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'192_1632318941_0.jpg,192_1632318941_1.jpg,192_1632318941_2.jpg,192_1632318941_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:49:24','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'the-kothi-heritage',NULL,NULL,NULL,0),(193,28745,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab',NULL,1,1,0,'{\"package\":{\"TPId\":28745,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_kissan_legacy_1632290844.jpg\",\"BookingValidUntill\":\"2022-01-01\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;We introduce ourselves as a leading Hotel in Jodhpur, Rajasthan in the name of&amp;nbsp;Hotel Kissan Legacy&amp;nbsp;having 25 well decorated rooms, We established this project in June, 2019. The hotel offers luxurious accommodation that comprise 10 deluxe Standard rooms, 12 club rooms, &amp;amp; 3 suits rooms, 1 multi cuisine restaurant, &amp;amp; 1 banquet hall, &amp;nbsp;The Hotel is exclusively designed&amp;nbsp; and offering the latest amenities and facilities to meet all the requirement of our valued guests.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Kissan Legacy\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7143\",\"SupplierName\":\"Hotel Kissan Legacy\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-01-01\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486281,\"Name\":\"HOTEL KISSAN LEGACY\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.27404139999999\",\"Long\":\"73.0058189\",\"Address\":\"A-654, Residency Rd, near axis bank, Jaljog Circle, Shastri Nagar, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7143,\"SupplierName\":\"Hotel Kissan Legacy\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204883\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486281,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204884\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486281,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204885\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486281,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcom drink on Arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Brekfast and dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary tea\\/coffee maker in the room with replenishment once a day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Iron and Ironing board in the room.(On Request)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary bottles of drinking water daily, as per the occupancy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Internet Wi-Fi connectivity in all rooms&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"204883\":[{\"Sequence\":[0],\"TPInvnSysId\":[204883],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204884\":[{\"Sequence\":[0],\"TPInvnSysId\":[204884],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204885\":[{\"Sequence\":[0],\"TPInvnSysId\":[204885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'193_1632318667_0.jpg,193_1632318667_1.jpg,193_1632318667_2.jpg,193_1632318667_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-01-01 00:00:00','2022-01-01 00:00:00',3,'India','101','2023-08-25 13:49:10','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-kissan-legacy',NULL,NULL,NULL,0),(194,28747,1,5293,0,0,0,'Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28747,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_rawalkot_1632293561.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaisalmer\",\"DestinationPlacesSysId\":12996,\"SourcePlaces\":\"Jaisalmer\",\"SourcePlaceSysId\":12996,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Rawalkot\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7144\",\"SupplierName\":\"Hotel Rawalkot\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486287,\"Name\":\"Hotel Rawalkot Jaisalmer\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9177754\",\"Long\":\"70.9454981\",\"Address\":\"Plot No. 3, Hotel Complex, Jodhpur-Jaisalmer Road, Indira Colony, Jaisalmer, Rajasthan 345001, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7144,\"SupplierName\":\"Hotel Rawalkot\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204917\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486287,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204918\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486287,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204919\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486287,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free WIFI&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8509\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204917\":[{\"Sequence\":[0],\"TPInvnSysId\":[204917],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204918\":[{\"Sequence\":[0],\"TPInvnSysId\":[204918],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204919\":[{\"Sequence\":[0],\"TPInvnSysId\":[204919],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaisalmer','Jaisalmer,Rajasthan,Indian Subcontinent,North India,India','','12996',0,0,2,'194_1632918148_0.jpg,194_1632918148_1.jpg,194_1632918148_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:48:56','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-rawalkot',NULL,NULL,NULL,0),(195,28756,1,5293,0,0,0,'Religious,Heritage,Culture,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28756,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/chandra_inn_1632295814.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Situated in heart of the city. Fully renovated rooms.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHANDRA INN\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7146\",\"SupplierName\":\"CHANDRA INN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Religious,Heritage,Culture,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486292,\"Name\":\"Chandra Inn\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.266431\",\"Long\":\"73.038535\",\"Address\":\"Airport Rd, Air Force Area, Air Force Area, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7146,\"SupplierName\":\"CHANDRA INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486293,\"Name\":\"Chandra Inn\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.266431\",\"Long\":\"73.038535\",\"Address\":\"Airport Rd, Air Force Area, Air Force Area, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7146,\"SupplierName\":\"CHANDRA INN\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204955\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486293,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204957\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486293,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204959\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486293,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"204955\":[{\"Sequence\":[0],\"TPInvnSysId\":[204955],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204957\":[{\"Sequence\":[0],\"TPInvnSysId\":[204957],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204959\":[{\"Sequence\":[0],\"TPInvnSysId\":[204959],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'195_1632319563_0.jpg,195_1632319563_1.jpg,195_1632319563_2.jpg,195_1632319563_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:48:35','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'chandra-inn',NULL,NULL,NULL,0),(196,28758,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28758,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/chandra_imperial_1632297326.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Located in city center with breathtaking view of city from rooms.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHANDRA IMPERIAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7146\",\"SupplierName\":\"CHANDRA INN\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486297,\"Name\":\"Chandra Imperial\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2626284\",\"Long\":\"73.0361465\",\"Address\":\"34, Sardar Club Scheme, Ratanada, opp. Polo Ground, Air Force Area, Jodhpur, Rajasthan 342011, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7146,\"SupplierName\":\"CHANDRA INN\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486298,\"Name\":\"Chandra Imperial\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2626284\",\"Long\":\"73.0361465\",\"Address\":\"34, Sardar Club Scheme, Ratanada, opp. Polo Ground, Air Force Area, Jodhpur, Rajasthan 342011, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7146,\"SupplierName\":\"CHANDRA INN\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Executive Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204961\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486297,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204963\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486297,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204965\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486297,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8513\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204961\":[{\"Sequence\":[0],\"TPInvnSysId\":[204961],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204963\":[{\"Sequence\":[0],\"TPInvnSysId\":[204963],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204965\":[{\"Sequence\":[0],\"TPInvnSysId\":[204965],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'196_1632552742_0.jpg,196_1632552742_1.jpg,196_1632552742_2.jpg,196_1632552742_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:48:14','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'chandra-imperial',NULL,NULL,NULL,0),(197,28760,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28760,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ranbanka_palace_1632299284.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Experience royalty at its best at the exquisite Ranbanka Palace, located in the heart of Jodhpur&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Ranbanka Palace\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7147\",\"SupplierName\":\"Ranbanka Palace\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486305,\"Name\":\"Ranbanka Palace\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2835403\",\"Long\":\"73.03835959999999\",\"Address\":\"Circuit House Rd, Ajit Colony, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7147,\"SupplierName\":\"Ranbanka Palace\",\"priceaditionals\":null,\"RoomTypeName\":\"Heritage Classic \",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486306,\"Name\":\"Ranbanka Palace\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2835403\",\"Long\":\"73.03835959999999\",\"Address\":\"Circuit House Rd, Ajit Colony, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7147,\"SupplierName\":\"Ranbanka Palace\",\"priceaditionals\":null,\"RoomTypeName\":\"Heritage Premium\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204967\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486306,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Premium\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204969\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486306,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Premium\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204971\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Classic\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486306,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Heritage Premium\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mandatory New Year Eve Dinner Supplement on the 31st December 2021&lt;br \\/&gt;\\r\\n\\t&amp;bull; INR 5000 + Tax per person above 12 years (Commissionable by 10%)&lt;br \\/&gt;\\r\\n\\t&amp;bull; INR 3000 + Tax per child between 6-12 years (Commissionable by 10%)&lt;br \\/&gt;\\r\\n\\t&amp;bull; New Year Eve supplement is mandatory and will be paid by the agency.&lt;br \\/&gt;\\r\\n\\tMandatory Christmas Eve Dinner Supplement on the 24th December 2021&lt;br \\/&gt;\\r\\n\\t&amp;bull; INR 4500 + Tax per person above 12 years (Commissionable by 10%)&lt;br \\/&gt;\\r\\n\\t&amp;bull; INR 2500 + Tax per child between 6-12 years (Commissionable by 10%)&lt;br \\/&gt;\\r\\n\\t&amp;bull; Christmas Eve supplement is mandatory and will be paid by the agency.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8515\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204967\":[{\"Sequence\":[0],\"TPInvnSysId\":[204967],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204969\":[{\"Sequence\":[0],\"TPInvnSysId\":[204969],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204971\":[{\"Sequence\":[0],\"TPInvnSysId\":[204971],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'197_1632553530_0.jpg,197_1632553530_1.jpg,197_1632553530_2.jpg,197_1632553530_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:47:59','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'ranbanka-palace',NULL,NULL,NULL,0),(198,28763,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28763,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ajit_bhawan_-_a_heritage_resort_1632304653.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Stay royally as the kings would at Ajit Bhawan A Heritage Resort, Jodhpur.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoys excellent connectivity with the airport, station and some old heritage attractions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A 1920s heritage property that exudes the rustic royalty of the old charm of Rajasthan&amp;rsquo;s Majesty.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The property houses an expansive swimming pool and a spa.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Ajit Bhawan - A Heritage Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7149\",\"SupplierName\":\"Ajit Bhawan - A Heritage Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486308,\"Name\":\"Ajit Bhawan\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2829829\",\"Long\":\"73.0383231\",\"Address\":\"Circuit House Rd, Ajit Colony, Jodhpur, Rajasthan 342006, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7149,\"SupplierName\":\"Ajit Bhawan - A Heritage Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486309,\"Name\":\"Ajit Bhawan\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2829829\",\"Long\":\"73.0383231\",\"Address\":\"Circuit House Rd, Ajit Colony, Jodhpur, Rajasthan 342006, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7149,\"SupplierName\":\"Ajit Bhawan - A Heritage Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Tent\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"204980\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204982\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"204984\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Compulsory Christmas Eve Gala Dinner (24th&amp;nbsp;Dec) supplement&amp;nbsp;INR 6000 + 27.50%&amp;nbsp;Taxes per person.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Compulsory New Year&amp;rsquo;s Eve Gala Dinner (31st&amp;nbsp;Dec) supplement&amp;nbsp;INR 8500 + 27.50%&amp;nbsp;Taxes per person.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8521\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"204980\":[{\"Sequence\":[0],\"TPInvnSysId\":[204980],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204982\":[{\"Sequence\":[0],\"TPInvnSysId\":[204982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"204984\":[{\"Sequence\":[0],\"TPInvnSysId\":[204984],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'198_1632554082_0.jpg,198_1632554082_1.jpg,198_1632554082_2.jpg,198_1632554082_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:47:42','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'ajit-bhawan-a-heritage-resort',NULL,NULL,NULL,0),(199,28767,1,5293,0,0,0,'Family,Religious',NULL,1,1,0,'{\"package\":{\"TPId\":28767,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/chardham_yatra_2021_-_by_road_1632312698.jpg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;CHARDHAM YATRA 2021 - BY ROAD&amp;nbsp;&amp;nbsp;( EX DELHI )&lt;br \\/&gt;\\r\\nHARIDWAR-BARKOT-YAMUNOTRI-UTTARKASHI-GANGOTRI-GUPTKASHI-KEDARNATH-BADRINATH-RUDRAPRAYAG-RISHIKESH-HARIDWAR&lt;br \\/&gt;\\r\\nDuration: 11 Nights \\/ 12 Days&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MAJOR ATTRACTIONS :&lt;br \\/&gt;\\r\\nGanga Aarti at Har Ki Pauri- Haridwar, Tapt Kund (Hot Spring), Yamunotri Temple, Gangotri Temple, Gaurikund, Kedarnath Temple, Bhairav Baba Temple, Badrinath Temple, Mana Village (Last Indian Village), Ram Jhula and Laxman Jhula along with Panch Prayags of Garhwal Himalayas: Vishnuprayag (Alaknanda River and Dhauliganga River), Nandprayag (Alaknanda River and Nandakini River), Karnprayag (Alaknanda River, and Pindar River), Rudraprayag (Alaknanda River and Mandakini River) &amp;amp; Devprayag (Alaknanda River and Bhagirathi River).&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHARDHAM YATRA 2021 - BY ROAD\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Inner Line Permit,Cab,Sightseeing,Guided Tours\",\"PackageType\":\"Family,Religious\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486316,\"Name\":\"OYO 5844 Hotel Drive Inn\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9947109\",\"Long\":\"78.1899497\",\"Address\":\"Opposite Balaji Temple NH-58 Near, Shantikunj, Motichur, Haridwar, Uttarakhand 249411, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486315,\"Name\":\"Brinjal Hotels\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9893766\",\"Long\":\"78.18589779999999\",\"Address\":\"Rishikesh Highway, near Jain Temple, Bhoopatwala, Haridwar, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486317,\"Name\":\"Hari Heritage\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.993439\",\"Long\":\"78.1886656\",\"Address\":\"1, Shamlok, Bhupatwala, opposite Shantikunj, Motichur, Haridwar, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486318,\"Name\":\"Godwin Hotel Haridwar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.001727\",\"Long\":\"78.1896\",\"Address\":\"Rishikesh Rd, opp. Shanti Kunj, Haripur Kalan, Haridwar, Uttarakhand 249205, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477616,\"Name\":\"Hotel GODWIN\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9855856\",\"Long\":\"78.18779219999999\",\"Address\":\"Rishikesh Road, Opp Shanti Kunj, Haridwar, Uttarakhand 249205\"},\"Images\":{\"Image\":[{\"ImagId\":4818124,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_01618209023.jpg\"},{\"ImagId\":4818125,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_11618209023.jpg\"},{\"ImagId\":4818126,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_21618209023.jpg\"}]},\"CityId\":11530,\"Brief\":\"&lt;p&gt;The&Acirc;&nbsp;&lt;em&gt;Godwin Hotel&lt;\\/em&gt;&Acirc;&nbsp;location is on main&Acirc;&nbsp;&lt;em&gt;Haridwar&lt;\\/em&gt;&Acirc;&nbsp;Dehradun highway but it&amp;#39;s a bit far from Har ki paudi.&Acirc;&nbsp;On the outskirts of Rajaji National Park, and 3.1 km from Motichur Railway Station, this modern hotel is 10 km from both the Mansa Devi Temple and the Chandi Devi Temple.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_477616\\/5293_90b40c3480788e5be7f955920b0a063b1618209023.jpg\",\"AccoAminitiesMask\":\"1101110100001101100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":34474,\"Title\":\"Barkot\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486320,\"Name\":\"Queen Hill\",\"Star\":\".00\",\"Rating\":\"3.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8063045\",\"Long\":\"78.2199492\",\"Address\":\"NH 94, Barkot, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486321,\"Name\":\"Hotel Aashiyana\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.800985\",\"Long\":\"78.226019\",\"Address\":\"NH-94, Rudi Ghati, Barkot - Yamunotri Rd, Uttarkashi, Uttarakhand 249171, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486322,\"Name\":\"Camp Nirvana Yamunotri\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.810383\",\"Long\":\"78.20873999999999\",\"Address\":\"GANGANI, Barkot - Yamunotri Rd, Highway, Barkot, Uttarakhand 249181, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486323,\"Name\":\"Rigveda Resort Barkot Yamunotri Uttarkashi\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8174015\",\"Long\":\"78.2478794\",\"Address\":\"Nandgaon, Barkot yamnotri road, Chhatanga, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":28264,\"Title\":\"Uttarkashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486325,\"Name\":\"OYO 26126 Hotel Jahnavi\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7355016\",\"Long\":\"78.4006564\",\"Address\":\"Uttarkashi - Gangotri Rd, Uttarkashi, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486326,\"Name\":\"Mahima resort\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7478494\",\"Long\":\"78.48374059999999\",\"Address\":\"Uttarkashi - Gangotri Rd, Netala, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486327,\"Name\":\"Hotel Great Ganga\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.75259999999999\",\"Long\":\"78.45364599999999\",\"Address\":\"30&Acirc;&deg;45&#039;09.4&quot;N 78&Acirc;&deg;27&#039;13.1&quot;E, Gangori, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486328,\"Name\":\"OYO 23161 Hotel Akash Ganga\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7363798\",\"Long\":\"78.4002946\",\"Address\":\"Near RTO Office Barethi chungi, Uttarkashi - Gangotri Rd, Uttarkashi, Uttarakhand 249193, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":34396,\"Title\":\"Guptakashi\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":2001,\"Title\":\"Badrinath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486335,\"Name\":\"badrish Hotel\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2749816\",\"Long\":\"79.2352425\",\"Address\":\"Badrinath Rd, Uttarakhand 246446, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486336,\"Name\":\"Hotel Bhagat\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.6213873\",\"Long\":\"79.55940009999999\",\"Address\":\"National Highway 58, Chamoli, Uttarakhand 246443, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486337,\"Name\":\"Hotel Yoga Badrinath\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7407349\",\"Long\":\"79.4960658\",\"Address\":\"National Highway 7, Bus Stand to Badrinath Temple Access Path, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486338,\"Name\":\"New Hotel Snow Crest\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.740506\",\"Long\":\"79.496166\",\"Address\":\"Main Road Badrinath Dham, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":34295,\"Title\":\"Rudraprayag\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486339,\"Name\":\"Hotel Srikot Castle\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.225074\",\"Long\":\"78.8204516\",\"Address\":\"Srikot, Srinagar Garhwal, Srikot, Srinagar, Uttarakhand 246174, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486340,\"Name\":\"Hotel Tulsi\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2805662\",\"Long\":\"78.9719743\",\"Address\":\"NH 58, Bhanadhar, Malyasu Malla, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486341,\"Name\":\"Shangrila Resort\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2705082\",\"Long\":\"78.955366\",\"Address\":\"Rahatoli, Uttarakhand 246475, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486342,\"Name\":\"Samrat Resort\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2549456\",\"Long\":\"78.92189739999999\",\"Address\":\"Badrinath Highway Naugaon, Rudraprayag, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21045,\"Title\":\"Janaki chatti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21046,\"Title\":\"Jamunabai Kund\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21047,\"Title\":\"Yamnuaji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1381,\"Title\":\"Prakateshwar Cave\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5962\\/thumb\\/Prakateshwar Cave_789.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":182,\"Title\":\"Bhagirathi River\",\"Description\":\"Bhagirathi River originates from Gaumukh, which is located at the base of Gangotri and Khatilang glaciers in Uttarakhand. Gaumukh is about 18 km from the town of Gangotri, and is regarded as the birth place of Ganga on earth. At Gangotri, the revered Ganga Goddess is worshipped in the Gangotri temple, which is one of the Chota Char Dham temples in Garhwal. The river embarks on a course extending for about 205 km, in which it is joined by small streams and rivers. Bhagirathi ends its journey when its forms a union with Alaknanda to create Ganga at Devprayag.\",\"CurrencyType\":0,\"CityId\":10105,\"CityName\":\"Gangotri\",\"Lat\":30.9946945,\"Long\":78.9398402,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5098\\/thumb\\/Bhagirathi River_913.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21048,\"Title\":\"mandakini river\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34396,\"CityName\":\"Guptakashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3483,\"Title\":\"Badrinath Temple Shakti Colony Dehradun Uttarakhand India\",\"Description\":\"Badrinath Temple is one of the holiest Hindu pilgrimage destinations in India. It is one of the most important Dhams.According to legend Shankar discovered a black stone image of Lord Badrinarayan made of Saligram stone in the Alaknanda River. He originally enshrined it in a cave near the Tapt Kund hot springs.In the sixteenth century the King of Garhwal moved the murti to the present temple.The temple  is located at an altitude of about 3415 metres above sea level and it is approximately 50 ft tall with a small cupola on top covered with a gold gilt roof.The facade is built of stone with arched windows. A broad stairway leads up to a tall arched gateway which is the main entrance.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.3371623,\"Long\":78.0410975,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Badrinath_Temple,_Shakti_Colon_2001_1518249460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21049,\"Title\":\"RAM JHULA\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21050,\"Title\":\"Laxman hjula\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":21051,\"Title\":\"trivet ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205015\",\"Title\":\"Delhi- Haridwar (210 Kms, 5-6 Hrs) \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival in Delhi Driver will meet you at&amp;nbsp;Delhi Railway station\\/ Airport and drive to Haridwar upon arrival check into hotel, evening visit Har &amp;ndash;Ki-&amp;nbsp;Pauri&amp;nbsp;for Ganga Aarti, overnight stay at Haridwar hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486316,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486318,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":647,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205019\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205023\",\"Title\":\"Haridwar &acirc;&euro;&ldquo; Barkot (180 Kms\\/ 7-8 hrs)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After&amp;nbsp;breakfast&amp;nbsp;will&amp;nbsp;drive to&amp;nbsp;Barkot&amp;nbsp;via Dehradun and Mussoorie,&amp;nbsp;reach&amp;nbsp;Barkot&amp;nbsp;by evening, upon arrival check into&amp;nbsp;Barkot&amp;nbsp;Hotel. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486322,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205027\",\"Title\":\"Barkot &acirc;&euro;&ldquo; Yamunotri &acirc;&euro;&ldquo; Barkot (30 kms Drive by Coach\\/ 12 Kms by Jeep at your own \\/ 6 kms trek.)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning after an early breakfast,&amp;nbsp;start&amp;nbsp;30 km drive towards Hanuman&amp;nbsp;Chatti&amp;nbsp;where you can hire Jeeps&amp;nbsp;(own Cost)&amp;nbsp;to&amp;nbsp;JankiChatti. Upon arrival, begin your 6 km trek towards Yamunotri. After&amp;nbsp;taking bath in &amp;ldquo;Jamunabai&amp;nbsp;Kund&amp;rdquo; and after having Darshan of &amp;ldquo;Yamnuaji&amp;rdquo;&amp;nbsp;retrun&amp;nbsp;to&amp;nbsp;Hanumanchatti.&amp;nbsp;From here our driver will take you back to&amp;nbsp;Barkot.&amp;nbsp;Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486321,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486322,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21045,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3491,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":21046,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":21047,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205031\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205035\",\"Title\":\"Barkot &acirc;&euro;&ldquo; Uttarkashi (Drive 100 Kms, 04-05 hrs)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Today will drive to Uttarkashi. On the way&amp;nbsp;visit the&amp;nbsp;Prakateshwar&amp;nbsp;Cave, a natural limestone cave that is famous for having formations resembling the holy&amp;nbsp;Shivling. Upon arrival at&amp;nbsp;Uttarkashi, check into a hotel. In the evening visit the Vishwanath Temple. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Uttarkashi:&amp;nbsp;It is situated at the bank of the Bhagirathi River and is bestowed with various famous shrines. To name a few- Vishwanath,&amp;nbsp;Ekadash&amp;nbsp;Rudra,&amp;nbsp;Bhairav,&amp;nbsp;Gyaneshwar&amp;nbsp;and&amp;nbsp;KutetiDevi Temple.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486325,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486326,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486328,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1381,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1888,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205039\",\"Title\":\"Uttarkashi &acirc;&euro;&ldquo; Gangotri &acirc;&euro;&ldquo; Uttarkashi (100 km)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Drive to Gangotri early in the morning. Once reached, take a holy dip in the pious water of the holy river Ganges, (also known as Bhagirathi). Perform the respective rituals and bask in the splendid and serene surroundings of the place. In the afternoon drive back to&amp;nbsp;Uttarakashi. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486325,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486326,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486327,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486328,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205043\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205047\",\"Title\":\"Uttarkashi &acirc;&euro;&ldquo; Guptkashi (223 kms. Drive 9 &acirc;&euro;&ldquo; 10 hrs)\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;After an early breakfast, drive to Guptkashi.&amp;nbsp;Enroute&amp;nbsp;you can see beautiful river&amp;nbsp;Mandakini&amp;nbsp;at&amp;nbsp;Tilwara.&amp;nbsp;On arrival in Guptkashi&amp;nbsp;check in to&amp;nbsp;the hotel. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21048,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205051\",\"Title\":\"Guptkashi &acirc;&euro;&ldquo; Kedarnath- Guptkashi (30 Km Drive and 18 Km trek one way or By Helicopter)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Today Early morning Drive to visit Shri Kedarnath ji. You can go&amp;nbsp;By&amp;nbsp;trek which is 18 Km one way or can go by Helicopter (at own cost). Enjoy the Darshan of Holy Shrine. Later back to Guptkashi. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":859,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205055\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205059\",\"Title\":\"Guptkashi- Badrinath ji (200 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After&amp;nbsp;breakfast&amp;nbsp;Drive to Shri Badrinath ji. On arrival Check into hotel. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486335,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486336,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486337,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486338,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1727,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205063\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205067\",\"Title\":\"Badrinath ji &acirc;&euro;&ldquo;Rudraprayag (160 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Today take&amp;nbsp;holy dip in the Tapt&amp;nbsp;Kund,&amp;nbsp;and&amp;nbsp;visit&amp;nbsp;Shri Badrinath ji temple.&amp;nbsp;Later Drive to Rudraprayag. On arrival Check in Hotel.&amp;nbsp;Overnight&amp;nbsp;stay at hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486339,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486342,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205071\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205075\",\"Title\":\"Rudraprayag &acirc;&euro;&ldquo; Haridwar via Deopryag &amp; Rishikesh (200 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;After&amp;nbsp;breakfast drive to Haridwar via&amp;nbsp;Deopryag&amp;nbsp;(Confluence of Bhagirathi&amp;nbsp;&amp;amp; Alaknanda Rivers). Later visit&amp;nbsp;Rishikesh, Ram&amp;nbsp;Jhula, Laxman&amp;nbsp;Jhula, Triveni Ghat,&amp;nbsp;Saptrishi&amp;nbsp;aashrametc, and evening drive to&amp;nbsp;Haridwar. On arrival Check in Hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486316,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21049,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":21050,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":21051,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205079\",\"Title\":\"Haridwar- Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;After&amp;nbsp;breakfast checkout from hotel and drop to&amp;nbsp;Delhi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;25% of the package cost at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;50% payment 30 days prior to departure date&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment,15 days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;45 DAYS PRIOR TO ARRIVAL - 10% OF TOTAL TOUR COST -&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 DAYS PRIOR TO ARRIVAL - 25% OF TOTAL TOUR COST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;BETWEEN 15 &amp;amp; 29 DAYS PRIOR TO TOUR - 50% OF TOTAL TOUR COST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;BETWEEN 14 &amp;amp; 7 DAYS PRIOR TO TOUR. 75% OF TOTAL TOUR COST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;WITHIN 7 DAYS PRIOR TO TOUR. - 100%&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST 5%&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal at Shri Kedarnath ji&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Medical and travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Helicopter tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Room heater Charges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expenses such as laundry, telephone calls, tips &amp;amp; gratuity, mineral water, soft &amp;amp; hard drinks, porterage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned in the inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance Fees &amp;amp; Guide charges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cost arising due to natural calamities like, landslides, road blockage, political disturbances (strikes),&amp;nbsp;etc&amp;nbsp;(to be borne by the client, who is directly payable on the spot)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in Airlines taxes or fuel price at the time of departure, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Still camera\\/video camera charger.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation on Twin\\/ Triple Room sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner at Hotel.&amp;nbsp;(Veg meals)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation as per Vehicle booked&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All toll Tax, Parking and Driver allowances&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205015\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205015],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205019\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205019],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205023\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205023],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205027\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205027],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205031\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205031],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205035\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205035],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205039\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205039],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205043\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205043],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205047\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205047],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205051\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205051],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205055\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[205055],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205059\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[205059],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205063\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[205063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205067\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[205067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205071\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[205071],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205075\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[205075],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205079\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[205079],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Haridwar,Barkot,Uttarkashi,Guptakashi,Badrinath,Rudraprayag','Haridwar,Uttarakhand,Indian Subcontinent,North India,India,Barkot,Uttarkashi,Guptakashi,Badrinath,Rudraprayag,Gangotri,Kedarnath,Yamunotri','','11530,34474,28264,34396,2001,34295',0,0,10,'199_1632467298_0.jpg,199_1632467298_1.jpg,199_1632467298_2.jpg,199_1632467298_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"},{\"day\":9,\"images\":\"\"},{\"day\":10,\"images\":\"\"},{\"day\":11,\"images\":\"\"}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 13:47:18','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'chardham-yatra-2021-by-road',NULL,NULL,NULL,0),(200,28777,1,5293,0,0,0,'Family,Religious',NULL,1,1,0,'{\"package\":{\"TPId\":28777,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/do_dham_yatra_2021_-_by_road_1632313795.jpeg\",\"BookingValidUntill\":\"2021-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;DO DHAM YATRA 2021 - BY ROAD&amp;nbsp;&amp;nbsp;( EX DELHI )&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nDelhi- Haridwar&amp;nbsp;&amp;ndash; Guptkashi&amp;nbsp; &amp;ndash; Kedarnath- Badrinath ji - Rudraprayag - Haridwar via Deopryag &amp;amp; Rishikesh&lt;br \\/&gt;\\r\\nDuration: 06 Nights \\/ 07 Days&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;MAJOR ATTRACTIONS :&lt;br \\/&gt;\\r\\nGanga Aarti at Har Ki Pauri- Haridwar, Tapt Kund (Hot Spring),&amp;nbsp; Kedarnath Temple, Bhairav Baba Temple, Badrinath Temple, Mana Village (Last Indian Village), Ram Jhula and Laxman Jhula along with Panch Prayags of Garhwal Himalayas: Vishnuprayag (Alaknanda River and Dhauliganga River), Nandprayag (Alaknanda River and Nandakini River), Karnprayag (Alaknanda River, and Pindar River), Rudraprayag (Alaknanda River and Mandakini River) &amp;amp; Devprayag (Alaknanda River and Bhagirathi River).&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DO DHAM YATRA 2021 - BY ROAD\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Cab,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Family,Religious\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486316,\"Name\":\"OYO 5844 Hotel Drive Inn\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9947109\",\"Long\":\"78.1899497\",\"Address\":\"Opposite Balaji Temple NH-58 Near, Shantikunj, Motichur, Haridwar, Uttarakhand 249411, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":420384,\"Name\":\"Brinjal Hotel -Haridwar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.989466\",\"Long\":\"78.18588\",\"Address\":\"Haridwar-Rishikesh Road, Bhupatwala, , Bhupatwala, HARIDWAR, UTTARANCHAL, India, Pin-249403, 249403\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"Brinjal Hotel -Haridwar is a popular hotel providing comfortable accommodation to the guests in Haridwar. Offering Wi-Fi facility to the guests, this hotel is 29 km from the Jolly Grant Airport.  This hotel offers 40 spacious and comfortable rooms for accommodation in Haridwar. Each room is equipped with amenities like television, attached bathroom with hot and cold running water, mini-bar, electronic safe and air-conditioner.    null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/maw\\/uym\\/gbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486317,\"Name\":\"Hari Heritage\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.993439\",\"Long\":\"78.1886656\",\"Address\":\"1, Shamlok, Bhupatwala, opposite Shantikunj, Motichur, Haridwar, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486318,\"Name\":\"Godwin Hotel Haridwar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.001727\",\"Long\":\"78.1896\",\"Address\":\"Rishikesh Rd, opp. Shanti Kunj, Haripur Kalan, Haridwar, Uttarakhand 249205, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486315,\"Name\":\"Brinjal Hotels\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9893766\",\"Long\":\"78.18589779999999\",\"Address\":\"Rishikesh Highway, near Jain Temple, Bhoopatwala, Haridwar, Uttarakhand 249401, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":34396,\"Title\":\"Guptakashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486330,\"Name\":\"HOTEL RAJ PALACE DEVIDHAR GUPTKASHI\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.5539242\",\"Long\":\"79.0643564\",\"Address\":\"Kedarnath Road, Devidhar, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486351,\"Name\":\"OYO 60212 Hotel Vijaya Palace\",\"Star\":\".00\",\"Rating\":\"1.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.5252606\",\"Long\":\"79.08551179999999\",\"Address\":\"1 Kedarnath road, Kalimath, band, Guptkashi, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":465698,\"Name\":\"Overnight Train\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"0\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":477637,\"Name\":\"Camp Nirvana Guptkashi\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"30.53059770000001\",\"Long\":\"79.0741101\",\"Address\":\"Rudrapur, Jakhdhar Road, Guptkashi, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486352,\"Name\":\"Villa Aadhya\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.55440059999999\",\"Long\":\"79.0623162\",\"Address\":\"Kedarnath Rd, Khumera, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":2001,\"Title\":\"Badrinath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486353,\"Name\":\"Hotel Badrish\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.6185403\",\"Long\":\"79.5624723\",\"Address\":\"Ganga Palace, Govindghat, Village &amp; P.O. Pandukeshwar Disttrict, Govind Ghat, Uttarakhand 246442, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486354,\"Name\":\"Hotel Charan Paduka\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7381089\",\"Long\":\"79.4952575\",\"Address\":\"Behind, Bus Stand, Mana Pass Rd, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486355,\"Name\":\"Hotel Yoga Badrinath\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7407349\",\"Long\":\"79.4960658\",\"Address\":\"National Highway 7, Bus Stand to Badrinath Temple Access Path, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486356,\"Name\":\"New Hotel Snow Crest\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.740506\",\"Long\":\"79.496166\",\"Address\":\"Main Road Badrinath Dham, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":34295,\"Title\":\"Rudraprayag\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486357,\"Name\":\"Hotel Srikot Castle\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.225074\",\"Long\":\"78.8204516\",\"Address\":\"Srikot, Srinagar Garhwal, Srikot, Srinagar, Uttarakhand 246174, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486358,\"Name\":\"Hotel Tulsi\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2805662\",\"Long\":\"78.9719743\",\"Address\":\"NH 58, Bhanadhar, Malyasu Malla, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486359,\"Name\":\"Shangrila Resort\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2705082\",\"Long\":\"78.955366\",\"Address\":\"Rahatoli, Uttarakhand 246475, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486360,\"Name\":\"Samrat Resort\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.2549456\",\"Long\":\"78.92189739999999\",\"Address\":\"Badrinath Highway Naugaon, Rudraprayag, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205130\",\"Title\":\"Delhi- Haridwar (220 Kms)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival in Delhi Railway station\\/ Airport our driver will meet and drive to Haridwar. On arrival check into hotel. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486316,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":420384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486318,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205134\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205138\",\"Title\":\"Haridwar &acirc;&euro;&ldquo; Guptkashi (220 kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Today Morning afterbreakfast, drive to Guptkashi&amp;nbsp;via Devprayag. reach Guptkashi by evening. On arrival check into hotel. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486330,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486352,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205142\",\"Title\":\"Guptkashi &acirc;&euro;&ldquo; Kedarnath- Guptkashi (30 Km Drive and 18 Km trek one way or By Helicopter)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Today Early morning Drive to visit Shri Kedarnath ji. You can go By trek which is 18 Km one way or can go by Helicopter (at own cost). Enjoy the Darshan of Holy Shrine. Later back to Guptkashi. Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486330,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":465698,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":477637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486352,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":859,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205146\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205150\",\"Title\":\"Guptkashi- Badrinath ji (200 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast Drive to Shri Badrinath ji. On arrival Check into hotel. Overnight stay at Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486354,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486355,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486356,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205154\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205158\",\"Title\":\"Badrinath ji &acirc;&euro;&ldquo;Rudraprayag (160 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today take holy dip in the Tapt Kund, and visit Shri Badrinath ji temple. Later Drive to Rudraprayag. On arrival Check in Hotel. Overnight stay at hotel. &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486357,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486358,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486359,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486360,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205162\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205166\",\"Title\":\"Rudraprayag &acirc;&euro;&ldquo; Haridwar via Deopryag &amp; Rishikesh (200 Kms)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast drive to Haridwar via Deopryag (Confluence of Bhagirathi &amp;amp; Alaknanda Rivers). Later visit Rishikesh, Ram Jhula, Laxman Jhula, Triveni Ghat, Saptrishi aashram etc, and evening drive to Haridwar. On arrival Check in Hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486316,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486318,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205170\",\"Title\":\"Haridwar- Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast checkout from hotel and drive back to Delhi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205130\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205130],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205134\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205134],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205138\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205138],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205142\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205142],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205146\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205146],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205150\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205150],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205154\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205154],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205158\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205158],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205162\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205162],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205166\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205166],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"205170\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205170],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Haridwar,Guptakashi,Badrinath,Rudraprayag','Haridwar,Uttarakhand,Indian Subcontinent,North India,India,Guptakashi,Badrinath,Rudraprayag,Kedarnath','','11530,34396,2001,34295',0,0,6,'200_1633603052_0.jpg,200_1633603052_1.jpg,200_1633603052_2.jpg,200_1633603052_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2023-08-25 00:00:00','2021-10-31 00:00:00','2021-10-31 00:00:00',3,'India','101','2023-08-25 13:47:00','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'do-dham-yatra-2021-by-road',NULL,NULL,NULL,0),(201,28795,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28795,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_lariya_resorts_1632461906.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Lariya Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7151\",\"SupplierName\":\"Hotel Lariya Resorts\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486383,\"Name\":\"Lariya Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7151,\"SupplierName\":\"Hotel Lariya Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486384,\"Name\":\"Lariya Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2531522\",\"Long\":\"72.94197\",\"Address\":\"Pal - Chopasni Bye pass Road, Chopasani Rd, Gopal Bari, Jodhpur, Rajasthan 342009, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7151,\"SupplierName\":\"Hotel Lariya Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"Garden Facing Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205256\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Garden Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205258\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Garden Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205260\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486384,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Garden Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8553\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205256\":[{\"Sequence\":[0],\"TPInvnSysId\":[205256],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205258\":[{\"Sequence\":[0],\"TPInvnSysId\":[205258],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205260\":[{\"Sequence\":[0],\"TPInvnSysId\":[205260],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'201_1632465885_0.jpg,201_1632465885_1.jpg,201_1632465885_2.jpg,201_1632465885_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:46:45','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-lariya-resorts',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (202,28803,1,5293,0,0,0,'Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28803,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/treehouse_chail_villas_1632476053.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Treehouse Chail Villas offers breathtaking panoramic views of the majestic valleys with clear views of Shimla and Kasauli. Chail, the most beautiful hill station, is isolated in Himachal Pradesh, spreading across 3 hills. Situated over the hilltop and nestled amidst pristine apple and peach orchards, travelers looking for best&amp;nbsp;Chail hotels&amp;nbsp;are overwhelmed at&amp;nbsp;Treehouse Chail Villas. Pleasant hill climate, pristine air and deodar covered valleys all year round are just a few of the nature&amp;rsquo;s bliss awaiting them.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Treehouse&amp;nbsp;Chail Villas, life is a fiesta with numerous in house temptations and fun filled outdoor adventures. Have a refreshing morning walk in the natural fitness trail of lush green deodars, pine, wild roses and oaks while the young ones have fun in thrilling outdoor adventures like Valley Crossing, Burma Bridge and a trip to&amp;nbsp;Chail Sanctuary&amp;nbsp;housing leopard, Indian muntjac, goral, porcupine, wild boar, and Himalayan black bear. In the evenings, unwind over a glass of your favorite spirit while romancing the twinkling Shimla.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering spacious cottage styled rooms, gourmet food and plethora of activities, there is no place better than Treehouse&amp;nbsp;Chail Villas&amp;nbsp;to spend your holiday in a hill station. For families and groups looking for hill station packages; for couples wishing for a&amp;nbsp;honeymoon suite, for corporate opting to hold a conference; two souls looking for a destination wedding; School groups looking for an adventure trip for students, Treehouse Chail Villas has&amp;nbsp;attractive special offers&amp;nbsp;tailor made for each!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chail undoubtedly is voted as one of the&amp;nbsp;best hill stations in India. This&amp;nbsp;hill paradise&amp;nbsp;is accessible from Delhi (362 km) and Chandigarh (110 km) with excellent air, road and rail connectivity.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Chail\",\"DestinationPlacesSysId\":5691,\"SourcePlaces\":\"Chail\",\"SourcePlaceSysId\":5691,\"AgencyName\":\"I Need Trip\",\"Name\":\" Treehouse Chail Villas\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7153\",\"SupplierName\":\" Treehouse Chail Villas\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5691,\"Title\":\"Chail\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486391,\"Name\":\"Treehouse Chail Villas\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9908147\",\"Long\":\"77.20853939999999\",\"Address\":\"Hill Top, Bhalawag, Post Office Janedghat, Sub Tehsil, Junga, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7153,\"SupplierName\":\" Treehouse Chail Villas\",\"priceaditionals\":null,\"RoomTypeName\":\"Apple Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":481762,\"Name\":\"Treehouse Chail Villas\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Hill Top, Bhalawag, Post Office Janedghat, Sub Tehsil Junga, Distt. Shimla, Himachal Pradesh\"},\"Images\":{\"Image\":[{\"ImagId\":4818382,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481762\\/5293_01620031423.jpg\"}]},\"CityId\":5691,\"Brief\":\"&lt;p&gt;Perched on the height of 7000 ft. amidst the Shivalik Mountains, flanked by Deodar and Pine Trees, the 32 rooms Treehouse Chail Villas is an elegant and quaint resort for those looking to take a break from a city life and simply unwind. The breath taking panoramic views of the majestic valleys with clear views of Shimla on a starry night, Treehouse Chail Villas is built around a central courtyard with rooms and small niches overlooking the valley or verdant greens of the Apple Orchards.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481762\\/5293_b8c8ba88ee1db7bb2ea5407483221aa31620031423.jpg\",\"AccoAminitiesMask\":\"1110000000001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":7153,\"SupplierName\":\" Treehouse Chail Villas\",\"priceaditionals\":null,\"RoomTypeName\":\"Apple Executive Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205310\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486391,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Valley View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205313\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486391,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Valley View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205316\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486391,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Apple Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Valley View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8564\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205310\":[{\"Sequence\":[0],\"TPInvnSysId\":[205310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205313\":[{\"Sequence\":[0],\"TPInvnSysId\":[205313],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205316\":[{\"Sequence\":[0],\"TPInvnSysId\":[205316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chail','Chail,Himachal Pradesh,Indian Subcontinent,North India,India','','5691',0,0,2,'202_1633602127_0.jpg,202_1633602127_1.jpg,202_1633602127_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:46:31','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'treehouse-chail-villas',NULL,NULL,NULL,0),(203,28807,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Cruise,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28807,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/enchanting_bangaram_island_package_1632480132.jpg\",\"BookingValidUntill\":\"2021-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Bangaram is an atoll in the Union Territory of Lakshadweep, India. The atoll has a roughly&lt;br \\/&gt;\\r\\nrectangular shape and is 8.1 km in length with a maximum width of 4.2 km. It is located over 400 km&lt;br \\/&gt;\\r\\n(250 mi) off Kochi in the Indian Ocean. The atoll is about 7 km (4.3 mi) northeast of the island of&lt;br \\/&gt;\\r\\nAgatti and 25 km (16 mi) to the southeast of Perumal Par, in the western Lakshadweep. Bangaram&lt;br \\/&gt;\\r\\natoll is connected to the reef of Agatti through a shallow submarine ridge. The people can treat&lt;br \\/&gt;\\r\\nthemselves to a large variety of dives around Bangaram. Bangaram lagoon is a shallow sandbank&lt;br \\/&gt;\\r\\ndive ranging 05-10 meter which is best suited for introductory dives.&lt;br \\/&gt;\\r\\nBesides Bangaram there are three island in a same atoll namely Thinnakara, Parali 1 and parali 2 that&lt;br \\/&gt;\\r\\ncan be accessed by outboard or sailing from Bangaram.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Lakshadweep\",\"DestinationPlacesSysId\":14840,\"SourcePlaces\":\"Lakshadweep\",\"SourcePlaceSysId\":14840,\"AgencyName\":\"I Need Trip\",\"Name\":\"ENCHANTING BANGARAM ISLAND PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5671\",\"SupplierName\":\"CONTENTO TOURISM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Intercity Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Cruise,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2263,\"Title\":\"Bangaram Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486393,\"Name\":\"Bangaram Resort \\u00e0\\u00a4\\u00ac\\u00e0\\u00a4\\u201a\\u00e0\\u00a4\\u2014\\u00e0\\u00a4\\u00be\\u00e0\\u00a4\\u00b0\\u00e0\\u00a4\\u00ae \\u00e0\\u00a4\\u00b0\\u00e0\\u00a4\\u00bf\\u00e0\\u00a4\\u00b8\\u00e0\\u00a5\\u2039\\u00e0\\u00a4\\u00b0\\u00e0\\u00a5\\u008d\\u00e0\\u00a4\\u0178\\u00e0\\u00a5\\u008d\\u00e0\\u00a4\\u00b8\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.941667\",\"Long\":\"72.288136\",\"Address\":\"W7RQ+M76, Bangaram, Lakshadweep 682553, India\"},\"Images\":[],\"CityId\":2263,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"standard ac room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205319\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205320\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205321\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205322\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Bar , water sports, dive , nature expences , ayurveda , All water sports and extra&amp;nbsp;activties are direct payable at the resort only. Please note the there are no credit card&amp;nbsp;or debit card facilities are at the resort. Hence please keep the extra payment by rupee&lt;br \\/&gt;\\r\\n\\tor dollar or euros.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;05% GST Extra&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;ENTRY PERMITS;&lt;br \\/&gt;\\r\\n\\tIndian nationals we require any of the photo ID&lt;br \\/&gt;\\r\\n\\tForeign&amp;nbsp;nationals we require valid passport and tourist visa copy.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation &amp;ndash; Standard Hut -&amp;nbsp;Standard Hut basic&amp;nbsp;(double \\/ twin beds)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All meals &amp;ndash; All meals included this plan &amp;ndash; Bangaram have 01 main restaurant, open beach&amp;nbsp;barbeque&amp;nbsp;and beach bar &amp;ndash; All three meals are buffet .Tea coffee and snacks are serving at main restaurant in&amp;nbsp;morning and evening.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Boat Transfer &amp;ndash;Agatti &amp;ndash; Bangaram &amp;ndash; Agatti &amp;ndash; Minimum 45 min to take one way &amp;ndash; daily boats after the&amp;nbsp;flight from Agatti &amp;ndash; before flight from Bangaram.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Land transfer -&amp;nbsp;Agatti airport to Boat jetty and back &amp;ndash; non ac Maruthi Omni \\/ Tata winger \\/ Tata&amp;nbsp;indica etc&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry permit &amp;ndash; All the passengers have to carry the entry permit for visit Lakshadweep.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We obtain the entry permit in prior from Lakshadweep office, Cochin and send to you by email or&amp;nbsp;hand over the hard copy at airport.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8567\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205319\":[{\"Sequence\":[0],\"TPInvnSysId\":[205319],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205320\":[{\"Sequence\":[0],\"TPInvnSysId\":[205320],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205321\":[{\"Sequence\":[0],\"TPInvnSysId\":[205321],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205322\":[{\"Sequence\":[0],\"TPInvnSysId\":[205322],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bangaram Island','Bangaram Island,Lakshadweep Islands,Indian Subcontinent,South India,India,Lakshadweep','','2263',0,0,3,'203_1632559259_0.jpg,203_1632559259_1.jpg,203_1632559259_2.jpg,203_1632559259_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-31 00:00:00','2021-12-31 00:00:00',3,'India','101','2023-08-25 13:45:54','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'enchanting-bangaram-island-package',NULL,NULL,NULL,0),(204,28815,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28815,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/mesmerizin_bangaram_island_package_1632480409.jpg\",\"BookingValidUntill\":\"2021-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Bangaram is an atoll in the Union Territory of Lakshadweep, India. The atoll has a roughly&lt;br \\/&gt;\\r\\nrectangular shape and is 8.1 km in length with a maximum width of 4.2 km. It is located over 400 km&lt;br \\/&gt;\\r\\n(250 mi) off Kochi in the Indian Ocean. The atoll is about 7 km (4.3 mi) northeast of the island of&lt;br \\/&gt;\\r\\nAgatti and 25 km (16 mi) to the southeast of Perumal Par, in the western Lakshadweep. Bangaram&lt;br \\/&gt;\\r\\natoll is connected to the reef of Agatti through a shallow submarine ridge. The people can treat&lt;br \\/&gt;\\r\\nthemselves to a large variety of dives around Bangaram. Bangaram lagoon is a shallow sandbank&lt;br \\/&gt;\\r\\ndive ranging 05-10 meter which is best suited for introductory dives.&lt;br \\/&gt;\\r\\nBesides Bangaram there are three island in a same atoll namely Thinnakara, Parali 1 and parali 2 that&lt;br \\/&gt;\\r\\ncan be accessed by outboard or sailing from Bangaram.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Lakshadweep\",\"DestinationPlacesSysId\":14840,\"SourcePlaces\":\"Lakshadweep\",\"SourcePlaceSysId\":14840,\"AgencyName\":\"I Need Trip\",\"Name\":\"MESMERIZING BANGARAM ISLAND PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5671\",\"SupplierName\":\"CONTENTO TOURISM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Inner Line Permit\",\"PackageType\":\"Honeymoon,Adventure,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2263,\"Title\":\"Bangaram Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486393,\"Name\":\"Bangaram Resort \\u00e0\\u00a4\\u00ac\\u00e0\\u00a4\\u201a\\u00e0\\u00a4\\u2014\\u00e0\\u00a4\\u00be\\u00e0\\u00a4\\u00b0\\u00e0\\u00a4\\u00ae \\u00e0\\u00a4\\u00b0\\u00e0\\u00a4\\u00bf\\u00e0\\u00a4\\u00b8\\u00e0\\u00a5\\u2039\\u00e0\\u00a4\\u00b0\\u00e0\\u00a5\\u008d\\u00e0\\u00a4\\u0178\\u00e0\\u00a5\\u008d\\u00e0\\u00a4\\u00b8\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.941667\",\"Long\":\"72.288136\",\"Address\":\"W7RQ+M76, Bangaram, Lakshadweep 682553, India\"},\"Images\":[],\"CityId\":2263,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"standard ac room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205372\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205373\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205374\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205375\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205376\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2263,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486393,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Bar , water sports, dive , nature expences , ayurveda , All water sports and extra activties are direct&amp;nbsp;payable at the resort only. Please note the there are no credit card or debit card facilities are at the&amp;nbsp;resort. Hence please keep the extra payment by rupee or dollar or euros.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;05% GST Extra&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Indian nationals we require any of the photo ID&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Foreign&amp;nbsp;nationals we require valid passport and tourist visa copy.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation &amp;ndash; Standard Hut -&amp;nbsp;Standard Hut basic&amp;nbsp;(double \\/ twin beds). &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All meals &amp;ndash; All meals included this plan &amp;ndash; Bangaram have 01 main restaurant, open beach&amp;nbsp;barbeque&amp;nbsp;and beach bar &amp;ndash; All three meals are buffet .Tea coffee and snacks are serving at main restaurant in&amp;nbsp;morning and evening.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Boat Transfer &amp;ndash;Agatti &amp;ndash; Bangaram &amp;ndash; Agatti &amp;ndash; Minimum 45 min to take one way &amp;ndash; daily boats after the&amp;nbsp;flight from Agatti &amp;ndash; before flight from Bangaram.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Land transfer -&amp;nbsp;Agatti airport to Boat jetty and back &amp;ndash; non ac Maruthi Omni \\/ Tata winger \\/ Tata&amp;nbsp;indica etc&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry permit &amp;ndash; All the passengers have to carry the entry permit for visit Lakshadweep.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We obtain the entry permit in prior from Lakshadweep office, Cochin and send to you by email or&amp;nbsp;hand over the hard copy at airport.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8568\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205372\":[{\"Sequence\":[0],\"TPInvnSysId\":[205372],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205373\":[{\"Sequence\":[0],\"TPInvnSysId\":[205373],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205374\":[{\"Sequence\":[0],\"TPInvnSysId\":[205374],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205375\":[{\"Sequence\":[0],\"TPInvnSysId\":[205375],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205376\":[{\"Sequence\":[0],\"TPInvnSysId\":[205376],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bangaram Island','Bangaram Island,Lakshadweep Islands,Indian Subcontinent,South India,India,Lakshadweep','','2263',0,0,4,'204_1632558413_1.jpg,204_1632558413_2.jpg,204_1632558413_3.jpg,204_1632558413_4.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-11-30 00:00:00','2021-11-30 00:00:00',3,'India','101','2023-08-25 13:45:37','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'mesmerizing-bangaram-island-package',NULL,NULL,NULL,0),(205,28817,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28817,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/scenic_tinnakara_islpackage_1632481822.jpeg\",\"BookingValidUntill\":\"2021-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thinnakara Island is situated just opposite side of Bangaram Island and share the vast&lt;br \\/&gt;\\r\\nlagoon and coralline banks, the actual lagoon area amounts to 125.21 Sq kms. Thinnakara&lt;br \\/&gt;\\r\\nis a tiny teardrop shaped island which lies 8 km northeast from Agatti, where the airport is&lt;br \\/&gt;\\r\\nlocated. The panorama encompasses magnificent lagoons, sylvan sea shores, sun drenched&lt;br \\/&gt;\\r\\nsand and the enchantment of swaying palms, spectacular marine flora and fauna, all these&lt;br \\/&gt;\\r\\nharmonies to form a colorful kaleidoscope typical of an archipelago paradise. During the&lt;br \\/&gt;\\r\\nnights, phosphorescent plankton washed ashore on the coral sands imparts a blue glow to&lt;br \\/&gt;\\r\\nthe beach which is totally enchanting.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Lakshadweep\",\"DestinationPlacesSysId\":14840,\"SourcePlaces\":\"Lakshadweep\",\"SourcePlaceSysId\":14840,\"AgencyName\":\"I Need Trip\",\"Name\":\"Scenic Thinnakara Island Package \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5671\",\"SupplierName\":\"CONTENTO TOURISM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Inner Line Permit,Airport Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":36517,\"Title\":\"Thinnakara\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486408,\"Name\":\"Thinnakkara Island\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.9475166\",\"Long\":\"72.3188265\",\"Address\":\"W8X9+2G4, Bangaram, Lakshadweep 682553, India\"},\"Images\":[],\"CityId\":36517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Non Ac Tent\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205394\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205395\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205396\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205397\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205398\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205399\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Non Ac Tent\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Bar , water sports, dive , nature expences , ayurveda , All water sports and extra activties are direct&lt;br \\/&gt;\\r\\n\\tpayable at the resort only. Please note the there are no credit card or debit card facilities are at the&lt;br \\/&gt;\\r\\n\\tresort. Hence please keep the extra payment by rupee or dollar or euros.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;05% GST Extra&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation &amp;ndash; Standard Hut -&amp;nbsp;Standard Hut basic&amp;nbsp;(double \\/ twin beds)10 non ac (air cooler available in each rooms)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All meals &amp;ndash; All meals included this plan &amp;ndash;&amp;ndash;All three meals are buffet .Tea coffee and snacks are&amp;nbsp;serving at main restaurant in morning and evening.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Boat Transfer &amp;ndash;Agatti &amp;ndash; Thinnkara &amp;ndash; Agatti &amp;ndash; Minimum 60 min to take one way &amp;ndash; daily boats after the&amp;nbsp;flight from Agatti &amp;ndash; before flight from Bangaram.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Land transfer -&amp;nbsp;Agatti airport to Boat jetty and back &amp;ndash; non ac Maruthi omni \\/ Tata winger \\/ Tata&amp;nbsp;indica etc&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry permit &amp;ndash; All the passengers have to carry the entry permit for visit Lakshadweep. We obtain&amp;nbsp;the entry permit in prior from Lakshadweep office, Cochin and send to&amp;nbsp;you by email or hand over the&amp;nbsp;hard copy at airport.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indian nationals we require any of the photo ID&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Foreign&amp;nbsp;nationals we require valid passport and tourist visa copy. For E.Visa clients has to send the&amp;nbsp;visa application form with alot visa number.&amp;nbsp;&amp;nbsp;Other visa client has to&amp;nbsp;be inform in earlier to take a&amp;nbsp;prior&amp;nbsp;permission&amp;nbsp;from Kavarathi.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8569\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205394\":[{\"Sequence\":[0],\"TPInvnSysId\":[205394],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205395\":[{\"Sequence\":[0],\"TPInvnSysId\":[205395],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205396\":[{\"Sequence\":[0],\"TPInvnSysId\":[205396],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205397\":[{\"Sequence\":[0],\"TPInvnSysId\":[205397],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205398\":[{\"Sequence\":[0],\"TPInvnSysId\":[205398],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"205399\":[{\"Sequence\":[0],\"TPInvnSysId\":[205399],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Thinnakara','Thinnakara,Lakshadweep Islands,Indian Subcontinent,South India,India,Lakshadweep','','36517',0,0,5,'205_1632557392_0.jpg,205_1632557392_1.jpg,205_1632557392_2.jpg,205_1632557392_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null},{\"day\":6,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-31 00:00:00','2021-12-31 00:00:00',3,'India','101','2023-08-25 13:45:24','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'scenic-thinnakara-island-package',NULL,NULL,NULL,0),(206,28819,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28819,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/jaisalkot_-_a_luxury_boutique_hotel_1632483925.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Nestled admist the barren land and the open sky, Jaisalkot is away from the hustle bustle of Jaisalmer,&lt;br \\/&gt;\\r\\nand close to the dunes of the Thar Desert. The property comprises of 15 acres of land and is enclosed&lt;br \\/&gt;\\r\\nwithin a strong and majestic fort. The ambience is that of a lost world of royalty - quiet and elegant.&lt;br \\/&gt;\\r\\nEach room overlooks either the massive front Maidan or the vast desert scape. The spa, pool, gym,&lt;br \\/&gt;\\r\\nrestaurant and bar are spread luxuriously across the property. In spite of the old world charm, the hotel&lt;br \\/&gt;\\r\\nis equipped with all modern amenities required for a comfortable and peaceful stay. Jaisalkot offers its&lt;br \\/&gt;\\r\\ncustomers, what no other properties can - a chance to go back in time. The hotel is located on Sam&lt;br \\/&gt;\\r\\nroad, which connects Dhanana and Jaisalmer and leads to the famous sand dunes. As a luxury&lt;br \\/&gt;\\r\\nboutique resort it offers 50 rooms. The indoor banquet hall spans 2000 Sq. with 36000 sq. feet of&lt;br \\/&gt;\\r\\nlandscaped garden space for outdoor events and activities.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaisalmer\",\"DestinationPlacesSysId\":12996,\"SourcePlaces\":\"Jaisalmer\",\"SourcePlaceSysId\":12996,\"AgencyName\":\"I Need Trip\",\"Name\":\"Jaisalkot - A Luxury Boutique Hotel\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7155\",\"SupplierName\":\"Hotel Jaisalkot \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486412,\"Name\":\"Jaisalkot - A Luxury Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9072605\",\"Long\":\"70.7900867\",\"Address\":\"Kuldhara Turn, Off, Jaisalmer - Sam - Dhanana Rd, Jaisalmer, Rajasthan 345001, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7155,\"SupplierName\":\"Hotel Jaisalkot \",\"priceaditionals\":null,\"RoomTypeName\":\"KUNWAR ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205409\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486412,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"KUNWAR ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205410\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486412,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"KUNWAR ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205411\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486412,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"KUNWAR ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mandatory Christmas Eve&amp;nbsp;Dinner @ Rs. 3000 + Tax per&amp;nbsp;person and child above 8yrs&amp;nbsp;@ Rs. 3000 + Tax per&amp;nbsp;person&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mandatory Christmas Eve&amp;nbsp;Dinner @ Rs. 3000 + Tax per&amp;nbsp;person&amp;nbsp;and child above 8yrs&amp;nbsp;@ Rs. 3000 + Tax per&amp;nbsp;person&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above rates are not valid for Weddings, Conferences, family get together.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea\\/Coffee Maker in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Evening Entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8574\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205409\":[{\"Sequence\":[0],\"TPInvnSysId\":[205409],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205410\":[{\"Sequence\":[0],\"TPInvnSysId\":[205410],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205411\":[{\"Sequence\":[0],\"TPInvnSysId\":[205411],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaisalmer','Jaisalmer,Rajasthan,Indian Subcontinent,North India,India','','12996',0,0,2,'206_1632917650_0.jpg,206_1632917650_1.jpg,206_1632917650_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:44:58','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'jaisalkot-a-luxury-boutique-hotel',NULL,NULL,NULL,0),(207,28824,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28824,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/lakeside_inn_ratanada_1632485364.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Lakeside Inn Ratanada is a 9 room property.&amp;nbsp;set besides the picturesque Ratanada Lake and a hillock on which is the famous Ganesh Temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Contemporary air-conditioned rooms features a wardrobe, sitting area and large windows. All rooms have a flat screen TV with satellite channels , Electric Kettle and Private bathroom includes a shower, hot &amp;amp; cold running water &amp;amp; free toiletries. Free WiFi in Lobby and Dinning.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Each room has an individuality of its own with traditional charm , elegantly designed glass and ceiling paintings, art, rajasthani fabric and chic furniture.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Lakeside Inn, Ratanada\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7156\",\"SupplierName\":\"Lakeside Inn\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486419,\"Name\":\"Lakeside Inn\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.27508509999999\",\"Long\":\"73.0364365\",\"Address\":\"Bhati Circle, Tank House, Circuit House Rd, Gayatri Colony, Ratanada, Jodhpur, Rajasthan 342011, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7156,\"SupplierName\":\"Lakeside Inn\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486420,\"Name\":\"Lakeside Inn\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.27508509999999\",\"Long\":\"73.0364365\",\"Address\":\"Bhati Circle, Tank House, Circuit House Rd, Gayatri Colony, Ratanada, Jodhpur, Rajasthan 342011, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7156,\"SupplierName\":\"Lakeside Inn\",\"priceaditionals\":null,\"RoomTypeName\":\"Lake View Rooms\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486421,\"Name\":\"Lakeside Inn\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.27508509999999\",\"Long\":\"73.0364365\",\"Address\":\"Bhati Circle, Tank House, Circuit House Rd, Gayatri Colony, Ratanada, Jodhpur, Rajasthan 342011, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7156,\"SupplierName\":\"Lakeside Inn\",\"priceaditionals\":null,\"RoomTypeName\":\"Lake view Room with Balcony\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205449\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486419,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake View Rooms\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486421,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake view Room with Balcony\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205452\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486419,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake View Rooms\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486421,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake view Room with Balcony\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205455\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486419,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake View Rooms\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486421,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Lake view Room with Balcony\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205449\":[{\"Sequence\":[0],\"TPInvnSysId\":[205449],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205452\":[{\"Sequence\":[0],\"TPInvnSysId\":[205452],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205455\":[{\"Sequence\":[0],\"TPInvnSysId\":[205455],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'207_1632554680_0.jpg,207_1632554680_1.jpg,207_1632554680_2.jpg,207_1632554680_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:44:42','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'lakeside-inn-ratanada',NULL,NULL,NULL,0),(208,28862,1,5293,0,0,0,'Honeymoon,Adventure,Hill Station,Weekend,Romantic,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28862,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/snow_trails_camp__cottages_near_kufri_1632810993.jpg\",\"BookingValidUntill\":\"2022-01-07\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Camp site is situated on the hill top in the middle of Apple orchard.One can have view of&amp;nbsp;snow covered Churdhar peak, Sirmour valley , Giri River , Shimla hills , chail &amp;amp; kufri. Camp&amp;nbsp;site is away from city traffic noise , city hussle.One can fully enjoy holidays in&amp;nbsp; the lap&amp;nbsp;of nature. We provide quality food farm fresh vegetable.We also provide adventure&amp;nbsp;service like Rappelling, Flying fox, High Rope activities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Chail\",\"DestinationPlacesSysId\":5691,\"SourcePlaces\":\"Chail\",\"SourcePlaceSysId\":5691,\"AgencyName\":\"I Need Trip\",\"Name\":\"Snow Trails Camp & Cottages Near Kufri\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7160\",\"SupplierName\":\"Snow Trails Camp & Cottages Near Kufri\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Adventure,Hill Station,Weekend,Romantic,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-01-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5691,\"Title\":\"Chail\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486491,\"Name\":\"Snow trails camp\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0065503\",\"Long\":\"77.27326219999999\",\"Address\":\"MDR8, Village Neen, P.O, Koti, Himachal Pradesh 171012, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7160,\"SupplierName\":\"Snow Trails Camp & Cottages Near Kufri\",\"priceaditionals\":null,\"RoomTypeName\":\"SWISS TENTS\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486492,\"Name\":\"Snow trails camp\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0065503\",\"Long\":\"77.27326219999999\",\"Address\":\"MDR8, Village Neen, P.O, Koti, Himachal Pradesh 171012, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7160,\"SupplierName\":\"Snow Trails Camp & Cottages Near Kufri\",\"priceaditionals\":null,\"RoomTypeName\":\"COTTAGES\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205839\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"SWISS TENTS\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGES\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205841\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"SWISS TENTS\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGES\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205843\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"SWISS TENTS\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"COTTAGES\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8627\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205839\":[{\"Sequence\":[0],\"TPInvnSysId\":[205839],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205841\":[{\"Sequence\":[0],\"TPInvnSysId\":[205841],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205843\":[{\"Sequence\":[0],\"TPInvnSysId\":[205843],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chail','Chail,Himachal Pradesh,Indian Subcontinent,North India,India','','5691',0,0,2,'208_1632840542_0.jpg,208_1632840542_1.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-01-07 00:00:00','2022-01-07 00:00:00',3,'India','101','2023-08-25 13:44:17','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'snow-trails-camp-cottages-near-kufri',NULL,NULL,NULL,0),(209,28864,1,5293,0,0,0,'Cruise,Religious,Heritage,Culture,Weekend,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28864,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/raas_1632812722.jpg\",\"BookingValidUntill\":\"2022-01-08\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Experience the sheer opulence of the Rajput royal residence fused with modern facilities like an expansive outdoor pool, spa and unique dining spaces at RAAS in Jodhpur.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Refresh in the heated swimming pool or rejuvenate with therapies at the on-site spa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;From rooms, enjoy stunning views of the iconic Mehrangarh Fort that is just 550 m away.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Feast on authentic and global culinary delights and drinks at the two restaurants and a cafe.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"RAAS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7161\",\"SupplierName\":\"RAAS\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Cruise,Religious,Heritage,Culture,Weekend,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-01-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486493,\"Name\":\"RAAS\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2973807\",\"Long\":\"73.0233537\",\"Address\":\"Tunwar ji ka Jhalra, Makrana Mohalla, Gulab Sagar Rd, Sagrar, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7161,\"SupplierName\":\"RAAS\",\"priceaditionals\":null,\"RoomTypeName\":\"Garden Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":486494,\"Name\":\"RAAS\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2973807\",\"Long\":\"73.0233537\",\"Address\":\"Tunwar ji ka Jhalra, Makrana Mohalla, Gulab Sagar Rd, Sagrar, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7161,\"SupplierName\":\"RAAS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205845\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486493,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486494,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205847\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486493,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486494,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205849\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486493,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486494,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8629\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205845\":[{\"Sequence\":[0],\"TPInvnSysId\":[205845],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205847\":[{\"Sequence\":[0],\"TPInvnSysId\":[205847],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205849\":[{\"Sequence\":[0],\"TPInvnSysId\":[205849],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'209_1632843585_0.jpg,209_1632843585_1.jpg,209_1632843585_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-01-08 00:00:00','2022-01-08 00:00:00',3,'India','101','2023-08-25 13:44:03','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'raas',NULL,NULL,NULL,0),(210,28866,1,5293,0,0,0,'Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28866,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/indana_palace_jodhpur_1632814269.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Experience the ultimate blend of traditional Rajasthani hospitality and modern facilities at Indana Palace Jodhpur as it awaits you with&amp;nbsp;royal&amp;nbsp;architecture and lavish rooms.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;The hotel features an outdoor pool and a separate kids pool.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The rooms are equipped with private balconies and bathtubs amongst other luxurious amenities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The hotel offers multiple fine-dining options.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The in-house spa offers a range of luxurious therapies including Hot Stone Massage and Balinese Massage.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Indana Palace Jodhpur\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7162\",\"SupplierName\":\"Indana Palace\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Heritage,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486498,\"Name\":\"Indana Palace Jodhpur\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2694157\",\"Long\":\"73.068523\",\"Address\":\"Opp. Military Officer Quarters, Benayakiya Road, Shikargarh, Pabupura, Jodhpur, Rajasthan 342015, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7162,\"SupplierName\":\"Indana Palace\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205851\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486498,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205852\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486498,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205853\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486498,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Offer valid as above dates except 21st&amp;nbsp;Dec. 21 to 02nd&amp;nbsp;Jan. 22 at Indana Palace Jodhpur.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast and one major meal.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;15% discount on food and soft beverages.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;15% discount on Laundry&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free use of billiard&amp;rsquo;s room and children&amp;rsquo;s play room.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8631\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205851\":[{\"Sequence\":[0],\"TPInvnSysId\":[205851],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205852\":[{\"Sequence\":[0],\"TPInvnSysId\":[205852],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205853\":[{\"Sequence\":[0],\"TPInvnSysId\":[205853],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'210_1632844102_0.jpg,210_1632844102_1.jpg,210_1632844102_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:43:51','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'indana-palace-jodhpur',NULL,NULL,NULL,0),(211,28868,1,5293,0,0,0,'Honeymoon,Family,Sports,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28868,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;color:#000000&quot;&gt;We are delighted to take this opportunity to introduce&amp;nbsp;&amp;nbsp;Kanishka Retreat&amp;nbsp; Chail (H.P)&amp;nbsp;one of the resorts with unique accommodation combined with&amp;nbsp;balance&amp;nbsp;of tranquility, friendly environment and service.There are 16 rooms with&amp;nbsp;conference&amp;nbsp;hall, Pool Table, Carrom Board, Chess, Card Table, Surrounded with Lovely &amp;amp; peaceful Garden to relax. It is located in thick&amp;nbsp;Himalayan&amp;nbsp;Pine Forests of Chail in Himachal.&amp;nbsp;Perfect getaway from the Hustle &amp;amp; Bustle of city life with ample parking area&amp;nbsp; &amp;nbsp;We are delighted to provide you with&amp;nbsp;special&amp;nbsp;concessionary tariffs.&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;color:#000000&quot;&gt;Kanishka Retreat Resort Chail&amp;nbsp; Accommodation\\/Tariff Plans&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#222222&quot;&gt;&lt;span style=&quot;color:#000000&quot;&gt;Kanishka Retreat has affordable and comfortable accommodation so that the guest and nature lovers can experience the beauty, serenity&amp;nbsp;and&amp;nbsp;peace of the mountain valley away from the hustle bustle and pollution of the city life. The grandeur of the surroundings will make our guests feel closer to&amp;nbsp;the nature&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Chail\",\"DestinationPlacesSysId\":5691,\"SourcePlaces\":\"Chail\",\"SourcePlaceSysId\":5691,\"AgencyName\":\"I Need Trip\",\"Name\":\"Kanishka Retreat Resort Chail\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7163\",\"SupplierName\":\"Kanishka Retreat Resort Chail\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Sports,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5691,\"Title\":\"Chail\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486499,\"Name\":\"Kanishka Retreat Resort Chail\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9718003\",\"Long\":\"77.1735484\",\"Address\":\"Kandaghat-Chail-Kufri Rd, Chail, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7163,\"SupplierName\":\"Kanishka Retreat Resort Chail\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486500,\"Name\":\"Kanishka Retreat Resort Chail\",\"Star\":\"4.00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9718003\",\"Long\":\"77.1735484\",\"Address\":\"Kandaghat-Chail-Kufri Rd, Chail, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_486500\\/5293_44627f9d07839b300a05faf5fa0cdf331656587677.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7163,\"SupplierName\":\"Kanishka Retreat Resort Chail\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205858\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486500,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205860\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486500,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205862\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486500,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205858\":[{\"Sequence\":[0],\"TPInvnSysId\":[205858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205860\":[{\"Sequence\":[0],\"TPInvnSysId\":[205860],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205862\":[{\"Sequence\":[0],\"TPInvnSysId\":[205862],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chail','Chail,Himachal Pradesh,Indian Subcontinent,North India,India','','5691',0,0,2,'211_1632842186_0.jpg,211_1632842186_1.jpg,211_1632842186_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:43:16','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'kanishka-retreat-resort-chail',NULL,NULL,NULL,0),(212,28871,1,5293,0,0,0,'Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28871,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/ekant_retreat_resort_1632816273.jpg\",\"BookingValidUntill\":\"2022-04-14\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Featuring cosy rooms, multiple dining options and a variety of recreational facilities, Ekant Retreat Resort offers a revitalising experience amidst the beautiful Shivalik Hills.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Wake up to beautiful views of the Shivalik mountains and valleys from the comfort of your well-furnished rooms.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Challenge your friends to an exciting game of basketball or play snooker indoors.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indulge in a wide assortment of culinary delights from delectable cuisines at Mozaic The Restaurant.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Chail\",\"DestinationPlacesSysId\":5691,\"SourcePlaces\":\"Chail\",\"SourcePlaceSysId\":5691,\"AgencyName\":\"I Need Trip\",\"Name\":\"Ekant Retreat Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7164\",\"SupplierName\":\"Ekant Retreat Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-04-14\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5691,\"Title\":\"Chail\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486501,\"Name\":\"Ekant Retreat Resort Chail\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.960482\",\"Long\":\"77.19474\",\"Address\":\"Chail, Solan, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7164,\"SupplierName\":\"Ekant Retreat Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486502,\"Name\":\"Ekant Retreat Resort Chail\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.960482\",\"Long\":\"77.19474\",\"Address\":\"Chail, Solan, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7164,\"SupplierName\":\"Ekant Retreat Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Suite Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205868\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Suite Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205870\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Suite Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205872\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Suite Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8632\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205868\":[{\"Sequence\":[0],\"TPInvnSysId\":[205868],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205870\":[{\"Sequence\":[0],\"TPInvnSysId\":[205870],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205872\":[{\"Sequence\":[0],\"TPInvnSysId\":[205872],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chail','Chail,Himachal Pradesh,Indian Subcontinent,North India,India','','5691',0,0,2,'212_1632842849_0.jpg,212_1632842849_1.jpg,212_1632842849_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-04-14 00:00:00','2022-04-14 00:00:00',3,'India','101','2023-08-25 13:42:59','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'ekant-retreat-resort',NULL,NULL,NULL,0),(213,28873,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28873,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Maple by Aamod is a three-star boutique resort that offers guests a broad range of amenities and superior services.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Features indoor game facility like a tennis court and a fitness centre.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Offers facilities like a travel desk that care of travel needs like taxi, car rentals and ticket issuance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All the rooms have their own fireplace to keep guests warm in winters.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Chail\",\"DestinationPlacesSysId\":5691,\"SourcePlaces\":\"Chail\",\"SourcePlaceSysId\":5691,\"AgencyName\":\"I Need Trip\",\"Name\":\"Maple by Aamod\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7165\",\"SupplierName\":\"Aamod Resorts\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Honeymoon,Family,Hill Station,Weekend,Romantic,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5691,\"Title\":\"Chail\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486504,\"Name\":\"Maple Resort By Aamod Chail\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9727933\",\"Long\":\"77.17538979999999\",\"Address\":\"Chail - Dubloo Rd, Dunu, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7165,\"SupplierName\":\"Aamod Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486505,\"Name\":\"Maple Resort By Aamod Chail\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.9727933\",\"Long\":\"77.17538979999999\",\"Address\":\"Chail - Dubloo Rd, Dunu, Himachal Pradesh 173217, India\"},\"Images\":[],\"CityId\":5691,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_486505\\/5293_e85edc9ecfe2249fe7da5e16ae64f42b1656587617.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7165,\"SupplierName\":\"Aamod Resorts\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205874\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486504,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486505,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205876\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486504,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486505,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205878\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5691,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486504,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":486505,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmation of booking is subject to availability of rooms \\/ cottages and receipt of advance payment. 5. Compulsory Festive Gala Dinner Supplement i\\/c limited alcohol @ Rs.2000\\/- (+ taxes as applicable) per pax for X-Mas Eve (24th Dec).&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Compulsory Festive Gala Dinner Supplement i\\/c limited alcohol @ Rs.3000\\/- (+ taxes as applicable) per pax for New Year Eve (31st Dec).&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome non-alcoholic drinks on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Well-appointed room\\/cottages.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RO Water in the rooms (Being a Eco-Friendly Chain We Do Not Use Plastic Bottles)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea \\/ coffee maker in the room along with daily replenishments.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary accommodation for 2 children below 6 years in the same room \\/ cottage (w\\/o extra bed).&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8637\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"205874\":[{\"Sequence\":[0],\"TPInvnSysId\":[205874],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205876\":[{\"Sequence\":[0],\"TPInvnSysId\":[205876],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"205878\":[{\"Sequence\":[0],\"TPInvnSysId\":[205878],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chail','Chail,Himachal Pradesh,Indian Subcontinent,North India,India','','5691',0,0,2,'213_1632843269_0.jpg,213_1632843269_1.jpg,213_1632843269_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:42:44','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'maple-by-aamod',NULL,NULL,NULL,0),(214,28895,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28895,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/anuraga_palace_ranthambhore_1632980439.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Anuraga Palace reinvents one of oldest hotels in Ranthambore, and transforms it into one of the finest luxurious Palace resorts, while preserving its ancient heritage at the same time. Decorated in the pristine white architectural style of a traditional Rajasthani haveli, this sprawling hotel offers the best of modern amenities for leisure and business travellers. Anuraga Palace has 44 rooms 2 Juinior Suites and 4 Plush Thematic suites, overlooking verdant green lawns, and equipped with all the amenities for conferences, weddings or the intrepid tourist, making it one of the most comfortable resorts in Ranthambore.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Anuraga Palace, Ranthambhore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7166\",\"SupplierName\":\"Anuraga Palace, Ranthambhore\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486576,\"Name\":\"Anuraga Palace\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0168567\",\"Long\":\"76.364901\",\"Address\":\"Ranthambhor Rd, Subhash Nagar, Adinath Nagar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7166,\"SupplierName\":\"Anuraga Palace, Ranthambhore\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486577,\"Name\":\"Anuraga Palace\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0168567\",\"Long\":\"76.364901\",\"Address\":\"Ranthambhor Rd, Subhash Nagar, Adinath Nagar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7166,\"SupplierName\":\"Anuraga Palace, Ranthambhore\",\"priceaditionals\":null,\"RoomTypeName\":\"Premier Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206095\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486576,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486577,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premier Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206098\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486576,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486577,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premier Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206101\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486576,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486577,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premier Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8657\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206095\":[{\"Sequence\":[0],\"TPInvnSysId\":[206095],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206098\":[{\"Sequence\":[0],\"TPInvnSysId\":[206098],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206101\":[{\"Sequence\":[0],\"TPInvnSysId\":[206101],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'214_1633445974_0.jpg,214_1633445974_1.jpg,214_1633445974_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:42:31','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'anuraga-palace-ranthambhore',NULL,NULL,NULL,0),(215,28902,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28902,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/jungle_vilas_1632983536.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Jungle Villas is a luxury resort in the wilderness in Ranthambhore but with modern, exclusive designs and well furnished, a stay which will be enjoyable and will make the guests re-visit.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Spread over vast expanse greenery and wildlife.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It arranges for activities like bird watching, jungle trails, jungle safaris, and cultural programs.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The property features an outdoor pool and an exclusive kids pool.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Jungle Vilas\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7167\",\"SupplierName\":\"Jungle Vilas\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486583,\"Name\":\"Jungle Vilas\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0488403\",\"Long\":\"76.3977578\",\"Address\":\"Village Khilchipur, Ranthambore, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7167,\"SupplierName\":\"Jungle Vilas\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486584,\"Name\":\"Jungle Vilas\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0488403\",\"Long\":\"76.3977578\",\"Address\":\"Village Khilchipur, Ranthambore, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7167,\"SupplierName\":\"Jungle Vilas\",\"priceaditionals\":null,\"RoomTypeName\":\"Pool Facing Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486585,\"Name\":\"Jungle Vilas\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0488403\",\"Long\":\"76.3977578\",\"Address\":\"Village Khilchipur, Ranthambore, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7167,\"SupplierName\":\"Jungle Vilas\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Cottage  \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206114\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486583,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486584,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Pool Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206117\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486583,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486584,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Pool Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206120\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486583,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486584,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Pool Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486585,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8663\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206114\":[{\"Sequence\":[0],\"TPInvnSysId\":[206114],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206117\":[{\"Sequence\":[0],\"TPInvnSysId\":[206117],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206120\":[{\"Sequence\":[0],\"TPInvnSysId\":[206120],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'215_1633445307_0.jpg,215_1633445307_1.jpg,215_1633445307_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2023-08-25 13:42:07','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'jungle-vilas',NULL,NULL,NULL,0),(216,28908,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28908,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/the_tigress_resort_spa_1632984509.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Relish in the opulence of the award-winning the Tigress featuring luxe rooms, a host of leisure amenities and premium restaurants.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;The resort offers a spa and wellness centre to rejuvenate and relax.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It has been awarded as the &amp;#39;Best Forest Property of the year 2019&amp;#39; by the Estate Award &amp;amp; Zee Business.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All the rooms have sit-out areas looking out at mountains or gardens.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The rooftop restaurant offers delectable barbequed grills and stunning views.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"The Tigress Resort and SPA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7168\",\"SupplierName\":\"The Tigress Resort and SPA\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486587,\"Name\":\"The Tigress Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0473622\",\"Long\":\"76.3987401\",\"Address\":\"Ranthambhor Rd, near Helipad, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7168,\"SupplierName\":\"The Tigress Resort and SPA\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal luxury Suite\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486588,\"Name\":\"The Tigress Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0473622\",\"Long\":\"76.3987401\",\"Address\":\"Ranthambhor Rd, near Helipad, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7168,\"SupplierName\":\"The Tigress Resort and SPA\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal luxury Cottage\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486589,\"Name\":\"The Tigress Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0473622\",\"Long\":\"76.3987401\",\"Address\":\"Ranthambhor Rd, near Helipad, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7168,\"SupplierName\":\"The Tigress Resort and SPA\",\"priceaditionals\":null,\"RoomTypeName\":\"Royal luxury Villa\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206141\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486587,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Suite\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486588,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486589,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206144\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486587,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Suite\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486588,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486589,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206147\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486587,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Suite\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486588,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486589,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Royal luxury Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"8672\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206141\":[{\"Sequence\":[0],\"TPInvnSysId\":[206141],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206144\":[{\"Sequence\":[0],\"TPInvnSysId\":[206144],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206147\":[{\"Sequence\":[0],\"TPInvnSysId\":[206147],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'216_1633452609_0.jpg,216_1633452609_1.jpg,216_1633452609_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:41:50','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'the-tigress-resort-and-spa',NULL,NULL,NULL,0),(217,28912,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28912,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/jungle_view_resort_1632986780.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Jungle&amp;nbsp;View&amp;nbsp;Resort is a deluxe&amp;nbsp;jungle&amp;nbsp;camp resort that offers visitors to Ranthambore National Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jungle&amp;nbsp;View&amp;nbsp;Resort&amp;nbsp;nestled at the edge of the core forest, only a ten minutes drive from the main safari gates at Ranthambhore National Park.&amp;nbsp;Jungle&amp;nbsp;View&amp;nbsp;Resort is the true combination of sheer comfortability in rustic rural settings far away from chaotic city life. Spread over an area of 05 acre our 08 tents and 11 identical cottages are designed to provide most comfortable and homely stay. Our guests benefit from our incredible location, an outstanding hospitality and experienced drivers\\/guides, and our commitment towards conservation and local communities.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Jungle View Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7169\",\"SupplierName\":\"Jungle View Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486590,\"Name\":\"Jungle View Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0478403\",\"Long\":\"76.4070988\",\"Address\":\"Ranthambhore Rd, near Ranthambore National Park, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7169,\"SupplierName\":\"Jungle View Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Tent\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486591,\"Name\":\"Jungle View Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0478403\",\"Long\":\"76.4070988\",\"Address\":\"Ranthambhore Rd, near Ranthambore National Park, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7169,\"SupplierName\":\"Jungle View Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Cottage\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206176\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486590,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486591,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Cottage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206178\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486590,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486591,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Cottage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206180\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486590,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Tent\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486591,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Cottage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;The above rate are valid from 01st October 2021 to 30th June 2022 (Excluding&amp;nbsp;22 Dec - 02 Jan ( Xmas\\/ New year) and Long Weekends, Dussehra, Diwali, festivals etc. period)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;From June to September, tented accommodation will be closed.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All Tents &amp;amp; cottages are air-conditioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mini fridge in all tents &amp;amp; cottages&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All tents &amp;amp; cottages have bathrooms equipped with hot &amp;amp; cold water&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Housekeeping&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Open air dining area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Swimming pool with separate pool for children&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lawn area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Front Desk&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power back-up&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ayurveda Massage on call&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Doctor on call&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Outsourced Laundry Service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cultural &amp;amp; Folk Programmes*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local Excursions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pickup &amp;amp; drop from Jaipur airport &amp;nbsp;(R.s. 5499)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pickup and drop from Sawai Madhopur Railway Station (Rs. 2000)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8675\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206176\":[{\"Sequence\":[0],\"TPInvnSysId\":[206176],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206178\":[{\"Sequence\":[0],\"TPInvnSysId\":[206178],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206180\":[{\"Sequence\":[0],\"TPInvnSysId\":[206180],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'217_1633444817_0.jpg,217_1633444817_1.jpg,217_1633444817_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2023-08-25 13:41:13','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'jungle-view-resort',NULL,NULL,NULL,0),(218,28917,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28917,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/nahargarh_ranthambhore_1632988591.jpg\",\"BookingValidUntill\":\"2022-04-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Indulge in an extravagant vacation at this royal palace offering regal rooms, top-notch amenities, wellness activities, wildlife safaris, private dinner and much more!&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Boasts two swimming pools, including a kid-friendly pool encircled by gazebos and lawns.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Organises wildlife safaris, romantic dinners, live performances, heritage tours etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Serves a range of Rajasthani delights, Continental and Indian meals at its grand restaurant.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Features Tattva Spa offering traditional Indian massages, aromatherapies and private Jacuzzis.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Nahargarh Ranthambhore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7171\",\"SupplierName\":\"Nahargarh Ranthambhore\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-04-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486601,\"Name\":\"Nahargarh Ranthambhore\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.04678479999999\",\"Long\":\"76.4033192\",\"Address\":\"Ranthambhore Rd, Khilchipur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7171,\"SupplierName\":\"Nahargarh Ranthambhore\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486602,\"Name\":\"Nahargarh Ranthambhore\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.04678479999999\",\"Long\":\"76.4033192\",\"Address\":\"Ranthambhore Rd, Khilchipur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7171,\"SupplierName\":\"Nahargarh Ranthambhore\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486603,\"Name\":\"Nahargarh Ranthambhore\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.04678479999999\",\"Long\":\"76.4033192\",\"Address\":\"Ranthambhore Rd, Khilchipur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7171,\"SupplierName\":\"Nahargarh Ranthambhore\",\"priceaditionals\":null,\"RoomTypeName\":\"Haveli Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206207\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486601,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486602,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486603,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Haveli Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206210\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486601,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486602,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486603,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Haveli Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206213\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486601,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486602,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486603,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Haveli Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8677\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206207\":[{\"Sequence\":[0],\"TPInvnSysId\":[206207],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206210\":[{\"Sequence\":[0],\"TPInvnSysId\":[206210],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206213\":[{\"Sequence\":[0],\"TPInvnSysId\":[206213],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'218_1633443621_0.jpg,218_1633443621_1.jpg,218_1633443621_2.jpg,218_1633443621_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-04-15 00:00:00','2022-04-15 00:00:00',3,'India','101','2023-08-25 13:40:39','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'nahargarh-ranthambhore',NULL,NULL,NULL,0),(219,28920,1,5293,0,0,0,'Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28920,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_ranthambhore_national_resort_1632989324.jpg\",\"BookingValidUntill\":\"2021-12-29\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Ranthambhore National Resort, is a new property situated in proximity to the Ranthambhore National Park. Offering a unique stay in the tiger capital of Rajasthan, this hotel has everything you need. The hotel rooms are equipped with&amp;nbsp;air-conditioning, satellite television, free Wi-Fi, intercom and bathroom amenities. A large part of the Ranthambhore National Park can be seen from your room window and the main entrance to the park is a 10-minute drive away.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nGuests can look to enjoy its Family&amp;nbsp;Swimming Pool, Ayurvedic spa and massage services on request. A popular with corporate, Ranthambhore National Resort has a&amp;nbsp;sprawling lawn to enjoy some outdoor games like Cricket, Football, Volleyball, Badminton etc. &amp;amp; Conference Hall to host events.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe in-house&amp;nbsp;restaurant, Indian Spice&amp;nbsp;serves delicious North-Indian, Chinese and Continental fare.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Ranthambhore National Resort\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7172\",\"SupplierName\":\"Hotel Ranthambhore National Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Weekend,Offbeat,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2021-12-29\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486604,\"Name\":\"Ranthambhore National Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0186016\",\"Long\":\"76.3756439\",\"Address\":\"Ranthambhore Rd, opposite Saras Dairy, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7172,\"SupplierName\":\"Hotel Ranthambhore National Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486605,\"Name\":\"Ranthambhore National Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0186016\",\"Long\":\"76.3756439\",\"Address\":\"Ranthambhore Rd, opposite Saras Dairy, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7172,\"SupplierName\":\"Hotel Ranthambhore National Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Swiss Tent\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486606,\"Name\":\"Ranthambhore National Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0186016\",\"Long\":\"76.3756439\",\"Address\":\"Ranthambhore Rd, opposite Saras Dairy, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7172,\"SupplierName\":\"Hotel Ranthambhore National Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206216\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486604,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486605,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Swiss Tent\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206219\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486604,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486605,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Swiss Tent\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206222\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486604,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486605,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Swiss Tent\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Rates are subject to change without prior notice. Like for Diwali, Holi any long weekend (INR 1000 add on given&amp;nbsp;rates) &amp;amp;amp; New Year (31 st Dec-2020 mandatory Gala Dinner charge @ INR 2000 per person.) Season etc.&amp;nbsp;Kindly check the rates for these dates accordingly.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Wi-Fi.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Two 500 ml bottles of packaged drinking water on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10% discount on SPA.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of the swimming pool.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary use of Outdoor Games in Garden Area.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8683\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206216\":[{\"Sequence\":[0],\"TPInvnSysId\":[206216],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206219\":[{\"Sequence\":[0],\"TPInvnSysId\":[206219],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206222\":[{\"Sequence\":[0],\"TPInvnSysId\":[206222],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'219_1633439807_0.jpg,219_1633439807_1.jpg,219_1633439807_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2021-12-29 00:00:00','2021-12-29 00:00:00',3,'India','101','2023-08-25 13:40:25','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-ranthambhore-national-resort',NULL,NULL,NULL,0),(220,28930,1,5293,0,0,0,'Family,Religious,Weekend',NULL,1,1,0,'{\"package\":{\"TPId\":28930,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Located in the beautiful city of Amritsar, Bloom Boutique is a warm and family-friendly accommodation featuring best-in-class facilities.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy easy connectivity as the property is less than 5 km away from the Amritsar Junction.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indulge in a shopping spree at the popular Trilium Mall, situated just 1.7 km away from the property.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Satiate your cravings with an assortment of delicacies from multiple cuisines at the in-house Blusilea - The Multi-Cuisine Restaurant.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Amritsar\",\"DestinationPlacesSysId\":974,\"SourcePlaces\":\"Amritsar\",\"SourcePlaceSysId\":974,\"AgencyName\":\"I Need Trip\",\"Name\":\"Bloom Boutique | Ranjit Avenue\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":1,\"Value\":\"Inbound                                           \"},\"Supplier\":{\"SupplierId\":\"7175\",\"SupplierName\":\"Bloom Boutique | Ranjit Avenue\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink\",\"PackageType\":\"Family,Religious,Weekend\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486614,\"Name\":\"Bloom Boutique | Ranjit Avenue\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.657459\",\"Long\":\"74.8608893\",\"Address\":\"B - Block, District Shopping Complex, B - Block, Ranjit Avenue, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7175,\"SupplierName\":\"Bloom Boutique | Ranjit Avenue\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe King Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486615,\"Name\":\"Bloom Boutique | Ranjit Avenue\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.657459\",\"Long\":\"74.8608893\",\"Address\":\"B - Block, District Shopping Complex, B - Block, Ranjit Avenue, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7175,\"SupplierName\":\"Bloom Boutique | Ranjit Avenue\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486616,\"Name\":\"Bloom Boutique | Ranjit Avenue\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.657459\",\"Long\":\"74.8608893\",\"Address\":\"B - Block, District Shopping Complex, B - Block, Ranjit Avenue, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7175,\"SupplierName\":\"Bloom Boutique | Ranjit Avenue\",\"priceaditionals\":null,\"RoomTypeName\":\"Signature Suite\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206281\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486614,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe King Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Signature Suite\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206284\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486614,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe King Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Signature Suite\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206287\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486614,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe King Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Signature Suite\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8686\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206281\":[{\"Sequence\":[0],\"TPInvnSysId\":[206281],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206284\":[{\"Sequence\":[0],\"TPInvnSysId\":[206284],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206287\":[{\"Sequence\":[0],\"TPInvnSysId\":[206287],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Amritsar','Amritsar,Punjab,Indian Subcontinent,North India,India','','974',0,0,2,'220_1633194358_0.jpg,220_1633194358_1.jpg,220_1633194358_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:39:51','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'bloom-boutique-|-ranjit-avenue',NULL,NULL,NULL,0),(221,28934,1,5293,0,0,0,'Family,Religious,Culture,Weekend,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28934,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Choose luxurious rooms and enjoy easy access to the Golden Temple, famous restaurants and markets while staying at the lavishly decorated One Earth GG Regency.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Visit the revered Golden Temple, just a 100 m away from the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shop for traditional footwear, apparels and souvenirs from the nearby stores.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Relish authentic Punjabi delicacies at the on-site restaurant.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Amritsar\",\"DestinationPlacesSysId\":974,\"SourcePlaces\":\"Amritsar\",\"SourcePlaceSysId\":974,\"AgencyName\":\"I Need Trip\",\"Name\":\"One Earth GG Regency (80 Steps to Golden Temple)\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7176\",\"SupplierName\":\"One Earth GG Regency \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Culture,Weekend,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486622,\"Name\":\"One Earth GG Regency (80 Steps to the Golden Temple)\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.6169047\",\"Long\":\"74.87734619999999\",\"Address\":\"Galiara road, near gurduara Baba Atal Rai Sahib, Chowk Baba Sahib, Katra Ahluwalia, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7176,\"SupplierName\":\"One Earth GG Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Queen\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206298\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Queen\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206299\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Queen\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206300\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive Queen\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Complimentary 2 bottles of packaged water in room per day&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;In room Tea \\/ Coffee makers (Replenishment as per hotel policy)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"206298\":[{\"Sequence\":[0],\"TPInvnSysId\":[206298],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206299\":[{\"Sequence\":[0],\"TPInvnSysId\":[206299],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206300\":[{\"Sequence\":[0],\"TPInvnSysId\":[206300],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Amritsar','Amritsar,Punjab,Indian Subcontinent,North India,India','','974',0,0,2,'221_1633194340_0.jpg,221_1633194340_1.jpg,221_1633194340_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:39:27','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'one-earth-gg-regency-(80-steps-to-golden-temple)',NULL,NULL,NULL,0),(222,28936,1,5293,0,0,0,'Family,Religious,Culture,Weekend,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28936,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Evoke Avaas Lifestyle is a four-star boutique hotel with modern amenities to provide a luxurious and convenient stay.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Book elegantly furnished suites equipped with modern amenities.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the renowned Golden Temple located just 4 km away.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy a wholesome breakfast at the property&amp;#39;s cafe.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Amritsar\",\"DestinationPlacesSysId\":974,\"SourcePlaces\":\"Amritsar\",\"SourcePlaceSysId\":974,\"AgencyName\":\"I Need Trip\",\"Name\":\"One Earth Avaas\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7176\",\"SupplierName\":\"One Earth GG Regency \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Culture,Weekend,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486626,\"Name\":\"One Earth Avaas Amritsar\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.6462917\",\"Long\":\"74.8781357\",\"Address\":\"bbk dav college, 12, Lawrence Road, Dayanand Nagar, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7176,\"SupplierName\":\"One Earth GG Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"Executive King Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206328\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486626,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive King Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206329\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486626,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive King Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206330\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486626,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Executive King Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Complimentary 2 bottles of packaged water in room per day&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;In room Tea \\/ Coffee makers (Replenishment as per hotel policy)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"206328\":[{\"Sequence\":[0],\"TPInvnSysId\":[206328],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206329\":[{\"Sequence\":[0],\"TPInvnSysId\":[206329],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206330\":[{\"Sequence\":[0],\"TPInvnSysId\":[206330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Amritsar','Amritsar,Punjab,Indian Subcontinent,North India,India','','974',0,0,2,'222_1633194323_0.jpg,222_1633194323_1.jpg,222_1633194323_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:39:13','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'one-earth-avaas',NULL,NULL,NULL,0),(223,28940,1,5293,0,0,0,'Family,Religious,Culture,Weekend',NULL,1,1,0,'{\"package\":{\"TPId\":28940,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_dara_royale_1632998111.jpg\",\"BookingValidUntill\":\"2022-04-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Amritsar\",\"DestinationPlacesSysId\":974,\"SourcePlaces\":\"Amritsar\",\"SourcePlaceSysId\":974,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Dara Royale\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7177\",\"SupplierName\":\"Hotel Dara Royale\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Culture,Weekend\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-04-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486629,\"Name\":\"Hotel Dara Royale Amritsar\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.6650243\",\"Long\":\"74.9138445\",\"Address\":\"Majitha-Verka By Pass, opp. Fortis Escort, ByePass, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7177,\"SupplierName\":\"Hotel Dara Royale\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206349\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486629,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206350\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486629,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206351\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486629,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Accommodation in well-appointed rooms.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Welcome Drink on Arrival. (Non Alcoholic)&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Buffet breakfast (fixed Menu) on the next day.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Complimentary usage of Wi-Fi.&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:#222222&quot;&gt;Complimentary 02 Bottles of Mineral water Each Day&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"8692\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206349\":[{\"Sequence\":[0],\"TPInvnSysId\":[206349],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206350\":[{\"Sequence\":[0],\"TPInvnSysId\":[206350],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206351\":[{\"Sequence\":[0],\"TPInvnSysId\":[206351],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Amritsar','Amritsar,Punjab,Indian Subcontinent,North India,India','','974',0,0,2,'223_1633194301_0.jpg,223_1633194301_1.jpg,223_1633194301_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-04-30 00:00:00','2022-04-30 00:00:00',3,'India','101','2023-08-25 13:38:36','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-dara-royale',NULL,NULL,NULL,0),(224,28981,1,5293,0,0,0,'Adventure,Wildlife,Heritage,Culture,Weekend,Leisure,By Cab',NULL,1,1,0,'{\"package\":{\"TPId\":28981,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/sultan_bagh_ranthambore_1633336016.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Situated in Ranthambore at a distance of 3.5 Kms from the&amp;nbsp;Ranthambore National Park,&lt;br \\/&gt;\\r\\nentry gate Sultan Bagh is a resort established and managed by the Son of Thakur Sultan&lt;br \\/&gt;\\r\\nSinghji of Thikana Padampura of the erstwhile Jaipur State. The resort provides for stay&lt;br \\/&gt;\\r\\nin Luxurious Tents and Cottages to make the guests feel as if they are staying in a jungle.&lt;br \\/&gt;\\r\\nHere one would experience the traditional \\/ royal hospitality of Rajputana.&lt;br \\/&gt;\\r\\nPadampura was a Tajimi (Principal) Thikana (Chiefship) of erstwhile State of Jaipur and&lt;br \\/&gt;\\r\\nThakur Sultan Singhji was an officer in the army of the state known as Sawai Man Guard&lt;br \\/&gt;\\r\\nwhich then came to be known as Rajputana Rifles of the Indian Army. He loved nature&lt;br \\/&gt;\\r\\nand wildlife and used to spent lot of his time living in the jungle, living in tents and&lt;br \\/&gt;\\r\\nobserving wildlife. The descendants of Sultan Singhji decided to develop a property with&lt;br \\/&gt;\\r\\na view to make the guests feel the same ambience of nature staying in tents as was felt by&lt;br \\/&gt;\\r\\nThakur Sultan Singhji at that time.&lt;br \\/&gt;\\r\\nSultan Bagh is always available to help, guide and give advice. For your convenience,&lt;br \\/&gt;\\r\\nreservations is available for any query or assistance. We trust you will carry back with&lt;br \\/&gt;\\r\\nyou, many treasured memories and stories of your stay at Sultan Bagh.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ranthambore\",\"DestinationPlacesSysId\":22593,\"SourcePlaces\":\"Ranthambore\",\"SourcePlaceSysId\":22593,\"AgencyName\":\"I Need Trip\",\"Name\":\"Sultan Bagh Ranthambore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7196\",\"SupplierName\":\"Sultan Bagh Ranthambore\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Adventure,Wildlife,Heritage,Culture,Weekend,Leisure,By Cab\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486735,\"Name\":\"Sultan Bagh Ranthambore\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0877815\",\"Long\":\"76.44544139999999\",\"Address\":\"Village Ranwal, Ranthambhore, Ranwal, Rajasthan 322029, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7196,\"SupplierName\":\"Sultan Bagh Ranthambore\",\"priceaditionals\":null,\"RoomTypeName\":\"Maharaja Villa\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486736,\"Name\":\"Sultan Bagh Ranthambore\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0877815\",\"Long\":\"76.44544139999999\",\"Address\":\"Village Ranwal, Ranthambhore, Ranwal, Rajasthan 322029, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7196,\"SupplierName\":\"Sultan Bagh Ranthambore\",\"priceaditionals\":null,\"RoomTypeName\":\"Rajwada Machan\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206624\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486735,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Maharaja Villa\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486736,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Rajwada Machan\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206626\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486735,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Maharaja Villa\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486736,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Rajwada Machan\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206628\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486735,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Maharaja Villa\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486736,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Rajwada Machan\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Welcome Drink on Arrival&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Free Use of Wi-Fi&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8723\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206624\":[{\"Sequence\":[0],\"TPInvnSysId\":[206624],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206626\":[{\"Sequence\":[0],\"TPInvnSysId\":[206626],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206628\":[{\"Sequence\":[0],\"TPInvnSysId\":[206628],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ranthambore','Ranthambore,Rajasthan,Indian Subcontinent,North India,India','','22593',0,0,2,'224_1633438139_0.jpg,224_1633438139_1.jpg,224_1633438139_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:38:11','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'sultan-bagh-ranthambore',NULL,NULL,NULL,0),(225,28983,1,5293,0,0,0,'Religious,Heritage,Culture,Weekend',NULL,1,1,0,'{\"package\":{\"TPId\":28983,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/zone_by_the_park_jodhpur_1633337361.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Zone by The Park is an elegant hotel in the Sun City, Jodhpur offering lavish accommodations and contemporary amenities.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Boasts of an on-site spa offering relaxing treatments(not operational as of now).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The city&amp;#39;s railway station is just 3 km away from the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The open dining space overlooks the majestic Umaid Bhawan Palace and Mehrangarh fort (not operational as of now).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Features a spacious and well-mainatined lawn.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jodhpur\",\"DestinationPlacesSysId\":13184,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Zone By The Park, Jodhpur \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7197\",\"SupplierName\":\"Zone By The Park, Jodhpur\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Religious,Heritage,Culture,Weekend\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486737,\"Name\":\"Zone By The Park-Jodhpur\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2584432\",\"Long\":\"73.0071426\",\"Address\":\"&quot;Jawahar Tower&quot; 29 (2-A), Light Industrial Area, Shakun Motors, Tiraha, Sector-H, Shastri Nagar, Jodhpur, Rajasthan 342003, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7197,\"SupplierName\":\"Zone By The Park, Jodhpur\",\"priceaditionals\":null,\"RoomTypeName\":\"Zone Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486738,\"Name\":\"Zone By The Park-Jodhpur\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2584432\",\"Long\":\"73.0071426\",\"Address\":\"&quot;Jawahar Tower&quot; 29 (2-A), Light Industrial Area, Shakun Motors, Tiraha, Sector-H, Shastri Nagar, Jodhpur, Rajasthan 342003, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7197,\"SupplierName\":\"Zone By The Park, Jodhpur\",\"priceaditionals\":null,\"RoomTypeName\":\"Zone Deluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":486739,\"Name\":\"Zone By The Park-Jodhpur\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2584432\",\"Long\":\"73.0071426\",\"Address\":\"&quot;Jawahar Tower&quot; 29 (2-A), Light Industrial Area, Shakun Motors, Tiraha, Sector-H, Shastri Nagar, Jodhpur, Rajasthan 342003, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7197,\"SupplierName\":\"Zone By The Park, Jodhpur\",\"priceaditionals\":null,\"RoomTypeName\":\"Zone Luxe\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206630\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486737,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486739,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Luxe\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206633\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486737,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486739,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Luxe\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206636\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486737,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":486738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":486739,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Zone Luxe\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8725\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206630\":[{\"Sequence\":[0],\"TPInvnSysId\":[206630],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206633\":[{\"Sequence\":[0],\"TPInvnSysId\":[206633],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206636\":[{\"Sequence\":[0],\"TPInvnSysId\":[206636],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jodhpur','Jodhpur,Rajasthan,Indian Subcontinent,North India,India','','13184',0,0,2,'225_1633437883_0.jpg,225_1633437883_1.jpg,225_1633437883_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:37:28','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'zone-by-the-park-jodhpur',NULL,NULL,NULL,0),(226,28986,1,5293,0,0,0,'Family,Religious,Culture,Weekend,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28986,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/hotel_classic_residency_1633339677.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Soak into the lush green surrounding at Hotel Classic Residency, a beautiful paradise for nature-lovers.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;The outdoor pool is an ideal spot for guests to relax and unwind.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The hotel is surrounded by a beautiful garden that also has an outdoor seating area.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Located at the base of the mountains, it is a perfect stopover before heading up for a pilgrimage or adventure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;To keep kids occupied, the property features a kids pool.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Haridwar\",\"DestinationPlacesSysId\":11530,\"SourcePlaces\":\"Haridwar\",\"SourcePlaceSysId\":11530,\"AgencyName\":\"I Need Trip\",\"Name\":\"Hotel Classic Residency\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6608\",\"SupplierName\":\"Hotel Classic The Mall - Nainital \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Culture,Weekend,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486741,\"Name\":\"Classic Residency\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.93096319999999\",\"Long\":\"78.1289798\",\"Address\":\"Jwalapur Road, near Shankar Aashram, Yogi Vihar Colony, Model Colony, Haridwar, Uttarakhand 249407, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6608,\"SupplierName\":\"Hotel Classic The Mall - Nainital \",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206639\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486741,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206640\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486741,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206641\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486741,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8731\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206639\":[{\"Sequence\":[0],\"TPInvnSysId\":[206639],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206640\":[{\"Sequence\":[0],\"TPInvnSysId\":[206640],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206641\":[{\"Sequence\":[0],\"TPInvnSysId\":[206641],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Haridwar','Haridwar,Uttarakhand,Indian Subcontinent,North India,India','','11530',0,0,2,'226_1633439432_0.jpg,226_1633439432_1.jpg,226_1633439432_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-25 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-25 13:37:12','2023-08-25 00:00:00',1,1,'0','0','0','','','',NULL,'hotel-classic-residency',NULL,NULL,NULL,0),(227,28999,1,5293,0,0,0,'Family,Religious,Culture,Weekend,Leisure,By Cab,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28999,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/one_earth_hardwar_1633420094.jpg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Haridwar\",\"DestinationPlacesSysId\":11530,\"SourcePlaces\":\"Haridwar\",\"SourcePlaceSysId\":11530,\"AgencyName\":\"I Need Trip\",\"Name\":\"ONE EARTH HARIDWAR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7176\",\"SupplierName\":\"One Earth GG Regency \"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink\",\"PackageType\":\"Family,Religious,Culture,Weekend,Leisure,By Cab,Road Trip\",\"Validity\":{\"From\":\"2023-08-08\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":486776,\"Name\":\"One Earth Hardwar\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.979172\",\"Long\":\"78.182785\",\"Address\":\"near, dudhadhari chowk, Motichur, Haridwar, Uttarakhand 249411, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7176,\"SupplierName\":\"One Earth GG Regency \",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206748\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486776,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206749\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486776,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206750\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":486776,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free Use of Wi-Fi&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"8750\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"206748\":[{\"Sequence\":[0],\"TPInvnSysId\":[206748],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206749\":[{\"Sequence\":[0],\"TPInvnSysId\":[206749],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"206750\":[{\"Sequence\":[0],\"TPInvnSysId\":[206750],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Haridwar','Haridwar,Uttarakhand,Indian Subcontinent,North India,India','','11530',0,0,2,'227_1633438574_0.jpg,227_1633438574_1.jpg,227_1633438574_2.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-08-08 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2023-08-08 12:04:26','2023-08-08 00:00:00',1,1,'0','0','0','','','',NULL,'one-earth-haridwar',NULL,NULL,NULL,0),(229,29125,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":29125,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/6_days_turkey_diwali_tour_package_1634115421.jpg\",\"BookingValidUntill\":\"2021-11-01\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;We design tour packages perfectly for Indian travelers to get unforgettable Diwali Holidays in Turkey covering two great destinations of Istanbul and Cappadocia. You will get Indian Cuisine for Veg, Non- veg and Jaine taste. There are no long bus journeys.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"6 DAYS TURKEY DIWALI TOUR PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7234\",\"SupplierName\":\"TravelShop Turkey\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2021-10-13\",\"To\":\"2021-11-01\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"207632\",\"Title\":\"Istanbul - & Cappadocia - Arrival Day \\u2013 01.11.2021\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"<p>Welcome to Turkey, today is your arrival day. After arriving at Istanbul International Airport directly, proceed to domestic departures for your flight to Cappadocia. Meet at Cappadocia Airport and transfer to your hotel. Your room key will be given to you and the rest of the day is yours to explore Cappadocia. Overnight in Cappadocia.<\\/p>\\r\\n\\r\\n<p><strong>Note: please note that according to your flight time Indian dinner might serve as packed.<\\/strong><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207634\",\"Title\":\"Cappadocia Tour with Underground City and Goreme Open Air Museum\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast, we will drive you to&nbsp;Ozkonak Underground City, one of the best-preserved underground cities in Cappadocia. Than see the&nbsp;Uchisar Castle, the highest point of Cappadocia. After Uchisar, you visit&nbsp;Goreme Open Air Museum, the Heart of Cappadocia. Goreme Open Air Museum is famous for frescoes dating to 10th century describing the life of Jesus Christ and monks. Next stop is&nbsp;Cavusin, which is an abandoned village with old cave Greek houses. After Cavusin you go to the restaurant in&nbsp;Avanos&nbsp;to have lunch. After lunch, you visit a pottery workshop, to see how to make potteries. Then you go to&nbsp;Love Valley. Love Valley is a hidden valley with scenic formations to say the least. Despite the resemblance to man hood, these amazing rock formations are far from man- made. After Love Valley you visit another workshop to see Cappadocian handwoven carpets and kilims. Next stop is&nbsp;Devrent Valley, which also called Imagination Valley, where you can see natural rock formations looking like animals. Then you head to a wine shop in&nbsp;Urgup&nbsp;for wine tasting. Last<\\/p>\\r\\n\\r\\n<p>stop is&nbsp;Three Beauties, three beautiful fairy chimneys with their hats, which is the symbol of Cappadocia. This tour will end approximately at 18.00 and you will return to your hotel. Overnight in Cappadocia.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207636\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207638\",\"Title\":\"Cappadocia to Istanbul\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"<p>After breakfast, depart for Cappadocia Airport for your domestic flight to Istanbul. Upon arrival transfer from airport and check in to your hotel in Istanbul. The rest of the day is at your leisure. Overnight in Istanbul.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207640\",\"Title\":\"Istanbul City Tour and Dinner Cruise on the Bosphorus on Diwali \\u2013 04.11.2021\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast, we have Istanbul City Tour. Our first visit will be&nbsp;HIPPODROME.&nbsp;Ancient Hippodrome was the scene of chariot races, with the three monuments; the Obelisk of Theodosius, the bronze Serpentine Column and the Column of Constantine. Than we will visit&nbsp;SULTANAHMET IMPERIAL MOSQUE.&nbsp;Across from Hagia Sophia Grand Mosque, it built in the 16th century by the architect Mehmet, is known as the BLUE MOSQUE because of its magnificent interior decoration of blue Iznik tiles. Our next visit will be&nbsp;HAGIA SOPHIA GRAND MOSQUE. The Hagia Sophia Grand Mosque, previously known as the Church of Divine Wisdom, is simply the best of its kind! Hagia Sophia Grand Mosque is the greatest surviving example of Byzantine Architecture. For 1000 years, it was once the largest church in the world, decorated with stunning 6th century golden mosaics. Today it is a mosque. Lunch break at 13:00 pm. After the lunch, Murtis Tour will take you to the&nbsp;GRAND SPICE BAZAAR,&nbsp;which is a unique atmosphere with reasonable prices for your shopping. Here you will find; Exotic Spices and Herbs, Turkish Baklava, Turkish Delights, Turkish Coffee, nuts and fruits, small souvenirs such as Ceramic Handicrafts, Evil Eyes totems, all naturel olive oil, soaps and many other goods in Souvenir Shops and stores. After the tour, transfer back to your hotel.<\\/p>\\r\\n\\r\\n<p>In the evening between 19:30&nbsp;&ndash;&nbsp;20:00 you will be picked up from your hotel and transfer to the boat for Dinner Cruise on the Bosphorus on Dwali and drop of back to hotel at the end of tour. During the tour&nbsp;you will be able to see historical places like Dolmabahce Palace, Ortakoy Mosque, Maiden&rsquo;s Tower,&nbsp;Rumeli Fortress, Bosporus Bridge, Fatih Sultan Mehmet Bridge, Beylerbeyi Palace etc. After the dinner you can dance the night away to entertaining music provided by professional DJ and traditional show programs or simply relax with a drink and enjoy the view. We combine a delicious meal with unparalleled views of Istanbul and live entertainment to create Istanbul&#39;s leading Bosporus Dinner Cruise.End of entertainment at about midnight 12:00pm, transfer to your hotel.Overnight in Istanbul.<\\/p>\\r\\n\\r\\n<p>Please Note: Topkapi Palace closed on Tuesdays. If your tour is on one of these days we would offer you to visit Underground Cistern instead of Topkapi Palace Museum. Overnight in Istanbul.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207642\",\"Title\":\"Istanbul Bosporus Cruise \\u2013 05.11.2021\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast enjoy&nbsp;BOSPORUS BY BOAT; a traditional excursion by boat along the waterway separating Europe and Asia. The shore lined with old wooden villas, palaces of marble, fortresses, and small fishing villages. During the excursion, you will see the magnificent sights of the following attractions from your boat. See Dolmabahce Palace, and further along, the parks and imperial pavilions of Yildiz Palace. On the coastal edge of this park, is Ciragan Palace, 300 meters of its marble facade faces the shore. At Ortakoy a great variety of artists, gather every sunday to display their work along the street. Ortakoy is a symbol of tolerance with a church, a mosque and a synagogue existing side by side for centuries. RUMELI FORTRESS (view from boat), Built by Mehmet the Conqueror in 1452 prior to the conquest of Istanbul was completed in only four months to control and protect the infamous Bosporus passage. It is one of the most beautiful works of military architecture anywhere in the world. BEYLERBEYI PALACE (view from boat), is the summer residence of Ottoman sultans exists in its original renovated glory featuring original antique furniture and magnificent gardens with the Harem on the Asian side of Istanbul. Lunch break at the Turkish restaurant. After the lunch we will then take you to the&nbsp;GRAND COVERED BAZAAR&nbsp;In this labyrinth of streets and passages are more&nbsp;han 4,000 shops with each trade having its own area: the goldsmiths&#39; street, the carpet sellers, Turkish arts and crafts, such as hand painted ceramic plates, hand-honed copperware, brassware and trays, water ewers, onyx-ware and meerschaum pipes. After the tour transfer back to your hotel. Overnight in Istanbul.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207644\",\"Title\":\"Istanbul - End of Tour \\u2013 06.11.2021\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"<p>After breakfast, we check out from the hotel and transfer to Istanbul International Airport. We hope your tour was a memorable one and we look forward to seeing you in the future on another TravelShop Turkey Tour. Have a safe trip back home and thanks for choosing TravelShop Turkey.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29125\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"42527.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-11-01\",\"To\":\"2021-11-01\",\"Currency\":1,\"priceTripleOcc\":42527,\"priceDoubleOcc\":\"42527.10\",\"priceSingleOcc\":85054.2,\"priceExtraBed\":\"42527.10\",\"priceWithoutBed\":\"42527.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42527.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;International flights&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Insurance: All types&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Turkey entry visa&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;City tax&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Items of a personal nature such as alcoholic drinks, cold drinks, laundry&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any others expenses which are not mentioned at the included section&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Domestic flight from Istanbul to Cappadocia&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Domestic flight from Cappadocia to Istanbul&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Please Note: Domestic flight price for adult travelers is approximately Euros: 50,00 for one&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;way and for under 2 years old, approximately Euros: 20,00 as an insurance policy.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All airport transfer services mentioned inside the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival airport transfer to Kayseri \\/ Nevsehir airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3&amp;nbsp;nights&amp;rsquo;&amp;nbsp;hotel in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2&amp;nbsp;nights&amp;rsquo;&amp;nbsp;hotel in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 Indian Dinners&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Indian Lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan as Mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul Bosporus Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dinner Cruise on the Bosphorus on Diwali with unlimited local alcoholic drinks&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Cappadocia Tour with Underground City and Goreme Open Air Museum&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation in a fully air - conditioned, non - smoking vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Professional English - speaking tour guides&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"207632\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[207632],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207634\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[207634],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207636\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[207636],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"207638\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[207638],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207640\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[207640],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207642\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[207642],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207644\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[207644],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Cappadocia,Istanbul','Cappadocia,Central Asia,Turkey,Eurasia,Istanbul','','5094,12905',42527,42527,5,'229_1634735653_0.jpg,229_1634735653_1.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2021-10-13 00:00:00','2021-11-01 00:00:00','2021-11-01 00:00:00',3,'Turkey','222','2022-02-02 14:26:41','2021-10-13 00:00:00',1,1,'0','0','0','','','',NULL,'6-days-turkey-diwali-tour-package',NULL,NULL,NULL,0),(231,29215,1,5293,0,0,0,'Family,Cruise,Religious,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":29215,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/discover_cairo__nile_cruise_1634812416.jpg\",\"BookingValidUntill\":\"2021-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cairo\",\"DestinationPlacesSysId\":4701,\"SourcePlaces\":\"Cairo\",\"SourcePlaceSysId\":4701,\"AgencyName\":\"I Need Trip\",\"Name\":\"Discover Cairo & Nile Cruise\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7256\",\"SupplierName\":\"Egypt Promotion Travel (S.A.E)\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Cab,Airport Transfers,Sightseeing,Guided Tours,Cruise\",\"PackageType\":\"Family,Cruise,Religious,Culture,Leisure\",\"Validity\":{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":4701,\"Title\":\"Cairo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":487314,\"Name\":\"Concorde El Salam Hotel\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.9643186\",\"Long\":\"34.3987731\",\"Address\":\"Qesm Sharm Ash Sheikh, South Sinai Governorate, Egypt\"},\"Images\":[],\"CityId\":4701,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7256,\"SupplierName\":\"Egypt Promotion Travel (S.A.E)\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"EP\"},{\"RefHotelId\":487316,\"Name\":\"Concorde El Salam Hotel\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.9643186\",\"Long\":\"34.3987731\",\"Address\":\"Qesm Sharm Ash Sheikh, South Sinai Governorate, Egypt\"},\"Images\":[],\"CityId\":4701,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7256,\"SupplierName\":\"Egypt Promotion Travel (S.A.E)\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":19466,\"Title\":\"Nile Cruise\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":487315,\"Name\":\"Nile Dolphin Residence\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9665581\",\"Long\":\"31.22617270000001\",\"Address\":\"13 Aswan Western Agricultural Rd, Gazirat Ad Dahab, Giza District, Giza Governorate, Egypt\"},\"Images\":[],\"CityId\":19466,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7256,\"SupplierName\":\"Egypt Promotion Travel (S.A.E)\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"208234\",\"Title\":\"Arrival in Cairo\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>Your representative will meet &amp; greet you at Cairo International Airport. Transfer by air-conditioned car to your hotel. Upon arrival at the hotel he will do your check in and give you detailed information concerning your excursion of tomorrow.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487314,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208235\",\"Title\":\"Giza Pyramids \\/ Egyptian Museum\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"<p><span style=\\\"color:#500050\\\"><span style=\\\"color:black\\\">After breakfast, enjoy an unique excursion to the Great Pyramids of Cheops, Chephren and Mykerinus &amp; to the oldest known monumental sculpture and the largest monolith statue in the world, the great Sphinx. Visit also the Valley Temple, which was attributed to king Chefren and had been used for the mummification process .Then pay a visit to the Egyptian Museum where you can see the collection of Tutankhamen among other splendid pharaonic artifacts. Continue to Coptic Cairo to visit the Hanging Church and Ben Ezra Synagogue. Shopping in the lively Khan El Khalili Bazaar, which dates back to 1382. Back to hotel, night in Cairo.&nbsp;<\\/span><\\/span><\\/p>\\r\\n\\r\\n<p><span style=\\\"color:#500050\\\">&nbsp;<\\/span><\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208236\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208237\",\"Title\":\"Cruise from Luxor\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":3,\"Program\":\"<p>Check out from hotel in the morning then transfer to Cairo Airport for a flight to Luxor where you will be met and assisted, then taken by an air-conditioned car to board your 5 star Egypt Nile cruise. After lunch on board, visit the impressive Karnak Temples and Luxor Temple. Dinner and night on board&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208238\",\"Title\":\"Sailing to Edfu\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"<p>After breakfast, an excursion to the royal cemetery for 62 Pharaohs, the Valley of the Kings, then to the mortuary temple of Queen Hatshepsut, which was built by the architects of the New Kingdom in the 15th century BC. Visit the Colossi of Memnon. After lunch, sailing to Edfu. Dinner on board.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208239\",\"Title\":\"Edfu\\/Kom Ombo temples\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"<p>After breakfast, visit the well-preserved Ptolemaic Temple dedicated to Horus at Edfu. Saiingl to Kom Ombo to see the unique Temple of Sobek, dedicated toSobek the crocodile god, and Horus the falcon-headed god. Lunch on board. Continue sailing to Aswan. Dinner on board.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208240\",\"Title\":\"Aswan Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"<p>After breakfast, enjoy a day&rsquo;s sightseeing in Aswan. Start with the High Dam and the largest known ancient obelisk, located in the northern region of the stone quarries of ancient Egypt, the Unfinished Obelisk, then on to the beautiful Temple of Philae, which is devoted to the two goddesses Isis and Hathor. Sail and move around Elephantine Island by a local felucca boat.&nbsp;Dinner on board. Night in Aswan.&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487315,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208241\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208242\",\"Title\":\"Back to Cairo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast, transfer to Aswan Airport for your return to Cairo where you will be met and assisted at the airport then taken to your hotel. Overnight in Cairo.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487316,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208243\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"<p>Breakfast and transfer to Cairo International Airport for departure.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29215\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"1887.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-21\",\"To\":\"2021-12-15\",\"Currency\":1,\"priceTripleOcc\":1888,\"priceDoubleOcc\":\"1887.60\",\"priceSingleOcc\":3775.2,\"priceExtraBed\":\"1887.60\",\"priceWithoutBed\":\"1887.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"1887.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;International and domestic flight tickets&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any Extras not mentioned&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Entrance inside the Pyramids tombs, solar boat &amp;amp; Tut tomb&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Tipping\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b\\u200b&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet &amp;amp; Assist&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in 5* Hotel in Cairo for 3nts\\/4days based on Bed &amp;amp; Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation at 5* Nile Cruise for 4nts\\/5days based on Full Board ( All Meals )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as mentioned in the itinerary with private Egyptologist English guide &amp;amp; Entrance fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers as mentioned in the itinerary with Private A\\/C modern Coach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily one mineral water during sightseeing&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;display: block; width: 0px; height: 0px; padding: 0px; border: 0px; margin: 0px; position: absolute; top: 0px; left: -9999px; opacity: 0; overflow: hidden;&quot;&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"208234\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[208234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208235\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[208235],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208236\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[208236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208237\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[208237],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208238\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[208238],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208239\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[208239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208240\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[208240],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208241\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[208241],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208242\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[208242],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"208243\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[208243],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Cairo,Nile Cruise','Cairo,Northern Africa,Egypt,Nile Cruise','','4701,19466',1888,1888,7,'231_1635248475_0.jpg,231_1635248475_1.jpg,231_1635248475_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"}]',2,'',0,'2021-10-21 00:00:00','2021-12-15 00:00:00','2021-12-15 00:00:00',3,'Egypt','65','2021-12-24 15:40:14','2021-10-21 00:00:00',1,1,'0','0','0','','','',NULL,'discover-cairo-nile-cruise',NULL,NULL,NULL,0),(232,30745,1,5293,1,0,0,'Honeymoon,Family,Religious,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":30745,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/magnificent-north-east_1691404104\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;North East&amp;nbsp;is a region least explored, most mysterious and arguably&amp;nbsp;the most beautiful parts of the Indian subcontinent. It opens its doors to pristine natural beauty, rare and endangered wildlife and plant species, rich ethnic diversity and unique tribal cultural heritage. The geography of the area is as varied as its people. While the famous one-horned Asian rhinos graze peacefully in Kaziranga&amp;rsquo;s grasslands beside the mighty Brahmaputra River in Assam, waterfalls thunder down the forested hills and valleys of Meghalaya, and snowy peaks of the Himalayas dominate the northern landscape of Arunachal Pradesh as well as of Sikkim. Winding mountain roads and bamboo forested hills characterise Mizoram&amp;rsquo;s landscape while the rolling hills and valleys run throughout Nagaland.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bagdogra\",\"DestinationPlacesSysId\":2012,\"SourcePlaces\":\"Bagdogra\",\"SourcePlaceSysId\":2012,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAGNIFICENT NORTH EAST\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7689\",\"SupplierName\":\"HEAT & Koyeli Team,\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Cab,Airport Transfers,Train Station Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Religious,Hill Station,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10106,\"Title\":\"Gangtok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595418,\"Name\":\"Sidlon Residency Gangtok\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":10106,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22462,\"Title\":\"Tshangu Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17015,\"Title\":\"Nam Nang View Point\",\"Description\":\"Namnang View Point\\/ Gangtok Ropeway: The Namnang Viewpoint is adjacent to the Gangtok Ropeway. Our driver suggested that if we were going for the ropeway, it is equivalent to viewing the city from Namnang viewpoint. Lasting only for a total of 7 minutes (to and fro journey combined), the Gangtok Ropeway is simply wastage of money. The ticket is priced at 117 INR. The trolley doesn&amp;rsquo;t halt on the other side it touches the base and comes back to the origin. Yes, it is true that the bird-eye view of the city can be enjoyed from the trolley, but it lasts only for a few minutes.We explored all these places in one day (beginning our day at 09:00 AM and finishing with the Ropeway by 4:00 PM). Gangtok Ropeway is less than a km away from MG Marg. Hence, after you finish the ropeway, you can walk your way down the road. Like we have been repeatedly writing that we spent three nights in Gangtok, every evening, we spent our time in MG Marg. Not that we are shopping enthusiasts, but we wanted to soak in the crowd, culture, food and milieu of the capital of Sikkim.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Nam_Nang_View_Point_10106_1595326891.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17016,\"Title\":\"Chenrezig Statue &amp; Skywalk\",\"Description\":\"Nestled at an altitude of 7,200 feet above the sea level lies the spectacular Skywalk of Pelling along with the fourth tallest statue of Chenrezig. It was inaugurated in November 2018 and since then it has flourished to become one of the famous tourist attractions. It is the India&amp;#039;s first Skywalk and home to a 137 feet statue of Chenrezig making it a Buddhist pilgrimage site. Chenrezig also known as Avalokiteshvara is the early manifestation of Buddha&amp;#039;s compassion. \\r\\n\\r\\nSkywalk opening hours: The opening time of the Pelling Skywalk is 9 am to 6 pm, the 9 hours provided gives ample amount of time for the people to get a chance of enjoying this thrilling walk.\\r\\n\\r\\nSkywalk tickets: Though it is the India&amp;rsquo;s first Skywalk the entrance fee is very reasonable and affordable for everyone.The fee is Rs. 20 for local and Rs. 50 for non-local.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/Chenrezig_Statue_&amp;_Skywalk_21043_1595328128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22457,\"Title\":\"Kanchenjunga Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3587417,\"Long\":88.19879999999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9569,\"Title\":\"Khecheopalri Lake\",\"Description\":\"The blissful Khecheopalri Lake is a hidden gem of Sikkim known for its mystical beauty and sacred pilgrimage site. A paradise of nature lovers amidst the lush forest, the Khecheopalri Lake is a must-visit spot in Pelling, Sikkim. Located around 31 km from Pelling, this holy lake is known as the wishing lake and hence one of the most popular places in Sikkim.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.349221,\"Long\":88.1882768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/48_1558691180.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":646,\"Title\":\"Happy Valley Tea Estate\",\"Description\":\"It is Darjeeling&amp;#039;s second oldest tea estate. Spread over 177 hectares.  It  is also one of the highest tea factories in the world.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0498954,\"Long\":88.261977,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5653\\/thumb\\/Happy Valley Tea Estate_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1343,\"Title\":\"Peace Pagoda\",\"Description\":\"Peace Pagoda, Darjeeling or Darjeeling Peace Pagoda is one of the Peace Pagodas designed to provide a focus for people of all races and creeds to help unite them in their search for world peace. It is located in the town of Darjeeling in the Indian state of West Bengal.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0130623,\"Long\":88.2540729,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1352\\/thumb\\/Peace pagoda_312.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}},{\"CityId\":21043,\"Title\":\"Pelling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595419,\"Name\":\"Hotel Pelling Crest\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":21043,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22462,\"Title\":\"Tshangu Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17015,\"Title\":\"Nam Nang View Point\",\"Description\":\"Namnang View Point\\/ Gangtok Ropeway: The Namnang Viewpoint is adjacent to the Gangtok Ropeway. Our driver suggested that if we were going for the ropeway, it is equivalent to viewing the city from Namnang viewpoint. Lasting only for a total of 7 minutes (to and fro journey combined), the Gangtok Ropeway is simply wastage of money. The ticket is priced at 117 INR. The trolley doesn&amp;rsquo;t halt on the other side it touches the base and comes back to the origin. Yes, it is true that the bird-eye view of the city can be enjoyed from the trolley, but it lasts only for a few minutes.We explored all these places in one day (beginning our day at 09:00 AM and finishing with the Ropeway by 4:00 PM). Gangtok Ropeway is less than a km away from MG Marg. Hence, after you finish the ropeway, you can walk your way down the road. Like we have been repeatedly writing that we spent three nights in Gangtok, every evening, we spent our time in MG Marg. Not that we are shopping enthusiasts, but we wanted to soak in the crowd, culture, food and milieu of the capital of Sikkim.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Nam_Nang_View_Point_10106_1595326891.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17016,\"Title\":\"Chenrezig Statue &amp; Skywalk\",\"Description\":\"Nestled at an altitude of 7,200 feet above the sea level lies the spectacular Skywalk of Pelling along with the fourth tallest statue of Chenrezig. It was inaugurated in November 2018 and since then it has flourished to become one of the famous tourist attractions. It is the India&amp;#039;s first Skywalk and home to a 137 feet statue of Chenrezig making it a Buddhist pilgrimage site. Chenrezig also known as Avalokiteshvara is the early manifestation of Buddha&amp;#039;s compassion. \\r\\n\\r\\nSkywalk opening hours: The opening time of the Pelling Skywalk is 9 am to 6 pm, the 9 hours provided gives ample amount of time for the people to get a chance of enjoying this thrilling walk.\\r\\n\\r\\nSkywalk tickets: Though it is the India&amp;rsquo;s first Skywalk the entrance fee is very reasonable and affordable for everyone.The fee is Rs. 20 for local and Rs. 50 for non-local.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/Chenrezig_Statue_&amp;_Skywalk_21043_1595328128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22457,\"Title\":\"Kanchenjunga Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3587417,\"Long\":88.19879999999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9569,\"Title\":\"Khecheopalri Lake\",\"Description\":\"The blissful Khecheopalri Lake is a hidden gem of Sikkim known for its mystical beauty and sacred pilgrimage site. A paradise of nature lovers amidst the lush forest, the Khecheopalri Lake is a must-visit spot in Pelling, Sikkim. Located around 31 km from Pelling, this holy lake is known as the wishing lake and hence one of the most popular places in Sikkim.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.349221,\"Long\":88.1882768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/48_1558691180.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":646,\"Title\":\"Happy Valley Tea Estate\",\"Description\":\"It is Darjeeling&amp;#039;s second oldest tea estate. Spread over 177 hectares.  It  is also one of the highest tea factories in the world.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0498954,\"Long\":88.261977,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5653\\/thumb\\/Happy Valley Tea Estate_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1343,\"Title\":\"Peace Pagoda\",\"Description\":\"Peace Pagoda, Darjeeling or Darjeeling Peace Pagoda is one of the Peace Pagodas designed to provide a focus for people of all races and creeds to help unite them in their search for world peace. It is located in the town of Darjeeling in the Indian state of West Bengal.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0130623,\"Long\":88.2540729,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1352\\/thumb\\/Peace pagoda_312.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}},{\"CityId\":7556,\"Title\":\"Darjeeling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595420,\"Name\":\"Hotel Silver Star\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":7556,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22462,\"Title\":\"Tshangu Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17015,\"Title\":\"Nam Nang View Point\",\"Description\":\"Namnang View Point\\/ Gangtok Ropeway: The Namnang Viewpoint is adjacent to the Gangtok Ropeway. Our driver suggested that if we were going for the ropeway, it is equivalent to viewing the city from Namnang viewpoint. Lasting only for a total of 7 minutes (to and fro journey combined), the Gangtok Ropeway is simply wastage of money. The ticket is priced at 117 INR. The trolley doesn&amp;rsquo;t halt on the other side it touches the base and comes back to the origin. Yes, it is true that the bird-eye view of the city can be enjoyed from the trolley, but it lasts only for a few minutes.We explored all these places in one day (beginning our day at 09:00 AM and finishing with the Ropeway by 4:00 PM). Gangtok Ropeway is less than a km away from MG Marg. Hence, after you finish the ropeway, you can walk your way down the road. Like we have been repeatedly writing that we spent three nights in Gangtok, every evening, we spent our time in MG Marg. Not that we are shopping enthusiasts, but we wanted to soak in the crowd, culture, food and milieu of the capital of Sikkim.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Nam_Nang_View_Point_10106_1595326891.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":17016,\"Title\":\"Chenrezig Statue &amp; Skywalk\",\"Description\":\"Nestled at an altitude of 7,200 feet above the sea level lies the spectacular Skywalk of Pelling along with the fourth tallest statue of Chenrezig. It was inaugurated in November 2018 and since then it has flourished to become one of the famous tourist attractions. It is the India&amp;#039;s first Skywalk and home to a 137 feet statue of Chenrezig making it a Buddhist pilgrimage site. Chenrezig also known as Avalokiteshvara is the early manifestation of Buddha&amp;#039;s compassion. \\r\\n\\r\\nSkywalk opening hours: The opening time of the Pelling Skywalk is 9 am to 6 pm, the 9 hours provided gives ample amount of time for the people to get a chance of enjoying this thrilling walk.\\r\\n\\r\\nSkywalk tickets: Though it is the India&amp;rsquo;s first Skywalk the entrance fee is very reasonable and affordable for everyone.The fee is Rs. 20 for local and Rs. 50 for non-local.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/Chenrezig_Statue_&amp;_Skywalk_21043_1595328128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22457,\"Title\":\"Kanchenjunga Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3587417,\"Long\":88.19879999999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9569,\"Title\":\"Khecheopalri Lake\",\"Description\":\"The blissful Khecheopalri Lake is a hidden gem of Sikkim known for its mystical beauty and sacred pilgrimage site. A paradise of nature lovers amidst the lush forest, the Khecheopalri Lake is a must-visit spot in Pelling, Sikkim. Located around 31 km from Pelling, this holy lake is known as the wishing lake and hence one of the most popular places in Sikkim.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.349221,\"Long\":88.1882768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/48_1558691180.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":646,\"Title\":\"Happy Valley Tea Estate\",\"Description\":\"It is Darjeeling&amp;#039;s second oldest tea estate. Spread over 177 hectares.  It  is also one of the highest tea factories in the world.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0498954,\"Long\":88.261977,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5653\\/thumb\\/Happy Valley Tea Estate_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1343,\"Title\":\"Peace Pagoda\",\"Description\":\"Peace Pagoda, Darjeeling or Darjeeling Peace Pagoda is one of the Peace Pagodas designed to provide a focus for people of all races and creeds to help unite them in their search for world peace. It is located in the town of Darjeeling in the Indian state of West Bengal.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0130623,\"Long\":88.2540729,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1352\\/thumb\\/Peace pagoda_312.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"218623\",\"Title\":\"Arrival NJP \\/ IXB  to Gangtok\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Gangtok&amp;nbsp; (5412 Ft \\/ 1650Mts, 130 Kms \\/ 04 to 05 Hrs Drive)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- On arrival at New Jalpaiguri Railway Station (NJP) \\/ Bagdogra Airport (IXB) (413 Ft \\/ 126 Mts), you will&amp;nbsp;be met by our&amp;nbsp;local representative, who will assist you to board the vehicle to Gangtok. On reaching Gangtok, check in and overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218628\",\"Title\":\"Gangtok  Excursion to Tshangu Lake &amp; New Baba Mandir \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;Tshangu Lake (12400Ft \\/ 3780 Mts \\/ 43 Kms \\/ 02 Hrs Drive one way) &amp;amp; New Baba Mandir (13100 Ft \\/ 3994 Mts \\/ 18 Kms \\/ 01 Hrs further drive from Tshangu Lake)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;-&amp;nbsp; Today after breakfast, start for full day excursion to Tshangu Lake &amp;amp; New Baba Mandir. Return back to Gangtok. Overnight at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Documents for Tshangu Lake &amp;amp; New Baba Mandir &amp;ndash; 02 Passport Size Photo along with Photo Copy of Photo ID Proof (Passport or Driving License or Voter ID (Pan Card &amp;amp; Adhaar Card is not accepted). For Children below 18 years, School Id \\/ College Id are a must. Original to be brought with self while travelling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Incase visit to Tshangu Lake is not possible, due to landslide or any other unforeseen reasons, alternative sightseeing will be provide.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Process for Foreigner, OCI &amp;amp; PIO Card holder are completely different, kindly inform us well in advance to plan out the itinerary accordingly.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Nathula Pass (14137 Ft \\/ 4310 Mts) Indo China Border (closed on Monday &amp;amp; Tuesday for tourist), visit is limited to Indian nationals only, allowed on the basis of advance permit &amp;amp; on extra cost. For rate, kindly refer to Supplement &amp;amp; Optional Cost Column, given below the main package cost.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22462,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218633\",\"Title\":\" Gangtok &acirc;&euro;&ldquo; Pelling\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;Pelling (5500 Ft \\/ 1675 Mts, 116 Kms \\/ 05 to 06 Hrs drive)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218656\",\"Title\":\"Gangtok to Pelling Via Namchi\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Approx Distance: 130 Km&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Estimated Travel Time: 6 hours&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast check out from hotel &amp;amp; start for Pelling (6,300 Ft. \\/ 120 Kms. \\/ 5 Hrs.). On arrival check-in to your hotel. Overnight stay at Pelling.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21043,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595419,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17015,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218661\",\"Title\":\"Pelling\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Pelling (5500 Ft \\/ 1675 Mts)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;-&amp;nbsp; After breakfast, proceed for Pelling local sightseeing covering Pemayangtse Monastery, Chenrezig Statue &amp;amp; Skywalk. Post lunch, proceed for sightseeing of Rimbi Water fall, Khecheopalri Lake &amp;amp; Kanchanjunga Water fall. Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21043,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595419,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17016,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22457,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9569,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1349,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2207,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218666\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21043,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218671\",\"Title\":\"Pelling to Darjeeling\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Approx Distance: 100 Km&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Estimated Travel Time: 4 hours&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast check out from the hotel and transfer to Darjeeling (6,950 Ft.) via Singla Check post. On arrival, check-in to the hotel and rest of the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Darjeeling.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218676\",\"Title\":\"Darjeeling\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;Darjeeling (6710 Ft \\/ 2046 Mts)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- *Early morning at around 0400am (subject to clear weather) for visit to Tiger Hills (8482 Ft \\/ 2586 Mts) to view the sunrise over mighty Kanchendzonga Peak (Third highest peak in the world). Back to hotel for breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- After breakfast go for a half-day sightseeing of local Darjeeling covering Peace Pagoda,**Padmaja Naidu Himalayan Zoological Park (Closed on Thursday, Local Festival and State &amp;amp; National Govt. holidays), Tenzing &amp;amp; Gombu Rock and Panoramic tour of Tea Estate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- Back to Hotel. Overnight at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;* Tiger Hill visit is subjected to availability of coupons, as only 600 vehicles are allowed in the morning. In case of non availability of coupons we will provide the Tiger Hill visit after breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Darjeeling Himalayan Railway (DHR) popularly known as Joy Train Ride. For rate, kindly refer to Supplement &amp;amp; Optional Cost Column, given below the main package cost.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":646,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1275,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1343,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1749,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1786,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2202,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218681\",\"Title\":\"Darjeeling - NJP \\/ IXB\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;New Jalpaiguri Railway Station (NJP) \\/ Bagdogra Airport (IXB) (413 Ft \\/ 126 Mts, 100 Kms \\/ 03 to 04 Hrs drive)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- After breakfast transfer to New Jalpaiguri Railway Station (NJP) \\/ Bagdogra Airport (IXB), for onwards connection.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Detour, drive via *Mirik Lake (4905 Ft \\/ 1495Mts.)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*Operational Status of few sightseeing points (Post COVID) : We have incorporated only those sightseeing places, which are operational as on date. We would also like you to note with the ever increasing Covid cases &amp;amp; contamination if any, the mentioned sightseeing points could also get closed at the time of actual travel. Please brief the guests accordingly so that there is no chance of dispute while on tour. Anyway, on your behalf we will be updating the guests about the operational condition through our pre tour briefing call.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"30745\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32780.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"20680.00\",\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":98340,\"priceExtraBed\":\"20680.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32780,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":17380,\"CEB\":20680,\"COSTDO\":32780,\"COSTSO\":98340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20680,\"COSTTO\":20680}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary.Entrance Fees &amp;amp;amp; Guide charges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Room Heater Charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on double\\/twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( MAP ) Breakfast and Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Exclusive Non a\\/c vehicle for transfers &amp;amp;amp; sightseeing. Please brief to guest that vehicle will not be at disposal it will be available to guest as per itinerary only (point to point basis).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All permit fees &amp;amp;amp; hotel taxes (as per itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"218623\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[218623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218628\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[218628],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218633\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[218633],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218656\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[218656],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218661\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[218661],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218666\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[218666],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218671\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[218671],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218676\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[218676],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218681\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[218681],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Gangtok,Pelling,Darjeeling','Gangtok,Sikkim,Indian Subcontinent,Northeast India,India,Pelling,Darjeeling,West Bengal,East India','','10106,21043,7556',32780,32780,6,'232_1640699624_0.jpg,232_1640699624_1.jpg,232_1640699624_2.jpg,232_1640699624_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'India','101','2024-01-16 16:00:43','2024-01-16 00:00:00',1,1,'1','1','0','','','',NULL,'magnificent-north-east',NULL,NULL,NULL,0),(233,30776,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":30776,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/meghalaya-with-cherrapunji--dawki_1691752822\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Separating the Assam valley from the plains of Bangladesh, hilly Meghalaya (&amp;lsquo;the abode of clouds&amp;rsquo;) is a cool, pine-fresh mountain state set on dramatic horseshoes of rocky cliffs. Cherrapunjee and Mawsynram are among the wettest places on Earth; most of the rain falls between June and September, creating very impressive waterfalls and carving out some of Asia&amp;rsquo;s longest caves.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Cherrapunji\",\"SourcePlaceSysId\":34563,\"AgencyName\":\"I Need Trip\",\"Name\":\"MEGHALAYA WITH CHERRAPUNJI & DAWKI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7689\",\"SupplierName\":\"HEAT & Koyeli Team,\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Cab,Airport Transfers,Train Station Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34563,\"Title\":\"Cherrapunji\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491206,\"Name\":\"Saimika Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.28791369999999\",\"Long\":\"91.70398929999999\",\"Address\":\"Cherrapunji&acirc;&euro;\\u017d, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Naitung Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491210,\"Name\":\"Cherrapunjee Holiday Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2189671\",\"Long\":\"91.662633\",\"Address\":\"Laitkynsew View Point Rd, Village, Cherrapunji&acirc;&euro;\\u017d, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491211,\"Name\":\"Jiva Resort Cherrapunjee\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.26094239999999\",\"Long\":\"91.74754759999999\",\"Address\":\"near Saitsohpen, Kutmadan, Cherrapunji&acirc;&euro;\\u017d, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Suite\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491229,\"Name\":\"Polo Orchid Resort Cherrapunjee\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.23386069999999\",\"Long\":\"91.7344344\",\"Address\":\"Mawsmai-Nongthymmai Road, near Water Falls, Cherrapunji&acirc;&euro;\\u017d, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Dew Drop Cottage\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22467,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.25126,\"Long\":91.6719691,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22468,\"Title\":\"Sohsarat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2173996,\"Long\":91.66331629999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22473,\"Title\":\"Dawki Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22475,\"Title\":\"Ward\'s Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":25.5758074,\"Long\":91.8865737,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}},{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491244,\"Name\":\"Poinisuk Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5714682\",\"Long\":\"91.896645\",\"Address\":\"Laitumkhrah Main Rd, Nongkynrih, Laitumkhrah, Shillong, Meghalaya 793003, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"A\\/c Executive\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491245,\"Name\":\"M crown Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5762338\",\"Long\":\"91.8824708\",\"Address\":\"3rd floor, MarBa Hub, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491246,\"Name\":\"Hotel Polo Towers\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5767146\",\"Long\":\"91.88794690000002\",\"Address\":\"Polo Grounds, Khyndailad, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Premier Rooms\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491247,\"Name\":\"Tripura Castle\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.558505\",\"Long\":\"91.89114169999999\",\"Address\":\"Cleve Colony, Tripura Castle Road, Malki, Shillong, Meghalaya 793003, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Queen Double Valley View Wing\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491248,\"Name\":\"Ri Kynjai - Serenity By The Lake\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.664444\",\"Long\":\"91.87856\",\"Address\":\"Umniuh Khwan, UCC Road, Ri Bhoi District, Meghalaya 793122, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22467,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.25126,\"Long\":91.6719691,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22468,\"Title\":\"Sohsarat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2173996,\"Long\":91.66331629999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22473,\"Title\":\"Dawki Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22475,\"Title\":\"Ward\'s Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":25.5758074,\"Long\":91.8865737,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}},{\"CityId\":13741,\"Title\":\"Kaziranga National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491249,\"Name\":\"D\\u00e2\\u20ac\\u2122Courtyard Resort\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.5880813\",\"Long\":\"93.41705309999999\",\"Address\":\"HCQ8+6RM, Bogorijuri, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury  Double Bed\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491250,\"Name\":\"Infinity Resorts\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.594388\",\"Long\":\"93.4484272\",\"Address\":\"P.O.Kaziranga, Golaghat District, Bochagaon, Assam 785109, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Suite Luxury Cottage Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491251,\"Name\":\"IORA The Retreat\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.584254\",\"Long\":\"93.416569\",\"Address\":\"Bogorijuri, Kaziranga National Park, Kohora, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491252,\"Name\":\"NilTava\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.5827534\",\"Long\":\"93.41494689999999\",\"Address\":\"KOHORA, Bogorijuri, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Tent\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491253,\"Name\":\"Diphlu River Lodge\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.5773608\",\"Long\":\"93.25503409999999\",\"Address\":\"Kaziranga National Park Near Bagori Police Outpost, Kuthari, Assam 782136, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"COTTAGE ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22467,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.25126,\"Long\":91.6719691,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22468,\"Title\":\"Sohsarat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2173996,\"Long\":91.66331629999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22473,\"Title\":\"Dawki Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22475,\"Title\":\"Ward\'s Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":25.5758074,\"Long\":91.8865737,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491254,\"Name\":\"Mayflower Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.1850568\",\"Long\":\"91.74440779999999\",\"Address\":\"MLN Road, Pan Bazaar, Guwahati, Assam 781001, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491255,\"Name\":\"Hotel Daaysco\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.17917809999999\",\"Long\":\"91.7515794\",\"Address\":\"Manipuri E Rd, Paltan Bazaar, Guwahati, Assam 781008, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491256,\"Name\":\"The Guwahati Address\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.172975\",\"Long\":\"91.77745000000002\",\"Address\":\"45\\/46 RG Baruah Road, Zoo Rd, Tiniali, Ambikagirinagar, Guwahati, Assam 781024, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491257,\"Name\":\"Hotel Daaysco\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.17917809999999\",\"Long\":\"91.7515794\",\"Address\":\"Manipuri E Rd, Paltan Bazaar, Guwahati, Assam 781008, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491258,\"Name\":\"\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491259,\"Name\":\"Vivanta by Taj - Guwahati\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.1251964\",\"Long\":\"91.81731400000001\",\"Address\":\"613, Mahapurush Sriamanta Sankradeva, Road, Khanapara, Guwahati, Assam 781022, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491260,\"Name\":\"Vivanta by Taj - Guwahati\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.1251964\",\"Long\":\"91.81731400000001\",\"Address\":\"613, Mahapurush Sriamanta Sankradeva, Road, Khanapara, Guwahati, Assam 781022, India\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22467,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.25126,\"Long\":91.6719691,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22468,\"Title\":\"Sohsarat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2173996,\"Long\":91.66331629999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22473,\"Title\":\"Dawki Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":22475,\"Title\":\"Ward\'s Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":25.5758074,\"Long\":91.8865737,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7689,\"SupplierName\":\"HEAT & Koyeli Team,\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"218871\",\"Title\":\"Guwahati Airport (GAU) \\/ Railway Station - Cherrapunjee\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Cherrapunjee (4690Ft \\/ 1430 Mts \\/ 200 Kms \\/ 05 to 07 Hrs Drive approx)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meet &amp;amp; greet upon arrival and then drive to Cherrapunjee. Enroute visit Barapani Lake which is also known as Umiam Lake &amp;amp; Elephant falls. On arrival at Cherrapunjee. Check in to hotel. Overnight in Cherrapunjee hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests are requested to book early arrival flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sightseeing only possible if guest are arriving in morning.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Most waterfalls get dried in winter.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491206,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Naitung Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491210,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Suite\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Dew Drop Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218876\",\"Title\":\"Cherrapunjee \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;Cherrapunjee (4690 Ft \\/ 1430 Mts)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast go for a trek to Double Decker&amp;nbsp;Living&amp;nbsp;Root&amp;nbsp;Bridge (Closed on Sunday)&amp;nbsp;-&amp;nbsp;3-4 hours from the starting point (depending on the Fitness of the guest). Distance 4 km down and up 1000 feet approx. This trek goes downhill through village Sohsarat. The steps are relatively steeper in two short stretches. Half the distance is covered by steps going downhill. Then there is a jungle path going along the sides of the hill leading to the&amp;nbsp;Living Root&amp;nbsp;Bridge&amp;nbsp;with a few steps after short stretches of sloping foot path. Moss thrives on these sandstone steps during the monsoon and makes them slippery. Back trek to starting point and evening at leisure. Overnight at Cherrapunjee.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note: Assistance of a local boy is mandatory for the trek to Double Decker Living Root Bridge. The supplement for the same is provided under &amp;ldquo;supplement &amp;amp; optional cost&amp;rdquo; sub head just below the cost.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;OR&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Cherrapunjee (4690Ft \\/ 1430 Mts \\/ 60 Kms approx)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast visit &amp;ndash; Arwah Cave \\/ Mawsmai Cave, Seven Sisters Falls and Nohkalikai Falls. Later back to hotel. Overnight stay at Cherrapunjee.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note : Most waterfalls get dried in winter.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491206,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Naitung Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491210,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Suite\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Dew Drop Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22467,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22468,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218881\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218886\",\"Title\":\"Cherrapunjee &acirc;&euro;&ldquo; Mawlynnong &acirc;&euro;&ldquo; Dawki &acirc;&euro;&ldquo; Shillong  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;Mawlynnong (4906 Ft \\/ 1496 Mts \\/ 80 Kms \\/ 03 to 04 Hrs drive approx oneway from Cherrapunjee)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dawki Lake (5904 Ft \\/ 1800 Mts \\/ 30 Kms \\/ 01 to 02 Hrs drive approx oneway from Mawlynnong)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Shillong (5002 Ft \\/ 1525 Mts, 90 Kms \\/ 03 to 04 Hrs drive approx oneway from Dawki Lake)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast drive to Mawlynnong &amp;ndash; &amp;ldquo;Asia&amp;rsquo;s Cleanest Village&amp;rdquo;. Mawlynnong offers many interesting sights such as the living root bridge and another strange natural phenomenon of a boulder balancing on another small rock. After village visit drive to Dawki and visit border area. Drive back to Shillong for overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note : It is advice able to carry packet lunch.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491244,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"A\\/c Executive\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491245,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premier Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491247,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Double Valley View Wing\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491248,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22473,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218891\",\"Title\":\"Shillong - Excursion to Mwaphlang + Shillong Local Sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Mwaphlang (4906 Ft \\/ 1496 Mts \\/ 30 Kms \\/ 01 to 02 Hrs drive approx oneway from Shillong)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast, proceed to visit in and around Shillong. Visit the outskirts of Shillong - Mawphlang Sacred Forest, Elephant Falls, Shillong Peak (Depending on Army Permission).&amp;nbsp;After sightseeing back to Shillong visit Cathedral Cathotic Church - In the heart of the city, there stands a beautiful cathedral of Roman&amp;nbsp;Catholics&amp;nbsp;dedicated to Mary Help of Christian. Overnight stay at Shillong&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note :&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Most waterfalls get dried in winter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;It is advice able to carry packet lunch&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491244,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"A\\/c Executive\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491245,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premier Rooms\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491247,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Queen Double Valley View Wing\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491248,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218896\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218901\",\"Title\":\"Shillong - Kaziranga National Park \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;Kaziranga National Park (197 Ft\\/ 60 Mts, 290 Kms \\/ 07 to 08 Hrs drive approx)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast transfer to Kaziranga. En route visit Don Bosco Museum &amp;amp; Wards Lake. Arrive and check in at hotel. Overnight stay at Kaziranga.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Kaziranga National Park:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the heart of Assam, covering an area of 430 sq-kms, is inhabited by the world&amp;#39;s largest population of one-horned rhinoceroses, as well as many mammals, including tigers, elephants, panthers and bears, and thousands of birds. In 1985, it was declared a World Heritage Site by UNESCO for its unique natural environment.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury  Double Bed\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Suite Luxury Cottage Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491251,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491252,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"COTTAGE ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22475,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218906\",\"Title\":\"Kaziranga National Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;Kaziranga National Park (197 Ft\\/ 60 Mts)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast go for Elephant Ride \\/ Jeep Safari (subjected to availability &amp;amp; operational condition- on additional cost) to one Range. After lunch go for Jeep Safari (subjected to availability &amp;amp; operational condition- on additional cost) to the other Range. Overnight at Kaziranga.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Important note:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1. Entry ticket &amp;amp; Jeep safari are all regulated and controlled by the forest Dept. Govt. of Assam. We do not have any control on the booking of entry ticket &amp;amp; Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2. Elephant rides are conducted and controlled by the forest department. We cannot confirm the same in advance. The ticket counter for booking opens only in the evening, one day prior to the ride. Only after securing the tickets, we can confirm the ride for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. If there is an increase in the cost for jungle activities by the Forest Department \\/ hike in fuel price, then there will be supplement cost applicable on &amp;amp; above the quoted package cost.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury  Double Bed\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Suite Luxury Cottage Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491251,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491252,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Tent\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"COTTAGE ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8421,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218911\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218916\",\"Title\":\"Kaziranga National Park - Guwahati\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;Guwahati (1148 Ft \\/ 350 Mts, 250 Kms \\/ 05 to 06 Hrs drive approx)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast check out and drive to Guwahati. Check in to hotel. Later visit Kamakhya temple (on direct payment) &amp;ndash; it is situated at the top of the Nilachal Hill at about 800 feet above the sea level. The entire temple complex not only comprises of many other temples but also a whole set of people connected with them. Apart from the main Devi temple, it also comprises of some other major temples of Devi Kali, Tara, Bagala, Chinnamasta, Bhuvanesvari, Bhairavi and Dhumavati (Notes-Timing 08:00 A.M till 01:00 P.M &amp;amp; 3:00 P.M till its gets dark). Evening go for Sunset river cruise (subjected to operational condition - on additional cost). Overnight at Guwahati.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Notes:&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491254,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":491255,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491256,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":491259,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491257,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":491258,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"},{\"IsIncluded\":false,\"Id\":491260,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15493,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"218921\",\"Title\":\"Guwahati Hotel -  Guwahati Airport \\/ Railway Station for onward connection  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;Guwahati (1148 Ft \\/ 350 Mts, 25 Kms \\/ 01 Hrs drive approx)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast drive to Guwahati Airport \\/ Railway Station for your onward connection.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"30776\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30777\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33990.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32857,\"priceDoubleOcc\":\"33990.00\",\"priceSingleOcc\":101970,\"priceExtraBed\":\"25492.50\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33990,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16995,\"CEB\":25492.5,\"COSTDO\":33990,\"COSTSO\":101970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30591,\"COSTTO\":30591}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30778\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":122760,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":122760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"30779\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54560.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":52741,\"priceDoubleOcc\":\"54560.00\",\"priceSingleOcc\":163680,\"priceExtraBed\":\"40920.00\",\"priceWithoutBed\":\"27280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27280,\"CEB\":40920,\"COSTDO\":54560,\"COSTSO\":163680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49104,\"COSTTO\":49104}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"30780\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"79530.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":76879,\"priceDoubleOcc\":\"79530.00\",\"priceSingleOcc\":238590,\"priceExtraBed\":\"59647.50\",\"priceWithoutBed\":\"39765.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39765,\"CEB\":59647.5,\"COSTDO\":79530,\"COSTSO\":238590,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71577,\"COSTTO\":71577}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"218871\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[218871],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218876\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[218876],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218881\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[218881],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218886\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[218886],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218891\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[218891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218896\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[218896],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218901\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[218901],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218906\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[218906],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218911\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[218911],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"218916\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[218916],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"218921\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[218921],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Cherrapunji,Shillong,Kaziranga National Park,Guwahati','Cherrapunji,Meghalaya,Indian Subcontinent,Northeast India,India,Shillong,Kaziranga National Park,Assam,Guwahati,Dawki,Mawlynnong',NULL,'34563,25073,13741,11240',32450,79530,7,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"},{\"day\":8,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:21:29','2023-09-07 00:00:00',1,1,'1','1','1',NULL,NULL,NULL,NULL,'meghalaya-with-cherrapunji-dawki',NULL,NULL,NULL,0),(234,30898,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":30898,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-01-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&amp;nbsp;Accomodation on Twin Sharing&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast &amp;amp; Dinner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Airport Transfers\\/Railway Station Transfers&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sightseeing Tours With Transfers (mentioned on Itinerary)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ac Sedan or Similar Cab&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"I Need Trip\",\"Name\":\"FASCINATING  KASHMIR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Airport Transfers,Train Station Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic\",\"Validity\":{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491616,\"Name\":\"Asian Park Hotel\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.08161319999999\",\"Long\":\"74.81833759999999\",\"Address\":\"Munawar Link Road, Munawara Abad, Srinagar, Jammu and Kashmir 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":491632,\"Name\":\"Persian Palace Group Of Houseboats | in Dal Lake Srinagar\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0910024\",\"Long\":\"74.8443593\",\"Address\":\"Nehru park dal lake Nehru park dal lake, Karapura, Rainawari, Srinagar, Jammu and Kashmir 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe Houseboat\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &lsquo;Nishat Bagh&rsquo; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7251,\"Title\":\"Saffron Fields Srinagar\",\"Description\":\"Saffron is a rare spice which grows only in few places in the world. Derived from the flower of Crocus Sativus or Saffron Crocus, the spice has exceptional medicinal properties and is commonly used in cooking and traditional medicines. In Kashmir, saffron grows in a small town known as Pampur which is about 13 kilometers away from Srinagar. During autumn months, when the flowers bloom, you will be able to see rows and rows of purple flowers in Pampur. A walk amidst these flowers is certainly a beautiful experience. The fields, no doubt, look beautiful during the day time but if you can visit the village on a full moon night in autumn, you will be rewarded by a breathtaking sight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Saffron_Fields_Srinagar_25897_1538043378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":883,\"Title\":\"Khilanmarg\",\"Description\":\"Khilanmarg in Jammu &amp;amp; Kashmir state is a picturesque and small valley, that is about a 6-km walk from the Gulmarg town center. This beautiful meadow, covered with beautiful flowers in the spring, becomes the site for Gulmarg&amp;rsquo;s winter ski runs and also offers a fine viewing point of the surrounding snow capped peaks and over the mesmerizing Kashmir Valley. The 600-metre ascent from Gulmarg to Khilanmarg can be a very muddy climb due to melting snow in the early spring season. The effort is however rewarded with a sweeping and memorable view of the great Himalayas from the mighty Nanga Parbat to the twin giants, the 7,100-metre peaks of Nun and Kun in the southeast direction. The best time to visit Khilanmarg is between May and September while for skiing and other winter activities the best months are from November to February.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1190\\/thumb\\/Mountain Khilanmarg_999.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491621,\"Name\":\"Hotel Lidder Spring Resorts\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"33.916643\",\"Long\":\"75.28309349999999\",\"Address\":\"Yanner Bridge, Movra, Pahalgam, Jammu and Kashmir 192126\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &lsquo;Nishat Bagh&rsquo; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7251,\"Title\":\"Saffron Fields Srinagar\",\"Description\":\"Saffron is a rare spice which grows only in few places in the world. Derived from the flower of Crocus Sativus or Saffron Crocus, the spice has exceptional medicinal properties and is commonly used in cooking and traditional medicines. In Kashmir, saffron grows in a small town known as Pampur which is about 13 kilometers away from Srinagar. During autumn months, when the flowers bloom, you will be able to see rows and rows of purple flowers in Pampur. A walk amidst these flowers is certainly a beautiful experience. The fields, no doubt, look beautiful during the day time but if you can visit the village on a full moon night in autumn, you will be rewarded by a breathtaking sight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Saffron_Fields_Srinagar_25897_1538043378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":883,\"Title\":\"Khilanmarg\",\"Description\":\"Khilanmarg in Jammu &amp;amp; Kashmir state is a picturesque and small valley, that is about a 6-km walk from the Gulmarg town center. This beautiful meadow, covered with beautiful flowers in the spring, becomes the site for Gulmarg&amp;rsquo;s winter ski runs and also offers a fine viewing point of the surrounding snow capped peaks and over the mesmerizing Kashmir Valley. The 600-metre ascent from Gulmarg to Khilanmarg can be a very muddy climb due to melting snow in the early spring season. The effort is however rewarded with a sweeping and memorable view of the great Himalayas from the mighty Nanga Parbat to the twin giants, the 7,100-metre peaks of Nun and Kun in the southeast direction. The best time to visit Khilanmarg is between May and September while for skiing and other winter activities the best months are from November to February.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1190\\/thumb\\/Mountain Khilanmarg_999.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491625,\"Name\":\"Hotel Royal Park Samarinda\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-0.4769133\",\"Long\":\"117.1660494\",\"Address\":\"Jl. Sentosa No.1, Sungai Pinang Dalam, Kec. Sungai Pinang, Kota Samarinda, Kalimantan Timur 75242, Indonesia\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &lsquo;Nishat Bagh&rsquo; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7251,\"Title\":\"Saffron Fields Srinagar\",\"Description\":\"Saffron is a rare spice which grows only in few places in the world. Derived from the flower of Crocus Sativus or Saffron Crocus, the spice has exceptional medicinal properties and is commonly used in cooking and traditional medicines. In Kashmir, saffron grows in a small town known as Pampur which is about 13 kilometers away from Srinagar. During autumn months, when the flowers bloom, you will be able to see rows and rows of purple flowers in Pampur. A walk amidst these flowers is certainly a beautiful experience. The fields, no doubt, look beautiful during the day time but if you can visit the village on a full moon night in autumn, you will be rewarded by a breathtaking sight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Saffron_Fields_Srinagar_25897_1538043378.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":883,\"Title\":\"Khilanmarg\",\"Description\":\"Khilanmarg in Jammu &amp;amp; Kashmir state is a picturesque and small valley, that is about a 6-km walk from the Gulmarg town center. This beautiful meadow, covered with beautiful flowers in the spring, becomes the site for Gulmarg&amp;rsquo;s winter ski runs and also offers a fine viewing point of the surrounding snow capped peaks and over the mesmerizing Kashmir Valley. The 600-metre ascent from Gulmarg to Khilanmarg can be a very muddy climb due to melting snow in the early spring season. The effort is however rewarded with a sweeping and memorable view of the great Himalayas from the mighty Nanga Parbat to the twin giants, the 7,100-metre peaks of Nun and Kun in the southeast direction. The best time to visit Khilanmarg is between May and September while for skiing and other winter activities the best months are from November to February.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1190\\/thumb\\/Mountain Khilanmarg_999.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"219632\",\"Title\":\"ARRIVAL SRINAGAR AND LOCAL SIGHTSEEING\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"<p>On arrival at Srinagar Airport you will meet to our representative and transfer you to Hotel. After fresh up leave for Mughal Gardens&nbsp;visiting Nishat Bagh (Abode of pleasure) built by Asif Khan brother in law of Jehangir in 1632 A.D. and Shalimar Bagh (Abode of love) built by Jehangir for his wife Empress Noor Jehan &amp; Shankaracharya Temple. Overnight at Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1560,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219633\",\"Title\":\"Srinagar - Sonmarg - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"<p>After breakfast leave from hotel and proceed to Sonamarg &quot;Golden Meadow&quot;.&nbsp; Sonmarg lies in Sind Valley streamed with flowers and surrounded by mountains. Sonmarg is also the base for some interesting treks to the high altitude of Himalayan Lakes. Enjoy horse riding upto Thajiwas glacier and sledge riding on snow (own cost). While returning back to Srinagar visit Manasbal Lake - Yet another mesmerizing Lake of the Valley and Kheer Bhawani Temple - the most important temple for the followers of Historical Vedic Religion in Kashmir, known as the Kashmiri Pandits (All entrance by own). Overnight at Hotel In Srinagar.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219634\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219635\",\"Title\":\"Srinagar - Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;After breakfast leave from Srinagar and drive to&nbsp;Pahalgam&nbsp;(Valley of Shepherds). On the way visit saffron fields Pahalgam is the most famous place for Film industry. Overnight stay at Hotel.&nbsp;&nbsp;&nbsp;&nbsp;<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491621,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7251,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219636\",\"Title\":\" PAHALGAM\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"<p>Full Day enjoyment in Pahalgam, you can have the local sightseeing of Aru Valley, Betaab Valley and Chandanwari&nbsp;(on your own cost), over night rest at Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491621,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219637\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219638\",\"Title\":\"PAHALGAM - GULMARG\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;After breakfast leave from Pahalgam and drive to Gulmarg,&nbsp;(Meadow of Flowers) 2730 Mts,&nbsp;Gulmarg has one of the best Ski slopes in the world and highest golf course of the world with 18 holes,&nbsp;you can enjoy a pony ride and also enjoy a Gondola ride (cable car) to Khilanmarg. Evening is free to explore the charm &amp; natural beauty of Gulmarg Valley,&nbsp;overnight stay at Hotel.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491625,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":582,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":587,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":883,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219639\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219640\",\"Title\":\"GULMARG \\u2013 SRINAGAR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"<p>After breakfast leave from Gulmarg and drive to Srinagar and check in hotel\\/Houseboat and rest.&nbsp;In the evening Boat ride &quot;Shikara&quot; around Dal Lake,&nbsp;Overnight at Hotel\\/Houseboat.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491632,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Houseboat\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219641\",\"Title\":\"SRINAGAR AIRPORT\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"<p>After breakfast leave to Srinagar Airport to connect to&nbsp;onwards destination. Thus the package ends upon on the 7th&nbsp;day,.<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30898\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25012.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"25012.50\",\"priceWithoutBed\":\"25012.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25012.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30898\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"45675.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-01-31\",\"Currency\":1,\"priceTripleOcc\":45675,\"priceDoubleOcc\":\"45675.00\",\"priceSingleOcc\":91350,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45675.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"219632\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[219632],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219633\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219633],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219634\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219634],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219635\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219635],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219636\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[219636],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219637\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219637],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219638\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219638],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219639\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[219639],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219640\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[219640],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219641\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[219641],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Srinagar,Pahalgam,Gulmarg','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg','','25897,20566,11197',25013,45675,6,'234_1641211252_0.jpg,234_1641211252_1.jpg,234_1641211252_2.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2022-01-03 00:00:00','2022-01-31 00:00:00','2022-01-31 00:00:00',3,'India','101','2022-12-27 16:55:41','2022-01-03 00:00:00',1,1,'0','0','0','','','',NULL,'fascinating-kashmir',NULL,NULL,NULL,0),(237,30971,1,5293,0,0,0,'Adventure,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":30971,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/la_perle_river_resorts_1641288905.jpeg\",\"BookingValidUntill\":\"2022-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;La Perle River Resorts is a beautiful resort located on the bank of River kosi. It has been launched in the year 2004 with the name &amp;ldquo;La Perle&amp;rdquo;. The resort has been spread over 7.5 acre of land with 39 luxury rooms. The gardens are well maintained in the middle of Mango Orchards with a perfect combination of wilderness &amp;amp; nature. La Perle is among the best jungle theme property with all the luxurious facilities you need to unwind and relax. The nearest city is Ramnagar which is just 6 kms away. Travellers love this Resort for its great location thats right at the heart of Jungle.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In House Activities-&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Snooker&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kid Zone&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tambola&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In House Facilities-&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Swimming Pool&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dining Hall&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Conference Hall&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kitty Lawns&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Party Lawns (River Side)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Jim Corbett National Park\",\"SourcePlaceSysId\":13146,\"AgencyName\":\"I Need Trip\",\"Name\":\"La Perle River Resorts\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7795\",\"SupplierName\":\"INT HOTELS PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals\",\"PackageType\":\"Adventure,Wildlife,Family\",\"Validity\":{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220234\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220235\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220236\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"<p>0<\\/p>\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30971\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"3162.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":3163,\"priceDoubleOcc\":\"3162.50\",\"priceSingleOcc\":6325,\"priceExtraBed\":\"3162.50\",\"priceWithoutBed\":\"3162.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"3162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30971\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"2887.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-05\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":2888,\"priceDoubleOcc\":\"2887.50\",\"priceSingleOcc\":5775,\"priceExtraBed\":\"2887.50\",\"priceWithoutBed\":\"2887.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2887.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Meal&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"220234\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[220234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220235\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[220235],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220236\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"FlightData\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India',NULL,'13146',2888,3163,2,NULL,NULL,NULL,2,'',0,'2022-01-04 00:00:00','2022-03-31 00:00:00','2022-03-31 00:00:00',3,'India','101','2022-01-04 16:00:41','2022-01-04 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'la-perle-river-resorts',NULL,NULL,NULL,0),(238,30979,1,5293,0,0,0,'Honeymoon,Wildlife,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":30979,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/la-perle-river-resorts_1691398183\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;La Perle River Resorts is a beautiful resort located on the bank of River kosi. It has been launched in the year 2004 with the name &amp;ldquo;La Perle&amp;rdquo;. The resort has been spread over 7.5 acre of land with 39 luxury rooms. The gardens are well maintained in the middle of Mango Orchards with a perfect combination of wilderness &amp;amp; nature. La Perle is among the best jungle theme property with all the luxurious facilities you need to unwind and relax. The nearest city is Ramnagar which is just 6 kms away. Travellers love this Resort for its great location thats right at the heart of Jungle.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;IN-HOUSE ACTIVITIES&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Snooker&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kid Zone&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tambola&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In House Facilities-&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Swimming Pool&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dining Hall&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Conference Hall&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kitty Lawns&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Party Lawns (River Side)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Jim Corbett National Park\",\"SourcePlaceSysId\":13146,\"AgencyName\":\"I Need Trip\",\"Name\":\"La Perle River Resort - 2N\\/3D Weekend Package \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7795\",\"SupplierName\":\"INT HOTELS PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals\",\"PackageType\":\"Honeymoon,Wildlife,Family,Hill Station\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484279,\"Name\":\"La Perle River Resorts\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.451532\",\"Long\":\"79.1408005\",\"Address\":\"Village Ladhuachaur P.O. Dhikuli, Ramnagar, Uttarakhand 244715, India\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7795,\"SupplierName\":\"INT HOTELS PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Cotton Garden Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220284\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Corbett National Park&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Garjia Temple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Corbett Waterfall&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bijrani Zone&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Cotton Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220285\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Cotton Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220286\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Cotton Garden Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30979\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":6912,\"priceDoubleOcc\":\"7150.00\",\"priceSingleOcc\":21450,\"priceExtraBed\":\"5362.50\",\"priceWithoutBed\":\"3575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3575,\"CEB\":5362.5,\"COSTDO\":7150,\"COSTSO\":21450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6435,\"COSTTO\":6435}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Welcome Drink on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in respective room for 2 Nights &amp;amp; 3 Days.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maximum occupancy: 2 adults + 2 children below 12 years of age, or 3 adults.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Common Bonfire on river side lawn in winters only (complementary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of in-house recreational activities &amp;amp; kids zone* (Complimentary).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Use of Swimming Pool &amp;amp; Gymnasium (Complimentary).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"220284\":[{\"Sequence\":[0],\"TPInvnSysId\":[220284],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"220285\":[{\"Sequence\":[0],\"TPInvnSysId\":[220285],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"220286\":[{\"Sequence\":[0],\"TPInvnSysId\":[220286],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India','','13146',7150,7150,2,'238_1641295475_0.jpg,238_1641295475_1.jpg,238_1641295475_2.jpg,238_1641295475_3.jpg,238_1641295475_4.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:17:19','2023-09-07 00:00:00',1,1,'1','1','0','','','',NULL,'la-perle-river-resort-2n-3d-weekend-package',NULL,NULL,NULL,0),(239,31008,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31008,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Strategically located in a picturesque section of South Goa and a two-minute walk away from Goa&amp;rsquo;s pristine Arossim Beach, Heritage Village Resort and Spa, Goa is a haven for families! As you walk into our boutique resort in Goa, the culture of the locale engulfs you, with the architecture paying tribute to the by-gone Portuguese era - rooms designed for optimum comfort, and indulgences such as a wellness spa that is the ultimate treat for your body and soul. Perfect for family getaways, this is one of the best beach resorts in south Goa and is just a 15-minute drive away from Dabolim Airport and Madgaon Station and a 30-minute drive from the city. Make your way to this boutique resort in South Goa and treat yourself to an experience, unlike anything you&amp;#39;ve had before.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"I Need Trip\",\"Name\":\"HERITAGE VILLAGE RESORT & SPA, GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7801\",\"SupplierName\":\"Heritage Village Resort Goa\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":488277,\"Name\":\"Heritage Village resort and spa goa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7801,\"SupplierName\":\"Heritage Village Resort Goa\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220570\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":488277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220571\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":488277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220572\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":488277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"31008\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":44550,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":44550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Deluxe Room accomodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;To &amp;amp; fro transfersfrom Airport \\/Madgaon Railway Station for aminimum of 2-nightstay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Exotic welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Well appointed air-conditionedroom&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Buffet breakfast\\/lunch\\/dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;In-between meal snacks and unlimited alcoholic and non-alcoholic beverages (Valid from 11:00 am to 11:00 pm from a list of House Brands served by glass)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;15% discount on select treatments at AyuraSpa and 15% discount on Laundry&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"220570\":[{\"Sequence\":[0],\"TPInvnSysId\":[220570],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"220571\":[{\"Sequence\":[0],\"TPInvnSysId\":[220571],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"220572\":[{\"Sequence\":[0],\"TPInvnSysId\":[220572],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India','','10576',14850,14850,2,'239_1641471050_0.jpg,239_1641471050_1.jpg,239_1641471050_2.jpg,239_1641471050_3.jpg',NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:16:51','2023-09-07 00:00:00',1,1,'1','1','0','','','',NULL,'heritage-village-resort-spa-goa',NULL,NULL,NULL,0),(246,31357,1,5293,0,0,0,'Honeymoon,Beach',NULL,1,1,0,'{\"package\":{\"TPId\":31357,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/angsana-velavaru_1690606234\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Perched on an expansive private lagoon in the virtually untouched South Nilandhe Atoll in the Maldives, and just a 40-minute seaplane journey from Velana International Airport, Angsana Velavaru (the island known as &amp;ldquo;Turtle Island&amp;rdquo; in the local Dhivehi language) is surrounded by sparkling turquoise waters and ocean views as far as the eye can see. This luxurious tropical getaway offers 79 private villas, all with beach frontage, and a cluster of 34 InOcean Villas, the first standalone collection of water villas in the Maldives perched one kilometre from the main island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With 4 outlets featuring a lavish spread of International, Mediterranean with Mexican twist, Asian or Maldivian cuisine, even the most discerning palette will be pleased. Angsana Velavaru is a perfect island playground destination &amp;ndash; offering a variety of&amp;nbsp;5 All Inclusive Packages, designed to cater for different characters of holiday makers. From gourmet foodies to family travellers, spa lovers, novice and experienced divers, Angsana&amp;#39;s All Inclusive Concept introduces a new style of intrepid travel in the Maldives for your holiday to experience the very best of #AngsanaMoments.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests looking for an adrenaline rush can choose from motorized and non-motorized sports or the complimentary daily guided snorkeling trips. Other adventures include stand-up paddle boarding, catamaran adventures, wake boarding, knee boarding, mono skiing and marine exploration in a glass bottom canoe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With its proximity to more than 30 vibrant dive sites, Angsana Velavaru is the ideal location for novice to experienced divers. Certified instructors at the PADI Gold Palm 5-Star Dive Centre offer different courses and excursions to explore the pristine waters of South Nilandhe Atoll. Divers can get up close and personal with black tip reef sharks, eagle rays, turtles and whale sharks, among other exotic species. For those interested in giving back, the programmes organized by Angsana Velavaru&amp;rsquo;s Marine Conservation Lab are a prime place to begin. Guests can participate in coral planting to replenish damaged reefs and snorkeling trips to learn about the abundant marine ecosystem and coral gardens found in and around the lagoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Children and parents alike will love the dynamic programmes offered at the Rangers&amp;rsquo; Club, whilst a dedicated kids pool provides ample space for maximum splashing about! Looking to relax and recharge? Head to the award-winning Angsana Spa and enjoy a soothing treatment in one of its 8 outdoor spa pavilions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Seize the moment and plunge into the uplifting world of Angsana Velavaru Maldives, the perfect destination playground for a sensational year-round tropical escape!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANGSANA VELAVARU\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7636\",\"SupplierName\":\"Destination Launcher\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476212,\"Name\":\"Angsana Velavaru\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"2.9799898\",\"Long\":\"73.0159038\",\"Address\":\"South Nilandhe Atoll Velavaru, Maldives MV Male, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223014\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;02 NIGHT OCEAN POOL VILLA&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS BEACHFRONT VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SEAPLANE TRANSFERS&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;FULL BOARD MEAL PLAN&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223015\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223016\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223017\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223018\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT OCEAN POOL VILLA\\u00c2\\u00a0 02 NIGHTS BEACHFRONT VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"175450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":169602,\"priceDoubleOcc\":\"175450.00\",\"priceSingleOcc\":491260,\"priceExtraBed\":\"131587.50\",\"priceWithoutBed\":\"87725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":175450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":87725,\"CEB\":131587.5,\"COSTDO\":175450,\"COSTSO\":491260,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157905,\"COSTTO\":157905}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;02 NIGHT OCEAN POOL VILLA&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS BEACHFRONT VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Seaplane&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"223014\":[{\"Sequence\":[0],\"TPInvnSysId\":[223014],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223015\":[{\"Sequence\":[0],\"TPInvnSysId\":[223015],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223016\":[{\"Sequence\":[0],\"TPInvnSysId\":[223016],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223017\":[{\"Sequence\":[0],\"TPInvnSysId\":[223017],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223018\":[{\"Sequence\":[0],\"TPInvnSysId\":[223018],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',175450,175450,4,NULL,NULL,'[{\"day\":1,\"images\":null},{\"day\":2,\"images\":null},{\"day\":3,\"images\":null},{\"day\":4,\"images\":null},{\"day\":5,\"images\":null}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:12:52','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'angsana-velavaru',NULL,NULL,NULL,0),(247,2780,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2780\",\"VisaName\":\"Mauritius Visa \",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Mauritius\",\"VisaRequired\":2,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Visa On Arrival\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Must have Required Documents for Mauritius Tourist Visa:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Passport with at least 6 months validity (not more than issue 10 year) and minimum two blank pages for stamping&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 Scanned recent color photograph&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Photo Specifications: - 80 percentage Face coverage without a border&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;35cmx45cm Dimension size with white back ground&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed return or onward flight tickets&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Accommodation proof (hotel reservation or invitation letter if visiting someone in Mauritius)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Invitation letter from host company (for business visa)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sufficient financial funds to support your trip (while in Mauritania)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Note:&lt;\\/strong&gt;&amp;nbsp;The information provided here are subject to change without prior notice. For confirmation on visa requirements and fees, you may consult with the Mauritius Embassy or Consulate for near you.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Do Indian citizens require a Visa to travel to Mauritius?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Yes. However, Indian Nationals do not need to apply for a Mauritius visa in advance. They can get a Mauritius visa upon arrival at Mauritius International Airport provided they have the valid travel documents. Visa on arrival is issued for a stay of up to 60 days with a single-entry facility only.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Mauritius Visa Fee for Indians Citizens:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The good news for traveler&amp;rsquo;s is that Mauritius visa for Indians is completely free of cost. This means that even though you would need to pick up your visa documents before officially entering the nation, you do not need to pay a fee for the visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Basic Requirements to visit Mauritius:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a valid Passport and valid Mauritius Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be in good health&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Good moral character&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Thorough knowledge of your accommodation and itinerary details to furnish at immigration if asked to&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return flight tickets or onward flight tickets to ensure your return to home country or your next destination once your visa expires&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Adhere to the moral standards of the country and follow the general rules&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;Embassy Of Mauritius&amp;nbsp;Address:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;EP-41,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jesus And Mary Marg,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"\",\"VisaValidity\":\"60 Days\",\"VisaDuration\":\"\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Mauritius','Mauritius',NULL,'139',0,0,0,'247_',NULL,NULL,0,'',0,'2023-07-22 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Mauritius','139','2023-07-22 10:13:37','2023-07-22 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'mauritius-visa',NULL,NULL,NULL,0),(248,2781,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2781\",\"VisaName\":\"Sri Lanka Visa \",\"Nationality\":null,\"VisaAdultRates\":1700,\"VisaChildRates\":1700,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Sri Lanka\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":3,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Double Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Must have Required Documents for ETA Sri Lanka Tourist Visa: -&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Only Fully vaccinated are allowed to travel to Sri Lanka.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scanned copy of first and last page of your Passport. Validity of your passport should be at least 6 months beyond your stay period in Sri Lanka and have minimum 2 blank pages;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed return air ticket;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed hotel bookings;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A round trip ticket to show at the port of entry in Sri Lanka (only if you are traveling by air).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indian company and Sri Lankan company address. (For Business Visa).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evidence of sufficient funds to cover your expenses in Sri Lanka.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Note: &lt;\\/strong&gt;Processing time and visa requirements can be revised by the embassy any time without notice. Visa can be approved sooner or later than regular processing time due to various reasons from the embassy&amp;rsquo;s end.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;About Electronic Travel Authorization (ETA):&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;What is an ETA?&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;ETA is an official authorization for a Short Visit to Sri Lanka and is issued electronically. The ETA is introduced with the intention of providing an efficient, reliable and simplified service to those who visit Sri Lanka. ETA holders will be issued a 30-day Short Visit visa at the port of entry in Sri Lanka. The ETA will be effective from 1st of January 2012.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Do I need to submit my original documents for Sri Lanka Visa processing?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The ETA is issued through an on-line system. No passport copies, documents or photographs are required. There is no requirement to endorse the ETA on the passport. View sample ETA approval notice and\\/or referral notice.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;On arrival at the port of entry in Sri Lanka:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival, produce your passport to the immigration officer at the port of entry to obtain the necessary clearance. It is advisable for you to bring a copy of the ETA approval notice along with you&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;High Commission of Sri Lanka&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Address: &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;27, Kautilya Marg, &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Diplomatic Enclave, &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Chanakyapuri, New Delhi, Delhi 110021&lt;\\/strong&gt;&lt;\\/p&gt;\",\"PrecessingTime\":\"72 Hrs\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"599.00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"500.00\",\"CurrencyType\":3,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Sri Lanka','Sri Lanka',NULL,'200',1700,1700,0,'1691992245.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Sri Lanka','200','2023-07-21 11:43:34','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'sri-lanka-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(251,33492,1,5293,0,0,0,'Honeymoon,Adventure,Family,Weekend,New Year,Romantic,Shopping and Nightlife,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":33492,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/spectacular-singapore_1690014549\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Singapore is known for having a world-class city airport with a waterfall, being among the most densely inhabited nations in the world, being a financial powerhouse, and having a Botanic Garden which is a World Heritage Site. Singapore is well-known as a tourist destination for its warm, muggy weather, impeccable cleanliness, and rapid population growth due to reclaimed land. Singapore offers travelers a brief view of the Asian cultures that immigrants have brought from all across the globe, It is also called &amp;quot;Instant Asia.&amp;quot;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"I Need Trip\",\"Name\":\"SPECTACULAR SINGAPORE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5686\",\"SupplierName\":\"NAMHO\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Weekend,New Year,Romantic,Shopping and Nightlife,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":591892,\"Name\":\"ibis Styles Singapore Albert\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":3687,\"Title\":\"SANDS SKY PARK\",\"Description\":\"Marina Bay Sands SkyPark really offers a taste of the highlife by viewing Singapore from above. It offers a 360-degree panorama, with nothing but a sheet of glass and a few wires between you and the view.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2847443,\"Long\":103.8607121,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SANDS_SKY_PARK_25278_1530614001.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"239461\",\"Title\":\"NIGHT SAFARI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Greetings from Singapore. We will escort you to your accommodation after arriving in Singapore. Whether you enjoy the outdoors, culture, thrills, or a good cocktail, Singapore provides a vast range of entertainment options, later in the evening proceed for Night Safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Singapore Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Night Safari:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One of the top tourist destinations in Singapore is the Night Safari, the first nocturnal zoo in the world. Dr. Ong Swee Law, a former executive chairman of the Singapore Zoo, proposed the idea of a nocturnal park in Singapore in the 1980s. Along with its more traditional endeavors of providing top-notch entertainment and unique experiences, it also seeks to preserve, rescue, and improve animals through ongoing study. The constrained yet roomy recreated natural settings of the Night Safari are home to a large number of creatures from various origins. Families come here in droves to take in the variety of wildlife.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":591892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239462\",\"Title\":\"GARDENS BY THE BAY AND MARINA BAY SANDS SKY PARK\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at the hotel, you will be escorted to the marina waterfront for your tour at Gardens by the Bay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The&amp;nbsp;&lt;strong&gt;Gardens by the Bay&lt;\\/strong&gt;&amp;nbsp;is a&amp;nbsp;nature park&amp;nbsp;spanning 101 hectares (250 acres) in the&amp;nbsp;Central Region&amp;nbsp;of&amp;nbsp;Singapore, adjacent to the&amp;nbsp;Marina Reservoir. The park consists of three waterfront gardens: Bay South Garden (in&amp;nbsp;Marina South), Bay East Garden (in&amp;nbsp;Marina East), and Bay Central Garden (in&amp;nbsp;Downtown Core&amp;nbsp;and&amp;nbsp;Kallang). The largest of the gardens is the Bay South Garden at 54 hectares (130 acres) designed by Grant Associates. Its Flower Dome is the largest glass greenhouse in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Gardens by the Bay was part of the nation&amp;#39;s plans to transform its &amp;quot;Garden City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;, with the aim of raising the quality of life by enhancing greenery and flora in the city. First announced by&amp;nbsp;Prime Minister&amp;nbsp;Lee Hsien Loong&amp;nbsp;at Singapore&amp;#39;s&amp;nbsp;National Day Rally&amp;nbsp;in 2005, Gardens by the Bay was intended to be Singapore&amp;#39;s premier urban outdoor recreation space and a national icon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;MARINA BAY SANDS SKY PARK&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located on the 57th floor of Marina Bay Sands Hotel and lift lobby from tower 3. You get to see 325 deg view of the Singapore skyline. Beautiful view from above. The sky deck has 2 levels and these end the boat-like shape of the 3 towers. Enjoy the sunset here. The views are different during the day and pretty lights at night. It is a must thing to do when you visit Singapore. Great place to hang out. Later return back to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Singapore Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":591892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3687,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239463\",\"Title\":\"HALF DAY CITY TOUR + SENTOSA TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Take a half-day city tour today in the morning and spend some time in Singapore exploring its well-known monuments. Enjoy traveling via China Town, Little India, Merlion Park, and the National Orchid Museum, as well as famous colonial buildings, before stopping at Thian Hock Keng Temple, Merlion Park, and the National Orchid Garden&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Singapore&amp;rsquo;s charm is one of its kind. The luxurious lifestyle and unique tourist attractions make it the perfect destination for the newlyweds. But the &lt;strong&gt;Sentosa Island&lt;\\/strong&gt; of Singapore is where all the primary action happens. It might sound unbelievable but a decent number of tourists skip Singapore and plan a sole Sentosa Island Tour. With all due respect, Singapore is an amazing city but to get hold of beaches, adventure sports, and all-day fun, Sentosa Island is the place to hit. Without further ado, we&amp;rsquo;ll let you in on our quick guide to the fabulous things you can do on your Sentosa Island Tour. Now, we&amp;rsquo;re not suggesting that you skip Singapore, you might be able to do all these things in a single day. However, to do something and to enjoy something is totally different.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Enjoying the beaches on Sentosa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Everyone loves beaches, don&amp;rsquo;t you? Sentosa has three beaches, namely the Siloso, Palawan, and Tanjong Beach. Our favorite is the Siloso beach, now don&amp;rsquo;t be mistaken, all of them offer splendid beauty and alluringly blue waters. However, Siloso offers something more, the right kind of calm within a crowd. If you want to enter the most popular beach Siloso in style, you can go ziplining 450 meters from the mega-adventure park. Siloso is a lively beach with a decent number of shacks, restaurants, and bars. It is also the best place to try kayaking, skimboarding, and other light water sports.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":591892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239464\",\"Title\":\"LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;The day of the tour is a &lt;strong&gt;Leisure Day&lt;\\/strong&gt;, spend it at your convenience. You can explore famous flea markets in Singapore such as Flea where, Boutique Fairs, Public Garden, So Gelam Market, and Retro Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Experience the best of Singapore&amp;rsquo;s Indian community at Little India which is a buzzing historic area that shows off the vibrant culture to incredible shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Famous for its colorful heritage buildings, hiding old Chinese shophouses, the architecture hearkens back to a bygone era in Singapore&amp;rsquo;s history at Chinatown, which consists of post-war shops selling fine silk, traditional handicrafts, gold and silver jewelry, and Chinese herbs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Do not forget to visit the largest shopping mall in Singapore, Vivo City Mall. It&amp;#39;s a vibrant mix of retail and entertainment concepts and also features wide, open spaces for waterfront relaxation.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Orchard Road&amp;rsquo;s bustling boulevard is now a retail and dining paradise, with thousands of establishments offering the ultimate lifestyle experience to tourists; you can purchase Orchid Perfumes and Merlion Souvenirs.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After exploring the markets, return to the hotel for a sound sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":591892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239465\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33492\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37994.85\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"37994.85\",\"priceDoubleOcc\":\"37994.85\",\"priceSingleOcc\":113984.54999999999,\"priceExtraBed\":\"37994.85\",\"priceWithoutBed\":\"37994.85\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37994.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":37994.85,\"CEB\":37994.85,\"COSTDO\":37994.85,\"COSTSO\":113984.55,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":37994.85,\"COSTTO\":37994.85}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Singapore VISA&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights Accommodation on double\\/twin sharing basis as per itinerary&amp;nbsp;including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Night Safari&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Singapore City Tour&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Sentosa&amp;nbsp; (01 way cable car with Sentosa cable line + Luge &amp;amp; Skyride (03 rides) + Wings of time )&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Gardens By The Bay + Sands Sky Park Observation Deck&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;All tours &amp;amp; transfers on seat-in-coach Sharing basis&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"239461\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[239461],\"Remark\":[\"All sightseeing on SIC basis\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"239462\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[239462],\"Remark\":[\"All sightseeing on SIC basis\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"239463\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[239463],\"Remark\":[\"All sightseeing on SIC basis\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"239464\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[239464],\"Remark\":[\"All sightseeing on SIC basis\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"239465\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[239465],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',37995,37995,4,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"}]',2,'',0,'2024-03-02 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Singapore','190','2024-03-02 18:36:28','2024-03-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'spectacular-singapore',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (252,33503,1,5293,0,0,0,'Beach,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":33503,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/thai-retreat_1690626208\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;THAILAND - HAPPINESS ON EARTH&amp;nbsp;&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Thailand is a Southeast Asian country. It&amp;#39;s known for tropical beaches, opulent royal palaces, ancient ruins and ornate temples displaying figures of Buddha. In Bangkok, the capital, an ultramodern cityscape rises next to quiet canalside communities and the iconic temples of Wat Arun, Wat Pho and the Emerald Buddha Temple (Wat Phra Kaew). Nearby beach resorts include bustling Pattaya and fashionable Hua Hin.&amp;nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"THAI RETREAT \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"8302\",\"SupplierName\":\"MEKONG VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight\",\"PackageType\":\"Beach,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":365355,\"Name\":\"ANDAMAN EMBRACE PATONG\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.89899454784465\",\"Long\":\"98.2989746322539\",\"Address\":\"2 Hadpatong Road, Patong Beach, Kathu, Phuket, Thailand, 83150\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"LOCATION\\nThe hotel is situated in one of the most exciting beach towns on Phuket. It is located just a few steps across the road from a golden sandy beach, with mesmerizing views of the sickle-shaped cove in Patong. There is also a shopping center, restaurants and an entertainment district in the area around the hotel. Dolphin Junction is around 100 m away and Central Festival is around 20 minutes away on foot. Chalong Temple and the Simon Cabaret are each around 30 minutes&amp;#039; walk away. Karon Beach is approximately a 10-minute walk away. Phuket International Airport is around 45 km from the hotel.\\nROOMS\\nAll rooms feature air conditioning and a bathroom. Bathrooms with wheelchair access can also be booked. Most accommodation units additionally feature a balcony or a terrace. Each lovely accommodation unit features a double bed or a king-size bed. A safe and a minibar also feature. A fridge and tea and coffee making equipment contribute to a comfortable stay. Each accommodation unit offers internet access, a telephone, a TV and a radio. Wheelchair-accessible rooms are also bookable. Each of the bathrooms features a shower, a bathtub and a hairdryer.\\nRESTAURANT\\nOpen for all-day dining, Twig Restaurant serves local and international dishes. Snacks and refreshments are available at the lobby lounge and the pool bar.\\nAMENITIES\\nThe hotel was built in 2012. It features 222 accommodation units. Guests of the hotel are welcomed in the lobby, which has a 24-hour reception and a 24-hour check-out service. The upper floors are easily accessible using the lift. Amenities include currency exchange facilities. Internet access and wireless internet access (for a fee) are available in the public areas. Gastronomic options offered by the hotel include a restaurant, a dining area, a breakfast room, a caf&Atilde;&copy; and a bar. Guests can buy holiday mementos from the souvenir shop. Shopping facilities are available. The grounds of the hotel feature a playground and an attractive garden. A library is also among the amenities at the hotel. Parking facilities available to guests include a garage and a car park. Additional services include medical assistance, room service, a laundry and a hairdressing salon. In addition, a conference room and a business center are also available.\\nThe hotel offers an outdoor pool and a children&amp;#039;s pool. The sun loungers and parasols on the sun terrace offer a great place to unwind. There is also a poolside snack bar. Tennis, a gym, table tennis, pool\\/billiards, yoga, a sauna and massage treatments are among the leisure options available. Further available options include a kids&amp;#039; club.The ANDAMAN EMBRACE PATONG is a Tourist hotel. Located in Beach - Patong Beach area. Shopping is accessible by bus\\/taxi and the nightlife\\/restaurants are easily accessible by taxi or bus from the hotel.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"},{\"RefHotelId\":499194,\"Name\":\"ANDAMAN EMBRACE PATONG\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"83150\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"&lt;p&gt;Ideally located just a few minutes&rsquo; stroll from the famous white sandy Patong Beach and convenient walking distance to shopping and entertainment areas.&lt;br \\/&gt;\\r\\nAndaman Embrace Patong features contemporary furnishings by warm colors and harmonically designed wooden furniture with 297 stylish guestrooms in a lush peaceful ambiance. Two stunning swimming pools with swim-up bars are an indulgence in pure leisure - a perfect place to relax and unwind.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_499194\\/5293_8f8301a7c18a1e81d3b5e41df7dc7c3e1647334883.jpg\",\"AccoAminitiesMask\":\"101110100000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"}],\"IsfromAPI\":false,\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":24916,\"Title\":\"ARRIVAL\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24917,\"Title\":\"PHI PHI ISLAND TOUR WITH LUNCH BY SPEED BOAT + LUNCH + PARK FEE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24918,\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24919,\"Title\":\"KRABI FOUR ISLAND YOUR BY LONG TAIL BOAT + LUNCH + PARK FEE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24920,\"Title\":\"DEPARTURE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":499198,\"Name\":\"Deevana Krabi Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.0424087\",\"Long\":\"98.8183713\",\"Address\":\"90 Moo3 Aonang Soi 8, ???? ??????? ???????????????? ?????? 81180, Thailand\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":24916,\"Title\":\"ARRIVAL\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24917,\"Title\":\"PHI PHI ISLAND TOUR WITH LUNCH BY SPEED BOAT + LUNCH + PARK FEE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24918,\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24919,\"Title\":\"KRABI FOUR ISLAND YOUR BY LONG TAIL BOAT + LUNCH + PARK FEE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":24920,\"Title\":\"DEPARTURE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8302,\"SupplierName\":\"MEKONG VACATIONS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"239572\",\"Title\":\"ARRIVAL\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Meet on Arrival &amp;amp; Transfer to Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Upon arrival you will be given a warm welcome by our representatives at the arrival hall.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check as per international standard check inn time (Early check in subject to availability)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Over-night stay at hotel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365355,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24916,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239573\",\"Title\":\"PHI PHI ISLAND TOUR WITH LUNCH BY SPEED BOAT + LUNCH + PARK FEE\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;This is the most popular tour-experience in Thailand, and a &amp;#39;must&amp;#39; for first-time visitors to the Land of Smiles.&amp;nbsp;The Phi Phi archipelago is a must-visit while in Phuket, and this speedboat trip whisks you around the islands in one day. Breathtaking limestone cliffs rise straight out of the emerald green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Swim over the coral reefs of Pileh Lagoon, have lunch at Phi Phi Leh, snorkel at Bamboo Island, and visit Monkey Beach and Maya Bay, immortalized in &amp;quot;The Beach.&amp;quot; Boat transfers, snacks, buffet lunch, snorkeling equipment, and Phuket hotel pickup and drop-off all included. Visit the islands by speedboat to relax, swim, and snorkel Sightsee Maya Bay, popularized by the famous movie, &amp;ldquo;The Beach&amp;rdquo; starring Leonardo DiCaprio See the monkeys at Monkey Beach Snorkel masks and lifejackets provided&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave and Monkey Beach.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":499194,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24917,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239574\",\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Explore Phuket&amp;rsquo;s natural beauty and culture on this guided excursion. After a convenient hotel pickup, you will proceed onto exploring the entire Phuket City Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Take in Phuket Island&amp;#39;s natural beauty as you are driven along beach roads through Patong, Karon and Kata. Visit the &amp;#39;Three Beaches&amp;#39; viewpoint where you can take in a great vista of the beautiful bays of Kata Noi, Kata, Karon and Kho Pu Island, at one of the island&amp;#39;s best scenic spot.This tour gives an insight into the highlights of the &amp;#39;Pearl of the Andaman&amp;#39;. It also includes a leisurely drive around Phuket west coast line from Patong beach till end of the island. Other attractions visited are Gems factory, Wat Chalong, a Cashew Nut Factory, Sunset viewpoint at Phromthep Cape\\/Windmill Point and other local products place.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365355,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":499194,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239575\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239576\",\"Title\":\"CAB FROM PHUKET HOTEL - KRABI HOTEL\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;After breakfast, Check - Out from Phuket hotel &amp;amp; Cab will take you to Krabi hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Check in at hotel &amp;amp; rest of the day free at leisure on your own.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Stay overnight at hotel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":499198,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239577\",\"Title\":\"KRABI FOUR ISLAND YOUR BY LONG TAIL BOAT + LUNCH + PARK FEE\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;The trip will start when you are picked up from your hotel and transferred to the quay on the Krabi River. The first stop is Tup Island where at low tide a sandbar emerges from the clear waters linking the larger Chicken Island to the two smaller islands of Koh Mor and Tup, this picturesque and unique occurrence is commonly referred to as Talay Waek which means divided sea. Phra Nang Island is one of the most well-known beaches in all Asia, renowned for its spectacular stalactites.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nChicken Island has beautiful beaches with fine white sand. You will have the opportunity to go swimming or snorkeling or just relax on the beach in the shade of the swaying palm-trees and enjoy the sun. This area is a scuba-diver&amp;rsquo;s heaven with a wide variety of multi-colored tropical fish and coral in crystal clear waters ranging from emerald to turquoise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":499198,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24919,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"239578\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Good times mostly end leaving behind a trail of golden memories to cherish. After breakfast today, spend some time at leisure and enjoy some last minute shopping depending on your flight schedule. Check-out from the hotel and get transferred to the airport to board your return flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24920,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"33503\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54340.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52529,\"priceDoubleOcc\":\"54340.00\",\"priceSingleOcc\":152152,\"priceExtraBed\":\"40755.00\",\"priceWithoutBed\":\"27170.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27170,\"CEB\":40755,\"COSTDO\":54340,\"COSTSO\":152152,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":48906,\"COSTTO\":48906}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Econony Class Airfare for Delhi - Singapore - Delhi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03 Nights Hotel Nights accommodation on double and twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 nights Hotel Nights accommodation on double and twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals Plan - Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phi Phi Island Tour with Lunch by Speed Boat + Lunch + Park Fee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phuket Half Day City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Krabi 4 Island Your by Long Tail Boat + Lunch + Park Fee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phuket Airport &amp;ndash; Phuket Hotel Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phuket Hotel &amp;ndash; Krabi Hotel Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Krabi Hotel &amp;ndash; Phuket Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Hotel Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"239572\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[239572],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"239573\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[239573],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"239574\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[239574],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"239575\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[239575],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"239576\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[239576],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"239577\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[239577],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"239578\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[239578],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Phuket,Krabi','Phuket,South East Asia,Thailand,Krabi','','21319,14466',54340,54340,5,'252_1647363482_0.jpg,252_1647363482_1.jpg,252_1647363482_2.jpg,252_1647363482_3.jpg',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2023-07-29 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-07-29 15:54:53','2023-07-29 00:00:00',1,1,'1','1','1','','','',NULL,'thai-retreat',NULL,NULL,NULL,0),(253,2847,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2847\",\"VisaName\":\"Singapore Visa \",\"Nationality\":null,\"VisaAdultRates\":2600,\"VisaChildRates\":2600,\"VisaInfantRates\":2600,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Singapore\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"Visa Form 14A\",\"DocFileName1\":\"visa form14a_1_2847.pdf\",\"DocName2\":\"Covering Letter\",\"DocFileName2\":\"SAMPLE COVERING LETTER FROM DELHI_1_2847.docx\",\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;TOURIST Visa Requirements for SINGAPORE (DELHI)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid passport&amp;nbsp;(along with old passports) with at least 6 month validity from the date of travel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One Visa application form 14A duly filled and signed by pax&amp;nbsp;mentioning his\\/her direct contact number on it.. Row number 1 should have the SURNAME and row number 2 should have the NAME of the applicant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 Passport Size Photograph 35 x 45 mm (Fresh ones i.e. NOT used earlier for any visa) (latest one, not used in any previous visa, passport size with 80% face coverage, matt finish, with white background - see footnote for more specifications)&amp;nbsp;1 photo to be pasted&amp;nbsp;on the visa application form should be signed cross in such a manner that half of the signatures are on the form and half on the photo.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter&amp;nbsp;addressed to The Visa Officer, Singapore High Commission [In case of own business(on company letterhead mentioning the name and designation). In case of Employed (On company letterhead mentioning the designation OR if covering letter on plain paper then NOC from Company mentioning the designation)].&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Itinerary&amp;nbsp;(ticket)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Confirmation&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For applicants in service&amp;nbsp;- Need to give original NOC or Leave from Present working company&amp;nbsp;or else original visiting card and employee id card copy&amp;nbsp;OR For applicants running their own business need to give request letter ONLY on their company`s Letter Head with active telephone numbers\\/ Salary slips of 3 months and salary accounts statement of 6 months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Vaccinated Travel Pass (VTP) .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Processing Time&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4 working days.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Please Note:&amp;nbsp;Embassy may ask for any additional documents.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Below are Jurisdiction list for Singapore:-&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nJurisdiction For DELHI&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arunachal Pradesh, Assam, Haryana, Himachal Pradesh, Jammu and Kashmir, Manipur, Meghalaya, Mizoram, Nagaland, Punjab, Rajasthan, Sikkim, Tripura, Uttar Pradesh, Uttarakhand, Bihar, West Bengal, Jharkhand&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nJurisdiction For MUMBAI&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Maharashtra, Gujarat, Madhya Pradesh, Goa, Odisha, Chhattisgarh&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nJurisdiction For CHENNAI&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tamil Nadu, Karnataka, Andhra Pradesh, Telangana ,Kerala, Andaman and Nikobar&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Singapore High Commission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;E-6, Chandragupta Marg, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"4-5 Days\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"-\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"999.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"1000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Singapore','Singapore',NULL,'190',2600,2600,0,'1691991958.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Singapore','190','2023-07-21 12:17:17','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'singapore-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(254,3049,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"3049\",\"VisaName\":\"Turkey Visa\",\"Nationality\":null,\"VisaAdultRates\":10500,\"VisaChildRates\":10500,\"VisaInfantRates\":10500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Turkey\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"Visa Form\",\"DocFileName1\":\"Visa Form_1_3049.pdf\",\"DocName2\":\"Visa Check List\",\"DocFileName2\":\"Tourist Visa Checklist - New Delhi_1_3049.pdf\",\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;Mandatory Documents for Turkish visa:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visa Application Form (it should be filled manually by blue or black ink in block letters with 1 white background photographs having size 2.5inch x 2.5inch.)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Passport (Passport must be valid for at least 6 months upon arrival in Turkey and should have at least 2 full blank pages available in it).&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 Biometric Photos with a white background that were taken within the last 6 months, depicting the full face including ears and all hair, clearly and completely visible without shadow, in 2.5inch x 2.5inch size.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering letter Letter by the applicant mentioning the purpose and duration of stay, occupation and expenses clause, accompanying persons if any, etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Leave letter from employer\\/ covering letter in personal business letter head (if self-employed) with Original authorized signatory, name, designation and original signature and company seal&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Salary bank statement(Employee)for last 3 months. Saving Account(Employer) for last 3 months. Original or copies sealed and signed by bank. Balance should be 1 lakh per person.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Salary Slips \\/ Certificates of the last three months&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;GST or Company Registiration Copy with original notary and mantralaya\\/MEA stamp (for employer)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Retired Retirement documents &amp;amp; income proof (original or copies attested), Last 3 month&amp;#39;s personal bank statement (original or copies attested by bank)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Proprietor\\/Partner\\/Director: Applicant needs to provide proof in which applicant\\/company name should be mentioned. Original notary and Mantralaya\\/MEA attestation needs to be done for each applicant. Last 3 month&amp;#39;s personal bank statement (original or copies attested by bank)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Student: Letter from the school\\/university &amp;amp; ID copy, Last 3 months&amp;#39; personal bank statement (original or copies attested by bank)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel reservation&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Round trip flight ticket or confirmed reservation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Insurance is mandatory requirement which should fulfill requirements. This plan should cover the insured for a minimum of Euro 30000&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1 Copies of Passport (first and last pages)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;(If not shown in passport) Marriage Certificate of the Couple issued by the marriage registrar \\/ Affidavit required attested by Notary Public\\/Wedding Card&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Basic Requirements to visit Turkey&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a valid Passport and valid Turkey Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be in good health;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be able to convince the immigration officer that you will leave the country before your Turkey visa expires;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have sufficient funds to support yourself in Turkey and the amount depends on how long you will stay in Turkey and whether you will be staying with family, friends or any paid accommodation.&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Embassy of Turkey&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;50-N, Nyaya Marg, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"5-8 Days \",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"8999.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Turkey','Turkey',NULL,'222',10500,10500,0,'1692001098.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Turkey','222','2023-07-21 11:42:56','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'turkey-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(255,3050,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"3050\",\"VisaName\":\"Switzerland Visa (Short term)\",\"Nationality\":null,\"VisaAdultRates\":7000,\"VisaChildRates\":3500,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Switzerland\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"Visa Form\",\"DocFileName1\":\"Visa Form of Switzerland_1_3050.pdf\",\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"Visa Checklist\",\"DocFileName3\":\"checklist-tourist_1_3050.pdf\",\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Documents reqirements for Switzerland Tourist Visa :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Valid national passport&lt;\\/strong&gt; :&amp;nbsp; Issued within the last 10 years and with at least 6 months validity after the scheduled return, with at least two blank pages.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;2 passport size pictures&lt;\\/strong&gt; :&amp;nbsp; White background, not older than 6 months (size 35 &amp;ndash; 40 mm in width, not copied or scanned picture).&amp;nbsp; Full face, non-smiling [without sunglasses, a hat\\/cap or other head covering, unless the applicant wears such items because of their religious belief or ethnic background].1 st picture pasted on the application - 2 nd picture has to be clipped on the last page of the passport, stapled or pinned pictures cannot be accepted.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visa application form&lt;\\/strong&gt; :&amp;nbsp; Completed, signed by the applicant,&amp;nbsp; If the applicant is a minor: visa application signed twice by legal guardian and if applicable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Previous passport\\/s&lt;\\/strong&gt; :&amp;nbsp; If any, bound together with rubber band, not stapled.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Personal covering letter&lt;\\/strong&gt; :&amp;nbsp; Original letter with travel plan. If the applicant is submitting the applications of his\\/her family, then all applications must include a copy of the covering letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Introduction lette&lt;\\/strong&gt;r : Original letter has to be on a business letterhead from the employer\\/company.&amp;nbsp; The letter has to be signed and stamped by HR or directorate mentioning your position and the duration of your service.&amp;nbsp; &amp;ldquo;No objection statement&amp;rdquo; regarding the planned trip to Switzerland\\/Schengen States.&amp;nbsp; The dates and purpose of the trip.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Minimum coverage of 30,000 Euro \\/ 50,000 USD \\/ 50,000 CHF per person&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Flight reservation&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Confirmation hotel reservation&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visa Check list&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of financial status &lt;\\/strong&gt;: All documents have to be originals, in format A4, with stamp and signature of Bank.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If employed :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;? Last 3 months salary slips and last 3 months salary bank account statements.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;? Last 3 months personal bank account statements.(minimum balance 1.5 - 2 Lac)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Personal ITR (only ITR-V, Indian Income Tax Return Verification Form or Acknowledgement is accepted) for the last 2 assessment years.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If self-employed and\\/or company owner :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Business registration certificate \\/ GST Registration with annex A &amp;amp; B \\/ Partnership Deed \\/ Proof of proprietorship or other proof of ownership. Last 3 months personal and business bank account statements.(minimum balance 1.5 - 2 Lac)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Company&amp;rsquo;s and personal ITR (only ITR-V, Indian Income Tax Return Verification Form or Acknowledgement is accepted) for the last 2 assessment years.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If retired :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Personal pension bank statement for the last 3 months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Proof of regular income generated by ownership of property or business.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Student or unemployed :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Parents or legal guardians must provide their personal bank statements for the last 3 months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Personal ITR (only ITR-V, Indian Income Tax Return Verification Form or Acknowledgement is accepted) for the last 2 assessment years along with a confirmation letter of financial support and a copy of their passports.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear photocopies of valid UK, USA, or CAN visas (if any).&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Photocopies of the 1st page (bio data) and last page of the passport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;color:#f1c40f&#039;&gt;&lt;strong&gt;Please note:&lt;\\/strong&gt;&lt;\\/span&gt; - Embassy of Switzerland reserves the right to ask for additional documents and\\/or for a personal interview.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Basic Requirements to visit Switzerland&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a valid Passport and valid Switzerland Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be in good health;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Good moral character;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be able to convince the immigration officer that you will leave the country before your Switzerland visa expires;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have sufficient funds to support yourself in Switzerland and the amount depends on how long you will stay in Switzerland and whether you will be staying with family, friends or any paid accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Checklist&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passport;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid Switzerland Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed return Ticket;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Contact details of your relative, friends or business contact in Switzerland;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed hotel bookings (If Any);&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Switzerland Currency and other forms of forex;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An unlocked smartphone, preferable with a Sim card from India;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Any additional documents required to prove your purpose of visit (especially if you are travelling on a business Visa).&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Embassy of Switzerland&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;E-3, Nyaya Marg, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"10-15 Days\",\"VisaValidity\":\"15-30 Days\",\"VisaDuration\":\"\",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"3999.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Switzerland','Switzerland',NULL,'210',7000,7000,0,'1691497950.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Switzerland','210','2023-07-21 11:42:50','2023-07-21 00:00:00',1,1,'1','1','0','','','',NULL,'switzerland-visa-(short-term)','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(257,41777,1,5293,0,0,0,'Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41777,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/simply-thail_1665816018\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is a Southeast Asian country. It&amp;#39;s known for tropical beaches, opulent royal palaces, ancient ruins, and ornate temples displaying figures of Buddha. In Bangkok, the capital, an ultramodern cityscape rises next to quiet Canalside communities and the iconic temples of Wat Arun, Wat Pho, and the Emerald Buddha Temple (Wat Phra Kaew). Nearby beach resorts include bustling Pattaya and fashionable Hua Hin.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Pattaya\",\"SourcePlaceSysId\":20925,\"AgencyName\":\"I Need Trip\",\"Name\":\"SIMPLY THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Beach,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218720,\"Name\":\"FX Hotel Pattaya Pratamnak\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"352316 Moo 12, Pattaya, Chon Buri Pattaya  20150, Pattaya, , , , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788860,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICi78YtqrWuooqbV7OVh5cHxV2e7bfHvPY1pqiXnWk2Jc7nbpApLXgjfpRP9WrHJgqsF1rlE8U7OWk8mvbWOKnRDqSCc\\/YlnmuKoyCF2YngXCWpryxDQQy7eCL1bFnwA7AQFquEc6IIZwi3zKlUHYk53TPf9A8ejcIRxbnme\\/Bi3DyKVRHu8CiLdmLuYAdcHq8A=\"}]},\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":218714,\"Name\":\"Centara Pattaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\", , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788854,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"\"}]},\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":218408,\"Name\":\"Sunbeam Hotel Pattaya\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.935304441232464\",\"Long\":\"100.88514602281521\",\"Address\":\"SOI 7, PATTAYA BEACH ROAD 217\\/27 20150 PATTAYA  TH, , , 20150\"},\"Images\":{\"Image\":[{\"ImagId\":4788548,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFuUbeKvyH2Tj2hOeNfRedqzft83ZWXTwjNfM\\/ssNb44z6yG1RRr\\/o2Gg==\"}]},\"CityId\":20925,\"Brief\":\"Within easy reach of the beach, Sunbeam Hotel Pattaya is in Pattaya (Central Pattaya), close to Central Festival Pattaya Beach and Pattaya Beach. Also nearby are Hard Rock Cafe and Ripley&#039;s Believe It or Not. Sunbeam Hotel Pattaya has an outdoor pool, a sauna, and a children&#039;s pool. Public areas are equipped with wireless Internet access (surcharges apply). Business amenities at this 3.5-star property include a business center and small meeting rooms. Dining options at this business-friendly hotel include a restaurant, a coffee shop\\/caf?, and a poolside bar. Additional amenities include laundry facilities, coffee\\/tea in the lobby, and complimentary newspapers in the lobby. This is a smoke-free property. The guestrooms at Sunbeam Hotel Pattaya include minibars and coffee\\/tea makers. Complimentary wireless high-speed Internet access is provided. All accommodations provide desks, safes, and phones. Bathrooms offer bathtubs or showers with rainfall showerheads, bathrobes, hair dryers, and slippers. All units feature refrigerators and complimentary bottled water. Rates are not valid for nationals or passport holders of the following countries; Germany,Russian,Israel,Thai.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":174282,\"Name\":\"Avani Atrium Bangkok\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.746878270971\",\"Long\":\"100.57003319263\",\"Address\":\"1880 New Petchburi Road 10310 Bangkok\"},\"Images\":{\"Image\":[{\"ImagId\":3869357,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/834\\/355\\/Exterior_A.jpg\"},{\"ImagId\":3869358,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/786\\/193\\/VATR_Lobby_01_G_A_H_A.jpg\"},{\"ImagId\":3869359,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/49\\/757\\/477\\/2_A.jpg\"},{\"ImagId\":3869360,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/834\\/363\\/Lobby_A.jpg\"},{\"ImagId\":3869361,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/834\\/379\\/Front_Lobby_A.jpg\"},{\"ImagId\":3869362,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/473\\/AVANI_Premier_Room_A.jpg\"},{\"ImagId\":3869363,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/465\\/AVANI_Premier_Room_Twin_A.jpg\"},{\"ImagId\":3869364,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/86\\/AVANI_Premier_Corner_Room_A.jpg\"},{\"ImagId\":3869365,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/94\\/AVANI_Premier_Corner_Room_Bathoom_A.jpg\"},{\"ImagId\":3869366,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/449\\/AVANI_Deluxe_Room_A.jpg\"},{\"ImagId\":3869367,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/457\\/AVANI_Deluxe_Room_Twin_A.jpg\"},{\"ImagId\":3869368,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/280\\/AVANI_Deluxe_Room_bathroom_A.jpg\"},{\"ImagId\":3869369,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/30\\/AVANI_Deluxe_Classic_Room_A.jpg\"},{\"ImagId\":3869370,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/38\\/AVANI_Executive_Room_A.jpg\"},{\"ImagId\":3869371,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/433\\/AVANI_Corner_Suite_A.jpg\"},{\"ImagId\":3869372,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/46\\/AVANI_Executive_Suite_Bedroom_A.jpg\"},{\"ImagId\":3869373,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/70\\/AVANI_Executive_Suite_Living_Room_A.jpg\"},{\"ImagId\":3869374,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/54\\/AVANI_Grand_Executive_Suite_Bedroom_A.jpg\"},{\"ImagId\":3869375,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/78\\/AVANI_Grand_Executive_Suite_Living_Room_A.jpg\"},{\"ImagId\":3869376,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/62\\/AVANI_Grand_Executive_Suite_Bathroom_A.jpg\"},{\"ImagId\":3869377,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/163\\/846\\/PUBLIC_Restaurant_Dining_Area_A.jpg\"},{\"ImagId\":3869378,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/163\\/830\\/PUBLIC_Restaurant_Buffet_A.jpg\"},{\"ImagId\":3869379,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/163\\/854\\/PUBLIC_cooking_station_with_chef_A.jpg\"},{\"ImagId\":3869380,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/134\\/By_Pool_Bar_A.jpg\"},{\"ImagId\":3869381,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/810\\/Pantry_at_AVANI_A.jpg\"},{\"ImagId\":3869382,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/834\\/387\\/Pantry__AVANI_A.jpg\"},{\"ImagId\":3869383,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/786\\/211\\/VATR_Swimming_Pool_Day_Light_01_G_A_H_A.jpg\"},{\"ImagId\":3869384,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/818\\/Pool_A.jpg\"},{\"ImagId\":3869385,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/118\\/Bussarakam_Ballroom_A.jpg\"},{\"ImagId\":3869386,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/110\\/Bussarakam_Ballroom_Classroom_A.jpg\"},{\"ImagId\":3869387,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/192\\/Pailin_Meeting_Room_A.jpg\"},{\"ImagId\":3869388,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/164\\/126\\/Pailin_Room_Theatre_A.jpg\"},{\"ImagId\":3869389,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/208\\/Tubtim_Meeting_Room_A.jpg\"},{\"ImagId\":3869390,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/216\\/Tubtim_Meeting_Room_details_A.jpg\"},{\"ImagId\":3869391,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/224\\/Tubtim_Meeting_Room_interior_A.jpg\"},{\"ImagId\":3869392,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/264\\/Morakot_Meeting_room_A.jpg\"},{\"ImagId\":3869393,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/248\\/Wedding_setup_A.jpg\"},{\"ImagId\":3869394,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/127\\/200\\/Wedding_A.jpg\"},{\"ImagId\":3869395,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/614\\/481\\/Wedding_A.jpg\"},{\"ImagId\":3869396,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/820\\/VATR_Benihana_Entrance_G_A_L_A.jpg\"},{\"ImagId\":3869397,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/436\\/VATR_Benihana_Interior_02_G_A_H_A.jpg\"},{\"ImagId\":3869398,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/444\\/VATR_Benihana_Interior_Bar_01_G_A_H_A.jpg\"},{\"ImagId\":3869399,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/468\\/VATR_Benihana_Interior_Bar_02_G_A_H_A.jpg\"},{\"ImagId\":3869400,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/786\\/133\\/VATR_Benihana_Interior_Bar_Chef_01_G_A_H_A.jpg\"},{\"ImagId\":3869401,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/786\\/149\\/VATR_Benihana_Interior_Private_Room_01_G_A_H_A.jpg\"},{\"ImagId\":3869402,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/452\\/VATR_Benihana_Interior_03_G_A_H_A.jpg\"},{\"ImagId\":3869403,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/460\\/VATR_Benihana_Interior_Sake_Bar_Staff_G_A_H_A.jpg\"},{\"ImagId\":3869404,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/30\\/VATR_Benihana_Interior_Private_Room_G_A_H_A.jpg\"},{\"ImagId\":3869405,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/476\\/VATR_Benihana_Interior_Private_Room_02_G_A_H_A.jpg\"},{\"ImagId\":3869406,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/70\\/390\\/484\\/VATR_Benihana_Interior_Sake_Bar_G_A_H_A.jpg\"},{\"ImagId\":3869407,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/38\\/VATR_Benihana_Interior_Staff_G_A_L_A.jpg\"},{\"ImagId\":3869408,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/796\\/VATR_Benihana_Chef_Cooking_01_G_A_L_A.jpg\"},{\"ImagId\":3869409,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/804\\/VATR_Benihana_Chef_Cooking_02_G_A_L_A.jpg\"},{\"ImagId\":3869410,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/788\\/VATR_Benihana_Chef_Cooking_03_G_A_L_A.jpg\"},{\"ImagId\":3869411,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/756\\/VATR_Benihana_Alaskan_King_Crab_G_A_L_A.jpg\"},{\"ImagId\":3869412,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/764\\/VATR_Benihana_AVANI_Boat_G_A_L_A.jpg\"},{\"ImagId\":3869413,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/772\\/VATR_Benihana_Benihana_Punch_01_G_A_L_A.jpg\"},{\"ImagId\":3869414,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/780\\/VATR_Benihana_Benihana_Punch_02_G_A_L_A.jpg\"},{\"ImagId\":3869415,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/78\\/VATR_Benihana_Sakura_of_Bangkok_G_A_L_A.jpg\"},{\"ImagId\":3869416,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/752\\/812\\/VATR_Benihana_Deadliest_Catch_G_A_L_A.jpg\"},{\"ImagId\":3869417,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/46\\/VATR_Benihana_Makuro_Salad_G_A_L_A.jpg\"},{\"ImagId\":3869418,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/54\\/VATR_Benihana_Sake_Cosmo_G_A_L_A.jpg\"},{\"ImagId\":3869419,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/62\\/VATR_Benihana_Pacific_Rim_G_A_L_A.jpg\"},{\"ImagId\":3869420,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/68\\/753\\/86\\/VATR_Benihana_Tai_Usuzukuri_02_G_A_L_A.jpg\"},{\"ImagId\":3869421,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/787\\/239\\/VATR_AVANI_Executive_Suite_Bedroom_01_G_A_H_A.jpg\"},{\"ImagId\":3869422,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/787\\/247\\/VATR_AVANI_Executive_Suite_Living_Room_01_G_A_H_A.jpg\"},{\"ImagId\":3869423,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/787\\/255\\/VATR_AVANI_Grand_Executive_Suite_Kitchen_01_G_A_H_A.jpg\"},{\"ImagId\":3869424,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/787\\/263\\/VATR_AVANI_Grand_Executive_Suite_Bedroom_01_G_A_H_A.jpg\"},{\"ImagId\":3869425,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/787\\/271\\/VATR_AVANI_Grand_Executive_Suite_Living_Room_01_G_A_H_A.jpg\"}]},\"CityId\":2266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;In the heart of Bangkok, AVANI Atrium Bangkok is close to Central Plaza Grand Rama 9 and Terminal 21 Shopping Mall.  This 4.5-star hotel is within close proximity of Bangkok Hospital and Pratunam Market.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 568 air-conditioned rooms featuring minibars. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreational opportunities offered, including a health club, an outdoor pool, and a sauna. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can catch a ride to nearby destinations on the complimentary area shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at one of the hotel&amp;apos;s dining establishments, which include 3 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. While enjoying a refreshing dip in the hotel pool, you can order your favorite drink at the poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Bangkok? This hotel has 3272 square feet (304 square meters) of space consisting of conference space and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/65\\/834\\/355\\/Exterior_A.jpg\",\"AccoAminitiesMask\":\"110110100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":523093,\"Name\":\"Hotel Amber Sukhumvit 85\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7024661\",\"Long\":\"100.6035262\",\"Address\":\"8 Soi Sukhumvit 85, Khwaeng Bang Chak, Khet Phra Khanong, Krung Thep Maha Nakhon 10260, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"301531\",\"Title\":\"Arrival in Thailand Onwards to Pattaya\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Suvarnabhumi International Airport and after clearing Immigration and Custom formalities, proceed towards the meeting point. Local Representative will greet you and welcome you. Hotels may provide rooms early if available. This is subject to availability and at the discretion of the hotel. Complete your check in. Overnight in Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218720,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":218714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":218408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301533\",\"Title\":\"CORAL ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Your tour will begin early in the morning after a delicious breakfast at the hotel. You will be driven to Pattaya Beach.&amp;nbsp;You will reach the spot to board a speedboat to marine sports pier. This will be followed by one of the most anticipated things to do in Pattaya, adventure activities (optional purchase) that include water sports i.e. parasailing, undersea walking, jet ski, and banana boat ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After arriving at Coral Island, you can spend some time at leisure under the warm tropical sun. If swimming is your thing take a dip into the water and relax. By 12:00 PM proceed back to the Pattaya beach on a speedboat and enjoy a scrumptious lunch at a restaurant.&lt;br \\/&gt;\\r\\nYou will be taken back to the hotel by mid-afternoon after which you can spend the evening at your own leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218720,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":false,\"Id\":218408,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":true,\"Id\":218714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301535\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301537\",\"Title\":\"TRANSFER FROM PATTAYA TO BANGKOK\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and head to Bangkok,&amp;nbsp;it&amp;rsquo;s a free day and it should go in your own way with the flow of your mood right? So, enjoy your whole day at your own disposal.&amp;nbsp;Bangkok is a great city with fascinating cultural and historical attractions, some of Asia&amp;#39;s greatest food, vibrant nightlife, and interesting people. You have a lot of options to visit the places according to your won. Later return back to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at Bangkok Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":174282,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301539\",\"Title\":\" BANGKOK HALF-DAY CITY TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, get ready to explore Bangkok city. Experience a fun-filled time with your loved ones while roaming around Bangkok&amp;#39;s most renowned places with a help of a professional tour guide who will help you to understand the history and culture of the places.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":174282,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301541\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After spending a fun-filled vacation in Pattaya and Bangkok, it is time to depart from Bangkok with fond memories of your trip.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"41777\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"41778\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":10,\"Price\":\"17050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":0,\"CWOB\":null,\"CEB\":null,\"COSTDO\":17050,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":0,\"CWOB\":null,\"CEB\":null,\"COSTDO\":17050,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":0,\"CWOB\":null,\"CEB\":null,\"COSTDO\":17050,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":0,\"CWOB\":null,\"CEB\":null,\"COSTDO\":17050,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17050,\"priceDoubleOcc\":\"17050.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"17050.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":0,\"CWOB\":17050,\"CEB\":17050,\"COSTDO\":17050,\"COSTSO\":34100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17050,\"COSTTO\":17050}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA (On Arrival)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin\\/ triple sharing basis as per itinerary with breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coral Island tour Speed boat with Indian Lunch - SIC&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bangkok City Tour with gems Gallery (Golden &amp;amp; Mini Reclining Buddha) - SIC&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"301531\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[301531],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301533\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[301533],\"Remark\":[\"&lt;p&gt;All tours on SIC basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301535\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[301535],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301537\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[301537],\"Remark\":[\"&lt;p&gt;All tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301539\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[301539],\"Remark\":[\"&lt;p&gt;All tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301541\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[301541],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',14850,17050,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 12:08:47','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'simply-thailand',NULL,NULL,NULL,0),(260,42540,1,5293,1,0,0,'Honeymoon,Adventure,Beach,Family,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42540,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/blissful-bali_1689848934\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;On the earth especially, there is no location like Bali. A wonderful fusion of people, culture, nature, activities, weather, gastronomic pleasures, nightlife, and lovely lodging. Bali is famed for its captivating arts, which include ancient and modern dance forms, magnificent sculptures, flamboyant paintings, superb leather, gorgeous metallurgy, and amazing music. Bali is blessed with a wealth of natural resources. It has a few lesser-known yet spectacular islands, like the adventurous Nusa Penida, Nusa Lembongan, and Nusa Ceningan.In temples like Uluwatu Temple and Ulun Danu Beratan Temple, you can find tranquility. Mountains like Mount Agung guarantee a strenuous walk and an amazing sunrise. Tegalalang&amp;#39;s rice terraces provide the ideal picturesque scenery for you to take in. There is a good reason why Bali is one of the most well-known islands. It is a center for water activities because it is surrounded by oceans and beaches.&amp;nbsp; Bali Museums won&amp;#39;t fail to surprise you and make you fall in love with the nation because they display the country&amp;#39;s true character. You shouldn&amp;#39;t miss the authentic cuisines Bali has to offer you because Balinese food is unique.&amp;nbsp;Bali is also renowned throughout the world for its kind hospitality.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"BLISSFUL BALI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":172883,\"Name\":\"Risata Bali Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.736685\",\"Long\":\"115.165201\",\"Address\":\"Jl. Wana Segara South Kuta Beach\"},\"Images\":{\"Image\":[{\"ImagId\":3828031,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Risata Bali Resort and Spa in Kuta, you&amp;apos;ll be in the entertainment district and minutes from Lippo Mall and Tuban Beach.  This 4-star resort is close to Kuta Beach and Carrefour Plaza Kuta.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 139 air-conditioned rooms featuring refrigerators and flat-screen televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. Conveniences include safes and minibars, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself with massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. Additional features at this resort include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands. If you&amp;apos;d like to spend the day shopping, you can hop on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":49890,\"Title\":\"Bali White water rafting\",\"Description\":\"Bali is renowned for its breathtaking landscapes and lush greenery. White water rafting in Bali allows you to immerse yourself in the island&amp;#039;s natural beauty as you navigate through rivers surrounded by tropical forests, rice terraces, and cascading waterfalls.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/2136\\/sightseeing\\/bali_white_water_rafting_2136_1688648783.jpg\",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7921,\"Title\":\"Ubud Swing\",\"Description\":\"The Bali Swing is the new toursm activity in Bali and it has become such a popular activity in Bali.\\r\\nHowever, the original and best is Ubud, but to day there hundreds of others have sprung up all over Bali with breathtaking views.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.5098,\"Long\":115.2654,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ubud_Swing_2136_1546086487.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"307092\",\"Title\":\"Arrival at Bali\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307093\",\"Title\":\"Full Day White Water Rafting on Ayung River Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp; 1x Sky Bed) on Pvt Basis\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a&amp;nbsp;Full Day White Water Rafting on Ayung River,Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp;amp; 1x Sky Bed) on Pvt Basis&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":49890,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7921,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307094\",\"Title\":\"Full Day Water Sports Including 1x Banana, 1x Flying Fish &amp; 1x Jet Ski Followed by Uluwatu Temple tour + 01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for Water Sports Activities. One Round of Banana Boat, Flying Fish, and Jet Ski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean, Later, witness the Island one of the most popular cultural performances Kecak Dance.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307095\",\"Title\":\"Full Day Ulun Danu Beratan Temple Tour Followed by Tanah Lot Temple tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast at the hotel, get ready to explore the Ulun Danu Beratan temple. It is a famous picturesque landmark and a significant temple complex located on the western side of Beratan Lake in Bedugul, central Bali. Ulun Danu literally &amp;#39;the source temple of Lake Beratan&amp;#39;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nNext visit will be followed by a dramatic Tanah Lot Temple one of the splendid tenples in Bali. Perching a top an enormous rock, its completely surrounded by the waters of the Indian Ocean during high tide, don&amp;#39;t miss this opportunity to watch the sunset over this temple pictured above.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3090,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307096\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Wake up to a beautiful tropical morning and have a delicious breakfast. pack your bags and complete the check-out formalities at the hotel. your amazing Bali tour concludes once you get dropped at the Denpasar Airport for your onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42540\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17770.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"17770.50\",\"priceDoubleOcc\":\"17770.50\",\"priceSingleOcc\":53311.5,\"priceExtraBed\":\"17770.50\",\"priceWithoutBed\":\"16670.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17770.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16670.5,\"CEB\":17770.5,\"COSTDO\":17770.5,\"COSTSO\":53311.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17770.5,\"COSTTO\":17770.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA on arrival in Bali&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 NIghts Accommodation with breakfast on twin sharing basis as per itinerary with Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeings as per itenerery.&amp;nbsp;\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Full Day Water Sports Including 1x Banana, 1x Flying Fish &amp;amp; 1x Jet Ski Followed by Uluwatu Temple tour on private basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day Bedugul Temple tour Followed by Tanah Lot Temple tour on Pvt Basis&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day White Water Rafting on Ayung River Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp;amp; 1x Sky Bed) on Pvt Basis&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on private basis in Bali.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"307092\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[307092],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307093\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[307093],\"Remark\":[\"All Tours and Sightseeing on a Private Basis\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307094\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[307094],\"Remark\":[\"All Tours and Sightseeing on a Private Basis\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307095\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[307095],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307096\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[307096],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient',NULL,'2136',17771,17771,4,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Indonesia','102','2024-01-16 12:25:55','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'blissful-bali',NULL,NULL,NULL,0),(261,42544,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42544,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/ancient-bali_1689847571\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"On the earth especially, there is no location like Bali. A wonderful fusion of people, culture, nature, activities, weather, gastronomic pleasures, nightlife, and lovely lodging. Bali is famed for its captivating arts, which include ancient and modern dance forms, magnificent sculptures, flamboyant paintings, superb leather, gorgeous metallurgy, and amazing music. Bali is blessed with a wealth of natural resources. It has a few lesser-known yet spectacular islands, like the adventurous Nusa Penida, Nusa Lembongan, and Nusa Ceningan.In temples like Uluwatu Temple and Ulun Danu Beratan Temple, you can find tranquility. Mountains like Mount Agung guarantee a strenuous walk and an amazing sunrise. Tegalalang&amp;#39;s rice terraces provide the ideal picturesque scenery for you to take in. There is a good reason why Bali is one of the most well-known islands. It is a center for water activities because it is surrounded by oceans and beaches.&amp;nbsp; Bali Museums won&amp;#39;t fail to surprise you and make you fall in love with the nation because they display the country&amp;#39;s true character. You shouldn&amp;#39;t miss the authentic cuisines Bali has to offer you because Balinese food is unique.&amp;nbsp;Bali is also renowned throughout the world for its kind hospitality.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANCIENT BALI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":357558,\"Name\":\"Grand Zuri Kuta Bali\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.7199029\",\"Long\":\"115.18030516998\",\"Address\":\"Jl. Raya Kuta 81, Kuta, Bali\"},\"Images\":[],\"CityId\":2136,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Grand Zuri Kuta Bali in Kuta, you&#039;ll be minutes from Swiss Consulate and Kuta Galeria Shopping Arcade.  This 4-star hotel is close to Carrefour Plaza Kuta and Kuta Beach.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 133 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and slippers. Conveniences include phones, as well as safes and desks.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Relax at the full-service spa, where you can enjoy massages. If you&#039;re looking for recreational opportunities, you&#039;ll find an outdoor pool and a fitness center. Additional amenities at this hotel include complimentary wireless Internet access and concierge services. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the hotel&#039;s restaurant, which serves breakfast, lunch, and dinner. Dining is also available at a coffee shop\\/cafe, and 24-hour room service is provided. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. This hotel has 3 meeting rooms available for events. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/60\\/6d\\/606de65cd1d711aa716409d626a4c164c33062c4.jpg\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":33395,\"Title\":\"Nusa Penida Island Tour\",\"Description\":\"&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;Once a hidden treasure, now gaining steady popularity, Nusa Penida is just the right mix of deserted and safe! You may not find the bustling city life, the happening nightlife or the fancy beach clubs here, but the beauty of the island is unparalleled!&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;Breathtaking cliff views, refreshing waterfalls, pristine beaches&hellip;Nusa Penida&#039;s day trip to the island is very doable and equally pleasurable.&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Snorkel in the Clear Waters of Crystal Bay:&nbsp;&lt;\\/span&gt;One of the most photographable places in Nusa Penida, you won&rsquo;t want to miss a visit to Crystal Bay.The beautiful palm-lined island with a thriving coral reef offers a visual treat to divers, and those who wish to snorkel during their visit. Put on the snorkel gear and be prepared to catch a glimpse of some exotic marine life.&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Hike Up to Get the Best View t Kelingking Beach:&nbsp;&lt;\\/span&gt;While Nusa Penida has so many great views, it may be challenging to pick one as the best. However, a Tyrannosaurus Rex shaped formation on a sweet hidden beach has got to be the winner! Kelingking beach is definitely, an Instagram favourite.&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Catch a Romantic Moment at Broken Beach:&nbsp;&lt;\\/span&gt;Broken beach is a gorgeous little cove on Nusa Penida Island. It is called so because of a natural archway that wraps around the bay. Unfortunately, there is no way down to swim here, but it is not too far from Angel&rsquo;s Billabong. Here, there is a pathway, which leads to a naturally formed lagoon, that offers a great place to swim and breathtaking views too!&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/city\\/2136\\/sightseeing\\/5293_1679299216.jpg\",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":33396,\"Title\":\"Banyumala Waterfall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"307130\",\"Title\":\"Arrival at Bali\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":357558,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307131\",\"Title\":\"Kintamani &amp; Ubud Full Day Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full day tour to Kintamani and Ubud. The perfect introduction to Bali&amp;#39;s fascinating culture and handicrafts, fascinating insight into Bali&amp;rsquo;s artistic heritage at Ubud, beautiful natural landscape, and the breathtaking view of an active volcano.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAll the guests visiting Monkey Forests are hereby advised to take due care that they should avoid feeding monkeys or tempt them by carrying any bags etc. that gives impression of food being in the bag. The monkeys can bite if due care is not taken. if any such act takes place , it will be at your own risk.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":357558,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2912,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307132\",\"Title\":\"Nusa Penida Island Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast explore the beautiful island of Nusa Penida on a full-day tour from Bali, far from the tourist crowds and experience a perfect getaway. Enjoy the unforgettable moment at Nusa Penida Island by visiting Angel Billabong, Kling king Beach, Crystal Bay, Broken Beach.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":357558,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":33395,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307133\",\"Title\":\"Full Day Banyumala Twin Waterfall tour followed by Ulun Danu Beraton Temple\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Banyumala Twin Waterfall is one of the lesser known waterfalls in Bali. Unlike many trails this is a completely natural trail and rarely hiked trail. Next stop will be at The Ulun Danu Beratan temple which has a famous pictureque landmark and a significant temple complex located on the western side of Beratan Lake in bedugul, central Bali. Ulun Danu means &amp;#39;the source temple of Lake Beratan&amp;#39;.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":357558,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":33396,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307134\",\"Title\":\"Full Day Watersport Package Followed by Uluwatu and Kecak Dance\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Explore for water sports activity such as Banana Boat, Single Parasailing and Jetski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand. Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean. After exploring the temple and watching the sunset, experience one of Bali&amp;rsquo;s most famous cultural performances, the Kecak Dance.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":357558,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"307135\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Post breakfast today, transfer to airport.&lt;br \\/&gt;\\r\\nBid adieu to Bali with loads of pictures and fond memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42544\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19580.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18927,\"priceDoubleOcc\":\"19580.00\",\"priceSingleOcc\":54824,\"priceExtraBed\":\"14685.00\",\"priceWithoutBed\":\"9790.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9790,\"CEB\":14685,\"COSTDO\":19580,\"COSTSO\":54824,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17622,\"COSTTO\":17622}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis with breakfast as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"307130\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[307130],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307131\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[307131],\"Remark\":[\"&lt;p&gt;All sightseeing and tours on Private Basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307132\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[307132],\"Remark\":[\"&lt;p&gt;All sightseeing and tours on Private Basis.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307133\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[307133],\"Remark\":[\"&lt;p&gt;All sightseeing and tours on Private Basis.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307134\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[307134],\"Remark\":[\"&lt;p&gt;Full Day Watersport Package Followed by Uluwatu and Kecak Dance&nbsp;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"307135\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[307135],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient',NULL,'2136',19580,19580,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Indonesia','102','2023-09-07 12:06:27','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ancient-bali',NULL,NULL,NULL,0),(265,43653,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":43653,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/fantabulous-thailand_1690624892\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is a Southeast Asian country. It&amp;#39;s known for tropical beaches, opulent royal palaces, ancient ruins, and ornate temples displaying figures of Buddha.&amp;nbsp;&lt;br \\/&gt;\\r\\nPicturesque in the day &amp;amp; Illuminating in the night. Travel with us to the land of smiles - Thrilling Thailand.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Phuket\",\"DestinationPlacesSysId\":21319,\"SourcePlaces\":\"Krabi\",\"SourcePlaceSysId\":14466,\"AgencyName\":\"I Need Trip\",\"Name\":\"FANTABULOUS THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":439057,\"Name\":\"Centra By Centara Phu Pano Resort Krabi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.036393\",\"Long\":\"98.834393\",\"Address\":\"879 Moo2, Soi Ao Nang 11 158 81180 KRABI  TH, 81180\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"The 160 rooms make light, bright retreats for couples and families. Each living space is between 24 and 48 square metres, and all rooms come with an open-air balcony plus large picture windows that let the views of the swimming pool or the surrounding limestone formations become a dominant feature.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/54\\/543501\\/543501a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Garden View Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":523548,\"Name\":\"Ibis Styles Phuket City Talat Yai\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.8785018\",\"Long\":\"98.3943989\",\"Address\":\"23 Thawornwongwong Road Amphur Muang, ???????????? ???????????????? ?????? 83000, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"314818\",\"Title\":\"ARRIVAL PHUKET AND TRANSFER TO KRABI HOTEL\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Phuket Airport where our representative will greet you and transfer you to Krabi. It will take around hours to reach this beautiful town that lies along the coast of Southern Thailand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proceed with the check-in formalities and enjoy the rest of the day at leisure. You can rent a boat from Krabi town or Ao Nang and explore the islands on your own. You can also go for a swim and escape to another world in Emerald Pool at Thung Teao Forest Natural Park. One can also witness the old-world charm of Krabi Town and explore the local cafes, bars, markets and so much more.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Krabi&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439057,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Garden View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314819\",\"Title\":\"KRABI FOUR ISLAND TOUR BY SPEED BOAT\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, head to &lt;strong&gt;Four Island Tour &lt;\\/strong&gt;picked up from your hotel, and transferred to the quay on the Krabi River. The first stop is Tup Island where at low tide a sandbar emerges from the clear waters linking the more oversized Chicken Island to the two smaller islands of Koh Mor and Tup, this picturesque and unique occurrence is commonly referred to as Talay Waek which means divided sea. Phra Nang Island is one of Asia&amp;#39;s most well-known beaches, renowned for its spectacular stalactites.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nChicken Island has beautiful beaches with fine white sand. You will have the opportunity to go swimming or snorkeling or just relax on the beach in the shade of the swaying palm trees and enjoy the sun. This area is a scuba diver&amp;#39;s heaven with a wide variety of multi-colored tropical fish and coral in crystal clear waters ranging from emerald to turquoise. Later after a long day back to the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay in Krabi&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439057,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Garden View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":26762,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314820\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314833\",\"Title\":\"TRANSFER FROM KRABI TO PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Take as much as you need at breakfast this morning, pack your luggage, and leave the hotel. We said goodbye to Krabi today and continued our vacation to Phuket, which is a much more exotic location. Check from Hotel and unwind after arriving in Phuket. You can spend the rest of the day on your own. You can explore your neighborhood in the evening and savor some freshly prepared cuisine at neighboring beach restaurants. After that, return back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Phuket&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314834\",\"Title\":\"(PHI PHI ISLAND + KHAI ISLAND) TOUR BY SPEED BOAT + LUNCH\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, pick up you from the hotel and head to the most popular tour experience in Phuket, the &lt;strong&gt;Phi Phi Island Tour&lt;\\/strong&gt;, The Phi Phi archipelago is a must-visit while in Phuket, and this speedboat trip whisks you around the islands in one day. Breathtaking limestone cliffs rise straight out of the emerald-green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; the site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Swim over the coral reefs of Pileh Lagoon, have lunch at Phi Phi Leh, snorkel at Bamboo Island, and visit Monkey Beach and Maya Bay, immortalized in &amp;quot;The Beach.&amp;quot; Boat transfers, snacks, buffet lunch, snorkeling equipment, and Phuket hotel pickup and drop-off are all included. Visit the islands by speedboat to relax, swim, and snorkel Sightsee Maya Bay, popularized by the famous movie, &amp;ldquo;The Beach&amp;rdquo; starring Leonardo DiCaprio See the monkeys at Monkey Beach Snorkel masks and lifejackets provided&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave, and Monkey Beach. After a log day head back to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Phuket&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314835\",\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Explore Phuket&amp;rsquo;s natural beauty and culture on this guided excursion. After a convenient hotel pickup, you will proceed onto exploring the entire Phuket City Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Take in Phuket Island&amp;#39;s natural beauty as you are driven along beach roads through Patong, Karon, and Kata. Visit the &amp;#39;Three Beaches&amp;#39; viewpoint where you can take in a great vista of the beautiful bays of Kata Noi, Kata, Karon, and Kho Pu Island, at one of the island&amp;#39;s best scenic spots. This tour gives an insight into the highlights of the &amp;#39;Pearl of the Andaman&amp;#39;. It also includes a leisurely drive around Phuket west coastline from Patong beach till the end of the island. Other attractions visited are the Gems factory, Wat Chalong, a Cashew Nut Factory, Sunset viewpoint at Phromthep Cape\\/Windmill Point, and other local products place.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay in Phuket&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"314836\",\"Title\":\"DEPARTURE FROM PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, its time to say goodbye to the amazing place with unforgettable memories, our representative will escort you the Phuket Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"43653\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28490.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":27540,\"priceDoubleOcc\":\"28490.00\",\"priceSingleOcc\":79772,\"priceExtraBed\":\"21367.50\",\"priceWithoutBed\":\"14245.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14245,\"CEB\":21367.5,\"COSTDO\":28490,\"COSTSO\":79772,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25641,\"COSTTO\":25641}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;National Park Fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA - On Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Nights - Krabi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03 Nights - Phuket&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"314818\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[314818],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314819\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[314819],\"Remark\":[\"&lt;p&gt;All Sightseeing \\/ Tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314820\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[314820],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314833\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[314833],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314834\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[314834],\"Remark\":[\"&lt;p&gt;All Sightseeing\\/ Tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314835\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[314835],\"Remark\":[\"&lt;p&gt;All Sightseeing\\/ Tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"314836\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[314836],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Krabi,Phuket','Krabi,South East Asia,Thailand,Phuket',NULL,'14466,21319',28490,28490,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 12:02:47','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'fantabulous-thailand',NULL,NULL,NULL,0),(267,44786,1,5293,0,0,0,'Honeymoon,Family,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44786,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/explore-baku_1690803931\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The historical center of Baku reveals its tumultuous past, from its roots as a Silk Road port city, through its oil boom to its Soviet period. The old city is a maze of alleys, mosques, historic buildings and remnants of fortification, including the Palace of the Shirvanshahs and the Maiden Tower, now listed among UNESCO&amp;#39;s World Heritage Sites. Much more than a historic site, the city hosts vibrant arts and cultural activities, as well as a bustling modern business sector.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Baku\",\"DestinationPlacesSysId\":2099,\"SourcePlaces\":\"Baku\",\"SourcePlaceSysId\":2099,\"AgencyName\":\"I Need Trip\",\"Name\":\"EXPLORE BAKU\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7636\",\"SupplierName\":\"Destination Launcher\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Offbeat,Leisure\",\"Validity\":{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2099,\"Title\":\"Baku\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528195,\"Name\":\"Diamond Hotel Baku\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"40.4113292\",\"Long\":\"49.861539\",\"Address\":\"191 ?hm?d R?c?bli, Bak? 1000, Azerbaijan\"},\"Images\":[],\"CityId\":2099,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528196,\"Name\":\"Atlas Hotel Baku\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"40.4099526\",\"Long\":\"49.8610041\",\"Address\":\"2 17 ?hm?d R?c?bli, Bak? 1075, Azerbaijan\"},\"Images\":[],\"CityId\":2099,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7299,\"Title\":\"Martyrs\' Lane & Highland Park\",\"Description\":\"It is a burial place of Azerbaijani and Turkish soldiers who were killed in the battles for Baku in 1918. Also, the graves of the martyrs who died for their country in the war in 90s are situated here. But the most picturesque corner of Baku is Highland park. From here you get the opportunity to panorama of beautiful Baku city\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.3566852,\"Long\":49.8282397,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/1211_1540377578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":5717,\"Title\":\"Baku Old CIty Tour\",\"Description\":\"Old City or Inner City is the historical core of Baku, the capital of Azerbaijan. The Old City is the most ancient part of Baku, which is surrounded by walls were well protected. In 2007, the Old City had a population of about 3000 people.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/36_1528456679.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":4861,\"Title\":\"Heydar Aliyev Center\",\"Description\":\"The Heydar Aliyev Center is a 57,500 m2 building complex in Baku, Azerbaijan designed by Iraqi-British architect Zaha Hadid and noted for its distinctive architecture and flowing, curved style that eschews sharp angles. The center is named after Heydar Aliyev, the first secretary of Soviet Azerbaijan from 1969 to 1982, and president of Azerbaijan Republic from October 1993 to October 2003. The Center houses a conference hall (auditorium), a gallery hall and a museum. The project is intended to play an integral role in the intellectual life of the city. Located close to the city center, the site plays a pivotal role in the redevelopment of Baku.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.3959025,\"Long\":49.8656264,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/48_1525426950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":4859,\"Title\":\"Ateshgah Temple of Fire Worshippers\",\"Description\":\"The Baku Ateshgah, often called the &quot;Fire Temple of Baku&quot; is a castle-like religious temple in Surakhani town, a suburb in Baku, Azerbaijan. Based on Persian and Indian inions, the temple was used as a Hindu, Sikh, and Zoroastrian place of worship. It was abandoned in the late 19th century, probably due to the dwindling of the Indian population in the area. The natural eternal flame went out in 1969, after nearly a century of exploitation of petroleum and gas in the area, but is now lit by gas piped from the nearby city.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.415731,\"Long\":50.0068021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/48_1525425794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":17881,\"Title\":\"Nohur Lake\",\"Description\":\"Magnetizing Lake Nohur with its beautiful view to Caucasus Mountains, fresh air and deep water is something that entices tourists from all over the world. The visitors are so much amazed by the beauty of Lake Nohur, that they revisit the country to visit this lake. The tranquil atmosphere and chirping sound of birds create an ideal relaxation ambience to escape from the busy schedule of the city. Although swimming in the lake is prohibited, but you can go for fishing. You can also choose a boat or catamaran ride and relish the surrounding scenery. As the lake is beautifully situated at the end of the roads a bit hard to pass, you can reach by car. Road to Lake Nohur is on the Baku-Gabala highway, near the village of Nohurqishlag.\",\"CurrencyType\":0,\"CityId\":35626,\"CityName\":\"Gabala\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35626\\/sightseeing\\/tNohur_Lake_35626_1604992777.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null}]}},{\"CityId\":35626,\"Title\":\"Gabala\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528211,\"Name\":\"Gabala Garden Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35626,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7299,\"Title\":\"Martyrs\' Lane & Highland Park\",\"Description\":\"It is a burial place of Azerbaijani and Turkish soldiers who were killed in the battles for Baku in 1918. Also, the graves of the martyrs who died for their country in the war in 90s are situated here. But the most picturesque corner of Baku is Highland park. From here you get the opportunity to panorama of beautiful Baku city\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.3566852,\"Long\":49.8282397,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/1211_1540377578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":5717,\"Title\":\"Baku Old CIty Tour\",\"Description\":\"Old City or Inner City is the historical core of Baku, the capital of Azerbaijan. The Old City is the most ancient part of Baku, which is surrounded by walls were well protected. In 2007, the Old City had a population of about 3000 people.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/36_1528456679.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":4861,\"Title\":\"Heydar Aliyev Center\",\"Description\":\"The Heydar Aliyev Center is a 57,500 m2 building complex in Baku, Azerbaijan designed by Iraqi-British architect Zaha Hadid and noted for its distinctive architecture and flowing, curved style that eschews sharp angles. The center is named after Heydar Aliyev, the first secretary of Soviet Azerbaijan from 1969 to 1982, and president of Azerbaijan Republic from October 1993 to October 2003. The Center houses a conference hall (auditorium), a gallery hall and a museum. The project is intended to play an integral role in the intellectual life of the city. Located close to the city center, the site plays a pivotal role in the redevelopment of Baku.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.3959025,\"Long\":49.8656264,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/48_1525426950.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":4859,\"Title\":\"Ateshgah Temple of Fire Worshippers\",\"Description\":\"The Baku Ateshgah, often called the &quot;Fire Temple of Baku&quot; is a castle-like religious temple in Surakhani town, a suburb in Baku, Azerbaijan. Based on Persian and Indian inions, the temple was used as a Hindu, Sikh, and Zoroastrian place of worship. It was abandoned in the late 19th century, probably due to the dwindling of the Indian population in the area. The natural eternal flame went out in 1969, after nearly a century of exploitation of petroleum and gas in the area, but is now lit by gas piped from the nearby city.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.415731,\"Long\":50.0068021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/48_1525425794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null},{\"RefSSId\":17881,\"Title\":\"Nohur Lake\",\"Description\":\"Magnetizing Lake Nohur with its beautiful view to Caucasus Mountains, fresh air and deep water is something that entices tourists from all over the world. The visitors are so much amazed by the beauty of Lake Nohur, that they revisit the country to visit this lake. The tranquil atmosphere and chirping sound of birds create an ideal relaxation ambience to escape from the busy schedule of the city. Although swimming in the lake is prohibited, but you can go for fishing. You can also choose a boat or catamaran ride and relish the surrounding scenery. As the lake is beautifully situated at the end of the roads a bit hard to pass, you can reach by car. Road to Lake Nohur is on the Baku-Gabala highway, near the village of Nohurqishlag.\",\"CurrencyType\":0,\"CityId\":35626,\"CityName\":\"Gabala\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35626\\/sightseeing\\/tNohur_Lake_35626_1604992777.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"323582\",\"Title\":\"WELCOME TO BAKU - PANORAMIC TOUR\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrival at Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Airport to Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in hotel. Free time&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Assembly at lobby. Start tour. Visit to Highland Park-Alley of Martyrs, The National Assembly- also&amp;nbsp;transliterated as Milli Majlis, Flame towers- the tallest&amp;nbsp;skyscraper in Baku.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking through Baku Boulevard which stretches along a&amp;nbsp;south-facing bay on the Caspian Sea. It traditionally starts&amp;nbsp;at Freedom Square continuing west to the Old City and&amp;nbsp;beyond. Since 2012, the Yeni Bulvar (New Boulevard) has&amp;nbsp;virtually doubled the length to 3.75 km.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Back to Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528195,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7299,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323584\",\"Title\":\"BAKU CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast in Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Our tour program starts with Old City&amp;nbsp;or&amp;nbsp;Inner City&amp;nbsp;is the historical core of&amp;nbsp;Baku, the capital of&amp;nbsp;Azerbaijan. The Old&amp;nbsp;City is the most ancient part of Baku,&amp;nbsp;which is surrounded&amp;nbsp;by walls were well protected. In 2007, the Old City had a&amp;nbsp;population of about 3000 people.&amp;nbsp;In December 2000, the&amp;nbsp;Old City of Baku, including the&amp;nbsp;Palace of the&amp;nbsp;Shirvanshahs&amp;nbsp;and&amp;nbsp;Maiden Tower, became the first&amp;nbsp;location in&amp;nbsp;Azerbaijan&amp;nbsp;to be classified as a&amp;nbsp;World Heritage&amp;nbsp;Site&amp;nbsp;by&amp;nbsp;UNESCO(walking tour)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Later group will experience the happening street of&amp;nbsp;Nizami Street known for shopping. The street&amp;#39;s history&amp;nbsp;could be traced back to Baku&amp;#39;s town-planning project of&amp;nbsp;1864. The street runs through the city&amp;#39;s downtown from&amp;nbsp;west to east. It begins from&amp;nbsp;Abdulla Shaig&amp;nbsp;Street, in&amp;nbsp;mountainous part of the city and ends at railroad bed&amp;nbsp;on&amp;nbsp;&amp;nbsp;Sabit Orujov &amp;nbsp;Street, near a monument to&amp;nbsp;Shah Ismail&amp;nbsp;Khatai&amp;nbsp;in &amp;ldquo;Black City&amp;rdquo;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour continues with the visit to the charming example of modern achticture - The Heydar Aliyev&amp;nbsp;Center &amp;ndash; a 57,500 m2 building complex in Baku, Azerbaijan&lt;br \\/&gt;\\r\\n\\tdesigned by Iraqi-British architect Zaha Hadid and noted for&amp;nbsp;its distinctive architecture and flowing, curved style that&amp;nbsp;eschews sharp angles. The center is named after Heydar&amp;nbsp;Aliyev, the first secretary of Soviet Azerbaijan from 1969 to&amp;nbsp;1982, and president of Azerbaijan Republic from October&amp;nbsp;1993 to October 2003. (Photoshoot outside)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Back to Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528195,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5717,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4861,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323586\",\"Title\":\"FLAME TOUR\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast in Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour starts with Ateshgah (Fire Worshippers Temple) Based on Persian and Indian inscriptions, the temple was used as a&amp;nbsp;Hindu&amp;nbsp;and&amp;nbsp;Zoroastrian&amp;nbsp;place of worship. &amp;ldquo;Atash&amp;raquo;&amp;nbsp;is the Persian word for fire.&amp;nbsp;The pentagonal complex , which&amp;nbsp;has a courtyard surrounded by cells for monks and a tetra&amp;nbsp;pillar-altar in the middle, was built during the 17th and 18th&amp;nbsp;centuries.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Trip to &amp;ldquo;Fire Mountain &amp;ldquo;-&amp;ldquo;Yanardag&amp;rdquo; &amp;ndash;a mountain on&amp;nbsp;Absheron peninsula , 25 km from north of Baku.Literally,&amp;nbsp;word &amp;ldquo;Yanardag&amp;rdquo; means &amp;ldquo;Blazing mountain&amp;rdquo;. Blazing&amp;nbsp;bodies of flame dance on stones and floor. Yanar dag is a&amp;nbsp;natural gas fire which blazes continuously on a hillside on&amp;nbsp;the Absheron Peninsula on the Caspian Sea near Baku, the capital of Azerbaijan, which itself is known as the &amp;ldquo;land of&amp;nbsp;fire.&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The&amp;nbsp;Bibi-Heybat Mosque&amp;nbsp;is a historical mosque in&amp;nbsp;Baku,&amp;nbsp;Azerbaijan. The existing structure, built in the&amp;nbsp;1990s, is a recreation of the mosque with the same name&amp;nbsp;built in the 13th century by&amp;nbsp;&amp;nbsp;Shirvanshah &amp;nbsp;Farrukhzad II Ibn&amp;nbsp;Ahsitan II, which was completely destroyed by&amp;nbsp;the&amp;nbsp;Bolsheviks&amp;nbsp;in 1936. The Bibi-Heybat Mosque includes&amp;nbsp;the tomb of Ukeyma Khanum (a descendant of The Islamic&amp;nbsp;Prophet&amp;nbsp;Muhammad), and today is the spiritual center for&amp;nbsp;the Muslims of the region and one of the major monuments&amp;nbsp;of&amp;nbsp;Islamic architecture&amp;nbsp;in Azerbaijan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Back to Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528195,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4859,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323588\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323593\",\"Title\":\"GABALA TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast in Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-out from Hotel in Baku. Proceed to Departure to Gabala in the north-west of Azerbaijan The distance up to Baku 225 km (3hours).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival. Check-in at Hotel in Gabala&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour In Gabala&amp;nbsp;Excursion in: Tufandaq&amp;rdquo;Winter-Summer Tourism Complex offers cable car rides at any time of the year, skiing on the&amp;nbsp;ski tracks of different difficulty level, ski training and ski&amp;nbsp;school, catering service (cafe and restaurants), entertainment&amp;nbsp;centres for kids, hotel and other services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nohur Lake -It is located in Qabala, another region of&amp;nbsp;Azerbaijan that one passes when travelling to Sheki. Lake is&amp;nbsp;not on the way but if you go a bit deeper towards the&amp;nbsp;mountains this beautiful view opens up in front of you.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35626,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17881,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323595\",\"Title\":\"GABALA\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Gabala Shooting&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;7 Gozal waterfall&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35626,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323597\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35626,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323599\",\"Title\":\"SHOPPING TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast in Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check-out from Hotel in Gabala. Check-in at Hotel in Baku.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Genclik Mall : - located in 10 minutes distance form city center with taxi. Genclik mall is the biggest Mall in Baku and&amp;nbsp;contains over 80 stores, big bowling halls, the biggest movie&amp;nbsp;halls, 3D cinema, Playground for children, Bravo&amp;nbsp;supermarket, VIP restaurants, food courts.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Back to Hotel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528195,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323601\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast in Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Departure to Airport for return flight&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44786\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32670.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":31581,\"priceDoubleOcc\":\"32670.00\",\"priceSingleOcc\":91476,\"priceExtraBed\":\"24502.50\",\"priceWithoutBed\":\"16335.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16335,\"CEB\":24502.5,\"COSTDO\":32670,\"COSTSO\":91476,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29403,\"COSTTO\":29403}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"44787\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34760.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":33601,\"priceDoubleOcc\":\"34760.00\",\"priceSingleOcc\":97328,\"priceExtraBed\":\"26070.00\",\"priceWithoutBed\":\"17380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17380,\"CEB\":26070,\"COSTDO\":34760,\"COSTSO\":97328,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":31284,\"COSTTO\":31284}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porter service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hard drinks, Lunch and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional persons joining the group at the destination or any of the services will need to pay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Peak Season Surcharges (Christmas, New Years, etc)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in&amp;nbsp;Hotel including breakfast : 4 nights in Baku + 2 nights in Gabala&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in districts (Baku, Absheron, Gabala)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English speaking guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fee : Fire Mountain, Fire Temple, Gabala Cable car (2 lines), Gabala Shooting (10 pneumatic bullets)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Bottles of water per person per day&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers according to program including airport transfers : Mercedes Sprinter&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Standard Visa&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"323582\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[323582],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323584\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[323584],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323586\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323586],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323588\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323588],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323593\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323593],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323595\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323595],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323597\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323597],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323599\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323599],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323601\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323601],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Baku,Gabala','Baku,Eurasia,Azerbaijan,Gabala',NULL,'2099,35626',32670,34760,6,NULL,NULL,NULL,2,'',0,'2023-07-31 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Azerbaijan','15','2023-07-31 17:14:31','2023-07-31 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'explore-baku',NULL,NULL,NULL,0),(268,44813,1,5293,0,0,0,'Honeymoon,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44813,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/brimming-thailand_1669814582\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Get a taste for the exotic with a travel package to Thailand. From castaway beaches to golden temples and captivating wildlife, this is one of the most diverse and culturally fascinating countries in South East Asia. Begin your trip to Thailand package in bustling&amp;nbsp;Bangkok&amp;nbsp;for local street food, temple touring, and a cruise along the Chao Phraya River. After that sense-sensation, venture to one of the islands for a blissful&amp;nbsp;Thailand beach vacation package&amp;nbsp;or go north to&amp;nbsp;Chiang Mai&amp;nbsp;and&amp;nbsp;Chiang Rai&amp;nbsp;for a slice of authentic local culture.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Krabi\",\"SourcePlaceSysId\":14466,\"AgencyName\":\"I Need Trip\",\"Name\":\"BRIMMING THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":439057,\"Name\":\"Centra By Centara Phu Pano Resort Krabi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.036393\",\"Long\":\"98.834393\",\"Address\":\"879 Moo2, Soi Ao Nang 11 158 81180 KRABI  TH, 81180\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"The 160 rooms make light, bright retreats for couples and families. Each living space is between 24 and 48 square metres, and all rooms come with an open-air balcony plus large picture windows that let the views of the swimming pool or the surrounding limestone formations become a dominant feature.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/54\\/543501\\/543501a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":523548,\"Name\":\"Ibis Styles Phuket City Talat Yai\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.8785018\",\"Long\":\"98.3943989\",\"Address\":\"23 Thawornwongwong Road Amphur Muang, ???????????? ???????????????? ?????? 83000, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":524469,\"Name\":\"FX Hotel Pattaya\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.915706\",\"Long\":\"100.8666055\",\"Address\":\"??????? 12 352\\/316 Phra Tam Nak 4 Alley, Bang Lamung District, Chon Buri\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_524469\\/5293_44ac3d301f400a278d358a67e492321d1677141543.jpg\",\"AccoAminitiesMask\":\"100100000000100000000\",\"AccoAminities\":[{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":523093,\"Name\":\"Hotel Amber Sukhumvit 85\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7024661\",\"Long\":\"100.6035262\",\"Address\":\"8 Soi Sukhumvit 85, Khwaeng Bang Chak, Khet Phra Khanong, Krung Thep Maha Nakhon 10260, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"323765\",\"Title\":\"Arrival and tranfer to Krabi\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Phuket Airport where our representative will greet you and transfer you to&amp;nbsp;Krabi. It will take around 2 hours to reach this beautiful town that lies along the coast of Southern Thailand. Proceed with the check-in formalities and enjoy the rest of the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Krabi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439057,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323766\",\"Title\":\"KRABI FOUR ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, head to Four Island Tour picked up from your hotel and transferred to the quay on the Krabi River. The first stop is Tup Island where at low tide a sandbar emerges from the clear waters linking the more oversized Chicken Island to the two smaller islands of Koh Mor and Tup, this picturesque and unique occurrence is commonly referred to as Talay Waek which means divided sea. Phra Nang Island is one of Asia&amp;#39;s most well-known beaches, renowned for its spectacular stalactites.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nChicken Island has beautiful beaches with fine white sand. You will have the opportunity to go swimming or snorkeling or just relax on the beach in the shade of the swaying palm trees and enjoy the sun. This area is a scuba diver&amp;#39;s heaven with a wide variety of multi-colored tropical fish and coral in crystal clear waters ranging from emerald to turquoise. Later after a long day back to the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay at Krabi&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439057,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":26762,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323767\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323768\",\"Title\":\"TRANSFER FROM KRABI TO PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Wake up with a delicious breakfast at the hotel and get transferred to Phuket in a private vehicle. On your way to the Phuket hotel, witness the amazing scenery this island has to offer. Reach the hotel and proceed with the check-in formalities and rest for a while. You can spend the rest of the day at leisure and enjoy exploring the city on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323769\",\"Title\":\"(PHI PHI ISLAND + KHAI ISLAND) TOUR BY SPEED BOAT + LUNCH\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, Get picked up from your hotel and head to the most popular tour experience in Phuket, the &lt;strong&gt;Phi Phi Island Tour&lt;\\/strong&gt;, The Phi Phi archipelago is a must-visit while in Phuket, and this speedboat trip whisks you around the islands in one day. Breathtaking limestone cliffs rise straight out of the emerald-green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Swim over the coral reefs of Pileh Lagoon, have lunch at Phi Phi Leh, snorkel at Bamboo Island, and visit Monkey Beach and Maya Bay, immortalized in &amp;quot;The Beach.&amp;quot; Boat transfers, snacks, buffet lunch, snorkeling equipment, and Phuket hotel pickup and drop-off are all included. Visit the islands by speedboat to relax, swim, and snorkel Sightsee Maya Bay, popularized by the famous movie, &amp;ldquo;The Beach&amp;rdquo; starring Leonardo DiCaprio See the monkeys at Monkey Beach Snorkel masks and lifejackets provided&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave, and Monkey Beach. After a long day head back to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323770\",\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Explore Phuket&amp;rsquo;s natural beauty and culture on this guided excursion. After a convenient hotel pickup, you will proceed for the &lt;strong&gt;Phuket City Tour&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Take in Phuket Island&amp;#39;s natural beauty as you are driven along beach roads through Patong, Karon and Kata. Visit the &amp;#39;Three Beaches&amp;#39; viewpoint where you can take in a great vista of the beautiful bays of Kata Noi, Kata, Karon and Kho Pu Island, at one of the island&amp;#39;s best scenic spots. This tour gives an insight into the highlights of the &amp;#39;Pearl of the Andaman&amp;#39;. It also includes a leisurely drive around Phuket&amp;#39;s west coastline from Patong beach till the end of the island. Other attractions visited are the Gems factory, Wat Chalong, a Cashew Nut Factory, the Sunset viewpoint at Phromthep Cape\\/Windmill Point and other local products place.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523548,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323771\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323772\",\"Title\":\"ARRIVAL BANGKOK AND TRANSFER TO PATTAYA FOLLOWED BY ALCAZAR SHOW\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;A warm welcome awaits you as you land at Bangkok&amp;#39;s Suvarnabhumi International Airport. From here, the agent&amp;rsquo;s representative will receive and escort you to the Pattaya hotel. The road journey along the coast offers some splendid views in itself. Once you reach, check in to the hotel and relax.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later in the evening, attend the popular &lt;strong&gt;Alcazar Show&lt;\\/strong&gt; which takes you through the rich history, culture, and traditions of Thailand. After an exciting day, get back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Pattaya Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524469,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323773\",\"Title\":\"CORAL ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Your tour will begin early in the morning after a delicious breakfast at the hotel. You will be driven to Pattaya Beach.&amp;nbsp;You will reach the spot to board a speedboat to marine sports pier. This will be followed by one of the most anticipated things to do in Pattaya, adventure activities (optional purchase) that include water sports i.e. parasailing, undersea walking, jet ski, and banana boat ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After arriving at Coral Island, you can spend some time at leisure under the warm tropical sun. If swimming is your thing take a dip into the water and relax. By 12:00 PM proceed back to the Pattaya beach on a speedboat and enjoy a scrumptious lunch at a restaurant.&lt;br \\/&gt;\\r\\nYou will be taken back to the hotel by mid-afternoon after which you can spend the evening at your own leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524469,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323774\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323775\",\"Title\":\"ENROUTE TO BANGKOK ALONG WITH CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast at the Pattaya hotel, check-out from the hotel as you will be transferred to Bangkok. The representative will pick you up from the hotel and take you to explore this beautiful city by private transport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Capture the beautiful sight of the Grand Palace, adorned with beautiful architecture and intricate details and get to know why even after 150 years, the monument is the spiritual heart of the Thai kingdom.&amp;nbsp;You can also visit Wat Phra Kaew or the Temple of Emerald Buddha, located within the grounds of the Grand Palace and enshrines the Emerald Buddha image carefully carved from a single block of jade.&amp;nbsp;Make your way towards Kuan Yim Shrine (Thian Fa Foundation), and experience a peaceful time while praying to the goddess of mercy (basically in Mahayana Buddhism) and see the beauty of the colourful shrine which is about 900 years old. Visit Wat Benchamabopit or Marble Temple, one of the most modern works of Thai religious architecture. Continue the tour by passing through the beautiful city scenery of the colourful floating market and Chinatown. The bustling business area of Chinatown is especially known for its gold jewellery shops where the atmosphere is totally changed at night - hordes of food stalls line the streets.&amp;nbsp;Taste the flavours of delicious Thai Cuisines, stroll around the streets and collect souvenirs for your loved ones.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323776\",\"Title\":\"DAY AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Your tour will begin early in the morning after a delicious breakfast at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Today your day is free to roam around the city on your own. Take as much as you need at breakfast this morning. You can explore your neighborhood the whole day and savor some freshly prepared cuisine at neighboring restaurants. After that, return back to the hotel and unwind. Overnight stay at Bangkok Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323777\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, Check out from the Hotel and will escort you to the Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"44813\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":123200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;National Park Fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary with Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Krabi 4 Island by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phuket Half Day City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phi Phi Island + Khai Island + Maya Bay in Phuket&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coral Island Tour by Speedboat with Indian Lunch in Pattaya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Alcazar Show in Pattaya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bangkok City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"323765\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[323765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323766\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[323766],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323767\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323767],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323768\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323768],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323769\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323769],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323770\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323770],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323771\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323771],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323772\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323772],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"323773\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323773],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323774\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[323774],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323775\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[323775],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323776\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[323776],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323777\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[323777],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Krabi,Phuket,Pattaya,Bangkok','Krabi,South East Asia,Thailand,Phuket,Pattaya,Bangkok',NULL,'14466,21319,20925,2266',44000,44000,9,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 11:59:59','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'brimming-thailand',NULL,NULL,NULL,0),(270,45612,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":45612,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/amazing-bali_1671446871\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:center&quot;&gt;On the earth especially, there is no location like Bali. A wonderful fusion of people, culture, nature, activities, weather, gastronomic pleasures, nightlife, and lovely lodging. Bali is famed for its captivating arts, which include ancient and modern dance forms, magnificent sculptures, flamboyant paintings, superb leather, gorgeous metallurgy, and amazing music. Bali is blessed with a wealth of natural resources. It has a few lesser-known yet spectacular islands, like the adventurous Nusa Penida, Nusa Lembongan, and Nusa Ceningan.In temples like Uluwatu Temple and Ulun Danu Beratan Temple, you can find tranquility. Mountains like Mount Agung guarantee a strenuous walk and an amazing sunrise. Tegalalang&amp;#39;s rice terraces provide the ideal picturesque scenery for you to take in. There is a good reason why Bali is one of the most well-known islands. It is a center for water activities because it is surrounded by oceans and beaches.&amp;nbsp; Bali Museums won&amp;#39;t fail to surprise you and make you fall in love with the nation because they display the country&amp;#39;s true character. You shouldn&amp;#39;t miss the authentic cuisines Bali has to offer you because Balinese food is unique.&amp;nbsp;Bali is also renowned throughout the world for its kind hospitality.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Kuta\",\"DestinationPlacesSysId\":14633,\"SourcePlaces\":\"Kuta\",\"SourcePlaceSysId\":14633,\"AgencyName\":\"I Need Trip\",\"Name\":\"Amazing Bali\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-01-20\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14633,\"Title\":\"Kuta\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":115919,\"Name\":\"Kuta Central Park Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.7107969361235\",\"Long\":\"115.17900502447\",\"Address\":\"Jl. Patih Jelantik Kuta 80361\"},\"Images\":{\"Image\":[{\"ImagId\":2526975,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_39_t.jpg\"},{\"ImagId\":2526976,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_42_t.jpg\"},{\"ImagId\":2526977,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_38_t.jpg\"},{\"ImagId\":2526978,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_46_t.jpg\"},{\"ImagId\":2526979,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_51_t.jpg\"},{\"ImagId\":2526980,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_54_t.jpg\"},{\"ImagId\":2526981,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_53_t.jpg\"},{\"ImagId\":2526982,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/118a56e8_t.jpg\"},{\"ImagId\":2526983,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1449c1ea_t.jpg\"},{\"ImagId\":2526984,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4b112694_t.jpg\"},{\"ImagId\":2526985,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/a12c9228_t.jpg\"},{\"ImagId\":2526986,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/bc9228f2_t.jpg\"},{\"ImagId\":2526987,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/22cfb74a_t.jpg\"},{\"ImagId\":2526988,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/f645a976_t.jpg\"},{\"ImagId\":2526989,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1779a74f_t.jpg\"},{\"ImagId\":2526990,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1998e07d_t.jpg\"},{\"ImagId\":2526991,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/21772106_t.jpg\"},{\"ImagId\":2526992,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/87acb787_t.jpg\"},{\"ImagId\":2526993,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/936a32d5_t.jpg\"},{\"ImagId\":2526994,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/d2e4cf7c_t.jpg\"},{\"ImagId\":2526995,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/6f578e0d_t.jpg\"},{\"ImagId\":2526996,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/7bf55ca2_t.jpg\"},{\"ImagId\":2526997,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/8edec481_t.jpg\"},{\"ImagId\":2526998,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/0b2e91ff_t.JPG\"},{\"ImagId\":2526999,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/375e87cb_t.JPG\"},{\"ImagId\":2527000,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/57199ad0_t.JPG\"},{\"ImagId\":2527001,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/01da3d2a_t.jpg\"},{\"ImagId\":2527002,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/b783ce17_t.jpg\"},{\"ImagId\":2527003,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/22a56433_t.jpg\"},{\"ImagId\":2527004,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/c517b08d_t.jpg\"},{\"ImagId\":2527005,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/acdde14d_t.jpg\"},{\"ImagId\":2527006,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/bf2ebdd8_t.jpg\"},{\"ImagId\":2527007,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_66_t.jpg\"},{\"ImagId\":2527008,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_77_t.jpg\"},{\"ImagId\":2527009,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_71_t.jpg\"},{\"ImagId\":2527010,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_79_t.jpg\"},{\"ImagId\":2527011,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_80_t.jpg\"},{\"ImagId\":2527012,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_73_t.jpg\"},{\"ImagId\":2527013,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_75_t.jpg\"},{\"ImagId\":2527014,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_78_t.jpg\"},{\"ImagId\":2527015,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_81_t.jpg\"},{\"ImagId\":2527016,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_82_t.jpg\"},{\"ImagId\":2527017,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_84_t.jpg\"},{\"ImagId\":2527018,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_83_t.jpg\"},{\"ImagId\":2527019,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_85_t.jpg\"},{\"ImagId\":2527020,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_86_t.jpg\"},{\"ImagId\":2527021,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_87_t.jpg\"},{\"ImagId\":2527022,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_52_t.jpg\"},{\"ImagId\":2527023,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_55_t.jpg\"},{\"ImagId\":2527024,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_56_t.jpg\"},{\"ImagId\":2527025,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_59_t.jpg\"},{\"ImagId\":2527026,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_63_t.jpg\"},{\"ImagId\":2527027,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_62_t.jpg\"},{\"ImagId\":2527028,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_70_t.jpg\"},{\"ImagId\":2527029,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_61_t.jpg\"},{\"ImagId\":2527030,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_65_t.jpg\"},{\"ImagId\":2527031,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_68_t.jpg\"},{\"ImagId\":2527032,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_60_t.jpg\"},{\"ImagId\":2527033,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_67_t.jpg\"},{\"ImagId\":2527034,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_69_t.jpg\"},{\"ImagId\":2527035,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_64_t.jpg\"},{\"ImagId\":2527036,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_88_t.jpg\"},{\"ImagId\":2527037,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_89_t.jpg\"},{\"ImagId\":2527038,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_90_t.jpg\"},{\"ImagId\":2527039,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_91_t.jpg\"},{\"ImagId\":2527040,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_92_t.jpg\"},{\"ImagId\":2527041,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_93_t.jpg\"},{\"ImagId\":2527042,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_94_t.jpg\"},{\"ImagId\":2527043,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_97_t.jpg\"},{\"ImagId\":2527044,\"Type\":\"Thumbnail\",\"Order\":70,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_95_t.jpg\"},{\"ImagId\":2527045,\"Type\":\"Thumbnail\",\"Order\":71,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_96_t.jpg\"},{\"ImagId\":2527046,\"Type\":\"Thumbnail\",\"Order\":72,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/010a5bdc_t.jpg\"},{\"ImagId\":2527047,\"Type\":\"Thumbnail\",\"Order\":73,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/8884af40_t.jpg\"},{\"ImagId\":2527048,\"Type\":\"Thumbnail\",\"Order\":74,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/db4f0218_t.jpg\"},{\"ImagId\":2527049,\"Type\":\"Thumbnail\",\"Order\":75,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/fba92c62_t.jpg\"},{\"ImagId\":2527050,\"Type\":\"Thumbnail\",\"Order\":76,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_12_t.jpg\"},{\"ImagId\":2527051,\"Type\":\"Thumbnail\",\"Order\":77,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_17_t.jpg\"},{\"ImagId\":2527052,\"Type\":\"Thumbnail\",\"Order\":78,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_18_t.jpg\"},{\"ImagId\":2527053,\"Type\":\"Thumbnail\",\"Order\":79,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_20_t.jpg\"},{\"ImagId\":2527054,\"Type\":\"Thumbnail\",\"Order\":80,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_27_t.jpg\"},{\"ImagId\":2527055,\"Type\":\"Thumbnail\",\"Order\":81,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_30_t.jpg\"},{\"ImagId\":2527056,\"Type\":\"Thumbnail\",\"Order\":82,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_31_t.jpg\"},{\"ImagId\":2527057,\"Type\":\"Thumbnail\",\"Order\":83,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_32_t.jpg\"},{\"ImagId\":2527058,\"Type\":\"Thumbnail\",\"Order\":84,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_41_t.jpg\"}]},\"CityId\":14633,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Kuta Central Park Hotel in Kuta, you&amp;apos;ll be connected to the airport and convenient to Mall Bali Galeria and Kuta Beach.  This 4-star hotel is within close proximity of Kuta Square and Legian Beach.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 225 air-conditioned rooms featuring refrigerators and LED televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool, a sauna, and a fitness center. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can catch a ride to the beach or shopping on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Kuta? This hotel has 1291 square feet (120 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge during limited hours, and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_39_t.jpg\",\"AccoAminitiesMask\":\"111100001000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"329329\",\"Title\":\"Arrival in Bali \",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329330\",\"Title\":\"Kintamani &amp; Ubud Full Day Tour\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full-day tour of Kintamani and Ubud. The perfect introduction to Bali&amp;#39;s fascinating culture and handicrafts, a fascinating insight into Bali&amp;rsquo;s artistic heritage at Ubud, the beautiful natural landscape, and the breathtaking view of an active volcano.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAll the guests visiting Monkey Forests are hereby advised to take due care they should avoid feeding monkeys or tempting them by carrying any bags etc. that give an impression of food being in the bag. The monkeys can bite if due care is not taken. if any such action takes place, it will be at your own risk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2912,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329331\",\"Title\":\"Full Day Water Sports followed by Uluwatu Temple Tour\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for Water Sports Activities. One Round of Banana Boat, Single Parasailing, and Jet Ski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329332\",\"Title\":\"Full Day Bedugul Temple tour Followed by Tanah Lot Temple tour\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast at the hotel, get ready to explore the Ulun Danu Beratan temple. It is a famous picturesque landmark and a significant temple complex located on the western side of Beratan Lake in Bedugul, central Bali. Ulun Danu literally &amp;#39;the source temple of Lake Beratan&amp;#39;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next visit will be followed by a dramatic Tanah Lot Temple one of the splendid tenples in Bali. Perching a top an enormous rock, its completely surrounded by the waters of the Indian Ocean during high tide, don&amp;#39;t miss this opportunity to watch the sunset&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3090,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329333\",\"Title\":\"Departure\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;Wake up to a beautiful tropical morning and have a delicious breakfast. pack your bags and complete the check-out formalities at the hotel. your amazing Bali tour concludes once you get dropped at the Denpasar Airport for your onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45612\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14427.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650},{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650},{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650},{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650},{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650},{\"From\":\"2022-12-19\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13835,\"priceDoubleOcc\":\"14427.90\",\"priceSingleOcc\":27077.9,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14427.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":12075,\"COSTDO\":14427.9,\"COSTSO\":27077.9,\"CostQuad\":null,\"ACEB\":12650,\"COSTTO\":12650}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As on upload date USD@82&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA - On Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any taxes if not mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfer on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Kintamani tour with Ubud Village on Pvt Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Water Sports Including 1x Banana, 1x Parasailing &amp;amp; 1x Jet Ski Followed by Uluwatu Temple tour on Pvt Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Bedugul Temple tour Followed by Tanah Lot Temple tour on Pvt Basis&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"329329\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[329329],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329330\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[329330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All Tours and Sightseeing on a Private Basis&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329331\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[329331],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All Tours and Sightseeing on a Private Basis&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329332\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[329332],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All Tours and Sightseeing on a Private Basis&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329333\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[329333],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Kuta','Kuta,South East Asia,Indonesia,Orient,Bali',NULL,'14633',14428,14428,4,NULL,NULL,NULL,2,'',0,'2023-01-20 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Indonesia','102','2023-07-20 15:53:19','2023-01-20 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'amazing-bali',NULL,NULL,NULL,0),(271,45856,1,5293,1,0,0,'Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":45856,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/essence-of-andamans_1691407658\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENCE OF ANDAMANS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595368,\"Name\":\"M K Residency\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2997,\"Title\":\"Bharatpur Beach\",\"Description\":\"Bharatpur Beach is one of the finest and most spectacular beaches of Neil Island, attracts a lot of tourists year-round. The presence of colourful coral reefs makes this seafront popular, which fascinate visitors. These reefs are inhabited by a variety of aquatic creatures that can be seen by taking a ride in a glass bottom boat or by swimming. It is a paradise for photographers owing to its stunning coral reefs and rich marine life. Other water activities are Snorkeling, Jet Ski Ride and Scuba diving.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Bharatpur_Beach_32511_1520496644.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595370,\"Name\":\"Radhakrishna Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2997,\"Title\":\"Bharatpur Beach\",\"Description\":\"Bharatpur Beach is one of the finest and most spectacular beaches of Neil Island, attracts a lot of tourists year-round. The presence of colourful coral reefs makes this seafront popular, which fascinate visitors. These reefs are inhabited by a variety of aquatic creatures that can be seen by taking a ride in a glass bottom boat or by swimming. It is a paradise for photographers owing to its stunning coral reefs and rich marine life. Other water activities are Snorkeling, Jet Ski Ride and Scuba diving.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Bharatpur_Beach_32511_1520496644.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595374,\"Name\":\"Neha Palace Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18886,\"Title\":\"NATURAL BRIDGE\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2997,\"Title\":\"Bharatpur Beach\",\"Description\":\"Bharatpur Beach is one of the finest and most spectacular beaches of Neil Island, attracts a lot of tourists year-round. The presence of colourful coral reefs makes this seafront popular, which fascinate visitors. These reefs are inhabited by a variety of aquatic creatures that can be seen by taking a ride in a glass bottom boat or by swimming. It is a paradise for photographers owing to its stunning coral reefs and rich marine life. Other water activities are Snorkeling, Jet Ski Ride and Scuba diving.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Bharatpur_Beach_32511_1520496644.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"330982\",\"Title\":\"Port Blair- Cellular Jail - Light &amp; Sound Show\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet-Greet with our airport representative and Transfer to your booked hotel\\/ resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening, visit to historic Cellular Jail followed by Light &amp;amp; Sound Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Please note, we will drop guest at parking area near jail and guest must walk around 200 metre and return after completion of L&amp;amp;S show.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guest must come out after visiting jail and re-enter for L&amp;amp;S show, Guests can walk around the bay side in free time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;L&amp;amp;S show timing is in between 1800 Hrs- 1900hrs subject to availability&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The free time between jail visit &amp;amp; L&amp;amp;S show can be utilised in self-exploration of illuminated&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Park and Sea shore area, evenings are pleasant and happening here.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595368,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2294,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330984\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330986\",\"Title\":\"Port Blair- Havelock- Radha Nagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pick up from hotel to Port Blair Jetty for your onward journey to Havelock&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If you have morning ferry, ask hotel to provide Packed breakfast (Subject to hotel policy)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet- Greet by our local representative and transfer to your booked hotel\\/ Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon, Visit to Blue Flag certified &amp;ldquo;Radha Nagar Beach&amp;rdquo; for swim and relaxation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Do not forget to carry changing cloths and towel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It&amp;rsquo;s not permitted to board vehicle with wet clothes, please cooperate.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Make your own choice.... You can opt for Scuba Diving\\/ Kayaking\\/ Candid Photography at&amp;nbsp;additional cost, booking in advance is recommended though our local representative also can assist you.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330988\",\"Title\":\" Havelock - Elephanta beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Morning, Breakfast and proceed for &amp;ldquo;Elephenta Beach&amp;rdquo; also known as Coral Beach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephenta beach is popular for Snorkelling and other water-based activities such as Jet Ski ride, Banana Ride, Sea Walk.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Usually boat operators provide a 5-minute snorkelling experience complimentary, however the same cannot be guaranteed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You reach Elephenta beach via small 11 pax capacity sharing basis boat board at jetty&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You will be allotted a time for boat a day before and you need to get ready accordingly&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Do not forget to carry a water bottle, snacks and changing cloths.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Important: In case Elephenta Beach is not operational due to weather conditions OR Covid reasons, we will provide a trip to &amp;ldquo;Kala Patthar Beach&amp;rdquo;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595370,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330990\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330992\",\"Title\":\"Havelock - Neil Island - Laxmanpura Beach, Bharatpura Beach &amp; Natural Bridge  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Morning, Breakfast &amp;amp; proceed to jetty for onward journey to Neil Island&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet- Greet by our local representative and transfer to your booked hotel\\/ Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon, proceed to visit the following places:&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Bharatpura Beach:&lt;\\/span&gt;&lt;\\/strong&gt;&amp;nbsp;The white sand and shallow water beach is popular for swim, relaxation, and water activities such as Snorkelling, Boat diving and boat tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Laxmanpura beach:&lt;\\/span&gt;&lt;\\/strong&gt;&amp;nbsp;The white sand Coral Beach offers stunning sunset view&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:#002060&quot;&gt;Natural Bridge:&lt;\\/span&gt;&lt;\\/strong&gt;&amp;nbsp;Also known as Howrah Bridge the bridge has naturally formed by corals, its best seen during the low tide (**Subject to weather conditions).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing will be based on tide and local representative will brief the final schedule&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595374,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18886,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2997,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330994\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330996\",\"Title\":\"Neil Island - Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast, check out and proceed for jetty and onward journey to Port Blair&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival in Port Blair, Transfer to your booked hotel, Day free for shopping\\/ leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Other places like Corbin&amp;rsquo;s Cove Beach\\/ Chidiya Tapu\\/ Wandoor Beach\\/ Museums &amp;amp; Parks can be&amp;nbsp;covered at additional cost subject to time and availability&amp;nbsp;&lt;strong&gt;(Optional)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595368,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"330998\",\"Title\":\"Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast, Transfer to airport, Tour Ends.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Port Blair airport is small with heavy traffic, we recommend you reach airport at least 2 hrs prior to your flight timing.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45856\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20966.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"14146.00\",\"priceDoubleOcc\":\"20966.00\",\"priceSingleOcc\":62898,\"priceExtraBed\":\"14146.00\",\"priceWithoutBed\":\"12386.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":12386,\"CEB\":14146,\"COSTDO\":20966,\"COSTSO\":62898,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14146,\"COSTTO\":14146}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"330982\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[330982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330984\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[330984],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330986\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[330986],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330988\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[330988],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330990\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[330990],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330992\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[330992],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330994\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[330994],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330996\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[330996],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"330998\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[330998],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island','','32511,11658,34567',20966,20966,5,'',NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'India','101','2024-01-16 13:03:16','2024-01-16 00:00:00',1,1,'1','1','0','','','',NULL,'essence-of-andamans',NULL,NULL,NULL,0),(272,45863,1,5293,0,0,0,'Honeymoon,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":45863,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/andaman-best-seller_1691393563\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANDAMAN BEST SELLER\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":520946,\"Name\":\"HOTEL RED CARPET\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6199374\",\"Long\":\"92.71223599999999\",\"Address\":\"ATR ROAD, near MOHAN FORD, Housing Colony, Garacharama, Port Blair, Andaman and Nicobar Islands 744105, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":531222,\"Name\":\"SeaScape Port Blair\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6538614\",\"Long\":\"92.74486399999999\",\"Address\":\"120, Nayagaon, Doodhline, opposite Maruti Service Station, Shadipur, Port Blair, Andaman and Nicobar Islands 744106, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":368503,\"Name\":\"SR Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.63474\",\"Long\":\"92.71708\",\"Address\":\"Dollyjung, opp. Govt. Polytechnic DBRA IT, near SBI\\nSouth Andaman,Andaman and Nicobar Islands,India, 744103\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/2048\\/2048936\\/images\\/super_deluxe_(2)_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477716,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475410,\"Name\":\"Radhakrishna Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0352575\",\"Long\":\"92.9878353\",\"Address\":\"Govindnagar, Havelock Island, Andaman, 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484569,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0289344\",\"Long\":\"93.0016957\",\"Address\":\"No. 5, Govind Nagar Beach Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":520947,\"Name\":\"N K ECO RESORT\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0390479\",\"Long\":\"92.98331499999999\",\"Address\":\"N. K eco resort havelock govind nagar Govind nagar havelock, Port blair havelock, near by jetty, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331035\",\"Title\":\"Port Blair- Cellular Jail - Light &amp; Sound Show\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet-Greet with our airport representative and Transfer to your booked hotel\\/ resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening, visit to historic Cellular Jail followed by Light &amp;amp; Sound Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Please note, we will drop guest at parking area near jail and guest must walk around 200 metre and return after completion of L&amp;amp;S show.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guest must come out after visiting jail and re-enter for L&amp;amp;S show, Guests can walk around the bay side in free time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;L&amp;amp;S show timing is in between 1800 Hrs- 1900hrs subject to availability&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The free time between jail visit &amp;amp; L&amp;amp;S show can be utilised in self-exploration of illuminated&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Park and Sea shore area, evenings are pleasant and happening here.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520946,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531222,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":368503,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2294,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331038\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331071\",\"Title\":\"Port Blair- Havelock- Radha Nagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pick up from hotel to Port Blair Jetty for your onward journey to Havelock&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If you have morning ferry, ask hotel to provide Packed breakfast (Subject to hotel policy)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival, Meet- Greet by our local representative and transfer to your booked hotel\\/ Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon, Visit to Blue Flag certified &amp;ldquo;Radha Nagar Beach&amp;rdquo; for swim and relaxation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Do not forget to carry changing cloths and towel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It&amp;rsquo;s not permitted to board vehicle with wet clothes, please cooperate.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;&lt;strong&gt;Make your own choice.... You can opt for Scuba Diving\\/ Kayaking\\/ Candid Photography at&amp;nbsp;additional cost, booking in advance is recommended though our local representative also can assist you.&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475410,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":520947,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331074\",\"Title\":\"Havelock - Elephenta Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;? Morning, Breakfast and proceed for &amp;ldquo;Elephenta Beach&amp;rdquo; also known as Coral Beach.&lt;br \\/&gt;\\r\\n? Elephenta beach is popular for Snorkelling and other water-based activities such as Jet Ski ride, Banana Ride, Sea Walk.&lt;br \\/&gt;\\r\\n? Usually boat operators provide a 5-minute snorkelling experience complimentary, however the same cannot be guaranteed&lt;br \\/&gt;\\r\\n? You reach Elephenta beach via small 11 pax capacity sharing basis boat board at jetty&lt;br \\/&gt;\\r\\n? You will be allotted a time for boat a day before and you need to get ready accordingly&lt;br \\/&gt;\\r\\n? Do not forget to carry a water bottle, snacks and changing cloths.&lt;br \\/&gt;\\r\\n? Important: In case Elephenta Beach is not operational due to weather conditions OR COVID-19 reasons, we will provide a trip to &amp;ldquo;Kala Patthar Beach&amp;rdquo;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475410,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":520947,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331077\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331080\",\"Title\":\"Havelock &ndash; Port Blair- Day at leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;? Breakfast, check out and proceed for jetty and onward journey to Port Blair&lt;br \\/&gt;\\r\\n? Arrival in Port Blair, Transfer to your booked hotel, Day free for shopping\\/ leisure.&lt;br \\/&gt;\\r\\n? Other places like Corbin&amp;rsquo;s Cove Beach\\/ Chidiya Tapu\\/ Wandoor Beach\\/ Museums &amp;amp; Parks can be covered at additional cost subject to time and availability (Optional)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520946,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531222,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331083\",\"Title\":\"\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;? Morning Breakfast, Pickup to water sports complex and board the speed boat&lt;br \\/&gt;\\r\\n? The historic Ross Island will take you through the era of Japanese and British period&lt;br \\/&gt;\\r\\n? An entry amount of Rs. 50 for adult and Rs. 25 for child is directly payable at the Island&lt;br \\/&gt;\\r\\n? North Bay Island is also known as Coral Beach is popular for water-based adventure activities such as Scuba Diving, Snorkelling, Para Sailings, Dolphin Glass Bottom Boat ride, Coral Safari-Semi submarine etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? In case &amp;ldquo;Ross &amp;amp; North&amp;rdquo; not operational due to bad weather conditions or Covid-19 reason, we shall arrange alternative sightseeing, or we will process applicable refund amount&lt;br \\/&gt;\\r\\n? Evening, you can (Optional- Direct Payment basis) plan Corbin&amp;rsquo;s Cove Beach, you can experience enthralling Sea Kart boat ride first time in India.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520946,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531222,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477716,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2278,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331086\",\"Title\":\"Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Breakfast, Transfer to airport, Tour Ends.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Port Blair airport is small with heavy traffic, we recommend you reach airport at least 2 hrs prior to your flight timing.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"45863\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20570.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19884,\"priceDoubleOcc\":\"20570.00\",\"priceSingleOcc\":61710,\"priceExtraBed\":\"15427.50\",\"priceWithoutBed\":\"10285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10285,\"CEB\":15427.5,\"COSTDO\":20570,\"COSTSO\":61710,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18513,\"COSTTO\":18513}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45864\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23430.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":22649,\"priceDoubleOcc\":\"23430.00\",\"priceSingleOcc\":70290,\"priceExtraBed\":\"17572.50\",\"priceWithoutBed\":\"11715.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23430,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11715,\"CEB\":17572.5,\"COSTDO\":23430,\"COSTSO\":70290,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21087,\"COSTTO\":21087}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45865\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27610.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":26690,\"priceDoubleOcc\":\"27610.00\",\"priceSingleOcc\":82830,\"priceExtraBed\":\"20707.50\",\"priceWithoutBed\":\"13805.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13805,\"CEB\":20707.5,\"COSTDO\":27610,\"COSTSO\":82830,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24849,\"COSTTO\":24849}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ jetty Transfers in AC vehicle as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"331035\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331035],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331038\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331038],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331071\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331071],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331074\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331074],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331077\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331077],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331080\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331080],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331083\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331083],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331086\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[331086],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island',NULL,'32511,11658',20570,27610,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:56:12','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'andaman-best-seller',NULL,NULL,NULL,0),(273,45887,1,5293,0,0,0,'Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":45887,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/serene-kerala_1691403411\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Heaven on earth isn&amp;rsquo;t a dream, it&amp;rsquo;s a destination. Kerala tour is so easily and affordably accessible, you don&amp;rsquo;t even have to leave the country.&amp;nbsp; All you have to do is book a Kerala tour packages and hop on to the next flight, train or bus and make your way to the spectacular last stretch of the West Coast of India, to Kerala. Kerala holidays are popular around the world. A mesmerizing Kerala tour where the sublime beaches, cultural richness, historical depth, exotic wildlife, and beautiful mountainsides promise and our Kerala packages always deliver you an unforgettable getaway. So, are you ready to have yours?&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Kochi\",\"DestinationPlacesSysId\":14275,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"I Need Trip\",\"Name\":\"Serene Kerala\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13418\",\"SupplierName\":\"Travelust India\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":141629,\"Name\":\"Misty Lake Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Sengulam Anachal\"},\"Images\":{\"Image\":[{\"ImagId\":3117300,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_3_t.jpg\"},{\"ImagId\":3117301,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_4_t.jpg\"},{\"ImagId\":3117302,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_29_t.jpg\"},{\"ImagId\":3117303,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_30_t.jpg\"},{\"ImagId\":3117304,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_28_t.jpg\"},{\"ImagId\":3117305,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_23_t.jpg\"},{\"ImagId\":3117306,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_22_t.jpg\"},{\"ImagId\":3117307,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_21_t.jpg\"},{\"ImagId\":3117308,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_27_t.jpg\"},{\"ImagId\":3117309,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_26_t.jpg\"},{\"ImagId\":3117310,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_25_t.jpg\"},{\"ImagId\":3117311,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_20_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Misty Lake Resort is convenient to Attukad Waterfall and Dreamland Children Park.  This hotel is within the vicinity of Mount Carmel Church and Carmal Church.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Stay in one of 17 guestrooms featuring LCD televisions. Prepare your meals in the shared\\/communal kitchen. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take in the views from a garden and make use of amenities such as complimentary wireless Internet access and concierge services.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and a 24-hour front desk. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/11000000\\/11000000\\/10999300\\/10999240\\/10999240_3_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531306,\"Name\":\"The Leaf Munnar Resort\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0094446\",\"Long\":\"77.0407999\",\"Address\":\"Chithirapuram PO, Anachal - Aamakandam, Munnar, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":475287,\"Name\":\"Amber Dale Luxury Hotel and Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0516961\",\"Long\":\"77.04608549999999\",\"Address\":\"KSEB Tunnel Road, Pallivasal, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":50,\"Title\":\"Anamudi Peak\",\"Description\":\"Anamudi is a mountain located in the Indian state of Kerala. It is the highest peak in the Western Ghats and South India, at an elevation of 2,695 metres (8,842 ft),and a topographic prominence of 2,479 metres (8,133 ft).The name Anamudi literally translates to &amp;quot;elephant&amp;#039;s forehead,&amp;quot; a reference to the resemblance of the mountain to an elephant&amp;#039;s head.\\r\\nThe first recorded ascent of Anamudi was by General Douglas Hamilton of the Madras Army on May 4, 1862, but it is likely that there had been earlier ascents by local people.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520853253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":769,\"Title\":\"Jewish Synagogue\",\"Description\":\"Jewish Synagogue, Fort Kochi the place not far away from the city of Kochi can ideally be termed as a cultural melting pot of Kerala. This small geographical entity is perhaps unique in the world due to its cultural representations. Be it for people from other parts of India or those from far off lands like those in the Middle-East and Europe, Fort Kochi at various stages of time in the past welcomed them all to settle down and lead a life in harmony with the native folks. \\r\\n\\r\\nVisitors to Fort Kochi would invariably be treated to many a cultural representation. They all have left their marks in the form of traders, asylum seekers, rulers and those who came to spread their religious faiths. What we are going to unravel is a landmark in a place called Mattancherry in Fort Kochi a monumental one that rose from the cultural traits and religious beliefs of a community that came to Kochi seeking asylum. The Jews of Fort Kochi, who fled their homeland - Israel during the Diaspora embraced Fort Kochi as their second home.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9568914,\"Long\":76.2597473,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633568.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1532,\"Title\":\"Santa Cruz Basilica\",\"Description\":\"The Santa Cruz Cathedral Basilica at Fort Kochi is one of the eight Basilicas in Kerala. Counted as one of the heritage edifices of Kerala, this church is one of the finest and most impressive churches in India and visited by tourists the whole year round. It is a place of devotion as well as a center of historic significance, endowed with architectural and artistic grandeur and colours of the gothic style.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9690017,\"Long\":76.2518786,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/242\\/thumb\\/Santa Cruz Basilica_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":419339,\"Name\":\"Peppervine\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.60571\",\"Long\":\"77.1646\",\"Address\":\"Thamarakkandom Road, Kumily Post Office, Thekkady 685509\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Peppervine Hotel is set in the beautiful Thekkadi. Free WiFi is offered throughout the property and free private parking is available on site.\\\\nThe rooms are fitted with a flat-screen satellite TV with satellite channels and a seating area where you can relax. You will find a kettle in the room. Every room includes a private bathroom.\\\\nYou will find a 24-hour front desk, a lush green garden and a terrace at the property. The resort also offers car hire. Services like laundry and dry cleaning are provided.\\\\nThe Periyar Lake is 10 km and the Periyar National Park is 15 km. The KSRTC Bus Station is 1.4 km while the Kumily Bus Station is 800 m. The Kottayam Railway Station is 108 km and the Cochin International Airport is 145 km.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/dd\\/8e\\/dd8e2380dc9c1c29087761c4f0af960765a25419.jpg\",\"AccoAminitiesMask\":\"1110010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":508458,\"Name\":\"The Elephant Court\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.603478100000002\",\"Long\":\"77.171933\",\"Address\":\"Thamarakandam Rd, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_508458\\/5293_9ba75b7f913539fbad8be4c86b14bc791652963393.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531307,\"Name\":\"Merryweather Resort Thekkady\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6301797\",\"Long\":\"77.1615613\",\"Address\":\"2nd Mile, Amaravathy, PO, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":50,\"Title\":\"Anamudi Peak\",\"Description\":\"Anamudi is a mountain located in the Indian state of Kerala. It is the highest peak in the Western Ghats and South India, at an elevation of 2,695 metres (8,842 ft),and a topographic prominence of 2,479 metres (8,133 ft).The name Anamudi literally translates to &amp;quot;elephant&amp;#039;s forehead,&amp;quot; a reference to the resemblance of the mountain to an elephant&amp;#039;s head.\\r\\nThe first recorded ascent of Anamudi was by General Douglas Hamilton of the Madras Army on May 4, 1862, but it is likely that there had been earlier ascents by local people.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520853253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":769,\"Title\":\"Jewish Synagogue\",\"Description\":\"Jewish Synagogue, Fort Kochi the place not far away from the city of Kochi can ideally be termed as a cultural melting pot of Kerala. This small geographical entity is perhaps unique in the world due to its cultural representations. Be it for people from other parts of India or those from far off lands like those in the Middle-East and Europe, Fort Kochi at various stages of time in the past welcomed them all to settle down and lead a life in harmony with the native folks. \\r\\n\\r\\nVisitors to Fort Kochi would invariably be treated to many a cultural representation. They all have left their marks in the form of traders, asylum seekers, rulers and those who came to spread their religious faiths. What we are going to unravel is a landmark in a place called Mattancherry in Fort Kochi a monumental one that rose from the cultural traits and religious beliefs of a community that came to Kochi seeking asylum. The Jews of Fort Kochi, who fled their homeland - Israel during the Diaspora embraced Fort Kochi as their second home.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9568914,\"Long\":76.2597473,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633568.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1532,\"Title\":\"Santa Cruz Basilica\",\"Description\":\"The Santa Cruz Cathedral Basilica at Fort Kochi is one of the eight Basilicas in Kerala. Counted as one of the heritage edifices of Kerala, this church is one of the finest and most impressive churches in India and visited by tourists the whole year round. It is a place of devotion as well as a center of historic significance, endowed with architectural and artistic grandeur and colours of the gothic style.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9690017,\"Long\":76.2518786,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/242\\/thumb\\/Santa Cruz Basilica_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":24456,\"Name\":\"Deshadan Backwater Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.50076\",\"Long\":\"76.3463\",\"Address\":\"Kayipuram \"},\"Images\":{\"Image\":[{\"ImagId\":578650,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_39_t.jpg\"},{\"ImagId\":578651,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_19_t.jpg\"},{\"ImagId\":578652,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_30_t.jpg\"},{\"ImagId\":578653,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_37_t.jpg\"},{\"ImagId\":578654,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_25_t.jpg\"},{\"ImagId\":578655,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_41_t.jpg\"},{\"ImagId\":578656,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_26_t.jpg\"},{\"ImagId\":578657,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_61_t.jpg\"},{\"ImagId\":578658,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_60_t.jpg\"},{\"ImagId\":578659,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_53_t.jpg\"},{\"ImagId\":578660,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_55_t.jpg\"},{\"ImagId\":578661,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_56_t.jpg\"},{\"ImagId\":578662,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_57_t.jpg\"},{\"ImagId\":578663,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_45_t.jpg\"},{\"ImagId\":578664,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_47_t.jpg\"},{\"ImagId\":578665,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_49_t.jpg\"},{\"ImagId\":578666,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_51_t.jpg\"},{\"ImagId\":578667,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_52_t.jpg\"},{\"ImagId\":578668,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_58_t.jpg\"},{\"ImagId\":578669,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_59_t.jpg\"},{\"ImagId\":578670,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_54_t.jpg\"},{\"ImagId\":578671,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/2e309236_t.jpg\"},{\"ImagId\":578672,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/8ba2c14d_t.JPG\"},{\"ImagId\":578673,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/33750efe_t.jpg\"},{\"ImagId\":578674,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/f0ca20d2_t.jpg\"},{\"ImagId\":578675,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/1ebf4442_t.jpg\"},{\"ImagId\":578676,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/8221f002_t.jpg\"},{\"ImagId\":578677,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/8b2f497e_t.JPG\"},{\"ImagId\":578678,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/94c5fcbc_t.JPG\"},{\"ImagId\":578679,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/aeadb4b2_t.jpg\"},{\"ImagId\":578680,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/0eb893e4_t.JPG\"},{\"ImagId\":578681,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/64b92817_t.jpg\"},{\"ImagId\":578682,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/c99183f8_t.jpg\"},{\"ImagId\":578683,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/1a83fd67_t.jpg\"},{\"ImagId\":578684,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/607e8ce5_t.jpg\"},{\"ImagId\":578685,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/6685213d_t.JPG\"},{\"ImagId\":578686,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/81eef1b4_t.jpg\"},{\"ImagId\":578687,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/b01c21bf_t.jpg\"},{\"ImagId\":578688,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/c5e4b21d_t.JPG\"},{\"ImagId\":578689,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/c60bd879_t.JPG\"},{\"ImagId\":578690,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/dcf72a91_t.jpg\"},{\"ImagId\":578691,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/f5c3d1a1_t.JPG\"},{\"ImagId\":578692,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/32a05a9e_t.JPG\"},{\"ImagId\":578693,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/f7e9173b_t.JPG\"},{\"ImagId\":578694,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/bbfd94e2_t.jpg\"},{\"ImagId\":578695,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/0a0523f3_t.jpg\"},{\"ImagId\":578696,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/a7a77990_t.jpg\"},{\"ImagId\":578697,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/fa30bb72_t.jpg\"},{\"ImagId\":578698,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/905c3718_t.jpg\"},{\"ImagId\":578699,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/3234b0b1_t.jpg\"},{\"ImagId\":578700,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/36f3e1f9_t.jpg\"},{\"ImagId\":578701,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/633ebbd5_t.jpg\"},{\"ImagId\":578702,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/84681b8a_t.jpg\"},{\"ImagId\":578703,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/c630a4d6_t.jpg\"},{\"ImagId\":578704,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/c7786b70_t.jpg\"},{\"ImagId\":578705,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/d666e454_t.jpg\"},{\"ImagId\":578706,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/df8d5f26_t.jpg\"},{\"ImagId\":578707,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/b53b49e4_t.JPG\"},{\"ImagId\":578708,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/339852d4_t.JPG\"},{\"ImagId\":578709,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/12fc9f39_t.jpg\"},{\"ImagId\":578710,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/eca144db_t.jpg\"},{\"ImagId\":578711,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/41e9a3de_t.jpg\"},{\"ImagId\":578712,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/54fd6882_t.jpg\"},{\"ImagId\":578713,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5e4cebab_t.jpg\"},{\"ImagId\":578714,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/bda9e55a_t.jpg\"},{\"ImagId\":578715,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/71f661f0_t.jpg\"},{\"ImagId\":578716,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/595762aa_t.jpg\"},{\"ImagId\":578717,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/b43120f4_t.jpg\"},{\"ImagId\":578718,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/b6688635_t.jpg\"},{\"ImagId\":578719,\"Type\":\"Thumbnail\",\"Order\":70,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/cb99219e_t.jpg\"}]},\"CityId\":670,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Muhamma (Vembanad Lake), Deshadan Backwater Resort is within the vicinity of Kumarakom Bird Sanctuary and Kumarakom Boat Jetty.  This 4-star resort is within the region of Vembanad Lake and Thirunakkara Mahadeva Temple.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 22 individually furnished guestrooms, featuring refrigerators and minibars. Rooms have private balconies. 32-inch LCD televisions with digital programming provide entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms with showers feature rainfall showerheads and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool and an indoor pool. This resort also features complimentary wireless Internet access and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a 24-hour business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this resort consist of a conference center and a meeting room. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5920000\\/5910900\\/5910858\\/5910858_39_t.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":518466,\"Name\":\"Ramada Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531308,\"Name\":\"Abad Whispering Palms | Resort in Kumarakom\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.576476\",\"Long\":\"76.4222384\",\"Address\":\"New Nazarath Road, Konchumada Road, Puthuchara, Kumarakom, Kerala 686563, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"Garden view Cottage\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":50,\"Title\":\"Anamudi Peak\",\"Description\":\"Anamudi is a mountain located in the Indian state of Kerala. It is the highest peak in the Western Ghats and South India, at an elevation of 2,695 metres (8,842 ft),and a topographic prominence of 2,479 metres (8,133 ft).The name Anamudi literally translates to &amp;quot;elephant&amp;#039;s forehead,&amp;quot; a reference to the resemblance of the mountain to an elephant&amp;#039;s head.\\r\\nThe first recorded ascent of Anamudi was by General Douglas Hamilton of the Madras Army on May 4, 1862, but it is likely that there had been earlier ascents by local people.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520853253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":769,\"Title\":\"Jewish Synagogue\",\"Description\":\"Jewish Synagogue, Fort Kochi the place not far away from the city of Kochi can ideally be termed as a cultural melting pot of Kerala. This small geographical entity is perhaps unique in the world due to its cultural representations. Be it for people from other parts of India or those from far off lands like those in the Middle-East and Europe, Fort Kochi at various stages of time in the past welcomed them all to settle down and lead a life in harmony with the native folks. \\r\\n\\r\\nVisitors to Fort Kochi would invariably be treated to many a cultural representation. They all have left their marks in the form of traders, asylum seekers, rulers and those who came to spread their religious faiths. What we are going to unravel is a landmark in a place called Mattancherry in Fort Kochi a monumental one that rose from the cultural traits and religious beliefs of a community that came to Kochi seeking asylum. The Jews of Fort Kochi, who fled their homeland - Israel during the Diaspora embraced Fort Kochi as their second home.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9568914,\"Long\":76.2597473,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633568.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1532,\"Title\":\"Santa Cruz Basilica\",\"Description\":\"The Santa Cruz Cathedral Basilica at Fort Kochi is one of the eight Basilicas in Kerala. Counted as one of the heritage edifices of Kerala, this church is one of the finest and most impressive churches in India and visited by tourists the whole year round. It is a place of devotion as well as a center of historic significance, endowed with architectural and artistic grandeur and colours of the gothic style.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9690017,\"Long\":76.2518786,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/242\\/thumb\\/Santa Cruz Basilica_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null}]}},{\"CityId\":14275,\"Title\":\"Kochi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531310,\"Name\":\"The Dunes Continental\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9913847\",\"Long\":\"76.2874944\",\"Address\":\"SRM Road, near Lissie Metro Rail Station, Ernakulam North, Kacheripady, Kochi, Kerala 682018, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531311,\"Name\":\"The Dunes Cochin\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9795415\",\"Long\":\"76.2842541\",\"Address\":\"Metro Pillar 668, Doraiswamy Iyer Rd, off Mahatma Gandhi Road, Shenoys, Kochi, Kerala 682035, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":531313,\"Name\":\"Radisson Blu Kochi\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9676064\",\"Long\":\"76.3072482\",\"Address\":\"Metro Junction, Sahodaran Ayyappan Rd, Elamkulam, Kochi, Kerala 682020, India\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":50,\"Title\":\"Anamudi Peak\",\"Description\":\"Anamudi is a mountain located in the Indian state of Kerala. It is the highest peak in the Western Ghats and South India, at an elevation of 2,695 metres (8,842 ft),and a topographic prominence of 2,479 metres (8,133 ft).The name Anamudi literally translates to &amp;quot;elephant&amp;#039;s forehead,&amp;quot; a reference to the resemblance of the mountain to an elephant&amp;#039;s head.\\r\\nThe first recorded ascent of Anamudi was by General Douglas Hamilton of the Madras Army on May 4, 1862, but it is likely that there had been earlier ascents by local people.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520853253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":769,\"Title\":\"Jewish Synagogue\",\"Description\":\"Jewish Synagogue, Fort Kochi the place not far away from the city of Kochi can ideally be termed as a cultural melting pot of Kerala. This small geographical entity is perhaps unique in the world due to its cultural representations. Be it for people from other parts of India or those from far off lands like those in the Middle-East and Europe, Fort Kochi at various stages of time in the past welcomed them all to settle down and lead a life in harmony with the native folks. \\r\\n\\r\\nVisitors to Fort Kochi would invariably be treated to many a cultural representation. They all have left their marks in the form of traders, asylum seekers, rulers and those who came to spread their religious faiths. What we are going to unravel is a landmark in a place called Mattancherry in Fort Kochi a monumental one that rose from the cultural traits and religious beliefs of a community that came to Kochi seeking asylum. The Jews of Fort Kochi, who fled their homeland - Israel during the Diaspora embraced Fort Kochi as their second home.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9568914,\"Long\":76.2597473,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633568.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1532,\"Title\":\"Santa Cruz Basilica\",\"Description\":\"The Santa Cruz Cathedral Basilica at Fort Kochi is one of the eight Basilicas in Kerala. Counted as one of the heritage edifices of Kerala, this church is one of the finest and most impressive churches in India and visited by tourists the whole year round. It is a place of devotion as well as a center of historic significance, endowed with architectural and artistic grandeur and colours of the gothic style.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9690017,\"Long\":76.2518786,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/242\\/thumb\\/Santa Cruz Basilica_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13418,\"SupplierName\":\"Travelust India\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331186\",\"Title\":\"ARRIVE COCHIN; TRANSFER TO MUNNAR\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Our representative will receive you at cochin airport and you will be directly transferred to Munnar. Reach Munnar and check into the resort. &amp;nbsp;Later in the evening proceed to visit the nearest Tea Museum.&amp;nbsp; Back to the hotel; &amp;nbsp;Rest of the time to relax. Overnight stay&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141629,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531306,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475287,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331189\",\"Title\":\"MUNNAR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Munnar is situated at the confluence of three mountain streams - Mudrapuzha, Nallathanni and Kundale, Munnar is 1600 Meter above sea level. This majestic hill station was once the summer resort of the British government in South India. Sightseeing in Munnar - Mattupetty Dam, Kundale Lake, Echo point, Rajamalai where you can visit the rarest species known as Nilgiri Tars.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141629,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531306,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475287,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":50,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1425,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331192\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331195\",\"Title\":\"MUNNAR &ndash; THEKKADY\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast checkout from hotel and drive to Thekkady, on arrival check in to the hotel. &amp;nbsp;Proceed for Spice plantation tour.&amp;nbsp; Later in the evening,&amp;nbsp; proceed for Boating in Lake Periyar ( part of conducted tour).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to the hotel for overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531307,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":419339,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":508458,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331198\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331201\",\"Title\":\"THEKKADY - ALLEPPEY\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and drive to Alleppey &amp;lsquo; the popular backwater paradise of kerala &amp;lsquo; .&amp;nbsp; Reach Alleppey with in 4 hours.&amp;nbsp; Check into the resort.&amp;nbsp; Later in the evening ,opt for 3 hours motor boat cruise&amp;nbsp; ( payable direct) to explore the backwaters ,lush coconut lagoons, never-ending paddy fields, narrow canals .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to the hotel for overnight stay&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24456,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Garden view Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":518466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331204\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331207\",\"Title\":\"ALLEPPEY &ndash; KOCHI\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out and drive to Cochin &amp;nbsp;( 2 hours).&amp;nbsp; Reach cochin before noon. Check into the hotel. Relax for some time. &amp;nbsp;Later in the afternoon proceed to visit local or nearby places for shopping or sightseeing. proceed to visit Fort Kochi &amp;amp; Mattanchery Area.&amp;nbsp; Visit Jewish Synagogue, St. Francis Chruch, Santa Cruz Basilica, Chinese fishing nets.&amp;nbsp; Visit Mattanchery Palace; overnight stay&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531310,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531311,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531313,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":332,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":520,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":769,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1532,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1667,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1759,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331210\",\"Title\":\"KOCHI AIRPORT DROP\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After check out from the Hotel and drive to Cochin Airport \\/ railway station (depend on your departure place) for your flight \\/ train back home, feeling contented about a wonderful holiday you spent in the God&amp;#39;s Own Country.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45887\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20680.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19991,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":62040,\"priceExtraBed\":\"15510.00\",\"priceWithoutBed\":\"10340.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10340,\"CEB\":15510,\"COSTDO\":20680,\"COSTSO\":62040,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18612,\"COSTTO\":18612}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45888\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"45889\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight &amp;amp; Rail tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch and \\/or beverages, other than those mentioned in the inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Assistance service on arrival \\/ departure \\/ hotels.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Monument &amp;amp; Sightseeing Entrance Fee anywhere&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera Charges, Activity Fees &amp;amp; all other expenses which are in personal nature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guide, Tour Escort (Can be provided up on request with extra Charges).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Boat Ride, Joy Ride, Plantation visits, Trekking Etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early Check in\\/ Late Checkout &amp;amp; Any Extra Meals.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other item not specified in cost inclusions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in the above-mentioned hotels or similar in base category rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast &amp;amp; Dinner included in all hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation Service using AC Sedan &amp;nbsp;for 02 passengers and Innova Car for 04 &amp;amp; 06 passengers as per the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transport Cost inclusive of Driver Bata, Night Halt, and Parking &amp;amp; Toll.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Standard Service time of the Driver and Vehicle will be from 08 AM to 07 PM.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"331186\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331186],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331189\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331189],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331192\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331192],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331195\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331195],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331198\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331198],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331201\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331201],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331204\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331204],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331207\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331207],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331210\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[331210],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Munnar,Thekkady,Alleppey,Kochi','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Kochi',NULL,'18697,27156,670,14275',20680,34100,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:55:36','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'serene-kerala',NULL,NULL,NULL,0),(275,45923,1,5293,1,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":45923,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/alluring-kashmir_1672140974\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;If there is heaven on earth, it is in Kashmir. The real paradise of Kashmir is an ultimate place for holidaying in the lap of nature. The place enjoys diverse wildlife, snow-capped mountains, picturesque valleys, charming landscapes, flowery gardens, traditional houseboats and much more. Known with beautiful names like &amp;#39;Alps of East&amp;#39;, &amp;#39;Kingdom of Heaven&amp;#39; and &amp;#39;Paradise on Earth&amp;#39;, Kashmir is an awesome destination for honeymooners but others as well visit this wonderful destination for getting connected to the beauty of nature.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"I Need Trip\",\"Name\":\"ALLURING KASHMIR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5698\",\"SupplierName\":\"CRUISE CARROT\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510339,\"Name\":\"Deluxe Houseboat Srinagar\\/\\/Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe Houseboat\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414483,\"Name\":\"Hotel Royal Arabia\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0904\",\"Long\":\"74.8372\",\"Address\":\"Khayam Chowk, Dalgate, Srinagar 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":7248,\"Title\":\"Lidder Lake\",\"Description\":\"Lidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Mirgund Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/Lidder_Lake_20566_1538041203.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":414970,\"Name\":\"Forest Hill Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.036626\",\"Long\":\"75.321592\",\"Address\":\"Laripora,Jammu and Kashmir,India, 192126\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"Forest Hill Resort, Pahalgam, is a great resort in Pahalgam with rooms that offer a view of picturesque mountains and river Lidder. The resort is designed to meet the needs of both business and leisure travellers. Ideally located from all major tourist spots, the resort proves to be travel-convenient for the guests.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nForest Hill Resort is located in Laripora. The lush green hills in Baisaran, Pahalgam (Approx. 2km) are situated close to the hotel. Guests can visit the beautiful greenish blue Sheshnag Lake, Pahalgam (Approx. 3km) which serves as an en route for pilgrims going for Amarnath yatra. There are also many tourist spots that are located nearby like Aru, Aishmuqam and Sun temple.\\n\\nDistance from Srinagar International Airport: Approx. 94kms\\nDistance from Srinagar Railway Station: Approx. 83kms\\n\\n&lt;b&gt;Hotel Features:&lt;\\/b&gt;\\nDesigned to provide utmost comfort, the hotel is equipped with necessary amenities. The array of basic amenities include room service, 24-hour front desk, parking, travel desk and 24-hour security. For business travellers, the resort ensures conference facilities and board room. The hotel has dining rooms wherein breakfast, lunch and dinner are served for the guests. Guests can relish Indian, Continental and authentic Kashmiri cuisines during the stay.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nRooms are classified as standard rooms and deluxe rooms. These rooms are well-furnished and each room has a touch of elegance. In addition to offering good scenic view of the hills and the river, these rooms feature amenities like colour television and telephone.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3547\\/354747\\/images\\/res_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":7248,\"Title\":\"Lidder Lake\",\"Description\":\"Lidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Mirgund Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/Lidder_Lake_20566_1538041203.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":92383,\"Name\":\"Gulmarg Resort\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0525\",\"Long\":\"74.3912\",\"Address\":\"Near Gandola Cable Car Gulmarg 193403\"},\"Images\":{\"Image\":[{\"ImagId\":2033123,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718080020175796.jpg?s=312x\"},{\"ImagId\":2033124,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718420020176201.jpg?s=312x\"},{\"ImagId\":2033125,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130422190627.jpg?s=312x\"},{\"ImagId\":2033126,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix5.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130425170853245.jpg?s=312x\"},{\"ImagId\":2033127,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix2.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130425171228950.jpg?s=312x\"}]},\"CityId\":11197,\"Brief\":\"Gulmarg Resorts is a popular choice amongst travelers in Gulmarg, whether exploring or just passing through. Offering a variety of facilities and services, the hotel provides all you need for a good night&#039;s sleep. 24-hour room service, Wi-Fi in public areas, car park, room service, restaurant are on the list of things guests can enjoy. Some of the well-appointed guestrooms feature desk, television, satellite\\/cable TV, shower, bathtub. Recuperate from a full day of sightseeing in the comfort of your room or take advantage of the hotel&#039;s recreational facilities, including garden. Friendly staff, great facilities and close proximity to all that Gulmarg has to offer are three great reasons you should stay at Gulmarg Resorts.\",\"MainImg\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718080020175796.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":7248,\"Title\":\"Lidder Lake\",\"Description\":\"Lidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Mirgund Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/Lidder_Lake_20566_1538041203.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5698,\"SupplierName\":\"CRUISE CARROT\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331452\",\"Title\":\"Arrive at Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at airport, meet our local representative who will transfer you to the houseboat, Arrive&amp;nbsp;and Check in to the Houseboat and evening enjoy Famous&amp;nbsp;Shikara&amp;nbsp;ride on Dal Lake for 01 hour and night at Houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510339,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Houseboat\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331453\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331454\",\"Title\":\"Srinagar - Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to Pahalgam, arrive and check in the Hotel night at Pahalgam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414970,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331455\",\"Title\":\"Pahalgam Valley Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast at the Hotel then full day Pahalgam Valley tour Pahalgam is a hill station in the north Indian state of Jammu and Kashmir. Mountain trails run northeast to Amarnath Cave Temple, a Hindu shrine and site of the annual Amarnath Yatra pilgrimage. Over Aru Wildlife Sanctuary is home to animals including brown bears and musk deer. Northeast, the Lidder River runs through scenic Betaab Valley. Southeast, Tulian Lake is flanked by mountain peaks and often froze, after sightseeing return back to the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414970,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331456\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331457\",\"Title\":\"Pahalgam - Gulmarg\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to&amp;nbsp;Gulmarg,&amp;nbsp;Gulmarg&amp;nbsp;59&amp;nbsp;kms&amp;nbsp;away from&amp;nbsp;Srinagar&amp;nbsp;situated at an elevation of 2650 m. After check inn leave with your guide for some adventure activity in&amp;nbsp;Gulmarg, night at&amp;nbsp;Gulmarg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":92383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331458\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331459\",\"Title\":\"Gulmarg &ndash; Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel and drive to Srinagar, Arrive and check in the Hotel,&amp;nbsp;Arrive and check in the and visit Mughal gardens like, Chesham shahi garden, Pari mahal &amp;amp; Nishat garden, after that we will take you to Shankar Acharya temple, Hazratbal shrine &amp;amp; local market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening return back to&amp;nbsp;Srinagar&amp;nbsp;for night stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414483,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":661,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331460\",\"Title\":\"Srinagar Drop\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel then drive to the Srinagar Airport to board the flight for the ongoing Journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45923\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24860.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24031,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":74580,\"priceExtraBed\":\"18645.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24860,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12430,\"CEB\":18645,\"COSTDO\":24860,\"COSTSO\":74580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22374,\"COSTTO\":22374}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport taxes &amp;amp; airfares to\\/from\\/within India.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sonmarg&amp;nbsp;Zero point &amp;amp;&amp;nbsp;Thajiwas&amp;nbsp;Glacier.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry charges in any Garden, horse rides at any place.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gondola rides in&amp;nbsp;Gulmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chain Car in&amp;nbsp;Tangmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pahalgam&amp;nbsp;(Aru&amp;nbsp;Valley,&amp;nbsp;Chandan&amp;nbsp;wari&amp;nbsp;&amp;amp;&amp;nbsp;Betaab&amp;nbsp;Valley).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any optional tour mentioned in the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guides at any place are not included in the tour cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All above rates are subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Peaktime surcharge&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet &amp;amp; Greet on Arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On Arrival welcome drinks.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shikara&amp;nbsp;ride on Dal Lake for 01 hour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and dinner in the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All local sightseeing in Srinagar by Sedan \\/ Innova car.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable taxes, toll, parking, fuel charges, driver allowance included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"331452\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331452],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331453\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331453],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331454\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331455\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331455],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331456\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331456],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331457\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331457],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331458\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331458],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331459\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331459],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331460\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[331460],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Srinagar,Pahalgam,Gulmarg','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg',NULL,'25897,20566,11197',24860,24860,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:54:37','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'alluring-kashmir',NULL,NULL,NULL,0),(276,46069,1,5293,1,0,0,'Honeymoon,Family,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46069,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/kashmir-delight_1672387113\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;If there is heaven on earth, it is in Kashmir. The real paradise of Kashmir is an ultimate place for holidaying in the lap of nature. The place enjoys diverse wildlife, snow-capped mountains, picturesque valleys, charming landscapes, flowery gardens, traditional houseboats and much more. Known with beautiful names like &amp;#39;Alps of East&amp;#39;, &amp;#39;Kingdom of Heaven&amp;#39; and &amp;#39;Paradise on Earth&amp;#39;, Kashmir is an awesome destination for honeymooners but others as well visit this wonderful destination for getting connected to the beauty of nature.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With apple orchards, saffron fields, glittering lakes &amp;amp; breathtaking meadows, Kashmir, in the union territory of Jammu &amp;amp; Kashmir, draws the attention of tourists from across the globe. With tranquil settings, magnificent views, and pristine nature, Kashmir is a perfect holiday destination that should be visited once in a lifetime.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"I Need Trip\",\"Name\":\"KASHMIR DELIGHT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13494\",\"SupplierName\":\"CARROT HOLIDAYS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Hill Station,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480768,\"Name\":\"Deluxe Houseboat in kashmir\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.115499\",\"Long\":\"74.82936099999999\",\"Address\":\"Nagin Lake Opposite, Ashai Bagh Bridge, KACH LACH PORA, Srinagar, Jammu and Kashmir 190006\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe Houseboat\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414483,\"Name\":\"Hotel Royal Arabia\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0904\",\"Long\":\"74.8372\",\"Address\":\"Khayam Chowk, Dalgate, Srinagar 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":414970,\"Name\":\"Forest Hill Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.036626\",\"Long\":\"75.321592\",\"Address\":\"Laripora,Jammu and Kashmir,India, 192126\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"Forest Hill Resort, Pahalgam, is a great resort in Pahalgam with rooms that offer a view of picturesque mountains and river Lidder. The resort is designed to meet the needs of both business and leisure travellers. Ideally located from all major tourist spots, the resort proves to be travel-convenient for the guests.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nForest Hill Resort is located in Laripora. The lush green hills in Baisaran, Pahalgam (Approx. 2km) are situated close to the hotel. Guests can visit the beautiful greenish blue Sheshnag Lake, Pahalgam (Approx. 3km) which serves as an en route for pilgrims going for Amarnath yatra. There are also many tourist spots that are located nearby like Aru, Aishmuqam and Sun temple.\\n\\nDistance from Srinagar International Airport: Approx. 94kms\\nDistance from Srinagar Railway Station: Approx. 83kms\\n\\n&lt;b&gt;Hotel Features:&lt;\\/b&gt;\\nDesigned to provide utmost comfort, the hotel is equipped with necessary amenities. The array of basic amenities include room service, 24-hour front desk, parking, travel desk and 24-hour security. For business travellers, the resort ensures conference facilities and board room. The hotel has dining rooms wherein breakfast, lunch and dinner are served for the guests. Guests can relish Indian, Continental and authentic Kashmiri cuisines during the stay.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nRooms are classified as standard rooms and deluxe rooms. These rooms are well-furnished and each room has a touch of elegance. In addition to offering good scenic view of the hills and the river, these rooms feature amenities like colour television and telephone.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3547\\/354747\\/images\\/res_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":415481,\"Name\":\"Hotel Fluorescence\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.048668\",\"Long\":\"74.38002\",\"Address\":\"Khilan Side, , Khilan Side, GULMARG, JAMMU &amp; KASHMIR, India, Pin-193403, 193403\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"Situated amidst the beautiful Himalayan Mountains, Flourescence in Gulmarg has a multi cuisine restaurant offering variety of cuisines. There is a Wi-Fi zone  in the hotel. This property is situated at a distance of 58 km from Srinagar International Airport.  This hotel in Gulmarg has centrally heated rooms well equipped with various modern amenities like  TV, a wardrobe, air conditioner and big windows enabling view of greenery outside. Intercom facility is provided in all the rooms.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/3\\/nxd\\/maw\\/nym\\/fbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13494,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"332470\",\"Title\":\"Arrive at Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at airport, meet our local representative who will transfer to the houseboat,&amp;nbsp;Arrive and check in the houseboat and visit evening enjoy famous Shikara ride after sightseeing return back to the Houseboat.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480768,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Houseboat\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1579,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332471\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332472\",\"Title\":\"Srinagar - Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to Pahalgam, arrive and check in the Hotel night at Pahalgam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414970,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332473\",\"Title\":\"Pahalgam Valley Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast at the Hotel then full visit Pahalgam, Pahalgam is a hill station in the north Indian state of Jammu and Kashmir. Mountain trails run northeast to Amarnath Cave Temple, a Hindu shrine and site of the annual Amarnath Yatra pilgrimage. Over Aru Wildlife Sanctuary is home to animals including brown bears and musk deer. Northeast, the Lidder River runs through scenic Betaab Valley. Southeast, Tulian Lake is flanked by mountain peaks and often freezes, after sightseeing return back to the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Pahalgam Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414970,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":971,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332474\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332475\",\"Title\":\"Pahalgam - Gulmarg\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to&amp;nbsp;Gulmarg,&amp;nbsp;Gulmarg&amp;nbsp;59&amp;nbsp;kms&amp;nbsp;away from&amp;nbsp;Srinagar&amp;nbsp;situated at an elevation of 2650 m. After check inn leave with your guide for some adventure activity in&amp;nbsp;Gulmarg, night at&amp;nbsp;Gulmarg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":415481,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332476\",\"Title\":\"Gulmarg Local Sightseen by ETV Car (Own Arrangement)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After Breakfast at the Hotel then proceed for gulmarg sightseeing like &amp;ndash; Maharaja palace , Rani temple etc, After sightseeing Or Activity retrun back to the Hotel night at Gulmarg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":415481,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332477\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332478\",\"Title\":\"Gulmarg &ndash; Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel and drive to Srinagar, Arrive and check in the Hotel, later visit Mughal gardens, Chesham shahi garden, Pari mahal &amp;amp; Nishat garden, after that we will take you to Shankar Acharya temple, Hazratbal shrine &amp;amp; local market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening return back to&amp;nbsp;Srinagar&amp;nbsp;for night stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414483,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":309,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":661,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332479\",\"Title\":\"Srinagar Drop\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel then drive to the Srinagar Airport to board the flight for the ongoing Journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46069\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":29242,\"priceDoubleOcc\":\"30250.00\",\"priceSingleOcc\":90750,\"priceExtraBed\":\"22687.50\",\"priceWithoutBed\":\"15125.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15125,\"CEB\":22687.5,\"COSTDO\":30250,\"COSTSO\":90750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27225,\"COSTTO\":27225}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport taxes &amp;amp; airfares to\\/from\\/within India.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sonmarg&amp;nbsp;Zero point &amp;amp;&amp;nbsp;Thajiwas&amp;nbsp;Glacier.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry charges in any Garden, horse rides at any place.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gondola rides in&amp;nbsp;Gulmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chain Car in&amp;nbsp;Tangmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pahalgam&amp;nbsp;(Aru&amp;nbsp;Valley,&amp;nbsp;Chandan&amp;nbsp;wari&amp;nbsp;&amp;amp;&amp;nbsp;Betaab&amp;nbsp;Valley).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any optional tour mentioned in the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guides at any place are not included in the tour cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All above rates are subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet &amp;amp; Greet on Arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On Arrival welcome drinks.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shikara&amp;nbsp;ride on Dal Lake for 01 hour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and dinner in the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All local sightseeing in Srinagar by Sedan \\/ Innova car.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable taxes, toll, parking, fuel charges, driver allowance included&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"332470\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[332470],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332471\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332471],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332472\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332472],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332473\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[332473],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332474\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[332474],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332475\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[332475],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332476\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[332476],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332477\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[332477],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332478\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[332478],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332479\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[332479],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Srinagar,Pahalgam,Gulmarg','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg',NULL,'25897,20566,11197',30250,30250,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:54:04','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kashmir-delight',NULL,NULL,NULL,0),(277,46508,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46508,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/beautiful-rajasthan-ex-jodhpur_1672897965\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:center&quot;&gt;Immerse yourself in the splendor of the royal state of Rajasthan with this tour package. Most of the architecture in Jodhpur&amp;ndash; forts, palaces, temples, havelis and even houses are built in vivid shades of blue. The strapping forts that tower this magnificent city sum up to a spectacle you would not want to miss. Your 5 days Rajasthan tour itinerary&amp;nbsp;will include a visit to the majestic and ancient architecture of all these attractions will amaze you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Jaisalmer\",\"DestinationPlacesSysId\":12996,\"SourcePlaces\":\"Jodhpur\",\"SourcePlaceSysId\":13184,\"AgencyName\":\"I Need Trip\",\"Name\":\"Beautiful Rajasthan Ex Jodhpur\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Leisure\",\"Validity\":{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":423427,\"Name\":\"Kalinga Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.28442508984\",\"Long\":\"73.021377600558\",\"Address\":\"Near Railway Station, In front of Sahkar Bhawan, Jodhpur 342001\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"Kalinga Hotel provides free Wi-Fi access and breakfast to its guests. This Jodhpur hotel is located at 1 km from the Jodhpur Railway Station and at 4 km from the Umaid Bhawan Palace. \\\\nThis 3-floor hotel has 37 AC rooms. All the rooms are equipped with TVs, refrigerators, direct-dial phones, and attached bathrooms with hot and cold water supply. \\\\nThe hotel in Jodhpur offers laundry, room service, medical assistance, and airport transportation service to its guests. It also has a multi-cuisine restaurant, bar, banquet hall, and fitness center on its premises. \\\\nKalinga Hotel is at 3 km from the Rai Ka Bagh Central Bus Station and at 341 km from the Jaipur International Airport. The hotel offers facilities for the disabled as well. Guests can visit the Mehrangarh Fort (3 km), Jaswant Thada (4 km), and Bal Samand Lake (10 km).null\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/92\\/77\\/9277b39e394447a01f8650b76db64c526b6940e7.jpg\",\"AccoAminitiesMask\":\"1110110000001100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":423448,\"Name\":\"Zone by The Park Jodhpur\",\"Star\":\"4.50\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2789\",\"Long\":\"73.028\",\"Address\":\"Jawahar Tower 29 2-A, ITI Circle, Light Industrial Area, Jodhpur 342003, Rajasthan\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"The 4-star Zone By The Park-Jodhpur offers comfort and convenience whether you&#039;re on business or holiday in Jodhpur. Featuring a satisfying list of amenities, guests will find their stay at the property a comfortable one. Free Wi-Fi in all rooms, 24-hour room service, 24-hour security, daily housekeeping, postal service are just some of the facilities on offer. Some of the well-appointed guestrooms feature flat screen television, bathroom phone, clothes rack, free welcome drink, mirror. The property offers various recreational opportunities. For reliable service and professional staff, Zone By The Park-Jodhpur caters to your needs.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000100001110000\",\"AccoAminities\":[{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484489,\"Name\":\"Kasam Desert Safari Camp\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.8542955\",\"Long\":\"70.5514316\",\"Address\":\"Near Air Force Circle, Sam Sand Dunes, near Sunset Point, Jaisalmer, Rajasthan 345001, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":105432,\"Name\":\"Himmatgarh Palace\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.919192\",\"Long\":\"70.905208\",\"Address\":\"Ramgarh Road Jaisalmer\"},\"Images\":{\"Image\":[{\"ImagId\":2290841,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/890\\/1124217cdmssabrevfm_img_pho_000_nc__620290_Room___A.jpg\"},{\"ImagId\":2290842,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/899\\/1124217cdmssabrevfm_img_pho_000_nc__620296_Exterior___C.jpg\"},{\"ImagId\":2290843,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/908\\/1124217cdmssabrevfm_img_pho_000_nc__620293_Pool___A.jpg\"},{\"ImagId\":2290844,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/917\\/1124217cdmssabrevfm_img_pho_000_nc__620299_Exterior___C.jpg\"},{\"ImagId\":2290845,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/926\\/1124217cdmssabrevfm_img_pho_000_nc__620302_Exterior___C.jpg\"},{\"ImagId\":2290846,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/935\\/1124217cdmssabrevfm_img_pho_000_nc__620308_Exterior___C.jpg\"},{\"ImagId\":2290847,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/944\\/1124217cdmssabrevfm_img_pho_000_nc__620305_Exterior___C.jpg\"}]},\"CityId\":12996,\"Brief\":\"The hotel is 3 kilometres from the airport and 3 kilometres from the railway station. The hotel is situated on a higher plateau and provides a splendid, breathtaking view of the entire city and the Fort of Jaisalmer.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/890\\/1124217cdmssabrevfm_img_pho_000_nc__620290_Room___A.jpg\",\"AccoAminitiesMask\":\"100000000000000000\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":105359,\"Name\":\"Desert Tulip\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.91754\",\"Long\":\"70.947362\",\"Address\":\"Jodhpur Road Jaisalmer 345001\"},\"Images\":{\"Image\":[{\"ImagId\":2289871,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_27_t.jpg\"},{\"ImagId\":2289872,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_29_t.jpg\"},{\"ImagId\":2289873,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_30_t.jpg\"},{\"ImagId\":2289874,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_26_t.jpg\"},{\"ImagId\":2289875,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_28_t.jpg\"},{\"ImagId\":2289876,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_32_t.jpg\"},{\"ImagId\":2289877,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_33_t.jpg\"},{\"ImagId\":2289878,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_31_t.jpg\"},{\"ImagId\":2289879,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_25_t.jpg\"},{\"ImagId\":2289880,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_10_t.jpg\"},{\"ImagId\":2289881,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_11_t.jpg\"},{\"ImagId\":2289882,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_12_t.jpg\"},{\"ImagId\":2289883,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_13_t.jpg\"},{\"ImagId\":2289884,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_14_t.jpg\"},{\"ImagId\":2289885,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_15_t.jpg\"},{\"ImagId\":2289886,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_16_t.jpg\"},{\"ImagId\":2289887,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_17_t.jpg\"},{\"ImagId\":2289888,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_18_t.jpg\"},{\"ImagId\":2289889,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_19_t.jpg\"},{\"ImagId\":2289890,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_20_t.jpg\"},{\"ImagId\":2289891,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_21_t.jpg\"},{\"ImagId\":2289892,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_22_t.jpg\"},{\"ImagId\":2289893,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_23_t.jpg\"},{\"ImagId\":2289894,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_24_t.jpg\"},{\"ImagId\":2289895,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_1_t.jpg\"},{\"ImagId\":2289896,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_2_t.jpg\"},{\"ImagId\":2289897,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_3_t.jpg\"},{\"ImagId\":2289898,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_4_t.jpg\"},{\"ImagId\":2289899,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_5_t.jpg\"},{\"ImagId\":2289900,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_6_t.jpg\"},{\"ImagId\":2289901,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_7_t.jpg\"},{\"ImagId\":2289902,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_8_t.jpg\"},{\"ImagId\":2289903,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_9_t.jpg\"}]},\"CityId\":12996,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Jaisalmer, Desert Tulip Hotel &amp;amp; Resort is close to Gadi Sagar Tank and Patwon-ki-Haveli.  This 4-star resort is within close proximity of Jaisalmer Fort and Bhatia Market.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 64 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and slippers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreation opportunities including a health club and an outdoor pool. Additional amenities at this resort include complimentary wireless Internet access, an arcade\\/game room, and wedding services.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the resort&amp;apos;s 2 restaurants. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges. A complimentary breakfast is included.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, limo\\/town car service, and dry cleaning\\/laundry services. Guests may use a roundtrip airport shuttle for a surcharge, and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_27_t.jpg\",\"AccoAminitiesMask\":\"110110001000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"334887\",\"Title\":\"Arrive Jodhpur\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Jodhpur, and be ready for a wonderful journey to the &amp;ldquo;Beautiful Rajasthan Tour&amp;rdquo;. At Jodhpur Airport or Railway station, our Driver will meet you and drive you to the Jodhpur hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jodhpur is also known as &amp;ldquo;Blue City&amp;rdquo; The name is clearly befitting as most of the architecture &amp;ndash; forts, palaces, temples, Havelis, and even houses are built in vivid shades of blue.&amp;nbsp;Jodhpur marks its origin back to the year of 1459 AD. The history of this prosperous city revolves around the Rathore clan. Rao Jodha, the chief of the Rathore Clan is credited with the origin of Jodhpur in India. The city is known to be built in place of the ancient capital, Mandore of the state of Manwar. Upon arrival check-in at your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":423427,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":423448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334889\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334891\",\"Title\":\"Jodhpur sightseeing and Drive to Jaisalmer (280 km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, you&amp;#39;ll proceed for the Jodhpur city tour. Visit Mehrangarh Fort, Umaid Bhawan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Mehrangarh Fort was built by Rao Jodha in 1459 in Jodhpur and is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. Mehrangarh Fort still bears the imprints of cannonball attacks courtesy of the armies of Jaipur on its second gate. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums, and galleries allure everyone.&amp;nbsp;The fort also has one of the most well-stocked museums in Rajasthan.&amp;nbsp;Later Visit Umaid Bhawan. Umaid Bhawan Palace was built by Maharaja Umaid Singh in 1929 to counter a famine that had hit the state at the time. It was also known as the Chittar Palace while being constructed thanks to the use of stones drawn from Chittar hill. The palace was designed by HV Lanchester, a renowned British architect, and was completed in 16 years. Built with sandstone and marble, the architecture of the palace is described as a blend of Indo-Saracenic, Classical Revival, and Western Art Deco styles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later proceed to Jaisalmer. Jaisalmer is popularly known as &amp;ldquo;Golden City&amp;rdquo; because of its golden sand dunes and castles built with golden honey sandstones. Jaisalmer traces its inception to the 12th century. History tells us of Rawal Jaisal, the eldest heir of the Rawal of Deoraj, was passed over for the throne of Lodurva and a younger half-brother was crowned king. Rawal Jaisal went looking for a new location to set up his capital when he came across sage Eesul. It was in 1156 that Rawal Jaisal constructed a mud fort, named it Jaisalmer after himself, and declared it his capital. Jaisalmer is adorned with lakes, ornate Jain temples, and Havelis.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":105432,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":105359,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1113,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1832,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334893\",\"Title\":\"Jaisalmer Sightseeing and Sand Dunes\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed to the Jaisalmer city tour. Visit Jaisalmer fort also known as &amp;ldquo;Sonar Quila&amp;rdquo; (Golden Fort) as it rises from the desert itself and seems to become one with the golden hues of the sand. Built in 1156, Jaisalmer Fort gets its name from the former Bhati Rajput ruler Rao Jaisal. More than three thousand people live within the fort walls with multiple entrance gates on the path up top, which make it the only &amp;#39;living fort&amp;#39; in India. Later visit Patwon ki Haveli, which is the largest and the most elaborately carved havelis in Jaisalmer, this five-storey structure sits proudly in a narrow street. &amp;nbsp;It is a cluster of five small havelis built by a rich trader in the 19th Century. Locals also refer to the haveli as Kothari&amp;rsquo;s Patwa Haveli.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, proceed to &amp;ldquo;Sam Sand dunes&amp;rdquo; situated 40 Km from Jaisalmer, the dunes are located over calm and undulating stretches of golden yellow sand stretching for around 2 kilometers along the borders of the Jaisalmer Desert National Park. Upon arrival check in at Desert Camp. You can enjoy various activities like Camel Ride, Jeep Safari in dunes later back to Camp, enjoy various cultural programmes. Overnight stay at Camp&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1340,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1517,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334895\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334897\",\"Title\":\"Drive to Jodhpur (320 km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast check out from Camp and drive to Jodhpur. Upon arrival at Jodhpur hotel check-in. Rest day is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":423427,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":423448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334899\",\"Title\":\"Depart Jodhpur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast check out and transfer to Jodhpur airport or railway station for your onward journey. Your &amp;ldquo;Beautiful Rajasthan Tour&amp;rdquo; ends with beautiful memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46508\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17710.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14446,\"priceDoubleOcc\":\"17710.00\",\"priceSingleOcc\":29526.25,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":17710,\"COSTSO\":29526.25,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10172,\"priceDoubleOcc\":\"11298.75\",\"priceSingleOcc\":23115,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11298.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":11298.75,\"COSTSO\":23115,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10735,\"priceDoubleOcc\":\"12144.00\",\"priceSingleOcc\":23960.25,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12144,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":12144,\"COSTSO\":23960.25,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10517,\"priceDoubleOcc\":\"11816.25\",\"priceSingleOcc\":23632.5,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11816.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":11816.25,\"COSTSO\":23632.5,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11812,\"priceDoubleOcc\":\"13759.75\",\"priceSingleOcc\":25576,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13759.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":13759.75,\"COSTSO\":25576,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14446,\"priceDoubleOcc\":\"17710.00\",\"priceSingleOcc\":29526.25,\"priceExtraBed\":\"5502.75\",\"priceWithoutBed\":\"3220.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17710,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3220,\"CEB\":5502.75,\"COSTDO\":17710,\"COSTSO\":29526.25,\"CostQuad\":null,\"ACEB\":7917.75,\"COSTTO\":7917.75}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46509\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23747.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19276,\"priceDoubleOcc\":\"23747.50\",\"priceSingleOcc\":41601.25,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23747.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":23747.5,\"COSTSO\":41601.25,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15002,\"priceDoubleOcc\":\"17336.25\",\"priceSingleOcc\":35190,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17336.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":17336.25,\"COSTSO\":35190,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15565,\"priceDoubleOcc\":\"18181.50\",\"priceSingleOcc\":36035.25,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18181.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":18181.5,\"COSTSO\":36035.25,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15347,\"priceDoubleOcc\":\"17853.75\",\"priceSingleOcc\":35707.5,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17853.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":17853.75,\"COSTSO\":35707.5,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16642,\"priceDoubleOcc\":\"19797.25\",\"priceSingleOcc\":37651,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19797.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":19797.25,\"COSTSO\":37651,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75},{\"From\":\"2023-01-05\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19276,\"priceDoubleOcc\":\"23747.50\",\"priceSingleOcc\":41601.25,\"priceExtraBed\":\"7797.00\",\"priceWithoutBed\":\"4295.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23747.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4295.25,\"CEB\":7797,\"COSTDO\":23747.5,\"COSTSO\":41601.25,\"CostQuad\":null,\"ACEB\":10332.75,\"COSTTO\":10332.75}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check In \\/ Check out time at all the properties would at 1400 Hrs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour-programme is subject to change depending upon circumstances. Vehicle is not at disposal - means it is for transfers and sightseeing as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C will not work in Vehicle during your journey in Hills&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Due to any unforeseen, unavoidable forced majeure&amp;nbsp;circumstances incurred during the tour such as Road Blockage, Route change, hotel shut operation, Protest etc and required to arrange extra vehicle or hotel, will be on extra charges and Guest has to pay directly.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ranthambore Safari.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary with Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers and Sightseeing by Sedan \\/ Innova \\/ Tempo traveler or similar&amp;nbsp;Vehicle as per the booking suitable to the number of passengers traveling together.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"334887\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[334887],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334889\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[334889],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334891\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[334891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334893\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[334893],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334895\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[334895],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334897\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[334897],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334899\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[334899],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Jodhpur,Jaisalmer','Jodhpur,Rajasthan,Indian Subcontinent,North India,India,Jaisalmer',NULL,'13184,12996',11299,23748,4,NULL,NULL,NULL,2,'',0,'2023-01-09 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2023-07-11 17:29:31','2023-01-09 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'beautiful-rajasthan-ex-jodhpur',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (279,46554,1,5293,0,0,0,'Honeymoon,Family,Heritage,Culture,Festivals and Events,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46554,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/rajasthan-heritage-ex-jaipur_1691740365\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The state of &lt;strong&gt;Rajasthan&lt;\\/strong&gt; is a popular tourist hub and it has a number of places that are not only famous domestically but are also renowned over the globe. On your Jaipur Udaipur Jodhpur Jaisalmer holiday package you will be visiting some of these must-visit places.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your first destination is &lt;strong&gt;Jaipur&lt;\\/strong&gt;, the &amp;ldquo;Pink City&amp;rdquo;. The town is known as the pink city because most of the buildings in the city are wrapped in a shade of pink. Apart from this, the city takes pride in its forts and palaces. The forts in the city are architectural masterpieces that speak to you of the history of Jaipur and the lavish palaces boast of the culture that it still withholds.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Moving to &lt;strong&gt;Udaipur&lt;\\/strong&gt;, you will step into the &amp;ldquo;City of Lakes&amp;rdquo;. The lakes in this city are beautiful, tranquil and azure that will leave you with an unforgettable view. Be it any lake, its backdrops are the gigantic Aravalli Mountains and the lush greenery, where you can sit and relax for hours beside the shore of the lake.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your next destination will be &lt;strong&gt;Jodhpur&lt;\\/strong&gt;, known as the &amp;ldquo;Blue City&amp;rdquo;. The reason behind this is the houses that are painted in different shades of blue. The city is also known to be the second largest city of the state and houses numerous tourists each year.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The last destination on your holiday will be &lt;strong&gt;Jaisalmer&lt;\\/strong&gt;. The city is surrounded by the golden dunes of the Thar and is a very popular city for movie makers. Many movies like Bhajrangi Bhaijaan, Shudh Desi Romance, Yeh Jawaani Hai Deewani, Nanhe Jaisalmer etc. have been filmed in the city.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"I Need Trip\",\"Name\":\"RAJASTHAN HERITAGE EX-JAIPUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Heritage,Culture,Festivals and Events,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":532926,\"Name\":\"Hotel Metro Inn\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9179107\",\"Long\":\"75.7919307\",\"Address\":\"Plot No. 9 opp. ITC Rajputana Sheraton Fateh Singh Market, Gopalbari, Jaipur, Rajasthan 302006, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532922,\"Name\":\"Regenta Central Jaipur\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9428592\",\"Long\":\"75.7488025\",\"Address\":\"Ramnath Puri, 91- 92, Kalwar Rd, Shivpuri, Sindhi Colony, Jhotwara, Jaipur, Rajasthan 302012, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":731,\"Title\":\"Jaipur City Tour\",\"Description\":\"Here is an enthusiastic tour of Jaipur, the majestic Pink City as it is called, to let you witness the undying charisma this old city possesses through its forts, palaces and ancient buildings.\\r\\nStart exploring the hidden features of this royal city of India.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jaipur_City_Tour_12995_1519729146.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":733,\"Title\":\"Jaisalmer Fort\",\"Description\":\"It is in, one of the largest forts around the world. Due to its location at the golden stretches of the Thar Desert, this fort is also known as the &amp;lsquo;Sonar Quila&amp;rsquo; or the &amp;lsquo;Golden Fort&amp;rsquo;. Elevated to about sixty feet, the entrance is made from the finest quality rosewood.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9122586,\"Long\":70.9109769,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/34\\/thumb\\/Jaisalmer Fort_951.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":423427,\"Name\":\"Kalinga Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.28442508984\",\"Long\":\"73.021377600558\",\"Address\":\"Near Railway Station, In front of Sahkar Bhawan, Jodhpur 342001\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"Kalinga Hotel provides free Wi-Fi access and breakfast to its guests. This Jodhpur hotel is located at 1 km from the Jodhpur Railway Station and at 4 km from the Umaid Bhawan Palace. \\\\nThis 3-floor hotel has 37 AC rooms. All the rooms are equipped with TVs, refrigerators, direct-dial phones, and attached bathrooms with hot and cold water supply. \\\\nThe hotel in Jodhpur offers laundry, room service, medical assistance, and airport transportation service to its guests. It also has a multi-cuisine restaurant, bar, banquet hall, and fitness center on its premises. \\\\nKalinga Hotel is at 3 km from the Rai Ka Bagh Central Bus Station and at 341 km from the Jaipur International Airport. The hotel offers facilities for the disabled as well. Guests can visit the Mehrangarh Fort (3 km), Jaswant Thada (4 km), and Bal Samand Lake (10 km).null\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/92\\/77\\/9277b39e394447a01f8650b76db64c526b6940e7.jpg\",\"AccoAminitiesMask\":\"1110110000001100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":423448,\"Name\":\"Zone by The Park Jodhpur\",\"Star\":\"4.50\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2789\",\"Long\":\"73.028\",\"Address\":\"Jawahar Tower 29 2-A, ITI Circle, Light Industrial Area, Jodhpur 342003, Rajasthan\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"The 4-star Zone By The Park-Jodhpur offers comfort and convenience whether you&#039;re on business or holiday in Jodhpur. Featuring a satisfying list of amenities, guests will find their stay at the property a comfortable one. Free Wi-Fi in all rooms, 24-hour room service, 24-hour security, daily housekeeping, postal service are just some of the facilities on offer. Some of the well-appointed guestrooms feature flat screen television, bathroom phone, clothes rack, free welcome drink, mirror. The property offers various recreational opportunities. For reliable service and professional staff, Zone By The Park-Jodhpur caters to your needs.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000100001110000\",\"AccoAminities\":[{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":731,\"Title\":\"Jaipur City Tour\",\"Description\":\"Here is an enthusiastic tour of Jaipur, the majestic Pink City as it is called, to let you witness the undying charisma this old city possesses through its forts, palaces and ancient buildings.\\r\\nStart exploring the hidden features of this royal city of India.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jaipur_City_Tour_12995_1519729146.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":733,\"Title\":\"Jaisalmer Fort\",\"Description\":\"It is in, one of the largest forts around the world. Due to its location at the golden stretches of the Thar Desert, this fort is also known as the &amp;lsquo;Sonar Quila&amp;rsquo; or the &amp;lsquo;Golden Fort&amp;rsquo;. Elevated to about sixty feet, the entrance is made from the finest quality rosewood.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9122586,\"Long\":70.9109769,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/34\\/thumb\\/Jaisalmer Fort_951.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":12996,\"Title\":\"Jaisalmer\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":105359,\"Name\":\"Desert Tulip\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.91754\",\"Long\":\"70.947362\",\"Address\":\"Jodhpur Road Jaisalmer 345001\"},\"Images\":{\"Image\":[{\"ImagId\":2289871,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_27_t.jpg\"},{\"ImagId\":2289872,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_29_t.jpg\"},{\"ImagId\":2289873,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_30_t.jpg\"},{\"ImagId\":2289874,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_26_t.jpg\"},{\"ImagId\":2289875,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_28_t.jpg\"},{\"ImagId\":2289876,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_32_t.jpg\"},{\"ImagId\":2289877,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_33_t.jpg\"},{\"ImagId\":2289878,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_31_t.jpg\"},{\"ImagId\":2289879,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_25_t.jpg\"},{\"ImagId\":2289880,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_10_t.jpg\"},{\"ImagId\":2289881,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_11_t.jpg\"},{\"ImagId\":2289882,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_12_t.jpg\"},{\"ImagId\":2289883,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_13_t.jpg\"},{\"ImagId\":2289884,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_14_t.jpg\"},{\"ImagId\":2289885,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_15_t.jpg\"},{\"ImagId\":2289886,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_16_t.jpg\"},{\"ImagId\":2289887,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_17_t.jpg\"},{\"ImagId\":2289888,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_18_t.jpg\"},{\"ImagId\":2289889,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_19_t.jpg\"},{\"ImagId\":2289890,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_20_t.jpg\"},{\"ImagId\":2289891,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_21_t.jpg\"},{\"ImagId\":2289892,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_22_t.jpg\"},{\"ImagId\":2289893,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_23_t.jpg\"},{\"ImagId\":2289894,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_24_t.jpg\"},{\"ImagId\":2289895,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_1_t.jpg\"},{\"ImagId\":2289896,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_2_t.jpg\"},{\"ImagId\":2289897,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_3_t.jpg\"},{\"ImagId\":2289898,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_4_t.jpg\"},{\"ImagId\":2289899,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_5_t.jpg\"},{\"ImagId\":2289900,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_6_t.jpg\"},{\"ImagId\":2289901,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_7_t.jpg\"},{\"ImagId\":2289902,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_8_t.jpg\"},{\"ImagId\":2289903,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_9_t.jpg\"}]},\"CityId\":12996,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Jaisalmer, Desert Tulip Hotel &amp;amp; Resort is close to Gadi Sagar Tank and Patwon-ki-Haveli.  This 4-star resort is within close proximity of Jaisalmer Fort and Bhatia Market.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 64 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and slippers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreation opportunities including a health club and an outdoor pool. Additional amenities at this resort include complimentary wireless Internet access, an arcade\\/game room, and wedding services.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the resort&amp;apos;s 2 restaurants. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges. A complimentary breakfast is included.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, limo\\/town car service, and dry cleaning\\/laundry services. Guests may use a roundtrip airport shuttle for a surcharge, and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5280000\\/5275600\\/5275541\\/5275541_27_t.jpg\",\"AccoAminitiesMask\":\"110110001000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":105432,\"Name\":\"Himmatgarh Palace\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.919192\",\"Long\":\"70.905208\",\"Address\":\"Ramgarh Road Jaisalmer\"},\"Images\":{\"Image\":[{\"ImagId\":2290841,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/890\\/1124217cdmssabrevfm_img_pho_000_nc__620290_Room___A.jpg\"},{\"ImagId\":2290842,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/899\\/1124217cdmssabrevfm_img_pho_000_nc__620296_Exterior___C.jpg\"},{\"ImagId\":2290843,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/908\\/1124217cdmssabrevfm_img_pho_000_nc__620293_Pool___A.jpg\"},{\"ImagId\":2290844,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/917\\/1124217cdmssabrevfm_img_pho_000_nc__620299_Exterior___C.jpg\"},{\"ImagId\":2290845,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/926\\/1124217cdmssabrevfm_img_pho_000_nc__620302_Exterior___C.jpg\"},{\"ImagId\":2290846,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/935\\/1124217cdmssabrevfm_img_pho_000_nc__620308_Exterior___C.jpg\"},{\"ImagId\":2290847,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/944\\/1124217cdmssabrevfm_img_pho_000_nc__620305_Exterior___C.jpg\"}]},\"CityId\":12996,\"Brief\":\"The hotel is 3 kilometres from the airport and 3 kilometres from the railway station. The hotel is situated on a higher plateau and provides a splendid, breathtaking view of the entire city and the Fort of Jaisalmer.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/19\\/748\\/890\\/1124217cdmssabrevfm_img_pho_000_nc__620290_Room___A.jpg\",\"AccoAminitiesMask\":\"100000000000000000\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":484489,\"Name\":\"Kasam Desert Safari Camp\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.8542955\",\"Long\":\"70.5514316\",\"Address\":\"Near Air Force Circle, Sam Sand Dunes, near Sunset Point, Jaisalmer, Rajasthan 345001, India\"},\"Images\":[],\"CityId\":12996,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":731,\"Title\":\"Jaipur City Tour\",\"Description\":\"Here is an enthusiastic tour of Jaipur, the majestic Pink City as it is called, to let you witness the undying charisma this old city possesses through its forts, palaces and ancient buildings.\\r\\nStart exploring the hidden features of this royal city of India.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jaipur_City_Tour_12995_1519729146.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":733,\"Title\":\"Jaisalmer Fort\",\"Description\":\"It is in, one of the largest forts around the world. Due to its location at the golden stretches of the Thar Desert, this fort is also known as the &amp;lsquo;Sonar Quila&amp;rsquo; or the &amp;lsquo;Golden Fort&amp;rsquo;. Elevated to about sixty feet, the entrance is made from the finest quality rosewood.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9122586,\"Long\":70.9109769,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/34\\/thumb\\/Jaisalmer Fort_951.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":532780,\"Name\":\"Regenta Central Udaipur\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5896533\",\"Long\":\"73.6954523\",\"Address\":\"8,Hazareshwar Colony, HMQW+R4Q, Court Chowk, Court Choraha, Madhuban, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532783,\"Name\":\"Hotel Devraj Niwas on Lake Pichola Udaipur\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.579183\",\"Long\":\"73.682457\",\"Address\":\"32, Lal Ghat Road, Old City, Silawatwari, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":731,\"Title\":\"Jaipur City Tour\",\"Description\":\"Here is an enthusiastic tour of Jaipur, the majestic Pink City as it is called, to let you witness the undying charisma this old city possesses through its forts, palaces and ancient buildings.\\r\\nStart exploring the hidden features of this royal city of India.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jaipur_City_Tour_12995_1519729146.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":733,\"Title\":\"Jaisalmer Fort\",\"Description\":\"It is in, one of the largest forts around the world. Due to its location at the golden stretches of the Thar Desert, this fort is also known as the &amp;lsquo;Sonar Quila&amp;rsquo; or the &amp;lsquo;Golden Fort&amp;rsquo;. Elevated to about sixty feet, the entrance is made from the finest quality rosewood.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9122586,\"Long\":70.9109769,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/34\\/thumb\\/Jaisalmer Fort_951.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1340,\"Title\":\"Patwon Ki Haveli\",\"Description\":\"Dipped in an enchanting shade of yellow, Patwon ki Haveli grabs the attention of every visitor. The intricacy of this architecture lies in its exquisite wall paintings, balconies that open to a panoramic view, gateways, arches and most importantly the mirror works on the wall.\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9138167,\"Long\":70.917527,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/33\\/thumb\\/Patwon Ki Haveli_393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1517,\"Title\":\"Sam Sand Dunes\",\"Description\":\"Sam sand dunes are indeed one of the most authentic desert dune sites in whole India.  Here one can find 30 to 60-meter tall sand dunes .\",\"CurrencyType\":0,\"CityId\":12996,\"CityName\":\"Jaisalmer\",\"Lat\":26.9157487,\"Long\":70.9083443,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/32\\/thumb\\/Sam Sand Dunes_590.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"335184\",\"Title\":\"Arrive in Jaipur\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Jaipur, and be ready for a wonderful journey to &amp;ldquo;Best of Rajasthan Tour&amp;rdquo;. At Jaipur Airport or Railway station our Driver will meet you and drive you to hotel in Jaipur.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jaipur &amp;ldquo;The Pink City&amp;rdquo;. Founded in AD 1727 by Maharaja Sawai Jai Singh II, and planned by Vidyadhar Bhattacharya, Jaipur holds the distinction of being the first planned city of India. The story goes that in 1876, the Prince of Wales visited India on a tour. Since the colour pink was symbolic of hospitality, Maharaja Ram Singh of Jaipur painted the entire city pink. The pink that colours the city makes for a marvellous spectacle to behold. With broad avenues and spacious gardens, the city is steeped in history and culture. Here the past comes alive in magnificent forts and palaces, blushed pink, where once lived the maharajas. The bustling bazaars of Jaipur, famous for Rajasthan jewellery, fabric and shoes, possess a timeless quality and are a treasure-trove for the shoppers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival check in at hotel. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335186\",\"Title\":\"Jaipur Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceeds to the Jaipur City tour. Visit Amber Fort, Jantar Mantar, Hawa Mahal, and City Palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Amber or Amer Palace fort a UNESCO World Heritage Site has located 11 km from the main city. Raja Man Singh, I began construction in 1592 and the palace, which was built as a strong, safe haven against attacking enemies, was completed by Mirja Raja Jai Singh. The contrast between the harsh exterior and the inviting interior couldn&amp;rsquo;t be more surprising. The magnificent Amer Fort is an extensive palace complex that has been built with pale yellow and pink sandstone and with white marble. The palace is nearly seven centuries old and has a legendary past. The next stop is City Palace, located deep within the walled city, the City Palace Complex was conceived and built by Maharaja Sawai Jai Singh II, the founder of Jaipur. A beautiful fusion of Mughal and Rajput architecture, the palace is still home to the last ruling royal family which lives in a private section of the palace. Maharaja Sawai Jai Singh II is credited with building most of the structures, but it was expanded upon by later rulers as well. Further, proceed to Jantar Mantar, Jantar Mantar is one of the oldest astronomical observatories featuring the world&amp;rsquo;s largest stone sundial. Built by the Rajput king Sawai Jai Singh II - the founder of Jaipur city, the monument was completed in 1734. Later visit Hawa Mahal, the five-storey building looks like a honeycomb of a beehive and it is always windy inside, owing to the numerous windows and jharokhas. This amazing ventilation that the palace enjoys is the reason why it was named the Hawa Mahal, which literally translates into the &amp;ldquo;Palace of the Winds&amp;rdquo; The Hawa Mahal is a five-storey building, and it is the tallest building in the world that has been built without a foundation. Rest day is free for Shopping. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532922,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":731,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335188\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335190\",\"Title\":\"Drive to Jodhpur (350 Km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning After Breakfast drive to Jodhpur by road. &amp;nbsp;Jodhpur is also &amp;ldquo;Blue City&amp;rdquo; The name is clearly befitting as most of the architecture &amp;ndash; forts, palaces, temples, Havelis, and even houses are built in vivid shades of blue.&amp;nbsp;Jodhpur marks its origin back to the year of 1459 AD. The history of this prosperous city revolves around the Rathore clan. Rao Jodha, the chief of the Rathore Clan is credited with the origin of Jodhpur in India. The city is known to be built in place of the ancient capital, Mandore of the state of Manwar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival check-in at your hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":423427,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":423448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335192\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335194\",\"Title\":\"Jodhpur sightseeing and Drive to Jaisalmer (280 km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast proceeds to the Jodhpur city tour. Visit Mehrangarh Fort, Umaid Bhawan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Mehrangarh Fort was built by Rao Jodha in 1459 in Jodhpur and is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. Mehrangarh Fort still bears the imprints of cannonball attacks courtesy of the armies of Jaipur on its second gate. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums, and galleries allure everyone.&amp;nbsp;The fort also has one of the most well-stocked museums in Rajasthan.&amp;nbsp;Later Visit Umaid Bhawan. Umaid Bhawan Palace was built by Maharaja Umaid Singh in 1929 to counter a famine that had hit the state at the time. It was also known as the Chittar Palace while being constructed thanks to the use of stones drawn from Chittar hill. The palace was designed by HV Lanchester, a renowned British architect, and was completed in 16 years. Built with sandstone and marble, the architecture of the palace is described as a blend of Indo-Saracenic, Classical Revival, and Western Art Deco styles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later proceed to Jaisalmer. Jaisalmer is popularly known as &amp;ldquo;Golden City&amp;rdquo; because of its golden sand dunes and castles built with golden honey sandstones. Jaisalmer traces its inception to the 12th century. History tells us of Rawal Jaisal, the eldest heir of the Rawal of Deoraj, was passed over for the throne of Lodurva and a younger half-brother was crowned king. Rawal Jaisal went looking for a new location to set up his capital when he came across sage Eesul. It was in 1156 that Rawal Jaisal constructed a mud fort, named it Jaisalmer after himself and declared it his capital. Jaisalmer is adorned with lakes, ornate Jain temples, and Havelis.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival check-in at the hotel. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":105432,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":105359,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1113,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1832,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335196\",\"Title\":\"Jaisalmer Sightseeing and Sand Dunes\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, proceed to Jaisalmer city tour. Visit Jaisalmer fort also known as &amp;ldquo;Sonar Quila&amp;rdquo; (Golden Fort) as it rises from the desert itself and seems to become one with the golden hues of the sand. Built-in 1156, Jaisalmer Fort gets its name from the former Bhati Rajput ruler Rao Jaisal. More than three thousand people live within the fort walls with multiple entrance gates on the path up top, which make It as the only &amp;#39;living fort&amp;#39; in India. Later visit Patwon ki Haveli, which is the largest and the most elaborately carved havelis in Jaisalmer, this five-storey structure sits proudly in a narrow street. &amp;nbsp;It is a cluster of five small havelis built by a rich trader in the 19th Century. Locals also refer to the haveli as Kothari&amp;rsquo;s Patwa Haveli.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, proceed to &amp;ldquo;Sam Sand dunes&amp;rdquo; situated 40 Km from Jaisalmer, the dunes are located over calm and undulating stretches of golden yellow sand stretching for around 2 kilometers along the borders of the Jaisalmer Desert National Park. Upon arrival check in at Desert Camp. You can enjoy various activities like Camel Ride, Jeep Safari in dunes later back to Camp, enjoy various cultural programmes. Overnight stay at Camp.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":484489,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":733,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1340,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1517,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335198\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12996,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335200\",\"Title\":\"Jaisalmer &ndash; Jodhpur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast check out from Camp and drive to Jodhpur. Upon arrival in Jodhpur hotel check in. Rest day is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":423427,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":423448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335202\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335204\",\"Title\":\"Jodhpur &ndash; Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Morning After Breakfast drive to Udaipur by road. Udaipur the city of lakes is located around azure water lakes and is hemmed in by the lush green hills of Aravallis. The famous Lake Palace, located in the middle of Lake Pichola is one of the most beautiful sights of Udaipur.&amp;nbsp;Udaipur was founded in 1553 by Maharana Udai Singh II as the new capital of the Mewar Kingdom. The beautiful City Palace and Sajjangarh (Monsoon Palace) add to the architectural beauty and grandeur of the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enroute visit Ranakpur or Kumbhalgarh fort (&lt;em&gt;You can select any one of the below&lt;\\/em&gt;)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Ranakpur Jain Temples Built in the 15th century. &amp;nbsp;An architectural marvel in its own right, the Ranakpur Temple came from Dhanna Shah, a Porwal from Ghanerao, under the patronage of Rana Kumbha, the then-ruler of Mewar. The massive temple structure, raised entirely in softly colored marble, stands atop a base of subterranean vaults, sprawling in an area of over 48,000 square feet. Entering the temple complex, it is difficult for someone to not be mesmerized by the vivacity and scale of its designs.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;em&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#ecf0f1&quot;&gt;OR&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Or Kumbhalgarh Fort Kumbhalgarh is the second most important citadel after Chittorgarh in the Mewar region. Kumbhalgarh Fort has the second largest wall (38km) after the great wall of China. Constructed on the foothills of the Aravalli ranges, and built in the 15th century AD by Rana Kumbha it is surrounded by thirteen hill peaks of the ranges and is perched at an elevation of 1,914 m. The magnificent fort is situated in the middle of a forest that has been turned into a wildlife sanctuary. The inaccessibility and hostility of the topography lend a semblance of invincibility to the fort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive to Udaipur. Upon arrival check-in at your hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532780,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335206\",\"Title\":\"Udaipur Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, visit, Saheliyon Ki Bari,&amp;nbsp;City Palace, and Lake Pichola. Sahelion-Ki-Bari. Built by Maharana Sangram Singh II as a garden for women, Saheliyon-ki-Bari or the Garden of the Maidens is a popular tourist destination. Along with a small museum, it has several attractions such as marble elephants, fountains, kiosks and a lotus pool. Later visit City Palace.&amp;nbsp; The City Palace towers over Lake Pichola. The balconies, cupolas, and towers of the palace give a wonderful view of the lake and the surrounding city. This complex actually consists of four major and several minor palaces that collectively form the magnificent City Palace. The main part of the palace is now preserved as a museum displaying artifacts. After this visit Lake Pichola. Picholi was the name of a village that lent its name to the lake. The islands of Jagniwas and Jagmandir are housed in this lake. Along the eastern banks of the lake lies the City Palace. A boat ride in the lake around sunset offers a breath-taking view of the Lake and City Palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later back to hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532780,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":551,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1360,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"335208\",\"Title\":\"Depart Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast, transfer to Udaipur airport or railway station for your onward journey. Your &amp;ldquo;Best of Rajasthan Tour&amp;rdquo; ends with beautiful memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46554\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32432,\"priceDoubleOcc\":\"33550.00\",\"priceSingleOcc\":100650,\"priceExtraBed\":\"25162.50\",\"priceWithoutBed\":\"16775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16775,\"CEB\":25162.5,\"COSTDO\":33550,\"COSTSO\":100650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30195,\"COSTTO\":30195}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46555\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":42533,\"priceDoubleOcc\":\"44000.00\",\"priceSingleOcc\":132000,\"priceExtraBed\":\"33000.00\",\"priceWithoutBed\":\"22000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22000,\"CEB\":33000,\"COSTDO\":44000,\"COSTSO\":132000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39600,\"COSTTO\":39600}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Check In \\/ Check out time at all the properties would at 1400 Hrs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Airfare \\/ train tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"335184\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[335184],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335186\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[335186],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335188\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[335188],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335190\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[335190],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335192\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[335192],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335194\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[335194],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335196\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[335196],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335198\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[335198],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335200\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[335200],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335202\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[335202],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335204\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[335204],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335206\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[335206],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"335208\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[335208],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jaipur,Jodhpur,Jaisalmer,Udaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India,Jodhpur,Jaisalmer,Udaipur',NULL,'12995,13184,12996,28058',33550,44000,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:52:52','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rajasthan-heritage-ex-jaipur',NULL,NULL,NULL,0),(280,46735,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46735,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/enticing-goa_1673242949\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;WHEN YOU MISS THE BEACH, HEAD TOWARDS GOA !!!&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Escape on a fun-filled holiday with our Goa tour package&amp;nbsp;that promises you the most memorable time of your life. Your Goa tour itinerary will let you explore the gems of North Goa and the calm and serene South Goa. As Goa is all about sun, sand, and spices, you have everything to indulge in a vacation of your dreams. Set off for a remarkable trip of your life by choosing a Goa vacation. We always endeavor to offer you a package that can add memories to your excursion. And thus, our package&amp;nbsp;comprises a visit to all the major tourist attractions that you can&amp;rsquo;t afford to miss out on.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"I Need Trip\",\"Name\":\"SOULFUL GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13701\",\"SupplierName\":\"TRIP STRING\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":533480,\"Name\":\"LA STATION\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5301812\",\"Long\":\"73.7641692\",\"Address\":\"next to Nossa Senhora de Piedade Chapel, Gauravaddo, Calangute, Goa 403516, India\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":56,\"Title\":\"Anjuna Beach\",\"Description\":\"Anjuna Beach in Goa is a perfect paradise for beach lovers. Situated just 8 km away in the west of Mapusa town, this beach is blessed with a bizarre array of red laterite rocks. It is beautifully embellished with picturesque sceneries and so the place is reckoned among the hottest tourist destination of India. Further, its credible palms and rocky crescent give great pleasure to be at Anjuna Beach. It&amp;#039;s distinguished due to the formation of unusual rock placed on a small inlet of white sand and black rock protruding into the sea. It&amp;#039;s a complete package of tourist attractions that has a wide range of activities to offer. Chock-a-blocks with nature enthusiasts every year, the beach which always beckoned the tourist most is none other than Anjuna Beach tour. Anjuna beach Goa is an ideal choice for nature buffs, who love to enjoy full moon parties during the New Year and Christmas.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.2993265,\"Long\":74.123996,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Anjuna_Beach_10576_1580727264.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":103,\"Title\":\"Baga Beach\",\"Description\":\"This is part of a 30 km stretch of beach coastline along the west coast of Goa by the Arabian sea that begins at Fort Aguada continues as Sinquerim Beach, then as Candolim Beach and merges into Calangute Beach and then to Baga beach and then Anjuna Beach and then to Vagator Beach finally ending at Chapora Beach and Fort.As compared to Calangute Beach , it is more quieter and also more isolated. Its scenic beauty, with the creek, the Retreat House perched on the hill and the lack of local tourist buses all have contributed to its unique beauty. It is more popular with western tourists who love to use it as a base for water sports and fishing in the area.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.557049,\"Long\":73.754851,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Baga_Beach_10576_1580727388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":2306,\"Title\":\"Calangute Beach, Bardez, Goa, India\",\"Description\":\"Calangute is by far the most crowded and among beautiful beaches of the northern&amp;mdash;it&amp;#039;s an open expanse of white sand lying around with an entrance area packed with restaurants, stalls, and shops. The atmosphere remains festive during the peak season in winters, when dozens of sheds serving inexpensive mugs of beer, mixed cocktail drinks, and delicious seafood pop up on the beach. Beyond the beach there are some of the tourist&amp;rsquo;s favorite restaurants and shopping centers. You&amp;#039;ll also catch hundreds of stalls, including roadside trinket shops, travel agencies, Oxford Bookstore branches and Caf&amp;eacute; Coffee Day, ATMs and Malini Ramani&amp;#039;s boutique, full with colorful designer clothes.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.549441,\"Long\":73.753486,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Calangute_Beach,_Bardez,_Goa,__10576_1580727584.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":518,\"Title\":\"Fort Aguada\",\"Description\":\"Standing on the crumbling ramparts of what was once the most formidable and impregnable of the Portuguese forts in India, one looks out at a panoramic ocean vista, witnessing the confluence of the Mandovi River and Arabian Sea, over which the fort has kept watch for more than four hundred years.\\r\\nThis is so majestic a sight that it is easy to picture a Portuguese galleon or carrack on the horizon, on the last leg of its arduous voyage from far off Portugal around the Cape of Good Hope, finally able to make safe harbour and replenish its supplies.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.499198,\"Long\":73.76715,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Fort_Aguada_10576_1580727495.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":2318,\"Title\":\"Vagator Beach, Bardez, Goa, India\",\"Description\":\"Vagator Beach, known as Disco Valley, is the best place for trance parties in Goa since 1980s. There are a few famous open air clubs that attract lots of people to the beach that are located in Disco Valley. Vagator Beach is the northernmost beach of Bardez Taluka, Goa. It is located on the opposite bank of the Chapora River from Morjim in Pernem. To the south of Vagator is Anjuna, one of the first hippie haunts of Goa. Found far from the other touristy spots in Goa, Vagator is perfect and calm. Vagator is part into two as it is isolated by a headland.When you remain on the headland confronting the ocean, the shoreline on your privilege is the Big Vagator Beach or North Vagator Beach and the shoreline on the left is Ozran Beach which is famously known as meager Vagator Beach. The shoreline is a decent place to invest some energy in peace and recoups from the allure and hordes of Anjuna.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.602984,\"Long\":73.733627,\"Image\":\"Vagator_Beach,_Bardez,_Goa,_In_10576_1503479300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":159,\"Title\":\"Basilica Of Bom Jesus Church\",\"Description\":\"The Bom Jesus Basilica is Goa&amp;#039;s most renowned church and among the most admired church by Christians worldwide, is partially in wrecks but still holds a model of simplicity and grace, and places a good example of Jesuit architecture. This is the only famous church of Old Goa, which is not coated on the outside, the lime plaster having been exposed off by a ardent Portuguese conservationist in 1950. Situated at Old Goa, 10 km east of Panaji, the Bom Jesus Basilica is a known World Heritage Monument. Bom Jesus&amp;#039; (literally, &amp;#039;Good (or Holy) Jesus&amp;#039;) is the name used for the Ecce Homo in the countries of Portuguese colonization. The Jesuit church is India&amp;rsquo;s first minor basilica, and is considered to be one of the best examples of baroque architecture in India.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.5010803,\"Long\":73.9149535,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/42_1521283561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":16236,\"Title\":\"Dona Paula\",\"Description\":\"&lt;p&gt;Dona Paula, named for a Portuguese romantic heroine popular in local folklore, is an affluent area at the mouth of the Zuari River known for its ocean views. Dona Paula View Point is a lookout and promenade, home to Baroness von Leistner&acirc;&euro;&trade;s 1969 &acirc;&euro;&oelig;Image of India&acirc;&euro;\\u009d statue. Quiet Dona Paula Beach offers water sports and souvenir shops. Restaurants offering western and Indian food.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/4891_1589624942.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":1064,\"Title\":\"Mangueshi Temple\",\"Description\":\"Shri Manguesh Temple is situated at Mangueshi Village in Pirol, Ponda taluka, Goa it is at a separation of 1km from Mardol and near Nagueshi, Panaji the Capital of Goa is around 22 km and Margao 26 km. The 400-year-old Shri Mangesh sanctuary devoted to Shiva emerges with its basic but stunning ly rich structure. The sanctuary is noted for the columns which are thought to be the most delightful among the sanctuary is Goa. There is a noticeable Nandi Bull which is thought to be the Vahana (Ve-hicle) of Shiva. A wonderful seven-storeyed deepstambha (light tower), remains at the doors in the sanctuary complex. The sanctuary likewise has a superb water tank, which is accepted to be the most seasoned part of the sanctuary. The temple is a modern piece of architecture blended with traditional Hindu pattern. The entrance to the temple bears an image, which wards off every thing impure from the inner precincts of the temple and maintains its sanctity.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.445068,\"Long\":73.966769,\"Image\":\"Mangueshi_Temple_10576_1503467756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":1119,\"Title\":\"Miramar Beach\",\"Description\":\"Miramar Beach Situated only three km from Goa&amp;#039;s capital, Panaji, Miramar shoreline is situated at the estuary of waterway Mandovi. The word Miramar is gotten from Portuguese word, which signifies &amp;#039;seeing the ocean&amp;#039;. The shoreline is acclaimed for its brilliant delicate sand and palm trees. It is said that the sand of the shoreline looks brighter in moonlight. The two-km long shoreline is well known and local people and nonnatives visit the shoreline in expansive numbers. It&amp;#039;s a most loved joint for a lackadaisical walk around as the sun sets on the far off skyline. Another fascination of the shoreline is that it offers wonderful perspective of Aguada Fort, worked by the Portuguese to shield their settlement Goa. The fortress is situated crosswise over Mandovi stream.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":30.374367,\"Long\":-86.358558,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Miramar_Beach_10576_1597649745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"336401\",\"Title\":\"Arrival in Goa\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Goa!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival, our tour operator will meet you there for your transfer to the hotel. After check-in, you can relax in your room for a while and the rest of the day is at leisure. Overnight stay at the Goa Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":533480,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336402\",\"Title\":\"Full Day North Goa Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, embark on a full-day North&amp;nbsp;Goa&amp;nbsp;sightseeing tour. During this tour, you will get to visit some of the best beaches of&amp;nbsp;Goa&amp;nbsp;like Baga, Candolim, Calangute and Anjuna. The first attraction as part of the tour is the ancient Fort Aguada, constructed in 1612 to protect&amp;nbsp;Goa&amp;nbsp;from enemy attacks. The fort and its lighthouse, would be an ideal place to click beautiful pictures. After Fort Aguada, you will be visiting following beaches in order: Sinquerim Beach, Calangute Beach, Baga Beach, Anjuna Beach (famous for its white sand and red laterite rocks) and Vagator Beach. At Sinquerim or Calangute Beach, you can enjoy a myriad of water sports (own expense) such as water skiing, parasailing, etc. You can enjoy a picturesque sunset from Chapora Fort, very near to Vagator Beach.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":533480,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":56,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":103,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2306,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":518,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336403\",\"Title\":\"Full Day South Goa Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, embark on a full-day South&amp;nbsp;Goa&amp;nbsp;sightseeing tour. The tour starts with visit to Shri Mangueshi Temple, one of the most visited temple in&amp;nbsp;Goa. Following the temple, continue towards the churches and convents of Old&amp;nbsp;Goa&amp;nbsp;(UNESCO World Heritage Site) like Basilica of Bom Jesus, Church of Our Lady and Se Cathedral. Post lunch, visit the idyllic Dona Paula Bay to enjoy spectacular views of the Mormugao Harbour. Later take a walk at the Miramar Beach. Make your holiday in&amp;nbsp;Goa&amp;nbsp;more memorable by indulging in street shopping at the Panjim Market. In the evening, you can also go for river boat cruise ride at the Mandovi River (at extra cost)&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":533480,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":159,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16236,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1064,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1119,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336404\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post Breakfast, Day at leisure .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay Overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":533480,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336405\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast, check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46735\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7425.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":7178,\"priceDoubleOcc\":\"7425.00\",\"priceSingleOcc\":22275,\"priceExtraBed\":\"5569.30\",\"priceWithoutBed\":\"3712.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3712.5,\"CEB\":5569.3,\"COSTDO\":7425,\"COSTSO\":22275,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":6682.5,\"COSTTO\":6682.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers are available for areas like Baga, Calangute, Candolim &amp;amp; Arpora only.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport transfers on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing on SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drinks on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"336401\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[336401],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336402\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[336402],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336403\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[336403],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336404\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[336404],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336405\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[336405],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India',NULL,'10576',7425,7425,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:52:23','2023-09-07 00:00:00',1,1,'1','1','1',NULL,NULL,NULL,NULL,'soulful-goa',NULL,NULL,NULL,0),(281,46812,1,5293,0,0,0,'Honeymoon,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46812,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/delightful-bali_1673265441\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;color:#990033&quot;&gt;&lt;strong&gt;Get Ready For A....&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;color:#990033&quot;&gt;&lt;strong&gt;Romantic Escape To Bali!!&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;On the earth especially, there is no location like Bali. A wonderful fusion of people, culture, nature, activities, weather, gastronomic pleasures, nightlife, and lovely lodging. Bali is famed for its captivating arts, which include ancient and modern dance forms, magnificent sculptures, flamboyant paintings, superb leather, gorgeous metallurgy, and amazing music. Bali is blessed with a wealth of natural resources. It has a few lesser-known yet spectacular islands, like the adventurous Nusa Penida, Nusa Lembongan, and Nusa Ceningan.In temples like Uluwatu Temple and Ulun Danu Beratan Temple, you can find tranquility. Mountains like Mount Agung guarantee a strenuous walk and an amazing sunrise. Tegalalang&amp;#39;s rice terraces provide the ideal picturesque scenery for you to take in. There is a good reason why Bali is one of the most well-known islands. It is a center for water activities because it is surrounded by oceans and beaches.&amp;nbsp; Bali Museums won&amp;#39;t fail to surprise you and make you fall in love with the nation because they display the country&amp;#39;s true character. You shouldn&amp;#39;t miss the authentic cuisines Bali has to offer you because Balinese food is unique.&amp;nbsp;Bali is also renowned throughout the world for its kind hospitality.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Seminyak\",\"DestinationPlacesSysId\":24795,\"SourcePlaces\":\"Kuta\",\"SourcePlaceSysId\":14633,\"AgencyName\":\"I Need Trip\",\"Name\":\"Delightful Bali\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-01-20\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14633,\"Title\":\"Kuta\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":115919,\"Name\":\"Kuta Central Park Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.7107969361235\",\"Long\":\"115.17900502447\",\"Address\":\"Jl. Patih Jelantik Kuta 80361\"},\"Images\":{\"Image\":[{\"ImagId\":2526975,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_39_t.jpg\"},{\"ImagId\":2526976,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_42_t.jpg\"},{\"ImagId\":2526977,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_38_t.jpg\"},{\"ImagId\":2526978,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_46_t.jpg\"},{\"ImagId\":2526979,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_51_t.jpg\"},{\"ImagId\":2526980,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_54_t.jpg\"},{\"ImagId\":2526981,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_53_t.jpg\"},{\"ImagId\":2526982,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/118a56e8_t.jpg\"},{\"ImagId\":2526983,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1449c1ea_t.jpg\"},{\"ImagId\":2526984,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4b112694_t.jpg\"},{\"ImagId\":2526985,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/a12c9228_t.jpg\"},{\"ImagId\":2526986,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/bc9228f2_t.jpg\"},{\"ImagId\":2526987,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/22cfb74a_t.jpg\"},{\"ImagId\":2526988,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/f645a976_t.jpg\"},{\"ImagId\":2526989,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1779a74f_t.jpg\"},{\"ImagId\":2526990,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/1998e07d_t.jpg\"},{\"ImagId\":2526991,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/21772106_t.jpg\"},{\"ImagId\":2526992,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/87acb787_t.jpg\"},{\"ImagId\":2526993,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/936a32d5_t.jpg\"},{\"ImagId\":2526994,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/d2e4cf7c_t.jpg\"},{\"ImagId\":2526995,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/6f578e0d_t.jpg\"},{\"ImagId\":2526996,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/7bf55ca2_t.jpg\"},{\"ImagId\":2526997,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/8edec481_t.jpg\"},{\"ImagId\":2526998,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/0b2e91ff_t.JPG\"},{\"ImagId\":2526999,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/375e87cb_t.JPG\"},{\"ImagId\":2527000,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/57199ad0_t.JPG\"},{\"ImagId\":2527001,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/01da3d2a_t.jpg\"},{\"ImagId\":2527002,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/b783ce17_t.jpg\"},{\"ImagId\":2527003,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/22a56433_t.jpg\"},{\"ImagId\":2527004,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/c517b08d_t.jpg\"},{\"ImagId\":2527005,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/acdde14d_t.jpg\"},{\"ImagId\":2527006,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/bf2ebdd8_t.jpg\"},{\"ImagId\":2527007,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_66_t.jpg\"},{\"ImagId\":2527008,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_77_t.jpg\"},{\"ImagId\":2527009,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_71_t.jpg\"},{\"ImagId\":2527010,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_79_t.jpg\"},{\"ImagId\":2527011,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_80_t.jpg\"},{\"ImagId\":2527012,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_73_t.jpg\"},{\"ImagId\":2527013,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_75_t.jpg\"},{\"ImagId\":2527014,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_78_t.jpg\"},{\"ImagId\":2527015,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_81_t.jpg\"},{\"ImagId\":2527016,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_82_t.jpg\"},{\"ImagId\":2527017,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_84_t.jpg\"},{\"ImagId\":2527018,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_83_t.jpg\"},{\"ImagId\":2527019,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_85_t.jpg\"},{\"ImagId\":2527020,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_86_t.jpg\"},{\"ImagId\":2527021,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_87_t.jpg\"},{\"ImagId\":2527022,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_52_t.jpg\"},{\"ImagId\":2527023,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_55_t.jpg\"},{\"ImagId\":2527024,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_56_t.jpg\"},{\"ImagId\":2527025,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_59_t.jpg\"},{\"ImagId\":2527026,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_63_t.jpg\"},{\"ImagId\":2527027,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_62_t.jpg\"},{\"ImagId\":2527028,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_70_t.jpg\"},{\"ImagId\":2527029,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_61_t.jpg\"},{\"ImagId\":2527030,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_65_t.jpg\"},{\"ImagId\":2527031,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_68_t.jpg\"},{\"ImagId\":2527032,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_60_t.jpg\"},{\"ImagId\":2527033,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_67_t.jpg\"},{\"ImagId\":2527034,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_69_t.jpg\"},{\"ImagId\":2527035,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_64_t.jpg\"},{\"ImagId\":2527036,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_88_t.jpg\"},{\"ImagId\":2527037,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_89_t.jpg\"},{\"ImagId\":2527038,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_90_t.jpg\"},{\"ImagId\":2527039,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_91_t.jpg\"},{\"ImagId\":2527040,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_92_t.jpg\"},{\"ImagId\":2527041,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_93_t.jpg\"},{\"ImagId\":2527042,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_94_t.jpg\"},{\"ImagId\":2527043,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_97_t.jpg\"},{\"ImagId\":2527044,\"Type\":\"Thumbnail\",\"Order\":70,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_95_t.jpg\"},{\"ImagId\":2527045,\"Type\":\"Thumbnail\",\"Order\":71,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_96_t.jpg\"},{\"ImagId\":2527046,\"Type\":\"Thumbnail\",\"Order\":72,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/010a5bdc_t.jpg\"},{\"ImagId\":2527047,\"Type\":\"Thumbnail\",\"Order\":73,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/8884af40_t.jpg\"},{\"ImagId\":2527048,\"Type\":\"Thumbnail\",\"Order\":74,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/db4f0218_t.jpg\"},{\"ImagId\":2527049,\"Type\":\"Thumbnail\",\"Order\":75,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/fba92c62_t.jpg\"},{\"ImagId\":2527050,\"Type\":\"Thumbnail\",\"Order\":76,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_12_t.jpg\"},{\"ImagId\":2527051,\"Type\":\"Thumbnail\",\"Order\":77,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_17_t.jpg\"},{\"ImagId\":2527052,\"Type\":\"Thumbnail\",\"Order\":78,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_18_t.jpg\"},{\"ImagId\":2527053,\"Type\":\"Thumbnail\",\"Order\":79,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_20_t.jpg\"},{\"ImagId\":2527054,\"Type\":\"Thumbnail\",\"Order\":80,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_27_t.jpg\"},{\"ImagId\":2527055,\"Type\":\"Thumbnail\",\"Order\":81,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_30_t.jpg\"},{\"ImagId\":2527056,\"Type\":\"Thumbnail\",\"Order\":82,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_31_t.jpg\"},{\"ImagId\":2527057,\"Type\":\"Thumbnail\",\"Order\":83,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_32_t.jpg\"},{\"ImagId\":2527058,\"Type\":\"Thumbnail\",\"Order\":84,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_41_t.jpg\"}]},\"CityId\":14633,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Kuta Central Park Hotel in Kuta, you&amp;apos;ll be connected to the airport and convenient to Mall Bali Galeria and Kuta Beach.  This 4-star hotel is within close proximity of Kuta Square and Legian Beach.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 225 air-conditioned rooms featuring refrigerators and LED televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool, a sauna, and a fitness center. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can catch a ride to the beach or shopping on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Kuta? This hotel has 1291 square feet (120 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge during limited hours, and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4430000\\/4425500\\/4425432\\/4425432_39_t.jpg\",\"AccoAminitiesMask\":\"111100001000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":521132,\"Name\":\"Risata Bali Resort and Spa\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.736612599999999\",\"Long\":\"115.1652341\",\"Address\":\"Jl. Wana Segara, Kuta, Kec. Kuta Sel., Kabupaten Badung, Bali 80361, Indonesia\"},\"Images\":[],\"CityId\":14633,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_521132\\/5293_cb8502c16931f9e0ad1d0765dc0554b51663659587.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}},{\"CityId\":24795,\"Title\":\"Seminyak\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512499,\"Name\":\"Aldeoz Grand Kancana Villa Bali\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.67679\",\"Long\":\"115.1725734\",\"Address\":\"Jalan Gunung Jayawijaya 494 Kerobokan, Kerobokan Kelod, Kuta Utara, Badung Regency, Bali 80361, Indonesia\"},\"Images\":[],\"CityId\":24795,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"One Bedroom Pool Villa\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":532774,\"Name\":\"The Payogan Villa Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.474995\",\"Long\":\"115.2515883\",\"Address\":\"Jl. Cocoa II No.77, Kedewatan, Kecamatan Ubud, Kabupaten Gianyar, Bali 80571, Indonesia\"},\"Images\":[],\"CityId\":24795,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"One Bedroom Pool Villa\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"336833\",\"Title\":\"Arrival in Kuta\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to hotel. Check in and relax. Your evening is at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":521132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336835\",\"Title\":\"Kintamani &amp; Ubud Full Day Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full day tour to &lt;strong&gt;Kintamani and Ubud.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The perfect introduction to Bali&amp;#39;s fascinating culture and handicrafts, fascinating insight into Bali&amp;rsquo;s artistic heritage at Ubud, beautiful natural landscape, and the breathtaking view of an active volcano. All the guests visiting Monkey Forests are hereby advised to take due care that they should avoid feeding monkeys or tempt them by carrying any bags etc. that gives impression of food being in the bag. The monkeys can bite if due care is not taken. if any such act takes place , it will be at your own risk.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":521132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2912,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336837\",\"Title\":\"Full Day Water Sports folllowed by Uluwatu Temple Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for &lt;strong&gt;Water Sports Activities&lt;\\/strong&gt;. One Round of Banana Boat, Single Parasailing and Jet Ski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand. Next enjoy your visit to &lt;strong&gt;Uluwatu Temple&lt;\\/strong&gt;, a Balinese temple to the sea gods with a commanding view of the Indian Ocean.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":115919,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":521132,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7918,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336839\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14633,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336841\",\"Title\":\"Transfer to Seminyak Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today post breakfast check out from the Kuta Hotel. You will be transferred to your beautiful villa with a private pool in Seminyak. Check in and relax for the day. You can explore the near-by places or just relax within the Hotel premises.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":512499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"One Bedroom Pool Villa\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"One Bedroom Pool Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336843\",\"Title\":\"Full Day Ulun Danu Beratan Temple Tour Followed by Tanah Lot Temple tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Post breakfast at the hotel, get ready to explore the &lt;strong&gt;Ulun Danu Beratan Temple&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It is a famous picturesque landmark and a significant temple complex located on the western side of Beratan Lake in Bedugul, central Bali. Ulun Danu literally &amp;#39;the source temple of Lake Beratan&amp;#39;. Next visit will be followed by a dramatic &lt;strong&gt;Tanah Lot Temple&lt;\\/strong&gt; one of the splendid tenples in Bali. Perching a top an enormous rock, its completely surrounded by the waters of the Indian Ocean during high tide, don&amp;#39;t miss this opportunity to watch the sunset over this temple pictured above.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":512499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"One Bedroom Pool Villa\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"One Bedroom Pool Villa\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3090,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336845\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Post breakfast today, transfer to the airport. Bid adieu to Bali with loads of pictures and fond memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46812\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19520.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18763,\"priceDoubleOcc\":\"19520.10\",\"priceSingleOcc\":36770.1,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19520.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19520.1,\"COSTSO\":36770.1,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18707,\"priceDoubleOcc\":\"19435.00\",\"priceSingleOcc\":36685,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19435,\"COSTSO\":36685,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"19492.50\",\"priceSingleOcc\":36742.5,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19492.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19492.5,\"COSTSO\":36742.5,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18707,\"priceDoubleOcc\":\"19435.00\",\"priceSingleOcc\":36685,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19435,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19435,\"COSTSO\":36685,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18745,\"priceDoubleOcc\":\"19492.50\",\"priceSingleOcc\":36742.5,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19492.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19492.5,\"COSTSO\":36742.5,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18763,\"priceDoubleOcc\":\"19520.10\",\"priceSingleOcc\":36770.1,\"priceExtraBed\":\"16100.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19520.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":16100,\"COSTDO\":19520.1,\"COSTSO\":36770.1,\"CostQuad\":null,\"ACEB\":17250,\"COSTTO\":17250}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46813\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23480.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21787,\"priceDoubleOcc\":\"23480.70\",\"priceSingleOcc\":41880.7,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23480.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":23480.7,\"COSTSO\":41880.7,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21390,\"priceDoubleOcc\":\"22885.00\",\"priceSingleOcc\":41285,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22885,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":22885,\"COSTSO\":41285,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21390,\"priceDoubleOcc\":\"22885.00\",\"priceSingleOcc\":41285,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22885,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":22885,\"COSTSO\":41285,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":41400,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":23000,\"COSTSO\":41400,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21697,\"priceDoubleOcc\":\"23345.00\",\"priceSingleOcc\":41745,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23345,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":23345,\"COSTSO\":41745,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400},{\"From\":\"2023-01-09\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21787,\"priceDoubleOcc\":\"23480.70\",\"priceSingleOcc\":41880.7,\"priceExtraBed\":\"18400.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23480.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":18400,\"COSTDO\":23480.7,\"COSTSO\":41880.7,\"CostQuad\":null,\"ACEB\":18400,\"COSTTO\":18400}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As per the uploaded package date USD@82&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per new guidelines&lt;strong&gt; TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double\\/twin sharing basis as per itinerary with Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfer on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Kintamani tour with Ubud Village on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Water Sports Including 1x Banana, 1x Parasailing &amp;amp; 1x Jet Ski Followed by Uluwatu Temple tour on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Bedugul Temple tour Followed by Tanah Lot Temple tour on Private Basis&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbsp;with a validity of 72&amp;nbsp;hrs from the departure date&amp;nbsp;from&amp;nbsp;ICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsp;hrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"336833\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[336833],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336835\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[336835],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336837\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[336837],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336839\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[336839],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336841\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[336841],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336843\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[336843],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336845\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[336845],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[]}}','Kuta,Seminyak','Kuta,South East Asia,Indonesia,Orient,Seminyak,Bali',NULL,'14633,24795',19435,23481,5,NULL,NULL,NULL,2,'',0,'2023-01-20 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'Indonesia','102','2023-07-20 15:52:53','2023-01-20 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'delightful-bali',NULL,NULL,NULL,0),(282,46740,1,5293,0,0,0,'Honeymoon,Beach,Family,New Year,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46740,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/soulful-goa_1691392784\",\"BookingValidUntill\":\"2023-04-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;WHEN YOU MISS THE BEACH, HEAD TOWARDS GOA!!!&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Escape on a fun-filled holiday with our Goa tour package&amp;nbsp;that promises you the most memorable time of your life. Your Goa tour itinerary will let you explore the gems of North Goa and the calm and serene South Goa. As Goa is all about sun, sand, and spices, you have everything to indulge in a vacation of your dreams. Set off for a remarkable trip of your life by choosing a Goa vacation. We always endeavor to offer you a package that can add memories to your excursion. And thus, our package&amp;nbsp;comprises a visit to all the major tourist attractions that you can&amp;rsquo;t afford to miss out on.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Goa\",\"DestinationPlacesSysId\":10576,\"SourcePlaces\":\"Goa\",\"SourcePlaceSysId\":10576,\"AgencyName\":\"I Need Trip\",\"Name\":\"SOULFUL GOA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13701\",\"SupplierName\":\"TRIP STRING\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,New Year,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-08-07\",\"To\":\"2023-04-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10576,\"Title\":\"Goa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":363774,\"Name\":\"bloomSuites | Calangute\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.5423868\",\"Long\":\"73.7308832\",\"Address\":\"Naikawaddo, Opp Cafe Coffee Day Calangute Bardez,Goa,India, 403516\"},\"Images\":[],\"CityId\":10576,\"Brief\":\"World Class affordable hotel experience now in Goa! Ideally situated on the Calangute-Candolim road &amp; diagonally opposite Cafe Coffee Day, one can&#039;t get closer to the action. Chill by the amazing pool by day &amp; hit the North Goa party scene by night-a fantastic holiday awaits!\\n\\n&lt;b&gt;How to reach&lt;\\/b&gt;\\nFrom St. Anthonys Chapel, take a right towards Calangute. 50 mteres ahead of HDFC Bank and diagonally opposite Cafe Coffee Day will be the hotel.\\n\\n&lt;b&gt;Rooms&lt;\\/b&gt;\\n\\nSuperior Twin\\nPerfect when travelling with friends or family, Superior rooms come with a twin bed giving you warmth of home experience. One could relax with a cup of coffee in the balcony or feel the fresh sea breeze in the room.\\n\\nSuperior King\\nBright interiors, stylish designs, sea breeze and pleasing lighting, Superior rooms come with a King bed. Designed to give the best holiday experience, one could relax with a cup of coffee (or a perfectly cold beer!) in the balcony.\\n\\nPool Suite\\nAn unforgettable experience! Large, well-designed, Pool suite, includes bed room with bathroom, a private pool and pool deck.\\n\\nStudio Suite\\nAn unforgettable experience! Large, well-designed, Sudio Suite, includes living room, bed room with bathroom and a balcony.\\n\\nDeluxe Suite\\nGuests can spoil themselves in this 400 sqft one bedroom Deluxe Suite which comes with a Living Room, a bed room with bathroom and 2 spacious balconies.\\n\\nPremium Suite\\nThis 450 sqft one bedroom Deluxe Suite comes with a Living Room, a bed room with bathroom and a bath tub with luxurious comfort with a soaking tub for two and 2 spacious balconies.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":56,\"Title\":\"Anjuna Beach\",\"Description\":\"Anjuna Beach in Goa is a perfect paradise for beach lovers. Situated just 8 km away in the west of Mapusa town, this beach is blessed with a bizarre array of red laterite rocks. It is beautifully embellished with picturesque sceneries and so the place is reckoned among the hottest tourist destination of India. Further, its credible palms and rocky crescent give great pleasure to be at Anjuna Beach. It&amp;#039;s distinguished due to the formation of unusual rock placed on a small inlet of white sand and black rock protruding into the sea. It&amp;#039;s a complete package of tourist attractions that has a wide range of activities to offer. Chock-a-blocks with nature enthusiasts every year, the beach which always beckoned the tourist most is none other than Anjuna Beach tour. Anjuna beach Goa is an ideal choice for nature buffs, who love to enjoy full moon parties during the New Year and Christmas.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.2993265,\"Long\":74.123996,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Anjuna_Beach_10576_1580727264.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":103,\"Title\":\"Baga Beach\",\"Description\":\"This is part of a 30 km stretch of beach coastline along the west coast of Goa by the Arabian sea that begins at Fort Aguada continues as Sinquerim Beach, then as Candolim Beach and merges into Calangute Beach and then to Baga beach and then Anjuna Beach and then to Vagator Beach finally ending at Chapora Beach and Fort.As compared to Calangute Beach , it is more quieter and also more isolated. Its scenic beauty, with the creek, the Retreat House perched on the hill and the lack of local tourist buses all have contributed to its unique beauty. It is more popular with western tourists who love to use it as a base for water sports and fishing in the area.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.557049,\"Long\":73.754851,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Baga_Beach_10576_1580727388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":2306,\"Title\":\"Calangute Beach, Bardez, Goa, India\",\"Description\":\"Calangute is by far the most crowded and among beautiful beaches of the northern&amp;mdash;it&amp;#039;s an open expanse of white sand lying around with an entrance area packed with restaurants, stalls, and shops. The atmosphere remains festive during the peak season in winters, when dozens of sheds serving inexpensive mugs of beer, mixed cocktail drinks, and delicious seafood pop up on the beach. Beyond the beach there are some of the tourist&amp;rsquo;s favorite restaurants and shopping centers. You&amp;#039;ll also catch hundreds of stalls, including roadside trinket shops, travel agencies, Oxford Bookstore branches and Caf&amp;eacute; Coffee Day, ATMs and Malini Ramani&amp;#039;s boutique, full with colorful designer clothes.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.549441,\"Long\":73.753486,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Calangute_Beach,_Bardez,_Goa,__10576_1580727584.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":518,\"Title\":\"Fort Aguada\",\"Description\":\"Standing on the crumbling ramparts of what was once the most formidable and impregnable of the Portuguese forts in India, one looks out at a panoramic ocean vista, witnessing the confluence of the Mandovi River and Arabian Sea, over which the fort has kept watch for more than four hundred years.\\r\\nThis is so majestic a sight that it is easy to picture a Portuguese galleon or carrack on the horizon, on the last leg of its arduous voyage from far off Portugal around the Cape of Good Hope, finally able to make safe harbour and replenish its supplies.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.499198,\"Long\":73.76715,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Fort_Aguada_10576_1580727495.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":2318,\"Title\":\"Vagator Beach, Bardez, Goa, India\",\"Description\":\"Vagator Beach, known as Disco Valley, is the best place for trance parties in Goa since 1980s. There are a few famous open air clubs that attract lots of people to the beach that are located in Disco Valley. Vagator Beach is the northernmost beach of Bardez Taluka, Goa. It is located on the opposite bank of the Chapora River from Morjim in Pernem. To the south of Vagator is Anjuna, one of the first hippie haunts of Goa. Found far from the other touristy spots in Goa, Vagator is perfect and calm. Vagator is part into two as it is isolated by a headland.When you remain on the headland confronting the ocean, the shoreline on your privilege is the Big Vagator Beach or North Vagator Beach and the shoreline on the left is Ozran Beach which is famously known as meager Vagator Beach. The shoreline is a decent place to invest some energy in peace and recoups from the allure and hordes of Anjuna.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.602984,\"Long\":73.733627,\"Image\":\"Vagator_Beach,_Bardez,_Goa,_In_10576_1503479300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":159,\"Title\":\"Basilica Of Bom Jesus Church\",\"Description\":\"The Bom Jesus Basilica is Goa&amp;#039;s most renowned church and among the most admired church by Christians worldwide, is partially in wrecks but still holds a model of simplicity and grace, and places a good example of Jesuit architecture. This is the only famous church of Old Goa, which is not coated on the outside, the lime plaster having been exposed off by a ardent Portuguese conservationist in 1950. Situated at Old Goa, 10 km east of Panaji, the Bom Jesus Basilica is a known World Heritage Monument. Bom Jesus&amp;#039; (literally, &amp;#039;Good (or Holy) Jesus&amp;#039;) is the name used for the Ecce Homo in the countries of Portuguese colonization. The Jesuit church is India&amp;rsquo;s first minor basilica, and is considered to be one of the best examples of baroque architecture in India.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.5010803,\"Long\":73.9149535,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/42_1521283561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":16236,\"Title\":\"Dona Paula\",\"Description\":\"&lt;p&gt;Dona Paula, named for a Portuguese romantic heroine popular in local folklore, is an affluent area at the mouth of the Zuari River known for its ocean views. Dona Paula View Point is a lookout and promenade, home to Baroness von Leistner&acirc;&euro;&trade;s 1969 &acirc;&euro;&oelig;Image of India&acirc;&euro;\\u009d statue. Quiet Dona Paula Beach offers water sports and souvenir shops. Restaurants offering western and Indian food.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/4891_1589624942.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":1064,\"Title\":\"Mangueshi Temple\",\"Description\":\"Shri Manguesh Temple is situated at Mangueshi Village in Pirol, Ponda taluka, Goa it is at a separation of 1km from Mardol and near Nagueshi, Panaji the Capital of Goa is around 22 km and Margao 26 km. The 400-year-old Shri Mangesh sanctuary devoted to Shiva emerges with its basic but stunning ly rich structure. The sanctuary is noted for the columns which are thought to be the most delightful among the sanctuary is Goa. There is a noticeable Nandi Bull which is thought to be the Vahana (Ve-hicle) of Shiva. A wonderful seven-storeyed deepstambha (light tower), remains at the doors in the sanctuary complex. The sanctuary likewise has a superb water tank, which is accepted to be the most seasoned part of the sanctuary. The temple is a modern piece of architecture blended with traditional Hindu pattern. The entrance to the temple bears an image, which wards off every thing impure from the inner precincts of the temple and maintains its sanctity.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":15.445068,\"Long\":73.966769,\"Image\":\"Mangueshi_Temple_10576_1503467756.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null},{\"RefSSId\":1119,\"Title\":\"Miramar Beach\",\"Description\":\"Miramar Beach Situated only three km from Goa&amp;#039;s capital, Panaji, Miramar shoreline is situated at the estuary of waterway Mandovi. The word Miramar is gotten from Portuguese word, which signifies &amp;#039;seeing the ocean&amp;#039;. The shoreline is acclaimed for its brilliant delicate sand and palm trees. It is said that the sand of the shoreline looks brighter in moonlight. The two-km long shoreline is well known and local people and nonnatives visit the shoreline in expansive numbers. It&amp;#039;s a most loved joint for a lackadaisical walk around as the sun sets on the far off skyline. Another fascination of the shoreline is that it offers wonderful perspective of Aguada Fort, worked by the Portuguese to shield their settlement Goa. The fortress is situated crosswise over Mandovi stream.\",\"CurrencyType\":0,\"CityId\":10576,\"CityName\":\"Goa\",\"Lat\":30.374367,\"Long\":-86.358558,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10576\\/sightseeing\\/Miramar_Beach_10576_1597649745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13701,\"SupplierName\":\"TRIP STRING\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"336431\",\"Title\":\"Arrival in Goa\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Goa!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival, our tour operator will meet you there for your transfer to the hotel. After check-in, you can relax in your room for a while and the rest of the day is at leisure. Overnight stay at the Goa Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":363774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336432\",\"Title\":\"Full Day North Goa Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, embark on a full-day North&amp;nbsp;Goa&amp;nbsp;sightseeing tour. During this tour, you will get to visit some of the best beaches of&amp;nbsp;Goa&amp;nbsp;like Baga, Candolim, Calangute and Anjuna. The first attraction as part of the tour is the ancient Fort Aguada, constructed in 1612 to protect&amp;nbsp;Goa&amp;nbsp;from enemy attacks. The fort and its lighthouse, would be an ideal place to click beautiful pictures. After Fort Aguada, you will be visiting following beaches in order: Sinquerim Beach, Calangute Beach, Baga Beach, Anjuna Beach (famous for its white sand and red laterite rocks) and Vagator Beach. At Sinquerim or Calangute Beach, you can enjoy a myriad of water sports (own expense) such as water skiing, parasailing, etc. You can enjoy a picturesque sunset from Chapora Fort, very near to Vagator Beach.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":363774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":56,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":103,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2306,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":518,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336433\",\"Title\":\"Full Day South Goa Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, embark on a full-day South&amp;nbsp;Goa&amp;nbsp;sightseeing tour. The tour starts with visit to Shri Mangueshi Temple, one of the most visited temple in&amp;nbsp;Goa. Following the temple, continue towards the churches and convents of Old&amp;nbsp;Goa&amp;nbsp;(UNESCO World Heritage Site) like Basilica of Bom Jesus, Church of Our Lady and Se Cathedral. Post lunch, visit the idyllic Dona Paula Bay to enjoy spectacular views of the Mormugao Harbour. Later take a walk at the Miramar Beach. Make your holiday in&amp;nbsp;Goa&amp;nbsp;more memorable by indulging in street shopping at the Panjim Market. In the evening, you can also go for river boat cruise ride at the Mandovi River (at extra cost)&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":363774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":159,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16236,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1064,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1119,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336434\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post Breakfast, Day at leisure .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay Overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":363774,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"336435\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast, check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10576,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers are available for areas like Baga, Calangute, Candolim &amp;amp; Arpora only.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport transfers on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing on SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome Drinks on Arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"336431\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[336431],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336432\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[336432],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336433\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[336433],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336434\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[336434],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"336435\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[336435],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Goa','Goa,Indian Subcontinent,West India,India',NULL,'10576',0,0,4,NULL,NULL,NULL,2,'',0,'2023-08-07 00:00:00','2023-04-30 00:00:00','2023-04-30 00:00:00',3,'India','101','2023-08-07 12:50:20','2023-08-07 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'soulful-goa',NULL,NULL,NULL,0),(286,47468,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":47468,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/turkish-delight_1674111493\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The eclectic city of Istanbul, the fantastical rock forms of Cappadocia, the ancient ruins of Ephesus, and the glimmering Mediterranean and Aegean coastlines are&amp;nbsp;Turkey&amp;rsquo;s biggest draws, but each region of the country has something distinct to offer.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The diversity of landscapes, heritage and culinary culture will surprise those who have never ventured beyond holiday resorts and the beach.&amp;nbsp;Even though it&amp;rsquo;s easy to get around Turkey, the country has too much to see and do to tackle it all on one trip. Because most domestic flights route through Istanbul, spend at least a few days in this dynamic global metropolis before heading out to one of our other top places to visit in&amp;nbsp;Turkey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cappadocia\",\"DestinationPlacesSysId\":5094,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"TURKISH DELIGHT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7305\",\"SupplierName\":\"TUNGA TOUR\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":403664,\"Name\":\"Sorriso Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.0096534243027\",\"Long\":\"28.9548218250275\",\"Address\":\"Ordu Caddesi No 60 Laleli Fatih, Fatih, \"},\"Images\":[],\"CityId\":12905,\"Brief\":\"Only a 16-minute walk from the Blue Mosque, Topkapi Palace, Basilica Cistern and Hagia Sophia, Sorriso Hotel is in the old part of Istanbul. It features spa facilities, Wi-Fi and air-conditioned rooms with LCD TVs.\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/20\\/6f9fe2fb1f03cddb6e8684893787d0ad-TRZZGH.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13769,\"Title\":\"Obelisk of Theodosius\",\"Description\":\"The Obelisk of Theodosius is the Ancient Egyptian obelisk of Pharaoh Thutmose III re-erected in the Hippodrome of Constantinople by the Roman emperor Theodosius I in the 4th century AD.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Obelisk_of_Theodosius_12905_1579695019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice. Hand-painted blue tiles adorn the mosque&acirc;&euro;&trade;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&acirc;&euro;&trade;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em&Auml;&plusmn;nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&acirc;&euro;&trade; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&acirc;&euro;&trade;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4944,\"Title\":\"Cavusin\",\"Description\":\"Cavusin or the Old Greek Village is one of the off-beat places in Cappadocia, Turkey. Located around 5kms from the major tourism hub Goreme, this unexplored spot has a marvellous historical tale to tell. The major highlight of splendour structure is the old and quaint church at the top of the rock overlooking the entire old town at its best. A small village in Cappadocia is one of the oldest settlements, once it used to be home to locals is now one of the best sunset spots in the area. A must visit off-beat place when in Turkey!\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6727959,\"Long\":34.8306852,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525753813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38378,\"Title\":\"Ortahisar Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38376,\"Title\":\"Red Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38377,\"Title\":\"Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":524488,\"Name\":\"Solo Cave Suites\",\"Star\":\".00\",\"Rating\":\"4.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"38.6196865\",\"Long\":\"34.8652575\",\"Address\":\"Eski Mah, Alaaddin Sk No:4, 50650 Ortahisar\\/&Uuml;rg&uuml;p\\/Nev?ehir, Turkey\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13769,\"Title\":\"Obelisk of Theodosius\",\"Description\":\"The Obelisk of Theodosius is the Ancient Egyptian obelisk of Pharaoh Thutmose III re-erected in the Hippodrome of Constantinople by the Roman emperor Theodosius I in the 4th century AD.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Obelisk_of_Theodosius_12905_1579695019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6070,\"Title\":\"SULTANAHMET IMPERIAL MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque or Sultan Ahmet Mosque (Turkish: Sultan Ahmet Camii) is a historic mosque located in Istanbul, Turkey. A popular tourist site, the Sultan Ahmed Mosque continues to function as a mosque today men still kneel in prayer on the mosque&#039;s lush red carpet after the call to prayer. The Blue Mosque, as it is popularly known, was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice. Hand-painted blue tiles adorn the mosque&acirc;&euro;&trade;s interior walls, and at night the mosque is bathed in blue as lights frame the mosque&acirc;&euro;&trade;s five main domes, six minarets and eight secondary domes. It sits next to the Hagia Sophia, another popular tourist site.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/130_1529996772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":5699,\"Title\":\"Princess Island Tour\",\"Description\":\"Princess Islands Tour Cruise in Marmara Sea to Princes&#039; Islands by ferry from Em&Auml;&plusmn;nonu at 10:10. You will reach Buyukada (Prinkipo) at 11:45 after a cheery ferry ride with the companionship of seagulls, will make your day magical with only the slight touch. Buyukada, the Greek Prinkipo, is the largest and most beautiful of the Princes&acirc;&euro;&trade; Isles. This is the only one of the islands that most people visit and it is the summer resort par excellence.\\r\\n\\r\\nTour of the island with horse-drawn carriages (phaeton). You can&acirc;&euro;&trade;t take your eyes off the authentic Buyukada houses along the road and the colorful flowers in the gardens.\\r\\nAfter lunch stop at a local restaurant you will return with 15:00 ferry\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459842.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4944,\"Title\":\"Cavusin\",\"Description\":\"Cavusin or the Old Greek Village is one of the off-beat places in Cappadocia, Turkey. Located around 5kms from the major tourism hub Goreme, this unexplored spot has a marvellous historical tale to tell. The major highlight of splendour structure is the old and quaint church at the top of the rock overlooking the entire old town at its best. A small village in Cappadocia is one of the oldest settlements, once it used to be home to locals is now one of the best sunset spots in the area. A must visit off-beat place when in Turkey!\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6727959,\"Long\":34.8306852,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525753813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38378,\"Title\":\"Ortahisar Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38376,\"Title\":\"Red Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":38377,\"Title\":\"Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"340759\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrive IST\\/SAW Airport then transfer to Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Istanbul&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403664,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340760\",\"Title\":\"Istanbul Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After Breakfast, Full Day Maharaja Tour with Topkapi Palace, Hagia Sophia Mosque, Blue Mosque, Hippodrome, Obelisk, Sultanahmet, Old Bazaar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch at Indian Restaurant.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Istanbul&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403664,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8962,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13769,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6070,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17287,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340761\",\"Title\":\"Princess Island Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, Full Day Princess Island Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch at local Restaurant.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Istanbul&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403664,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5699,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340762\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340763\",\"Title\":\"Istanbul to Cappadocia\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, transfer to IST\\/SAW Airport for flight to Kayseri.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer to hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Cappadocia&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524488,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340764\",\"Title\":\"Cappadocia North Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, Full Day Cappadocia North Tour with Goreme Open Air Museum, Dervent Valley, Pasabag, Avanos.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch at local Restaurant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Cappadocia&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524488,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6080,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11659,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340765\",\"Title\":\"Cappadocia South Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, Full Day Cappadocia South Tour with Underground City, Red Valley, Cavusin, Ortahisar, Pigeon Valley.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch at local Restaurant.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Cappadocia&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":524488,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4944,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":38378,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13988,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":38376,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":38377,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340766\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, transfer to Kayseri Airport for flight to Istanbul to catch homebound flight&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"47468\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45192,\"priceDoubleOcc\":\"46750.00\",\"priceSingleOcc\":130900,\"priceExtraBed\":\"35062.50\",\"priceWithoutBed\":\"23375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":23375,\"CEB\":35062.5,\"COSTDO\":46750,\"COSTSO\":130900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42075,\"COSTTO\":42075}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As per the package upload date EUR@88&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;3 Nights Accommodation in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Nights Accommodation in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All airport transfers mentioned in the itinerary on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 open buffet Breakfasts&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Indian Lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Local Lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English Speaking Tour Guide during tours&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation mentioned in the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"340759\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[340759],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340760\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[340760],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340761\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[340761],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340762\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[340762],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340763\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[340763],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"340764\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[340764],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340765\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[340765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340766\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[340766],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Cappadocia',NULL,'12905,5094',46750,46750,6,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"\"}]',2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-09-07 11:49:47','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'turkish-delight',NULL,NULL,NULL,0),(289,4032,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4032\",\"VisaName\":\"Australia Visa\",\"Nationality\":null,\"VisaAdultRates\":10300,\"VisaChildRates\":10300,\"VisaInfantRates\":10300,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Australia\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"Application Form No. 1419.\",\"DocFileName1\":\"visa_document_1_4032.pdf\",\"DocName2\":\"Application Form No. 956\",\"DocFileName2\":\"visa_document_2_4032.\",\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;TOURIST Visa Requirements for AUSTRALIA&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Passport copy&amp;nbsp;of all used\\/unused pages of the applicant passport with a minimum validity of 6 months at the time of travel [Original passport is NOT required].&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Application Form No. 1419.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Application Form No. 956.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Recent Coloured&amp;nbsp;Photograph (Fresh ones i.e. NOT used earlier for any visa) should be: -&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;35mm x 45mm&amp;nbsp;in dimension&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On&amp;nbsp;matte finish&amp;nbsp;paper&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;With&amp;nbsp;White background&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;With&amp;nbsp;80%&amp;nbsp;face coverage, non-smiling [without sunglasses, a hat\\/cap or other head covering, unless the applicant wears such items because of their religious belief or ethnic background&amp;nbsp;not previously used in a visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Covering letter&amp;nbsp;(Addressed to The Australian High Commission).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Latest Bank Statement&amp;nbsp;(3 months)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Salary Slips&amp;nbsp;(Last 03 Months)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Income Tax Papers&amp;nbsp;for last 03 yrs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Aadhar card or Voter Id card is mandatory&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Supporting Financial Documents such as Fixed Deposits, Property Investments, Other Investments etc. (Optional);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If invited by someone&amp;nbsp;(relative\\/friend etc), then below 3 documents are also required:&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copy and visa copy of invitee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Invitation letter&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Relationship proof between applicant and invitee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;.Stay Itinerary (hotel).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of Old or current Australia visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Exemption mandatory for all applicants (Except applicants who have their immediate family members residing in Australia)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Occupation proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of Employee - Proof of employment&amp;nbsp;and&amp;nbsp;Pay slip&amp;nbsp;of last 3 months.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case applicant is the proprietor \\/ owner of the company&amp;nbsp;- Cover letter on&amp;nbsp;company`s letter head&amp;nbsp;, company`s&amp;nbsp;Original 3 month`s bank statement&amp;nbsp;(with bank seal and signature),&amp;nbsp;ITR&amp;nbsp;(for 3 years), company memo, partnership deal, establishment license or proprietorship etc are required.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For student School ID card&amp;nbsp;is required.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If the applicant is retired- Proof of retirement,&amp;nbsp;pension statements&amp;nbsp;for the last 3 months;&amp;nbsp;proof of regular income&amp;nbsp;generated by ownership of property or business.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If applicant is travelling for honeymoon then&amp;nbsp;Marriage certificate or Marriage Card and Engagement \\/Marriage Photograph&amp;nbsp;are required.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Medical Requirement&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Health Insurance&amp;nbsp;must if above 70 years. (ALL PAX ABOVE 70 YEARS TO GO THROUGH MEDICALS)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Basic Requirements to visit Australia&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a valid Passport and valid Australia Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Keep your Declaration form in hand (provided to you on the flight)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Australia Facts and Figures&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Australia&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Location:&amp;nbsp; &amp;nbsp; &amp;nbsp; Indian \\/Pacific Oceans&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Time:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ST (+) 4 &amp;frac12; hours&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Australian High Commission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;Panchsheel Marg, 1\\/50G, Shantipath, Opposite British High Commission, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"30 Days \",\"VisaValidity\":\"1 Years\",\"VisaDuration\":\"18 Months\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"4799.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"4000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Australia','Australia',NULL,'13',10300,10300,0,'1691991905.jpg',NULL,NULL,0,'',0,'2023-11-18 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Australia','13','2023-11-18 17:35:46','2023-11-18 00:00:00',1,1,'1','1','0','','','',NULL,'australia-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(291,4075,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4075\",\"VisaName\":\"UK Visa\",\"Nationality\":null,\"VisaAdultRates\":12200,\"VisaChildRates\":12200,\"VisaInfantRates\":12200,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"UNITED KINGDOM\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Online UK Visa Application form&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Appointment letter confirmation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;UK Visa Fee Payment Receipt&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Covering letter (For Employed - Plain paper\\/ For Self-Employed - Letterhead);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original updated Bank Statement with sufficient bank balance (last 6 months);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Income Tax Returns \\/ Form 16 for last 3 years;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Supporting Financial Documents such as Fixed Deposits, Property Investments, Recurring Deposits, any other Investments etc (Optional but advisable).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Supporting documents as per your occupation, Type of visit&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1. If Self Employed:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Business Registration License \\/ MOA \\/ Partnership deed;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company&amp;rsquo;s updated bank statement of last 6 months;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company&amp;rsquo;s IT returns for last 3 years.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;2. If Employee:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;NOC from the company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pay Slip last 6 months&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Last 6 months bank statemant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Last 3 years ITR&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;3. If Retired:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Proof of retirement like pension book, statement etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;4. If Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School \\/ College \\/ Institute ID Card;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bonafide certificate.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;5. If Visiting friend or relative&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Invitation letter;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inviter&amp;rsquo;s ID proof like Passport or Resident Permit;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Address proof like any Electricity bill, any Utility bill etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;6. If Sponsored&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Sponsorship letter;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sponsor&amp;rsquo;s national ID proof like Passport, PAN card or Resident permit;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Updated bank statement of last 6 months;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Income tax returns of last 3 years.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Have a valid Passport and valid UK Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight Ticket&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Good Health&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;British High Commission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Shantipath, Chanakyapuri,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;New Delhi, 110021&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"PrecessingTime\":\"30 Days  \",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"180 Days\",\"DocumentSubmission\":1,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"3499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"3499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','UNITED KINGDOM','UNITED KINGDOM',NULL,'469',12200,12200,0,'1691497905.jpg',NULL,NULL,0,'',0,'2023-11-18 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'UNITED KINGDOM','469','2023-11-18 17:38:15','2023-11-18 00:00:00',1,1,'1','1','0','','','',NULL,'uk-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(293,2782,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"2782\",\"VisaName\":\"Thailand Visa \",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Thailand\",\"VisaRequired\":2,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Visa On Arrival\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Requirements of a Tourist Visa to Thailand:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passport or travel document with a validity not less than 6 months and blank two pages&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Two recent 35x45cm. photograph of the applicant&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Round-trip air ticket or e-ticket (paid in full)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of financial means (10,000 baht per person\\/40,000 baht per family)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of Hotel or private accommodation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Please note:&lt;\\/strong&gt; If you visit in Thailand based on VOA (visa on arrival), certain documents and fees are needed to obtain one. The documents and the fee are subject to change anytime and without prior notice, so it would be a good idea for an aspiring Thai tourist to inquire for the right information before flying off to Thailand.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;What is Visa on Arrival (VOA)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indian passport holders are allowed to apply for a VOA for a stay period not exceeding 15 days. The designated entry points in Thailand issue VOA to Indian visitors based on various factors. The application fee of 2,000 Baht is mandatory. Applicants who wish to extend their stay are required to apply for an Extension of Stay from the Immigration Bureau. In order to be eligible for a VOA, the following documents are required:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid passport with at least 6 months of validity and blank pages for visa stamping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;VOA application form with a recent photograph of the applicant&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Confirmed return tickets within 15 days from the date of entry&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of accommodation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of sufficient funds to support the travel (10,000 Baht per individual and 40,000 Baht per family)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;How to enter Thailand with an Indian passport?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Update: Starting October 1, 2021 Indian passport holders may enter Thailand under the Visa on Arrival program. In this program you will be allowed to stay for 2 weeks. You only need to apply for the arrival visa at the port of arrival. After you have been issued a Thai visa, you may apply for your entry to Thailand&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;Royal Thai Embassy in New Delhi&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Address: 56-N Nyaya,&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Marg Chanakyapuri New Delhi 110021&lt;\\/strong&gt;&lt;\\/p&gt;\",\"PrecessingTime\":\"0\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\"\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Thailand','Thailand',NULL,'215',0,0,0,'1691474304.jpg',NULL,NULL,0,'',0,'2023-07-22 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Thailand','215','2023-07-22 10:13:20','2023-07-22 00:00:00',1,1,'1','1','0','','','',NULL,'thailand-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(294,4880,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4880\",\"VisaName\":\"Netherlands Visa \",\"Nationality\":null,\"VisaAdultRates\":7000,\"VisaChildRates\":3500,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Netherlands\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"Covering Letter Sample\",\"DocFileName1\":\"visa_document_1_4880.doc\",\"DocName2\":\"Visa Form\",\"DocFileName2\":\"visa_document_2_4880.\",\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p style=&#039;text-align:justify&#039;&gt;&lt;strong&gt;Documents requirements for Netherlands Tourist visa&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Applications should be submitted in person (also babies and children) and the following documents must be submitted:&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original passport with old passport (Your passport or travel document must be valid for at least 3 months and two blank page required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A complete Visa application form with signed by applicant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Copy of all pages of the passport (Current passport)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Photographs Size of photo white back ground&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;35 mm x 45 mm (width x height)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Covering letter address to Embassy with signed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight reservation of return or round ticket&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel reservations&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Proof of financial&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original private bank statement showing movements in the last three months, duly stamped and signed by the bank.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indian income tax return acknowledgment for the last two assessment years. In addition: If the applicant is employed:&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Documents required For Employee:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pay slips for the last three months;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Employment contract;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Employers statement on approval for holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Document required for self-employed:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;One Company letter head cover letter print on letter head&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Certificate of registration of the company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company and personal bank statements last 3 months stamped and signed by the bank.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company and personal ITR last 3 year&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Retired:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Retirement Proof: pension book, statement etc&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Student:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Card: from school, college or institute&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Proof of health insurance minimum coverage 30000\\/ euro&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marriage certificate, if applicant is married and cannot provide evidence of marital status in the passport; copy of ration card, if applicable.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Note:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Embassy\\/Consul General has the right to ask for additional information or documents and request a personal interview with the applicant&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Basic Requirements to visit Netherlands&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Have a valid Passport and valid Netherlands Visa;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be in good health&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Good moral character&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thorough knowledge of your accommodation and itinerary details to furnish at immigration if asked to&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return flight tickets or onward flight tickets to ensure your return to home country or your next destination once your visa expires&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Adhere to the moral standards of the country and follow the general rules&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;6\\/50 F, Shantipath&lt;br \\/&gt;\\r\\nChanakyapuri&lt;br \\/&gt;\\r\\nNew Delhi - 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"30 Days \",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\" \",\"DocumentSubmission\":1,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"3999.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Netherlands','Netherlands',NULL,'154',7000,7000,0,'1691991641.jpg',NULL,NULL,0,'',0,'2023-07-22 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Netherlands','154','2023-07-22 10:13:00','2023-07-22 00:00:00',1,1,'1','1','0','','','',NULL,'netherlands-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(295,4882,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4882\",\"VisaName\":\"USA Visa B1\\/B2\",\"Nationality\":null,\"VisaAdultRates\":15500,\"VisaChildRates\":15500,\"VisaInfantRates\":15500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"USA\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&#039;background-color:#ffffff&#039;&gt;Documents required for USA Visa :&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Appointment letter confirmation;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;DS 160 Confirmation page&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;One 2X2 size recent color photographs :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Taken within the last 6 months to reflect your current appearance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Taken in front of a plain white or off-white background&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Covering letter (For Employed - Plain paper\\/ For Self-Employed - Letterhead);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original updated Bank Statement with sufficient bank balance (last 6 months);&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Income Tax Returns \\/ Form 16 for last 3 years;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sponsorship\\/ Invitation letter in case of family visit.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Supporting documents as per your occupation, type of visit:&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Self Employed:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Business Registration License \\/ MOA \\/ Partnership deed;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company&amp;rsquo;s updated bank statement of last 6 months;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Company&amp;rsquo;s IT returns for last 3 years.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Employee:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;NOC from the company&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Salary Slips of last 3 months&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Retired:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Proof of retirement like pension book, statement etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Student:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School \\/ College \\/ Institute ID Card;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bonafide certificate.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;*Note: &lt;\\/strong&gt;The Embassy\\/Consul General has the right to ask for additional information or documents and request a personal interview with the applicant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Basic Requirements to visit USA :&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Have a valid Passport and valid USA Visa;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be in good health;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Good moral character;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be able to convince the immigration officer that you have your family, property, assets, etc. that would serve as an incentive to come back to your home country;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be able to convince the immigration officer that you will leave the country before your USA visa expires;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Have sufficient funds to support yourself in USA and the amount depends on how long you will stay in USA and whether you will be staying with family, friends or any paid accommodation.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;U.S. Embassy in New Delhi&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nShantipath, Chanakyapuri&lt;br \\/&gt;\\r\\nNew Delhi &amp;ndash; 110021&lt;br \\/&gt;\\r\\nTel: 011-91-11-2419-8000&lt;\\/p&gt;\",\"PrecessingTime\":\"20 Days\",\"VisaValidity\":\"10 Years\",\"VisaDuration\":\" 0\",\"DocumentSubmission\":1,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"3499.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','USA','USA',NULL,'231',15500,15500,0,'1691991551.jpg',NULL,NULL,0,'',0,'2023-08-11 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'USA','231','2023-08-11 12:23:44','2023-08-11 00:00:00',1,1,'1','1','0','','','',NULL,'usa-visa-b1-b2','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(296,4885,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4885\",\"VisaName\":\"Student Visa\",\"Nationality\":null,\"VisaAdultRates\":15500,\"VisaChildRates\":15500,\"VisaInfantRates\":15500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"USA\",\"VisaRequired\":6,\"VisaCategory\":3,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Student\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Document Checklist for Student F1 Visa&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Documents to be carried for First appointment (OFC Appointment or VAC Appointment).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your DS-160 confirmation page.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your appointment confirmation page.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Valid Passport&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Documents to be carried for second appointment (Visa Interview with the Consulate)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Your current and all old passports&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your appointment confirmation page&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your DS-160 confirmation page&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original visa fee payment receipt&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SEVIS Fee payment confirmation page&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Original I20&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All academic documents including Provisional Degree certificate or Final Degree Certificate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Standardised test score report (GRE\\/GMAT\\/SAT\\/ACT any one) and English proficiency Score report (IELTS\\/TOEFL\\/PTE any one)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Offer Letters and Rejection Letters&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All original Financial Documents.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;IT Returns of parents as well as student if applicable&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;U.S. Embassy in New Delhi&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nShantipath, Chanakyapuri&lt;br \\/&gt;\\r\\nNew Delhi &amp;ndash; 110021&lt;br \\/&gt;\\r\\nTel: 011-91-11-2419-8000&lt;\\/p&gt;\",\"PrecessingTime\":\"20 Days\",\"VisaValidity\":\"3 years \",\"VisaDuration\":\" \",\"DocumentSubmission\":1,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"6000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"5000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','USA','USA',NULL,'231',15500,15500,0,NULL,NULL,NULL,0,'',0,'2023-08-16 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'USA','231','2023-08-16 11:41:33','2023-08-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'student-visa',NULL,NULL,NULL,0),(297,44745,1,5293,0,0,0,'Honeymoon,Family,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44745,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/abu-dhabi--dubai-combo_1669796255\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Dubai Abu Dhabi Holiday Packages&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located on the Persian Gulf, Dubai is a superlative combination of a glorious past and a fast-forward journey to the future. With the surreal appeal of its own, Abu Dhabi is a perfect exemplary to futuristic innovations and natural vantages in Emirati cities.&amp;nbsp;With the best of Dubai and Abu Dhabi tour packages, tourists get to embark on an outing filled with megalopolis delights, enthralling activities, fancy night outs, beach frolic and lip-smacking delicacies causing unending cravings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;What&amp;rsquo;s Special About Dubai And Abu Dhabi Tour Packages!&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dubai and Abu Dhabi are the two most remarkable places to land in for a full-fledged fun-filled escapade. The sumptuous landscape blessed with pristine beaches, azure waters and cultural echoes, make booking a Dubai and Abu Dhabi tour package mandatory. The outgoing essence and boisterous mundane life of these Emirates, call every tourist to get a taste of art, culture, and antiquity which is best served by comfortable stays, hassle-free commutations and lots of sightseeing that too as per choice.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Best Time To Avail A Dubai And Abu Dhabi Holiday Package&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The glittering landscape of Dubai and Abu Dhabi remains pleasurable and entertaining throughout the year. However, the best time to go for a Dubai and Abu Dhabi holiday package is between the winter months of November and March with temperatures going down to a soothing 19?. Nevertheless, Dubai and Abu Dhabi, always work to give an excellent experience to its admirers.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tourist Attractions That Can Be Covered With These Dubai And Abu Dhabi Vacation Packages&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The land of the Arabian oasis, Dubai is filled with several stunning antique and contemporary glamours. Finding a prestigious place in the best structural arenas of the world, Dubai is a lot more than just architecture and skyscrapers and possesses the diverse of topographies. A plethora of sites and structures which are pillars of the Arabian culture and arts find the home in the splendid landscape of Dubai and Abu Dhabi. With the Dubai and Abu Dhabi vacation packages, tourist get to sight the best attractions with utmost pleasure. Some of famous gems of Dubai are like Burj Khalifa, Burj Al Arab Jumeirah, Palm Islands, Palm, Jumeirah, Dubai Marina, Dubai Creek, The Dubai Fountain, Madinat Jumeirah, The World, Al Bastakiya, Jumeirah Mosque, The Lost Chambers Aquarium, Grand Mosque, Dubai Spice Souk, Emirates Towers, Dolphin Bay, Dubai Aquarium and Underwater Zoo, Safe Park and various others. The capital city of Abu Dhabi has made its presence felt with its own range of allurements such as Ferrari World, Yas Island, Saadiyat Island, Corniche, Marina Mall, Yas Marina Circuit, Formula Rossa, Qasr al-Hosn, Emirates Heritage Club Heritage Village, Yas World Abu Dhabi, Umm Al Emarat Park and several others.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Abu Dhabi\",\"SourcePlaceSysId\":105,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Abu Dhabi + Dubai Combo\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4360\",\"SupplierName\":\"Turning Point Tourism LLC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Visa,Travel Insurance,All Transfers\",\"PackageType\":\"Honeymoon,Family,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":105,\"Title\":\"Abu Dhabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":406466,\"Name\":\"CROWNE PLAZA YAS ISLAND\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Yas Island Golf Plaza, Abu Dhabi, 41880, Abu Dhabi, United Arab Emirates, \"},\"Images\":[],\"CityId\":105,\"Brief\":\"This 5 star hotel is located in the suburbs of Abu Dhabi and was established in 2009. It is a short drive away from the Ferrari World &amp; Yas Waterworld. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 428 rooms are equipped with minibar, hairdryer, safe, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/AE\\/2799\\/143\\/lr\\/exterior.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room - City View\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3136,\"Title\":\"Ferrari World \",\"Description\":\"Ferrari World Abu Dhabi is an amusement park where the world&#039;s fastest roller coaster, &acirc;&euro;&oelig;Formula Rossa&acirc;&euro;\\u009d  is located. It is the first Ferrari-branded theme park and has the record for the largest space frame structure ever built. The Ferrari World Park  took three years to develop and it officially opened to the public on 4 November 2010. It covers an area of 86,000 square metres. \\r\\nOpen 365 days a year, Ferrari World Abu Dhabi houses numerous high-adrenaline rides featuring roller coasters, thrill rides, family rides, children&#039;s rides and shows also.  Attractions also include two stores, racing events, concerts, luxury hotels and a selection of  Itallian restaurants, makes it the top leisure and entertainment destination. \\r\\nThis was named the &quot;Middle East&#039;s Leading Tourist Attraction&quot; in 2015 and &quot;Middle East&#039;s Leading Theme Park&quot; in 2017 at the World Travel Awards.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4852,\"Long\":54.6076,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Ferrari_World__105_1517546882.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":10975,\"Title\":\"Warner Bros Theme Park\",\"Description\":\"Warner Bros. Movie World is a movie studio theme park on the Gold Coast, Queensland,. Its theme is based on the Warner Bros. film studio and related DC Comics properties. It is owned and operated by Village Roadshow via Village Roadshow Theme Parks since the take over from AT&amp;T and WarnerMedia\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/2645_1566974727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":35919,\"Title\":\"Half Day City Tour\",\"Description\":\"&lt;p&gt;Dubai has consolidated its place as one of the top tourist destinations in the world. Glittering cityscape, high rises, some of the tallest ones in the world, an urbane jungle with a thrifty life. But is that all the Bedouin town has to offer? The natural is as beautiful as the human-made. Desert safaris and dunes visitations are must-do things while you are on the Dubai Tour. Don&#039;t forget to visit the sandy beaches and the lush hotels and restaurants with a touch of exquisite and luxury.&lt;br&gt;&lt;\\/p&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1669798795.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null}]}},{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":405156,\"Name\":\"CITYMAX HOTEL BUR DUBAI\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2511131661193\",\"Long\":\"55.2920445901741\",\"Address\":\"Al Kuwait Street, Bur Dubai. (Kuwait St. and Mankhool Rd, Al Mankhool) 116121 DUBAI UNITED ARAB EMIRATES, Dubai, United Arab Emirates, 116121\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Location\\nCitymax Hotels are outstandingly affordable and luxurious throughout. Located in the historic Bur Dubai district. Citymax offers contemporary accommodation less than 1 km from Dubai Creek.  Dubai&acirc;&euro;&trade;s World Trade Centre is 3 km from the property, 2 km from Textile Souk, and Dubai Museum, Grand Mosque and The Dubai Heritage. Burjuman Mall is a 10-minute walk away.\\nRooms\\nThe bright and comfortable rooms provide the perfect place to relax. All 691 individually furnished rooms feature free WiFi and 24-hour room service. For a bit of entertainment, LCD TVs come with satellite channels, and guests will also find coffee makers and free bottled water, suite bathrooms include bathtub and hairdryer.\\nRestaurant\\nTuck into some top food at one of our great restaurants. Have a wide range of eateries to choose from &acirc;&euro;&ldquo; all offering delicious dishes at affordable prices.\\nGuests can enjoy buffet and &Atilde;&nbsp; la carte dining options with different restaurants serving Indian, Chinese and Thai specialties for breakfast, lunch and dinner. Room service is available and a 24-hour coffee-house offers drinks and refreshments.\\nAmenities\\nThis hotel has an outdoor pool and a fitness center. Free WiFi in public areas and free self-parking are also provided. Additionally, a bar\\/lounge, a coffee shop\\/caf&Atilde;&copy;, and a snack bar\\/deli are onsite. It features a rooftop pool, a well-equipped gym.The CITYMAX HOTEL BUR DUBAI is a Tourist, Modern, Business, City hotel, Design Trendy hotel. Located in City Centre - Bur Dubai area. Shopping is within walking distance and the nightlife\\/restaurants are located in the hotel.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/14\\/141584\\/viB8hS8E_2066225b0edcac9c46cfe98dab4a8cfb.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":405121,\"Name\":\"OMEGA HOTEL - BUR DUBAI\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2550767579026\",\"Long\":\"55.2915082287493\",\"Address\":\"AL MANKHOOL ROAD OPPOSITE OLD STANDARD CHARTERED BANK, Dubai, United Arab Emirates, 33618\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Location\\nOmega Hotel Dubai is set in Dubai, 1.1 km from Grand Mosque and 1.1 km from Textile Souk.\\nRooms\\nOMEGA Hotel holds 238 keys offering a vast combination of rooms, suites, and numerous facilities to best cater our guest&acirc;&euro;&trade;s needs.\\nEvery room is fitted with a flat-screen TV with cable channels. Some units include a seating area for your convenience. Certain units feature views of the pool or city.\\nRestaurant\\nGuests can enjoy a meal at the restaurant\\nAll wellness amenities\\nFree WiFi is provided throughout the property and free private parking is available on site. The hotel also offers car hire. Twin Towers Shopping Centre is 2.1 km from Omega Hotel Dubai , while Dubai Frame is 2.3 km from the property. The nearest airport is Dubai International Airport, 7 km from Omega Hotel Dubai. Omega Hotel is at the junction of Mankhool Street with 5 minute walk (0.5 km) to Fahidi metro station, OMEGA Hotel provides its guests with immediate access to the said facility commuting easier than ever. Some of our popular neighbours including but not limited to the, Meena bazaar  Bur juman Mall, Dubai Gold Souk, Dubai World Trade Centre, Dubai Convention Centre and an easy access to Port Rashid Cruise terminal.The OMEGA HOTEL - BUR DUBAI is a  hotel. Located in Bur Dubai area.\",\"MainImg\":\"https:\\/\\/us.dotwconnect.com\\/poze_hotel\\/21\\/2159275\\/9dmRGPsD_ea0323f5ac1a2b11042a523c8a2c49a1.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":528135,\"Name\":\"Crowne Plaza Dubai Deira\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Salahuddin Road - Deira - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This warm hotel in the city centre is an 8-minute walk from a metro stop and 8 km from the Dubai World Trade Centre.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Polished rooms feature free Wi-Fi and flat-screen TVs. Upgraded rooms add access to a private lounge offering food and drinks. Suites provide living areas; some also have dining areas. Room service is available 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking and an area shuttle are free. There&amp;#39;s a casual international eatery and a warm Italian restaurant, plus 3 bars, and a 24-hour lounge serving pastries and non-alcoholic drinks. There&amp;#39;s also a spa, a heated outdoor pool and a ballroom, as well as 2 gyms that are open 24\\/7.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_528135\\/4539_09caadea648655c42de3dfb5a7f1f6911669737156.jpeg\",\"AccoAminitiesMask\":\"111110101000100000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3136,\"Title\":\"Ferrari World \",\"Description\":\"Ferrari World Abu Dhabi is an amusement park where the world&#039;s fastest roller coaster, &acirc;&euro;&oelig;Formula Rossa&acirc;&euro;\\u009d  is located. It is the first Ferrari-branded theme park and has the record for the largest space frame structure ever built. The Ferrari World Park  took three years to develop and it officially opened to the public on 4 November 2010. It covers an area of 86,000 square metres. \\r\\nOpen 365 days a year, Ferrari World Abu Dhabi houses numerous high-adrenaline rides featuring roller coasters, thrill rides, family rides, children&#039;s rides and shows also.  Attractions also include two stores, racing events, concerts, luxury hotels and a selection of  Itallian restaurants, makes it the top leisure and entertainment destination. \\r\\nThis was named the &quot;Middle East&#039;s Leading Tourist Attraction&quot; in 2015 and &quot;Middle East&#039;s Leading Theme Park&quot; in 2017 at the World Travel Awards.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4852,\"Long\":54.6076,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Ferrari_World__105_1517546882.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":10975,\"Title\":\"Warner Bros Theme Park\",\"Description\":\"Warner Bros. Movie World is a movie studio theme park on the Gold Coast, Queensland,. Its theme is based on the Warner Bros. film studio and related DC Comics properties. It is owned and operated by Village Roadshow via Village Roadshow Theme Parks since the take over from AT&amp;T and WarnerMedia\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/2645_1566974727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":35919,\"Title\":\"Half Day City Tour\",\"Description\":\"&lt;p&gt;Dubai has consolidated its place as one of the top tourist destinations in the world. Glittering cityscape, high rises, some of the tallest ones in the world, an urbane jungle with a thrifty life. But is that all the Bedouin town has to offer? The natural is as beautiful as the human-made. Desert safaris and dunes visitations are must-do things while you are on the Dubai Tour. Don&#039;t forget to visit the sandy beaches and the lush hotels and restaurants with a touch of exquisite and luxury.&lt;br&gt;&lt;\\/p&gt;&lt;div&gt;&lt;br&gt;&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1669798795.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start;&quot;&gt;Book now to unveil the glamour of Dubai, experience luxury and adventure on your unforgettable getaway, get upto 3,000\\/-&lt;\\/span&gt;&lt;\\/p&gt;\",\"CouponCode\":\"EXPLOREDUBAI\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"323239\",\"Title\":\"Arrival in Abu Dhabi\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive Abu Dhabi &amp;ndash; Time at Leisure&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival in Abu Dhabi International Airport, you&amp;#39;ll be transferred to your hotel. Upon arrival check in to the hotel and relax. Rest of the Day at Leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Abu Dhabi is the Capital of the UAE, and the largest of the seven Emirates. Enter a world where Islamic designs and elements feature on modern architecture, The things to see and do are endless in Abu Dhabi with the vibrant capital bursting with activity that include world famous museums, state-of-the-art theme parks, theatres, designer golf courses, spas, restaurants, shopping malls, luxurious hotels, sports and so much more.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Choose an optional Abu Dhabi City tour today!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch and Dinner on own. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323242\",\"Title\":\"Abu Dhabi - Ferrari World\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast later take the shuttle bus from your hotel to the entrance of the Ferrari World.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Ferrari World&lt;\\/strong&gt; is the world&amp;#39;s first Ferrari theme park and largest attraction of its kind. The Park offers more than 20 Ferrari-inspired rides and attractions, including a diverse array of rides for all ages and interests. Visitors will enter a stunning world where the Ferrari passion, excellence, performance and technical innovation come vibrantly to life. Along with rides, the visitors can also browse and shop from the several retail outlets that are located throughout the park including the largest Ferrari Store in the world and a Ferrari boutique that specializes in creating personalized souvenirs for Ferrari lovers. The park provides you a true Italian dining experience (at your own expense) to complete fun filled visit to the park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch and Dinner on own. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":406466,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room - City View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3136,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323245\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323248\",\"Title\":\"Abu Dhabi - Warner Bros\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Yas Island -Ferrari world \\/ Yas Water World \\/ Warner Bros (Any 1 Park):&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast, check out of the hotel and later take the shuttle bus from your hotel to the entrance of Warner Bros theme Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set to be one of the world&amp;rsquo;s largest indoor theme parks when it opens on Yas Island on 25 July 2018, &lt;strong&gt;Warner Bros. World&amp;trade; Abu Dhabi&lt;\\/strong&gt; will bring together all your favorite Warner Bros. characters and stories under one roof to offer you an enthralling, captivating day out for all the family. Walk through the iconic Warner Bros. shield and be transported to a whole new world of action, adventure, wackiness and more, in which you can create and enjoy many a memorable moment with family and friends!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Six truly immersive lands - Warner Bros. Plaza, Gotham City, Metropolis, Cartoon Junction, Bedrock and Dynamite Gulch - will come together to create an unparalleled fan experience. Expect everyone from Batman to Bugs Bunny, Superman to Scooby-Doo amongst 29 state-of-the-art thrilling rides, a host of interactive family-friendly attractions and unique live entertainment. There are also multiple dining options, from grab-and-go to full-service sit-down restaurants and cafes, and a variety of enticing retail offerings from which you can choose your favorite Warner Bros. inspired souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the theme park, pick your luggage and take the transfer to your dubai hotel for overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch and Dinner on own. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405156,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10975,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323251\",\"Title\":\"Dubai: Half-day Dubai City Tour with Burj Khalifa 124th Floor Visit\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Fill yourself with a delicious breakfast, and prepare yourself for discovering the wonders of Dubai on a half-day city tour.&amp;nbsp;Visit the Dubai Museum, the Jumeirah Mosque, the glitzy Burj Al Arab Hotel - the world&amp;rsquo;s only seven-star hotel and the Atlantis Hotel, perched atop the crescent-shaped Palm Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Encounter colourful dioramas and enlightening historic exhibits on a visit to Dubai Museum. Post digging into the history of Emirates and their traditional culture, choose to laze around or take a dip in the warm waters of Jumeirah Beach. Behold stunning bird&amp;#39;s-eye views from atop the Burj Khalifa -- the tallest building in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set foot in Dubai&amp;rsquo;s top tourist attractions, and gaze at the glimmering skyline of Dubai from Burj Khalifa observation deck on the 124th floor!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tip:&amp;nbsp;Indians can get to Armani, Saffron, or Indego by Vineet for some yummy desi delicacies.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening enjoy&amp;nbsp;a Dhow Cruise with dinner. It&amp;#39;s a romantic way of spending an evening while aboard a traditionally decorated wooden dhow (cabin cruise), as it sails along the Dubai creek under the moonlight. The major Dubai landmarks shine through the moonlight sky as the wooden vessel slips silently across. The past and present architecture of the area is brought to its full beauty during this time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch on own. Overnight stay at Hotel in Dubai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405156,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35919,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323254\",\"Title\":\"Dubai: Thrilling Desert Safari with Barbecue Dinner\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;This day of your&amp;nbsp;Dubai holiday&amp;nbsp;brings to you a ride on velvety Arabian sands &amp;amp; some cultural entertainment.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a wholesome breakfast at your hotel and spend the first half of the day leisurely. In the evening, get ready for Desert Safari. Indulge in a number of activities that are a highlight of your&amp;nbsp;Dubai package,&amp;nbsp;like dune bashing, camel riding, sandboarding, and jeep racing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Satiate your hunger with a number of mouth-watering Arabian delicacies &amp;amp; enjoy cultural performances like belly dance, Tanura show, and a fire show by trained artists. Enjoy off-roading on the sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, get to your hotel for overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional:&lt;\\/strong&gt;&amp;nbsp;Engage in various exciting activities during your Dubai Desert Safari like camel riding, quad biking, and more (charges extra).&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405156,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323257\",\"Title\":\"Dubai: Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Spend the day at your convenience!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Begin the day with a delicious breakfast at the hotel. The day is at leisure and you can plan it as per your comfort and ease. Since Dubai is famous for shopping and is home to the biggest and most luxurious shopping malls, on a leisure day, you can plan a visit to these malls. You can go out and see Dubai Mall, BurJuman Mall, Mall of Emirates, Ibn Battuta Mall, and Dubai Outlet Mall. After exploring the biggest shopping destinations, come back to the hotel for a sound sleep.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405156,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323260\",\"Title\":\"Day 6: Dubai - Goodbye!\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy your breakfast at the hotel. After breakfast, check out of the hotel and&amp;nbsp;proceed to the airport for your flight back home with fond memories!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tourism Dirham fees (Payable directly at the hotel).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 nights accommodation on double sharing basis in Abu Dhabi.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Visa with covid insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 day access to any 02 parks ( Ferrrai world or Warner bros or YAS Waterworld) Any 01 park per day.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half Day Dubai City tour on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th Floor observation deck (Non Prime time).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with barbecue Dinner on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Creek Dhow Cruise with Dinner&amp;nbsp;on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Abu Dhabi Hotel to Dubai Hotel transfer on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on private basis.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"323239\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[323239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323242\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[323242],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323245\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323245],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323248\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323248],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323251\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323251],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323254\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323254],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323257\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323257],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323260\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323260],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Abu Dhabi,Dubai','Abu Dhabi,Middle East,United Arab Emirates,Dubai',NULL,'105,8219',0,0,6,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'United Arab Emirates','228','2023-07-29 15:24:17','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'abu-dhabi-+-dubai-combo',NULL,NULL,NULL,0),(298,56760,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Cruise,Hill Station,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":56760,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/the-best-of-thailmalaysia-singapore_1688644022\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is a popular tourist destination known for its vibrant cities, stunning beaches, and rich cultural heritage. Pattaya, located on the eastern Gulf coast, offers a mix of beautiful beaches, water sports, and a lively nightlife scene. Bangkok, the capital of Thailand, is a bustling metropolis that combines modern skyscrapers with traditional temples and markets. Some must-visit attractions include the Grand Palace, Wat Arun (Temple of Dawn), Wat Phra Kaew (Temple of the Emerald Buddha), and the floating markets. Bangkok is also renowned for its shopping malls, street markets, and delicious street food.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nMalaysia is a diverse country with a mix of Malay, Chinese, Indian, and indigenous cultures. Kuala Lumpur, the capital city, is famous for its iconic Petronas Twin Towers, vibrant street markets like Petaling Street, and the historic Sultan Abdul Samad Building. You can also explore Batu Caves, a limestone hill with a series of caves and Hindu temples, or visit the bustling district of Bukit Bintang for shopping and entertainment.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nSingapore is a modern city-state known for its clean streets, futuristic architecture, and multicultural society. Some of the top attractions include Marina Bay Sands, Gardens by the Bay, Sentosa Island, and Universal Studios Singapore. Don&amp;#39;t miss the iconic Merlion statue and explore the vibrant neighborhoods like Chinatown, Little India, and Kampong Glam for a taste of Singapore&amp;#39;s diverse cultures and delicious cuisine. Singapore is also a shopper&amp;#39;s paradise, with a variety of shopping malls and street markets offering everything from high-end fashion to electronics and local souvenirs.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"The Best of Thailand, Malaysia, and Singapore \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4432\",\"SupplierName\":\"Nam ho DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Cruise,Hill Station,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563133,\"Name\":\"Golden Beach Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"519, 27 Pattaya Sai Song Rd, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;Set in a bustling commercial area, this unpretentious hotel is a 10-minute walk from Pattaya Beach and 3 km from the Teddy Bear Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring wood furnishings and floors, the modest rooms offer balconies, minifridges and satellite TV, as well as sitting areas and en suite bathrooms.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast is available. Other amenities include an outdoor pool and a restaurant.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563133\\/4539_22635c6298834c2bdf106d536d6ff9601688554196.jpg\",\"AccoAminitiesMask\":\"111100000000100001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563154,\"Name\":\"Nova Platinum Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"562, 10 Muang Pattaya, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;A 9-minute walk from Walking Street&amp;#39;s nightclubs and a 10-minute walk from a beach, this modern, casual hotel is 9 km from Pattaya Floating Market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pared-back rooms with warm furnishings feature free Wi-Fi, flat-screen TVs and DVD players, plus minibars, rainfall showers, and tea and coffeemaking equipment. Upgraded rooms add balconies or terraces.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet and parking are complimentary. There&amp;#39;s a casual restaurant. An outdoor pool surrounded by tropical gardens offers an adjacent bar, 2 hot tubs and a separate lap pool. Other perks include a spa area and a fitness room.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563154\\/4539_e144df847b3bb4c067d84d1aecc8ad811688555252.jpg\",\"AccoAminitiesMask\":\"111111001000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563165,\"Name\":\"Pullman Pattaya Hotel G\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"445, Amart Beach, Na Kluea 18, Pattaya City, Bang Lamung District, Chang Wat Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;In tropical gardens overlooking a private beach along the Gulf of Thailand, this upscale resort hotel is 3 km from the hand-carved Sanctuary of Truth and 5 km from scale models at Mini Siam.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bright rooms feature balconies with gulf views, flat-screens and Wi-Fi access. Upgraded rooms offer club lounge and direct pool access, while family rooms include kids&amp;#39; rooms with bunk beds. Room service is offered. Kids age 11 and under (2 per room) stay at no extra cost with an adult.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking is available. Breakfast is served in an international restaurant. There are 3 bars, including 1 beachfront and 1 alongside an outdoor pool, plus a gym and a spa.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563165\\/4539_a52347b6628174264fdec73ca312b1991688556065.jpg\",\"AccoAminitiesMask\":\"111100101000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3074,\"Title\":\"Chaophraya Dinner Cruise (International Menu)\",\"Description\":\"This luxurious Bangkok dinner cruise tour ship has catered to guests from around the world, and offers the same Thai cuisine, entertaining entertainment and stunning river views. Capable of welcoming up to 290 persons, the Chao Phraya Cruise offers one of the most memorable dinner cruise experiences down the as you take in the riverside scenery. Historic temples and landmarks slowly unfold on your left and right as dinner is served in buffet style, and a live band and professional singers entertain you with a varied performance.\\r\\n\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517571519.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49785,\"Title\":\"Half-Day Kuala Lumpur City Tour with KL Tower\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688558893.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49786,\"Title\":\"Genting Highlands &amp; Batu Caves Shared Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688559174.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49787,\"Title\":\"Singapore City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1688559418.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563135,\"Name\":\"The Ecotel Bangkok\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1091 333-4 35 New Petchaburi Rd, Makkasan, Ratchathewi, Bangkok 10400, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"&lt;p&gt;Set 1 km from bustling Pratunam Market, this elegant hotel is 3 km from MBK Center shopping mall and an 8-minute walk from Ratchaprarop Airport Rail Link Station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The straightforward rooms offer free Wi-Fi, flat-screen TVs and minifridges, plus safes. Upgraded rooms add sitting areas. Suites include separate living rooms.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking is complimentary. There&amp;#39;s also a restaurant with a terrace. Breakfast is available for a fee.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563135\\/4539_91638f0e7afaf81632fade770bd2e93b1688554374.jpg\",\"AccoAminitiesMask\":\"111000000000100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563159,\"Name\":\"Indra Regent Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"120 126 Ratchaprarop Rd, Thanon Phaya Thai, Ratchathewi, Bangkok 10400, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"&lt;p&gt;Set in a modern tower in a lively commercial zone, this elegant hotel is a 4-minute walk from Pratunam Market and 3-minute walk from Ratchaprarop skytrain station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring teak furniture, the refined rooms offer Wi-Fi, satellite TV, desks and minibars: some have seating areas. Suites add extras such as living rooms, 4-poster beds and dining tables. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served on a garden terrace. There are 3 swanky restaurants and 2 bars. as well as an outdoor pool, a spa, a gym and a game room.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563159\\/4539_bb0d69134e672d7a766ac6a5d43064841688555403.jpg\",\"AccoAminitiesMask\":\"110001000000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563166,\"Name\":\"Amari Watergate Bangkok\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"847 Phetchaburi Rd, Khwaeng Thanon Phaya Thai, Ratchathewi, Bangkok 10400, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"&lt;p&gt;In Bangkok&amp;#39;s vibrant Pratunam area, this upscale, contemporary hotel is 9 minutes&amp;#39; walk from the CentralWorld shopping mall, and 6 km from Wat Phra Kaew temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring city, garden or pool views, the warm rooms come with free Wi-Fi, flat-screen TVs and DVD players, as well as tea and coffeemakers, minifridges, and safes. Suites add whirlpool tubs. Club rooms have access to a private lounge offering free breakfast and cocktails.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere&amp;#39;s a vibrant restaurant serving international dishes, plus a spa, and an outdoor pool with a poolside bar. Other amenities include a gym and 2 squash courts. Breakfast is available (fee).&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563166\\/4539_1267d7faf1e5874f2280e9c6c08c33421688556264.jpg\",\"AccoAminitiesMask\":\"111100101000100011001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3074,\"Title\":\"Chaophraya Dinner Cruise (International Menu)\",\"Description\":\"This luxurious Bangkok dinner cruise tour ship has catered to guests from around the world, and offers the same Thai cuisine, entertaining entertainment and stunning river views. Capable of welcoming up to 290 persons, the Chao Phraya Cruise offers one of the most memorable dinner cruise experiences down the as you take in the riverside scenery. Historic temples and landmarks slowly unfold on your left and right as dinner is served in buffet style, and a live band and professional singers entertain you with a varied performance.\\r\\n\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517571519.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49785,\"Title\":\"Half-Day Kuala Lumpur City Tour with KL Tower\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688558893.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49786,\"Title\":\"Genting Highlands &amp; Batu Caves Shared Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688559174.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49787,\"Title\":\"Singapore City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1688559418.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null}]}},{\"CityId\":30568,\"Title\":\"Kuala Lumpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563175,\"Name\":\"Metro Hotel Bukit Bintang\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"208, Jln Pudu, Bukit Bintang, 55100 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia\"},\"Images\":[],\"CityId\":30568,\"Brief\":\"&lt;p&gt;This casual hotel in a modern tower is 8 minutes&amp;#39; walk from Berjaya Times Square mall and 2 km from Aquaria KLCC.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nWarmly decorated, relaxed rooms have Wi-Fi access, flat-screens, and tea and coffeemaking facilities. Family rooms sleep up to 4 guests. There&amp;#39;s room service, and kids age 8 and under stay free in parents&amp;#39; room.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast is served for a surcharge in a relaxed breakfast room. Meeting space and parking are available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563175\\/4539_87ccbe9f207345ab3a68c39d3de690fb1688558326.jpg\",\"AccoAminitiesMask\":\"110000000000010001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563378,\"Name\":\"Furama Bukit Bintang\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"136, Jalan Changkat Thambi Dollah, Bukit Bintang, 55100 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia\"},\"Images\":[],\"CityId\":30568,\"Brief\":\"&lt;p&gt;This upscale, high-rise hotel near the bustling Golden Triangle district is 3 km from the Petronas Towers skyscrapers, and a 7-minute walk from the shops and amusement park at Berjaya Times Square.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe warm rooms offer free Wi-Fi, flat-screens, and tea and coffeemakers. Upgrades add skyline views, and access to a lounge with complimentary breakfast and cocktails. Suites have separate living rooms. Room service is offered 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere&amp;#39;s an airy buffet restaurant and a modern cocktail lounge, plus a gym, and an outdoor pool with a bar.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563378\\/4539_a96cd25c0f517005b975152321fc05411688651625.jpg\",\"AccoAminitiesMask\":\"111100000000100001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563180,\"Name\":\"Grand Millennium Hotel Kuala Lumpur\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"160, Jln Bukit Bintang, Bukit Bintang, 55100 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia\"},\"Images\":[],\"CityId\":30568,\"Brief\":\"&lt;p&gt;This upscale hotel is a 4-minute stroll from Bukit Bintang monorail station and a 9-minute walk from the Pavilion Kuala Lumpur shopping mall.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering floor-to-ceiling windows with city views, the refined rooms feature free Wi-Fi, flat-screens and artwork. Club-level rooms add access to a lounge serving food and drinks; some have sofas. Suites contain separate living rooms, while upgraded suites offer kitchens. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere are 4 restaurants serving international, Chinese, Japanese or light fare; 1 has a bar. Other amenities include a gym and an outdoor pool, plus a spa, a beauty salon and a business centre.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563180\\/4539_94ed8e4dafccf5c9c59af264a06ad5bd1688558562.jpg\",\"AccoAminitiesMask\":\"111000100000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3074,\"Title\":\"Chaophraya Dinner Cruise (International Menu)\",\"Description\":\"This luxurious Bangkok dinner cruise tour ship has catered to guests from around the world, and offers the same Thai cuisine, entertaining entertainment and stunning river views. Capable of welcoming up to 290 persons, the Chao Phraya Cruise offers one of the most memorable dinner cruise experiences down the as you take in the riverside scenery. Historic temples and landmarks slowly unfold on your left and right as dinner is served in buffet style, and a live band and professional singers entertain you with a varied performance.\\r\\n\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517571519.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49785,\"Title\":\"Half-Day Kuala Lumpur City Tour with KL Tower\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688558893.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49786,\"Title\":\"Genting Highlands &amp; Batu Caves Shared Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688559174.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49787,\"Title\":\"Singapore City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1688559418.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null}]}},{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563147,\"Name\":\"V Hotel Lavender\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\" 70 Jellicoe Rd, Singapore 208767\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;A 4-minute walk from a subway station, this upscale hotel is also 3 km from the Singapore Flyer, an observation wheel with sweeping city views, and 3 km from Marina Bay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring free Wi-Fi, the straightforward rooms also come with flat-screen TVs and minifridges. Upgraded rooms add sitting areas.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA complimentary breakfast buffet is served in a casual dining room. There&amp;#39;s a laid-back cafe offering open-air dining, along with a gym and an outdoor pool. The building also houses a food court and a number of shops, including a 24-hour convenience store.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563147\\/4539_29451b41c0067232d01bf83427e262f01688555090.jpg\",\"AccoAminitiesMask\":\"111101001000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563163,\"Name\":\"Village Hotel Albert Court\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"180 Albert St, Singapore 189971\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;This modern hotel, set around a cobblestone road is 4 minutes&amp;#39; walk from the Rochor metro station, 3 km from the lively Chinatown district and 6 km from Gardens by the Bay waterfront park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering free Wi-Fi and relaxed decor, the chic rooms also have flat-screen TVs. Upgraded rooms and suites add work desks, as well as access to a club lounge. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA cosy cafe features Straits Chinese decor. There are multiple restaurants, as well as a lobby bar. Other amenities include 2 hot tubs, a gym and a business centre. Breakfast is extra.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563163\\/4539_8781a3c4da87a60693509dece97b238b1688555926.jpg\",\"AccoAminitiesMask\":\"111001000000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563170,\"Name\":\"Pan Pacific Singapore\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"7 Raffles Blvd, Singapore 039595\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;Overlooking Marina Bay, this high-end business hotel is a 5-minute walk from Promenade MRT Station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The polished rooms feature glass-enclosed bathrooms and free Wi-Fi, as well as flat-screens, minibars, and tea and coffeemaking facilities. Upgraded rooms add balconies; some offer city views, while others have harbour views and in-room bars. Suites offer living areas and DVD players. Room service is available 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking is free. Dining options include Japanese, Chinese and Indian restaurants, plus a buffet-style eatery, a tapas bar and a cafe. There&amp;#39;s also a luxe spa and a gym, as well as a playground, an outdoor pool and meeting space.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563170\\/4539_18bf330faa1085670ab685b63feb42491688556611.jpg\",\"AccoAminitiesMask\":\"111100100000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3074,\"Title\":\"Chaophraya Dinner Cruise (International Menu)\",\"Description\":\"This luxurious Bangkok dinner cruise tour ship has catered to guests from around the world, and offers the same Thai cuisine, entertaining entertainment and stunning river views. Capable of welcoming up to 290 persons, the Chao Phraya Cruise offers one of the most memorable dinner cruise experiences down the as you take in the riverside scenery. Historic temples and landmarks slowly unfold on your left and right as dinner is served in buffet style, and a live band and professional singers entertain you with a varied performance.\\r\\n\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517571519.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49785,\"Title\":\"Half-Day Kuala Lumpur City Tour with KL Tower\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688558893.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49786,\"Title\":\"Genting Highlands &amp; Batu Caves Shared Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30568,\"CityName\":\"Kuala Lumpur\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30568\\/sightseeing\\/4539_1688559174.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":49787,\"Title\":\"Singapore City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1688559418.jpg\",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"415353\",\"Title\":\"ARRIVAL IN BANGKOK - TRANSFER TO PATTAYA\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon your arrival at Bangkok airport, our&amp;nbsp;representative will transfer you to Pattaya which is approximately 2Hours drive from Bangkok. On your way to Pattaya, witness the beautiful countryside covered in lush greenery. Reach Pattaya and proceed with the check-in formalities. After settling in, head out in the evening to watch the famous Alcazar Cabaret Show. The show features stunning performances by talented transgender artists, showcasing a variety of music, dance, and costumes. Enjoy the captivating performances and immerse yourself in the vibrant atmosphere of the show. After the show, you can explore the nearby area, take a stroll along the beach, or simply relax and soak in the ambiance of Pattaya. Return to your hotel and spend the night in Pattaya.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563133,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563165,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415356\",\"Title\":\"PATTAYA: CORAL ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy a wholesome breakfast and get ready for a fascinating Coral Island Tour in a shared speedboat. The representative will pick you up from the hotel in a shared transfer and take you to the port where you&amp;#39;ll board the speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hop on a speed boat which will take around 45 minutes to reach Coral Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One can indulge in many activities as the Island offers a variety of fun water activities to do and find something you&amp;#39;ve always wanted to try. Visit the most famous beach Tawaen Beach, where there is a small harbour lined with small tourist shops. Choose from snorkelling, sea walker diving, parasailing, jet-skiing, and many more such activities (additional&amp;nbsp;cost). Stroll around the white sandy beaches and watch the waves rushing over the boulders. After an adventurous day, head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563133,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563165,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415359\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415362\",\"Title\":\"PATTAYA - TRANSFER TO BANGKOK -  BANGKOK CITY TOUR.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today, our representative will transfer you to Bangkok. Once you arrive in Bangkok, check into your hotel and freshen up.&lt;br \\/&gt;\\r\\nYour tour starts with visit to Wat Traimit, the temple famous for holding the largest Golden Buddha in the world, standing at five meters in height and over five and half tonnes. Then you&amp;#39;ll pass through the Chinatown area to glimpse the cultural diversity of this city followed by visit to Wat Pho, an ancient Buddhist temple complex, which holds more Buddha statues than any other temple in the country. Your last stop is at the Marble Temple, or Wat Benchamabopit, the most beautiful of Bangkok&amp;#39;s temples, and made of imported Italian marble. You will experience Bangkok&amp;#39;s cultural richness and diversity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After city tour, check in at hotel in Bangkok. Evening is free to enjoy shopping in the shopper&amp;#39;s paradise, Bangkok with many malls and street side shops around your hotel.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563159,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415365\",\"Title\":\"BANGKOK - CHAO PHARAYE PRINSESS RIVER DINNER CRUISE\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, spend the day exploring Bangkok&amp;#39;s attractions at your own pace. In the evening, make your way to the designated pier for the Chao Phraya Princess River Dinner Cruise. The cruise typically departs in the evening, offering a memorable dining experience along the scenic Chao Phraya River. Embark on the luxury cruise ship and settle into your reserved seating area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a sumptuous buffet dinner with a wide variety of Thai and international dishes as you glide along the river. Admire the illuminated landmarks and the enchanting view of Bangkok&amp;#39;s skyline. Sit back, relax, and enjoy live music and entertainment on board the cruise ship. After the cruise, you will be dropped off at the pier. From there, you can either return to your hotel or explore Bangkok&amp;#39;s nightlife further, depending on your preference. Overnight stay In Bangkok.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563159,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563166,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3074,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415368\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415371\",\"Title\":\"DEPARTURE FROM BANGKOK &ndash; ARRIVAL IN MALAYSIA.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After having breakfast, check out from the hotel and get transferred to the Bangkok airport for flight to Malaysia, upon arrival in Malaysia, go through immigration and collect your luggage. You will be transferred to your hotel in Kuala Lumpur City Centre.&amp;nbsp;Check into your hotel and freshen up. Depending on the time of your arrival, you can spend the remainder of the day exploring the nearby area, trying local cuisine, or relaxing at your hotel.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563175,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563378,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415374\",\"Title\":\"HALF DAY KUALA LUMPUR CITY TOUR WITH KL TOWER \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy breakfast in the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later proceed for your Kuala Lumpur Orientation Tour by a comfortable A\\/C Coach. The tour will include Petronas Twin Towers (photo stop), Cocoa Centre, King&amp;#39;s palace (photo stop), National Monument (Photo Stop), National Mosque (photo stop) &amp;amp; Independence Square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Immerse yourself in the beautiful culture, history and architecture of Kuala Lumpur. On this guided tour, you will get a chance to experience the city&amp;rsquo;s must-see attractions while travelling in a comfortable AC coach. Start off by visiting the mesmerizing views of the city&amp;rsquo;s skyline as you stand in front of the breathtaking Petronas Towers, the tallest twin buildings in the world. Don&amp;#39;t forget to click wonderful photos to cherish for a lifetime. Carry on forward to see the Cocoa Centre, King&amp;#39;s palace (photo stop), National Monument (Photo Stop), National Mosque (photo stop) &amp;amp; Independence Square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note: This is a guided tour. Shared transfers included.&amp;quot;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563175,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563378,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":49785,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415377\",\"Title\":\"MALAYSIA- GENTING FULL DAY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Start your day early in the morning, After Breakfast, depart from your hotel in Malaysia. Enroute to Genting Highlands, make a stop at the famous Batu Caves. Explore the massive limestone caves, climb the 272 steps to the Temple Cave, and admire the Hindu shrines and statues. After visiting Batu Caves, continue your journey to Genting Highlands. The drive up the mountain offers scenic views of the surrounding rainforest. Once you arrive at Genting Highlands, take a one-way cable car ride to reach the hilltop resort. Enjoy the breathtaking views of the lush greenery and the cool mountain air during the cable car ride. Upon reaching the top, explore the Indoor Theme Park. It offers a variety of exciting rides, attractions, and entertainment options suitable for all ages. Enjoy thrilling roller coasters, interactive games, and themed experiences. In the late afternoon or early evening, depart from Genting Highlands and head back to your hotel in Malaysia. Overnight stay in Kuala lumper.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563175,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563378,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563180,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":49786,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415380\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30568,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415392\",\"Title\":\"DEPARTURE FROM MALAYSIA &ndash; ARRIVAL IN SINGAPORE AND NIGHT SAFARI\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to Kuala Lumpur Airport for your flight to Singapore. upon arrival in Singapore, go through immigration and collect your luggage. You will be transferred to your hotel in Singapore.&amp;nbsp;Check into your hotel and freshen up and spend the day at leisure. In the evening, you will visit one of the kind zoos &amp;ldquo;Night Safari&amp;rdquo;. It is the first nocturnal zoo globally with around 2500 animals from 130 species. It has played an essential role in the conservation of endangered animals. The nocturnal zoo also hosts a number of cultural shows and traditional tribal dance performances, where you can get a glimpse of Singapore&amp;rsquo;s rich traditions. You can witness the animal&amp;rsquo;s natural behavior in the nighttime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, you will return to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563147,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415395\",\"Title\":\"SINGAPORE: FAMILIARISATION TOUR.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;After Breakfast, his tour will take you to the most famous places around the city like Chinatown, Financial District, Central Business District, Civilian War Memorial, and Civic District. Next, see Suntec City, Marina Bay, and the icon of Singapore - the Merlion Statue.&amp;nbsp;Transfer back to hotel after the tour. Rest of the day is at leisure to relax in the comforts of your room OR enjoy shopping at the many malls and street side shops. You may also select one of the many optional sightseeing tours.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in your Singapore Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563147,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":49787,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415398\",\"Title\":\"SINGAPORE &ndash; SENTOSA ADVENTURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;After Breakfast, start your day by making your way to Sentosa Island. Upon arrival at Sentosa, proceed to the designated cable car station and board the one-way cable car ride. Enjoy the panoramic views as you glide over the island and take in the breathtaking sights. Once you reach the other side, disembark from the cable car and make your way to the Luge &amp;amp; Skyride area. Next, head to the Sky Helix, an iconic spiral tower that offers stunning views of Sentosa and its surroundings. Take in the panoramic vistas and capture memorable photos from this elevated vantage point. After enjoying the Sky Helix, you can explore other attractions on Sentosa Island. There are various options to choose from, including Universal Studios Singapore, S.E.A. Aquarium, Adventure Cove Waterpark, and the beach areas at our own personal expense. Spend the rest of the day exploring the attractions and enjoying the offerings of Sentosa Island. In the evening, make your way back to the cable car station or designated transportation area to return to the mainland.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight in Singapore.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563147,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415401\",\"Title\":\"SINGAPORE - GARDENS BY THE BAY\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;After a delicious Breakfast, start your day by making your way to Gardens by the Bay. Upon arrival, explore the outdoor gardens and marvel at the stunning collection of plants, flowers, and trees. Visit iconic attractions within Gardens by the Bay, such as the Supertree Grove, Cloud Forest, and Flower Dome. Take your time to enjoy the beauty of the gardens, walk along the elevated walkways, and admire the unique architectural design.&lt;br \\/&gt;\\r\\nAfter exploring the gardens, make your way to Marina Bay Sands and head up to the Sands SkyPark Observation Deck. After your visit to the Sands SkyPark Observation Deck, you can explore other attractions within Marina Bay Sands, such as the luxury shopping mall, art exhibitions, or dine at one of the world-class restaurants. End your day by heading back to your accommodation or continuing to explore more of Singapore&amp;#39;s vibrant nightlife if you desire.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight stay in Singapore.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563147,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563170,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415404\",\"Title\":\"DEPARTURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;After Breakfast, pack your belongings and check out of your hotel. Depending on your flight departure time, you may have some free time to do some last-minute shopping or visit any attractions in Singapore that you may have missed. Arrive at the airport and go through check-in and immigration procedures. Bid farewell to Singapore and board your flight back home.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"56760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"99469.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":100121,\"priceDoubleOcc\":\"99469.25\",\"priceSingleOcc\":null,\"priceExtraBed\":\"95657.00\",\"priceWithoutBed\":\"74152.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":99469.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74152,\"CEB\":95657,\"COSTDO\":99469.25,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":101424.25,\"COSTTO\":101424.25}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"56761\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"108071.25\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":107843,\"priceDoubleOcc\":\"108071.25\",\"priceSingleOcc\":null,\"priceExtraBed\":\"102695.00\",\"priceWithoutBed\":\"77573.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108071.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77573.25,\"CEB\":102695,\"COSTDO\":108071.25,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":107387,\"COSTTO\":107387}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56762\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"170924.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":169067,\"priceDoubleOcc\":\"170924.50\",\"priceSingleOcc\":null,\"priceExtraBed\":\"143261.25\",\"priceWithoutBed\":\"103868.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":170924.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":103868,\"CEB\":143261.25,\"COSTDO\":170924.5,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":165352.75,\"COSTTO\":165352.75}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"56760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"95144.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95768,\"priceDoubleOcc\":\"95144.50\",\"priceSingleOcc\":null,\"priceExtraBed\":\"91498.00\",\"priceWithoutBed\":\"70928.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":95144.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":70928,\"CEB\":91498,\"COSTDO\":95144.5,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":97014.5,\"COSTTO\":97014.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"56761\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"103372.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":103154,\"priceDoubleOcc\":\"103372.50\",\"priceSingleOcc\":null,\"priceExtraBed\":\"98230.00\",\"priceWithoutBed\":\"74200.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103372.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74200.5,\"CEB\":98230,\"COSTDO\":103372.5,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":102718,\"COSTTO\":102718}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56762\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"163493.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":161717,\"priceDoubleOcc\":\"163493.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"137032.50\",\"priceWithoutBed\":\"99352.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":163493,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":99352,\"CEB\":137032.5,\"COSTDO\":163493,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":158163.5,\"COSTTO\":158163.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Accommodation for 02 Nights in selected Pattaya Hotel or Similar.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Accommodation for 02 Nights in selected Bangkok Hotel or Similar.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Accommodation for 03 Nights in selected Kuala Lumpur Hotel or Similar.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Accommodation for 04 Nights in selected Singapore Hotel or Similar.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Daily Breakfast in the Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Return airport transfers on Private Basis in Thailand.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Tourist Visa Processing&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Coral island tour with lunch by speed boat on SIC&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Alcazar Show on PVT&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Bangkok city tour with 2 temple on PVT&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Chao Pharaye Prinsess River Dinner Cruise on PVT&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Lunch \\/ Dinner as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Half Day Kuala Lumpur city tour with KL Tower Entrance&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Genting Full Day Tour&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Night Safari tour IN Singapore on seat-in-coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Singapore City Tour on seat-in-coach basis.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Sentosa Adventure on seat-in-coach basis.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Gardens by the bay on seat-in-coach basis.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Return airport transfers on seat-in-coach basis&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"415353\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[415353],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415356\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[415356],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415359\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415359],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415362\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415362],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415365\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[415365],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415368\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[415368],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415371\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[415371],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415374\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[415374],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415377\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[415377],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415380\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[415380],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415392\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[415392],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415395\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[415395],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415398\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[415398],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415401\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[415401],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415404\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[415404],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya,Bangkok,Kuala Lumpur,Singapore','Pattaya,South East Asia,Thailand,Bangkok,Kuala Lumpur,Malaysia,Orient,Singapore',NULL,'20925,2266,30568,25278',95145,170925,11,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Thailand,Malaysia,Singapore','215,132,190','2023-09-07 13:14:33','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'the-best-of-thailand-malaysia-and-singapore',NULL,NULL,NULL,0),(299,55377,1,5293,0,0,0,'Honeymoon,Adventure,Family,Religious,Heritage,Culture,Romantic,Shopping and Nightlife,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":55377,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/turkey---free-easy_1686721287\",\"BookingValidUntill\":\"2023-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Turkey, officially the Republic of Turkey, is a historic country of the world. It resides on the Anatolian peninsula in Western Asia and Balkan peninsula in Southeastern Europe. Turkey Country is enveloped by the sea on three sides &amp;ndash; the Aegean Sea to the west, the Black Sea to the north, and the Mediterranean Sea to the south. The beauty of Turkey is lined up with warm colures, sun-kissed beaches, pine-covered forests, and historic Roman wonders. Turkey Tourism have a large number of tourist attractions. Turkey with all its beauty, attractions, and activities, also has pleasant weather. Its coastal regions have temperate Mediterranean climate, composed of&amp;nbsp;hot and humid summers, heavy rains during rainy seasons, and humid winters. Discover the captivating beauty of Istanbul&amp;#39;s cityscape through its vibrant street art, exotic bazaars and exquisite architecture.Turkey offers a rich tapestry of history, culture, natural beauty, and culinary delights, making it a fascinating destination for travelers from around the world.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nIstanbul: The vibrant city of Istanbul is a must-visit destination in Turkey. It straddles Europe and Asia and is filled with iconic landmarks like the Hagia Sophia, Blue Mosque, Topkapi Palace, Grand Bazaar, and the historic Sultanahmet district. The city&amp;#39;s rich history, stunning architecture, bustling markets, and delicious cuisine make it an unforgettable experience.&lt;br \\/&gt;\\r\\nThe Bosphorus Strait divides Istanbul into two continents, Europe and Asia. Taking a Bosphorus cruise allows you to enjoy breathtaking views of the city&amp;#39;s skyline, historical palaces, and iconic bridges.It is a vast city with so much to offer, and this is just a glimpse of what you can experience. Enjoy your time exploring the rich history, vibrant culture, and warm hospitality of Istanbul.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Turkey - Free and Easy\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4934\",\"SupplierName\":\"55 DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Heritage,Culture,Romantic,Shopping and Nightlife,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563512,\"Name\":\"Comfort Hotel Taksim\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sehit Muhtar mahallesi Feridiye Caddesi &Ccedil;amdal sokak No 5, Taksim \\/ Beyolu, 34435 Beyolu Istanbul, T&uuml;rkiye\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;In the bustling Taksim Square area, this unpretentious hotel is 5 minutes&amp;#39; walk from a metro station and 6 minutes&amp;#39; walk from the shopping and entertainment at Istiklal Caddesi avenue.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The relaxed rooms provide complimentary Wi-Fi, flat-screen TVs and safes; some feature cushioned headboards. Family rooms are available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA complimentary breakfast buffet is served in a down-to-earth dining room. There&amp;#39;s also a modest lobby lounge.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563512\\/4539_41e3569d4ed874289558849ede770d921688728730.jpg\",\"AccoAminitiesMask\":\"111000000000100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563514,\"Name\":\"Nova Plaza Hotel Taksim Square\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kocatepe, 21, Lamartin Cd., 34437 Beyolu, T&uuml;rkiye\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;Nova Plaza Taksim Square offers modern accommodation just 50 meters from the bustling Taksim Square and Istiklal Caddesi shopping street. It features a 24-hour room service and free WiFi. The soundproofed rooms at Nova Plaza Taksim Square are decorated with parquet floor and marble bathrooms with rain shower. Each room is equipped with air conditioning and flat-screen satellite TV.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563514\\/4539_f4ab3823eab46331dea37cdf3ebb5f5e1688728869.jpg\",\"AccoAminitiesMask\":\"111000101000100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":563521,\"Name\":\"The Marmara Taksim\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G&uuml;m&uuml;suyu, Osmanl Sk. No:1 D:B, 34437 Beyoglu Istanbul, T&uuml;rkiye\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;In the lively city center, this high-rise, upscale hotel is a minute&amp;#39;s walk from the closest metro station and 2 km from the medieval Galata Tower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Plush modern rooms have free Wi-Fi and flat-screen TVs, plus minibars, and tea and coffeemakers. Club rooms add Nespresso machines, and access to a lounge with free snacks and drinks. Suites offer kitchenettes, and\\/or whirlpool tubs and living rooms.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere are 2 posh restaurants serving Turkish and international cuisine; 1 has a sleek bar, while the other includes a terrace with city views. There&amp;#39;s also a lobby lounge, a chocolate shop and a seasonal rooftop pool, plus a gym and a chic wellness spa.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563521\\/4539_93bc4253354530a1e046148c98a7c5991688729028.jpg\",\"AccoAminitiesMask\":\"111101101100100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17318,\"Title\":\"Princess Island tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":49976,\"Title\":\"Bursa Day Trip\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(55, 65, 81) font-family: S&ouml;hne, ui-sans-serif, system-ui, -apple-system, &amp;quotSegoe UI&amp;quot, Roboto, Ubuntu, Cantarell, &amp;quotNoto Sans&amp;quot, sans-serif, &amp;quotHelvetica Neue&amp;quot, Arial, &amp;quotApple Color Emoji&amp;quot, &amp;quotSegoe UI Emoji&amp;quot, &amp;quotSegoe UI Symbol&amp;quot, &amp;quotNoto Color Emoji&amp;quot font-size: 16px text-align: start white-space-collapse: preserve background-color: rgb(247, 247, 248)&quot;&gt;A trip to Bursa, Turkey can be a wonderful experience! Bursa is a historic city located in northwestern Turkey, known for its rich history, beautiful landscapes, and cultural attractions. &lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12905\\/sightseeing\\/4539_1688720432.jpg\",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":49971,\"Title\":\"Miniaturk\",\"Description\":\"&lt;p&gt;The Minaturk is just what it sounds like: a miniature version of Turkish treasures.&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &amp;quotTrip Sans VF&amp;quot, &amp;quotTrip Sans&amp;quot, Arial, sans-serif font-size: 16px text-align: start white-space-collapse: preserve&quot;&gt; &lt;\\/span&gt;In the park there are 105 models in 1\\/25th scale, half of which are from Istanbul, and the rest are from Anatolia and the Ottoman territories outside Turkey.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12905\\/sightseeing\\/4539_1688715945.jpg\",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":5700,\"Title\":\"Pierre Loti hill\",\"Description\":\"Cable Car to Pierre Loti Hill where you can watch the beautiful view of Golden Horn and Istanbul. Drive to the mouth of the Golden Horn, to explore the Spice Market of 17th century origin - an exotic food market and bazaar, selling spices, dried fruits, cheeses, olives, as well as towels, slippers, baskets etc.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528460032.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":49970,\"Title\":\"Spice Bazaar\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Spice Bazaar&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Istanbul&quot; title=&quot;Istanbul&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;Istanbul&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Turkey&quot; title=&quot;Turkey&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;Turkey&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Bazaar&quot; title=&quot;Bazaar&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;bazaars&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in the city. Located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Emin%C3%B6n%C3%BC&quot; title=&quot;Emin&ouml;n&uuml;&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;Emin&ouml;n&uuml;&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;quarter of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Fatih&quot; title=&quot;Fatih&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;Fatih&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;district, it is the most famous covered shopping complex after the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Grand_Bazaar,_Istanbul&quot; title=&quot;Grand Bazaar, Istanbul&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) overflow-wrap: break-word font-family: sans-serif text-align: start&quot;&gt;Grand Bazaar&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12905\\/sightseeing\\/4539_1688715693.jpg\",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4934,\"SupplierName\":\"55 DMC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"403106\",\"Title\":\"Istanbul Arrival : Welcome to Istanbul.\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Istanbul Airport, you will be meet by our Representative who will welcome and transfer you to your hotel. On your way, you will also witness the twinkling lights of Europe from Tarabya to Bebek. Upon arrival in Istanbul, you are dropped to your hotel where you can relax and freshen up. The day is free for leisure where you can stroll the&amp;nbsp;local places and flea market. In the evening, you can enjoy dinner at the restaurant.&lt;br \\/&gt;\\r\\nOvernight in Istanbul.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563512,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563521,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"403109\",\"Title\":\"Istanbul Day\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Start your day with a delicious breakfast at your hotel to fuel up for the day ahead. Head to the Spice Bazaar, also known as the Egyptian Bazaar, located in the Emin&amp;ouml;n&amp;uuml; district. This vibrant market is filled with colorful stalls offering a wide variety of spices, dried fruits, nuts, Turkish delight, teas, and other culinary delights. Take your time to explore the market, enjoy the aromas, and perhaps purchase some traditional Turkish spices to take home as souvenirs. After exploring the Spice Bazaar, Enjoy a delicious Lunch at a local restaurant. Istanbul offers a wide range of dining options to international flavors. Make your way to Miniaturk, located in the Sutluce neighborhood. Miniaturk is a park that showcases miniature replicas of famous landmarks and architectural treasures from all over Turkey. Explore the park and marvel at the intricate craftsmanship and attention to detail in the miniaturized versions of Istanbul&amp;#39;s iconic buildings, ancient ruins, and historical sites. Next, head to Pierre Loti Hill, named after the French novelist Pierre Loti, who was known for frequenting this hilltop caf&amp;eacute;. As the day winds down, head back to the city center to enjoy dinner at one of Istanbul&amp;#39;s Restaurant.&lt;br \\/&gt;\\r\\nOvernight stay in Istanbul.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563512,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563521,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17318,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":49976,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":49971,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5700,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":49970,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"403112\",\"Title\":\"Istanbul Old City Tour with Bosphorus Cruise.\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Start your day with a delicious breakfast at your hotel, meet your guide at the hotel lobby and begin your Istanbul Old City Tour. The tour will take you to several iconic landmarks and historical sites within the Old City. Start your tour with a visit to the magnificent Hagia Sophia, also known as Ayasofya. This architectural marvel was initially built as a Byzantine cathedral, later converted into a mosque, and is now a museum. Marvel at its stunning interior adorned with intricate mosaics and impressive dome. Explore the opulent Topkapi Palace, which served as the residence of Ottoman sultans for centuries. Discover its vast courtyards, intricate chambers, and treasury, which houses priceless artifacts, including the famous Topkapi Dagger and the Spoonmaker&amp;#39;s Diamond. Visit the Hippodrome, a former chariot racing track during the Byzantine era. Admire the ancient Egyptian Obelisk, the Serpent Column, and the German Fountain, which are all located within the Hippodrome. Experience the grandeur of the Blue Mosque, renowned for its exquisite blue-tiled interior and impressive architecture. Take in the peaceful ambiance and admire the intricate details of this iconic mosque. Explore the Aya Irini Mosque, located within the grounds of the Topkapi Palace. This Byzantine-era church-turned-mosque offers a serene atmosphere and beautiful architecture. Conclude your tour with a visit to the Grand Bazaar, one of the world&amp;#39;s oldest and largest covered markets. Immerse yourself in its bustling atmosphere, browse through a wide range of shops offering textiles, carpets, jewelry, spices, and more. Take your time to haggle and shop for souvenirs or simply enjoy the vibrant ambiance. After the tour, enjoy a well-deserved lunch at a local restaurant. Meet your guide at the hotel lobby and depart for the harbor to embark on a memorable dinner cruise on the Bosphorus. Enjoy a leisurely cruise along the Bosphorus Strait, which separates Europe and Asia. Admire the stunning panoramic views of Istanbul&amp;#39;s skyline, waterfront palaces, and iconic bridges. Experience the unique opportunity to witness two continents at once as you sail between Asia and Europe. Be entertained by a belly dancer show, Turkish folk dances, and a DJ music performance on board the cruise. Immerse yourself in the lively atmosphere and enjoy the cultural performances. Indulge in a delicious dinner featuring a variety of Turkish and international cuisine. Enjoy a range of dishes, including appetizers, main courses, and desserts. Vegetarian options are typically available as well. Quench your thirst with unlimited soft drinks during the cruise. After the dinner cruise, you&amp;#39;ll be driven back to your hotel. Take some time to relax and reflect on your day&amp;#39;s experiences.&lt;br \\/&gt;\\r\\nOvernight in Istanbul.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563512,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563521,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":27505,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8969,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"403115\",\"Title\":\"Istanbul &ndash; Leisure Day.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast, enjoy a day at leisure in Istanbul. You can explore the city on your own, visit some of the attractions you missed on the previous days, or simply relax and soak up the atmosphere of this vibrant city, or You can also choose to indulge in optional activities today (contact our holiday expert to know more). Head back to the hotel for an overnight stay.&amp;nbsp;Enjoy an Overnight stay in Istanbul&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563512,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":563514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":563521,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"403118\",\"Title\":\"DEPARTURE - ISTANBUL\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Wake up in the morning, have a scrumptious breakfast and pack your bags for your departure.&lt;br \\/&gt;\\r\\nComplete the check-out formalities and get ready to leave for airport to catch a flight back home and end the trip with unforgettable memories.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Four nights accommodation in Istanbul on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Meals as per hotel plan.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;All Tours and sightseeing as per the itinerary on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Return Airport Transfers.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Travel Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&quot;text-align:justify&quot;&gt;Visa Processing Charges.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"403106\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[403106],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"403109\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[403109],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"403112\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[403112],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"403115\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[403115],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"403118\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[403118],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul','Istanbul,Central Asia,Turkey,Eurasia',NULL,'12905',0,0,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-08-31 00:00:00','2023-08-31 00:00:00',3,'Turkey','222','2023-09-07 13:14:59','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'turkey-free-and-easy',NULL,NULL,NULL,0),(300,52443,1,5293,0,0,0,'Honeymoon,Adventure,Family,Religious,Heritage,Culture,Romantic,Shopping and Nightlife,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":52443,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Turkey, officially the Republic of Turkey, is a historic country of the world. It resides on the Anatolian peninsula in Western Asia and Balkan peninsula in Southeastern Europe. Turkey Country is enveloped by the sea on three sides &amp;ndash; the Aegean Sea to the west, the Black Sea to the north, and the Mediterranean Sea to the south. The beauty of Turkey is lined up with warm colures, sun-kissed beaches, pine-covered forests, and historic Roman wonders. Turkey Tourism have a large number of tourist attractions. Turkey with all its beauty, attractions, and activities, also has pleasant weather. Its coastal regions have temperate Mediterranean climate, composed of&amp;nbsp;hot and humid summers, heavy rains during rainy seasons, and humid winters. It has a culture, history and modernity. Discover the captivating beauty of Istanbul&amp;#39;s cityscape through its vibrant street art, exotic bazaars and exquisite architecture.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nIstanbul: The vibrant city of Istanbul is a must-visit destination in Turkey. It straddles Europe and Asia and is filled with iconic landmarks like the Hagia Sophia, Blue Mosque, Topkapi Palace, Grand Bazaar, and the historic Sultanahmet district. The city&amp;#39;s rich history, stunning architecture, bustling markets, and delicious cuisine make it an unforgettable experience.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCappadocia: Known for its unique rock formations, fairy chimneys, and cave dwellings, Cappadocia is a surreal and enchanting destination. Take a hot air balloon ride over the otherworldly landscapes, explore the underground cities, hike through the valleys, and visit the rock-cut churches of Goreme Open Air Museum.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nIstanbul and Cappadocia await you! With Istanbul, explore the best of both regions with our custom-made itinerary. From top attractions to delicious food, we&amp;#39;ve got everything covered. Our itinerary is designed to save time and money while providing maximum enjoyment. With us, explore Istanbul and Cappadocia at your own pace and in style!&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Turkey Highlights\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15197\",\"SupplierName\":\"Thistle Travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Activity,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Heritage,Culture,Romantic,Shopping and Nightlife,Activites Tour\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":404025,\"Name\":\"CVK Taksim Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Siraselviler Caddesi No: 11, Istanbul, Turkey, \"},\"Images\":[],\"CityId\":12905,\"Brief\":\"Welcome to the CVK Taksim Hotel Istanbul which is located in Istanbul and close to the Taksim Republic Art Gallery and the Taksim Gezi Park. This hotel built in 2010 is rated for its location and its cleanliness. The main hotel amenities are babysitting or childcare (surcharge), supervised childcare &amp; activities (surcharge), coffee shop or caf&Atilde;&copy;, coffee &amp; tea in lobby, bar &amp; lounge and 24-hour front desk. Additional amenities include restaurant (&Atilde;&nbsp; la carte), rooftop terrace, carpeted, facilities for disabled guests, non-smoking rooms, designated smoking areas, heating, ironing facilities, beauty shop, fax &amp; photocopying, meeting &amp; banquet facilities, complimentary newspapers in lobby, dry cleaning &amp; laundry service, laundry facilities, luggage storage, porter, room service and television in lobby. This hotel accepts the following payment types: American Express, MasterCard and Visa. Cash not accepted. Pets not allowed. The hotel will appeal to solo travellers and couples.This 4 star hotel is within close proximity of the Istanbul Archaeology Museum and the Ataturk Cultural Center. The closest airports to the hotel are Ataturk Intl. and Sabiha Gokcen Intl.The hotel is housed in a modern mid-rise building.The hotel has business facilities including 24-hour business center, business center, multiple large conference rooms and multiple small meeting rooms. Wellness facilities include hair salon, massage - spa treatment room(s), fitness facilities, sauna, spa services on site and Turkish bath.Make yourself at home in one of the relaxing 85 air conditioned rooms. The main room amenities are cribs &amp; infant beds (complimentary), cable TV service, satellite TV service, premium TV channels, soundproofed rooms and air conditioning. Additional room amenities include daily housekeeping, desk, direct-dial phone, flat-panel TV, hair dryer (on request), slippers, minibar, pay movies and phone.Eating and drinking facilities include restaurant (&Atilde;&nbsp; la carte), coffee shop or caf&Atilde;&copy;, coffee &amp; tea in lobby and bar &amp; lounge.The hotel has a 24-hour reception. Chargeable parking is possible nearby.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/CVKI\\/CVKI_FRONT.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":21340,\"Title\":\"cappadocia city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12905\\/sightseeing\\/4539_1686724093.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":550729,\"Name\":\"Cappadocia Caves Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Aydinli Orta Mahallesi Zeybek Sokak No:3 Goreme (Cappadocia) \\/Nevsehir TURKEY\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"&lt;p&gt;Nestled in a historic village surrounded by G&ouml;reme National Park, this quaint stone hotel is 2 km from the G&ouml;reme Open Air Museum and 4 km from the D302 road.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring exposed stone walls, the old-world rooms provide free Wi-Fi, flat-screen TVs, and tea and coffeemaking facilities. Suites add sitting areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Some offer whirlpool tubs, balconies, vaulted ceilings and\\/or exposed wood beams.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCappadocia Caves Hotel offers service with 32 rooms made up of private caves and natural stone rooms, a terrace overlooking Goreme with a pool and a magnificent location in Goreme, the center of Cappadocia.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_550729\\/4539_d9f779f4936c09aba34fb8725cb433e61682506676.jpg\",\"AccoAminitiesMask\":\"111101100010111000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":21340,\"Title\":\"cappadocia city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12905\\/sightseeing\\/4539_1686724093.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start;&quot;&gt;Journey through Turkey&#039;s Treasures! Book Now and Save upto 5,000\\/-&lt;\\/span&gt;&lt;\\/p&gt;\",\"CouponCode\":\"DISCOVERTURKEY\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"379994\",\"Title\":\"Arrival: Istanbul\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Marhaba! Arrive at Istanbul Airport!&amp;nbsp;On your way, you will also witness the twinkling lights of Europe from Tarabya to Bebek. Later, you are transferred to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in Istanbul, you are dropped to your hotel where you can relax and freshen up. In the evening, enjoy Boshphorus Dinner Cruise&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This night cruise is an enchanting experience and you will be served a &amp;lsquo;welcome drink&amp;rsquo; as soon as you board the cruise. Passing through the moonlight, your cruise will glide past Hotel Kempinski, Dolmabahce Palace on the European shores and the Beylerbeyi Palace, Kanlica and Anatolian Fortress from the Asian side. The Dinner Cruise will host you with live Turking entertainment including Turkish Folk &amp;amp; belly dance. The cruise will host an open buffet including Turkish specialities, unlimited local drinks, and barbeque.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27505,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"379995\",\"Title\":\"Istanbul City tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today, explore the fascinating city of Istanbul on a full-day guided tour. Istanbul is a unique city that spans two continents, with a rich history and diverse culture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Your tour will begin with a visit to the iconic Blue Mosque, which is one of the most famous landmarks of Istanbul. The mosque is famous for its beautiful blue tiles and stunning architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Next, visit the Hagia Sophia, a magnificent structure that was once a church and later a mosque, and now serves as a museum. The building boasts stunning Byzantine architecture and impressive artwork.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;You will also visit the Topkapi Palace, which was the residence of the Ottoman sultans for over 400 years. The palace boasts stunning architecture and impressive collections of artifacts, including the famous Topkapi Dagger and the Spoonmaker&amp;#39;s Diamond.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later visit the Grand Bazaar, one of the largest and oldest covered markets in the world. The bazaar is home to over 4,000 shops, selling everything from spices and textiles to jewellery and ceramics.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening, you can relax at your hotel or explore the city on your own.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5698,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"379996\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"379997\",\"Title\":\"Istanbul - Cappadocia\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today, check out of your hotel in Istanbul and proceed to the airport for your flight to Cappadocia. The flight duration is approximately 1 hour and 15 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in Cappadocia, you will be transferred to your hotel. Cappadocia is a unique region in central Turkey known for its surreal landscape of fairy chimneys, cave dwellings, and underground cities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After checking in at your hotel, take some time to rest and relax. You can explore the surrounding area and check out the local markets or try some traditional Turkish cuisine at one of the local restaurants.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can join an optional traditional Turkish night show, which includes traditional dances and live music. Or, you can relax and enjoy the amenities of your hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550729,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"379998\",\"Title\":\"Cappadocia City tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast, start with your city tour of Cappadocia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This tour will include the Devrent Valley where you will see the different types of fairy chimneys. The famous chimneys include ones with caps, cones, mushroom-like forms, and pointed rocks.&amp;nbsp;You will also visit the Pasabaglari (Monks Valley) where you will see fairy chimneys with multiple stems and caps. There is also a Chapel dedicated to St. Simeon and a hermit&amp;#39;s shelter that has a fairy chimney with three heads.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next on the tour would be the Goreme Open Air Museum where religious education was started. You will also visit the chapels and monasteries carved into the fairy chimneys from the 10th and 13th centuries with frescos painted on the walls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The next stop is the Pigeon Valley where you will see a lot of pigeons and hear about how they used to help the send messages and fertilize the grapes. The last point on your tour would be the Uchisar Castle which resembles an Ortahisar in style. The top of the citadel provides an amazing panoramic view of the surrounding area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post the tour, you are transferred to the hotel for check-in and a comfortable stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550729,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21340,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"379999\",\"Title\":\"Hot Air Balloon Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Start your day early with a hot air balloon tour over Cappadocia. This is a once-in-a-lifetime experience that offers stunning views of the unique landscape of Cappadocia. You will see the sunrise over the fairy chimneys and rock formations while drifting over the valleys and mountains. The balloon ride typically lasts for 1 hour, and you will be back in your hotel in time for breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast, you have the day at leisure to explore this beautiful city on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can enjoy a sunset over the fairy chimneys or relax in your hotel and enjoy the amenities.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550729,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15595,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"380000\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"380005\",\"Title\":\"Cappadocia to Istanbul\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast check out from your Cappadocia Hotel and transfer to the airport for flight to Istanbul. On arrival at Istanbul airport meet and assist and transfer to your centrally located hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check In and time to freshen up and relax. Later you can enjoy some last minute shopping at the many malls, street side shops and bazaar&amp;#39;s.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Istanbul hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"380006\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Today post breakfast day free till your transfer to Istanbul Airport for your onward \\/ return flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories of your Turkey Highlights trip...!!!&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"52443\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"109945.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":87963,\"priceDoubleOcc\":\"109945.00\",\"priceSingleOcc\":153945,\"priceExtraBed\":\"88000.00\",\"priceWithoutBed\":\"77000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":77000,\"CEB\":88000,\"COSTDO\":109945,\"COSTSO\":153945,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44000,\"COSTTO\":44000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"52443\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"106946.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":85564,\"priceDoubleOcc\":\"106946.50\",\"priceSingleOcc\":149746.5,\"priceExtraBed\":\"85600.00\",\"priceWithoutBed\":\"74900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106946.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":74900,\"CEB\":85600,\"COSTDO\":106946.5,\"COSTSO\":149746.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42800,\"COSTTO\":42800}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;02 Night&amp;rsquo;s Accommodation in Istanbul &amp;ndash; CVK Taksim Hotel or similar 4*&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;03 Night&amp;rsquo;s Accommodation in Cappadocia &amp;ndash; Cappadocia Caves Hotel or similar 4* Deluxe&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;01 Night Accommodation in Istanbul - CVK Taksim Hotel or similar 4*&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Daily Breakfast in the Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return Airport transfers on private \\/ sharing basis in Cappadocia and Istanbul&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sightseeing tours as per itinerary on Seat in Coach (SIC) Basis&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hot Air Balloon Ride at Cat valley&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cappadocia City Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bosphorous Cruise with Dinner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Istanbul City Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visa Processing &amp;amp; Travel Insurance&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Local meet and assist on arrival&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"379994\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[379994],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"379995\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[379995],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"379996\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[379996],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"379997\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[379997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"379998\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[379998],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"379999\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[379999],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"380000\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[380000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"380005\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[380005],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"380006\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[380006],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Cappadocia',NULL,'12905,5094',106947,109945,6,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-07-31 12:53:52','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'turkey-highlights',NULL,NULL,NULL,0),(301,50797,1,5293,0,0,0,'Honeymoon,Adventure,Family,Religious,Romantic,Shopping and Nightlife,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":50797,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/best-of-turkey_1679493960\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Turkey is a multilayered delight blessed with a Mediterranean climate, rich history with ancient wonders and ruins influenced by the Ottoman Empire. The rich cultural legacy of Turkey is shaped by centuries of history and the influence of the various peoples that have inhabited its territory over several millennia; it is home to&amp;nbsp;19 UNESCO World Heritage Sites&amp;nbsp;and is&amp;nbsp;among the most visited&amp;nbsp;countries in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;The &lt;strong&gt;Best of Turkey Package&lt;\\/strong&gt; is designed to appeal both, culture-seekers and beach-buffs. Istanbul is the entry point for most travellers&amp;mdash;a vast city straddling Europe and Asia. While Istanbul possesses a wealth of things for tourists to see and do, other cities like Cappadocia, Antalya, Bursa etc. have their own appeal. Wherever you go, don&amp;rsquo;t forget to try the turkish coffee and desserts; enjoying flowery Turkish Delight and gooey-flaky baklava is mandatory.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Antalya\",\"SourcePlaceSysId\":1151,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"BEST OF TURKEY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15197\",\"SupplierName\":\"Thistle Travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa,Travel Insurance,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Romantic,Shopping and Nightlife,Offbeat,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":404314,\"Name\":\"WIND OF LARA\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"36.8595974\",\"Long\":\"30.8685914\",\"Address\":\"KEMERAGZI MAH. MEYDAN BULVARI 1003 . 07110 ANTALYA  TR, 07110\"},\"Images\":[],\"CityId\":1151,\"Brief\":\"Through its happiness concept including rewarding details, &acirc;&euro;&tilde;Wind of Lara Hotel &amp; SPA provides customized preference experience to all its customers. Our guests may enjoy thepeace and tranquility at our hotel department or have fun with entertainment sand activities on our beach.\\nProviding service at Antalya Lara, 19km from Antalya City Center and 12 km from Antalya Airport, Wind Of Lara Hotel &amp; SPA redefines a perfect holiday customized for you withpeace and entertainments.&#039;\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/57\\/578861\\/578861a_hb_l_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27498,\"Title\":\"Antalya Old City &amp; Waterfall Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px text-align: left&quot;&gt;Your visit to Antalya&#039;s magnificent landscape must include a trip to one of its resplendent waterfalls, which is a natural wonder. This tour is for those, who want to enjoy a cool day in Antalya and those who want to explore a wonder of nature.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655370994.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655387261.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":25726,\"Title\":\"Uchisar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":13764,\"Title\":\"Pasabag valley\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&amp;#039;s vineyard. Pacha means &amp;quot;General&amp;quot;, the military rank, in Turkish and it is a very common nick name. This site is also called Monks Valley. The name was derived from some cones carved in tuff stones which stand apart.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Pasabag_valley_12905_1579694422.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":550729,\"Name\":\"Cappadocia Caves Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Aydinli Orta Mahallesi Zeybek Sokak No:3 Goreme (Cappadocia) \\/Nevsehir TURKEY\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"&lt;p&gt;Nestled in a historic village surrounded by G&ouml;reme National Park, this quaint stone hotel is 2 km from the G&ouml;reme Open Air Museum and 4 km from the D302 road.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring exposed stone walls, the old-world rooms provide free Wi-Fi, flat-screen TVs, and tea and coffeemaking facilities. Suites add sitting areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Some offer whirlpool tubs, balconies, vaulted ceilings and\\/or exposed wood beams.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCappadocia Caves Hotel offers service with 32 rooms made up of private caves and natural stone rooms, a terrace overlooking Goreme with a pool and a magnificent location in Goreme, the center of Cappadocia.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_550729\\/4539_d9f779f4936c09aba34fb8725cb433e61682506676.jpg\",\"AccoAminitiesMask\":\"111101100010111000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27498,\"Title\":\"Antalya Old City &amp; Waterfall Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px text-align: left&quot;&gt;Your visit to Antalya&#039;s magnificent landscape must include a trip to one of its resplendent waterfalls, which is a natural wonder. This tour is for those, who want to enjoy a cool day in Antalya and those who want to explore a wonder of nature.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655370994.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655387261.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":25726,\"Title\":\"Uchisar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":13764,\"Title\":\"Pasabag valley\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&amp;#039;s vineyard. Pacha means &amp;quot;General&amp;quot;, the military rank, in Turkish and it is a very common nick name. This site is also called Monks Valley. The name was derived from some cones carved in tuff stones which stand apart.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Pasabag_valley_12905_1579694422.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null}]}},{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":519353,\"Name\":\"CVK Taksim Hotel Istanbul\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G&uuml;m&uuml;suyu, Sraselviler Cd. No:11, 34437 Beyolustanbul, T&uuml;rkiye\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"&lt;p&gt;In the center of Taksim Square, this elegant hotel is 5 km from the Hagia Sophia mosque and 7 km from the Sultan Ahmed Mosque.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring either city or street views, the refined rooms with classic decor offer Wi-Fi, flat-screen TVs with DVD players, and minibars, plus tea and coffeemaking facilities. Upgraded rooms add balconies and whirlpool baths. Suites offer views over the Bosphorus and in-room Jacuzzis. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in the chic rooftop restaurant, which has panoramic views of the Bosphorus. Other amenities include a bar, a terrace and a spa with a gym, a Jacuzzi, saunas and a hammam.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_519353\\/4539_d65d88223092cda09e02e6ad9f57e6881682677778.jpg\",\"AccoAminitiesMask\":\"111011101010111101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27498,\"Title\":\"Antalya Old City &amp; Waterfall Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px text-align: left&quot;&gt;Your visit to Antalya&#039;s magnificent landscape must include a trip to one of its resplendent waterfalls, which is a natural wonder. This tour is for those, who want to enjoy a cool day in Antalya and those who want to explore a wonder of nature.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655370994.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/4539_1655387261.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":25726,\"Title\":\"Uchisar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":13764,\"Title\":\"Pasabag valley\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&amp;#039;s vineyard. Pacha means &amp;quot;General&amp;quot;, the military rank, in Turkish and it is a very common nick name. This site is also called Monks Valley. The name was derived from some cones carved in tuff stones which stand apart.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Pasabag_valley_12905_1579694422.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":27505,\"Title\":\"Bosphorus Dinner Cruise\",\"Description\":\"&lt;ul class=&quot;product-overview__list&quot; style=&quot;box-sizing: inherit max-height: 1e06px padding-left: 0px list-style-type: none margin-right: 0px margin-bottom: 0px margin-left: 0px color: rgb(80, 80, 80) font-family: sans-serif&quot;&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Cruise your way between Europe and Asia via the Bosphorus Strait, which&nbsp;&lt;\\/span&gt;divides Turkey by separating Anatolia from Thrace.&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;li class=&quot;product-overview__list-item&quot; style=&quot;box-sizing: inherit max-height: 1e06px display: flex margin-bottom: 10px&quot;&gt;&lt;span class=&quot;product-overview__list-item-icon tours-icon-focus&quot; style=&quot;box-sizing: inherit max-height: 1e06px speak: none font-feature-settings: normal font-variant-numeric: normal font-variant-east-asian: normal line-height: 1 -webkit-font-smoothing: antialiased margin-top: 5px margin-right: 10px !important font-family: tours-app !important display: inline-block !important&quot;&gt;&lt;\\/span&gt;&lt;div style=&quot;box-sizing: inherit max-height: 1e06px&quot;&gt;&lt;p style=&quot;box-sizing: inherit max-height: 1e06px margin-bottom: 0px&quot;&gt;&lt;span style=&quot;box-sizing: inherit max-height: 1e06px background-color: transparent&quot;&gt;Enjoy the traditional folk dance and belly dance music performances and admire the talent of the artists!&lt;\\/span&gt;&lt;\\/p&gt;&lt;\\/div&gt;&lt;\\/li&gt;&lt;\\/ul&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1655388160.jpg\",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":5698,\"Title\":\"Istanbul City tour\",\"Description\":\"Visit the  ancient Roman Hippodrome, famous the Blue Mosque renowned for its striking blue Iznik tiled interior. After lunch in a local restaurant in the old town you will visit Imperial Palace of Topkapi from which Ottoman Sultans ruled their grand empire for over 400 years.  From Topkapi Palace you will walk down the Sogukcesme Street where you can see good examples of Ottoman Houses and finally visit the Grand Bazaar\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/968_1528459752.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15197,\"SupplierName\":\"Thistle Travel\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(37, 37, 37); font-family: Roboto, sans-serif; font-size: 16px; text-align: start;&quot;&gt;Journey through Turkey&#039;s Treasures! Book Now and Save upto 5,000\\/- on Your Unforgettable Holiday Experience! *Per person&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CouponCode\":\"DISCOVERTURKEY\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"367102\",\"Title\":\"Arrive Antalya - Check In Hotel - Explore the beautiful surroundings\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon your arrival at the Antalya airport, meet and assist and transfer to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After checking in, take some time to rest and freshen up before heading out to explore the city (on own). Antalya is a beautiful coastal city with a rich history and culture, so there are many things to see and do.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, head to the marina to enjoy the sunset and dinner (on own). There are plenty of seafood restaurants with beautiful views of the Mediterranean Sea, making for a perfect end to your first day in Antalya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404314,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367103\",\"Title\":\"Antalya: Old City &amp; Waterfall tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Start your day with a traditional Turkish breakfast at the hotel. Then, meet your tour guide for a walking tour of the old city. Explore the narrow streets and admire the Ottoman-era architecture of the buildings, mosques, and historic landmarks. You will also visit Hadrian&amp;#39;s Gate, a magnificent Roman monument that marks the entrance to the old town.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Next, head to the Duden Waterfalls, located just a short drive away from the city center. The waterfall is situated on the Duden River and cascades over the cliffs into the Mediterranean Sea. You can take a scenic walk along the river and admire the natural beauty of the area.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;After the waterfall tour, return to the old city for lunch at one of the local restaurants. You can try traditional Turkish dishes such as kebabs, meze, or pide. In the afternoon, you can explore the Antalya bazaar, where you can find a variety of goods, including souvenirs, spices, textiles, and jewelry.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening, head to the top of Kaleici to enjoy a panoramic view of the city and watch the sunset. You can find several rooftop restaurants and cafes in the area that offer stunning views of the sea and the Taurus Mountains.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404314,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27498,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17303,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367104\",\"Title\":\"Pamukkale Day Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After Breakfast, take a day trip to Pamukkale, a UNESCO World Heritage Site famous for its white travertine terraces and ancient Roman city of Hierapolis. The tour will take approximately 3 hours each way, so be prepared for an early start.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;After arriving in Pamukkale, you will have time to explore the natural wonders of the terraces and the ancient ruins of Hierapolis. The white terraces are formed by the accumulation of calcium carbonate, and you can walk on the terraces, take photos, and even dip your feet in the warm pools.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In Hierapolis, you can see the remains of ancient Roman baths, temples, and theaters, including the well-preserved amphitheater. You can also visit the Hierapolis Archaeology Museum to learn more about the history of the region.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;After the tour, return to Antalya in the evening. You can spend the rest of the evening exploring the city on your own, trying different restaurants or relaxing at your hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404314,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367105\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367106\",\"Title\":\"Antalya To Cappadocia\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today, check out of your hotel in Antalya and proceed to the airport for your flight to Cappadocia. The flight duration is approximately 1 hour and 15 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in Cappadocia, you will be transferred to your hotel. Cappadocia is a unique region in central Turkey known for its surreal landscape of fairy chimneys, cave dwellings, and underground cities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After checking in at your hotel, take some time to rest and relax. You can explore the surrounding area and check out the local markets or try some traditional Turkish cuisine at one of the local restaurants.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can join an optional traditional Turkish night show, which includes traditional dances and live music or you can relax and enjoy the amenities of your hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550729,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367107\",\"Title\":\"Hot Air Balloon Tour and Cappadocia Red Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Start your day early with a hot air balloon tour over Cappadocia. This is a once-in-a-lifetime experience that offers stunning views of the unique landscape of Cappadocia. You will see the sunrise over the fairy chimneys and rock formations while drifting over the valleys and mountains. The balloon ride typically lasts for 1 hour, and you will be back in your hotel in time for breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast, join a half-day Red Tour to explore the best sights of Cappadocia. The tour includes visits to the Goreme Open Air Museum, where you can see the early Christian churches and frescoes, and the Pasabag Valley, which is known for its fairy chimneys and rock formations.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will also visit the Uchisar Castle, which is the highest point in Cappadocia and offers stunning panoramic views of the region. The tour will also include a visit to the pottery workshop in Avanos, where you can see the traditional techniques of pottery-making.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon, you can explore the town of Urgup, which is known for its beautiful architecture and traditional bazaars. You can shop for souvenirs or try some local delicacies at one of the cafes or restaurants.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can enjoy a sunset over the fairy chimneys or relax in your hotel and enjoy the amenities.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550729,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":25726,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13764,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367108\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367109\",\"Title\":\"Cappadocia to Istanbul\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today, check out of your hotel in Cappadocia and proceed to the airport for your flight to Istanbul. The flight duration is approximately 1 hour and 20 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Upon arrival in Istanbul, you will be transferred to your hotel. After checking in and freshening up, get ready for an evening Bosphorus dinner cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;The Bosphorus Strait is a narrow waterway that connects the Black Sea to the Sea of Marmara, and it divides Istanbul into two continents - Europe and Asia. During the dinner cruise, you will have the opportunity to enjoy a delicious meal while cruising along the Bosphorus and admiring the stunning views of the city&amp;#39;s skyline and landmarks, such as the Blue Mosque, Topkapi Palace, and Galata Tower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;You can also enjoy live entertainment during the cruise, including traditional Turkish music and belly dancing performances. After the cruise, you will be transferred back to your hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27505,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367110\",\"Title\":\"Istanbul City tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today, explore the fascinating city of Istanbul on a full-day guided tour. Istanbul is a unique city that spans two continents, with a rich history and diverse culture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Your tour will begin with a visit to the iconic Blue Mosque, which is one of the most famous landmarks of Istanbul. The mosque is famous for its beautiful blue tiles and stunning architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Next, visit the Hagia Sophia, a magnificent structure that was once a church and later a mosque, and now serves as a museum. The building boasts stunning Byzantine architecture and impressive artwork.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;You will also visit the Topkapi Palace, which was the residence of the Ottoman sultans for over 400 years. The palace boasts stunning architecture and impressive collections of artifacts, including the famous Topkapi Dagger and the Spoonmaker&amp;#39;s Diamond.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later visit the Grand Bazaar, one of the largest and oldest covered markets in the world. The bazaar is home to over 4,000 shops, selling everything from spices and textiles to jewellery and ceramics.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening, you can relax at your hotel or explore the city on your own.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5698,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367111\",\"Title\":\"Day at Leisure - Bursa Day trip from Istanbul (Optional)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast today, you have the day at leisure. Perhaps&amp;nbsp;you can opt for a day trip to Bursa, a historic city located south of Istanbul, known for its Ottoman architecture, silk production, and hot springs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;The tour will include a visit to the Green Mosque and Tomb, which is famous for its intricate tilework and calligraphy. You will also visit the Grand Mosque, which is one of the largest mosques in Turkey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Afterward, you will take a cable car ride up to Uludag Mountain, which is the highest peak in western Turkey. The mountain is known for its stunning views of the surrounding countryside and is a popular destination for skiing and winter sports.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening, return to Istanbul and relax at your hotel or explore the city on your own. You can visit one of the many museums or galleries, such as the Istanbul Modern Art Museum, or enjoy the city&amp;#39;s vibrant nightlife.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17317,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367112\",\"Title\":\"Istanbul: Day at Leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today, enjoy a day at leisure in Istanbul. You can explore the city on your own, visit some of the attractions you missed on the previous days, or simply relax and soak up the atmosphere of this vibrant city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;One option is to visit Taksim Square, a lively area in central Istanbul known for its shops, restaurants, and nightlife. Taksim Square is home to the famous Istiklal Avenue, a pedestrian street that is lined with shops, cafes, and historic buildings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;You can also visit the Galata Tower, a medieval tower that offers stunning views of the city, or the Dolmabahce Palace, which is a magnificent Ottoman-era palace that was once the residence of the sultans.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening, you can enjoy dinner at one of the many restaurants in Taksim Square or head to one of the city&amp;#39;s popular rooftop bars for a drink and panoramic views of the city skyline.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519353,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"367113\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Today, it is time to say goodbye to Turkey as you check out of your hotel and proceed to the airport for your flight back home or to your next destination. Depending on the time of your flight, you may have some free time to do some last-minute souvenir shopping or sightseeing in Istanbul.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We hope you had a wonderful time exploring the beautiful country of Turkey and that you will take back many fond memories of your trip. Safe travels!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50797\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"144969.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":144969,\"priceDoubleOcc\":\"144969.00\",\"priceSingleOcc\":211794,\"priceExtraBed\":\"115973.00\",\"priceWithoutBed\":\"107800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":144969,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":107800,\"CEB\":115973,\"COSTDO\":144969,\"COSTSO\":211794,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":144969,\"COSTTO\":144969}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50797\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"141015.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3},{\"From\":\"2023-04-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":141015,\"priceDoubleOcc\":\"141015.30\",\"priceSingleOcc\":206017.8,\"priceExtraBed\":\"112810.10\",\"priceWithoutBed\":\"104860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":141015.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104860,\"CEB\":112810.1,\"COSTDO\":141015.3,\"COSTSO\":206017.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":141015.3,\"COSTTO\":141015.3}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost for optional Sightseeing Tour&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 Nights Accommodation in Antalya on twin \\/ double sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Nights Accommodation in Cappadocia on twin \\/ double sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04 Nights Accommodation in Istanbul on twin \\/ double sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on SIC basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance as per travel duration&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Turkey Visa Processing Charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"367102\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[367102],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367103\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[367103],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367104\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[367104],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367105\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[367105],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367106\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[367106],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"367107\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[367107],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367108\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[367108],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367109\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[367109],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367110\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[367110],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367111\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[367111],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367112\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[367112],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"367113\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[367113],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Antalya,Cappadocia,Istanbul','Antalya,Central Asia,Turkey,Eurasia,Cappadocia,Istanbul,Bursa,Pamukkale',NULL,'1151,5094,12905',141015,144969,9,NULL,NULL,NULL,1,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-09-07 13:15:32','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-turkey',NULL,NULL,NULL,0),(302,50601,1,5293,1,0,0,'Honeymoon,Adventure,Beach,Family,Heritage,Culture,Romantic,Shopping and Nightlife,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":50601,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is a destination to experience more than one thing. From the amazing food, art, travel and culture to living locally like Thais, exploring Thainess &amp;ndash; Thailand offers you all.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Phuket is among the finest islands around the world with warm, sunny weather all year round. This tropical island offers long stretches of powdery beaches with an option to explore.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Krabi is famous for its scenic view and breathtaking Beaches and Islands. Its coral reef vistas are also one of the world&amp;#39;s most beautiful, which makes this beach destination a great spot for coral diving.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Phuket\",\"DestinationPlacesSysId\":21319,\"SourcePlaces\":\"Krabi\",\"SourcePlaceSysId\":14466,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"KRABI AND PHUKET HIGHLIGHTS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"14289\",\"SupplierName\":\"Destination Siam Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Intercity Transfers,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Heritage,Culture,Romantic,Shopping and Nightlife,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":543049,\"Name\":\"Hula Hula Resort and Spa Krabi\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":36346,\"Title\":\"Morning Half Day Phuket City Tour with Guide\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":28528,\"Title\":\"Phi Phi Island Tour By Big Boat\",\"Description\":\"Enjoy this tour with a view of lush limestone peaks rise from the tropical sea. You will see some of the most popular destinations by a Big Boat including Maya Bay, the Monkey Beach (famous for its cheeky namesake residents) and Viking Cave while discovering this tropical island. \\r\\n\\r\\nThe Colourful marine life will provide you with an experience that will leave a forever imprint in your mind for years to come.\\r\\n\\r\\nOne can also opt for activities like swimming, snorkeling and superb diving.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Phi_Phi_Island_Tour_By_Big_Boa_14466_1658899909.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":534172,\"Name\":\"Fisherman Harbour Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":36346,\"Title\":\"Morning Half Day Phuket City Tour with Guide\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":28528,\"Title\":\"Phi Phi Island Tour By Big Boat\",\"Description\":\"Enjoy this tour with a view of lush limestone peaks rise from the tropical sea. You will see some of the most popular destinations by a Big Boat including Maya Bay, the Monkey Beach (famous for its cheeky namesake residents) and Viking Cave while discovering this tropical island. \\r\\n\\r\\nThe Colourful marine life will provide you with an experience that will leave a forever imprint in your mind for years to come.\\r\\n\\r\\nOne can also opt for activities like swimming, snorkeling and superb diving.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Phi_Phi_Island_Tour_By_Big_Boa_14466_1658899909.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"Book your Exotic Thailand vacation and enjoy the discount of upto INR:2,000\\/-\",\"CouponCode\":\"VISITTHAI\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"365587\",\"Title\":\"Krabi: Arrival &amp; Leisure Day\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Sawasdee! Welcome to Thailand&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival at Phuket OR Krabi Airport, clear your immigation and baggage collection followed by meet and assist in the arrival hall.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our airport representative will assist you with the transfers to your hotel in Krabi. Check In Hotel on arrival and rest of the day is free to freshen up and relax in the comforts of your hotel room.&amp;nbsp;In the evening you may explore the nearby Cafe&amp;#39;s, or take a relaxing Thai Massage or stroll on the peaceful Ao Nang Beach.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to your hotel for comfortable overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":543049,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"},{\"IsIncluded\":false,\"Id\":543049,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365588\",\"Title\":\"Krabi: Four Island Tour via Long Tail Boat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Get ready for a fun-filled four island hopping tour!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post breakfast, you will be taken for a four island hopping tour. It is recommended for you to carry your sunglasses, swimsuit, and a towel. Today, you will mostly be in the water so it&amp;rsquo;s better to be prepared with all the necessaries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the famous Koh Gai &amp;ndash; the Chicken Island and see for yourself where it got its nickname, Explore the lesser known tiny islands of Koh Tub and Koh Mor,&amp;nbsp;Discover the magnificent Phra Nang Cave Beach on the Railay Peninsula.&amp;nbsp;Enjoy Thai Lunch during the tour. Later in the afternoon, return to hotel and rest of the day is free for you to relax.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Krabi Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":543049,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":38045,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3838,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365589\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365590\",\"Title\":\"Transfer from Krabi to Phuket - Enroute visit Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After a sumptous breakfast, check out from your Krabi hotel and transfer to Phuket Hotel. The driving time is around 4 Hours.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enroute, give the sand and sea a break and dive into the unbelievably blue waters of Krabi&amp;rsquo;s Emerald and Blue Pools. Take a dip in the therapeutic hot springs and visit the impressive Tiger Cave Temple with a special 3-In-1 Tour .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later continue your drive to Phuket. On arrival at Phuket Hotel check in and time free to relax.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Perhaps you may visit the famous Phuket beaches like Patong, Kata or Karon. Patong area is also the undisputed nightlife centre of Phuket.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in your Phuket Hotel.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":534172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":39970,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365591\",\"Title\":\"Phuket: City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, proceed for your city tour of Phuket.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;The tour will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&amp;#39;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Wat Chalong, Big Buddha,&amp;nbsp;Gems factory&amp;nbsp;and a Cashew Nut Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Return to the hotel and end the day with a peaceful overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":534172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":36346,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365592\",\"Title\":\"Phuket: Phi Phi Island Tour by Speed Boat OR Big Boat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today after an early breakfast, proceed for the much awaited and the most popular tour-experience in Phuket - The Phi Phi Island Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Breathtaking limestone cliffs rise straight out of the emerald green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave and Monkey Beach. Thai Lunch will be served at Phi Phi Don Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Return to Phuket Mainland early evening followed by drop to your hotel. Evening is at leisure to relax or enjoy shopping at the many malls and street side shops.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight in Phuket Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":534172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":28528,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365593\",\"Title\":\"Phuket: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;The final day and the final goodbye!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On your final day, post breakfast in the hotel, you proceed to checkout. Then you&amp;rsquo;re dropped off at the international airport. With this we see you off with a bagful of memories and experiences to cherish, hoping that you enjoyed this trip.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50601\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":20717,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":33550,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":20350,\"COSTSO\":33550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":21083,\"priceDoubleOcc\":\"20900.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":20900,\"COSTSO\":34100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":21083,\"priceDoubleOcc\":\"20900.00\",\"priceSingleOcc\":34100,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":20900,\"COSTSO\":34100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":22183,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":35750,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":22550,\"COSTSO\":35750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":23650,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":24750,\"COSTSO\":37950,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":25117,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":40150,\"priceExtraBed\":\"19360.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19360,\"COSTDO\":26950,\"COSTSO\":40150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":21450,\"COSTTO\":21450},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":26880,\"priceDoubleOcc\":\"28560.00\",\"priceSingleOcc\":43680,\"priceExtraBed\":\"20720.00\",\"priceWithoutBed\":\"15120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":12,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28560,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15120,\"CEB\":20720,\"COSTDO\":28560,\"COSTSO\":43680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23520,\"COSTTO\":23520}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50601\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19795.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":20152,\"priceDoubleOcc\":\"19795.00\",\"priceSingleOcc\":32635,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19795,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":19795,\"COSTSO\":32635,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":20508,\"priceDoubleOcc\":\"20330.00\",\"priceSingleOcc\":33170,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":20330,\"COSTSO\":33170,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":20508,\"priceDoubleOcc\":\"20330.00\",\"priceSingleOcc\":33170,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":20330,\"COSTSO\":33170,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":21578,\"priceDoubleOcc\":\"21935.00\",\"priceSingleOcc\":34775,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21935,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":21935,\"COSTSO\":34775,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":23005,\"priceDoubleOcc\":\"24075.00\",\"priceSingleOcc\":36915,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":24075,\"COSTSO\":36915,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-03-17\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":24432,\"priceDoubleOcc\":\"26215.00\",\"priceSingleOcc\":39055,\"priceExtraBed\":\"18832.00\",\"priceWithoutBed\":\"12840.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26215,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12840,\"CEB\":18832,\"COSTDO\":26215,\"COSTSO\":39055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20865,\"COSTTO\":20865},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470},{\"From\":\"2023-08-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25680,\"priceDoubleOcc\":\"27285.00\",\"priceSingleOcc\":41730,\"priceExtraBed\":\"19795.00\",\"priceWithoutBed\":\"14445.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27285,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14445,\"CEB\":19795,\"COSTDO\":27285,\"COSTSO\":41730,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22470,\"COSTTO\":22470}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;G.S.T will be payable extra as per applicable rate on the final total billing amount&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS (currently 5%) is payable on the land arrangement cost. The same amount will be refunded \\/ adjusted after filling the Income Tax Returns.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thailand Visa Cost (On arrival visa costs Thai Baht 2000 Per Person)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;National Park Fees during Phi Phi Island Tour \\/ 4 Island Tour is payable directly on tour by the guests&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;02 Nights Accommodation in Krabi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;03 Nights Accommodation in Phuket&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in the Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport and Inter Hotel Transfers on Private Basis&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 Island Tour on SIC with Long Tail Boat Transfers and Thai Lunch&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phuket City Tour on Seat In Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phi Phi Island Tour on SIC with Big Boat Transfers and Thai Lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable Hotel Taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance valid for duration of stay in Thailand&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"365587\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[365587],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365588\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[365588],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365589\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[365589],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365590\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[365590],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365591\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[365591],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365592\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[365592],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365593\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[365593],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Krabi,Phuket','Krabi,South East Asia,Thailand,Phuket',NULL,'14466,21319',19795,28560,5,NULL,NULL,NULL,1,'',0,'2023-07-19 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Thailand','215','2023-07-29 16:00:40','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'krabi-and-phuket-highlights',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (303,50015,1,5293,1,0,0,'Adventure,Family,Religious,Heritage,Culture',NULL,1,1,0,'{\"package\":{\"TPId\":50015,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/majestic-europe_1677764058\",\"BookingValidUntill\":\"2023-09-14\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Europe is such an artistic, dazzling, romantic, gorgeous, historic, splendid, and inspiring place to travel that it&amp;rsquo;s hard to be bored when you visit. Coach tours are fun, convenient and offer a great cultural experience of the cities you visit. With the Majestic Europe Tour we have put in all our efforts to ensure you see and experience the world famous sights from 5 of Europe&amp;rsquo;s most beautiful countries ie; Germany, Austria, Liechtenstein, Switzerland and France. Add to it some mouth-watering Halal Meals specially curated for Lunch and Dinner by the chefs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This vacation itinerary allows the group to experience different European cities and their respective charms. Majestic Europe Tour is truly your ticket to an unforgettable, action-packed exploration of Europe!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":35,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Paris\",\"DestinationPlacesSysId\":20822,\"SourcePlaces\":\"Munich\",\"SourcePlaceSysId\":18694,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"MAJESTIC EUROPE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6729\",\"SupplierName\":\"\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Welcome Drink,Sightseeing,Guided Tours,Visa,Travel Insurance,All Transfers\",\"PackageType\":\"Adventure,Family,Religious,Heritage,Culture\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-14\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18694,\"Title\":\"Munich\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":381999,\"Name\":\"Movenpick Hotel Munich Airport\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Ludwigstreet 43, Bavaria, Munich, Germany, , , 85399, \"},\"Images\":[],\"CityId\":18694,\"Brief\":\"Movenpick Hotel Munich Airport is perfectly located for both business and leisure guests in Munich. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. Take advantage of the hotel&#039;s free Wi-Fi in all rooms, 24-hour front desk, facilities for disabled guests, luggage storage, Wi-Fi in public areas. Guestrooms are designed to provide an optimal level of comfort with welcoming decor and some offering convenient amenities like television LCD\\/plasma screen, linens, towels, wooden\\/parqueted flooring, internet access &acirc;&euro;&ldquo; wireless. Entertain the hotel&#039;s recreational facilities, including sauna, steamroom. No matter what your reasons are for visiting Munich, Movenpick Hotel Munich Airport will make you feel instantly at home.\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=lLdKYi18YEiqxBEKnzP6FO6cGEJAec3ITvEQwIFLoGpQcndA0bQ2PtAzj\\/53Tt\\/EaVm+dbZWWDgAOSWqXOVaRVkvzs7Gs0Qk4rlfTuOj\\/1AL4p+42xM6oQ==\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15557,\"Title\":\"Munich Tour - BMW Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot; trip=&quot;&quot; sans=&quot;&quot; vf&quot;,=&quot;&quot; &quot;trip=&quot;&quot; sans&quot;,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; font-size:=&quot;&quot; 16px=&quot;&quot; text-align:=&quot;&quot; start=&quot;&quot; white-space:=&quot;&quot; pre-wrap&quot;=&quot;&quot;&gt;Hundreds of thousands of people visit BMW&#039;s four-cilinder BMW tower and the bowl-shaped museum next to it each year. The museum showcases the technical development of cars and motorcycles and also has some exhibits about the history of the company. Many old cars and motorcycles are on display along a spiral ramp that curls along the inside of the bowl-shaped building.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":18694,\"CityName\":\"Munich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/18694\\/sightseeing\\/4539_1677917643.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"&lt;p&gt;The Maria Theresa Street, named after Empress Maria Theresa is one of Innsbruck&#039;s most famous streets with a glorious remnant of the city&#039;s baroque past, dating back 700 years. Now a pedestrian promenade, the street, which is located outside Old Town, is lined with palaces once owned by the city&#039;s aristocracy, as well as cafes, shops and landmarks like St. Anne&#039;s Column and the Triumphal Arch.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677916412.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Swarovski Crystal Worlds&nbsp;&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;in Wattens, Tyrol, weaves a spell around every visitor: a&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;water-spouting giant&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;that magically lures the beholder into a hidden world, where&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Chambers of Wonder&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;fire up the imagination. His face has become a globally-recognised icon and the attraction has seen more than 12 million visitors pass through its doors.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677917759.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 57, 69) font-family: Poppins, sans-serif font-size: 16px text-align: left&quot;&gt;Coming from a renown past of trading, Innsbruck has become an emblematic city for the market culture that dates back to at least the 12th century. Magnificent mountain landscapes and a picturesque town frames the perfect destination for peace, quiet, relaxation, winter sports or summer activities, not to mention several monument-buildings, art fairs and galleries, as well as churches that beautifully embody its rich history. Embark on a walking tour adventure to follow the footsteps of emperors, dukes, and royal houses that greatly influenced Austrian Tyrol&rsquo;s capital!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677917856.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40746,\"Title\":\"Vaduz City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(42, 45, 50) font-family: Poppins, Helvetica, Arial, sans-serif font-size: 16px text-align: start&quot;&gt;On our city tour we show you Vaduz, with all its charm. During the ride you will also learn the most important things, both about the country and the princely house, as well as about history and current affairs.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677917951.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40825,\"Title\":\"Mt. Titlis\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot;Trip Sans VF&quot;, &quot;Trip Sans&quot;, Arial, sans-serif font-size: 16px text-align: start white-space: pre-wrap&quot;&gt;TITLIS is the jewel in Central Switzerland&#039;s crown at 10,000 FT and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes.The TITLIS ski area is home to more than 80 kilometres of pistes, with slopes to suit every ability. The season lasts from October until May. And in the summer, the mountain is a mecca for hikers and outdoor enthusiasts.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677918424.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40747,\"Title\":\"Gstaad\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Gstaad is an upscale resort town in the Bernese Oberland region of the Swiss Alps. Its soaring mountains and prestigious international boarding schools have long made it a holiday destination for royalty and celebrities. Cable cars connect surrounding ski areas such as Wispile and Rinderberg, with hundreds of kilometers of all-level pistes and cross-country trails.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907967.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40749,\"Title\":\"Lake Geneva\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Lake Geneva is a deep&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Lake&quot; title=&quot;Lake&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;lake&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;on the north side of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Alps&quot; title=&quot;Alps&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Alps&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, shared between&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Switzerland&quot; title=&quot;Switzerland&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Switzerland&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;. It is one of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_largest_lakes_of_Europe&quot; title=&quot;List of largest lakes of Europe&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;largest lakes in Western Europe&lt;\\/a&gt;.&nbsp;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Sixty per cent of t&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;he lake belongs to Switzerland (the cantons of&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Vaud&quot; title=&quot;Vaud&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Vaud&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Canton_of_Geneva&quot; title=&quot;Canton of Geneva&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Geneva&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Valais&quot; title=&quot;Valais&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Valais&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;) and forty per cent &lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;to France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677846071.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40748,\"Title\":\"Montreux\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Montreux is a traditional resort town on Lake Geneva. Nestled between steep hills and the lakeside, it&#039;s known for its mild microclimate and the Montreux Jazz Festival, held in July. The town&#039;s promenade is lined with flowers, sculptures, Mediterranean trees and grand Belle &Eacute;poque buildings.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907797.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20398,\"Title\":\"Strasbourg City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Strasbourg is the capital city of the Grand Est region, formerly Alsace, in northeastern France. It&#039;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences. Its Gothic Cath&eacute;drale Notre-Dame features daily shows from its astronomical clock and sweeping views of the Rhine River from partway up its 142m spire.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":26205,\"CityName\":\"Strasbourg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/26205\\/sightseeing\\/4539_1677918056.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Black Forest is a mountainous region in southwest Germany, bordering France. Known for its dense, evergreen forests and picturesque villages, it is often associated with the Brothers Grimm fairy tales. It&#039;s renowned for its spas and the cuckoo clocks produced in the region since the 1700s. The region&rsquo;s largest town, Freiburg, is filled with Gothic buildings and surrounded by vineyards.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;On this English language Black Forest day&nbsp;&lt;\\/span&gt;&lt;span style=&quot;font-weight: bold color: rgb(95, 99, 104) font-family: arial, sans-serif text-align: left&quot;&gt;tour&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;&nbsp;you will ride through a beautiful valley in the Central Black Forest with a chance to stop at a medieval town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40087,\"Title\":\"Palace of Versailles\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Palace of Versailles is a former royal residence built by King Louis XIV located in Versailles, about 12 miles west of Paris, France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677918201.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40750,\"Title\":\"Paris Grand Mosque\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Grand Mosque of Paris,&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;also known as the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Great Mosque of Paris&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;or simply the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Paris Mosque&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, is located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/5th_arrondissement_of_Paris&quot; title=&quot;5th arrondissement of Paris&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;5th arrondissement&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Mosque&quot; title=&quot;Mosque&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;mosques&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;text-align: start&quot;&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;. There are prayer rooms, an outdoor garden, a small library, a gift shop, along with a caf&eacute;&nbsp;and restaurant.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;It is the oldest mosque in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Metropolitan_France&quot; title=&quot;Metropolitan France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif&quot;&gt;Metropolitan France&lt;\\/a&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677843119.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":12747,\"Title\":\"Innsbruck\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":556135,\"Name\":\"Hwest Hotel Hall\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"BC Hall West, Schl&ouml;glstra&szlig;e 57, 6060 Hall in Tirol, Austria\"},\"Images\":{\"Image\":[{\"ImagId\":4826054,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_556135\\/4539_01685438456.jpeg\"}]},\"CityId\":12747,\"Brief\":\"&lt;p&gt;Hwest Hotel Hall is your&nbsp;value-for-money design hotel near Innsbruck. Our Highlights: Modern design, affordable prices, casual flair, sleeping comfort and convenient location. HWest Hotel Hall is located&nbsp;on the doorstep of Innsbruck. Direct connection to the&nbsp;motorway A12&nbsp;(exit Hall West). In the&nbsp;centre&nbsp;of the&nbsp;Tyrolean holiday region&nbsp;Hall-Wattens and next to the cycle path of the river Inn.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Delicious regional&nbsp;breakfast&nbsp;is served in our Hwest breakfast bistro with adjacent lounge.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_556135\\/4539_36c8a8b40cf96962c124141e95b47d471685438455.jpeg\",\"AccoAminitiesMask\":\"111001000000000100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15557,\"Title\":\"Munich Tour - BMW Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot; trip=&quot;&quot; sans=&quot;&quot; vf&quot;,=&quot;&quot; &quot;trip=&quot;&quot; sans&quot;,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; font-size:=&quot;&quot; 16px=&quot;&quot; text-align:=&quot;&quot; start=&quot;&quot; white-space:=&quot;&quot; pre-wrap&quot;=&quot;&quot;&gt;Hundreds of thousands of people visit BMW&#039;s four-cilinder BMW tower and the bowl-shaped museum next to it each year. The museum showcases the technical development of cars and motorcycles and also has some exhibits about the history of the company. Many old cars and motorcycles are on display along a spiral ramp that curls along the inside of the bowl-shaped building.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":18694,\"CityName\":\"Munich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/18694\\/sightseeing\\/4539_1677917643.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"&lt;p&gt;The Maria Theresa Street, named after Empress Maria Theresa is one of Innsbruck&#039;s most famous streets with a glorious remnant of the city&#039;s baroque past, dating back 700 years. Now a pedestrian promenade, the street, which is located outside Old Town, is lined with palaces once owned by the city&#039;s aristocracy, as well as cafes, shops and landmarks like St. Anne&#039;s Column and the Triumphal Arch.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677916412.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Swarovski Crystal Worlds&nbsp;&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;in Wattens, Tyrol, weaves a spell around every visitor: a&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;water-spouting giant&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;that magically lures the beholder into a hidden world, where&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Chambers of Wonder&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;fire up the imagination. His face has become a globally-recognised icon and the attraction has seen more than 12 million visitors pass through its doors.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677917759.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 57, 69) font-family: Poppins, sans-serif font-size: 16px text-align: left&quot;&gt;Coming from a renown past of trading, Innsbruck has become an emblematic city for the market culture that dates back to at least the 12th century. Magnificent mountain landscapes and a picturesque town frames the perfect destination for peace, quiet, relaxation, winter sports or summer activities, not to mention several monument-buildings, art fairs and galleries, as well as churches that beautifully embody its rich history. Embark on a walking tour adventure to follow the footsteps of emperors, dukes, and royal houses that greatly influenced Austrian Tyrol&rsquo;s capital!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677917856.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40746,\"Title\":\"Vaduz City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(42, 45, 50) font-family: Poppins, Helvetica, Arial, sans-serif font-size: 16px text-align: start&quot;&gt;On our city tour we show you Vaduz, with all its charm. During the ride you will also learn the most important things, both about the country and the princely house, as well as about history and current affairs.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677917951.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40825,\"Title\":\"Mt. Titlis\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot;Trip Sans VF&quot;, &quot;Trip Sans&quot;, Arial, sans-serif font-size: 16px text-align: start white-space: pre-wrap&quot;&gt;TITLIS is the jewel in Central Switzerland&#039;s crown at 10,000 FT and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes.The TITLIS ski area is home to more than 80 kilometres of pistes, with slopes to suit every ability. The season lasts from October until May. And in the summer, the mountain is a mecca for hikers and outdoor enthusiasts.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677918424.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40747,\"Title\":\"Gstaad\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Gstaad is an upscale resort town in the Bernese Oberland region of the Swiss Alps. Its soaring mountains and prestigious international boarding schools have long made it a holiday destination for royalty and celebrities. Cable cars connect surrounding ski areas such as Wispile and Rinderberg, with hundreds of kilometers of all-level pistes and cross-country trails.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907967.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40749,\"Title\":\"Lake Geneva\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Lake Geneva is a deep&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Lake&quot; title=&quot;Lake&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;lake&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;on the north side of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Alps&quot; title=&quot;Alps&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Alps&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, shared between&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Switzerland&quot; title=&quot;Switzerland&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Switzerland&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;. It is one of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_largest_lakes_of_Europe&quot; title=&quot;List of largest lakes of Europe&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;largest lakes in Western Europe&lt;\\/a&gt;.&nbsp;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Sixty per cent of t&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;he lake belongs to Switzerland (the cantons of&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Vaud&quot; title=&quot;Vaud&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Vaud&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Canton_of_Geneva&quot; title=&quot;Canton of Geneva&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Geneva&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Valais&quot; title=&quot;Valais&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Valais&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;) and forty per cent &lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;to France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677846071.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40748,\"Title\":\"Montreux\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Montreux is a traditional resort town on Lake Geneva. Nestled between steep hills and the lakeside, it&#039;s known for its mild microclimate and the Montreux Jazz Festival, held in July. The town&#039;s promenade is lined with flowers, sculptures, Mediterranean trees and grand Belle &Eacute;poque buildings.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907797.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20398,\"Title\":\"Strasbourg City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Strasbourg is the capital city of the Grand Est region, formerly Alsace, in northeastern France. It&#039;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences. Its Gothic Cath&eacute;drale Notre-Dame features daily shows from its astronomical clock and sweeping views of the Rhine River from partway up its 142m spire.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":26205,\"CityName\":\"Strasbourg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/26205\\/sightseeing\\/4539_1677918056.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Black Forest is a mountainous region in southwest Germany, bordering France. Known for its dense, evergreen forests and picturesque villages, it is often associated with the Brothers Grimm fairy tales. It&#039;s renowned for its spas and the cuckoo clocks produced in the region since the 1700s. The region&rsquo;s largest town, Freiburg, is filled with Gothic buildings and surrounded by vineyards.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;On this English language Black Forest day&nbsp;&lt;\\/span&gt;&lt;span style=&quot;font-weight: bold color: rgb(95, 99, 104) font-family: arial, sans-serif text-align: left&quot;&gt;tour&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;&nbsp;you will ride through a beautiful valley in the Central Black Forest with a chance to stop at a medieval town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40087,\"Title\":\"Palace of Versailles\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Palace of Versailles is a former royal residence built by King Louis XIV located in Versailles, about 12 miles west of Paris, France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677918201.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40750,\"Title\":\"Paris Grand Mosque\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Grand Mosque of Paris,&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;also known as the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Great Mosque of Paris&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;or simply the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Paris Mosque&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, is located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/5th_arrondissement_of_Paris&quot; title=&quot;5th arrondissement of Paris&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;5th arrondissement&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Mosque&quot; title=&quot;Mosque&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;mosques&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;text-align: start&quot;&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;. There are prayer rooms, an outdoor garden, a small library, a gift shop, along with a caf&eacute;&nbsp;and restaurant.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;It is the oldest mosque in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Metropolitan_France&quot; title=&quot;Metropolitan France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif&quot;&gt;Metropolitan France&lt;\\/a&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677843119.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":17345,\"Title\":\"Meiringen\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":12446,\"Name\":\"Das Hotel Sherlock Holmes\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"46.725809791243\",\"Long\":\"8.1908923387528\",\"Address\":\"Alpbachallee 3 3860 Meiringen\"},\"Images\":{\"Image\":[{\"ImagId\":305355,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/587\\/426\\/73338_EXT_01_E_C.jpg\"},{\"ImagId\":305356,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/587\\/430\\/73338_REC_01_E_A.jpg\"},{\"ImagId\":305357,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/587\\/434\\/73338_ROOM_01_E_A.jpg\"}]},\"CityId\":17345,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Das Hotel Sherlock Holmes in Meiringen, you&amp;apos;ll be near ski lifts and minutes from Sherlock Holmes Museum and Meiringen-Hasliberg Cable Car.  This ski hotel is within close proximity of Reichenbach Falls and Reuti - Bidmi Cable Car.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 56 guestrooms. Rooms have private balconies. Wireless Internet access (surcharge) is available to keep you connected. Bathrooms have bathtubs or showers and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Spend the day on the slopes, or enjoy recreational amenities including an indoor pool and a sauna. This hotel also features wireless Internet access (surcharge), concierge services, and ski storage.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of Das Hotel Sherlock Holmes. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include dry cleaning\\/laundry services, multilingual staff, and luggage storage. A train station pick-up service is provided at no charge, and self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/7\\/587\\/426\\/73338_EXT_01_E_C.jpg\",\"AccoAminitiesMask\":\"101100000000010000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15557,\"Title\":\"Munich Tour - BMW Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot; trip=&quot;&quot; sans=&quot;&quot; vf&quot;,=&quot;&quot; &quot;trip=&quot;&quot; sans&quot;,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; font-size:=&quot;&quot; 16px=&quot;&quot; text-align:=&quot;&quot; start=&quot;&quot; white-space:=&quot;&quot; pre-wrap&quot;=&quot;&quot;&gt;Hundreds of thousands of people visit BMW&#039;s four-cilinder BMW tower and the bowl-shaped museum next to it each year. The museum showcases the technical development of cars and motorcycles and also has some exhibits about the history of the company. Many old cars and motorcycles are on display along a spiral ramp that curls along the inside of the bowl-shaped building.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":18694,\"CityName\":\"Munich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/18694\\/sightseeing\\/4539_1677917643.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"&lt;p&gt;The Maria Theresa Street, named after Empress Maria Theresa is one of Innsbruck&#039;s most famous streets with a glorious remnant of the city&#039;s baroque past, dating back 700 years. Now a pedestrian promenade, the street, which is located outside Old Town, is lined with palaces once owned by the city&#039;s aristocracy, as well as cafes, shops and landmarks like St. Anne&#039;s Column and the Triumphal Arch.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677916412.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Swarovski Crystal Worlds&nbsp;&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;in Wattens, Tyrol, weaves a spell around every visitor: a&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;water-spouting giant&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;that magically lures the beholder into a hidden world, where&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Chambers of Wonder&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;fire up the imagination. His face has become a globally-recognised icon and the attraction has seen more than 12 million visitors pass through its doors.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677917759.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 57, 69) font-family: Poppins, sans-serif font-size: 16px text-align: left&quot;&gt;Coming from a renown past of trading, Innsbruck has become an emblematic city for the market culture that dates back to at least the 12th century. Magnificent mountain landscapes and a picturesque town frames the perfect destination for peace, quiet, relaxation, winter sports or summer activities, not to mention several monument-buildings, art fairs and galleries, as well as churches that beautifully embody its rich history. Embark on a walking tour adventure to follow the footsteps of emperors, dukes, and royal houses that greatly influenced Austrian Tyrol&rsquo;s capital!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677917856.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40746,\"Title\":\"Vaduz City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(42, 45, 50) font-family: Poppins, Helvetica, Arial, sans-serif font-size: 16px text-align: start&quot;&gt;On our city tour we show you Vaduz, with all its charm. During the ride you will also learn the most important things, both about the country and the princely house, as well as about history and current affairs.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677917951.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40825,\"Title\":\"Mt. Titlis\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot;Trip Sans VF&quot;, &quot;Trip Sans&quot;, Arial, sans-serif font-size: 16px text-align: start white-space: pre-wrap&quot;&gt;TITLIS is the jewel in Central Switzerland&#039;s crown at 10,000 FT and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes.The TITLIS ski area is home to more than 80 kilometres of pistes, with slopes to suit every ability. The season lasts from October until May. And in the summer, the mountain is a mecca for hikers and outdoor enthusiasts.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677918424.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40747,\"Title\":\"Gstaad\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Gstaad is an upscale resort town in the Bernese Oberland region of the Swiss Alps. Its soaring mountains and prestigious international boarding schools have long made it a holiday destination for royalty and celebrities. Cable cars connect surrounding ski areas such as Wispile and Rinderberg, with hundreds of kilometers of all-level pistes and cross-country trails.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907967.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40749,\"Title\":\"Lake Geneva\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Lake Geneva is a deep&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Lake&quot; title=&quot;Lake&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;lake&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;on the north side of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Alps&quot; title=&quot;Alps&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Alps&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, shared between&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Switzerland&quot; title=&quot;Switzerland&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Switzerland&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;. It is one of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_largest_lakes_of_Europe&quot; title=&quot;List of largest lakes of Europe&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;largest lakes in Western Europe&lt;\\/a&gt;.&nbsp;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Sixty per cent of t&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;he lake belongs to Switzerland (the cantons of&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Vaud&quot; title=&quot;Vaud&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Vaud&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Canton_of_Geneva&quot; title=&quot;Canton of Geneva&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Geneva&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Valais&quot; title=&quot;Valais&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Valais&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;) and forty per cent &lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;to France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677846071.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40748,\"Title\":\"Montreux\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Montreux is a traditional resort town on Lake Geneva. Nestled between steep hills and the lakeside, it&#039;s known for its mild microclimate and the Montreux Jazz Festival, held in July. The town&#039;s promenade is lined with flowers, sculptures, Mediterranean trees and grand Belle &Eacute;poque buildings.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907797.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20398,\"Title\":\"Strasbourg City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Strasbourg is the capital city of the Grand Est region, formerly Alsace, in northeastern France. It&#039;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences. Its Gothic Cath&eacute;drale Notre-Dame features daily shows from its astronomical clock and sweeping views of the Rhine River from partway up its 142m spire.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":26205,\"CityName\":\"Strasbourg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/26205\\/sightseeing\\/4539_1677918056.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Black Forest is a mountainous region in southwest Germany, bordering France. Known for its dense, evergreen forests and picturesque villages, it is often associated with the Brothers Grimm fairy tales. It&#039;s renowned for its spas and the cuckoo clocks produced in the region since the 1700s. The region&rsquo;s largest town, Freiburg, is filled with Gothic buildings and surrounded by vineyards.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;On this English language Black Forest day&nbsp;&lt;\\/span&gt;&lt;span style=&quot;font-weight: bold color: rgb(95, 99, 104) font-family: arial, sans-serif text-align: left&quot;&gt;tour&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;&nbsp;you will ride through a beautiful valley in the Central Black Forest with a chance to stop at a medieval town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40087,\"Title\":\"Palace of Versailles\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Palace of Versailles is a former royal residence built by King Louis XIV located in Versailles, about 12 miles west of Paris, France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677918201.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40750,\"Title\":\"Paris Grand Mosque\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Grand Mosque of Paris,&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;also known as the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Great Mosque of Paris&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;or simply the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Paris Mosque&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, is located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/5th_arrondissement_of_Paris&quot; title=&quot;5th arrondissement of Paris&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;5th arrondissement&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Mosque&quot; title=&quot;Mosque&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;mosques&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;text-align: start&quot;&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;. There are prayer rooms, an outdoor garden, a small library, a gift shop, along with a caf&eacute;&nbsp;and restaurant.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;It is the oldest mosque in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Metropolitan_France&quot; title=&quot;Metropolitan France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif&quot;&gt;Metropolitan France&lt;\\/a&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677843119.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":26205,\"Title\":\"Strasbourg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":556136,\"Name\":\"7Hotel & Spa\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"550 Bd S&eacute;bastien Brant, 67400 Illkirch-Graffenstaden, France\"},\"Images\":[],\"CityId\":26205,\"Brief\":\"&lt;p&gt;A 7-minute walk from the &Icirc;le du Rohrschollen Nature Preserve, this relaxed hotel is also a 12-minute walk from Campus d&amp;#39;Illkirch tram station and 11 km from the Grande &Icirc;le de Strasbourg&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;historic city center.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe relaxed rooms feature free Wi-Fi and flat-screen TVs, as well as tea and coffeemakers. Upgraded rooms and suites have living areas with pull-out sofas.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking is complimentary, as is access to an adjacent fitness club. There are 2 restaurants, including a vibrant international eatery with cinema-inspired murals, along with a laid-back bar.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_556136\\/4539_2b0658275e7351820aac13058dcf29711685438677.jpeg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15557,\"Title\":\"Munich Tour - BMW Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot; trip=&quot;&quot; sans=&quot;&quot; vf&quot;,=&quot;&quot; &quot;trip=&quot;&quot; sans&quot;,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; font-size:=&quot;&quot; 16px=&quot;&quot; text-align:=&quot;&quot; start=&quot;&quot; white-space:=&quot;&quot; pre-wrap&quot;=&quot;&quot;&gt;Hundreds of thousands of people visit BMW&#039;s four-cilinder BMW tower and the bowl-shaped museum next to it each year. The museum showcases the technical development of cars and motorcycles and also has some exhibits about the history of the company. Many old cars and motorcycles are on display along a spiral ramp that curls along the inside of the bowl-shaped building.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":18694,\"CityName\":\"Munich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/18694\\/sightseeing\\/4539_1677917643.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"&lt;p&gt;The Maria Theresa Street, named after Empress Maria Theresa is one of Innsbruck&#039;s most famous streets with a glorious remnant of the city&#039;s baroque past, dating back 700 years. Now a pedestrian promenade, the street, which is located outside Old Town, is lined with palaces once owned by the city&#039;s aristocracy, as well as cafes, shops and landmarks like St. Anne&#039;s Column and the Triumphal Arch.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677916412.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Swarovski Crystal Worlds&nbsp;&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;in Wattens, Tyrol, weaves a spell around every visitor: a&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;water-spouting giant&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;that magically lures the beholder into a hidden world, where&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Chambers of Wonder&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;fire up the imagination. His face has become a globally-recognised icon and the attraction has seen more than 12 million visitors pass through its doors.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677917759.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 57, 69) font-family: Poppins, sans-serif font-size: 16px text-align: left&quot;&gt;Coming from a renown past of trading, Innsbruck has become an emblematic city for the market culture that dates back to at least the 12th century. Magnificent mountain landscapes and a picturesque town frames the perfect destination for peace, quiet, relaxation, winter sports or summer activities, not to mention several monument-buildings, art fairs and galleries, as well as churches that beautifully embody its rich history. Embark on a walking tour adventure to follow the footsteps of emperors, dukes, and royal houses that greatly influenced Austrian Tyrol&rsquo;s capital!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677917856.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40746,\"Title\":\"Vaduz City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(42, 45, 50) font-family: Poppins, Helvetica, Arial, sans-serif font-size: 16px text-align: start&quot;&gt;On our city tour we show you Vaduz, with all its charm. During the ride you will also learn the most important things, both about the country and the princely house, as well as about history and current affairs.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677917951.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40825,\"Title\":\"Mt. Titlis\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot;Trip Sans VF&quot;, &quot;Trip Sans&quot;, Arial, sans-serif font-size: 16px text-align: start white-space: pre-wrap&quot;&gt;TITLIS is the jewel in Central Switzerland&#039;s crown at 10,000 FT and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes.The TITLIS ski area is home to more than 80 kilometres of pistes, with slopes to suit every ability. The season lasts from October until May. And in the summer, the mountain is a mecca for hikers and outdoor enthusiasts.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677918424.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40747,\"Title\":\"Gstaad\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Gstaad is an upscale resort town in the Bernese Oberland region of the Swiss Alps. Its soaring mountains and prestigious international boarding schools have long made it a holiday destination for royalty and celebrities. Cable cars connect surrounding ski areas such as Wispile and Rinderberg, with hundreds of kilometers of all-level pistes and cross-country trails.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907967.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40749,\"Title\":\"Lake Geneva\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Lake Geneva is a deep&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Lake&quot; title=&quot;Lake&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;lake&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;on the north side of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Alps&quot; title=&quot;Alps&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Alps&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, shared between&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Switzerland&quot; title=&quot;Switzerland&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Switzerland&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;. It is one of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_largest_lakes_of_Europe&quot; title=&quot;List of largest lakes of Europe&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;largest lakes in Western Europe&lt;\\/a&gt;.&nbsp;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Sixty per cent of t&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;he lake belongs to Switzerland (the cantons of&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Vaud&quot; title=&quot;Vaud&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Vaud&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Canton_of_Geneva&quot; title=&quot;Canton of Geneva&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Geneva&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Valais&quot; title=&quot;Valais&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Valais&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;) and forty per cent &lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;to France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677846071.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40748,\"Title\":\"Montreux\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Montreux is a traditional resort town on Lake Geneva. Nestled between steep hills and the lakeside, it&#039;s known for its mild microclimate and the Montreux Jazz Festival, held in July. The town&#039;s promenade is lined with flowers, sculptures, Mediterranean trees and grand Belle &Eacute;poque buildings.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907797.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20398,\"Title\":\"Strasbourg City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Strasbourg is the capital city of the Grand Est region, formerly Alsace, in northeastern France. It&#039;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences. Its Gothic Cath&eacute;drale Notre-Dame features daily shows from its astronomical clock and sweeping views of the Rhine River from partway up its 142m spire.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":26205,\"CityName\":\"Strasbourg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/26205\\/sightseeing\\/4539_1677918056.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Black Forest is a mountainous region in southwest Germany, bordering France. Known for its dense, evergreen forests and picturesque villages, it is often associated with the Brothers Grimm fairy tales. It&#039;s renowned for its spas and the cuckoo clocks produced in the region since the 1700s. The region&rsquo;s largest town, Freiburg, is filled with Gothic buildings and surrounded by vineyards.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;On this English language Black Forest day&nbsp;&lt;\\/span&gt;&lt;span style=&quot;font-weight: bold color: rgb(95, 99, 104) font-family: arial, sans-serif text-align: left&quot;&gt;tour&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;&nbsp;you will ride through a beautiful valley in the Central Black Forest with a chance to stop at a medieval town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40087,\"Title\":\"Palace of Versailles\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Palace of Versailles is a former royal residence built by King Louis XIV located in Versailles, about 12 miles west of Paris, France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677918201.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40750,\"Title\":\"Paris Grand Mosque\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Grand Mosque of Paris,&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;also known as the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Great Mosque of Paris&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;or simply the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Paris Mosque&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, is located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/5th_arrondissement_of_Paris&quot; title=&quot;5th arrondissement of Paris&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;5th arrondissement&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Mosque&quot; title=&quot;Mosque&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;mosques&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;text-align: start&quot;&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;. There are prayer rooms, an outdoor garden, a small library, a gift shop, along with a caf&eacute;&nbsp;and restaurant.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;It is the oldest mosque in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Metropolitan_France&quot; title=&quot;Metropolitan France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif&quot;&gt;Metropolitan France&lt;\\/a&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677843119.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":556137,\"Name\":\"H\\u00f4tel Mercure Paris La Defense\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"30 Rue Baudin, 92400 Courbevoie, France\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"&lt;p&gt;At the edge of a shopping mall, this relaxed hotel in the La D&eacute;fense business district is a 15-minute walk from Esplanade de La D&eacute;fense metro station and 7 km from the restaurants of Montmartre.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nWarm rooms and suites include free Wi-Fi, desks and flat-screen TVs, plus tea and coffeemaking facilities. Upgraded rooms add iPod docks and Nespresso machines. Suites offer separate living areas. Kids age 11 and under (1 per room) stay at no extra cost with an adult.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA metro station shuttle is complimentary. Amenities include a wine bar\\/restaurant, a fitness center and 5 meeting rooms. A breakfast buffet and indoor parking are offered (both for a surcharge). Pets are welcome for a fee.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_556137\\/4539_9daba5f431e628e7061013efe0cdec5b1685438758.jpeg\",\"AccoAminitiesMask\":\"111001001110000101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15557,\"Title\":\"Munich Tour - BMW Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot; trip=&quot;&quot; sans=&quot;&quot; vf&quot;,=&quot;&quot; &quot;trip=&quot;&quot; sans&quot;,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; font-size:=&quot;&quot; 16px=&quot;&quot; text-align:=&quot;&quot; start=&quot;&quot; white-space:=&quot;&quot; pre-wrap&quot;=&quot;&quot;&gt;Hundreds of thousands of people visit BMW&#039;s four-cilinder BMW tower and the bowl-shaped museum next to it each year. The museum showcases the technical development of cars and motorcycles and also has some exhibits about the history of the company. Many old cars and motorcycles are on display along a spiral ramp that curls along the inside of the bowl-shaped building.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":18694,\"CityName\":\"Munich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/18694\\/sightseeing\\/4539_1677917643.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"&lt;p&gt;The Maria Theresa Street, named after Empress Maria Theresa is one of Innsbruck&#039;s most famous streets with a glorious remnant of the city&#039;s baroque past, dating back 700 years. Now a pedestrian promenade, the street, which is located outside Old Town, is lined with palaces once owned by the city&#039;s aristocracy, as well as cafes, shops and landmarks like St. Anne&#039;s Column and the Triumphal Arch.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677916412.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Swarovski Crystal Worlds&nbsp;&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;in Wattens, Tyrol, weaves a spell around every visitor: a&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;water-spouting giant&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;that magically lures the beholder into a hidden world, where&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;font-weight: bold color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;Chambers of Wonder&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(45, 52, 62) font-family: Overpass, sans-serif font-size: 16px text-align: start&quot;&gt;&nbsp;fire up the imagination. His face has become a globally-recognised icon and the attraction has seen more than 12 million visitors pass through its doors.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/12747\\/sightseeing\\/4539_1677917759.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 57, 69) font-family: Poppins, sans-serif font-size: 16px text-align: left&quot;&gt;Coming from a renown past of trading, Innsbruck has become an emblematic city for the market culture that dates back to at least the 12th century. Magnificent mountain landscapes and a picturesque town frames the perfect destination for peace, quiet, relaxation, winter sports or summer activities, not to mention several monument-buildings, art fairs and galleries, as well as churches that beautifully embody its rich history. Embark on a walking tour adventure to follow the footsteps of emperors, dukes, and royal houses that greatly influenced Austrian Tyrol&rsquo;s capital!&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677917856.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40746,\"Title\":\"Vaduz City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(42, 45, 50) font-family: Poppins, Helvetica, Arial, sans-serif font-size: 16px text-align: start&quot;&gt;On our city tour we show you Vaduz, with all its charm. During the ride you will also learn the most important things, both about the country and the princely house, as well as about history and current affairs.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677917951.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40825,\"Title\":\"Mt. Titlis\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: &quot;Trip Sans VF&quot;, &quot;Trip Sans&quot;, Arial, sans-serif font-size: 16px text-align: start white-space: pre-wrap&quot;&gt;TITLIS is the jewel in Central Switzerland&#039;s crown at 10,000 FT and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes.The TITLIS ski area is home to more than 80 kilometres of pistes, with slopes to suit every ability. The season lasts from October until May. And in the summer, the mountain is a mecca for hikers and outdoor enthusiasts.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/30548\\/sightseeing\\/4539_1677918424.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40747,\"Title\":\"Gstaad\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Gstaad is an upscale resort town in the Bernese Oberland region of the Swiss Alps. Its soaring mountains and prestigious international boarding schools have long made it a holiday destination for royalty and celebrities. Cable cars connect surrounding ski areas such as Wispile and Rinderberg, with hundreds of kilometers of all-level pistes and cross-country trails.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907967.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40749,\"Title\":\"Lake Geneva\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Lake Geneva is a deep&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Lake&quot; title=&quot;Lake&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;lake&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;on the north side of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Alps&quot; title=&quot;Alps&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Alps&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, shared between&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Switzerland&quot; title=&quot;Switzerland&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Switzerland&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;. It is one of the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_largest_lakes_of_Europe&quot; title=&quot;List of largest lakes of Europe&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;largest lakes in Western Europe&lt;\\/a&gt;.&nbsp;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Sixty per cent of t&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;he lake belongs to Switzerland (the cantons of&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Vaud&quot; title=&quot;Vaud&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Vaud&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;,&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Canton_of_Geneva&quot; title=&quot;Canton of Geneva&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Geneva&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Valais&quot; title=&quot;Valais&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;Valais&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;) and forty per cent &lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;to France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677846071.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40748,\"Title\":\"Montreux\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Montreux is a traditional resort town on Lake Geneva. Nestled between steep hills and the lakeside, it&#039;s known for its mild microclimate and the Montreux Jazz Festival, held in July. The town&#039;s promenade is lined with flowers, sculptures, Mediterranean trees and grand Belle &Eacute;poque buildings.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17345,\"CityName\":\"Meiringen\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/17345\\/sightseeing\\/4539_1677907797.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20398,\"Title\":\"Strasbourg City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Strasbourg is the capital city of the Grand Est region, formerly Alsace, in northeastern France. It&#039;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences. Its Gothic Cath&eacute;drale Notre-Dame features daily shows from its astronomical clock and sweeping views of the Rhine River from partway up its 142m spire.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":26205,\"CityName\":\"Strasbourg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/26205\\/sightseeing\\/4539_1677918056.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Black Forest is a mountainous region in southwest Germany, bordering France. Known for its dense, evergreen forests and picturesque villages, it is often associated with the Brothers Grimm fairy tales. It&#039;s renowned for its spas and the cuckoo clocks produced in the region since the 1700s. The region&rsquo;s largest town, Freiburg, is filled with Gothic buildings and surrounded by vineyards.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;On this English language Black Forest day&nbsp;&lt;\\/span&gt;&lt;span style=&quot;font-weight: bold color: rgb(95, 99, 104) font-family: arial, sans-serif text-align: left&quot;&gt;tour&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;&nbsp;you will ride through a beautiful valley in the Central Black Forest with a chance to stop at a medieval town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40087,\"Title\":\"Palace of Versailles\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Palace of Versailles is a former royal residence built by King Louis XIV located in Versailles, about 12 miles west of Paris, France.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677918201.jpeg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":40750,\"Title\":\"Paris Grand Mosque\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;The&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Grand Mosque of Paris,&nbsp;&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;also known as the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Great Mosque of Paris&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;or simply the&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;Paris Mosque&lt;\\/b&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;, is located in the&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/5th_arrondissement_of_Paris&quot; title=&quot;5th arrondissement of Paris&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;5th arrondissement&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;and is one of the largest&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Mosque&quot; title=&quot;Mosque&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;mosques&lt;\\/a&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif text-align: start&quot;&gt;&nbsp;in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/France&quot; title=&quot;France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif text-align: start&quot;&gt;France&lt;\\/a&gt;&lt;span style=&quot;text-align: start&quot;&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;. There are prayer rooms, an outdoor garden, a small library, a gift shop, along with a caf&eacute;&nbsp;and restaurant.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;span style=&quot;color: rgb(32, 33, 34) font-family: sans-serif&quot;&gt;It is the oldest mosque in&nbsp;&lt;\\/span&gt;&lt;a href=&quot;https:\\/\\/en.wikipedia.org\\/wiki\\/Metropolitan_France&quot; title=&quot;Metropolitan France&quot; style=&quot;color: rgb(51, 102, 204) background-image: none background-position: initial background-color: rgb(255, 255, 255) font-family: sans-serif&quot;&gt;Metropolitan France&lt;\\/a&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/20822\\/sightseeing\\/4539_1677843119.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"360579\",\"Title\":\"Day 01: Willkommen in Munich, Deutschland ..!! Orientation tour of Munich \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome! Today we board our flight to one of the most beautiful and third largest cities of Germany, Munich known for its rich history, cultural heritage, and vibrant atmosphere. With a mix of traditional and modern elements, Munich offers a unique travel experience for visitors of all ages. After clearing Immigration and collecting Baggage, the group will proceed straight to hotel, where you check in and relax in the comfort of the hotel. Enroute to the hotel we will do fascinating Orientation tour of this beautiful and elegant city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and Overnight in Munich. &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18694,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":381999,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360580\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18694,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360581\",\"Title\":\"Munich city tour &ndash; Visit to BMW Welt - Scenic drive towards Austria\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Today morning enjoy your continental buffet breakfast. Check out from the hotel and start with a scenic orientation tour of Munich and feel the zest of this exhilarating city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;During the tour take a stroll through Marienplatz, the central square of Munich, and admire the beautiful architecture of the New Town Hall. Cover many other important sites of the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later the group will visit BMW showroom. BMW Welt, located in Munich, Germany, is a multi-functional customer engagement centre and exhibition space for BMW. It showcases the latest BMW models, as well as a variety of other BMW products and to see the latest models on display.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We then continue our Journey towards Austria for our two nights stay. Austria a very beautiful country that is known for its stunning mountain scenery, rich cultural heritage and vibrant cities. After checking into your hotel in Innsbruck, relax in the comforts of the room or we suggest to stroll around the town centre admiring the traditional Tyrolean architecture and local shops.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Innsbruck.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15557,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360582\",\"Title\":\"Orientation Tour of Innsbruck - Funicular ride to Visit Hungerburg mountain - Visit Swarovski Crystal Museum, the dazzling world of crystals\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today we proceed for an orientation tour of Innsbruck, one of the beautiful cities of Austria.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Begin your exploration at Herzog Friedrich Street in the Centre of Innsbruck. Admire Innsbruck&amp;rsquo;s famous shining landmark, the Golden Roof. It is considered the city&amp;#39;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza. Later walk down cobblestone pathways of Maria Theresien Stresses and live through the medieval European culture. A delight to explore, the neighbourhood is a collection of cobblestone streets, boutiques, medieval buildings, and sidewalk cafes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later the group will take the Hungerburgbahn Funicular: The Hungerburgbahn is a funicular that takes visitors from the city centre of Innsbruck up to the Hungerburg Mountain which is known for its stunning views of the city and the surrounding mountains. After exploring the Hungerburg Mountain, return to Innsbruck via the funicular and enjoy rest of your day in the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;In the evening we will proceed to Wattens to discover the home of Swarovski: where you will visit the Swarovski Crystal World - one of the most visited attractions in Austria.&amp;nbsp;The&amp;nbsp;Swarovski Crystal World in Wattens, Tyrol, weaves a spell around every visitor: a&amp;nbsp;water-spouting giant&amp;nbsp;that magically lures the beholder into a hidden world, where&amp;nbsp;Chambers of Wonder&amp;nbsp;fire up the imagination. His face has become a globally-recognized icon and the attraction has seen more than 12 million visitors pass through its doors.&amp;nbsp; During the visit you explore 16 Chambers of Wonder to see works of many artists, designers, and architects who interpreted crystals in their own unique ways and experience the magic of crystal in a dimension that has never been seen before.&amp;nbsp;A great opportunity to buy a souvenir for your family.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight in Innsbruck.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7629,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14448,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14447,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360583\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360584\",\"Title\":\"Drive towards Liechtenstein - Orientation tour of Vaduz - Scenic drive towards Switzerland - On arrival orientation tour of Zurich city\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast we check out and proceed towards Switzerland. Enroute our first stop is the Alpine principality of Liechtenstein, the sixth-smallest country in the world. Stopping in Vaduz, the peaceful capital of Liechtenstein, which is landlocked by its two wealthy neighbours, Switzerland and Austria. Discover Vaduz during a short but sweet orientation tour, in which you will learn the most interesting facts about the city, the local lifestyle and the modern transformation of the city. During the tour we will visit Peter-Kaiser-Platz&amp;nbsp;(Pass By)-The Liechtenstein State Square, where&amp;nbsp;the government buildings are located and immediately after that the 2007 newly created parliament building. Later you will have free time to explore and feel spellbound in a charming atmosphere.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later we will continue our journey towards scenic Switzerland. With magical views unfolding outside our windows we&amp;#39;ll find ourselves in Switzerland. You are now completely surrounded by nature&amp;rsquo;s beauty. Literally, you can turn in any direction and you will see snow-capped peaks, clear-blue lakes and scenic beauty. Breathe in the fresh air and enjoy your time in this idyllic place. On arrival in to Zurich we will proceed for tour of the beautiful city with visit to Altstadt old town, Graumunster Fraumunster church and you will have free time to Stroll near Picturesque Zurich lake.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight in Switzerland.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12446,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40746,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4384,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360585\",\"Title\":\"Visit to Mt Titlis - Orientation tour of Lucerne with Visit to Lion Monument and Kappelbrucke bridge - Free time for shopping\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today enjoy amazing scenery, a once in a lifetime experience with an exhilarating trip to the top of Mt Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;At 3020 meters (10000 ft) above the sea level, TITLIS is the jewel in Central Switzerland&amp;#39;s crown and the only publicly accessible glacier in the area. You will feel on top of the world as you take in the spectacular panoramic views of snow-covered mountains and unspoilt Alpine landscapes. The journey to the Titlis is truly an adventure in itself. First take the TITLIS Xpress gondola to the middle station, then continue your journey in the TITLIS Rotair, the world&amp;rsquo;s first revolving cable car, all the way to the top. Get a breath taking unrestricted 360 degrees stunning view of the dazzling snow caped peak, deep crevasses and pristine white snow fields, dotted with massive ice boulders from every angle. Do not forget to visit the &amp;ldquo;Cliff Walk&amp;rdquo; the highest suspension bridge in Europe along the cliff of Mt Titlis. Later we proceed to Lucerne. famous for its wooden bridges, cobbled lanes and beautiful setting against the lake it&amp;#39;s named after. Here we&amp;#39;ll visit Lion monument,&amp;nbsp;a giant dying lion carved out of a wall of sandstone rock, which commemorates the Swiss Guards who were massacred in 1792 during the French Revolution. later we&amp;rsquo;ll visit Kappelbrucke Wooden Bridge - World&amp;rsquo;s oldest covered wooden bridge spanning the River Reuss. Later Free time to shop for famous Swiss watches, knives, souvenirs and chocolates. Spend the evening exploring!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight in Switzerland.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12446,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7625,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40825,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360586\",\"Title\":\"Visit one of the most beautiful Town of Switzerland, Gstaad - Orientation tour of Interlaken and Bern\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After a delicious breakfast, get ready for an extraordinary experience as we venture into the scenic wonders of Switzerland. Our first stop is the enchanting town of Gstaad, nestled in the Bernese Oberland region of the Swiss Alps. Known for its upscale resorts and captivating Alpine architecture, Gstaad has even served as a backdrop for famous Indian movies.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As we arrive, we&amp;#39;ll explore Gstaad Village, located at an impressive elevation of 1,050 meters above sea level. Prepare to be mesmerized by the panoramic vistas that unfold before your eyes. Immerse yourself in the beauty of the surroundings as we take a leisurely stroll through the village.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Continuing our journey, we&amp;#39;ll head to the charming capital city of Switzerland, Bern. Here, we&amp;#39;ll enjoy a delightful lunch at an Indian restaurant, savoring the flavors of Indian cuisine amidst the historic and picturesque cityscape.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After lunch, we&amp;#39;ll make our way to Interlaken, a picturesque town nestled between two stunning lakes and surrounded by majestic mountains. Your tour manager will guide you on an orientation tour, highlighting the best of Interlaken&amp;#39;s charm.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take in the beauty of this remarkable destination at your leisure before we continue our drive to the hotel, where you can unwind and prepare for the adventures that lie ahead.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Switzerland.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12446,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40747,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40749,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40748,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360587\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360588\",\"Title\":\"Visit Europe&rsquo;s biggest and most stunning site, The Rhine Falls - Drive to the Heart of Black Forest - Visit Lake Titisee - Orientation tour of Strasbourg\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Enjoy your breakfast in the hotel. Today our first stop will be at Schaffhausen where you will see the magnificent Rhine Falls - Europe&amp;rsquo;s biggest and most stunning site. Take tons of selfies in front of this amazing natural phenomenon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later we continue our tour to the heart of Black Forest known for its picturesque woods mostly consisting of pines and firs. Black Forest offers some of Europe&amp;rsquo;s finest immersion in nature. The name Black Forest comes from the general dark colour of the numerous pine trees that grow in this region, and both the Black Forest gateau and cuckoo clock originate from this region. You will be enthralled at the scenic beauty of the quaint villages in the heart of black forest. Original&amp;nbsp;German Cuckoo Clocks&amp;nbsp;made in&amp;nbsp;Black Forest.&amp;nbsp;Black Forest wood carvers and clockmakers alike are considered to be the best in the world. Witness a demonstration of how cuckoo clocks are made. This the ideal place to pick up a few souvenirs from the local shops. Here you will also see the beautiful lake Titisee. It is the largest alpine lake in Germany with drinking water quality.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;We then head to Strasbourg. Strasbourg is the Capital of Christmas, famous for Christmas Market which holds a place in the history books of Alsatian Christmases&amp;nbsp;due to its longevity. First held in 1570, the famous &amp;ldquo;Christkindelsm&amp;auml;rik&amp;rdquo; is considered to be the oldest Christmas market in France. It&amp;#39;s also the formal seat of the European Parliament and sits near the German border, with culture and architecture blending German and French influences.&amp;nbsp;On arrival enjoy the orientation tour of Strasbourg. See the magnificent city, Photo stop at the famous cathedral Notre dame de Strasbourg. Enjoy some leisurely free time exploring the charming Old Town.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay in Strasbourg.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26205,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556136,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20398,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14449,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14450,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4371,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360589\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26205,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360590\",\"Title\":\"Drive towards Paris - Orientation Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After a sumptous breakfast, check out and take your transfer to Paris, one of the lovely and elegant city of France..!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Paris is a dream destination and the most visited city in Europe and has more bucket list items and must-see attractions than many other cities. On arrival we make our way to heart of Paris, the &amp;lsquo;City of Lights&amp;rsquo;. We&amp;#39;ll take you on a driving orientation tour of the French capital; get your cameras ready - you&amp;rsquo;ll be seeing some of the city&amp;rsquo;s most treasured landmarks, including the Eiffel Tower, Alexander Bridge and the Arc de Triomphe! Immerse yourself in the culture and architecture of the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay in Paris.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556137,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360591\",\"Title\":\"Guided city tour of Paris - Admission to the Eiffel Tower (3rd Level) OR the Montparnasse Tower - Guided Tour of Versailles Palace\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Breakfast followed by city tour of Paris. Feel the zest of the city with an exhilarating city tour that includes the best-loved Parisian sights &amp;ndash; Arc de Triumph, Champs Elysees, Concorde Square, Opera House, Napol&amp;eacute;on&amp;#39;s Les Invalids, Alexander Bridge, and many more sights.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Today during the tour your group will also ascend either the Eiffel Tower (3rd Level) or the Montparnasse Tower to appreciate the spectacular view of Paris in all her glory. The Eiffel Tower&amp;mdash; or as the French call it, La Tour Eiffel&amp;mdash;is one of the world&amp;#39;s most recognizable landmarks.&amp;nbsp;This crown jewel of the Paris skyline and iconic symbol of France is at its most spectacular seen up close. See Paris from above and from a completely new perspective. Capture incredible photos of Paris from the top of the tower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later we will visit the Palace of Versailles. Palace Constructed primarily in the 17th century, this magnificent royal palace was home to Marie Antoinette and Louis XIV (the Sun King). Your group will tour the chateau including the Grand Apartment, the Chapel, and the Hall of Mirror&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Paris.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556137,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40087,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14455,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360592\",\"Title\":\"Visit to The Grand Mosque of Paris - Free time to explore the city on your own. Enjoy the Seine River Cruise \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, we start our day with a visit to The Grand Mosque of Paris, also known as the Great Mosque of Paris for prayer. It is located in the 5th arrondissement and is one of the largest mosques in France. Later you can explore the city on your own as you have time at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening Enhance your Paris sightseeing experience on a romantic Sightseeing cruise on the River Seine. Feel the love in the air as you drift along the river Seine on this romantic cruise. After embarking at the base of the Eiffel Tower, see the Cathedral of Notre Dame, Ile de la Cite, the rivers beautiful bridges, historical monuments, and many more Parisian Sights.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Paris.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556137,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40750,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4381,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"360593\",\"Title\":\"Free time for shopping - Bon voyage - Homebound flight\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":11,\"Program\":\"&lt;p&gt;After breakfast, enjoy some last minute shopping depending on your flight time. Later drive onwards to the Airport for your onwards \\/ homebound flight.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories of your Majestic Europe Trip ...!!!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"50015\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"207000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":12000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"53000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":207000,\"priceDoubleOcc\":\"207000.00\",\"priceSingleOcc\":272000,\"priceExtraBed\":\"153000.00\",\"priceWithoutBed\":\"106000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":5000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":207000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106000,\"CEB\":153000,\"COSTDO\":207000,\"COSTSO\":\"60000.00\",\"ACEB\":207000,\"COSTTO\":207000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"50015\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"202000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-07\",\"To\":\"2023-09-07\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"53000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-14\",\"To\":\"2023-09-14\",\"Currency\":1,\"priceTripleOcc\":202000,\"priceDoubleOcc\":\"202000.00\",\"priceSingleOcc\":262000,\"priceExtraBed\":\"148000.00\",\"priceWithoutBed\":\"101000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":202000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":101000,\"CEB\":148000,\"COSTDO\":202000,\"COSTSO\":\"60000.00\",\"ACEB\":202000,\"COSTTO\":202000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Govt Tax of 5% over and above the Tour Cost mentioned.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS(5% or 10%)is applicable on GST inclusive price for international tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in Airfare, Visa fees, Airport taxes, Govt Taxes, Fuel Surcharges and any applicability of new taxes from Govt.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any up gradation in Airline class or hotel room category.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of Air ticket deviation charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Increase in the rate of exchange leading to an increase in all land arrangements which may come in to effect prior to departure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of pre or post tour hotel accommodation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any extra expense such as route change, Airline change, Date change, Accommodation facilities, etc incurred due to the unforeseen, unavoidable forced majeuere circumstances during the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of insurance for 60 years and above.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porterage, laundry, telephone charges, shopping, wines &amp;amp; beverages, items of personal nature and food or drink which is not part of a set group menu.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any extra cost incurred on behalf of an individual due to illness, accident, hospitalization, or any personal emergency.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any services or activity charges other than those included in the group tour itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;To and fro Air fare, Airport transfers, visa fees to join\\/leave the group for joining and leaving guests.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything specifically not mentioned in the &amp;#39;inclusions&amp;#39; column.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;10 Nights accommodation in 3* \\/ 4* category hotels with well appointed rooms as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Continental Buffet Breakfast in the Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch and Dinner as per itinerary at hotel \\/ indian restaurant (Indian Jain \\/ Vegetarian \\/ Non-Vegetarian Lunches (Halal Food)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing tours by air-conditioned coach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing in Germany, Austria, Liechtenstein, Switzerland&amp;nbsp; and France as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy class airfare including taxes (Ex-Mumbai)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Schengen Visa Processing Charges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance valid for your duration of travel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of professional and experienced tour manager&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Bottled Water in the coaches during sightseeing tours (500 ml x 02 per person x per day)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Travel Kit&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"360579\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[360579],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360580\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[360580],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360581\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[360581],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360582\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[360582],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360583\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[360583],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360584\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[360584],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360585\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[360585],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360586\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[360586],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360587\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[360587],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360588\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[360588],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360589\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[360589],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360590\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[360590],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360591\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[360591],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360592\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[360592],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"360593\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[360593],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"18676\":{\"CityName\":\"Mumbai\",\"FlightInv\":{\"1\":{\"587\":{\"FlightType\":1,\"AirlineName\":\"TBA\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"},\"591\":{\"FlightType\":1,\"AirlineName\":\"TBA\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"Munich, DE - Franz Josef Strauss Airport (MUC)\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"588\":{\"FlightType\":2,\"AirlineName\":\"TBA\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"Paris, FR - Charles De Gaulle (Roissy) Airport (CDG)\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"},\"592\":{\"FlightType\":2,\"AirlineName\":\"TBA\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"Dubai, AE - Dubai Intl Airport (DXB)\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20230705\":{\"FromDate\":\"2023-07-05\",\"FromDateDMY\":\"05\\/07\\/2023\",\"AdultCost\":60000,\"InfantCost\":11999,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230719\":{\"FromDate\":\"2023-07-19\",\"FromDateDMY\":\"19\\/07\\/2023\",\"AdultCost\":60000,\"InfantCost\":11999,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230907\":{\"FromDate\":\"2023-09-07\",\"FromDateDMY\":\"07\\/09\\/2023\",\"AdultCost\":60000,\"InfantCost\":11999,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230914\":{\"FromDate\":\"2023-09-14\",\"FromDateDMY\":\"14\\/09\\/2023\",\"AdultCost\":60000,\"InfantCost\":11999,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Munich,Innsbruck,Meiringen,Strasbourg,Paris','Munich,Western Europe,Germany,Innsbruck,Eastern Europe,Austria,Meiringen,Europe,Switzerland,Strasbourg,France,Paris,Gstaad,Liechtenstein,Lucerne,Zurich',NULL,'18694,12747,17345,26205,20822',202000,207000,10,NULL,NULL,NULL,1,'',0,'2023-09-07 00:00:00','2023-09-14 00:00:00','2023-09-14 00:00:00',3,'Germany,Austria,Switzerland,France','83,14,210,76','2023-09-07 13:15:41','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'majestic-europe',NULL,NULL,NULL,0),(304,49346,1,5293,1,0,0,'Honeymoon,Beach,Family,Sports,Heritage,Culture,Shopping and Nightlife,Day Tour,Rail Land',NULL,1,1,0,'{\"package\":{\"TPId\":49346,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/spanish-highlights_1676125064\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Spain boasts a mix of ancient Roman classical inspiration, which is mixed with intricate Moorish medieval designs. This has resulted in some of Europe&amp;#39;s most unique and colorful architecture that is both distinctly Mediterranean and classical at the same time. Its also known for the beautiful beaches with over 300 days of sunshine each year making it one of the most visited country in Europe.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Madrid, Spain&amp;#39;s capital and largest city is&amp;nbsp;best known for its grand palaces, parks, and excellent museums, such as the&amp;nbsp;Prado Museum&amp;nbsp;and the&amp;nbsp;Reina Sofia Museum.&amp;nbsp;El Retiro Park&amp;nbsp;is Madrid&amp;#39;s version of New York&amp;#39;s Central Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Barcelona, on Spain&amp;#39;s north-eastern Mediterranean coast, is ideal for a beach-centric vacation, both within the city itself and nearby.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Barcelona\",\"DestinationPlacesSysId\":2352,\"SourcePlaces\":\"Madrid\",\"SourcePlaceSysId\":16314,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"SPANISH HIGHLIGHTS \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6729\",\"SupplierName\":\"\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Beach,Family,Sports,Heritage,Culture,Shopping and Nightlife,Day Tour,Rail Land\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16314,\"Title\":\"Madrid\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":538920,\"Name\":\"Hotel Regente\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16314,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":538921,\"Name\":\"Hotel Princessa Plaza\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16314,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":39841,\"Title\":\"Flamenco Show\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16314,\"CityName\":\"Madrid\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":39843,\"Title\":\"Girona and Costa Brava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2352,\"CityName\":\"Barcelona\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20460,\"Title\":\"Madrid City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16314,\"CityName\":\"Madrid\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":39842,\"Title\":\"Barcelona Hop-On-Hop-Off Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2352,\"CityName\":\"Barcelona\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}},{\"CityId\":2352,\"Title\":\"Barcelona\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":538925,\"Name\":\"Hotel Best Front Maritim\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":2352,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":39841,\"Title\":\"Flamenco Show\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16314,\"CityName\":\"Madrid\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":39843,\"Title\":\"Girona and Costa Brava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2352,\"CityName\":\"Barcelona\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":20460,\"Title\":\"Madrid City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16314,\"CityName\":\"Madrid\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null},{\"RefSSId\":39842,\"Title\":\"Barcelona Hop-On-Hop-Off Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2352,\"CityName\":\"Barcelona\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"354739\",\"Title\":\"ARRIVAL IN MADRID   \",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today on arrival in Madrid, transfer from Madrid Airport to Madrid Hotel. Check In to your hotel and time at leisure to freshen-up and relax .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Later in the day you may take a leisurely stroll around the city center and get a feel of the city. Visit the Royal Palace of Madrid and admire its stunning architecture. Explore the famous Prado Museum, which houses a vast collection of Spanish and European art.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay in Madrid Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16314,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354741\",\"Title\":\"Madrid Hop-On-Hop-Off Tour - Flamenco Show \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast explore this beautiful and interesting city of Madrid at your own pace with a Full Day Hop-On-Hop-Off pass.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start the day with a visit to the Retiro Park, a beautiful green space in the heart of Madrid.&amp;nbsp;Stop by the Puerta del Sol, one of the most famous landmarks in the city, and watch the hustle and bustle of Madrid&amp;#39;s busy streets.&amp;nbsp;Visit the Mercado de San Miguel, a historic food market with a variety of stalls selling local cuisine and snacks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Explore the Plaza Mayor, a beautiful square surrounded by historic buildings and cafes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;End the day with a traditional Spanish flamenco show.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16314,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":39841,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":39843,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":39843,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20460,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354743\",\"Title\":\"Day at Leisure - Toledo Sightseeing Tour (Optional)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Post breakfast you have the day at leisure to relax or explore the city on own. Perhaps we would recommend an excursion tour to Toledo (optional tour).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Toledo is a nearby town with a rich history and stunning views.&amp;nbsp;Visit the Toledo Cathedral, one of the finest examples of Gothic architecture in Spain.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Explore the Alc&amp;aacute;zar of Toledo, a castle built on a hill overlooking the city.&amp;nbsp;Walk through the narrow streets of the Jewish Quarter and visit the Synagogue of Santa Mar&amp;iacute;a la Blanca.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return to Madrid in the evening. Overnight stay in Madrid Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16314,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538920,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538921,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354745\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16314,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354747\",\"Title\":\"Madrid to Barcelona Train\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast, check out and transfer to railway station for your train to Barcelona.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check-in to your hotel and take a short break to refresh.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later you may visit the Gothic Quarter, one of the most charming areas of the city, with narrow, winding streets and historic buildings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Admire the stunning architecture of the Sagrada Familia, Antoni Gaudi&amp;#39;s famous unfinished cathedral. In the evening you may visit the The Ramblas,&amp;nbsp;one of the most famous and iconic boulevards of Barcelona also famous for&amp;nbsp;street performers including human statues.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Barcelona Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2352,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354749\",\"Title\":\"Barcelona Hop-On-Hop-Off Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After a sumptous breakfast, start your Barcelona Sightseeing Tour with a Hop-On-Hop-Off Pass.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Park G&amp;uuml;ell, another creation by Antoni Gaudi, with a colorful collection of mosaics, sculptures and gardens.&amp;nbsp;Explore the Picasso Museum, which houses a vast collection of works by the famous Spanish artist.&amp;nbsp;Walk along La Rambla, a lively pedestrian street lined with shops, cafes, and street performers.&amp;nbsp;Visit the Gothic Cathedral of Barcelona and admire its stunning stained glass windows.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;End the day with a trip to the Barceloneta Beach, where you can relax and enjoy the Mediterranean sea.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Barcelona Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2352,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":39842,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354751\",\"Title\":\"Day at leisure - Optional Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy breakfast in the hotel. You have rest of the day at leisure to relax. Perhaps we would recommend an optional tour to Montserrat OR&amp;nbsp; Girona and Costa Brava.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Montserrat Tour:&amp;nbsp;&lt;\\/strong&gt;Escape the busy city of Barcelona and head to Catalonia&amp;rsquo;s most famous mountain range, Montserrat. Ride the railway to the top of the mountains, admire stunning natural landscapes, visit the local monastery, and learn about this history-rich location.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Girona and Costa Brava:&amp;nbsp;&lt;\\/strong&gt;Explore the breathtaking landscapes and whitewashed villages of the Costa Brava, and the medieval architecture of Girona on a small-group tour from Barcelona. Travel back in time as you discover Roman and medieval history.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Barcelona Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2352,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":538925,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"354753\",\"Title\":\"Transfer to Barcelona Airport - Return \\/ Onward Flight \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy last breakfast of your Spanish Highlights Tour. Later check out and transfer to Barcelona Airport for your flight.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories ...!&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2352,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"49346\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"79970.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":79970,\"priceDoubleOcc\":\"79970.00\",\"priceSingleOcc\":134970,\"priceExtraBed\":\"71940.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":79970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61600,\"CEB\":71940,\"COSTDO\":79970,\"COSTSO\":134970,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":79970,\"COSTTO\":79970}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49347\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"86350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86350,\"priceDoubleOcc\":\"86350.00\",\"priceSingleOcc\":150150,\"priceExtraBed\":\"77660.00\",\"priceWithoutBed\":\"64680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":64680,\"CEB\":77660,\"COSTDO\":86350,\"COSTSO\":150150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86350,\"COSTTO\":86350}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"49346\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"77789.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":77789,\"priceDoubleOcc\":\"77789.00\",\"priceSingleOcc\":131289,\"priceExtraBed\":\"69978.00\",\"priceWithoutBed\":\"59920.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77789,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":59920,\"CEB\":69978,\"COSTDO\":77789,\"COSTSO\":131289,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77789,\"COSTTO\":77789}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49347\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"83995.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995},{\"From\":\"2023-02-14\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":83995,\"priceDoubleOcc\":\"83995.00\",\"priceSingleOcc\":146055,\"priceExtraBed\":\"75542.00\",\"priceWithoutBed\":\"62916.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62916,\"CEB\":75542,\"COSTDO\":83995,\"COSTSO\":146055,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83995,\"COSTTO\":83995}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Nights Accommodation on Double \\/ Twin sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in the Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on a sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spain Visa Processing Charges (Regular)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"354739\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[354739],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354741\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[354741],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354743\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[354743],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354745\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[354745],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354747\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[354747],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354749\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[354749],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354751\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[354751],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"354753\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[354753],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Madrid,Barcelona','Madrid,Western Europe,Spain,Barcelona',NULL,'16314,2352',77789,86350,6,NULL,NULL,NULL,1,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Spain','199','2023-08-25 15:27:17','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'spanish-highlights',NULL,NULL,NULL,0),(305,49121,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Culture,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":49121,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/phuket-krabi-delights_1675769644\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand Delights is one of the best selling holiday package for travellers looking to explore all of Thailand from pristine beaches to Buddha temples, malls to fancy restaurants, vibrant culture and heritage to buzzing nightlife. This trip will take you to some of the most popular cities of Thailand such as Phuket, Krabi, Pattaya and Bangkok where you can explore and enjoy the most.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Phuket\",\"SourcePlaceSysId\":21319,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Thailand Delights \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"14289\",\"SupplierName\":\"Destination Siam Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Speed Boat\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Culture,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":539497,\"Name\":\"Aonang Buri Resort Krabi\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":439043,\"Name\":\"Poonsiri  Resort Krabi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.0596097\",\"Long\":\"98.792247617\",\"Address\":\"211 Moo 4 81180 AONANG DISTRICT, KRABI  TH, 81180\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"This comfortable Resort is set in Ao Nang Beach. The 35 welcoming accommodation units offer a perfect place to relax at the end of the day. This Resort was established in 2015. In addition, Wi-Fi access is offered at the establishment. The front desk offers 24-hour reception. The property&#039;s rooms are provided with facilities for children such as a cot if necessary. No pets are allowed on the premises. Travellers arriving by car may leave their vehicle at the accommodation&#039;s parking spaces. Guests can make use of the airport transfer service. Patrons may pamper their taste buds at the establishment&#039;s gastronomic venue. Poonsiri Resort Krabi may charge a fee for some services.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/61\\/617405\\/617405a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":10024,\"Name\":\"Holiday Inn Resort Krabi Ao Nang Beach\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.0399858327833\",\"Long\":\"98.815230131149\",\"Address\":\"123 Moo 3 Ao Nang Beach\"},\"Images\":{\"Image\":[{\"ImagId\":247558,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/978\\/KBVAN_4588840922_A.jpg\"},{\"ImagId\":247559,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/80\\/KBVAN_3555538448_A.jpg\"},{\"ImagId\":247560,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/192\\/KBVAN_3923776892_A.jpg\"},{\"ImagId\":247561,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/902\\/KBVAN_3619520885_A.jpg\"},{\"ImagId\":247562,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/960\\/KBVAN_3923855630_A.jpg\"},{\"ImagId\":247563,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/944\\/KBVAN_3607706023_A.jpg\"},{\"ImagId\":247564,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/894\\/KBVAN_3643966629_A.jpg\"},{\"ImagId\":247565,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/854\\/KBVAN_3927205104_A.jpg\"},{\"ImagId\":247566,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/998\\/KBVAN_3575440497_A.jpg\"},{\"ImagId\":247567,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/878\\/KBVAN_3643967237_A.jpg\"},{\"ImagId\":247568,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/951\\/KBVAN_3571698320_A.jpg\"},{\"ImagId\":247569,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/936\\/KBVAN_3643966649_A.jpg\"},{\"ImagId\":247570,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/983\\/KBVAN_3575441014_A.jpg\"},{\"ImagId\":247571,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/870\\/KBVAN_3643967551_A.jpg\"},{\"ImagId\":247572,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/976\\/KBVAN_3643966601_A.jpg\"},{\"ImagId\":247573,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/886\\/KBVAN_3927205126_A.jpg\"},{\"ImagId\":247574,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/990\\/KBVAN_3950000622_A.jpg\"},{\"ImagId\":247575,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/862\\/KBVAN_3650940632_A.jpg\"},{\"ImagId\":247576,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/928\\/KBVAN_3607678534_A.jpg\"},{\"ImagId\":247577,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/968\\/KBVAN_3607678554_A.jpg\"},{\"ImagId\":247578,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/76\\/KBVAN_3571699503_A.jpg\"},{\"ImagId\":247579,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/162\\/KBVAN_3933556809_A.jpg\"},{\"ImagId\":247580,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/204\\/KBVAN_3933563997_A.jpg\"},{\"ImagId\":247581,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/144\\/KBVAN_3598150569_A.jpg\"},{\"ImagId\":247582,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/64\\/KBVAN_3571701297_A.jpg\"},{\"ImagId\":247583,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/150\\/KBVAN_3551787923_A.jpg\"},{\"ImagId\":247584,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/106\\/KBVAN_3574895831_A.jpg\"},{\"ImagId\":247585,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/232\\/910\\/KBVAN_3619524149_A.jpg\"},{\"ImagId\":247586,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/134\\/KBVAN_3574929933_A.jpg\"},{\"ImagId\":247587,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/200\\/KBVAN_3574870144_A.jpg\"},{\"ImagId\":247588,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/208\\/KBVAN_3612729387_A.jpg\"},{\"ImagId\":247589,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/38\\/24\\/KBVAN_3551727396_8202188581_A.jpg\"},{\"ImagId\":247590,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/180\\/KBVAN_3923621840_A.jpg\"},{\"ImagId\":247591,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/158\\/KBVAN_3607706084_A.jpg\"},{\"ImagId\":247592,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/154\\/KBVAN_3861919301_A.jpg\"},{\"ImagId\":247593,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/38\\/20\\/KBVAN_3551647079_970352431_A.jpg\"},{\"ImagId\":247594,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/65\\/38\\/16\\/KBVAN_3551609828_8745254291_A.jpg\"},{\"ImagId\":247595,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/130\\/KBVAN_3923661984_A.jpg\"},{\"ImagId\":247596,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/92\\/KBVAN_3923711057_A.jpg\"},{\"ImagId\":247597,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/254\\/84\\/KBVAN_3926325421_A.jpg\"},{\"ImagId\":247598,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/42\\/KBVAN_4589005139_A.jpg\"},{\"ImagId\":247599,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/972\\/KBVAN_4589007027_A.jpg\"},{\"ImagId\":247600,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/985\\/KBVAN_4589003970_A.jpg\"},{\"ImagId\":247601,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/992\\/KBVAN_4589000804_A.jpg\"},{\"ImagId\":247602,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/998\\/KBVAN_4589001571_A.jpg\"},{\"ImagId\":247603,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/126\\/4\\/KBVAN_4589000968_A.jpg\"},{\"ImagId\":247604,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/126\\/17\\/KBVAN_4589001337_A.jpg\"},{\"ImagId\":247605,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/37\\/KBVAN_4589002162_A.jpg\"},{\"ImagId\":247606,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/346\\/331\\/KBVAN_4604301419_A.jpg\"},{\"ImagId\":247607,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/128\\/31\\/KBVAN_4589004801_A.jpg\"},{\"ImagId\":247608,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/337\\/172\\/KBVAN_4604257679_A.jpg\"},{\"ImagId\":247609,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/126\\/11\\/KBVAN_4589002961_A.jpg\"},{\"ImagId\":247610,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/78\\/153\\/KBVAN_3950000753_A.jpg\"},{\"ImagId\":247611,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/346\\/345\\/KBVAN_4604301466_A.jpg\"},{\"ImagId\":247612,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/126\\/24\\/KBVAN_4589005111_A.jpg\"},{\"ImagId\":247613,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/127\\/387\\/KBVAN_4589008162_A.jpg\"},{\"ImagId\":247614,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/127\\/393\\/KBVAN_4589035630_A.jpg\"},{\"ImagId\":247615,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/127\\/401\\/KBVAN_4589050533_A.jpg\"},{\"ImagId\":247616,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/127\\/408\\/KBVAN_4589007200_A.jpg\"},{\"ImagId\":247617,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/129\\/668\\/KBVAN_4589058323_A.jpg\"}]},\"CityId\":14466,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;You&amp;apos;ll be centrally located in Aonang Beach with a stay at Holiday Inn Resort Krabi Ao Nang Beach, minutes from Ao Nang Krabi Boxing Stadium and Nopparat Thara Beach.  This 4-star resort is within close proximity of Ao Phra Nang Beach and Ao Phai Plong.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 173 air-conditioned rooms featuring refrigerators and DVD players. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms have hair dryers and slippers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax and unwind with massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, which include 3 outdoor swimming pools, a waterslide, and a 24-hour fitness center. This resort also features complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the resort&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink at a beach bar, a poolside bar, or one of 3 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, dry cleaning\\/laundry services, and a 24-hour front desk. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/125\\/978\\/KBVAN_4588840922_A.jpg\",\"AccoAminitiesMask\":\"111100001000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":38044,\"Title\":\"James Bond Island Tour on Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39968,\"Title\":\"Emerald Pool\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":27291,\"Title\":\"Phuket City Tour\",\"Description\":\"&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;&lt;em style=&quot;outline: 0px padding: 0px border: 0px background: transparent vertical-align: baseline line-height: inherit font-family: inherit !important margin: 0px !important font-size: inherit !important&quot;&gt;Gear up for a full day city tour at Phuket!&lt;\\/em&gt;&lt;\\/p&gt;&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;It will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata, and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&#039;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Gems factory, Wat Chalong, and a Cashew Nut Factory.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/4539_1654585793.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3439,\"Title\":\"Nong Nooch Tropical Garden\",\"Description\":\"Nong Nooch Tropical Botanical Garden is a 500-acre botanical garden and tourist attraction at kilometer 163 on Sukhumvit Road in Chonburi Province, Thailand. It can be reached via bus, taxi or private land transportation. It is also a major scientific center dedicated to cycads, with its own Cycad Gene Bank.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":12.7645754,\"Long\":100.9346578,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Nong_Nooch_Tropical_Garden__20925_1518172090.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":537998,\"Name\":\"Patong Lodge Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"284 1 Thanon Phrabarami, Pa Tong, Kathu District, Phuket \"},\"Images\":[],\"CityId\":21319,\"Brief\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Surrounded by lush trees and gardens, this casual hotel is 2 km from Patong Beach, 5 km from the Tiger Kingdom Phuket wildlife preserve and 18 km from the prominent Buddhist temple, Wat Chalong.&nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe laid-back rooms feature wood furnishings and free Wi-Fi, as well as satellite TV, safes and minibars. Upgraded rooms add balconies, some with pool or sea views, plus tea and coffeemakers. A poolside suite adds a separate living room and direct pool access.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_537998\\/4539_b13ce0f7302e05b6e6de3f635c08609a1675778449.jpeg\",\"AccoAminitiesMask\":\"111111101010111110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":539499,\"Name\":\"Deevana Patong Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":365363,\"Name\":\"Wyndham Sea Pearl Resort Phuket\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"12 Prabaramee Road, Kathu, Phuket, Thailand, , , 83150, \"},\"Images\":[],\"CityId\":21319,\"Brief\":\"Wyndham Sea Pearl Resort Phuket is perfectly located for both business and leisure guests in Phuket. The hotel offers a high standard of service and amenities to suit the individual needs of all travelers. Facilities like 24-hour room service, free Wi-Fi in all rooms, 24-hour security, daily housekeeping, 24-hour front desk are readily available for you to enjoy. Guestrooms are fitted with all the amenities you need for a good night&#039;s sleep. In some of the rooms, guests can find closet, complimentary tea, towels, slippers, separate living room. Enjoy the hotel&#039;s recreational facilities, including yoga room, hot tub, fitness center, sauna, golf course (within 3 km), before retiring to your room for a well-deserved rest. Convenience and comfort makes Wyndham Sea Pearl Resort Phuket the perfect choice for your stay in Phuket.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":38044,\"Title\":\"James Bond Island Tour on Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39968,\"Title\":\"Emerald Pool\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":27291,\"Title\":\"Phuket City Tour\",\"Description\":\"&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;&lt;em style=&quot;outline: 0px padding: 0px border: 0px background: transparent vertical-align: baseline line-height: inherit font-family: inherit !important margin: 0px !important font-size: inherit !important&quot;&gt;Gear up for a full day city tour at Phuket!&lt;\\/em&gt;&lt;\\/p&gt;&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;It will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata, and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&#039;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Gems factory, Wat Chalong, and a Cashew Nut Factory.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/4539_1654585793.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3439,\"Title\":\"Nong Nooch Tropical Garden\",\"Description\":\"Nong Nooch Tropical Botanical Garden is a 500-acre botanical garden and tourist attraction at kilometer 163 on Sukhumvit Road in Chonburi Province, Thailand. It can be reached via bus, taxi or private land transportation. It is also a major scientific center dedicated to cycads, with its own Cycad Gene Bank.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":12.7645754,\"Long\":100.9346578,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Nong_Nooch_Tropical_Garden__20925_1518172090.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}},{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":539479,\"Name\":\"Kokotel Pattaya South Beach Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":510636,\"Name\":\"Centara Pattaya Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9412129\",\"Long\":\"100.888749\",\"Address\":\"78\\/140 Moo 9 Nongprue, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;Within easy walking distance of the popular four-kilometre-long Pattaya Beach,&nbsp;Centara Pattaya Hotel&nbsp;provides a relaxing retreat in the midst of all the action.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510636\\/4539_46d38035629392e5d6d65aa2d3d62b811655288941.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":510637,\"Name\":\"Dusit Thani Pattaya\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9506774\",\"Long\":\"100.8853687\",\"Address\":\"5 240\\/2 Beach Rd, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;Dusit Thani Pattaya&nbsp;enjoys a five-star status and the resort hotel presents a luxurious blend of city comforts and beach relaxation for individual travellers&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510637\\/4539_43f7d241933615ba8904fda9c18f46e61655289047.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":38044,\"Title\":\"James Bond Island Tour on Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39968,\"Title\":\"Emerald Pool\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":27291,\"Title\":\"Phuket City Tour\",\"Description\":\"&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;&lt;em style=&quot;outline: 0px padding: 0px border: 0px background: transparent vertical-align: baseline line-height: inherit font-family: inherit !important margin: 0px !important font-size: inherit !important&quot;&gt;Gear up for a full day city tour at Phuket!&lt;\\/em&gt;&lt;\\/p&gt;&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;It will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata, and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&#039;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Gems factory, Wat Chalong, and a Cashew Nut Factory.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/4539_1654585793.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3439,\"Title\":\"Nong Nooch Tropical Garden\",\"Description\":\"Nong Nooch Tropical Botanical Garden is a 500-acre botanical garden and tourist attraction at kilometer 163 on Sukhumvit Road in Chonburi Province, Thailand. It can be reached via bus, taxi or private land transportation. It is also a major scientific center dedicated to cycads, with its own Cycad Gene Bank.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":12.7645754,\"Long\":100.9346578,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Nong_Nooch_Tropical_Garden__20925_1518172090.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":174309,\"Name\":\"Novotel Bangkok On Siam Square\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.74446567927\",\"Long\":\"100.53505718708\",\"Address\":\"Siam Square Soi 6 10330 Bangkok\"},\"Images\":{\"Image\":[{\"ImagId\":3870018,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/859\\/1031_ho_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870019,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/897\\/1031_ho_05_p_3000x2250_A.jpg\"},{\"ImagId\":3870020,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/909\\/1031_ro_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870021,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/919\\/1031_ro_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870022,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/928\\/1031_ro_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870023,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/940\\/1031_ro_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870024,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/949\\/1031_ro_04_p_3000x2250_A.jpg\"},{\"ImagId\":3870025,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/958\\/1031_ro_05_p_3000x2250_A.jpg\"},{\"ImagId\":3870026,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/962\\/1031_rs_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870027,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/966\\/1031_rs_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870028,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/970\\/1031_rs_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870029,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/974\\/1031_rs_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870030,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/978\\/1031_rs_04_p_3000x2250_A.jpg\"},{\"ImagId\":3870031,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/986\\/1031_rs_05_p_3000x2250_A.jpg\"},{\"ImagId\":3870032,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/993\\/1031_ba_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870033,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/0\\/1031_ba_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870034,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/772\\/923\\/1031_ba_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870035,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/245\\/437\\/1031_ba_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870036,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/985\\/48\\/1031_sl_01_p_2048x1536_A.jpg\"},{\"ImagId\":3870037,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/38\\/1031_sl_04_p_3000x2250_A.jpg\"},{\"ImagId\":3870038,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/46\\/1031_sp_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870039,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/51\\/1031_sm_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870040,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/56\\/1031_sm_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870041,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/60\\/1031_sm_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870042,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/813\\/65\\/1031_sm_04_p_3000x2250_A.jpg\"},{\"ImagId\":3870043,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/801\\/1031_fa_00_p_2048x1536_A.jpg\"},{\"ImagId\":3870044,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/208\\/796\\/1031_fa_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870045,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/208\\/801\\/1031_fa_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870046,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/816\\/1031_fa_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870047,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/822\\/1031_fi_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870048,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/208\\/813\\/1031_sm_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870049,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/827\\/1031_sw_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870050,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/833\\/1031_de_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870051,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/208\\/823\\/1031_de_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870052,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/848\\/1031_de_02_p_3000x2250_A.jpg\"},{\"ImagId\":3870053,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/853\\/1031_de_03_p_3000x2250_A.jpg\"},{\"ImagId\":3870054,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/859\\/1031_de_04_p_3000x2250_A.jpg\"},{\"ImagId\":3870055,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/572\\/865\\/1031_de_05_p_3000x2250_A.jpg\"},{\"ImagId\":3870056,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/149\\/1031_rokgb_00_p_1024x768_A.jpg\"},{\"ImagId\":3870057,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/153\\/1031_roksb_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870058,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/165\\/1031_roska_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870059,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/169\\/1031_roskd_00_p_1024x768_A.jpg\"},{\"ImagId\":3870060,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/173\\/1031_rosqd_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870061,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/177\\/1031_rosuiroo_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870062,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/185\\/1031_rotwb_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870063,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/440\\/246\\/1031_rotwc_00_p_3000x2250_A.jpg\"},{\"ImagId\":3870064,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/440\\/250\\/1031_rokgaef_01_p_3000x2250_A.jpg\"},{\"ImagId\":3870065,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/725\\/193\\/1031_rosqd_01_p_3000x2250_A.jpg\"}]},\"CityId\":2266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Novotel Bangkok On Siam Square, you&amp;apos;ll be centrally located in Bangkok, steps from Sea Life Bangkok Ocean World and minutes from Siam Paragon Mall.  This 4-star hotel is close to Grand Palace and Temple of the Emerald Buddha.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 426 air-conditioned rooms featuring refrigerators and LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. If you&amp;apos;re looking for recreational opportunities, you&amp;apos;ll find an outdoor pool, a spa tub, and a sauna. Additional amenities at this hotel include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and a television in a common area.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at one of the hotel&amp;apos;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, limo\\/town car service, and express check-in. Event facilities at this hotel consist of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/812\\/859\\/1031_ho_01_p_3000x2250_A.jpg\",\"AccoAminitiesMask\":\"110100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":174434,\"Name\":\"Citadines Sukhumvit 16\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.733596\",\"Long\":\"100.560862\",\"Address\":\"38 Sukhumvit 16, Sukhumvit Road Klongtoey\"},\"Images\":{\"Image\":[{\"ImagId\":3873152,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/282\\/full_citadines_bangkok_sukhumvit_16_kitchen_A.jpg\"},{\"ImagId\":3873153,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/290\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Lobby-HR_A.jpg\"},{\"ImagId\":3873154,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/306\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Swimming_Pool-HR_A.jpg\"},{\"ImagId\":3873155,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/314\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Facade-HR_A.jpg\"},{\"ImagId\":3873156,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/322\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Studio_Exe_03-HR_A.jpg\"},{\"ImagId\":3873157,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/330\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Studio_Exe_02-HR_A.jpg\"},{\"ImagId\":3873158,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/72\\/924\\/795\\/SR_Thailand_BKK_Cit_Sukhumvit_16_Studio_Exe_01-HR_A.jpg\"}]},\"CityId\":2266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Citadines Sukhumvit 16 Bangkok, you&amp;apos;ll be centrally located in Bangkok, walking distance from Terminal 21 Shopping Mall and close to Dinosaur Planet.  This hotel is within close proximity of Benjakitti Park and Embassy of India.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 79 air-conditioned rooms featuring kitchens with full-sized refrigerators\\/freezers and microwaves. LCD televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Don&amp;apos;t miss out on recreational opportunities including an outdoor pool and a fitness center. This hotel also features complimentary wireless Internet access and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the complimentary area shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Continental breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, a 24-hour front desk, and an elevator (lift). Planning an event in Bangkok? This hotel features 0 square feet (0 square meters) of event facilities. A roundtrip airport shuttle is provided for a surcharge (available on request), and limited parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/751\\/282\\/full_citadines_bangkok_sukhumvit_16_kitchen_A.jpg\",\"AccoAminitiesMask\":\"110100000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"}],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":365882,\"Name\":\"Prince Palace\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.753920499613\",\"Long\":\"100.51509082317\",\"Address\":\"488\\/800 Damrongrak Road Bo Bae Tower 10100 Bangkok  Damrongrak Road\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"Enjoying a central location in Bangkok close to Chinatown, this city hotel places guests just 4 kms from the town centre in the downtown governmental and commercial area of the city. Guests of Prince Palace are will find themselves within easy reach of the variety of cultural and historic points of interest this intriguing city has to offer. There are many shopping districts in close proximity to the hotel including Bangkok&#039;s main shopping area of Siam Square. Transfer time to the airport is a mere 45 minutes.Located on the site which once served as &acirc;&euro;&oelig;Mahanak Palace&acirc;&euro;\\u009d, the hotel occupies the 11th to 32nd floors of the Bobae Tower, where guests can find a shopping paradise beneath them of over 1,000 shops. This hotel is the ideal choice for conferences offering a business centre and extensive meeting and conference facilities.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/05\\/a0\\/05a0fea339d24f0dc4eab3d32c0d9dbc172af278.jpg\",\"AccoAminitiesMask\":\"1110101010101100110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":38045,\"Title\":\"4 Island tour Krabi Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3838,\"Title\":\"Phuket FantaSea Show\",\"Description\":\"Phuket Fantasea Show is inspired by Thailand&amp;#039;s rich and exotic heritage, and not only showcases the charm and beauty of Thailand, but also enriches ancient Thai traditions with the wonder of cutting-edge technology and special effects. This includes acrobatics, illusions, pyrotechnics, stunts, aerial performances and more. It involves a cast and crew of over 400 people, 44 elephants, three tigers, 40 goats, 40 chickens and 400 pigeons.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.956388,\"Long\":98.287511,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_FantaSea_Show_21319_1519386719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":38044,\"Title\":\"James Bond Island Tour on Long Tail Boat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39970,\"Title\":\"Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":39968,\"Title\":\"Emerald Pool\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":27291,\"Title\":\"Phuket City Tour\",\"Description\":\"&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;&lt;em style=&quot;outline: 0px padding: 0px border: 0px background: transparent vertical-align: baseline line-height: inherit font-family: inherit !important margin: 0px !important font-size: inherit !important&quot;&gt;Gear up for a full day city tour at Phuket!&lt;\\/em&gt;&lt;\\/p&gt;&lt;p style=&quot;outline: 0px font-family: Lato, sans-serif padding: 0px border: 0px background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial vertical-align: baseline line-height: inherit color: rgb(62, 62, 62) text-align: start margin-bottom: 8px !important&quot;&gt;It will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata, and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&#039;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Gems factory, Wat Chalong, and a Cashew Nut Factory.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/4539_1654585793.jpg\",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3439,\"Title\":\"Nong Nooch Tropical Garden\",\"Description\":\"Nong Nooch Tropical Botanical Garden is a 500-acre botanical garden and tourist attraction at kilometer 163 on Sukhumvit Road in Chonburi Province, Thailand. It can be reached via bus, taxi or private land transportation. It is also a major scientific center dedicated to cycads, with its own Cycad Gene Bank.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":12.7645754,\"Long\":100.9346578,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Nong_Nooch_Tropical_Garden__20925_1518172090.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":14289,\"SupplierName\":\"Destination Siam Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"Book your Exotic Thailand vacation and enjoy the discount of upto INR:2,000\\/-\",\"CouponCode\":\"VISITTHAI\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"353024\",\"Title\":\"Krabi: Arrival &amp; Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Sawadee! Welcome to Thailand&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After arriving at Phuket International Airport and clearing your visa on arrival \\/ immigration, meet and assist by our airport representative holding your name placard. Our airport representative will meet you in the arrival hall and from there, you will be transferred to a hotel in Krabi. The driving time is around 3 hours. On arrival at Krabi, check in at your hotel and rest of the day is free to relax.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening you may visit the famous beaches of Aonang or Railay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in your Krabi Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":539497,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":439043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":10024,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353027\",\"Title\":\"Krabi: Four Island Tour via Long Tail Boat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Get ready for a fun-filled four island hopping tour!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post breakfast, you will be taken for a four island hopping tour. It is recommended for you to carry your sunglasses, swimsuit, and a towel. Today, you will mostly be in the water so it&amp;rsquo;s better to be prepared with all the necessaries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the famous Koh Gai &amp;ndash; the Chicken Island and see for yourself where it got its nickname, Explore the lesser known tiny islands of Koh Tub and Koh Mor,&amp;nbsp;Discover the magnificent Phra Nang Cave Beach on the Railay Peninsula.&amp;nbsp;Enjoy Thai Lunch during the tour. Later in the afternoon, return to hotel and rest of the day is free for you to relax.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Krabi Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":539497,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":439043,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":10024,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":38045,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3838,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":38044,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353030\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353033\",\"Title\":\"Transfer from Krabi to Phuket - Enroute visit Emerald Pool, Hot Water Springs and Tiger Cave Temple\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After a sumptous breakfast, check out from your Krabi hotel and transfer to Phuket Hotel. The driving time is around 4 Hours.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enroute, give the sand and sea a break and dive into the unbelievably blue waters of Krabi&amp;rsquo;s Emerald and Blue Pools. Take a dip in the therapeutic hot springs and visit the impressive Tiger Cave Temple with a special 3-In-1 Tour .&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later continue your drive to Phuket. On arrival at Phuket Hotel check in and time free to relax.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Perhaps you may visit the famous Phuket beaches like Patong, Kata or Karon. Patong area is also the undisputed nightlife centre of Phuket.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in your Phuket Hotel.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":537998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":539499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365363,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":39970,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":39968,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353036\",\"Title\":\"Phuket: Phi Phi Island Tour by Speed Boat OR Big Boat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":4,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Today after an early breakfast, proceed for the much awaited and the most popular tour-experience in Phuket - The Phi Phi Island Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Breathtaking limestone cliffs rise straight out of the emerald green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave and Monkey Beach. Thai Lunch will be served at Phi Phi Don Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Return to Phuket Mainland early evening followed by drop to your hotel. Evening is at leisure to relax or enjoy shopping at the many malls and street side shops.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight in Phuket Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":537998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":539499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365363,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353039\",\"Title\":\"Phuket: City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, proceed for your city tour of Phuket.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The tour will start with a drive that will take you across Patong, Karon, and Kata. Moving forward, you will visit 3 Beaches Viewpoints. From here, you can witness scenic views of Karon, Kata Noi, Kata and Koh Pu Island. Then, you will be taken for a leisurely drive around Phuket&amp;#39;s west coastline. It will start from Patong and will take you to the end of the island. The city tour will also take you to the Wat Chalong, Big Buddha,&amp;nbsp;Gems factory&amp;nbsp;and a Cashew Nut Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return to the hotel and end the day with a peaceful overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":537998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":539499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365363,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27291,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"353042\",\"Title\":\"Phuket: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;The final day and the final goodbye!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On your final day, after an early breakfast in the hotel, proceed to checkout. Take your transfer from hotel to Phuket airport. With this we see you off with a bagful of memories and experiences to cherish..!!&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357237\",\"Title\":\"Transfer from Phuket to Bangkok - Onwards drive to Pattaya\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After a healthy breakfast, complete your check out process and say good bye to Phuket. Take your transfer and proceed to Phuket airport for your flight to Bangkok.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival at Bangkok Airport, meet and assist at exit gate followed by drive to Pattaya (Approx. 2 Hrs). Pattaya is one of the most sought after cities of Thailand famous for its lively atmosphere, beautiful beach, water sports and a vibrant nightlife.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check-In to your Pattaya hotel. Afternoon at leisure to frehsen up and relax.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening visit the famous Alcazar Cabaret Show.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rest of the day is free to explore this beautiful beach side town at your own pace. Overnight stay in Pattaya Hotel&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":539479,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510636,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357240\",\"Title\":\"Pattaya: Visit the Nong Nooch Tropical Garden\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, visit the magnificently landscaped Nong Nooch Tropical Garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set over 600 Acres of land, Nong Nooch Tropical Garden is one of the 10 most beautiful gardens in the world showcasing more than 12,000 range of plants &amp;amp; landscaping. Watch some entertaining events including the Thai Boxing &amp;amp; Cultural Show, Amazing Elephant Show etc. Also discover the unique areas of orchids, fountains, topiary, waterfalls, cactus, ferns, bonsai,&amp;nbsp; Mini Stonehenge &amp;amp; Pottery Park..!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to your hotel in the afternoon. Rest of the day is at leisure. Perhaps you can take a relaxing Thai Massage.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Pattaya Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":539479,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510636,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3439,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357243\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357246\",\"Title\":\"Transfer to Bangkok - Temple and City Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast today, our representative will transfer you to Bangkok which is a 2 hrs drive.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy your city tour of Bangkok followed by check in at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your tour starts with visit to Wat Traimit, the temple famous for holding the largest Golden Buddha in the world, standing at five meters in height and over five and half tonnes. Then you&amp;#39;ll pass through the Chinatown area to glimpse the cultural diversity of this city followed by visit to Wat Pho, an ancient Buddhist temple complex, which holds more Buddha statues than any other temple in the country. Your last stop is at the Marble Temple, or Wat Benchamabopit, the most beautiful of Bangkok&amp;#39;s temples, and made of imported Italian marble. You will experience Bangkok&amp;#39;s cultural richness and diversity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After city tour, check in at hotel in Bangkok. Evening is free to enjoy shopping in the shopper&amp;#39;s paradise, Bangkok with many malls and street side shops around your hotel.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":174434,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":174309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357249\",\"Title\":\"Bangkok Safari World and Marine Park Tour with Lunch\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":9,\"Program\":\"&lt;p&gt;Enjoy a sumptous buffet breakfast in the hotel. Later proceed on your Safari World and Marine Park Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Safari World is an animal and leisure park based in Bangkok. Comprising two themes; Safari Park and Marine Park, the park offers its visitors a variety of entertainment options and activities for both, adults and children. Safari Park takes visitors on a ride where you have the opportunity to meet hundreds of wild animals in their natural habitat, while Marine Park has a large number of aquatic animals on display.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There are many entertaining shows also performed through the day featuring sea lions, dolphins, tigers besides a Hollywood Chowboy Stunt Show with plenty of thrill and action.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch is served inside the park (Indian OR International Buffet)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return to your hotel in the evening. Later you may explore the nearby street shops or malls.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":174434,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":174309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3403,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"357252\",\"Title\":\"Bangkok: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;After having breakfast, check out from the hotel and keep your luggage with the hotel concierge.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy some last minute shopping followed by drop to Bangkok Airport for your homebound \\/ onward flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take a plethora of memories with you to cherish for eternity...!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"49121\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"59713.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59714,\"priceDoubleOcc\":\"59713.50\",\"priceSingleOcc\":93263.5,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"41580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59713.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41580,\"CEB\":47850,\"COSTDO\":59713.5,\"COSTSO\":93263.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59713.5,\"COSTTO\":59713.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49122\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"71346.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71346,\"priceDoubleOcc\":\"71346.00\",\"priceSingleOcc\":110396,\"priceExtraBed\":\"56980.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71346,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":56980,\"COSTDO\":71346,\"COSTSO\":110396,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":71346,\"COSTTO\":71346}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"49123\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"89210.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89199,\"priceDoubleOcc\":\"89210.00\",\"priceSingleOcc\":131450,\"priceExtraBed\":\"89177.00\",\"priceWithoutBed\":\"68640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":89210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":68640,\"CEB\":89177,\"COSTDO\":89210,\"COSTSO\":131450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":89177,\"COSTTO\":89177}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"49121\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"58084.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":58085,\"priceDoubleOcc\":\"58084.95\",\"priceSingleOcc\":90719.95,\"priceExtraBed\":\"46545.00\",\"priceWithoutBed\":\"40446.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":58084.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40446,\"CEB\":46545,\"COSTDO\":58084.95,\"COSTSO\":90719.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58084.95,\"COSTTO\":58084.95}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49122\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"69400.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69400,\"priceDoubleOcc\":\"69400.20\",\"priceSingleOcc\":107385.2,\"priceExtraBed\":\"55426.00\",\"priceWithoutBed\":\"55640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69400.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55640,\"CEB\":55426,\"COSTDO\":69400.2,\"COSTSO\":107385.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69400.2,\"COSTTO\":69400.2}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"49123\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"86777.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9},{\"From\":\"2023-02-18\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86766,\"priceDoubleOcc\":\"86777.00\",\"priceSingleOcc\":127865,\"priceExtraBed\":\"86744.90\",\"priceWithoutBed\":\"66768.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86777,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":66768,\"CEB\":86744.9,\"COSTDO\":86777,\"COSTSO\":127865,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":86744.9,\"COSTTO\":86744.9}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab (Thailand Visa on Arrival is 2200 THB Per Person for Express Visa Processing)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Accommodation for 03 Nights in selected Phuket Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Accommodation for 02 Nights in selected Krabi Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Accommodation for 02 Nights in selected Pattaya Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Accommodation for 02 Nights in selected Bangkok Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Daily Breakfast in the Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Lunch \\/ Dinner as per itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;All airport \\/ inter hotel transfers on private basis&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;All sightseeing tours as per the itinerary on sharing basis (SIC)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Phuket City Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Phi Phi Island Tour in Phuket including Thai Lunch&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Emerald Pool + Hot Water Springs + Tiger Cave Temple Tour enroute from Phuket to Krabi OR V.V&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- 4 Island Tour from Krabi by Long Tail Boat including Thai Lunch&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Alcazar Show in Pattaya&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Nong Nooch Village Tour in Pattaya&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Bangkok Temple and City Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;- Bangkok Safari World and Marine Park Tour including lunch&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Speed Boat \\/ Big Boat \\/ Long Tail Boat transfers on sharing basis in Phuket and Krabi&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Travel Insurance valid for your duration of stay in Thailand&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Meet and Assist at Phuket \\/ Bangkok Airport&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*Note: Air-Conditioner in vehicles&amp;nbsp;may not operate in Hilly areas.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"353024\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[353024],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353027\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[353027],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353030\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[353030],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353033\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[353033],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353036\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[353036],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353039\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[353039],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"353042\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[353042],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"357237\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[357237],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"357240\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[357240],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"357243\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[357243],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"357246\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[357246],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"357249\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[357249],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"357252\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[357252],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Krabi,Phuket,Pattaya,Bangkok','Krabi,South East Asia,Thailand,Phuket,Pattaya,Bangkok',NULL,'14466,21319,20925,2266',58085,89210,9,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Thailand','215','2023-08-25 15:27:19','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'thailand-delights',NULL,NULL,NULL,0),(306,46437,1,5293,0,0,0,'Honeymoon,Family,Offbeat,Leisure,River Cruises',NULL,1,1,0,'{\"package\":{\"TPId\":46437,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/offbeat-singapore_1672833407\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Singapore is unique on its own and is very much famous for its shopping, heritage sites, beautiful architectures,&amp;nbsp;cuisines&amp;nbsp;and many more.&amp;nbsp;With &amp;quot;Offbeat Singapore&amp;quot; package, we have left the beaten path of going with the regular sightseeing&amp;rsquo;s and instead, added some hidden gems and obscure places that are a wonder so you don&amp;#39;t just visit Singapore...Soak all of it..!!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Offbeat Singapore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13448\",\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Offbeat,Leisure,River Cruises\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531571,\"Name\":\"Hotel Chancellor\",\"Star\":\"3.00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3011349\",\"Long\":\"103.8421518\",\"Address\":\"28 Cavenagh Rd, Singapore 229635\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;In a glass-fronted building off the Central Expressway, this modern hotel is a 6-minute walk from Somerset subway station, a 13-minute walk from the bustling shops of Orchard Road and 5 km&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;from the waterfront Gardens by the Bay.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual rooms with floor-to-ceiling windows feature free Wi-Fi, flat-screen TVs, and minifridges, plus tea and coffeemaking facilities. Upgraded rooms add rainfall showers.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in a sleek, bi-level cafe overlooking a lush courtyard, which also offers other meals. Other amenities include a striking rooftop lap pool flanked by a wooden deck, plus 5 conference rooms.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531571\\/4539_55424d0f16ceccf0fbed1646f2b69d561672301196.jpeg\",\"AccoAminitiesMask\":\"111111110110111110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":440160,\"Name\":\"V HOTEL LAVENDER\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"70 Jellicoe Road, Singapore, 208767, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 4 star hotel is located in the city centre of Singapore and was established in 2011. It is a short drive away from the Raffles City and the nearest station is Kallang Road. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 888 rooms are equipped with hairdryer, safe, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/640\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":442532,\"Name\":\"PENINSULA EXCELSIOR\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"5 Coleman Street, Singapore, 179805, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 3 star hotel is located in the city centre of Singapore and was established in 1974. It is close to the Clarke Quay and the nearest station is City Hall. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 591 rooms are equipped with minibar, hairdryer, safe and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/280\\/lr\\/01ext.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426045,\"Name\":\"PARKROYAL on Kitchener Road\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"181 Kitchener Road, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"In the heart of Singapore, the PARKROYAL on Kitchener Road hotel (part of Park Royal Hotels &amp; Resorts) is close to the Sri Veeramakaliamman Temple and the Malay Heritage Centre (Istana Kampong Gelam). This hotel built in 1983 is rated for its location and its rooms. The main hotel amenities are coffee shop or caf&Atilde;&copy;, bar &amp; lounge, 24-hour front desk, elevator, free WiFi and multilingual staff. Additional amenities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), facilities for disabled guests, ironing facilities, non-smoking rooms, designated smoking areas, tours &amp; ticket assistance, bridal suite, currency exchange, ironing service, shoeshine, tour desk, trouser press and fax &amp; photocopying. This hotel accepts the following payment types: American Express, Diners Club, JCB International, MasterCard and Visa. Cash not accepted. Pets not allowed. The hotel is recommended for groups of friends and couples.This 4 star hotel is within close proximity of the Haw Par Villa (Tiger Balm Gardens) and the Underwater World. The closest airports to the hotel are Changi and Senai Intl.The hotel occupies a modern high-rise property featuring an angular, decorative facade with some prominent panelling.The hotel has business facilities including business center and multiple small meeting rooms. This hotel provides the following swimming facilities: children&#039;s swimming pool and outdoor swimming pool. Wellness facilities include 24-hour fitness facilities, sauna, spa services on site and steam room.Relax in one of the lovely 532 air conditioned rooms at PARKROYAL on Kitchener Road. The main room amenities are air conditioning, in-room safe and hair dryer. Additional room amenities include bathrobes, hair dryer (on request), slippers, complimentary newspaper, complimentary toiletries, complimentary weekday newspaper, adjoining rooms and daily housekeeping.Eating and drinking facilities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), coffee shop or caf&Atilde;&copy; and bar &amp; lounge. Shopping facilities include gift shops or newsstand.Free parking is possible onsite. The hotel has a 24-hour reception.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/P3K\\/P3K_FRONT.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426094,\"Name\":\"ONE FARRER HOTEL AND SPA\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1 Farrer Park Station Road, Singapore, 217562, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 5 star hotel is located in the city centre of Singapore and was established in 2014. It is close to the Little India and the nearest station is Farrer Park MRT. The Hotel has an outdoor swimming pool and a fitness centre\\/gym. All 243 rooms are equipped with minibar, hairdryer, safe, trouser press, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/515\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3678,\"Title\":\"SINGAPORE FLYER\",\"Description\":\"The Singapore Flyer is a giant Ferris wheel in Singapore. It has 28 air-conditioned capsules, each able to accommodate 28 passengers, and incorporates a three-storey terminal building.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2892988,\"Long\":103.8631368,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SINGAPORE_FLYER_25278_1530614974.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":2162,\"Title\":\"Universal Studios Singapore\",\"Description\":\"Universal Studios Singapore  is a theme park located within Resorts World Sentosa on Sentosa Island, Singapore. It was a key component of Genting&amp;#039;s bid for the right to build Singapore&amp;#039;s second integrated resort. On 8 December 2006, the Singapore government announced that the consortium had won the bid. Construction of the theme park and the rest of the resort started on 19 April 2007. It is the second Universal Studios theme park to open in Asia (Japan being the first), and the first in Southeast Asia. The official plans for the park were unveiled to the public when Universal Studios Singapore released a park map to the public on 20 October 2009.Universal Studios Singapore has since attracted more than 2 million visitors in the 9 months from its opening.\\r\\nUniversal Parks &amp;amp; Resorts markets the park as a &amp;quot;one-of-its-kind theme park in Asia&amp;quot; and promises that the park will be the only one of its kind in Southeast Asia for the next 30 years\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.249404,\"Long\":103.830321,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Universal_Studios_Singapore_25278_1503574614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4432,\"SupplierName\":\"Nam ho DMC\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41008,\"Title\":\"Marina Bay Sands \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41009,\"Title\":\"Snow City Singapore\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41010,\"Title\":\"River Wonders at Mandai Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":6337,\"Title\":\"Singapore Zoo, Singapore\",\"Description\":\"hyrfh\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":78.5676,\"Long\":667.454,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Singapore_Zoo,_Singapore_25278_1530611433.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41012,\"Title\":\"01 Night Extension in Hotel V Lavender\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41013,\"Title\":\"01 Night Extension in Hotel Park Royal on Kitchener Road\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41014,\"Title\":\"01 Night Extension in Hotel Peninsula Excelsior\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41015,\"Title\":\"01 Night Extension in Hotel Peninsula Excelsior\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":41016,\"Title\":\"01 Night Extension in One Farrer Hotel and Spa\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13680,\"SupplierName\":\"BNB Holidays Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":37587,\"Title\":\"museum of ice cream\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(142, 21, 55) font-family: Centrano2, sans-serif font-size: 16px text-align: start&quot;&gt;There is no museum in the world where you can learn about ice cream by basking in a pink Californian beach, reminiscing your childhood in the locally-inspired dragon playground or taking a dip in a pool filled with millions of sprinkles. This is the only place in the world where anything is possible. Get ready to be transported into a world where all your wildest ice cream dreams come true.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1672906998.jpg\",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":37586,\"Title\":\"Airport Boulevard\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;Jewel Changi Airport is a nature-themed entertainment and retail complex surrounded by and linked to Changi Airport, Singapore, linked to one of its passenger terminals. Its centrepiece is the world&#039;s tallest indoor waterfall, the Rain Vortex, that is surrounded by a terraced forest setting.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.3600986,\"Long\":103.9895888,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/25278\\/sightseeing\\/4539_1672907102.jpg\",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"334310\",\"Title\":\"Singapore: Arrival - Visit Singapore Flyer\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Singapore; the Lion City !&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once you arrive at the Singapore Changi International Airport, our representative will heartily greet you and transfer you to the pre-reserved hotel in private transportation. Upon arrival, you will sign into the hotel and spend the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, visit the famous Singapore Flyer, Asia&amp;#39;s largest giant observation wheel located in the heart of downtown Marina Bay. It is high on thrills for tourists and locals alike. Step into one of the 28 fully air-conditioned glass capsules, and be transported on a 30-minute journey of stunning day and night scenes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, you will return to the hotel for an overnight stay&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3678,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334315\",\"Title\":\"SINGAPORE: DUCK TOUR - AFTERNOON TILL SUNSET AT SENTOSA ISLAND\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast in the hotel head for an exciting DUCK Tour, a unique way to experience Singapore.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There is no better way to tour Singapore than catching a ride on the ORIGINAL DUCKtours.More than a tour, it&amp;rsquo;s 60 minutes of full-on thrill where you go on a voyage to discover the past, present and possibly the future. Hear the captivating Singapore story from our well-loved DUCKtainers commentating onboard the craft while you capture snapshots of the city&amp;rsquo;s major monuments.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post lunch discover endless fun and surprises at the Afternoon Till Sunset at Sentosa Tour, from amazing attractions, action packed activities pristine beaches to lush greenery. Some of the activities included in your package are cable car ride (one way), 5 in 1 Madame Tussauds, Sky Helix &amp;amp; Wings of Time. You may add other activities as desired directly at the island (own cost)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer back to your hotel by late evening.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":2162,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":2163,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41008,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41009,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41010,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":6337,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41012,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41013,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41014,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41015,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":41016,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334320\",\"Title\":\"VISIT MUSEUM OF ICE CREAM - GARDENS BY THE BAY \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After a leisurely breakfast, start your day with the visit to one of its kind &amp;quot;Museum of Ice-Cream&amp;quot;.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There is no museum in the world where you can learn about ice cream by basking in a pink Californian beach, reminiscing your childhood in the locally-inspired dragon playground or taking a dip in a pool filled with millions of sprinkles. This is the only place in the world where anything is possible. Get ready to be transported into a world where all your wildest ice cream dreams come true.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is at leisure to relax.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Early evening head for another famous attraction of Singapore - Gardens by the Bay.&amp;nbsp;A national garden and premier horticultural attraction for local and international visitors, Gardens by the Bay is a showpiece of horticulture and garden artistry that presents the plant kingdom in a whole new way, entertaining while educating visitors with plants seldom seen in this part of the world, ranging from species in cool, temperate climates to tropical forests and habitats. Your package includes entrance to 01 Dome and the Supertree.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer back to hotel for overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":37587,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334325\",\"Title\":\"Singapore: Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Spend the fourth day of the tour at leisure&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start the day with a wholesome breakfast at the hotel and then plan the day ahead as per your convenience. Since the day is at leisure, you can either stay at the hotel and relax or choose to go out and enjoy some optional activities like Axe Throwing, River Wonders, Singapore Zoo, Night Safari, Universal Studios, S.E.A&amp;nbsp; Aquarium, Snow City etc.&amp;nbsp; &amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight stay in your Singapore Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334330\",\"Title\":\"Departure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Post breakfast check out and enjoy some last minute shopping at the many malls &amp;amp; street side shops before proceeding to the airport for your onward \\/ homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head to the Jewel Changi Airport and visit the Canopy Park (entrance included), a space to unwind and experience what it means to be called the Best Airport in the World.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Canopy Park, located at the topmost level (L5) of Jewel, welcomes the young and young at heart with an array of exciting play attractions.From mazes to bouncing nets, it&amp;#39;s all fun. Take a stroll along creative garden trails, glide down giant slides or hide in bowls of gentle mist. Spend hours at play, or simply relax at one of many charming diners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After exploring the Canopy Park, head onwards to the respective gate for your flight.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home fond memories..!!!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":37586,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46437\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55165.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54432,\"priceDoubleOcc\":\"55165.00\",\"priceSingleOcc\":74954,\"priceExtraBed\":\"50545.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50545,\"COSTDO\":55165,\"COSTSO\":74954,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52965,\"COSTTO\":52965}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46438\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":57310,\"priceDoubleOcc\":\"57640.00\",\"priceSingleOcc\":85965,\"priceExtraBed\":\"50985.00\",\"priceWithoutBed\":\"39985.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":57640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":39985,\"CEB\":50985,\"COSTDO\":57640,\"COSTSO\":85965,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56650,\"COSTTO\":56650}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46439\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"59400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":59033,\"priceDoubleOcc\":\"59400.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"53625.00\",\"priceWithoutBed\":\"41910.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":59400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41910,\"CEB\":53625,\"COSTDO\":59400,\"COSTSO\":89650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":58300,\"COSTTO\":58300}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46440\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"69850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":69007,\"priceDoubleOcc\":\"69850.00\",\"priceSingleOcc\":106700,\"priceExtraBed\":\"62920.00\",\"priceWithoutBed\":\"46970.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46970,\"CEB\":62920,\"COSTDO\":69850,\"COSTSO\":106700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":67320,\"COSTTO\":67320}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46441\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"71775.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70583,\"priceDoubleOcc\":\"71775.00\",\"priceSingleOcc\":107690,\"priceExtraBed\":\"63030.00\",\"priceWithoutBed\":\"48400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48400,\"CEB\":63030,\"COSTDO\":71775,\"COSTSO\":107690,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":68200,\"COSTTO\":68200}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46437\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"52657.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":51958,\"priceDoubleOcc\":\"52657.50\",\"priceSingleOcc\":71547,\"priceExtraBed\":\"48247.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52657.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48247.5,\"COSTDO\":52657.5,\"COSTSO\":71547,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50557.5,\"COSTTO\":50557.5}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46438\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54705,\"priceDoubleOcc\":\"55020.00\",\"priceSingleOcc\":82057.5,\"priceExtraBed\":\"48667.50\",\"priceWithoutBed\":\"38167.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":38167.5,\"CEB\":48667.5,\"COSTDO\":55020,\"COSTSO\":82057.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54075,\"COSTTO\":54075}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46439\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"56700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":56350,\"priceDoubleOcc\":\"56700.00\",\"priceSingleOcc\":85575,\"priceExtraBed\":\"51187.50\",\"priceWithoutBed\":\"40005.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":40005,\"CEB\":51187.5,\"COSTDO\":56700,\"COSTSO\":85575,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55650,\"COSTTO\":55650}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46440\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"66675.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":65870,\"priceDoubleOcc\":\"66675.00\",\"priceSingleOcc\":101850,\"priceExtraBed\":\"60060.00\",\"priceWithoutBed\":\"44835.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44835,\"CEB\":60060,\"COSTDO\":66675,\"COSTSO\":101850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64260,\"COSTTO\":64260}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46441\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"68512.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":67375,\"priceDoubleOcc\":\"68512.50\",\"priceSingleOcc\":102795,\"priceExtraBed\":\"60165.00\",\"priceWithoutBed\":\"46200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46200,\"CEB\":60165,\"COSTDO\":68512.5,\"COSTSO\":102795,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65100,\"COSTTO\":65100}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 nights accommodation on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in the Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Flyer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon till Sunset at Sentosa (90 Tokens)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gardens by the Bay (01 Dome + Super Tree)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Duck Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Museum of Ice Cream&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Canopy Park at Jewel Changi Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Tourist Visa Processing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable Hotel Taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"334310\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[334310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334315\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[334315],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334320\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[334320],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334325\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[334325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334330\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[334330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',52658,71775,4,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Singapore','190','2023-08-25 15:27:07','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'offbeat-singapore',NULL,NULL,NULL,0),(307,46224,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46224,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/singapore-delights_1672663211\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;From shopping frenzy, delectable culinary delights, awe-inspiring museums, adventurous theme parks, exotic gardens &amp;ndash; Singapore has something for everyone.&lt;br \\/&gt;\\r\\nWith the Singapore Delights Package you get a chance to experience all the must see places on offer in Singapore.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Singapore Delights \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13448\",\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531571,\"Name\":\"Hotel Chancellor\",\"Star\":\"3.00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3011349\",\"Long\":\"103.8421518\",\"Address\":\"28 Cavenagh Rd, Singapore 229635\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;In a glass-fronted building off the Central Expressway, this modern hotel is a 6-minute walk from Somerset subway station, a 13-minute walk from the bustling shops of Orchard Road and 5 km&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;from the waterfront Gardens by the Bay.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual rooms with floor-to-ceiling windows feature free Wi-Fi, flat-screen TVs, and minifridges, plus tea and coffeemaking facilities. Upgraded rooms add rainfall showers.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in a sleek, bi-level cafe overlooking a lush courtyard, which also offers other meals. Other amenities include a striking rooftop lap pool flanked by a wooden deck, plus 5 conference rooms.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531571\\/4539_55424d0f16ceccf0fbed1646f2b69d561672301196.jpeg\",\"AccoAminitiesMask\":\"111111110110111110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":440160,\"Name\":\"V HOTEL LAVENDER\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"70 Jellicoe Road, Singapore, 208767, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 4 star hotel is located in the city centre of Singapore and was established in 2011. It is a short drive away from the Raffles City and the nearest station is Kallang Road. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 888 rooms are equipped with hairdryer, safe, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/640\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":442532,\"Name\":\"PENINSULA EXCELSIOR\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"5 Coleman Street, Singapore, 179805, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 3 star hotel is located in the city centre of Singapore and was established in 1974. It is close to the Clarke Quay and the nearest station is City Hall. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 591 rooms are equipped with minibar, hairdryer, safe and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/280\\/lr\\/01ext.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426045,\"Name\":\"PARKROYAL on Kitchener Road\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"181 Kitchener Road, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"In the heart of Singapore, the PARKROYAL on Kitchener Road hotel (part of Park Royal Hotels &amp; Resorts) is close to the Sri Veeramakaliamman Temple and the Malay Heritage Centre (Istana Kampong Gelam). This hotel built in 1983 is rated for its location and its rooms. The main hotel amenities are coffee shop or caf&Atilde;&copy;, bar &amp; lounge, 24-hour front desk, elevator, free WiFi and multilingual staff. Additional amenities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), facilities for disabled guests, ironing facilities, non-smoking rooms, designated smoking areas, tours &amp; ticket assistance, bridal suite, currency exchange, ironing service, shoeshine, tour desk, trouser press and fax &amp; photocopying. This hotel accepts the following payment types: American Express, Diners Club, JCB International, MasterCard and Visa. Cash not accepted. Pets not allowed. The hotel is recommended for groups of friends and couples.This 4 star hotel is within close proximity of the Haw Par Villa (Tiger Balm Gardens) and the Underwater World. The closest airports to the hotel are Changi and Senai Intl.The hotel occupies a modern high-rise property featuring an angular, decorative facade with some prominent panelling.The hotel has business facilities including business center and multiple small meeting rooms. This hotel provides the following swimming facilities: children&#039;s swimming pool and outdoor swimming pool. Wellness facilities include 24-hour fitness facilities, sauna, spa services on site and steam room.Relax in one of the lovely 532 air conditioned rooms at PARKROYAL on Kitchener Road. The main room amenities are air conditioning, in-room safe and hair dryer. Additional room amenities include bathrobes, hair dryer (on request), slippers, complimentary newspaper, complimentary toiletries, complimentary weekday newspaper, adjoining rooms and daily housekeeping.Eating and drinking facilities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), coffee shop or caf&Atilde;&copy; and bar &amp; lounge. Shopping facilities include gift shops or newsstand.Free parking is possible onsite. The hotel has a 24-hour reception.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/P3K\\/P3K_FRONT.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426094,\"Name\":\"ONE FARRER HOTEL AND SPA\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1 Farrer Park Station Road, Singapore, 217562, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 5 star hotel is located in the city centre of Singapore and was established in 2014. It is close to the Little India and the nearest station is Farrer Park MRT. The Hotel has an outdoor swimming pool and a fitness centre\\/gym. All 243 rooms are equipped with minibar, hairdryer, safe, trouser press, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/515\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Mint Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":3678,\"Title\":\"SINGAPORE FLYER\",\"Description\":\"The Singapore Flyer is a giant Ferris wheel in Singapore. It has 28 air-conditioned capsules, each able to accommodate 28 passengers, and incorporates a three-storey terminal building.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2892988,\"Long\":103.8631368,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SINGAPORE_FLYER_25278_1530614974.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":3687,\"Title\":\"SANDS SKY PARK\",\"Description\":\"Marina Bay Sands SkyPark really offers a taste of the highlife by viewing Singapore from above. It offers a 360-degree panorama, with nothing but a sheet of glass and a few wires between you and the view.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2847443,\"Long\":103.8607121,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SANDS_SKY_PARK_25278_1530614001.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":37430,\"Title\":\"S.E.A Aquarium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":2162,\"Title\":\"Universal Studios Singapore\",\"Description\":\"Universal Studios Singapore  is a theme park located within Resorts World Sentosa on Sentosa Island, Singapore. It was a key component of Genting&amp;#039;s bid for the right to build Singapore&amp;#039;s second integrated resort. On 8 December 2006, the Singapore government announced that the consortium had won the bid. Construction of the theme park and the rest of the resort started on 19 April 2007. It is the second Universal Studios theme park to open in Asia (Japan being the first), and the first in Southeast Asia. The official plans for the park were unveiled to the public when Universal Studios Singapore released a park map to the public on 20 October 2009.Universal Studios Singapore has since attracted more than 2 million visitors in the 9 months from its opening.\\r\\nUniversal Parks &amp;amp; Resorts markets the park as a &amp;quot;one-of-its-kind theme park in Asia&amp;quot; and promises that the park will be the only one of its kind in Southeast Asia for the next 30 years\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.249404,\"Long\":103.830321,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Universal_Studios_Singapore_25278_1503574614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"333248\",\"Title\":\"Singapore: Arrival and Night Safari\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Singapore - The Garden City&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once you reach the Singapore Airport, our representative will heartily greet you and transfer you to your hotel. Upon arrival, you will sign into the hotel and spend the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you will visit one of the kind zoo &amp;ldquo;Night Safari&amp;rdquo;. It is the first nocturnal zoo globally with around 2500 animals from 130 species. It has played an essential role in the conservation of endangered animals. The nocturnal zoo also hosts a number of cultural shows and traditional tribal dance performances, where you can get a glimpse of Singapore&amp;rsquo;s rich traditions. You can witness the animal&amp;rsquo;s natural behavior in the nighttime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, you will return to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333253\",\"Title\":\"Singapore: Half-day City Tour &amp; Singapore Flyer\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Joyful half-day trip to the City&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have breakfast and go for the Singapore Half-day City Tour. This tour will take you to the most famous places around the city like Chinatown, Financial District, Central Business District, Civilian War Memorial, and Civic District. Next, see Suntec City, Marina Bay, and the icon of Singapore - the Merlion Statue.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the Singapore Flyer, which is an observation wheel at the Downtown Core district of Singapore offering panoramic views of the Sea and the Skyline,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer back to hotel after the tour. Rest of the day is at leisure to relax in the comforts of your room OR enjoy shopping at the many malls and street side shops. You may also select one of the many optional sightseeing tours.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in your Singapore Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3678,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333258\",\"Title\":\"Singapore: Visit to Sentosa Island \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;you will explore Sentosa Island which is Singapore&amp;rsquo;s premier island resort getaway. This 500-hectare resort island is home to an exciting array of themed attractions, award-winning spa retreats, and resort accommodations alongside lush rainforests and golden sandy beaches.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your Sentosa package includes one way scenic Cable Car Ride, 5 in 1 Madame Tussauds, Sky Helix, 4D Adventure Land and Wings of Time Show.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After a wonderful day, return to the hotel for an overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333263\",\"Title\":\"Gardens by the Bay and Marina Bay Sands \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today enjoy a leisurely breakfast as you have the first half at leisure to relax. Perhaps you may take an optional tour to Jurong Bird Park OR the Museum of Ice Cream.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Early evening visit the famous Gardens by the Bay which is a nature park spanning 101 hectares in the Central Region of Singapore, adjacent to the Marina Reservoir. The park consists of three waterfront gardens: Bay South Garden, Bay East Garden and Bay Central Garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later head to the iconic Marina Bay Sands as you will visit the Sky Park Observation Deck located on the rooftop of the hotel at 57th Floor. The Sands SkyPark Observation Deck boasts scenic views of the panoramic vistas of Marina Bay and Singapore&amp;rsquo;s world-class cityscape.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to your hotel for overight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3687,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333268\",\"Title\":\"Full Day SEA Aquarium &amp; Universal Studios Tour \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast take an exciting tour to the Resorts World Sentosa.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the &lt;strong&gt;S.E.A. Aquarium&lt;\\/strong&gt; which is one of the world&amp;rsquo;s largest aquariums and home to more than 100,000 marine life representing 1,000 species in more than 45 diverse habitats.&amp;nbsp;See close to 80 threatened species including the manta ray, Napoleon wrasse and a variety of corals that mirror a pristine aquatic environment.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later head to the Universal Studios Singapore&amp;nbsp;where the world of blockbuster films and their iconic characters come to life!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In this wonderful theme park, you can experience the thrills of cutting-edge rides, shows, and attractions based on movies and television shows like Puss In Boots&amp;rsquo; Giant Journey, Battlestar Galactica: HUMAN vs. CYLON&amp;trade;, TRANSFORMERS The Ride: The Ultimate 3D Battle, Jurassic Park Rapids Adventure&amp;trade;, Sesame Street Spaghetti Space Chase and many more.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to your hotel in the evening.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":37430,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2162,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333273\",\"Title\":\"Departure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Post breakfast check out and enjoy some last minute shopping around your hotel before proceeding to the airport for your onward \\/ homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home fond memories..!!!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46224\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"72050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":71317,\"priceDoubleOcc\":\"72050.00\",\"priceSingleOcc\":97130,\"priceExtraBed\":\"59950.00\",\"priceWithoutBed\":\"47850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":47850,\"CEB\":59950,\"COSTDO\":72050,\"COSTSO\":97130,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":69850,\"COSTTO\":69850}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46225\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"74690.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":74250,\"priceDoubleOcc\":\"74690.00\",\"priceSingleOcc\":108240,\"priceExtraBed\":\"62480.00\",\"priceWithoutBed\":\"48510.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":74690,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48510,\"CEB\":62480,\"COSTDO\":74690,\"COSTSO\":108240,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":73370,\"COSTTO\":73370}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46226\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"76450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":76267,\"priceDoubleOcc\":\"76450.00\",\"priceSingleOcc\":112750,\"priceExtraBed\":\"62700.00\",\"priceWithoutBed\":\"50600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":50600,\"CEB\":62700,\"COSTDO\":76450,\"COSTSO\":112750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75900,\"COSTTO\":75900}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46227\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"90200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":89283,\"priceDoubleOcc\":\"90200.00\",\"priceSingleOcc\":135300,\"priceExtraBed\":\"74250.00\",\"priceWithoutBed\":\"57200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":57200,\"CEB\":74250,\"COSTDO\":90200,\"COSTSO\":135300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87450,\"COSTTO\":87450}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46228\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"92400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":90897,\"priceDoubleOcc\":\"92400.00\",\"priceSingleOcc\":138600,\"priceExtraBed\":\"74800.00\",\"priceWithoutBed\":\"58300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":92400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58300,\"CEB\":74800,\"COSTDO\":92400,\"COSTSO\":138600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":87890,\"COSTTO\":87890}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46224\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"68775.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":68075,\"priceDoubleOcc\":\"68775.00\",\"priceSingleOcc\":92715,\"priceExtraBed\":\"57225.00\",\"priceWithoutBed\":\"45675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68775,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":45675,\"CEB\":57225,\"COSTDO\":68775,\"COSTSO\":92715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":66675,\"COSTTO\":66675}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46225\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"71295.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":70875,\"priceDoubleOcc\":\"71295.00\",\"priceSingleOcc\":103320,\"priceExtraBed\":\"59640.00\",\"priceWithoutBed\":\"46305.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":71295,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":46305,\"CEB\":59640,\"COSTDO\":71295,\"COSTSO\":103320,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":70035,\"COSTTO\":70035}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46226\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"72975.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":72800,\"priceDoubleOcc\":\"72975.00\",\"priceSingleOcc\":107625,\"priceExtraBed\":\"59850.00\",\"priceWithoutBed\":\"48300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":72975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":48300,\"CEB\":59850,\"COSTDO\":72975,\"COSTSO\":107625,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":72450,\"COSTTO\":72450}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46227\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"86100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":85225,\"priceDoubleOcc\":\"86100.00\",\"priceSingleOcc\":129150,\"priceExtraBed\":\"70875.00\",\"priceWithoutBed\":\"54600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":86100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54600,\"CEB\":70875,\"COSTDO\":86100,\"COSTSO\":129150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83475,\"COSTTO\":83475}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46228\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"88200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":86765,\"priceDoubleOcc\":\"88200.00\",\"priceSingleOcc\":132300,\"priceExtraBed\":\"71400.00\",\"priceWithoutBed\":\"55650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":88200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55650,\"CEB\":71400,\"COSTDO\":88200,\"COSTSO\":132300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":83895,\"COSTTO\":83895}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 nights accommodation on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast in the hotel (starting from day 02)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable Hotel Taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Tourist Visa Processing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"333248\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[333248],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333253\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[333253],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333258\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[333258],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333263\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[333263],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333268\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[333268],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333273\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[333273],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',68775,92400,5,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Singapore','190','2023-08-25 15:27:25','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'singapore-delights',NULL,NULL,NULL,0),(308,46191,1,5293,0,0,0,'Honeymoon,Family,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":46191,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/singapore-highlights_1672650765\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The story of Singapore is rich with twists, turns and triumphs.&amp;nbsp;Get to know how far Singapore has come through the city&amp;#39;s colourful past with the &amp;quot;Singapore Highlights&amp;quot; package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Explore some of the famous and most visited sightseeing places like Sentosa Island, Night Safari, Gardens by the Bay etc. during your stay in Singapore.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Singapore Highlights\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13448\",\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Activites Tour\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531571,\"Name\":\"Hotel Chancellor\",\"Star\":\"3.00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3011349\",\"Long\":\"103.8421518\",\"Address\":\"28 Cavenagh Rd, Singapore 229635\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"&lt;p&gt;In a glass-fronted building off the Central Expressway, this modern hotel is a 6-minute walk from Somerset subway station, a 13-minute walk from the bustling shops of Orchard Road and 5 km&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;from the waterfront Gardens by the Bay.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual rooms with floor-to-ceiling windows feature free Wi-Fi, flat-screen TVs, and minifridges, plus tea and coffeemaking facilities. Upgraded rooms add rainfall showers.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in a sleek, bi-level cafe overlooking a lush courtyard, which also offers other meals. Other amenities include a striking rooftop lap pool flanked by a wooden deck, plus 5 conference rooms.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531571\\/4539_55424d0f16ceccf0fbed1646f2b69d561672301196.jpeg\",\"AccoAminitiesMask\":\"111111110110111110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":440160,\"Name\":\"V HOTEL LAVENDER\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"70 Jellicoe Road, Singapore, 208767, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 4 star hotel is located in the city centre of Singapore and was established in 2011. It is a short drive away from the Raffles City and the nearest station is Kallang Road. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 888 rooms are equipped with hairdryer, safe, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/640\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":442532,\"Name\":\"PENINSULA EXCELSIOR\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"5 Coleman Street, Singapore, 179805, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 3 star hotel is located in the city centre of Singapore and was established in 1974. It is close to the Clarke Quay and the nearest station is City Hall. The Hotel has a coffee shop, an outdoor swimming pool and a fitness centre\\/gym. All 591 rooms are equipped with minibar, hairdryer, safe and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/280\\/lr\\/01ext.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426045,\"Name\":\"PARKROYAL on Kitchener Road\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"181 Kitchener Road, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"In the heart of Singapore, the PARKROYAL on Kitchener Road hotel (part of Park Royal Hotels &amp; Resorts) is close to the Sri Veeramakaliamman Temple and the Malay Heritage Centre (Istana Kampong Gelam). This hotel built in 1983 is rated for its location and its rooms. The main hotel amenities are coffee shop or caf&Atilde;&copy;, bar &amp; lounge, 24-hour front desk, elevator, free WiFi and multilingual staff. Additional amenities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), facilities for disabled guests, ironing facilities, non-smoking rooms, designated smoking areas, tours &amp; ticket assistance, bridal suite, currency exchange, ironing service, shoeshine, tour desk, trouser press and fax &amp; photocopying. This hotel accepts the following payment types: American Express, Diners Club, JCB International, MasterCard and Visa. Cash not accepted. Pets not allowed. The hotel is recommended for groups of friends and couples.This 4 star hotel is within close proximity of the Haw Par Villa (Tiger Balm Gardens) and the Underwater World. The closest airports to the hotel are Changi and Senai Intl.The hotel occupies a modern high-rise property featuring an angular, decorative facade with some prominent panelling.The hotel has business facilities including business center and multiple small meeting rooms. This hotel provides the following swimming facilities: children&#039;s swimming pool and outdoor swimming pool. Wellness facilities include 24-hour fitness facilities, sauna, spa services on site and steam room.Relax in one of the lovely 532 air conditioned rooms at PARKROYAL on Kitchener Road. The main room amenities are air conditioning, in-room safe and hair dryer. Additional room amenities include bathrobes, hair dryer (on request), slippers, complimentary newspaper, complimentary toiletries, complimentary weekday newspaper, adjoining rooms and daily housekeeping.Eating and drinking facilities include restaurant (&Atilde;&nbsp; la carte), restaurant (buffet), coffee shop or caf&Atilde;&copy; and bar &amp; lounge. Shopping facilities include gift shops or newsstand.Free parking is possible onsite. The hotel has a 24-hour reception.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/P3K\\/P3K_FRONT.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426094,\"Name\":\"ONE FARRER HOTEL AND SPA\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1 Farrer Park Station Road, Singapore, 217562, Singapore, Singapore, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"This 5 star hotel is located in the city centre of Singapore and was established in 2014. It is close to the Little India and the nearest station is Farrer Park MRT. The Hotel has an outdoor swimming pool and a fitness centre\\/gym. All 243 rooms are equipped with minibar, hairdryer, safe, trouser press, ironing set and air conditioning.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/SG\\/18001\\/515\\/lr\\/ex.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Mint Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":13448,\"SupplierName\":\"Tour East Singapore (1996) Pte Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"333113\",\"Title\":\"Singapore: Arrival and Night Safari\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Singapore - The Garden City&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once you reach the Singapore Airport, our representative will heartily greet you and transfer you to your hotel. Upon arrival, you will sign into the hotel and spend the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you will visit one of the kind zoo &amp;ldquo;Night Safari&amp;rdquo;. It is the first nocturnal zoo globally with around 2500 animals from 130 species. It has played an essential role in the conservation of endangered animals. The nocturnal zoo also hosts a number of cultural shows and traditional tribal dance performances, where you can get a glimpse of Singapore&amp;rsquo;s rich traditions. You can witness the animal&amp;rsquo;s natural behaviour in the nighttime.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, you will return to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333118\",\"Title\":\"Singapore: Half-day City Tour &amp; Gardens by the Bay\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Have breakfast and go for the Singapore Half-day City Tour. This tour will take you to the most famous monuments in the city like Art Museum, Financial District, Central Business District, Civilian War Memorial, and Civic District. Next, see Suntec City, Marina Bay, and the icon of Singapore - the Merlion Statue. At the end of the half-day city tour indulge in shopping at Plaza Singapura.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nEarly evening visit Gardens by the Bay, a nature park spanning 101 hectares in the Central Region of Singapore, adjacent to the Marina Reservoir. The park consists of three waterfront gardens: Bay South Garden, Bay East Garden and Bay Central Garden.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333123\",\"Title\":\"Singapore: Visit to Sentosa Island \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;you will explore Sentosa Island which is Singapore&amp;rsquo;s premier island resort getaway. This 500-hectare resort island is home to an exciting array of themed attractions, award-winning spa retreats, and resort accommodations alongside lush rainforests and golden sandy beaches.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your Sentosa package includes one way scenic Cable Car Ride, 5 in 1 Madame Tussauds, Sky Helix and Wings of Time Show.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After a wonderful day, return to the hotel for an overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":440160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":442532,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":426045,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Mint Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"333128\",\"Title\":\"Departure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast check out and enjoy some last minute shopping at the many malls &amp;amp; street side shops before proceeding to the airport for your onward \\/ homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home fond memories..!!!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46191\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43945.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43633,\"priceDoubleOcc\":\"43945.00\",\"priceSingleOcc\":57695,\"priceExtraBed\":\"37950.00\",\"priceWithoutBed\":\"27500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27500,\"CEB\":37950,\"COSTDO\":43945,\"COSTSO\":57695,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43010,\"COSTTO\":43010}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46192\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"45650.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":45283,\"priceDoubleOcc\":\"45650.00\",\"priceSingleOcc\":67100,\"priceExtraBed\":\"39160.00\",\"priceWithoutBed\":\"29150.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29150,\"CEB\":39160,\"COSTDO\":45650,\"COSTSO\":67100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44550,\"COSTTO\":44550}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46193\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"47080.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":46603,\"priceDoubleOcc\":\"47080.00\",\"priceSingleOcc\":69630,\"priceExtraBed\":\"40480.00\",\"priceWithoutBed\":\"30085.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":47080,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30085,\"CEB\":40480,\"COSTDO\":47080,\"COSTSO\":69630,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":45650,\"COSTTO\":45650}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46194\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54945.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":54597,\"priceDoubleOcc\":\"54945.00\",\"priceSingleOcc\":81895,\"priceExtraBed\":\"47850.00\",\"priceWithoutBed\":\"34100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34100,\"CEB\":47850,\"COSTDO\":54945,\"COSTSO\":81895,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":53900,\"COSTTO\":53900}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46195\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"56650.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":55183,\"priceDoubleOcc\":\"56650.00\",\"priceSingleOcc\":83600,\"priceExtraBed\":\"48950.00\",\"priceWithoutBed\":\"34650.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":56650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34650,\"CEB\":48950,\"COSTDO\":56650,\"COSTSO\":83600,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":52250,\"COSTTO\":52250}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46191\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41947.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":41650,\"priceDoubleOcc\":\"41947.50\",\"priceSingleOcc\":55072.5,\"priceExtraBed\":\"36225.00\",\"priceWithoutBed\":\"26250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41947.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26250,\"CEB\":36225,\"COSTDO\":41947.5,\"COSTSO\":55072.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":41055,\"COSTTO\":41055}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46192\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43575.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43225,\"priceDoubleOcc\":\"43575.00\",\"priceSingleOcc\":64050,\"priceExtraBed\":\"37380.00\",\"priceWithoutBed\":\"27825.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27825,\"CEB\":37380,\"COSTDO\":43575,\"COSTSO\":64050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42525,\"COSTTO\":42525}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46193\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44940.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44485,\"priceDoubleOcc\":\"44940.00\",\"priceSingleOcc\":66465,\"priceExtraBed\":\"38640.00\",\"priceWithoutBed\":\"28717.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44940,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28717.5,\"CEB\":38640,\"COSTDO\":44940,\"COSTSO\":66465,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43575,\"COSTTO\":43575}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46194\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"52447.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52115,\"priceDoubleOcc\":\"52447.50\",\"priceSingleOcc\":78172.5,\"priceExtraBed\":\"45675.00\",\"priceWithoutBed\":\"32550.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32550,\"CEB\":45675,\"COSTDO\":52447.5,\"COSTSO\":78172.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":51450,\"COSTTO\":51450}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46195\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54075.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875},{\"From\":\"2023-04-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":52675,\"priceDoubleOcc\":\"54075.00\",\"priceSingleOcc\":79800,\"priceExtraBed\":\"46725.00\",\"priceWithoutBed\":\"33075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":33075,\"CEB\":46725,\"COSTDO\":54075,\"COSTSO\":79800,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49875,\"COSTTO\":49875}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 nights accommodation on twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast in the Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable Hotel Taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore Tourist Visa Processing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"333113\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[333113],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333118\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[333118],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333123\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[333123],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"333128\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[333128],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',41948,56650,3,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Singapore','190','2023-08-25 15:27:30','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'singapore-highlights',NULL,NULL,NULL,0),(309,46073,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46073,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/magical-mauritius_1672395742\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Mauritius is the perfect destination for a romantic getaway or a family holiday with its idyllic beaches, wide array of sightseeings, leisure and water sports activities, hotels appealing to romance and stunning sceneries. Whether you are on holidays with your loved ones or on your honeymoon, your stay in Mauritius promises to be unforgettable.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Magical Mauritius\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13483\",\"SupplierName\":\"SILVER WINGS TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Airport Transfers,Sightseeing,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531744,\"Name\":\"Tarisa Resort and Spa Mauritius\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.020779\",\"Long\":\"57.555544\",\"Address\":\"XHH4+M6M, B36, Grand Baie, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Across the street from white-sand Mont Choisy Beach on the Indian Ocean, this relaxed resort surrounded by palm trees is 6 km from the Mauritius Aquarium and 5 km from bustling Grand Baie&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Beach.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual, colorful rooms offer flat-screen TVs, minifridges and safes, plus tea and coffeemaking facilities. All include balconies or terraces. Upgraded rooms add ocean views. Wi-Fi is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere&amp;#39;s an outdoor pool and a hot tub, as well as elegant Indian restaurant, a casual eatery and a poolside bar. Other amenities include a fitness center, a spa, a sauna and a hammam, plus tennis and mini-golf. Breakfast is available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531744\\/4539_2098a53684f8adf39b6db7a2c798bed51672321132.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Sea Facing Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":531772,\"Name\":\"Anelia Hotel And Spa\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.2724418\",\"Long\":\"57.3712882\",\"Address\":\"P9HC+2GF, Coastal Rd, Flic en Flac, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Set along a beach on the Indian Ocean, this polished resort is 16 km from scenic views at the Corps de Garde mountain peak and 46 km from Sir Seewoosagur Ramgoolam International Airport.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAiry, refined rooms feature terraces or balconies, Wi-Fi, and flat-screen TVs. Some have beds suspended from the ceiling and\\/or direct beach access. The 1- to 3-bedroom villas come with kitchens and living rooms. In-room dining is offered.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere 5 restaurants and bars, 2 outdoor pools and 2 kids&amp;#39; pools, as well as a gym, a tennis court, and a lush garden with a tranquil spa. Water sports and yoga classes are available, as is breakfast.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531772\\/4539_1feef51de7997f5a5332d182ace096061672321531.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":426525,\"Name\":\"Sugar Beach Mauritius\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.308446\",\"Long\":\"57.366942\",\"Address\":\"Coastal Road, Wolmar N\\/A  FLIC EN FLAC  MU, \"},\"Images\":[],\"CityId\":17162,\"Brief\":\"The hotel is located on the leeward west coast of Mauritius. It is well placed for the nearby commercial centres of Port Louis and Curepipe, and the marlin fishing clubs of Black River. This beach hotel is the perfect place to relax, with its beautiful gardens and its 258 individually air-conditioned guestrooms. Visitors are welcome to use the many facilities on offer, including a hairdressing salon, games room, kids&#039; club and nightclub. The hotel also features conference facilities and WLAN Internet access. Many land and water based sports are available, as well as other recreational activities, such as volley ball and table tennis. The hotel&#039;s restaurant offers a feast of Mauritian, Mediterranean and international specialties.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/12\\/125844\\/125844a_hb_a_007.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":531745,\"Name\":\"Ambre Mauritius - Adults Only\",\"Star\":\"4.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.2052743\",\"Long\":\"57.7864649\",\"Address\":\"Coastal Road Palmar, Belle Mare 41604, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Set beachfront on the Indian Ocean, this refined all-inclusive spa resort is 16 km from Ile aux Cerfs Golf Club.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nBright rooms feature free Wi-Fi, flat-screen TVs, minifridges and balconies. All have ocean or garden views. Beachfront suites add living rooms and soaking tubs. Room service is offered 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nThere are 3 upscale restaurants offering Italian, Mediterranean and international cuisine; 1 is beachfront. Other amenities include 2 bars (1 next to an outdoor pool), a spa, a gym and a nightclub. Live entertainment and water sports are offered. Guests age 16 and older are welcome.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531745\\/4539_d763ddff965d7eb750c0a16eb8cddf111672321272.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":531773,\"Name\":\"Long Beach Mauritius\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Amid tropical gardens along the Belle Mare beach, this upscale resort is 20 km from &Icirc;le aux Cerfs, an island featuring the 18-hole Ile aux Cerfs Golf Club.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nFeaturing sitting areas and balconies or terraces, the chic rooms offer free Wi-Fi, smart TVs, minibars, and tea and coffeemakers. Some have ocean views, or have direct beach or pool access. Family rooms add pull-out sofas, while suites provide living rooms.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast and a golf course shuttle are complimentary. Amenities consist of 7 chic dining and drinking venues, including a beachfront restaurant, plus a swanky spa and 3 pools (1 has a swim-up bar). There&amp;#39;s also a gym and a dive center.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531773\\/4539_b0757060e5297dd5952cd58c44f1c62b1672321696.jpg\",\"AccoAminitiesMask\":\"111101100011101001010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Junior Suite\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54682,\"Title\":\"Seaplane Experience\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54683,\"Title\":\"Sunset Cruise (Wednesday Only)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54687,\"Title\":\"Dolswin\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54688,\"Title\":\"Dolswin\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54689,\"Title\":\"Dolswin\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54690,\"Title\":\"Dolswin \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":54691,\"Title\":\"Special Package of Ile Aux cerfs\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":47566,\"Title\":\"Casela Nature and Leisure Park\",\"Description\":\"&lt;p class=&quot;MsoNormal&quot; style=&quot;background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial&quot;&gt;&lt;span style=&quot;font-size:10.5pt\\r\\nline-height:107%font-family:&quot;Arial&quot;,sans-serifmso-fareast-font-family:&quot;Times New Roman&quot;\\r\\ncolor:black&quot;&gt;Casela Nature &amp; Leisure Park, Cascavelle, Mauritius&lt;o:p&gt;&lt;\\/o:p&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;\\r\\n\\r\\n&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt line-height: normal background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial&quot;&gt;&lt;span style=&quot;font-size:10.5ptfont-family:&quot;Arial&quot;,sans-serif\\r\\nmso-fareast-font-family:&quot;Times New Roman&quot;color:black&quot;&gt;The Casela Nature and\\r\\nLeisure Park is situated in the western piece of Mauritius between Flic en Flac\\r\\nand Tamarin. The recreation center covers a zone of around 14 ha. In the\\r\\nrecreation center you can see around 1500 flying creatures of more than 150\\r\\nspecies and an assortment of creatures, for example, the great goliath turtles\\r\\nand different warm blooded animals, for example, lions and monkeys. The\\r\\nrecreation center is set up with an assortment of excellent intriguing plants\\r\\nand blossoms. In addition on the grounds of the recreation center are found the\\r\\ntasty eatery Le Mirador and a wonderful post point with dazzling perspectives\\r\\nover the west drift. Guided visits through the recreation center are not\\r\\noffered but rather everybody gets an aide leaflet at the passage in which are\\r\\ngiven quickly portrayals of the individual creatures. Term: You can spend one\\r\\nhour in the recreation center and a few hours in the event that you take as\\r\\nmuch time as necessary to enjoy it.&lt;br&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.5ptline-height:107%font-family:\\r\\n&quot;Arial&quot;,sans-serifmso-fareast-font-family:&quot;Times New Roman&quot;color:black&quot;&gt;TIMING&nbsp;-\\r\\n09:00 AM - 06:00 PM&lt;o:p&gt;&lt;\\/o:p&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:normal&quot;&gt;&lt;span style=&quot;font-size:10.5pt\\r\\nfont-family:&quot;Arial&quot;,sans-serifmso-fareast-font-family:&quot;Times New Roman&quot;\\r\\ncolor:black&quot;&gt;ADDRESS&nbsp;- Henrietta, Vacoas-Phoenix, Mauritius&lt;o:p&gt;&lt;\\/o:p&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt line-height: normal background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial&quot;&gt;\\r\\n\\r\\n\\r\\n\\r\\n&lt;span style=&quot;font-size:10.5ptfont-family:&quot;Arial&quot;,sans-serif\\r\\nmso-fareast-font-family:&quot;Times New Roman&quot;color:black&quot;&gt;&lt;o:p&gt;&lt;\\/o:p&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;o:p&gt;&nbsp;&lt;\\/o:p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/82664\\/sightseeing\\/4539_1686652114.jpg\",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"332520\",\"Title\":\"ARRIVE MAURITIUS - TRANSFER TO HOTEL \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;As you arrive at the Sir Seewoosagur Ramgoolam International Airport for your holiday in Mauritius, clear immigration and baggage collection followed by meet and assist by our airport representative. Get transferred to your resort and complete the check-in formalities.&amp;nbsp;&lt;br \\/&gt;\\r\\nYour evening is at leisure and you can utilize it to spend quality time with your family. Head to the nearby beaches or splurge at the local markets.&lt;br \\/&gt;\\r\\nCome back to the resort for a delicious dinner and cozy stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332525\",\"Title\":\"MAURITIUS - NORTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After a sumptuous breakfast gear up for a full-day excursion trip to the North Island of Mauritius.&lt;br \\/&gt;\\r\\nVisit major tourist attractions such as the Fort Adelaide - Citadel, Caudan Waterfront, AapravasiGhat Museum, Model ship factory, and shopping at Floreal Square is also a part of your day&amp;rsquo;s itinerary.&amp;nbsp;Home to casinos, luxury shops, and fine dining restaurants, Le Caudan is the place where everyone can truly have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return to the resort for a delicious dinner and have a good night&amp;rsquo;s sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54682,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54683,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54687,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54688,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54689,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54690,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54691,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332530\",\"Title\":\"MAURITIUS -ILE AUX CERF TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After a delicious breakfast in the resort, you will be transferred to the beautiful Ile Aux Cerfs Island. The most famous island in Mauritius, your holiday in Mauritius would be incomplete without a trip to this scintillating island.&lt;br \\/&gt;\\r\\nSoak up the sun and indulge in thrilling water sports activities (own cost). Choose from a range of adventurous water sports such as parasailing, snorkeling, underwater sea walk and speed boat rides and have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to your resort for a delectable dinner and warm stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332535\",\"Title\":\"DAY AT LEISURE TO ENJOY WATER SPORTS ACTIVITIES \\/ OPTIONAL SIGHTSEEING (OWN COST)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After a hearty breakfast, you have the day at leisure to relax in the comforts of your room or perhaps explore the beautiful beaches of Mauritius and enjoy some water sports activities or some optional sightseeing tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and overnight stay in your Mauritius resort.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332540\",\"Title\":\"MAURITIUS -SOUTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Start your day with a scrumptious breakfast at your hotel, enjoying a variety of local and international dishes to fuel up for an exciting day of exploration. After breakfast, embark on your South Island tour by heading to Ganga Talao, also known as Grand Bassin. This natural crater lake is considered one of the most sacred Hindu sites in Mauritius. Surrounded by lush forests and rolling hills, Ganga Talao is a serene place of worship, featuring a large statue of Lord Shiva and various shrines dedicated to other deities. Take in the tranquil atmosphere and enjoy the scenic beauty of the area. Next, proceed to Trou aux Cerfs, a dormant volcanic crater situated in the town of Curepipe. From its vantage point, you&amp;#39;ll be treated to breathtaking panoramic views of the surrounding landscape, including the towns and sugarcane fields that stretch out below. The lush greenery and cool breeze make this a wonderful spot for taking photos and appreciating the geological wonders of the island. Your journey continues with a visit to the Valley of Colours Nature Park. This unique attraction showcases the vibrant biodiversity of Mauritius through its diverse flora and fauna. Enjoy a guided tour through the park, where you&amp;#39;ll encounter exotic plants, endemic bird species, and even a variety of reptiles. The park&amp;#39;s highlight is its colorful earth formations, formed by volcanic activity and mineral deposits. Witness the natural hues of red, yellow, and purple in the Earth&amp;#39;s layers, creating a stunning visual spectacle. After the south island tour&amp;nbsp;relax as you&amp;#39;re transported back to your hotel. Take some time to unwind, perhaps by the pool or on the beach, reflecting on the incredible experiences of the day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Delicious dinner at your resort and have a good night&amp;rsquo;s sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332545\",\"Title\":\"VISIT TO CASELA PARK + INTERACTION WITH CHEETAH* (15 MINUTES) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy breakfast in the resort followed by an exciting day trip to Casela Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Casela is one of the most popular leisure and attraction parks in Mauritius offering a variety of fun and thrilling activities to individuals, families and corporates.&amp;nbsp;The park spans over 350 hectares and is divided into 5 zones, each with its own unique characteristic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your Casela Park entrance includes viewing of giraffes, pygmy hippos, camels, and llamas, a Petting Farm, a Children&amp;#39;s playground, a walk thru the aviary, a safari photo, a big cat viewing, and giraffe viewing, a Tortoise Pen + Bus Safari Tour + 1 Ride at Tulawaka Gold Coaster + Interaction with Cheetah for 15 minutes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;* Interaction with Cheetah is allowed only for adults with a minimum 5 ft height. Interaction with cheetah is not allowed for children.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to you resort for Dinner and Overnight Stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Sea Facing Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47566,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332550\",\"Title\":\"DEPARTURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy a healthy breakfast before checking out from the resort as your Magical Mauritius package ends today. Get transferred to the airport and board your homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories ...!!!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46073\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"52470.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"32615.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":32615,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"29645.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":29645,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"32615.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":32615,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"32615.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":32615,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"32615.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":32615,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":51792,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"32615.00\",\"priceWithoutBed\":\"26675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26675,\"CEB\":32615,\"COSTDO\":52470,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50435,\"COSTTO\":50435},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":45700,\"priceDoubleOcc\":\"46260.50\",\"priceSingleOcc\":66550,\"priceExtraBed\":\"26251.50\",\"priceWithoutBed\":\"15873.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":46260.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15873,\"CEB\":26251.5,\"COSTDO\":46260.5,\"COSTSO\":66550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44577.5,\"COSTTO\":44577.5}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46074\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"61820.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":85085,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37125,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37125,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37125,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37125,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":60188,\"priceDoubleOcc\":\"61820.00\",\"priceSingleOcc\":101255,\"priceExtraBed\":\"41965.00\",\"priceWithoutBed\":\"37125.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":61820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":37125,\"CEB\":41965,\"COSTDO\":61820,\"COSTSO\":101255,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":56925,\"COSTTO\":56925},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"55797.50\",\"priceSingleOcc\":89551,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55797.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":55797.5,\"COSTSO\":89551,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46075\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"83864.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":81723,\"priceDoubleOcc\":\"83864.00\",\"priceSingleOcc\":145849,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83864,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83864,\"COSTSO\":145849,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":77440,\"COSTTO\":77440},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":65148,\"priceDoubleOcc\":\"67017.50\",\"priceSingleOcc\":125455,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67017.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":67017.5,\"COSTSO\":125455,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61407.5,\"COSTTO\":61407.5}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46076\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"97625.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":95498,\"priceDoubleOcc\":\"97625.00\",\"priceSingleOcc\":153560,\"priceExtraBed\":\"46392.50\",\"priceWithoutBed\":\"16555.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":97625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16555,\"CEB\":46392.5,\"COSTDO\":97625,\"COSTSO\":153560,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":91245,\"COSTTO\":91245},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":68514,\"priceDoubleOcc\":\"69822.50\",\"priceSingleOcc\":129943,\"priceExtraBed\":\"39154.50\",\"priceWithoutBed\":\"8299.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69822.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8299.5,\"CEB\":39154.5,\"COSTDO\":69822.5,\"COSTSO\":129943,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":65895.5,\"COSTTO\":65895.5}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46077\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"121385.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":119044,\"priceDoubleOcc\":\"121385.00\",\"priceSingleOcc\":198880,\"priceExtraBed\":\"48620.00\",\"priceWithoutBed\":\"17325.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121385,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17325,\"CEB\":48620,\"COSTDO\":121385,\"COSTSO\":198880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":114361.5,\"COSTTO\":114361.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":88523,\"priceDoubleOcc\":\"90392.50\",\"priceSingleOcc\":176880,\"priceExtraBed\":\"38780.50\",\"priceWithoutBed\":\"6242.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":90392.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6242.5,\"CEB\":38780.5,\"COSTDO\":90392.5,\"COSTSO\":176880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":84782.5,\"COSTTO\":84782.5}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"46073\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"51039.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":31725.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":28836.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":31725.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":31725.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":31725.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":50379,\"priceDoubleOcc\":\"51039.00\",\"priceSingleOcc\":75435,\"priceExtraBed\":\"31725.50\",\"priceWithoutBed\":\"25947.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51039,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25947.5,\"CEB\":31725.5,\"COSTDO\":51039,\"COSTSO\":75435,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49059.5,\"COSTTO\":49059.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":44453,\"priceDoubleOcc\":\"44998.85\",\"priceSingleOcc\":64735,\"priceExtraBed\":\"25535.55\",\"priceWithoutBed\":\"15440.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44998.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15440.1,\"CEB\":25535.55,\"COSTDO\":44998.85,\"COSTSO\":64735,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43361.75,\"COSTTO\":43361.75}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46074\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"60134.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"82764.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":82764.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"36112.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36112.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"36112.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36112.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"36112.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36112.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"36112.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36112.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":58547,\"priceDoubleOcc\":\"60134.00\",\"priceSingleOcc\":98493.5,\"priceExtraBed\":\"40820.50\",\"priceWithoutBed\":\"36112.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60134,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36112.5,\"CEB\":40820.5,\"COSTDO\":60134,\"COSTSO\":98493.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":55372.5,\"COSTTO\":55372.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":null,\"priceDoubleOcc\":\"54275.75\",\"priceSingleOcc\":87108.7,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54275.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":54275.75,\"COSTSO\":87108.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46075\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"81576.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":79494,\"priceDoubleOcc\":\"81576.80\",\"priceSingleOcc\":141871.3,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":81576.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":81576.8,\"COSTSO\":141871.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75328,\"COSTTO\":75328},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":63371,\"priceDoubleOcc\":\"65189.75\",\"priceSingleOcc\":122033.5,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":65189.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":null,\"COSTDO\":65189.75,\"COSTSO\":122033.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":59732.75,\"COSTTO\":59732.75}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"46076\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"94962.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":92894,\"priceDoubleOcc\":\"94962.50\",\"priceSingleOcc\":149372,\"priceExtraBed\":\"45127.25\",\"priceWithoutBed\":\"16103.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16103.5,\"CEB\":45127.25,\"COSTDO\":94962.5,\"COSTSO\":149372,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":88756.5,\"COSTTO\":88756.5},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66645,\"priceDoubleOcc\":\"67918.25\",\"priceSingleOcc\":126399.1,\"priceExtraBed\":\"38086.65\",\"priceWithoutBed\":\"8073.15\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67918.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8073.15,\"CEB\":38086.65,\"COSTDO\":67918.25,\"COSTSO\":126399.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":64098.35,\"COSTTO\":64098.35}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"46077\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"118074.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-04-01\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":115797,\"priceDoubleOcc\":\"118074.50\",\"priceSingleOcc\":193456,\"priceExtraBed\":\"47294.00\",\"priceWithoutBed\":\"16852.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":118074.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16852.5,\"CEB\":47294,\"COSTDO\":118074.5,\"COSTSO\":193456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":111242.55,\"COSTTO\":111242.55},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25},{\"From\":\"2023-10-01\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":86108,\"priceDoubleOcc\":\"87927.25\",\"priceSingleOcc\":172056,\"priceExtraBed\":\"37722.85\",\"priceWithoutBed\":\"6072.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":87927.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6072.25,\"CEB\":37722.85,\"COSTDO\":87927.25,\"COSTSO\":172056,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":82470.25,\"COSTTO\":82470.25}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mauritius Visa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 nights accommodation on a twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast and Dinner in the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;North Island Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;South Island Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ile Aux Cerfs Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Casela Park with Cheetah Interaction* (15 minutes).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"332520\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[332520],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332525\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332525],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332530\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[332530],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332535\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[332535],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332540\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[332540],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332545\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[332545],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332550\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[332550],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',44999,121385,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Mauritius','139','2023-09-07 13:17:06','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'magical-mauritius',NULL,NULL,NULL,0),(310,46039,1,5293,1,0,0,'Honeymoon,Adventure,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46039,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/mauritian-highlights_1672316033\",\"BookingValidUntill\":\"2023-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Mauritius, an Indian Ocean island nation, is known for its beaches, lagoons and reefs.&amp;nbsp;The mountainous interior includes Black River Gorges National Park, with rainforests, waterfalls,&amp;nbsp;&lt;br \\/&gt;\\r\\nhiking trails and wildlife like the flying fox. Capital Port Louis has sites such as the Champs de Mars horse track,&amp;nbsp;Eureka plantation house and 18th-century Sir Seewoosagur Ramgoolam Botanical Gardens.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Mauritian Highlights\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"13483\",\"SupplierName\":\"SILVER WINGS TRAVELS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Welcome Drink,Airport Transfers,Sightseeing,Travel Insurance\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":531744,\"Name\":\"Tarisa Resort and Spa Mauritius\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.020779\",\"Long\":\"57.555544\",\"Address\":\"XHH4+M6M, B36, Grand Baie, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Across the street from white-sand Mont Choisy Beach on the Indian Ocean, this relaxed resort surrounded by palm trees is 6 km from the Mauritius Aquarium and 5 km from bustling Grand Baie&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Beach.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nCasual, colorful rooms offer flat-screen TVs, minifridges and safes, plus tea and coffeemaking facilities. All include balconies or terraces. Upgraded rooms add ocean views. Wi-Fi is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere&amp;#39;s an outdoor pool and a hot tub, as well as elegant Indian restaurant, a casual eatery and a poolside bar. Other amenities include a fitness center, a spa, a sauna and a hammam, plus tennis and mini-golf. Breakfast is available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531744\\/4539_2098a53684f8adf39b6db7a2c798bed51672321132.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"SUPERIOR SEA FACING ROOM\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":531772,\"Name\":\"Anelia Hotel And Spa\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.2724418\",\"Long\":\"57.3712882\",\"Address\":\"P9HC+2GF, Coastal Rd, Flic en Flac, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Set along a beach on the Indian Ocean, this polished resort is 16 km from scenic views at the Corps de Garde mountain peak and 46 km from Sir Seewoosagur Ramgoolam International Airport.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAiry, refined rooms feature terraces or balconies, Wi-Fi, and flat-screen TVs. Some have beds suspended from the ceiling and\\/or direct beach access. The 1- to 3-bedroom villas come with kitchens and living rooms. In-room dining is offered.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere 5 restaurants and bars, 2 outdoor pools and 2 kids&amp;#39; pools, as well as a gym, a tennis court, and a lush garden with a tranquil spa. Water sports and yoga classes are available, as is breakfast.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531772\\/4539_1feef51de7997f5a5332d182ace096061672321531.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":531745,\"Name\":\"Ambre Mauritius - Adults Only\",\"Star\":\"4.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.2052743\",\"Long\":\"57.7864649\",\"Address\":\"Coastal Road Palmar, Belle Mare 41604, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Set beachfront on the Indian Ocean, this refined all-inclusive spa resort is 16 km from Ile aux Cerfs Golf Club.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nBright rooms feature free Wi-Fi, flat-screen TVs, minifridges and balconies. All have ocean or garden views. Beachfront suites add living rooms and soaking tubs. Room service is offered 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nThere are 3 upscale restaurants offering Italian, Mediterranean and international cuisine; 1 is beachfront. Other amenities include 2 bars (1 next to an outdoor pool), a spa, a gym and a nightclub. Live entertainment and water sports are offered. Guests age 16 and older are welcome.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531745\\/4539_d763ddff965d7eb750c0a16eb8cddf111672321272.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View Room\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":531773,\"Name\":\"Long Beach Mauritius\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"&lt;p&gt;Amid tropical gardens along the Belle Mare beach, this upscale resort is 20 km from &Icirc;le aux Cerfs, an island featuring the 18-hole Ile aux Cerfs Golf Club.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nFeaturing sitting areas and balconies or terraces, the chic rooms offer free Wi-Fi, smart TVs, minibars, and tea and coffeemakers. Some have ocean views, or have direct beach or pool access. Family rooms add pull-out sofas, while suites provide living rooms.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast and a golf course shuttle are complimentary. Amenities consist of 7 chic dining and drinking venues, including a beachfront restaurant, plus a swanky spa and 3 pools (1 has a swim-up bar). There&amp;#39;s also a gym and a dive center.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_531773\\/4539_b0757060e5297dd5952cd58c44f1c62b1672321696.jpg\",\"AccoAminitiesMask\":\"111101100011101001010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Junior Suite\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":426525,\"Name\":\"Sugar Beach Mauritius\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.308446\",\"Long\":\"57.366942\",\"Address\":\"Coastal Road, Wolmar N\\/A  FLIC EN FLAC  MU, \"},\"Images\":[],\"CityId\":17162,\"Brief\":\"The hotel is located on the leeward west coast of Mauritius. It is well placed for the nearby commercial centres of Port Louis and Curepipe, and the marlin fishing clubs of Black River. This beach hotel is the perfect place to relax, with its beautiful gardens and its 258 individually air-conditioned guestrooms. Visitors are welcome to use the many facilities on offer, including a hairdressing salon, games room, kids&#039; club and nightclub. The hotel also features conference facilities and WLAN Internet access. Many land and water based sports are available, as well as other recreational activities, such as volley ball and table tennis. The hotel&#039;s restaurant offers a feast of Mauritian, Mediterranean and international specialties.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/12\\/125844\\/125844a_hb_a_007.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":13483,\"SupplierName\":\"SILVER WINGS TRAVELS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"332330\",\"Title\":\"ARRIVE MAURITIUS - TRANSFER TO HOTEL \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;As you arrive at the Sir Seewoosagur Ramgoolam International Airport for your holiday in Mauritius, clear immigration and baggage collection followed by meet and assist by our airport representative. Get transferred to your resort and complete the check-in formalities.&amp;nbsp;&lt;br \\/&gt;\\r\\nYour evening is at leisure and you can utilize it to spend quality time with your family. Head to the nearby beaches or splurge at the local markets.&lt;br \\/&gt;\\r\\nCome back to the resort for a delicious dinner and cozy stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"SUPERIOR SEA FACING ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332335\",\"Title\":\"MAURITIUS - NORTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After a sumptuous breakfast gear up for a full day excursion trip to the North Island of Mauritius.&lt;br \\/&gt;\\r\\nVisit major tourist attractions such as the Place D&amp;rsquo;Armes, reminiscent of the colonial French era and the Champ de Mars Racecourse.&amp;nbsp;Le Caudan Waterfront, which is a popular commercial hub in Port Louis is also a part of your day&amp;rsquo;s itinerary.&amp;nbsp;Home to casinos, luxury shops, and fine dine restaurants, Le Caudan is the place where everyone can truly have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Return to the resort for a delicious dinner and have a good night&amp;rsquo;s sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"SUPERIOR SEA FACING ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332340\",\"Title\":\"MAURITIUS -ILE AUX CERF TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After a delicious breakfast in the resort, you will be transferred to the beautiful Ile Aux Cerfs Island. The most famous island in Mauritius, your holiday in Mauritius would be incomplete without a trip to this scintillating island.&lt;br \\/&gt;\\r\\nSoak up the sun and indulge in thrilling water sports activities (own cost). Choose from a range of adventurous water sports such as parasailing, snorkeling, underwater sea walk and speed boat rides and have a wonderful time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Head back to your resort for a delectable dinner and warm stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"SUPERIOR SEA FACING ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332345\",\"Title\":\"MAURITIUS -SOUTH ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Begin your day with a delicious breakfast followed by South Island Tour of Mauritius.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Model Ship Factory, Duty-Free Shop - Adamas, Stop at Trou aux Cerfs Volcanic Crater (Viewpoint) at Curepipe with its 7 coloured earth, Chamarel Water falls followed by visit to the Sacred Lake of Grand Bassin Ganga Talao &amp;amp; Shivji Temple.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer back to the hotel for dinner and overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":531744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"SUPERIOR SEA FACING ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":531772,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":531745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":531773,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Junior Suite\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":426525,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"Deluxe Sea View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"332350\",\"Title\":\"DEPARTURE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy a healthy breakfast before checking out from the resort as your Mauritian Highlights package ends today. Get transferred to the airport and board your homebound flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back home with fond memories ...!!!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS (refundable).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test) unless mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at monuments and sightseeing spots \\/ water sports activities .&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights accommodation on twin \\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and sightseeing as per the itinerary on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymooner Complimentaries as per resort policy&amp;nbsp;&lt;em&gt;(if applicable)&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"332330\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[332330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332335\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[332335],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332340\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[332340],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332345\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[332345],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"332350\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[332350],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',0,0,4,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-07-31 00:00:00','2023-07-31 00:00:00',3,'Mauritius','139','2023-07-29 15:23:02','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'mauritian-highlights',NULL,NULL,NULL,0),(311,36488,1,5293,0,0,0,'Honeymoon,Beach,Family,Culture,Weekend,Shopping and Nightlife',NULL,1,1,0,'{\"package\":{\"TPId\":36488,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/pattaya__bangkok_combo_1654670976.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Tour Highlights:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bangkok, the capital city of Thailand is a place known for its vibrant and exciting atmosphere and holds rich history and culture. The land of glittering shrines and dynamic street life, known to locals as Krung Thep, the &amp;lsquo;City of Angels&amp;rsquo; Whether you enjoy spending your time in Bangkok visiting the renowned temples of Wat Pho or Wat Phra Kaew, strolling along the small paths in Chinatown, savouring the flavours of exceptional Thai cuisines or haggling in the Chatuchak Weekend Market, this place has it all.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On the other hand, Pattaya is a city that comes out alive in the night. It is known as a carefree party town where people seek endless rollicking good times. From luxurious beach cafes to bustling street markets, from diving into the blue sea to dancing till the dawn in the town&amp;rsquo;s hottest party spot, Pattaya has all the ingredients for the perfect vacation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Quick info:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Destinations Covered:&amp;nbsp;Bangkok, Pattaya&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Duration:&amp;nbsp;5 Days, 4 Nights&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start Point:&amp;nbsp;Bangkok International Airport (BKK)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;End Point:&amp;nbsp;Bangkok International Airport (BKK)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Inclusions:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Accommodation:&amp;nbsp;2 nights accommodation in Bangkok &amp;amp; 2 nights accommodation in Pattaya&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals:&amp;nbsp;Breakfast as per the itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfers:&amp;nbsp;Airport Pick up and drop as per your flight timings on a private basis and comfortable and hygienic vehicle for sightseeing on all days as per the itinerary on sharing basis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transport:&amp;nbsp;Comfortable and hygienic vehicle for sightseeing on all days as per the itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visa assistance:&amp;nbsp;It will be provided&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guide:&amp;nbsp;Professional driver cum guide to help you explore this beautiful city&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Things not to miss:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Get a glimpse of the Thai Royalty by visiting Grand Palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take in the bliss of tranquillity at Lumphini Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stroll around the vibrant streets of Chinatown and relish the flavours of your favourite cuisines.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Destination Info:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Official Name:&amp;nbsp;Kingdom of Thailand&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Currency:&amp;nbsp;Thai Baht&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Time Zone:&amp;nbsp;GMT+7&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;How To Reach?&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bangkok is well connected internationally, visitors to the country can embark at the massive Suvarnabhumi or the smaller Don Mueang Airport. There are direct flights from major cities of India like Ahmedabad, Delhi, Mumbai, and Kolkatta which take approx 5 hours to reach!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Pattaya + Bangkok Combo\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19041\",\"SupplierName\":\"TIC Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Sightseeing,Travel Insurance\",\"PackageType\":\"Honeymoon,Beach,Family,Culture,Weekend,Shopping and Nightlife\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":573292,\"Name\":\"Golden Tulip Hotel Essential Pattaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"5 87\\/30 Naklua 14\\/1 Alley, Muang Pattaya, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;A kilometer from a beach on the Gulf of Thailand, this unfussy hotel is 3 km from the interactive Art in Paradise gallery and 119 km from Suvarnabhumi Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring balconies, the relaxed rooms provide free Wi-Fi, minifridges, and tea and coffeemaking facilities. Room service is offered.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast is complimentary. A simple restaurant serves international cuisine. There&rsquo;s also an outdoor pool with a poolside bar. Parking and an airport shuttle are available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_573292\\/4539_1137bbbda94dd65423e021cd5d5218071693641449.jpg\",\"AccoAminitiesMask\":\"111100000000100001010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":573294,\"Name\":\"Pattaya Discovery Beach Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"489 Thanon Pattaya Nuea, 6\\/1 Muang Pattaya, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;A 15-minute walk from the Art In Paradise interactive museum, this modern beachfront hotel is 7 km from the Underwater World Pattaya aquarium and 11 km from the Pattaya Floating Market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sleek rooms with balconies and hardwood floors feature free Wi-Fi and flat-screen TVs, as well as minibars and coffeemakers. Suites add separate sitting areas. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA breakfast buffet is served in a casual restaurant, and an open-air dining area hosts regular live music. Other amenities include a stylish lobby bar and a fitness center, as well as indoor and outdoor pools.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_573294\\/4539_0dcfd04ed5547fe22b27191fb853ba141693641903.jpg\",\"AccoAminitiesMask\":\"111101001000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":54874,\"Title\":\"Pattaya Floating Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54875,\"Title\":\"Pattaya Dolphinarium Show (Regular Seat)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54876,\"Title\":\"Madame Tussauds Bangkok\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54877,\"Title\":\"Tiger Park + Photo with Smal\\/Medium \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54878,\"Title\":\"NongNooch Garden Village (Admission+Show)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54879,\"Title\":\"Under Water World\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":573293,\"Name\":\"Howard Square Boutique Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\" 3641 10 Bang Khlo, Bang Kho Laem, Bangkok 10120, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"&lt;p&gt;Set on a tree-lined street, this functional hotel is 5 km from the Golden Buddha statue, and 9 km from both The Grand Palace and the Temple of the Emerald Buddha.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Simple rooms and suites offer satellite TV, minifridges and en suite bathrooms. Some have separate living areas. Room service is available.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast is offered. Other amenities include a restaurant, a gym, and meeting and event space. An airport shuttle is available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_573293\\/4539_94de437f5d438089806fcb85d21add831693900558.jpg\",\"AccoAminitiesMask\":\"111001000000100000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":573304,\"Name\":\"Ramada by Wyndham D MA Bangkok\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1091\\/388 New Petchburi Rd 33, Makkasan, Bangkok 10400, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"&lt;p&gt;This traditional hotel is a 9-minute walk from the Airport Rail Link&amp;#39;s Makkasan station and 8.1 km from the Grand Palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The understated rooms have complimentary WiFi and flat&shy;-screen TVs, as well as coffeemakers. Upgraded rooms and suites add sitting areas plus minibars and\\/or minifridges. There is no charge for kids 17 and under staying with an adult.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAmenities include a free buffet breakfast, a restaurant serving international cuisine and a lounge, as well as an outdoor pool, a fitness center and a sauna. There&rsquo;s also a business center and conference facilities, plus free parking.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_573304\\/4539_8defa7ca631851b17684a0be3899c7671693643159.jpg\",\"AccoAminitiesMask\":\"111101000000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":54874,\"Title\":\"Pattaya Floating Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54875,\"Title\":\"Pattaya Dolphinarium Show (Regular Seat)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54876,\"Title\":\"Madame Tussauds Bangkok\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54877,\"Title\":\"Tiger Park + Photo with Smal\\/Medium \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54878,\"Title\":\"NongNooch Garden Village (Admission+Show)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":54879,\"Title\":\"Under Water World\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19041,\"SupplierName\":\"TIC Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"261454\",\"Title\":\"Arrival in Bangkok - Transfer to Pattaya\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Thailand! You will be welcomed on arrival at Bangkok Airport and transferred to the picturesque seaside town of Pattaya, on the Gulf of Thailand. Later we arrive in Pattaya and check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pattaya is a popular Beach resort on the Gulf of Thailand, just 150 km southeast of Bangkok &amp;ndash;a mere two-hour drive. This city is best known for its nightlife, In the evening head to Alcazar Cabaret Show for a captivating performance showcasing Thailand&amp;#39;s cultural and artistic talents at your own personal expense. You can also explore Pattaya&amp;#39;s vibrant nightlife along Walking Street or visit some of the city&amp;#39;s popular bars and clubs.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight in Pattaya&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":573292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":573294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"261456\",\"Title\":\"Pattaya: Coral Island Tour\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy a wholesome breakfast and get ready for a fascinating Coral Island Tour in a shared speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Tour Duration: 5 Hours | Pick up\\/Drop Point: Hotel | Transfers: Shared transfers | Pick up Time: 8:00 AM&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The representative will pick you up from the hotel in a shared transfer and take you to the port where you&amp;#39;ll board the speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hop on a speed boat which will take around 45 minutes to reach Coral Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One can indulge in many activities as the Island offers a variety of fun water activities to do and find something you&amp;#39;ve always wanted to try.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the most famous beach Tawaen Beach, where there is a small harbour lined with small tourist shops.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Choose from snorkelling, sea walker diving, parasailing, jet-skiing, and many more such activities (&lt;em&gt;additional&lt;\\/em&gt; &lt;em&gt;cost)&lt;\\/em&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stroll around the white sandy beaches and watch the waves rushing over the boulders.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After an adventurous day, head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":573292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":573294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":54874,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54875,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54876,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54877,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54878,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":54879,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"261458\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"261460\",\"Title\":\"Pattaya: Transfer to Bangkok\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today, Check out from your hotel in Pattaya after breakfast and depart for Bangkok.&amp;nbsp;Arrive in Bangkok and check into your hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start your Bangkok city tour, by visiting landmarks like the Grand Palace, Wat Pho (Temple of the Reclining Buddha), and Wat Phra Kaew (Temple of the Emerald Buddha). And temple tour like Gold &amp;amp; wat mahaputram temples. Later visit a gem gallery to learn about Thailand&amp;#39;s gemstone industry and maybe purchase some souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":573293,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":573304,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"261462\",\"Title\":\"Bangkok: Day at Leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, spend the rest of the day leisurely.&amp;nbsp;One can stroll around the markets, explore local cafes and witness the extraordinary beauty of the city of angels.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;strong&gt;You can also choose to indulge in optional activities today (contact our holiday expert to know more).&amp;nbsp;&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":573293,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":573304,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"261464\",\"Title\":\"Bangkok: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy your final breakfast in Bangkok and perhaps do some last-minute shopping or sightseeing.&amp;nbsp;Check out from your hotel. Later you&amp;#39;ll be transferred to Bangkok Airport for your onward journey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Come back home with Great memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36488\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10846.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11750,\"priceDoubleOcc\":\"10846.00\",\"priceSingleOcc\":26273.5,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10846,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":10846,\"COSTSO\":26273.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11750,\"priceDoubleOcc\":\"10846.00\",\"priceSingleOcc\":26273.5,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10846,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":10846,\"COSTSO\":26273.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11750,\"priceDoubleOcc\":\"10846.00\",\"priceSingleOcc\":26273.5,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10846,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":10846,\"COSTSO\":26273.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":12186,\"priceDoubleOcc\":\"11500.50\",\"priceSingleOcc\":26928,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11500.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":11500.5,\"COSTSO\":26928,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":12934,\"priceDoubleOcc\":\"12622.50\",\"priceSingleOcc\":28050,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12622.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":12622.5,\"COSTSO\":28050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14804,\"priceDoubleOcc\":\"15427.50\",\"priceSingleOcc\":30855,\"priceExtraBed\":\"13557.50\",\"priceWithoutBed\":\"9724.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15427.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9724,\"CEB\":13557.5,\"COSTDO\":15427.5,\"COSTSO\":30855,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13557.5,\"COSTTO\":13557.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36489\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17017.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17609,\"priceDoubleOcc\":\"17017.00\",\"priceSingleOcc\":38615.5,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17017,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":17017,\"COSTSO\":38615.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17609,\"priceDoubleOcc\":\"17017.00\",\"priceSingleOcc\":38615.5,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17017,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":17017,\"COSTSO\":38615.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17609,\"priceDoubleOcc\":\"17017.00\",\"priceSingleOcc\":38615.5,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17017,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":17017,\"COSTSO\":38615.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18046,\"priceDoubleOcc\":\"17671.50\",\"priceSingleOcc\":39270,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17671.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":17671.5,\"COSTSO\":39270,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18794,\"priceDoubleOcc\":\"18793.50\",\"priceSingleOcc\":40392,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18793.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":18793.5,\"COSTSO\":40392,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20664,\"priceDoubleOcc\":\"21598.50\",\"priceSingleOcc\":43197,\"priceExtraBed\":\"18793.50\",\"priceWithoutBed\":\"13183.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21598.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13183.5,\"CEB\":18793.5,\"COSTDO\":21598.5,\"COSTSO\":43197,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18793.5,\"COSTTO\":18793.5}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36488\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10550.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11429,\"priceDoubleOcc\":\"10550.20\",\"priceSingleOcc\":25556.95,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10550.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":10550.2,\"COSTSO\":25556.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11429,\"priceDoubleOcc\":\"10550.20\",\"priceSingleOcc\":25556.95,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10550.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":10550.2,\"COSTSO\":25556.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11429,\"priceDoubleOcc\":\"10550.20\",\"priceSingleOcc\":25556.95,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10550.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":10550.2,\"COSTSO\":25556.95,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11854,\"priceDoubleOcc\":\"11186.85\",\"priceSingleOcc\":26193.6,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11186.85,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":11186.85,\"COSTSO\":26193.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":12581,\"priceDoubleOcc\":\"12278.25\",\"priceSingleOcc\":27285,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12278.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":12278.25,\"COSTSO\":27285,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14400,\"priceDoubleOcc\":\"15006.75\",\"priceSingleOcc\":30013.5,\"priceExtraBed\":\"13187.75\",\"priceWithoutBed\":\"9458.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15006.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9458.8,\"CEB\":13187.75,\"COSTDO\":15006.75,\"COSTSO\":30013.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13187.75,\"COSTTO\":13187.75}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36489\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16552.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17129,\"priceDoubleOcc\":\"16552.90\",\"priceSingleOcc\":37562.350000000006,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16552.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":16552.9,\"COSTSO\":37562.35,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17129,\"priceDoubleOcc\":\"16552.90\",\"priceSingleOcc\":37562.350000000006,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16552.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":16552.9,\"COSTSO\":37562.35,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17129,\"priceDoubleOcc\":\"16552.90\",\"priceSingleOcc\":37562.350000000006,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16552.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":16552.9,\"COSTSO\":37562.35,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17553,\"priceDoubleOcc\":\"17189.55\",\"priceSingleOcc\":38199,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17189.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":17189.55,\"COSTSO\":38199,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":18281,\"priceDoubleOcc\":\"18280.95\",\"priceSingleOcc\":39290.4,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18280.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":18280.95,\"COSTSO\":39290.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95},{\"From\":\"2023-09-02\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20100,\"priceDoubleOcc\":\"21009.45\",\"priceSingleOcc\":42018.9,\"priceExtraBed\":\"18280.95\",\"priceWithoutBed\":\"12823.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21009.45,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12823.95,\"CEB\":18280.95,\"COSTDO\":21009.45,\"COSTSO\":42018.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18280.95,\"COSTTO\":18280.95}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa Charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights&amp;rsquo; accommodation at Pattaya in Choice of above mentioned or similar category hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights&amp;rsquo; accommodation at Bangkok in Choice of above mentioned or similar category hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast at the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coral Island tour with lunch on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gems Gallery visit&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bangkok city tour and temple tour on a sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Bangkok Airport to Pattaya Hotel on a private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Pattaya Hotel to Bangkok Hotel on a private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Bangkok Hotel to Bangkok Airport on a private basis.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"261454\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[261454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"261456\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[261456],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"261458\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[261458],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"261460\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[261460],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"261462\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[261462],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"261464\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[261464],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',10550,21599,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 13:17:28','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'pattaya-+-bangkok-combo',NULL,NULL,NULL,0),(312,32287,1,5293,1,0,0,'Adventure,Family,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":32287,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/magical_dubai_with_lapita_1644242426.jpg\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Dubai is a city and emirate in the United Arab Emirates known for luxury shopping, ultramodern architecture, and a lively nightlife scene. Burj Khalifa, an 830m-tall tower, dominates the skyscraper-filled skyline. At its foot lies Dubai Fountain, with jets and lights choreographed to music.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Magical Dubai With Lapita\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4360\",\"SupplierName\":\"Turning Point Tourism LLC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa\",\"PackageType\":\"Adventure,Family,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":472196,\"Name\":\"Citymax Hotel Bur Dubai - Dubai - United Arab Emirates\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kuwait Street, Mankhool - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This modern hotel is 4 km from Dubai World Trade Centre, 5 km from the Dubai Gold Souk, and 9 km from the Dubai Mall&amp;#39;s department stores, ice rink and aquarium.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The simple rooms have flat-screen TVs, free Wi-Fi and minifridges, along with digital safes, and tea and coffeemaking facilities. Room service is available 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Free secure parking is provided. There&amp;#39;s a rooftop pool, a sports bar and an elegant cafe, along with Indian and Asian restaurants. Other amenities include a gym and a prayer room.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_472196\\/4539_e49badec830445ddf77de178300c7d141681731381.jpg\",\"AccoAminitiesMask\":\"111111001001100001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":514829,\"Name\":\"Grand Excelsior Hotel Bur Dubai - Dubai - United Arab Emirates\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kuwait Road, Al Mankhool, Burdubai - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This upscale hotel is 8 km from The Dubai Mall and 7 km from the Dubai Spice Souk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring free Wi-Fi, the polished rooms with Arabic decor also come with flat-screen TVs, minibars, and tea and coffeemaking facilities. Upgraded rooms add access to a lounge. Luxe suites add whirlpool tubs, and separate living and\\/or dining areas. Room service is available 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere are 5 bars and restaurants including a refined international restaurant and a laid-back bar. There&rsquo;s also a gym and a rooftop pool, plus a steam room, a sauna and a business center.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_514829\\/4539_b697515d7a12659e589c6dffd89249fc1686654131.jpg\",\"AccoAminitiesMask\":\"111101101000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":4991,\"Name\":\"Crowne Plaza Dubai Deira\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.270588781271\",\"Long\":\"55.32701164484\",\"Address\":\"Salahuddin Road Deira\"},\"Images\":{\"Image\":[{\"ImagId\":120418,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/561\\/DXBCP_4548882132_A.jpg\"},{\"ImagId\":120419,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/38\\/345\\/210\\/DXBCP-Healthclub1_A.jpg\"},{\"ImagId\":120420,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/450\\/DXBCP_3945638114_4385375777_A.jpg\"},{\"ImagId\":120421,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/470\\/DXBCP_4195982979_9557550154_A.jpg\"},{\"ImagId\":120422,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/522\\/DXBCP_4195978149_4043011137_A.jpg\"},{\"ImagId\":120423,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/530\\/DXBCP_4195981628_4950648941_A.jpg\"},{\"ImagId\":120424,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/538\\/DXBCP_4195978326_1773587554_A.jpg\"},{\"ImagId\":120425,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/586\\/DXBCP_3945637409_3238073945_A.jpg\"},{\"ImagId\":120426,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/110\\/DXBCP_4195979365_A.jpg\"},{\"ImagId\":120427,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/86\\/DXBCP_4193806532_A.jpg\"},{\"ImagId\":120428,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/154\\/DXBCP_4193807052_A.jpg\"},{\"ImagId\":120429,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/82\\/DXBCP_3945624757_A.jpg\"},{\"ImagId\":120430,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/146\\/DXBCP_4195979032_A.jpg\"},{\"ImagId\":120431,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/102\\/DXBCP_4184955312_A.jpg\"},{\"ImagId\":120432,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/553\\/DXBCP_4548884843_A.jpg\"},{\"ImagId\":120433,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/130\\/DXBCP_4195978399_A.jpg\"},{\"ImagId\":120434,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/56\\/DXBCP_4250459766_A.jpg\"},{\"ImagId\":120435,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/545\\/DXBCP_4548883362_A.jpg\"},{\"ImagId\":120436,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/64\\/DXBCP_4192985028_A.jpg\"},{\"ImagId\":120437,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/68\\/DXBCP_4195993354_A.jpg\"},{\"ImagId\":120438,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/72\\/DXBCP_3945639721_A.jpg\"},{\"ImagId\":120439,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/76\\/DXBCP_4195987244_A.jpg\"},{\"ImagId\":120440,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/80\\/DXBCP_4195991986_A.jpg\"},{\"ImagId\":120441,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/84\\/DXBCP_4184955793_A.jpg\"},{\"ImagId\":120442,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/90\\/DXBCP_4192985008_A.jpg\"},{\"ImagId\":120443,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/94\\/DXBCP_4184919158_A.jpg\"},{\"ImagId\":120444,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/98\\/DXBCP_3938557066_A.jpg\"},{\"ImagId\":120445,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/102\\/DXBCP_4250462940_A.jpg\"},{\"ImagId\":120446,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/110\\/DXBCP_4192987045_A.jpg\"},{\"ImagId\":120447,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/114\\/DXBCP_3948294274_A.jpg\"},{\"ImagId\":120448,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/118\\/DXBCP_4195993200_A.jpg\"},{\"ImagId\":120449,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/536\\/DXBCP_4548886944_A.jpg\"},{\"ImagId\":120450,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/124\\/DXBCP_4182943198_A.jpg\"},{\"ImagId\":120451,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/118\\/DXBCP_4193812594_A.jpg\"},{\"ImagId\":120452,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/130\\/DXBCP_3945626926_A.jpg\"},{\"ImagId\":120453,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/134\\/DXBCP_35890207_A.jpg\"},{\"ImagId\":120454,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/138\\/DXBCP_4195992491_A.jpg\"},{\"ImagId\":120455,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/142\\/DXBCP_4192985348_A.jpg\"},{\"ImagId\":120456,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/158\\/DXBCP_4195979126_A.jpg\"},{\"ImagId\":120457,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/122\\/DXBCP_4195980377_A.jpg\"},{\"ImagId\":120458,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/142\\/DXBCP_4195980282_A.jpg\"},{\"ImagId\":120459,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/158\\/DXBCP_4182943453_A.jpg\"},{\"ImagId\":120460,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/601\\/DXBCP_4548884395_A.jpg\"},{\"ImagId\":120461,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/641\\/DXBCP_4548884070_A.jpg\"},{\"ImagId\":120462,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/586\\/DXBCP_4548880064_A.jpg\"},{\"ImagId\":120463,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/176\\/DXBCP_4195985018_A.jpg\"},{\"ImagId\":120464,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/114\\/DXBCP_4195989713_A.jpg\"},{\"ImagId\":120465,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/190\\/DXBCP_4182942894_A.jpg\"},{\"ImagId\":120466,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/134\\/DXBCP_4193812067_A.jpg\"},{\"ImagId\":120467,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/94\\/DXBCP_4195979415_A.jpg\"},{\"ImagId\":120468,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/212\\/DXBCP_3938819964_A.jpg\"},{\"ImagId\":120469,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/216\\/DXBCP_4193810372_A.jpg\"},{\"ImagId\":120470,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/220\\/DXBCP_4182946511_A.jpg\"},{\"ImagId\":120471,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/226\\/DXBCP_4192984880_A.jpg\"},{\"ImagId\":120472,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/232\\/DXBCP_3945624868_A.jpg\"},{\"ImagId\":120473,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/236\\/DXBCP_4195991056_A.jpg\"},{\"ImagId\":120474,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/242\\/DXBCP_4195992395_A.jpg\"},{\"ImagId\":120475,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/622\\/DXBCP_4548883059_A.jpg\"},{\"ImagId\":120476,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/250\\/DXBCP_4193806682_A.jpg\"},{\"ImagId\":120477,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/256\\/DXBCP_4192985069_A.jpg\"},{\"ImagId\":120478,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/126\\/DXBCP_4192984841_A.jpg\"},{\"ImagId\":120479,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/266\\/DXBCP_4195993278_A.jpg\"},{\"ImagId\":120480,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/138\\/DXBCP_4193812382_A.jpg\"},{\"ImagId\":120481,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/272\\/DXBCP_3936036885_A.jpg\"},{\"ImagId\":120482,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/106\\/DXBCP_4184955511_A.jpg\"},{\"ImagId\":120483,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/278\\/DXBCP_4193810648_A.jpg\"},{\"ImagId\":120484,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/282\\/DXBCP_4192985049_A.jpg\"},{\"ImagId\":120485,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/288\\/DXBCP_4195988809_A.jpg\"},{\"ImagId\":120486,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/296\\/DXBCP_4192985655_A.jpg\"},{\"ImagId\":120487,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/304\\/DXBCP_4192984964_A.jpg\"},{\"ImagId\":120488,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/320\\/DXBCP_3945624789_A.jpg\"},{\"ImagId\":120489,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/78\\/DXBCP_4192984862_A.jpg\"},{\"ImagId\":120490,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/339\\/DXBCP_4195978258_A.jpg\"},{\"ImagId\":120491,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/577\\/DXBCP_4548887828_A.jpg\"},{\"ImagId\":120492,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/348\\/DXBCP_4195978060_A.jpg\"},{\"ImagId\":120493,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/353\\/DXBCP_4182945619_A.jpg\"},{\"ImagId\":120494,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/98\\/DXBCP_4184954950_A.jpg\"},{\"ImagId\":120495,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/362\\/DXBCP_4184918853_A.jpg\"},{\"ImagId\":120496,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/370\\/DXBCP_4192987063_A.jpg\"},{\"ImagId\":120497,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/569\\/DXBCP_4548887481_A.jpg\"},{\"ImagId\":120498,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/150\\/DXBCP_4195979957_A.jpg\"},{\"ImagId\":120499,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/582\\/953\\/DXBCP_4550783304_A.jpg\"},{\"ImagId\":120500,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/90\\/DXBCP_4193813002_A.jpg\"},{\"ImagId\":120501,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/582\\/972\\/DXBCP_4550783332_A.jpg\"},{\"ImagId\":120502,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/825\\/DXBCP_4193809964_A.jpg\"},{\"ImagId\":120503,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/689\\/DXBCP_3938998858_A.jpg\"},{\"ImagId\":120504,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/801\\/DXBCP_4182944269_A.jpg\"},{\"ImagId\":120505,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/794\\/DXBCP_3941338727_A.jpg\"},{\"ImagId\":120506,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/839\\/DXBCP_4193809355_A.jpg\"},{\"ImagId\":120507,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/895\\/DXBCP_4182944338_A.jpg\"},{\"ImagId\":120508,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/787\\/DXBCP_1621782997_A.jpg\"},{\"ImagId\":120509,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/871\\/DXBCP_1621370028_A.jpg\"},{\"ImagId\":120510,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/832\\/DXBCP_4250456670_A.jpg\"},{\"ImagId\":120511,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/709\\/DXBCP_3936161953_A.jpg\"},{\"ImagId\":120512,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/695\\/DXBCP_4193809023_A.jpg\"},{\"ImagId\":120513,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/773\\/DXBCP_1653680580_A.jpg\"},{\"ImagId\":120514,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/877\\/DXBCP_4182944674_A.jpg\"},{\"ImagId\":120515,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/745\\/DXBCP_4193809533_A.jpg\"},{\"ImagId\":120516,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/887\\/DXBCP_4182944972_A.jpg\"},{\"ImagId\":120517,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/853\\/DXBCP_4193808780_A.jpg\"},{\"ImagId\":120518,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/766\\/DXBCP_3936210178_A.jpg\"},{\"ImagId\":120519,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/717\\/DXBCP_3932300726_A.jpg\"},{\"ImagId\":120520,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/681\\/DXBCP_4182944445_A.jpg\"},{\"ImagId\":120521,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/703\\/DXBCP_3936095958_A.jpg\"},{\"ImagId\":120522,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/779\\/DXBCP_3938963111_A.jpg\"},{\"ImagId\":120523,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/752\\/DXBCP_3945628475_A.jpg\"},{\"ImagId\":120524,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/655\\/DXBCP_4193807879_A.jpg\"},{\"ImagId\":120525,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/859\\/DXBCP_4193807436_A.jpg\"},{\"ImagId\":120526,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/661\\/DXBCP_1621787437_A.jpg\"},{\"ImagId\":120527,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/731\\/DXBCP_3945628506_A.jpg\"},{\"ImagId\":120528,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/817\\/DXBCP_3903466757_A.jpg\"},{\"ImagId\":120529,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/759\\/DXBCP_3945628573_A.jpg\"},{\"ImagId\":120530,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/865\\/DXBCP_3945628441_A.jpg\"},{\"ImagId\":120531,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/668\\/DXBCP_4193810195_A.jpg\"},{\"ImagId\":120532,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/809\\/DXBCP_4182945069_A.jpg\"},{\"ImagId\":120533,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/675\\/DXBCP_3936019145_A.jpg\"},{\"ImagId\":120534,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/845\\/DXBCP_4182943574_A.jpg\"},{\"ImagId\":120535,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/723\\/DXBCP_4182944830_A.jpg\"}]},\"CityId\":8219,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at Crowne Plaza Dubai Deira places you in the heart of Dubai, walking distance from Reef Mall and Hamarain Centre.  This 5-star hotel is within close proximity of Al Ghurair Centre and Fish Roundabout.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 300 air-conditioned rooms featuring iPod docking stations and plasma televisions. Your room comes with a pillowtop bed. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and rainfall showerheads.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Don&amp;apos;t miss out on the many recreational opportunities, including a health club, an outdoor pool, and a sauna. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can get to nearby shops on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite to eat at one of the hotel&amp;apos;s 3 restaurants and 2 coffee shops\\/caf&eacute;s, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a 24-hour business center, and express check-in. Planning an event in Dubai? This hotel has 15042 square feet (1397 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/561\\/DXBCP_4548882132_A.jpg\",\"AccoAminitiesMask\":\"110110100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":405879,\"Name\":\"Lapita, Dubai Parks and Resorts Autograph Collection\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.916344\",\"Long\":\"55.006238\",\"Address\":\"Dubai Parks &amp; Resorts, Sheikh Zayed Road s\\/n 334221 DUBAI  AE, 334221\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"This Polynesian themed resort offers you a soothing and mesmerising stay at one of the most luxurious hotels in Dubai with unparalleled access to Dubai&#039;s famous theme parks and water park. Lapita&acirc;&bdquo;&cent; is without a doubt the best way to maximise both your time together and your time for fun!\\n\\nLapita&acirc;&bdquo;&cent; is dedicated to the spirit of the Polynesian islands - the architecture and landscaping, as well as the use of textures, details and lighting, all contribute to the splendour and serenity you can experience here.\\n\\nExpansive pathways sprinkled with colourful flowers adorn the entrance to Lapita&acirc;&bdquo;&cent;. The Dubai Parks and Resorts experience continues at the hotel where the comfort and d&Atilde;&copy;cor will ensure an unforgettable stay.\\n\\nThe warm ambient lighting and modernised Polynesian motifs take you on an exciting culinary journey at their signature dining restaurants.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/53\\/539281\\/539281a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":18267,\"Title\":\"Burj Khalifa 124th Level  (Non Prime Time) with Transfers\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Burj Khalifa, known as the Burj Dubai prior to its inauguration in 2010, is a skyscraper in Dubai, United Arab Emirates. With a total height of 829.8 m and a roof height of 828 m, the Burj Khalifa has been the tallest structure and building in the world since its topping out in 2009.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1686657034.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":35893,\"Title\":\"Half Day City tour\",\"Description\":\"&lt;p style=&quot;margin-bottom: 1rem margin-block-start: 0px color: rgb(33, 33, 33) font-family: Montserrat, sans-serif font-size: 16px text-align: left margin-block-end: revert !important&quot;&gt;Dubai has consolidated its place as one of the top tourist destinations in the world. Glittering cityscape, high rises, some of the tallest ones in the world, an urbane jungle with a thrifty life. But is that all the Bedouin town has to offer? The natural is as beautiful as the human-made. Desert safaris and dunes visitations are must-do things while you are on the Dubai Tour. Don&#039;t forget to visit the sandy beaches and the lush hotels and restaurants with a touch of exquisite and luxury.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 1rem margin-block-start: 0px color: rgb(33, 33, 33) font-family: Montserrat, sans-serif font-size: 16px text-align: left margin-block-end: revert !important&quot;&gt;Old Dubai is as beautiful as the new. From Dhow rides in Dubai creek to the old souks, commercial centers for the 20th century Dubai are still operational and abundant with gold, spices, and handloom.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1669790186.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3122,\"Title\":\"Palm Jumeirah Island\",\"Description\":\"Palm Jumeirah is the world&amp;rsquo;s largest man-made island and is comprised of a two kilometre long trunk (stem), a crown made up of 17 fronds (leafs) and a surrounding crescent (curve). The  tree-shaped Palm Jumeirah was built entirely from sand and rocks only. The island itself is five kilometers by five kilometers.\\r\\nDubai is known for its world&amp;#039;s first: Palm Jumeirah is first artificial island, which looks like a stylised palm tree from SPACE, was originally billed as the Eighth Wonder of the World. Palm Jumeirah is one of the three artificial Palm Islands and its creation is started in 2001. As of November 2011, only Palm Jumeirah has been completed. The island is known for glitzy hotels, shopping malls, posh apartment towers and upmarket global restaurants.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1124,\"Long\":55.139,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Palm_Jumeirah_8219_1517479431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2669,\"Title\":\"Sheikh Zayed Mosque\",\"Description\":\"Sheikh Zayed Grand Mosque is located in Abu Dhabi. It is the largest mosque in the country.Sheikh Zayed Grand Mosque is the key place of worship for Friday gathering and Eid prayers. During Eid it may be visited by more than 41,000 people.The building complex measures approximately 960 ft by 1,380 ft, covering an area of more than 30 acres, excluding exterior landscaping and vehicle parking.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4868776,\"Long\":54.3852405,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh_Zayed_Mosque_8219_1519044602.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2320,\"Title\":\"Sheikh&#039;s Palace\",\"Description\":\"The luxury palace of Sheikh Mohammad Bin Rashid Al Maktoum (the Vice President and Prime Minister of UAE) also refers as Sheikh Mohammad&amp;rsquo;s Palace and the Emir of Dubai. View of the palace is breath-taking and enjoyable. There are luxury cars of the Emir parked inside the palace and the colorful peacocks on the palace grounds will keep your eyes open for a glimpse.\\r\\nIn 1965 Sheik Rashid&amp;#039;s Zabeel Palace was totally encompassed by sand where it remained solitary in the desert. It was Sheik Rashid&amp;#039;s Palace until he has passed in 1990. Presently advanced structures encompass and dominate this memorable building. Its name has been given to Sheik Mohammed&amp;#039;s new Zabeel Palace and the old Zabeel Palace lies nearly forgotten.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.196865,\"Long\":55.274349,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh&#039;s_Palace_8219_1517483067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2011,\"Title\":\"Dubai Mall\",\"Description\":\"The Dubai Mall is a big treasure for fashion lovers having every major fashion brand in the world. Garlanded with a 440,000 square feet Fashion Walk, which is renowned as the largest pool of fashion brands all under one roof anywhere in the world, This mall is established so well that it is ready to become the next fashion capital of the world. It is contributing a lot in increasing Dubai tourism.This mall&amp;rsquo;s Fashion Avenue embraces of high and mid-fashion outlets that pay service to haute tailoring and some of the finest designer brands in Dubai. The Fashion Avenue&amp;rsquo;s grand decor accompaniments the endless rows of leading fashion names, and fanatics that have the courage to spoil shoppers with choices, as they mix and match clothes and fittings to their temperament&amp;#039;s content.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1974476,\"Long\":55.2751205,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dubai_Mall_8219_1519030252.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3224,\"Title\":\"Bollywood Theme Park\",\"Description\":\"Enjoy the unforgettable experience of your favourite Bollywood blockbusters coming to life at Dubai&amp;rsquo;s one-of-a-kind Bollywood Park! Step into a fantastic cinematic world and explore the 5 zones: Bollywood Boulevard Mumbai Chowk Rustic Ravine Royal Plaza and Bollywood Film Studios.\\r\\n\\r\\nEnjoy cinematic simulation rides blockbuster attractions flamboyant live shows extraordinary entertainment fine dining street food and shop at numerous boutiques in a theme park dedicated to all things Bollywood!\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.920851,\"Long\":55.0093677,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/bollywood_theme_park_8219_1519026127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start;&quot;&gt;Book now to unveil the glamour of Dubai, experience luxury and adventure on your unforgettable getaway, get upto 3,000\\/-&lt;\\/span&gt;&lt;\\/p&gt;\",\"CouponCode\":\"EXPLOREDUBAI\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"229791\",\"Title\":\"Arrival at Dubai \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Land in the sparkling city of Dubai and get set for an unmatched dining experience while cruising through the waters of Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Welcome to the dazzling Emirati city. Oue representative will receive you at the Dubai International airport to escort you to the hotel. After a smooth check-in process, settle down in your comfortable room and de-stress yourself.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, the Dhow Cruise makes the first day of your&amp;nbsp;Dubai holiday package&amp;nbsp;exciting. Sail across the Dubai creek, listening to soothing Bollywood and traditional Arabic music, witnessing the glittering skyline of Dubai. The first evening of your 5 day&amp;nbsp;Dubai trip&amp;nbsp;will be marked by an unlimited international buffet dinner on board and then you will be transferred to your hotel for a cosy overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229794\",\"Title\":\"Dubai: Half-day Dubai City Tour with Burj Khalifa 124th Floor Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;The second day of your&amp;nbsp;holiday package to Dubai&amp;nbsp;promises to pamper the traveller in you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fill yourself with a delicious breakfast, and prepare yourself for discovering the wonders of Dubai on a half-day city tour with our 6 day Dubai packages.&amp;nbsp;Visit the Dubai Museum, the Jumeirah Mosque, the glitzy Burj Al Arab Hotel - the world&amp;rsquo;s only seven-star hotel and the Atlantis Hotel, perched atop the crescent-shaped Palm Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Encounter colourful dioramas and enlightening historic exhibits on a visit to Dubai Museum. Post digging into the history of Emirates and their traditional culture, choose to laze around or take a dip in the warm waters of Jumeirah Beach. Behold stunning bird&amp;#39;s-eye views from atop the Burj Khalifa -- the tallest building in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set foot in Dubai&amp;rsquo;s top tourist attractions, and gaze at the glimmering skyline of Dubai from Burj Khalifa observation deck on the 124th floor!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional&lt;\\/strong&gt;:&amp;nbsp;Request for premium slots of Burj Khalifa while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tip:&amp;nbsp;Indians can get to Armani, Saffron, or Indego by Vineet for some yummy desi delicacies.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18267,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35893,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3122,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2669,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2320,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229797\",\"Title\":\"Dubai: Thrilling Desert Safari with Barbecue Dinner\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This day of your&amp;nbsp;Dubai holiday&amp;nbsp;brings to you a ride on velvety Arabian sands &amp;amp; some cultural entertainment&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a wholesome breakfast at your hotel and spend the first half of the day leisurely. In the evening, get ready for Desert Safari. Indulge in a number of activities that are a highlight of your&amp;nbsp;Dubai 5 day package,&amp;nbsp;like dune bashing, camel riding, sandboarding, and jeep racing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Satiate your hunger with a number of mouth-watering Arabian delicacies &amp;amp; enjoy cultural performances like belly dance, Tanura show, and a fire show by trained artists. Enjoy off-roading on the sand dunes. Later, get to your hotel and end the third fun-filled day of your Dubai 4 nights, 5 days package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional:&lt;\\/strong&gt;&amp;nbsp;Engage in various exciting activities during your Dubai Desert Safari like camel riding, quad biking, and more (charges extra)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229800\",\"Title\":\"Dubai Mall Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today, An exhilarating day awaits you!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can opt to explore the world&amp;rsquo;s largest suspended aquariums housing!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional: &lt;\\/strong&gt;After a mouth-watering breakfast, you will hop off to Dubai Aquarium located inside the Dubai Mall. The 10-million litre Dubai Aquarium tank, located on the Ground Level of The Dubai Mall, is one of the largest suspended aquariums in the world. There are numerous ways you can experience the main Aquarium tank, which measures 51 metres in length, 20 metres in width and 11 metres in height. Find yourself wandering off, untamed, and fall in love with this place. the rest of the day will be at leisure. Go all out, shopping in the mall or check out the nearby places on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Request for Dubai Aquarium &amp;amp; Underwater Zoo while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2011,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229803\",\"Title\":\"Adventure day at Dubai Parks &amp; Resorts\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Have a delish breakfast, and pack your bags to move to the adventure-loaded Lapita, Dubai Parks and Resorts, Autograph Collection in Dubai. After a smooth check-in process, settle down in your room. Marvel at the utterly grand and overwhelmingly regal setting of this beautiful hotel and enjoy exploring the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Spend the day at &lt;em&gt;Bollywood Theme Parks Dubai &lt;strong&gt;OR&lt;\\/strong&gt; MotionGate Dubai &lt;strong&gt;OR&lt;\\/strong&gt; Legoland Dubai&lt;\\/em&gt; for a thrilling family day full of adventure!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3224,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229806\",\"Title\":\"Day 6: Dubai - Goodbye!\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy your breakfast at the hotel. After breakfast, check out of the hotel and&amp;nbsp;proceed to the airport for your flight back home with fond memories!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any international or domestic airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any RT-PCR Test Charges (Covid-19 test).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 nights accommodation on a twin sharing basis with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night accommodation at Lapita, Dubai Parks and Resorts with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Days Dubai Visa with Covid Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dhow Cruise Creek with Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th floor observation deck entry (Non-prime time).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with BBQ Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Dubai.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One time access to 1 park of your choice (Bollywood Theme Park OR Legoland Dubai OR MotionGate Dubai).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable entry tickets included and transfers on SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"229791\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[229791],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229794\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[229794],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229797\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[229797],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229800\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[229800],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229803\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[229803],\"Remark\":[\"&lt;p&gt;Interhotel Transfer on private basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229806\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[229806],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',0,0,5,NULL,NULL,NULL,2,'',0,'2023-07-19 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'United Arab Emirates','228','2023-07-29 15:24:20','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'magical-dubai-with-lapita',NULL,NULL,NULL,0),(313,32282,1,5293,0,0,0,'Family,Culture,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":32282,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/package\\/images\\/magical-dubai_1688104009\",\"BookingValidUntill\":\"2023-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Dubai is a city and emirate in the United Arab Emirates known for luxury shopping, ultramodern architecture, and a lively nightlife scene. Burj Khalifa, an 830m-tall tower, dominates the skyscraper-filled skyline. At its foot lies Dubai Fountain, with jets and lights choreographed to music.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Magical Dubai\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4360\",\"SupplierName\":\"Turning Point Tourism LLC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa\",\"PackageType\":\"Family,Culture,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2023-07-19\",\"To\":\"2023-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":472196,\"Name\":\"Citymax Hotel Bur Dubai - Dubai - United Arab Emirates\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kuwait Street, Mankhool - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This modern hotel is 4 km from Dubai World Trade Centre, 5 km from the Dubai Gold Souk, and 9 km from the Dubai Mall&amp;#39;s department stores, ice rink and aquarium.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The simple rooms have flat-screen TVs, free Wi-Fi and minifridges, along with digital safes, and tea and coffeemaking facilities. Room service is available 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Free secure parking is provided. There&amp;#39;s a rooftop pool, a sports bar and an elegant cafe, along with Indian and Asian restaurants. Other amenities include a gym and a prayer room.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_472196\\/4539_e49badec830445ddf77de178300c7d141681731381.jpg\",\"AccoAminitiesMask\":\"111111001001100001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":514829,\"Name\":\"Grand Excelsior Hotel Bur Dubai - Dubai - United Arab Emirates\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kuwait Road, Al Mankhool, Burdubai - Al Mankhool - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This upscale hotel is 8 km from The Dubai Mall and 7 km from the Dubai Spice Souk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring free Wi-Fi, the polished rooms with Arabic decor also come with flat-screen TVs, minibars, and tea and coffeemaking facilities. Upgraded rooms add access to a lounge. Luxe suites add whirlpool tubs, and separate living and\\/or dining areas. Room service is available 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThere are 5 bars and restaurants including a refined international restaurant and a laid-back bar. There&rsquo;s also a gym and a rooftop pool, plus a steam room, a sauna and a business center.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_514829\\/4539_b697515d7a12659e589c6dffd89249fc1686654131.jpg\",\"AccoAminitiesMask\":\"111101101000100001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":528135,\"Name\":\"Crowne Plaza Dubai Deira\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Salahuddin Road - Deira - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;This warm hotel in the city centre is an 8-minute walk from a metro stop and 8 km from the Dubai World Trade Centre.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Polished rooms feature free Wi-Fi and flat-screen TVs. Upgraded rooms add access to a private lounge offering food and drinks. Suites provide living areas; some also have dining areas. Room service is available 24\\/7.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nParking and an area shuttle are free. There&amp;#39;s a casual international eatery and a warm Italian restaurant, plus 3 bars, and a 24-hour lounge serving pastries and non-alcoholic drinks. There&amp;#39;s also a spa, a heated outdoor pool and a ballroom, as well as 2 gyms that are open 24\\/7.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_528135\\/4539_09caadea648655c42de3dfb5a7f1f6911669737156.jpeg\",\"AccoAminitiesMask\":\"111110101000100000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":47517,\"Title\":\"Dhow Cruise Dubai Creek\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-size:11.0ptline-height:107%\\r\\nfont-family:&quot;Calibri&quot;,sans-serifmso-ascii-theme-font:minor-latinmso-fareast-font-family:\\r\\nCalibrimso-fareast-theme-font:minor-latinmso-hansi-theme-font:minor-latin\\r\\nmso-bidi-font-family:&quot;Times New Roman&quot;mso-bidi-theme-font:minor-bidi\\r\\nmso-ansi-language:EN-USmso-fareast-language:EN-USmso-bidi-language:AR-SA&quot;&gt;Enjoy\\r\\na dramatic dinner cruise along the Venetian-style Dubai, located in the heart\\r\\nof Dubai.&lt;br&gt;Get a mesmerizing view of the architecture, with&nbsp; the skyline illuminated in the night .&lt;br&gt;Enjoy a delicious international buffet offering various Arab specialities.&lt;br&gt;Have an evening or night of fun on the waters of Dubai.&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;!--[endif]--&gt;&lt;\\/span&gt;&lt;\\/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin: 0in 0in 9pt text-indent: -0.25in line-height: normal background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial&quot;&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1686643399.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":23494,\"Title\":\"Dubai Aquarium &amp; Underwater Zoo Tickets only\",\"Description\":\"&lt;p&gt;Dubai Aquarium &amp; Underwater Zoo is home to thousands of aquatic animals, comprising over 140 species. Over 400 Sharks and Rays live in our 10 million litre tank, including Sand Tiger Sharks, Giant Groupers, and a host of other marine species. A series of carefully designed experiences will allow our visitors to come face to face with our aquatic residents for memorable moments with friends and family.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1975134,\"Long\":55.2785005,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":18267,\"Title\":\"Burj Khalifa 124th Level  (Non Prime Time) with Transfers\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: left&quot;&gt;The Burj Khalifa, known as the Burj Dubai prior to its inauguration in 2010, is a skyscraper in Dubai, United Arab Emirates. With a total height of 829.8 m and a roof height of 828 m, the Burj Khalifa has been the tallest structure and building in the world since its topping out in 2009.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1686657034.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":35893,\"Title\":\"Half Day City tour\",\"Description\":\"&lt;p style=&quot;margin-bottom: 1rem margin-block-start: 0px color: rgb(33, 33, 33) font-family: Montserrat, sans-serif font-size: 16px text-align: left margin-block-end: revert !important&quot;&gt;Dubai has consolidated its place as one of the top tourist destinations in the world. Glittering cityscape, high rises, some of the tallest ones in the world, an urbane jungle with a thrifty life. But is that all the Bedouin town has to offer? The natural is as beautiful as the human-made. Desert safaris and dunes visitations are must-do things while you are on the Dubai Tour. Don&#039;t forget to visit the sandy beaches and the lush hotels and restaurants with a touch of exquisite and luxury.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 1rem margin-block-start: 0px color: rgb(33, 33, 33) font-family: Montserrat, sans-serif font-size: 16px text-align: left margin-block-end: revert !important&quot;&gt;Old Dubai is as beautiful as the new. From Dhow rides in Dubai creek to the old souks, commercial centers for the 20th century Dubai are still operational and abundant with gold, spices, and handloom.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/4539\\/city\\/8219\\/sightseeing\\/4539_1669790186.jpg\",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[{\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start;&quot;&gt;Book now to unveil the glamour of Dubai, experience luxury and adventure on your unforgettable getaway, get upto 3,000\\/-&lt;\\/span&gt;&lt;\\/p&gt;\",\"CouponCode\":\"EXPLOREDUBAI\"}],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"229761\",\"Title\":\"Arrival at Dubai \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Kickstart your first day in Dubai&amp;nbsp;with the splendid Dhow Cruise!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On your arrival at the airport in Dubai, you will be transferred to your hotel on a private basis by one of our representatives. On your way to the hotel, you will witness many of the important and huge buildings which glorify the charm of Dubai. After reaching the hotel, take your time to freshen up and relax as the rest of the day is free for touring the city on the Dhow Cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;While in Dubai, experiencing the royal buffet dinner on the Dhow Cruise is a must. Dubai Dhow Cruise will not only pamper you with the royal feels but also enable you to witness the city onboard in full glory. Relish the authentic and traditional cuisine of the city with your family on your&amp;nbsp;Dubai vacation.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47517,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229764\",\"Title\":\"Dubai: Half-day Dubai City Tour with Burj Khalifa 124th Floor Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;The second day of your&amp;nbsp;holiday package to Dubai&amp;nbsp;promises to pamper the traveller in you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fill yourself with a delicious breakfast, and prepare yourself for discovering the wonders of Dubai on a half-day city tour with our 6 day Dubai packages.&amp;nbsp;Visit the Dubai Museum, the Jumeirah Mosque, the glitzy Burj Al Arab Hotel - the world&amp;rsquo;s only seven-star hotel and the Atlantis Hotel, perched atop the crescent-shaped Palm Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Encounter colourful dioramas and enlightening historic exhibits on a visit to Dubai Museum. Post digging into the history of Emirates and their traditional culture, choose to laze around or take a dip in the warm waters of Jumeirah Beach. Behold stunning bird&amp;#39;s-eye views from atop the Burj Khalifa -- the tallest building in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set foot in Dubai&amp;rsquo;s top tourist attractions, and gaze at the glimmering skyline of Dubai from Burj Khalifa observation deck on the 124th floor!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional&lt;\\/strong&gt;:&amp;nbsp;Request for premium slots of Burj Khalifa while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tip:&amp;nbsp;Indians can get to Armani, Saffron, or Indego by Vineet for some yummy desi delicacies.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":23494,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18267,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":35893,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229767\",\"Title\":\"Dubai: Thrilling Desert Safari with Barbecue Dinner\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;This day of your&amp;nbsp;Dubai holiday&amp;nbsp;brings to you a ride on velvety Arabian sands &amp;amp; some cultural entertainment&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a wholesome breakfast at your hotel and spend the first half of the day leisurely. In the evening, get ready for Desert Safari. Indulge in a number of activities that are a highlight of your&amp;nbsp;Dubai 5 day package,&amp;nbsp;like dune bashing, camel riding, sandboarding, and jeep racing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Satiate your hunger with a number of mouth-watering Arabian delicacies &amp;amp; enjoy cultural performances like belly dance, Tanura show, and a fire show by trained artists. Enjoy off-roading on the sand dunes. Later, get to your hotel and end the third fun-filled day of your Dubai 4 nights, 5 days package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional:&lt;\\/strong&gt;&amp;nbsp;Engage in various exciting activities during your Dubai Desert Safari like camel riding, quad biking, and more (charges extra)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229770\",\"Title\":\"Dubai Mall Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today, An exhilarating day awaits you!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can opt to explore the world&amp;rsquo;s largest suspended aquariums housing!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional: &lt;\\/strong&gt;After a mouth-watering breakfast, you will hop off to Dubai Aquarium located inside the Dubai Mall. The 10-million litre Dubai Aquarium tank, located on the Ground Level of The Dubai Mall, is one of the largest suspended aquariums in the world. There are numerous ways you can experience the main Aquarium tank, which measures 51 metres in length, 20 metres in width and 11 metres in height. Find yourself wandering off, untamed, and fall in love with this place. the rest of the day will be at leisure. Go all out, shopping in the mall or check out the nearby places on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Request for Dubai Aquarium &amp;amp; Underwater Zoo while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229773\",\"Title\":\"Dubai: Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Spend the day at your convenience!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Begin the day with a delicious breakfast at the hotel. The day is at leisure and you can plan it as per your comfort and ease. Since Dubai is famous for shopping and is home to the biggest and most luxurious shopping malls, on a leisure day, you can plan a visit to these malls. You can go out and see Dubai Mall, BurJuman Mall, Mall of Emirates, Ibn Battuta Mall, and Dubai Outlet Mall. After exploring the biggest shopping destinations, come back to the hotel for a sound sleep.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472196,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528135,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229776\",\"Title\":\"Day 6: Dubai - Goodbye!\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;And here comes an end to the joyous vacation as the last day of your&amp;nbsp;Dubai holiday package&amp;nbsp;arrives!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a scrumptious breakfast at the hotel and spend the early part of the day at leisure. Shop for some sweet Emirati souvenirs before getting transferred to the airport for boarding your flight back home with beautiful memories of your&amp;nbsp;Dubai trip.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32282\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34650.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":34650,\"priceDoubleOcc\":\"34650.00\",\"priceSingleOcc\":57200,\"priceExtraBed\":\"32835.00\",\"priceWithoutBed\":\"30580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30580,\"CEB\":32835,\"COSTDO\":34650,\"COSTSO\":57200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"32283\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40480.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":40480,\"priceDoubleOcc\":\"40480.00\",\"priceSingleOcc\":67980,\"priceExtraBed\":\"33990.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":26400,\"COSTDO\":40480,\"COSTSO\":67980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":40480,\"COSTTO\":40480}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"32284\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44294.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":44295,\"priceDoubleOcc\":\"44294.80\",\"priceSingleOcc\":72894.8,\"priceExtraBed\":\"36520.00\",\"priceWithoutBed\":\"30470.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":44294.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30470,\"CEB\":36520,\"COSTDO\":44294.8,\"COSTSO\":72894.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":44294.8,\"COSTTO\":44294.8}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32282\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33705.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":33705,\"priceDoubleOcc\":\"33705.00\",\"priceSingleOcc\":55640,\"priceExtraBed\":\"31939.50\",\"priceWithoutBed\":\"29746.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33705,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29746,\"CEB\":31939.5,\"COSTDO\":33705,\"COSTSO\":55640,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":33705,\"COSTTO\":33705}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"32283\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39376.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":39376,\"priceDoubleOcc\":\"39376.00\",\"priceSingleOcc\":66126,\"priceExtraBed\":\"25680.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39376,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":25680,\"COSTDO\":39376,\"COSTSO\":66126,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39376,\"COSTTO\":39376}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"32284\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43086.76\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76},{\"From\":\"2023-05-01\",\"To\":\"2023-07-31\",\"Currency\":1,\"priceTripleOcc\":43087,\"priceDoubleOcc\":\"43086.76\",\"priceSingleOcc\":70906.76000000001,\"priceExtraBed\":\"35524.00\",\"priceWithoutBed\":\"29639.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":7,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43086.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29639,\"CEB\":35524,\"COSTDO\":43086.76,\"COSTSO\":70906.76,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43086.76,\"COSTTO\":43086.76}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any international or domestic airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any RT-PCR Test Charges (Covid-19 test).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tourism Dirham Charges (Tourism Tax) are paybale directly by the guests at the Hotel ranging between (10 to 20 AED Per Room \\/ Night depending on the Hotel Category&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 nights accommodation on a twin sharing basis with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Days Dubai Visa with Covid Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dhow Cruise Creek with Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th floor observation deck entry (Non-prime time).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with BBQ Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Dubai.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable entry tickets included and transfers on SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;RT- PCR test report&amp;nbspwith a validity of 72&amp;nbsphrs from the departure date&amp;nbspfrom&amp;nbspICMR Approved Lab needs to be carried along as a mandatory norm against International Travel Post Covid.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;color:e74c3c&quot;&gt;&lt;strong&gt;With effect from 22nd February 2021, As per Indian Government Guidelines, It is mandatory to carry RT- PCR test report done within 72&amp;nbsphrs prior to Return Flight Date from the respective country to enter back India.&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most of the airlines ask for a PCR test report while departing from a respective country, kindly crosscheck with your booked airlines for hassle-free travel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"229761\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[229761],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229764\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[229764],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229767\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[229767],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229770\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[229770],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229773\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[229773],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229776\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[229776],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',33705,44295,5,NULL,NULL,NULL,1,'',0,'2023-07-19 00:00:00','2023-08-31 00:00:00','2023-08-31 00:00:00',3,'United Arab Emirates','228','2023-08-25 15:27:00','2023-07-19 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'magical-dubai',NULL,NULL,NULL,0),(315,4911,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4911\",\"VisaName\":\"test\",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Singapore\",\"VisaRequired\":4,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"e Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"10\",\"VisaValidity\":\"20\",\"VisaDuration\":\"30\",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Singapore','Singapore',NULL,'190',0,0,0,'1691500472.jpg',NULL,NULL,0,'',0,'2023-07-21 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Singapore','190','2023-08-11 12:24:54','2023-07-21 00:00:00',1,1,'0','0','0','','','',NULL,'test','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (317,58150,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":58150,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/flash-sale---angsana-velavaru_1690606826\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Perched on an expansive private lagoon in the virtually untouched South Nilandhe Atoll in the Maldives, and just a 40-minute seaplane journey from Velana International Airport, Angsana Velavaru (the island known as &amp;ldquo;Turtle Island&amp;rdquo; in the local Dhivehi language) is surrounded by sparkling turquoise waters and ocean views as far as the eye can see. This luxurious tropical getaway offers 79 private villas, all with beach frontage, and a cluster of 34 InOcean Villas, the first standalone collection of water villas in the Maldives perched one kilometre from the main island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With 4 outlets featuring a lavish spread of International, Mediterranean with Mexican twist, Asian or Maldivian cuisine, even the most discerning palette will be pleased. Angsana Velavaru is a perfect island playground destination &amp;ndash; offering a variety of&amp;nbsp;5 All Inclusive Packages, designed to cater for different characters of holiday makers. From gourmet foodies to family travellers, spa lovers, novice and experienced divers, Angsana&amp;#39;s All Inclusive Concept introduces a new style of intrepid travel in the Maldives for your holiday to experience the very best of #AngsanaMoments.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests looking for an adrenaline rush can choose from motorized and non-motorized sports or the complimentary daily guided snorkeling trips. Other adventures include stand-up paddle boarding, catamaran adventures, wake boarding, knee boarding, mono skiing and marine exploration in a glass bottom canoe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With its proximity to more than 30 vibrant dive sites, Angsana Velavaru is the ideal location for novice to experienced divers. Certified instructors at the PADI Gold Palm 5-Star Dive Centre offer different courses and excursions to explore the pristine waters of South Nilandhe Atoll. Divers can get up close and personal with black tip reef sharks, eagle rays, turtles and whale sharks, among other exotic species. For those interested in giving back, the programmes organized by Angsana Velavaru&amp;rsquo;s Marine Conservation Lab are a prime place to begin. Guests can participate in coral planting to replenish damaged reefs and snorkeling trips to learn about the abundant marine ecosystem and coral gardens found in and around the lagoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Children and parents alike will love the dynamic programmes offered at the Rangers&amp;rsquo; Club, whilst a dedicated kids pool provides ample space for maximum splashing about! Looking to relax and recharge? Head to the award-winning Angsana Spa and enjoy a soothing treatment in one of its 8 outdoor spa pavilions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Seize the moment and plunge into the uplifting world of Angsana Velavaru Maldives, the perfect destination playground for a sensational year-round tropical escape!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"FLASH SALE - ANGSANA VELAVARU\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18530\",\"SupplierName\":\"AV DMC\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476212,\"Name\":\"Angsana Velavaru\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"2.9799898\",\"Long\":\"73.0159038\",\"Address\":\"South Nilandhe Atoll Velavaru, Maldives MV Male, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18530,\"SupplierName\":\"AV DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"Beachfront Villa   Ocean Pool Villa \",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"426195\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2N Beachfront Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1N in Ocean Pool Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Dine&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seaplane Airport Transfers&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beachfront Villa   Ocean Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426196\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beachfront Villa   Ocean Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426197\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beachfront Villa   Ocean Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426198\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Beachfront Villa   Ocean Pool Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"58150\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"134310.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":129833,\"priceDoubleOcc\":\"134310.00\",\"priceSingleOcc\":376068,\"priceExtraBed\":\"100732.50\",\"priceWithoutBed\":\"67155.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134310,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":67155,\"CEB\":100732.5,\"COSTDO\":134310,\"COSTSO\":376068,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":120879,\"COSTTO\":120879}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2N Beachfront Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1N in Ocean Pool Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One time Complimentary Floating Breakfast for Pool Villas&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One time Complimentary activity ( Choose between Sunset Cruise or Night Fishing )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Dine&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seaplane Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax &amp;amp; GST Included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"426195\":[{\"Sequence\":[0],\"TPInvnSysId\":[426195],\"Remark\":[\"&lt;p&gt;All Transfers by Seaplane&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426196\":[{\"Sequence\":[0],\"TPInvnSysId\":[426196],\"Remark\":[\"&lt;p&gt;All Transfers by Seaplane&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426197\":[{\"Sequence\":[0],\"TPInvnSysId\":[426197],\"Remark\":[\"&lt;p&gt;All Transfers by Seaplane&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426198\":[{\"Sequence\":[0],\"TPInvnSysId\":[426198],\"Remark\":[\"&lt;p&gt;All Transfers by Seaplane&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',134310,134310,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Maldives','133','2023-09-07 11:46:20','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'flash-sale-angsana-velavaru',NULL,NULL,NULL,0),(318,58152,1,5293,0,0,0,'Honeymoon,Beach,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":58152,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/villa-nautica-paradise-island_1690608203\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;LUXURY ISLAND RESORT IN THE MALDIVES&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located in North Mal&amp;eacute; Atoll, just 20 minutes from Velana International Airport by speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Villa Nautica celebrates the glitz and glamour of yacht life and is always &amp;lsquo;en vogue&amp;rsquo;. Surrounded by sparkling lagoons and idyllic beaches, it is an island like no other, a hive of activity, a place to be seen. Complemented by exceptional scuba diving and other water sports, the resort embraces the seafarer lifestyle with a glamorous twist.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"VILLA NAUTICA PARADISE ISLAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18530\",\"SupplierName\":\"AV DMC\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":550762,\"Name\":\"Villa Nautica\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18530,\"SupplierName\":\"AV DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"BEACH VILLA   WATER VILLA \",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"426213\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2N Beach Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2N Water Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"BEACH VILLA   WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426214\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"BEACH VILLA   WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426215\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"BEACH VILLA   WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426216\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"BEACH VILLA   WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"426217\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":550762,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"BEACH VILLA   WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"58152\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"83539.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185},{\"From\":\"2023-07-29\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":80755,\"priceDoubleOcc\":\"83539.50\",\"priceSingleOcc\":233910.6,\"priceExtraBed\":\"62654.90\",\"priceWithoutBed\":\"41770.30\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83539.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":41770.3,\"CEB\":62654.9,\"COSTDO\":83539.5,\"COSTSO\":233910.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":75185,\"COSTTO\":75185}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2N Beach Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2N Water Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax &amp;amp; GST included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"426213\":[{\"Sequence\":[0],\"TPInvnSysId\":[426213],\"Remark\":[\"&lt;p&gt;Speedboat Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426214\":[{\"Sequence\":[0],\"TPInvnSysId\":[426214],\"Remark\":[\"&lt;p&gt;Speedboat Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426215\":[{\"Sequence\":[0],\"TPInvnSysId\":[426215],\"Remark\":[\"&lt;p&gt;Speedboat Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426216\":[{\"Sequence\":[0],\"TPInvnSysId\":[426216],\"Remark\":[\"&lt;p&gt;Speedboat Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"426217\":[{\"Sequence\":[0],\"TPInvnSysId\":[426217],\"Remark\":[\"&lt;p&gt;Speedboat Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',83540,83540,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Maldives','133','2023-09-07 11:45:52','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'villa-nautica-paradise-island',NULL,NULL,NULL,0),(319,4969,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"4969\",\"VisaName\":\"Tourist Visa \",\"Nationality\":null,\"VisaAdultRates\":12500,\"VisaChildRates\":12500,\"VisaInfantRates\":12500,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Canada\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;Documents Requirements for CANADA TOURIST Visa (Temporary Residence Visa):&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scanned copy of valid passport&amp;nbsp;with at least 6 months validity from the date of travel (all used pages) (both current and old passports).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One form filled by the applicant for personal additional details&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Family Sheet Form&amp;nbsp;to be filled completely (without any blanks) and it has to be signed by the applicant himself and not by anyone else.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;Photo Specification:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One scan recent passport size 60%-80% face coverage, white background and without border (Size: 35mm x 45mm semi matte finish)]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Personal Covering Letter&amp;nbsp;for addressed to Canadian High Commission (For Employed-Plain paper\\/ Self-Employed-Letterhead);&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bank Statement&amp;nbsp;for last 6 months with sufficient bank balance (Personal).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Copy of Income Tax Papers&amp;nbsp;for last 3 years (Personal).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight Ticket&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay itinerary (hotel)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Supporting Financial Documents such as Fixed Deposits, Property Investments, Other Investments etc. (Optional)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If Employed:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Leave sanctioned certificate with company seal and signature;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Last 3 months salary slip.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If Self Employed:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Business Registration License \\/ MOA \\/ Partnership deed;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Company&amp;rsquo;s updated bank statement of last 6 months;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Company&amp;rsquo;s IT returns for last 3 years.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If Retired:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of retirement like pension book, statement etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If Student&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;School \\/ College \\/ Institute ID Card;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bonafide certificate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If visiting friend or relative:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Invitation letter;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Inviter&amp;rsquo;s ID proof like Passport or Resident Permit;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address proof like any Electricity bill, any Utility bill etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;If Sponsored:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sponsorship letter;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sponsor&amp;rsquo;s national ID proof like Passport, PAN card or Resident permit;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Updated bank statement of last 6 months;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Income tax returns of last 3 years.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&#039;background-color:#f1c40f&#039;&gt;Biometric Instructions:&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Biometric is mandatory i.e. 31st December 2018&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Below 14 Years and above 79 Years are Exempted from Biometric&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Biometric is required once in 10 years&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Please Note:- Embassy ask for additional details for the application process.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Have a valid Passport and valid Canada Visa;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be in good health;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Good moral character;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Be able to convince the immigration officer that you will leave the country before your Canada visa expires;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have sufficient funds to support yourself and the amount depends on how long you will stay in Canada and whether you will be staying with family, friends or any paid accommodation.&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;High Commission of Canada&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;7\\/8 Shantipath, Chanakyapuri, New Delhi 110 021, India&lt;\\/p&gt;\",\"PrecessingTime\":\"45 Days  \",\"VisaValidity\":\"10 Years\",\"VisaDuration\":\"180 Days\",\"DocumentSubmission\":0,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"5000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"5000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"23\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Personal ITR for last 3yrs&lt;br \\/&gt;\\r\\nb) Three months salary slip&lt;br \\/&gt;\\r\\nc) Personal Bank Statement for last six months mentioning the Bank&amp;rsquo;s name, Bank&amp;rsquo;s stamp clearly&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If Self Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Personal &amp;amp; Company ITR for last 3yrs&lt;br \\/&gt;\\r\\nb) Personal &amp;amp; Company Bank Statement for last six months mentioning the Bank&amp;rsquo;s name, Bank&amp;rsquo;s stamp clearly&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Invitation Letter:&amp;nbsp;&lt;\\/strong&gt;Invitation Letter (With Invitee person name, address ,Contact no. and Email Id)&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Canada','Canada',NULL,'39',12500,12500,0,NULL,NULL,NULL,0,'',0,'2023-08-16 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Canada','39','2023-08-16 11:41:24','2023-08-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(320,27820,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27820,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/diverse-srilanka_1690875247\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Floating in tropical waters off the southern tip of India,&amp;nbsp;Sri Lanka&amp;nbsp;is defined by its gentle Buddhist culture, friendly people and laid-back way of life, despite its troubled recent history. A little knowledge goes a long way when it comes to having an easy trip to this Indian Ocean island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For such a small nation, Sri Lanka is hugely diverse. Sand-sprinkled beaches rise to forested national parks, temple-studded plains, and jungle-covered highlands, with the added perk that nowhere is that far from the beach.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Most visitors start on the coast and duck inland to tea gardens, ancient cities and national parks, but navigating Sri Lanka&amp;#39;s frenetic public transport system and cultural sensitivities can be confusing for new arrivals. To help you out, here are some of the things you need to know before traveling to Sri Lanka.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Colombo\",\"DestinationPlacesSysId\":6689,\"SourcePlaces\":\"Colombo\",\"SourcePlaceSysId\":6689,\"AgencyName\":\"I Need Trip\",\"Name\":\"DIVERSE SRILANKA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6779\",\"SupplierName\":\"Aitken Spence Travels (Pvt) Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":19147,\"Title\":\"Negombo\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":13493,\"Title\":\"Kandy\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":19797,\"Title\":\"Nuwara Eliya\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":2949,\"Title\":\"Bentota\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":6689,\"Title\":\"Colombo\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198873\",\"Title\":\"AIRPORT &acirc;&euro;&ldquo; COLOMBO \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Meet and assist on arrival at Airport by Aitken Spence Travels&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check in process along with the PCR will be at the Hotel&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Full Board at the hotel (Lunch &amp;amp; Dinner)&amp;nbsp; &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy Local\\/International cuisines at the main restaurant &amp;amp; activities, Gym, Swimming pool &amp;amp; bar facilities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19147,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198876\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19147,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198879\",\"Title\":\"COLOMBO- PINNAWALA &acirc;&euro;&ldquo;PERADENIYA &acirc;&euro;&ldquo;KANDY \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at Hotel, &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Receive your PCR Test results &amp;amp; free to explore Sri Lanka &lt;\\/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to Kandy&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;On the way visit Pinnawela Elephant Orphanage &lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;As you enter the 25 acre coconut property, do not be surprised to witness elephants being fed or moving around freely causing absolutely no harm to anyone. It is rightly a sincere sight to observe how these gentle giants - orphaned and sometimes three-legged - are taken care of since 1975 at Pinnawala Elephant Orphanage. Up to date, over 20 calves have been born here, and it is surprising to hear that some of its inmates have even seen their grandchildren during the past few decades! &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Visit Peradeniya Botanical Gardens&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;First developed as a pleasure garden under royalty and later harmonized by the British, the Royal Botanical Gardens of Peradeniya - today bundled with the most welcoming facilities located just 4 miles off Kandy - is a flourishing national asset in the Wonder of Asia. Walk into this 147 acre bliss of an experience, passing well tended lawns, pavilions &amp;amp; an octagon conservatory to be greeted by the vast expanse of a magnificently landscaped lush green turf which will encourage you for an exhilarating break. Towards the north of the entrance rests a cafeteria that one might come across before stepping into some of the highlights - the orchid house &amp;amp; giant Javan fig tree - of this place which overflow in grace.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;Evening visit Kandy Temple of tooth relic &amp;amp; Cultural show&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13493,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198882\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13493,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198885\",\"Title\":\"KANDY- TEA PLANTATION &acirc;&euro;&ldquo; HAKGALA - NUWARA ELIYA \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to Kandy to Nuwara Eliya via &lt;strong&gt;visiting Tea Planation&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sri Lanka, Tea and Tourism are words which cannot be separated. Take a tour to the cold &amp;amp; misty hills that take pride of an ultimate tea tour, covering lush green blankets of tea plantations. Or just step into a tea factory processing the prestigious brand of Ceylon Tea, to observe a rich tradition kept alive up to date. As you observe the hissing and swishing of machines, inhaling the heavenly scent arising from these facilities, make sure to end your day in style over a perfectly blended cup of pure Ceylon Tea.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit &lt;strong&gt;Hakgala Gardens, visit Sitha Amman Temple&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The pleasure garden of Ravana - in the Ramayana epic - Hakgala, today shouts out to all lovers of flowers. It&amp;#39;s all warm jackets and gloves that come to play at Hakgala due to its cool temperate climate. Listen to the bells clinging uphill from God Hanuman Temple which proves valid evidence of the epic tale or Rama &amp;amp; Sita. Whether it is the warm April or the cold December, overall Hakgala truly is a bliss for all ages with an extensive variety of roses, orchids and spices.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19797,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198888\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19797,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198891\",\"Title\":\"NUWARA ELIYA &acirc;&euro;&ldquo;BENTOTA \",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer to Nuwara Eliya to &lt;strong&gt;Bentota &lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Bentota, undoubtedly has some of the best stretches of clean sandy beaches in the country boasting of numerous romantic settings carved by both the river &amp;amp; sea. This unique experience leads to nothing, but an enchanted gateway to bliss. Float into the ocean for some deep sea fishing or get wet with some serious rumble on the water with jet skiing, surfing, diving or body boarding. Finally, cherish the golden sun sink into the horizon as you sit back gently under a shady palm tree.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Relax at the hotel.&lt;\\/span&gt;&lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198894\",\"Title\":\"BENTOTA &acirc;&euro;&ldquo;GALLE -KOSGODA &acirc;&euro;&ldquo;BALAPITIYA &acirc;&euro;&ldquo;BENTOTA  \",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the hotel. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer to visit &lt;strong&gt;Kosgoda Turtle Farm&lt;\\/strong&gt; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Both locals and international volunteers battling it out for &amp;#39;&amp;#39;Sea Turtles&amp;#39; Sake&amp;#39;&amp;#39; is a common sight at Kosgoda. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Do Balapitiya Boat Ride &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Madu Ganga is situated in Balapitiya, along the country&amp;#39;s southern coast, within the Galle District of the Southern Province of Sri Lanka. It opens to the Indian Ocean Madu lagoon is a very wide and a beautiful lagoon in Sri Lanka. It is in the wet zone of Sri Lanka with a high bio-diversity. Madu River has been proclaimed a Ramsa wetland in the world in 2004.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198897\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198900\",\"Title\":\"BENTOTA &acirc;&euro;&ldquo;COLOMBO   \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Leave to commercial capital &amp;ldquo;Colombo&amp;rdquo; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Enjoy scenic city of &lt;strong&gt;Colombo &amp;amp; do shopping&lt;\\/strong&gt; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The throbbing metropolis, Colombo - located in the West - is not only the country&amp;#39;s commercial capital, but also the turbine that impels above 50% of the national GDP flanking Colombo&amp;#39;s fancy urban development effort. Drive along the clean streets edging the crystal white Race Course - horse racing hub in 1893 &amp;amp; World War II airstrip - furnished today with lavish clothing, food &amp;amp; tea boutiques. Meanwhile, ride to Pettah - an offbeat shopping experience - or feel the buzz surrounding the upcoming inspiration, the Colombo Port City - an offshore city - featuring parks, commercial complexes! Head along Bauddhaloka Mawatha towards &amp;#39;Arcade&amp;#39; facing a historic waypost, the Independence Square. &lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6689,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198903\",\"Title\":\"COLOMBO-AIRPORT  \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Departure to Airport in the time of Flight &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6689,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27820\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38293.49\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37032,\"priceDoubleOcc\":\"38293.49\",\"priceSingleOcc\":107221.76999999999,\"priceExtraBed\":\"28697.04\",\"priceWithoutBed\":\"19192.88\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38293.49,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":228.8,\"CEB\":342.1,\"COSTDO\":456.5,\"COSTSO\":1278.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":411.4,\"COSTTO\":411.4}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27821\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41984.43\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":40600,\"priceDoubleOcc\":\"41984.43\",\"priceSingleOcc\":117556.4,\"priceExtraBed\":\"31465.25\",\"priceWithoutBed\":\"21038.35\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41984.43,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":250.8,\"CEB\":375.1,\"COSTDO\":500.5,\"COSTSO\":1401.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":451,\"COSTTO\":451}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"27822\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"45675.37\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":44168,\"priceDoubleOcc\":\"45675.37\",\"priceSingleOcc\":127891.01999999999,\"priceExtraBed\":\"34233.45\",\"priceWithoutBed\":\"22883.82\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45675.37,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":272.8,\"CEB\":408.1,\"COSTDO\":544.5,\"COSTSO\":1524.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":490.6,\"COSTTO\":490.6}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any entrance fees &amp;amp; fares to the mentioned sightseeing places&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation specified or of similar standard rooms on Half Board Basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation on Day 01 at Level 1 hotel on Full Board Basis (Lunch &amp;amp; Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by A\\/C Vehicle as per the Itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Service of English-Speaking Chauffeur Guide for 02 to 06 pax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 x 500 ml water bottles per person per day&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"198873\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[198873],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198876\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[198876],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198879\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[198879],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198882\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[198882],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198885\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[198885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198888\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[198888],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198891\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[198891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198894\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[198894],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198897\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[198897],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198900\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[198900],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198903\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[198903],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Negombo,Kandy,Nuwara Eliya,Bentota,Colombo','Negombo,Indian Subcontinent,Sri Lanka,Kandy,Nuwara Eliya,Bentota,Colombo',NULL,'19147,13493,19797,2949,6689',38293,45675,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'Sri Lanka','200','2023-09-07 12:34:01','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'diverse-srilanka',NULL,NULL,NULL,0),(321,58349,1,5293,0,0,0,'Honeymoon,Family,Culture,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":58349,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/turkey-splendour-tour-with-antalya_1690955048\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;FIXED DEPARTURE GROUP TOUR (&amp;nbsp;09 Days\\/ 08 Nights )&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;30 Sep &amp;ndash; 8 Oct 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Istanbul (2N) &amp;ndash; Kusadasi (2N) &amp;ndash; Antalya (2N) &amp;ndash; Cappadocia (2N)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;TOUR HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;See the magnificent Hagia Sophia and the world-famous Blue Mosque&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shop for traditional Turkish goods at the iconic Grand Bazaar of Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Taste delicious Turkish wines at the beautiful village of Sirince&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk barefoot on the exquisite &amp;ldquo;Travertine terrace&amp;rdquo; (Cotton Castles) of Pamukkale&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Relax at the stunning beaches of Antalya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be captivated by the bewitching landscape of fairy chimneys, cave dwellings, and otherworldly rock formations in Cappadocia.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;ITINERARY IN BRIEF&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Day 01 Arrival in Istanbul and enjoy Bosporus Dinner Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 02 Istanbul City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 03 Transfer to Kusadasi by drive (550 Kms, 06 Hrs)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 04 Ephesus Tour From Kusadasi and Wine Tasting in Sirince Village&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 05 Pamukkale tour and Transfer to Antalya (450 Kms, 06 Hrs)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 06 Relax at Beach in Antalya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 07 Visit Konya and transfer to Cappadocia (500 Kms, 6 &amp;frac12; hrs)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 08 Hot Air Balloon Experience (Optional) and Cappadocia sightseeing tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 09 Departure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cappadocia\",\"DestinationPlacesSysId\":5094,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"TURKEY GROUP TOUR 2023\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18576\",\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Family,Culture,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2023-08-23\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":403910,\"Name\":\"Levni Hotel and SPA\",\"Star\":\"5.00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.013374000000000\",\"Long\":\"28.975913000000000\",\"Address\":\"Ankara Cad. No:12 Sirkeci Istanbul 34110 Turkey, Turkey, \"},\"Images\":[],\"CityId\":12905,\"Brief\":\"This new hotel is located near the historical sites such as the Santa Sophia,   Topkapi Palace and the Blue Mosque. It is within easy reach of the famous Grand Bazaar and Basilica Cistern as well as the pier for crossings into Asia. The rooms are medium sized decorated with high quality furnishings. Triple rooms are with twin and extra bed In the restaurant, you can have dishes of traditional Ottoman and Turkish cuisine as well as national dishes of  various world countries. Adjacent to the dining room is the winter garden where you can start your day with a unique Turkish style breakfast. This  hotel is formed by three modern buildings in the historical part of the   city. This is medium sized modern with high rise reception desk. This is brand new deluxe category hotel. (01\\/11 SB)\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52764,\"Title\":\"GELATA TOWER\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52765,\"Title\":\"Grand Bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52766,\"Title\":\"Ephesus Ancient City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52767,\"Title\":\"Wine Tasting in Sirince Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":24252,\"Title\":\"Pamukkale Hierapolis & Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52770,\"Title\":\"Avanos Pottery Workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52768,\"Title\":\"Cappadocia Sightseeing tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52771,\"Title\":\"Love Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52772,\"Title\":\"Ozkonak Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52769,\"Title\":\"Pasabag \\u2013 Monks Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":14622,\"Title\":\"Kusadasi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":404797,\"Name\":\"Ilayda Avantgarde Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"37.863074\",\"Long\":\"27.261398\",\"Address\":\"ATATURK BULVARI 42 09400 KUSADASI  TR, 09400\"},\"Images\":[],\"CityId\":14622,\"Brief\":\"The Ilayda Avantgarde Hotel is exquisitely located in the city centre of Kusadasi, directly across the main beach promenade with a beautiful view over the Aegean Sea. Various shopping areas, restaurants and bars are just a stone&#039;s throw away. Nearby attractions are Ephesus, the House of Virgin Mary and the Pigeon Island. A delicious breakfast is served in buffet style at the rooftop restaurant with a stunning view over the Mediterranean Sea and the Kusadasi marina. The hotel also offers a scenic rooftop pool with a spacious sundeck which turns into a stylish rooftop lounge in the evening, while during the day the terrace coffee shop situated on the ground floor is the perfect place to enjoy a cappucino while watching people pass by. The modernly designed rooms, offer comfort and style and include free Wi-Fi access for added convenience.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/06\\/060362\\/060362a_hb_a_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52764,\"Title\":\"GELATA TOWER\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52765,\"Title\":\"Grand Bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52766,\"Title\":\"Ephesus Ancient City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52767,\"Title\":\"Wine Tasting in Sirince Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":24252,\"Title\":\"Pamukkale Hierapolis & Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52770,\"Title\":\"Avanos Pottery Workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52768,\"Title\":\"Cappadocia Sightseeing tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52771,\"Title\":\"Love Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52772,\"Title\":\"Ozkonak Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52769,\"Title\":\"Pasabag \\u2013 Monks Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":27618,\"Name\":\"Ramada Plaza Antalya\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"36.876805664913\",\"Long\":\"30.707843899727\",\"Address\":\"Gen&ccedil;lik Mahallesi Fevzi &Ccedil;akmak Caddesi No:22 07100 Antalya\"},\"Images\":{\"Image\":[{\"ImagId\":644480,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/158\\/22986_b1_C.jpg\"},{\"ImagId\":644481,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/162\\/22986_b2_C.jpg\"},{\"ImagId\":644482,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/805\\/317\\/22986_b6_C.jpg\"},{\"ImagId\":644483,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/36\\/132\\/125\\/22986_b7_C.jpg\"},{\"ImagId\":644484,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/805\\/327\\/22986_e1_A.jpg\"},{\"ImagId\":644485,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/186\\/22986_e3_A.jpg\"},{\"ImagId\":644486,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/198\\/22986_g1_A.jpg\"},{\"ImagId\":644487,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/805\\/357\\/22986_g6_A.jpg\"},{\"ImagId\":644488,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/170\\/22986_c1_A.jpg\"},{\"ImagId\":644489,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/202\\/22986_g4_A.jpg\"}]},\"CityId\":1151,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at Ramada Plaza Antalya places you in the heart of Antalya, walking distance from Ataturk&amp;apos;s Hosue Museum and Karaalioglu Park.  This 5-star hotel is within close proximity of Antalya Metropolitan Municipality Theater and Hidirilik Tower.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 223 air-conditioned rooms featuring minibars and LCD televisions. Rooms have private furnished balconies. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature rainfall showerheads and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages and body treatments. You can take advantage of recreational amenities such as a health club, an outdoor pool, and an indoor pool. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and an arcade\\/game room. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite at one of the hotel&amp;apos;s 3 restaurants, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink at one of the 3 bars\\/lounges. A complimentary hot\\/cold buffet breakfast is served daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, express check-in, and dry cleaning\\/laundry services. Planning an event in Antalya? This hotel has 30139 square feet (2800 square meters) of space consisting of a conference center and meeting rooms. Guests may use a roundtrip airport shuttle for a surcharge, and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/27\\/201\\/158\\/22986_b1_C.jpg\",\"AccoAminitiesMask\":\"110110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52764,\"Title\":\"GELATA TOWER\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52765,\"Title\":\"Grand Bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52766,\"Title\":\"Ephesus Ancient City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52767,\"Title\":\"Wine Tasting in Sirince Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":24252,\"Title\":\"Pamukkale Hierapolis & Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52770,\"Title\":\"Avanos Pottery Workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52768,\"Title\":\"Cappadocia Sightseeing tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52771,\"Title\":\"Love Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52772,\"Title\":\"Ozkonak Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52769,\"Title\":\"Pasabag \\u2013 Monks Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568192,\"Name\":\"Dedeli Konak Cave Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52764,\"Title\":\"GELATA TOWER\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52765,\"Title\":\"Grand Bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52766,\"Title\":\"Ephesus Ancient City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52767,\"Title\":\"Wine Tasting in Sirince Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14622,\"CityName\":\"Kusadasi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":24252,\"Title\":\"Pamukkale Hierapolis & Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52770,\"Title\":\"Avanos Pottery Workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52768,\"Title\":\"Cappadocia Sightseeing tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52771,\"Title\":\"Love Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52772,\"Title\":\"Ozkonak Underground City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52769,\"Title\":\"Pasabag \\u2013 Monks Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"427784\",\"Title\":\"ARRIVE IN ISTANBUL AND ENJOY BOSPOROUS DINNER CRUISE\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Istanbul International Airport, you will be met by our local representative in Turkey for a brief meet and greet. Later, proceed to your city centre hotel in Istanbul for check-in.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrive at Istanbul International Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Get best city views from top of Gelata Tower &amp;amp; spend time at Istikal street&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy a scenic dinner cruise along the Bosphorus with Turkish entertainment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403910,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10304,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52764,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427785\",\"Title\":\"ISTANBUL SIGHTSEEING TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will proceed for a sightseeing tour of Sultanahmet area, Istanbul&amp;rsquo;s old city.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Istanbul.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Visit the iconic sites of Sultanahmet area in Istanbul on a city tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403910,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52765,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8969,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427786\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427787\",\"Title\":\"TRANSFER TO KUSADASI BY DRIVE (550 KM \\/ 06 HOURS)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, check-out from the hotel. We will transfer to Kusadasi by drive and check- in at our city-centre hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Kusadasi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy scenic drive to the coastal town of Kusadasi and check-in at hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore Kusadasi at your leisure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14622,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404797,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427788\",\"Title\":\"EPHESUS TOUR FROM KUSADASI AND WINE TASTING IN SIRINCE VILLAGE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will proceed to the ancient city of Ephesus for a guided tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Kusadasi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Learn about the ancient Greek city of Ephesus on a tour from Kusadasi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Try delicious Turkish wines at a wine tasting tour in beautiful Sirince village&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14622,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":404797,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52766,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52767,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427789\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14622,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427790\",\"Title\":\"PAMUKKALE TOUR AND DRIVE To ANTALYA (450 KMS, 06 HRS)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Get up for an early breakfast, and afterwards check-out from the hotel. We will proceed to Pamukkale &amp;ndash; The Cotton Palace and the city of Hierapolis as we drive towards Antalya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Antalya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Soak your legs in thermal springs at the amazing cotton castles in Pamukkale&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drive On to Antalya and check-in at the hotel there&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27618,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24252,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427791\",\"Title\":\"RELAX AT THE BEACH IN ANTALYA\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast at the hotel, rest of the day has been kept free for you to relax at the beach and enjoy beach view and activities. You can also opt for an optional sightseeing tour of the city on extra cost.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Antalya Beach.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Relax by the beach and enjoy water activities in Antalya&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27618,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427792\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427793\",\"Title\":\"VISIT KONYA AND TRANSFER TO CAPPADOCIA BY DRIVE (500 KMS \\/ 6 &frac12;\\tHRS)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and proceed to Cappadocia by drive through Konya. Upon arrival, we will transfer to and check-in at our boutique Cave hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Cave Hotel in Cappadocia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Drive to Cappadocia and check-in at cave hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568192,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427794\",\"Title\":\"HOT AIR BALLOON EXPERIENCE (OPTIONAL) AND CAPPADOCIA SIGHTSEEING\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;See the world from above on a fabulous hot-air balloon experience (Optional)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore underground cities and fairy chimneys during Cappadocia tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568192,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52770,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52768,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6080,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52771,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52772,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52769,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"427795\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast at the hotel, transfer to Cappadocia airport to catch a flight back to India via Istanbul.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Board flight to return back to India&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"58349\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"209998.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":209999,\"priceDoubleOcc\":\"209998.95\",\"priceSingleOcc\":467247.9,\"priceExtraBed\":\"178498.95\",\"priceWithoutBed\":\"152248.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":209998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":152248.95,\"CEB\":178498.95,\"COSTDO\":209998.95,\"COSTSO\":467247.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":209998.95,\"COSTTO\":209998.95}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the tour - Rs. 75,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;60 Days or more prior to the departure of tour - 50 % of holiday cost*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;40 Days or more prior to the departure of tour - 100% of holiday cost*&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;* Once the purchased air tickets are fully booked, airfare will be collected at the time of reservation besides the advance deposit. Cancellation charges of flight tickets will be additionally charged as per actual in such case. This will also be intimated at the time of reservation.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;More than 60 Days before departure of tour - INR 40,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;41 to 60 Days before departure of tour - 35% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;21 to 40 Days before departure of tour - 75% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 to 20 Days before departure of tour - 100% of holiday cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;There is a possibility that your Tour Manager could change in-between the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If flight timing does not suit the meal time or Indian meal is not possible during a sightseeing tour, we shall provide you a packed meal.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As a third person in a Triple room, in some cities extra bed or cot may not be available. In that case, a room with two queen beds or a king bed with a roll away bed will be provided.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On some occasions you may have to join another group in case the group does not have adequate number of members.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the airfare charged by the airline (presently calculated as of 20th June, 2023)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote has been shared based on Rate of Exchange on 20th June2023 &amp;ndash; (1 Euro = 90 INR). The final tour cost shall be subject to change in case there is major change in ROE.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mandatory tipping for on tour Services (Coach Driver, Local Guides etc) (approx. Euro 3 per day \\/ per person)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats in all international and domestic flights will be allocated at random as per availability at time of check-In at airport. Seats next to each other can&amp;rsquo;t be guaranteed. If you wish to pre-purchase the airline seats, charges will be informed on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses of personal nature such as porterage, laundry expenses, mini-bar, mineral water, telephone charges, food &amp;amp; drink that are not a part of the package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of optional excursions, city sightseeing, entrance fees &amp;amp; local guides availed of by the passengers, that is not mentioned in the inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional charges due to Local Events&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If any views rooms are requested rates will change and rates will be advised on case to case basis. Rates for SGL, CWB, CNB can be given on request as well.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund will be provided in case of any unused services, or if you do not show up for any service as per time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Limited availability of flight tickets, security alerts and random closures might affect the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels take security deposit at the time of check-in. The deposit is refunded as per hotel policies after check-out. The same is not included in above cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in the inclusion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;MEALS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All meals are included from arrival in Istanbul to departure from Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily American Breakfast. (Except Day 1)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Indian lunches (Veg and Non-Veg) included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 Local lunches (Veg and Non-veg) during Istanbul City tour, en-route Kusadasi, Ephesus tour, Pamukkale tour, en-route Cappadocia and Cappadocia tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;7 Indian dinners (Veg and Non-Veg) included&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeing&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Istanbul &lt;\\/strong&gt;- Galata Tower | Free time at Istakal Street | Bosphorus Dinner Cruise with Turkish Entertainment| Istanbul sightseeing tour | Blue Mosque | Hagia Sophia | Topkapi Palace | Grand Bazaar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Kusadasi&lt;\\/strong&gt; - Ephesus Ancient City Tour | Wine Tasting in Sirince Village |&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Antalya&lt;\\/strong&gt; - Pamukkale tour with access ticket to hot springs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cappadocia&lt;\\/strong&gt; - Cappadocia Sightseeing tour | Goreme Open Air Museum | Pasabag &amp;ndash; Monks Valley | Devrent Valley | Avanos Pottery Workshop | Love Valley | Ozkonak Underground City&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;MEDICAL INSURANCE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Normal insurance charges for the duration of the tour are included in the tour price. However, any passenger above the age of 60 years and those passengers who wish to extend their stay will be required to pay additional charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;VISA REQUIREMENTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cost of visas including documentation and processing fees as of 20th June 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any further increase in the same has to be borne by the passengers.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;OTHER INCLUSIONS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Professional services of a friendly Tour Manager or a local Representative subject to minimum 20 customers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy class airfare ex-Delhi as per the itinerary (subject to availability at the time of booking &amp;ndash; limited number of seats purchased)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; excursions with entrance fees (as specified in the itinerary) by a comfortable air-conditioned vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bottles of mineral water on tour day (2 bottles per day)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"427784\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[427784],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427785\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[427785],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427786\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[427786],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427787\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[427787],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427788\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[427788],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427789\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[427789],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427790\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[427790],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427791\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[427791],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427792\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[427792],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427793\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[427793],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427794\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[427794],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"427795\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[427795],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20230930\":{\"FromDate\":\"2023-09-30\",\"FromDateDMY\":\"30\\/09\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"5094\":{\"CityName\":\"Cappadocia\",\"FromDate\":{\"20230930\":{\"FromDate\":\"2023-09-30\",\"FromDateDMY\":\"30\\/09\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Kusadasi,Antalya,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Kusadasi,Antalya,Cappadocia',NULL,'12905,14622,1151,5094',209999,209999,8,NULL,NULL,NULL,2,'',0,'2023-08-23 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Turkey','222','2023-08-23 12:00:53','2023-08-23 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'turkey-group-tour-2023',NULL,NULL,NULL,0),(322,58377,1,5293,0,0,0,'Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":58377,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/vietnam-group-tour_1690970114\",\"BookingValidUntill\":\"2023-10-07\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;ALL OF VIETNAM GROUP TOUR&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Departure Dates : (30 Sept &amp;ndash; 7 Oct 2023) (7 Oct &amp;ndash; 14 Oct 2023)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;08 Days \\/ 07 Nights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ho Chi Minh City (3N)&amp;ndash; Danang (2N) - Hanoi (1N) &amp;ndash; Halong Bay Cruise (1N)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;TOUR HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Discover traditional Vietnamese culture on a boat tour across villages in Mekong Delta &amp;ndash; local coconut candy factory, rice-wine making and Bee Farm&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Cu Chi Tunnels - the major underground hideout used by Vietnamese people against US forces&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ride the longest cable car in the world to reach Golden Bridge in Da Nang&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Try world-famous Vietnamese coffee on a coffee tasting experience in Hoi An&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Get mesmerized by the beautiful landscapes of Halong Bay on overnight cruise&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;ITINERARY IN BRIEF&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Day 01 Arrive in Ho Chi Minh City and Sightseeing tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 02 Visit to Mekong Delta tour and My Tho City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 03 Cu Chi Tunnel Tour from Ho Chi Minh City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 04 Transfer to Da Nang by flight and Hoi an sightseeing tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 05 Ba Na Hills Tour with Golden Bridge&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 06 Transfer to Hanoi by flight and city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 07 Board Halong Bay Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 08 Deboard cruise and Departure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Hanoi\",\"DestinationPlacesSysId\":11487,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"VIETNAM GROUP TOUR 2023\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18576\",\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Family,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568229,\"Name\":\"Eden Star hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":31115,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52797,\"Title\":\"Boat tour of My Tho city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52799,\"Title\":\"Hoi An village tour from DaNang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52800,\"Title\":\"Ba Na Hills Tour with Golden Bridge and Fantasy Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52804,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":7518,\"Title\":\"Danang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568231,\"Name\":\"A La Carte Beach Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":7518,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52797,\"Title\":\"Boat tour of My Tho city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52799,\"Title\":\"Hoi An village tour from DaNang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52800,\"Title\":\"Ba Na Hills Tour with Golden Bridge and Fantasy Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52804,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568232,\"Name\":\"The Ann Hanoi Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11487,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52797,\"Title\":\"Boat tour of My Tho city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52799,\"Title\":\"Hoi An village tour from DaNang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52800,\"Title\":\"Ba Na Hills Tour with Golden Bridge and Fantasy Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52804,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568233,\"Name\":\"Peony cruise\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52797,\"Title\":\"Boat tour of My Tho city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52799,\"Title\":\"Hoi An village tour from DaNang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52800,\"Title\":\"Ba Na Hills Tour with Golden Bridge and Fantasy Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52804,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"428062\",\"Title\":\"ARRIVE IN TO HO CHI MINH CITY AND SIGHTSEEING TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Tan Son Nhat International Airport, you will be greeted by your tour manager in Ho Chi Minh and transferred to the hotel for early check in and breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Ho Chi Minh City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nArrival at Ho Chi Minh City and transfer to hotel for early check-in and breakfast&lt;br \\/&gt;\\r\\nHalf day city tour of Ho Chi Minh&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52795,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428063\",\"Title\":\"VISIT TO MEKONG DELTA AND MYTHO CITY\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at hotel, travel past miles of flat rice fields, along a bustling road to My Tho City, which is part of the world&amp;rsquo;s largest delta and Vietnam&amp;#39;s rice bowl - Mekong Delta.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Ho Chi Minh City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nEnjoy boat tour of My Tho city and see local villagers involved in daily activity&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52797,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52796,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428064\",\"Title\":\"CU CHI TUNNEL TOUR FROM HO CHI MINH CITY\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast at the hotel, proceed for a full-day sightseeing tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at a hotel in Ho Chi Minh City.&lt;br \\/&gt;\\r\\n&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nSee the world famous Cu Chi Tunnels and other popular sights in Saigon&lt;br \\/&gt;\\r\\nRest of the day at leisure for shopping or sightseeing on own&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52798,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428065\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428066\",\"Title\":\"TRANSFER TO DA NANG BY FLIGHT AND HOI AN TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to airport to catch a flight to Da Nang. Upon arrival, check in at our hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at DaNang.&lt;br \\/&gt;\\r\\n&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nCatch flight to DaNang&lt;br \\/&gt;\\r\\nEnjoy Hoi An village tour from DaNang&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52799,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428067\",\"Title\":\"BA NA HILLS TOUR WITH GOLDEN BRIDGE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast at the hotel, proceed for a full-day sightseeing tour at Ba Na Hills.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Danang.&lt;br \\/&gt;\\r\\n&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nEnjoy sightseeing tour of Ba Na Hills with Golden Bridge and Fantasy Park&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52800,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428068\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428069\",\"Title\":\"FLIGHT TO HANOI AND CITY TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to airport to catch a flight to Hanoi. Upon arrival, check in at our hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hanoi.&lt;br \\/&gt;\\r\\n&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTransfer to Hanoi by flight and enjoy sightseeing tour of the beautiful city&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568232,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52802,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13628,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52801,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428070\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428071\",\"Title\":\"BOARD HALONG BAY CRUISE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to the Tuan Chau harbour where you check-in at your cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay on cruise in Ha Long Bay.&lt;br \\/&gt;\\r\\n&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTransfer to Ha Long City to board your cruise&lt;br \\/&gt;\\r\\nCruise the open sea and see beautiful islands in Descending Dragon Bay area&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568233,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52804,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52803,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"428072\",\"Title\":\"DEBOARD CRUISE- TRANSFER TO AIRPORT FOR DEPRTURE\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nDeboard cruise and drive to Hanoi&lt;br \\/&gt;\\r\\nTransfer to airport to board flight to return to India&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"58377\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"146998.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-09-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95},{\"From\":\"2023-10-07\",\"To\":\"2023-10-07\",\"Currency\":1,\"priceTripleOcc\":146999,\"priceDoubleOcc\":\"146998.95\",\"priceSingleOcc\":333372.9,\"priceExtraBed\":\"120748.95\",\"priceWithoutBed\":\"104998.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":146998.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":104998.95,\"CEB\":120748.95,\"COSTDO\":146998.95,\"COSTSO\":333372.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":146998.95,\"COSTTO\":146998.95}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the tour - INR 25,000 per person60 Days or more prior to the departure of tour - 50% of holiday cost*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Days or more prior to the departure of tour - 100% of holiday cost*&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;* Once the purchased air tickets are fully booked, airfare will be collected at the time of reservation besides the advance deposit. Cancellation charges of flight tickets will be additionally charged as per actual in such case. This will also be intimated at the time of reservation.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;More than 60 Days before departure of tour - INR 25,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;41 to 60 Days before departure of tour - 25% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;21 to 40 Days before departure of tour - 50% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11 to 20 Days before departure of tour - 75% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 to 10 Days before departure of tour - 100% of holiday cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;There is a possibility that your Tour Manager could change in-between the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On days when you are taking internal flights &amp;amp; flight timing don&amp;rsquo;t suit the meal time or Indian meal is not possible during a tour, we shall provide you packed meal&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As a 3rd person in Triple room, extra bed or cot may not be available. In that case, a room with two queen beds or a king bed with a roll away bed will be provided.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On some occasions you may have to join another group in case the group does not have adequate number of members.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the airfare charged by the airline&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote has been shared based on Rate of Exchange on 20nd June2023 &amp;ndash; (1 USD = 82.1 INR). The final tour cost shall be subject to change in case there is major change in ROE.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mandatory tipping for on tour Services (Coach Driver, Local Guides etc) (approx. USD 4 per day \\/ per person)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats in international &amp;amp; domestic flights will be allocated at random as per availability at time of check-in. Seats next to each other can&amp;rsquo;t be guaranteed. If you wish to pre-purchase the airline seats, charges will be informed on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;PCR test (if required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses of personal nature such as porterage, laundry expenses, mini-bar, mineral water, telephone charges, food &amp;amp; drink that are not a part of the package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of optional excursions, city sightseeing, entrance fees &amp;amp; local guides availed of by the passengers, that is not mentioned in the inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional charges due to Local Events&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If any views rooms are requested rates will change and rates will be advised on case to case basis. Rates for SGL, CWB, CNB can be given on request as well.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund will be provided in case of any unused services, or if you do not show up for any service as per time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Limited availability of flight tickets, security alerts and random closures might affect the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels take security deposit at the time of check-in. The deposit is refunded as per hotel policies after check-out. The same is not included in above cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in the inclusion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;MEALS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All meals are included from arrival in Hanoi to departure from Ho Chi Minh City.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Continental Breakfast at hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 lunches at Indian restaurants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 lunches at local restaurant during Mekong Delta tour and Bana Hills Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 Dinner at Indian restaurant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 lunch, 1 dinner, 1 breakfast &amp;amp; 1 brunch onboard Halong Bay Cruise (local food)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;MEDICAL INSURANCE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Normal insurance charges for the duration of the tour are included in the tour price. However, any passenger above the age of 60 years and those passengers who wish to extend their stay will be required to pay additional charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cost of e-visa including documentation and processing fees as of 20 June 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any further increase in the same has to be borne by the passengers.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;OTHER INCLUSIONS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Professional services of a friendly Tour Manager or a local Representative subject to minimum 20 customers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy class airfare ex-Delhi as per the itinerary (subject to availability at the time of booking &amp;ndash; limited number of seats purchased) &amp;ndash; International flights not included for joining\\/leaving passengers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; excursions with entrance fees (as specified in the itinerary) by a comfortable air-conditioned vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bottles of mineral water on tour day (2 bottles per day)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"428062\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[428062],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428063\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[428063],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428064\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[428064],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428065\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[428065],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428066\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[428066],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"428067\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[428067],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428068\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[428068],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428069\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[428069],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"428070\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[428070],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"428071\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[428071],\"Remark\":[\"&lt;p&gt;All transfers to Cruise Harbour by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"428072\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[428072],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20230930\":{\"FromDate\":\"2023-09-30\",\"FromDateDMY\":\"30\\/09\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231007\":{\"FromDate\":\"2023-10-07\",\"FromDateDMY\":\"07\\/10\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"11487\":{\"CityName\":\"Hanoi\",\"FromDate\":{\"20230930\":{\"FromDate\":\"2023-09-30\",\"FromDateDMY\":\"30\\/09\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231007\":{\"FromDate\":\"2023-10-07\",\"FromDateDMY\":\"07\\/10\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ho Chi Minh City,Danang,Hanoi,Halong','Ho Chi Minh City,South East Asia,Vietnam,Orient,Danang,Hanoi,Halong',NULL,'31115,7518,11487,11405',146999,146999,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-07 00:00:00','2023-10-07 00:00:00',3,'Vietnam','236','2023-09-07 11:45:22','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'vietnam-group-tour-2023',NULL,NULL,NULL,0),(323,58511,1,5293,0,0,0,'Honeymoon,Family,Cruise,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":58511,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/exotic-vietnam-group-tour_1691125520\",\"BookingValidUntill\":\"2023-10-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;EXOTIC VIETNAM GROUP TOUR&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Departure Dates : 28 Oct 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ho Chi Minh City (3N) &amp;ndash; Hoi An (1N) &amp;ndash; Danang (2N) - Hanoi (1N) ) &amp;ndash; HalongBay Cruise (1N)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09 Days \\/ 08 Nights&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;TOUR HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Discover traditional Vietnamese culture on a boat tour across villages in Mekong Delta &amp;ndash; local coconut candy factory, rice-wine making and Bee Farm&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Cu Chi Tunnels - the major underground hideout used by Vietnamese people against US forces&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ride the longest cable car in the world to reach Golden Bridge in DaNang&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Try world-famous Vietnamese coffee on a coffee tasting experience in Hoi An&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Get mesmerized by the beautiful landscapes of Halong Bay on overnight cruise&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;ITINERARY IN BRIEF&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Day 01 Arrive in Ho Chi Minh City and Sightseeing tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 02 Visit to Mekong Delta tour and My Tho City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 03 Cu Chi Tunnel Tour from Ho Chi Minh City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 04 Transfer to Da Nang by flight and drive to Hoi An&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 05 Marble Mountain Tour and drive back to Da Nang&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 06 Ba Na Hills Tour with Golden Bridge&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 07 Transfer to Hanoi by flight and city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 08 Board Halong Bay Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 09 Deboard cruise and Departure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Hanoi\",\"DestinationPlacesSysId\":11487,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"EXOTIC VIETNAM GROUP TOUR 2023\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18576\",\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Visa,Cruise,All Transfers\",\"PackageType\":\"Honeymoon,Family,Cruise,Romantic,Shopping and Nightlife,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568229,\"Name\":\"Eden Star hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":31115,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52970,\"Title\":\"Hoi An village tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52983,\"Title\":\"Marble Mountains tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52984,\"Title\":\"Ba Na Hills Tour with Cable Car\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52985,\"Title\":\"Golden Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52986,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":36150,\"Title\":\"Hoi An\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568606,\"Name\":\"Laluna Riverside hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":36150,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52970,\"Title\":\"Hoi An village tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52983,\"Title\":\"Marble Mountains tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52984,\"Title\":\"Ba Na Hills Tour with Cable Car\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52985,\"Title\":\"Golden Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52986,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":7518,\"Title\":\"Danang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568231,\"Name\":\"A La Carte Beach Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":7518,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52970,\"Title\":\"Hoi An village tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52983,\"Title\":\"Marble Mountains tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52984,\"Title\":\"Ba Na Hills Tour with Cable Car\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52985,\"Title\":\"Golden Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52986,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568232,\"Name\":\"The Ann Hanoi Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11487,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52970,\"Title\":\"Hoi An village tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52983,\"Title\":\"Marble Mountains tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52984,\"Title\":\"Ba Na Hills Tour with Cable Car\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52985,\"Title\":\"Golden Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52986,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568233,\"Name\":\"Peony cruise\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":52795,\"Title\":\"Half day city tour of Ho Chi Minh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52796,\"Title\":\"Full day trip to Mekong Delta\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52798,\"Title\":\"Cu Chi Tunnel Tour from Ho Chi Minh City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52970,\"Title\":\"Hoi An village tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52983,\"Title\":\"Marble Mountains tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52984,\"Title\":\"Ba Na Hills Tour with Cable Car\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52985,\"Title\":\"Golden Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52801,\"Title\":\"Local coffee tasting\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52802,\"Title\":\"Cyclo Tour or Green Car Tour in Old Quarters of Hanoi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52803,\"Title\":\"Stay on the Halong Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":52986,\"Title\":\"On cruise activities Tai chi Training, cooking classes, etc (Subject to availability & weather conditions)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"429335\",\"Title\":\"ARRIVE IN TO HO CHI MINH CITY AND SIGHTSEEING TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Tan Son Nhat International Airport, you will be greeted by your tour manager in Ho Chi Minh and transferred to the hotel for early check in and breakfast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Ho Chi Minh City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrival at Ho Chi Minh City and transfer to hotel for early check-in and breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half day city tour of Ho Chi Minh&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52795,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429336\",\"Title\":\"VISIT TO MEKONG DELTA AND MYTHO CITY\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at hotel, travel past miles of flat rice fields, along a bustling road to My Tho City, which is part of the world&amp;rsquo;s largest delta and Vietnam&amp;#39;s rice bowl - Mekong Delta.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Ho Chi Minh City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy boat tour of My Tho city and see local villagers involved in daily activity&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52796,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429337\",\"Title\":\"CU CHI TUNNEL TOUR FROM HO CHI MINH CITY\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast at the hotel, proceed for a full-day sightseeing tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at a hotel in Ho Chi Minh City.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;See the world famous Cu Chi Tunnels and other popular sights in Saigon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rest of the day at leisure for shopping or sightseeing on own&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568229,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52798,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429338\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429339\",\"Title\":\"TRANSFER TO DA NANG BY FLIGHT AND DRIVE TO HOI AN\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to airport to catch a flight to Da Nang. Upon arrival, drive to Hoi An and check-in at the hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hoi An.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Catch flight to DaNang and drive to Hoi An&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy Hoi An village tour and overnight stay&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36150,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52970,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429340\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36150,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429341\",\"Title\":\"MARBLE MOUNTAIN TOUR AND DRIVE BACK TO DA NANG\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast at the hotel, morning is free for you to explore Hoi An on your own. Later, check out from the hotel and drive to Marble mountains enroute to Da Nang.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Da Nang.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy fabulous views atop Marble mountains &amp;amp; watch local artisans in action&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer to Da Nang and relax by the city&amp;rsquo;s world famous My Khe Beach&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52983,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429342\",\"Title\":\"BA NA HILLS TOUR WITH GOLDEN BRIDGE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast at the hotel, proceed for a full-day sightseeing tour at Ba Na Hills.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, drive back to DaNang and overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy sightseeing tour of Ba Na Hills with Golden Bridge and Fantasy Park&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568231,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52984,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52985,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429343\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429344\",\"Title\":\"FLIGHT TO HANOI AND CITY TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to airport to catch a flight to Hanoi. Upon arrival, check in at our hotel there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hanoi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Transfer to Hanoi by flight and enjoy sightseeing tour of the beautiful city&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568232,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13628,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52801,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52802,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429345\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429346\",\"Title\":\"BOARD HALONG BAY CRUISE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to the Tuan Chau harbour where you check-in at your cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay on cruise in Ha Long Bay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Transfer to Ha Long City to board your cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise the open sea and see beautiful islands in Descending Dragon Bay area&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568233,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":52803,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":52986,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429347\",\"Title\":\"DEBOARD CRUISE- TRANSFER TO AIRPORT FOR DEPRTURE\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":9,\"Program\":\"&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Deboard cruise and drive to Hanoi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer to airport to board flight to return to India&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"58511\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"157498.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95},{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95},{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95},{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95},{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95},{\"From\":\"2023-10-28\",\"To\":\"2023-10-28\",\"Currency\":1,\"priceTripleOcc\":157499,\"priceDoubleOcc\":\"157498.95\",\"priceSingleOcc\":356997.9,\"priceExtraBed\":\"125998.95\",\"priceWithoutBed\":\"108148.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":157498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108148.95,\"CEB\":125998.95,\"COSTDO\":157498.95,\"COSTSO\":356997.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":157498.95,\"COSTTO\":157498.95}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the tour - INR 25,000 per person&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;60 Days or more prior to the departure of tour - 50% of holiday cost*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Days or more prior to the departure of tour - 100% of holiday cost*&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;* Once the purchased air tickets are fully booked, airfare will be collected at the time of reservation besides the advance deposit. Cancellation charges of flight tickets will be additionally charged as per actual in such case. This will also be intimated at the time of reservation.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;More than 60 Days before departure of tour - INR 25,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;41 to 60 Days before departure of tour - 25% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;21 to 40 Days before departure of tour - 50% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11 to 20 Days before departure of tour - 75% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 to 10 Days before departure of tour - 100% of holiday cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;There is a possibility that your Tour Manager could change in-between the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On days when you are taking internal flights &amp;amp; flight timing don&amp;rsquo;t suit the meal time or Indian meal is not possible during a tour, we shall provide you packed meal&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As a third person in a Triple room, in some cities extra bed or cot may not be available. In that case, a room with two queen beds or a king bed with a roll away bed will be provided.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On some occasions you may have to join another group in case the group does not have adequate number of members.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the airfare charged by the airline&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote has been shared based on Rate of Exchange on 20nd June2023 &amp;ndash; (1 USD = 82.1 INR). The final tour cost shall be subject to change in case there is major change in ROE.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mandatory tipping for on tour Services (Coach Driver, Local Guides etc (approx. USD 4 per day \\/ per person)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats in international &amp;amp; domestic flights will be allocated at random as per availability at time of check-in. Seats next to each other can&amp;rsquo;t be guaranteed. If you wish to pre-purchase the airline seats, charges will be informed on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses of personal nature such as porterage, laundry expenses, mini-bar, mineral water, telephone charges, food &amp;amp; drink that are not a part of the package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of optional excursions, city sightseeing, entrance fees &amp;amp; local guides availed of by the passengers, that is not mentioned in the inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional charges due to Local Events.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If any views rooms are requested rates will change and rates will be advised on case to case basis. Rates for SGL, CWB, CNB can be given on request as well.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund will be provided in case of any unused services, or if you do not show up for any service as per time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Limited availability of flight tickets, security alerts and random closures might affect the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels take security deposit at the time of check-in. The deposit is refunded as per hotel policies after check-out. The same is not included in above cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in the inclusion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;MEALS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All meals are included from arrival in Ho Chi Minh City to departure from Hanoi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Continental Breakfast at hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 lunches at Indian restaurants&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 lunches at local restaurant at Mekong Delta, Bana Hills&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;7 Dinners at Indian restaurant&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 lunch, 1 dinner, 1 breakfast &amp;amp; 1 brunch onboard Halong Bay Cruise (local food)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;MEDICAL INSURANCE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Normal insurance charges for the duration of the tour are included in the tour price. However, any passenger above the age of 60 years and those passengers who wish to extend their stay will be required to pay additional charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cost of e-visa including documentation and processing fees as of 1st Feb 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any further increase in the same has to be borne by the passengers.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;OTHER INCLUSIONS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Professional services of a friendly Tour Manager or a local Representative subject to minimum 20 customers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy class airfare ex-Delhi as per the itinerary (subject to availability at the time of booking &amp;ndash; limited number of seats purchased)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; excursions with entrance fees (as specified in the itinerary) by a comfortable air-conditioned vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bottles of mineral water on tour day (2 bottles per day)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"429335\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[429335],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429336\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[429336],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429337\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[429337],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429338\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[429338],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429339\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[429339],\"Remark\":[\"&lt;p&gt;All transfers &amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429340\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[429340],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429341\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[429341],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429342\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[429342],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429343\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[429343],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429344\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[429344],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429345\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[429345],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429346\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[429346],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429347\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[429347],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20231028\":{\"FromDate\":\"2023-10-28\",\"FromDateDMY\":\"28\\/10\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ho Chi Minh City,Hoi An,Danang,Hanoi,Halong','Ho Chi Minh City,South East Asia,Vietnam,Orient,Hoi An,Danang,Hanoi,Halong',NULL,'31115,36150,7518,11487,11405',157499,157499,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-28 00:00:00','2023-10-28 00:00:00',3,'Vietnam','236','2023-09-07 11:44:59','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'exotic-vietnam-group-tour-2023',NULL,NULL,NULL,0),(324,58565,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":58565,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/australia-tour---dussehra-special_1691211753\",\"BookingValidUntill\":\"2023-10-25\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;ALL OF AUSTRALIA GROUP TOUR&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;25 Oct&amp;ndash; 4 Nov 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;11 Days \\/ 10 Nights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Melbourne (2N), Cairns (3N), Gold Coast (2N), Sydney (3N)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;TOUR HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;See penguins up close with premium tickets at Phillip Islands in Melbourne&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy tour of the iconic MCG Stadium and Sydney Opera House from inside&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marvel at colourful corals underwater at the Great Barrier reef&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Relax at the stunning golden sand beach in Gold Coast - surfer&amp;rsquo;s paradise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore the vibrant and cosmopolitan city of Sydney on a city tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;ITINERARY IN BRIEF&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Day 01 Arrive in Melbourne and evening at leisure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 02 Melbourne City tour with Penguin Parade and MCG&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 03 Transfer to Cairns by flight&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 04 Excursions to Kuranda Rainforest with 1-way skyrail&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 05 Great Barrier Reef Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 06 Transfer to Gold Coast by flight and Jetboat ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 07 Theme Parks of Gold Coast - Movie World\\/Wet-n-Wild&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 08 Transfer to Sydney and enjoy Showboat Dinner Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 09 Blue Mountains Tour and Bondi Beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 10 Sydney Sightseeing Tour with Opera House&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Day 11 Fly Back to India&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Sydney\",\"DestinationPlacesSysId\":26541,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"AUSTRALIA TOUR - DUSSEHRA SPECIAL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18576\",\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Guided Tours,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-25\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":35383,\"Title\":\"Melbourne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568807,\"Name\":\"Radisson on Flagstaff Gardens Melbourne\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35383,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":53038,\"Title\":\"Melbourne City tour with Penguin Parade and MCG\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53039,\"Title\":\"Kuranda rainforest with one-way skyrail and army duck tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53040,\"Title\":\"Great Barrier Reef Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53041,\"Title\":\"Jet Boat Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53042,\"Title\":\"Any 1 out of 2 Theme Parks (Movie World \\/ Wet \\u2018n\\u2019 Wild\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53043,\"Title\":\"Sydney Showboat Cruise with dinner\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53044,\"Title\":\"City tour of Sydney | Madame Tussauds | Sydney Tower Eye| SEA-Life Aquarium | Wildlife World | Opera House Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53045,\"Title\":\"Scenic World at Blue Mountains | Bondi Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":4693,\"Title\":\"Cairns\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568808,\"Name\":\"Holiday Inn Harbourside Cairns\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":4693,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":53038,\"Title\":\"Melbourne City tour with Penguin Parade and MCG\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53039,\"Title\":\"Kuranda rainforest with one-way skyrail and army duck tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53040,\"Title\":\"Great Barrier Reef Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53041,\"Title\":\"Jet Boat Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53042,\"Title\":\"Any 1 out of 2 Theme Parks (Movie World \\/ Wet \\u2018n\\u2019 Wild\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53043,\"Title\":\"Sydney Showboat Cruise with dinner\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53044,\"Title\":\"City tour of Sydney | Madame Tussauds | Sydney Tower Eye| SEA-Life Aquarium | Wildlife World | Opera House Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53045,\"Title\":\"Scenic World at Blue Mountains | Bondi Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":10616,\"Title\":\"Gold Coast\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":568809,\"Name\":\"Hotel Vocco Gold Coast\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":10616,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":53038,\"Title\":\"Melbourne City tour with Penguin Parade and MCG\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53039,\"Title\":\"Kuranda rainforest with one-way skyrail and army duck tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53040,\"Title\":\"Great Barrier Reef Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53041,\"Title\":\"Jet Boat Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53042,\"Title\":\"Any 1 out of 2 Theme Parks (Movie World \\/ Wet \\u2018n\\u2019 Wild\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53043,\"Title\":\"Sydney Showboat Cruise with dinner\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53044,\"Title\":\"City tour of Sydney | Madame Tussauds | Sydney Tower Eye| SEA-Life Aquarium | Wildlife World | Opera House Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53045,\"Title\":\"Scenic World at Blue Mountains | Bondi Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}},{\"CityId\":26541,\"Title\":\"Sydney\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":17927,\"Name\":\"Holiday Inn Darling Harbour\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-33.878519359627\",\"Long\":\"151.20354920626\",\"Address\":\"68 Harbour Street Sydney\"},\"Images\":{\"Image\":[{\"ImagId\":441281,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/107\\/SYDDH_4131766292_A.jpg\"},{\"ImagId\":441282,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/143\\/SYDDH_3896326518_A.jpg\"},{\"ImagId\":441283,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/181\\/SYDDH_3906727920_A.jpg\"},{\"ImagId\":441284,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/691\\/33\\/SYDDH_3567107762_A.jpg\"},{\"ImagId\":441285,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/73\\/SYDDH_3858359908_A.jpg\"},{\"ImagId\":441286,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/177\\/SYDDH_4124514299_A.jpg\"},{\"ImagId\":441287,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/690\\/915\\/SYDDH_3969318181_A.jpg\"},{\"ImagId\":441288,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/117\\/SYDDH_3884078886_A.jpg\"},{\"ImagId\":441289,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/85\\/SYDDH_3969363327_A.jpg\"},{\"ImagId\":441290,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/89\\/SYDDH_3543154589_A.jpg\"},{\"ImagId\":441291,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/777\\/829\\/SYDDH_4133699912_A.jpg\"},{\"ImagId\":441292,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/169\\/SYDDH_3816542344_A.jpg\"},{\"ImagId\":441293,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/185\\/SYDDH_3896326512_A.jpg\"},{\"ImagId\":441294,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/161\\/SYDDH_4126383181_A.jpg\"},{\"ImagId\":441295,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/131\\/SYDDH_3969289741_A.jpg\"},{\"ImagId\":441296,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/93\\/SYDDH_4126383018_A.jpg\"},{\"ImagId\":441297,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/227\\/SYDDH_3896326515_A.jpg\"},{\"ImagId\":441298,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/223\\/SYDDH_3898936459_A.jpg\"},{\"ImagId\":441299,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/81\\/SYDDH_3898936456_A.jpg\"},{\"ImagId\":441300,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/272\\/SYDDH_3861756786_A.jpg\"},{\"ImagId\":441301,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/260\\/SYDDH_3543319891_A.jpg\"},{\"ImagId\":441302,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/278\\/SYDDH_3385764776_A.jpg\"},{\"ImagId\":441303,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/252\\/SYDDH_3543501614_A.jpg\"},{\"ImagId\":441304,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/425\\/248\\/SYDDH_3581210242_A.jpg\"},{\"ImagId\":441305,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/461\\/412\\/SYDDH_4610239994_A.jpg\"},{\"ImagId\":441306,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/233\\/SYDDH_4155875508_A.jpg\"},{\"ImagId\":441307,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/135\\/SYDDH_3906727923_A.jpg\"},{\"ImagId\":441308,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/72\\/195\\/954\\/SYDDH_4324295485_A.jpg\"},{\"ImagId\":441309,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/193\\/SYDDH_3884078889_A.jpg\"},{\"ImagId\":441310,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/834\\/8\\/SYDDH_4035979742_A.jpg\"},{\"ImagId\":441311,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/153\\/SYDDH_4124088470_A.jpg\"},{\"ImagId\":441312,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/173\\/SYDDH_4131764832_A.jpg\"},{\"ImagId\":441313,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/189\\/SYDDH_4136597758_A.jpg\"},{\"ImagId\":441314,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/165\\/SYDDH_4126385848_A.jpg\"},{\"ImagId\":441315,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/201\\/SYDDH_4126382894_A.jpg\"},{\"ImagId\":441316,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/197\\/SYDDH_4136600726_A.jpg\"},{\"ImagId\":441317,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/241\\/SYDDH_4131764472_A.jpg\"},{\"ImagId\":441318,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/149\\/SYDDH_4126386095_A.jpg\"},{\"ImagId\":441319,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/113\\/SYDDH_4126341165_A.jpg\"},{\"ImagId\":441320,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/237\\/SYDDH_4126381754_A.jpg\"},{\"ImagId\":441321,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/207\\/SYDDH_4126382798_A.jpg\"},{\"ImagId\":441322,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/121\\/SYDDH_4126340537_A.jpg\"},{\"ImagId\":441323,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/101\\/SYDDH_4126385749_A.jpg\"},{\"ImagId\":441324,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/219\\/SYDDH_4126366410_A.jpg\"},{\"ImagId\":441325,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/69\\/SYDDH_3626198819_A.jpg\"},{\"ImagId\":441326,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/215\\/SYDDH_4131772519_A.jpg\"},{\"ImagId\":441327,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/211\\/SYDDH_4126365298_A.jpg\"},{\"ImagId\":441328,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/77\\/SYDDH_4140816658_A.jpg\"},{\"ImagId\":441329,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/157\\/SYDDH_4140824199_A.jpg\"},{\"ImagId\":441330,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/97\\/SYDDH_4136596611_A.jpg\"},{\"ImagId\":441331,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/690\\/955\\/SYDDH_4126385655_A.jpg\"},{\"ImagId\":441332,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/77\\/23\\/853\\/SYDDH_4657468098_A.jpg\"}]},\"CityId\":26541,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Holiday Inn Darling Harbour, you&amp;apos;ll be centrally located in Haymarket, steps from Sydney Entertainment Centre and Market City. This 4-star hotel is close to University of Sydney and Sydney Opera House.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 370 air-conditioned rooms featuring refrigerators and LED televisions. Cable programming provides entertainment, and wired and wireless Internet access is available for a surcharge. Private bathrooms have deep soaking bathtubs and complimentary toiletries. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreational opportunities offered, including a spa tub, a sauna, and a fitness center. This hotel also features wireless Internet access (surcharge), concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast and dinner, or stay in and take advantage of 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include high-speed (wired) Internet access (surcharge), express check-in, and complimentary newspapers in the lobby.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/334\\/107\\/SYDDH_4131766292_A.jpg\",\"AccoAminitiesMask\":\"101000100000010000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":53038,\"Title\":\"Melbourne City tour with Penguin Parade and MCG\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35383,\"CityName\":\"Melbourne\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53039,\"Title\":\"Kuranda rainforest with one-way skyrail and army duck tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53040,\"Title\":\"Great Barrier Reef Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4693,\"CityName\":\"Cairns\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53041,\"Title\":\"Jet Boat Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53042,\"Title\":\"Any 1 out of 2 Theme Parks (Movie World \\/ Wet \\u2018n\\u2019 Wild\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10616,\"CityName\":\"Gold Coast\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53043,\"Title\":\"Sydney Showboat Cruise with dinner\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53044,\"Title\":\"City tour of Sydney | Madame Tussauds | Sydney Tower Eye| SEA-Life Aquarium | Wildlife World | Opera House Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null},{\"RefSSId\":53045,\"Title\":\"Scenic World at Blue Mountains | Bondi Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26541,\"CityName\":\"Sydney\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":18576,\"SupplierName\":\"STATE EXPRESS GLOBAL VOYAGES\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"429865\",\"Title\":\"ARRIVE IN MELBOURNE AND EVENING AT LEISURE\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Melbourne Airport, you will be greeted by your tour manager in Australia. Later, proceed to your city centre hotel in Melbourne for check-in.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening has been kept free for leisure to rest and explore the city on your own. Overnight stay at the hotel in Melbourne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrive at Melbourne International Airport and transfer to hotel for check-in&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore Melbourne at your own leisure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568807,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429866\",\"Title\":\"MELBOURNE CITY TOUR WITH PENGUIN PARADE AND MCG\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will proceed for a sight-seeing tour of Melbourne city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Melbourne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Visit the most popular places in Melbourne on a full-day sight-seeing tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet and interact with penguins at Philips Island for a unique experience&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568807,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53038,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429867\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429868\",\"Title\":\"TRANSFER TO CAIRNS BY FLIGHT\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to Melbourne airport to catch a flight to Cairns.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at city centre hotel in Cairns.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Catch a flight to Cairns and check-in at the hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429869\",\"Title\":\"EXCURSION TO KURANDA RAINFOREST WITH ONE-WAY SKYRAIL\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast at hotel, we will proceed for a full day tour of Kuranda rainforest.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at city centre hotel in Cairns.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Enjoy excursions to Kuranda rainforest with one-way skyrail and army duck tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53039,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429870\",\"Title\":\"EXPLORE THE GREAT BARRIER REEF\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will take a cruise to The Great Barrier Reef, the largest coral system in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Cairns.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Explore the beautiful life under-water at The Great Barrier Reef&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53040,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429871\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4693,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429872\",\"Title\":\"TRANSFER TO GOLD COAST BY FLIGHT AND JET BOAT RIDE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, check-out from the hotel. We will proceed to Cairns airport to catch a flight to to Gold Coast, the city famous for its theme parks and pristine beaches. Upon arrival, check-in at your hotel by the beach in Gold Coast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Gold Coast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Catch a flight to Gold Coast - city of pristine beaches and theme parks&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Get an adrenaline rush while enjoying a thrilling jet boat ride&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568809,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53041,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429873\",\"Title\":\"THEME PARK AT GOLD COAST\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will venture out for a fun day at one of Gold Coast&amp;#39;s best theme park &amp;ndash; Movie World \\/ Wet &amp;lsquo;n&amp;rsquo; Wild.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Gold Coast.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Have a blast at one of Australia&amp;#39;s Best theme park - Movie World \\/ Wet &amp;lsquo;n&amp;rsquo; Wild&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":568809,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53042,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429874\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10616,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429875\",\"Title\":\"TRANSFER TO SYDNEY AND ENJOY SHOWBOAT CRUISE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will transfer to Cairns airport to catch a flight to Sydney. Upon Arrival, we will proceed to our city centre hotel in Sydney for Check-in.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Sydney.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Catch flight to Sydney and check-in at the hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Venture into the sea on Sydney&amp;rsquo;s iconic Showboat Dinner Cruise&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53043,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429876\",\"Title\":\"ICONIC OPERA HOUSE AND SYDNEY SIGHTSEEING TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will proceed for a sightseeing tour of Sydney. We will begin the tour with a visit to the Darling Harbour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel in Sydney.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;See the popular sights on a sightseeing tour of Sydney&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit SEA-LIFE Aquarium, Sydney Tower Eye, Madam Tussaud&amp;rsquo;s Museum and Wildlife World&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53044,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429877\",\"Title\":\"BLUE MOUNTAINS TOUR AND BONDI BEACH\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, proceed for a full day excursion of the blue mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Sydney.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Explore the natural beauty of the world famous Blue Mountains&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy a leisurely time at world famous Bondi Beach&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17927,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":53045,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"429878\",\"Title\":\"FLY BACK TO INDIA\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":11,\"Program\":\"&lt;p&gt;After breakfast at the hotel, we will transfer to Sydney International airport to catch a flight back to India.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrive home with pleasant memories of your Australia tour organised by State Express Global Voyages, which we are sure you will treasure for a lifetime.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26541,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"58565\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"367498.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95},{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95},{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95},{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95},{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95},{\"From\":\"2023-10-25\",\"To\":\"2023-10-25\",\"Currency\":1,\"priceTripleOcc\":367499,\"priceDoubleOcc\":\"367498.95\",\"priceSingleOcc\":826347.9,\"priceExtraBed\":\"330748.95\",\"priceWithoutBed\":\"288748.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":5,\"ExcludedPercent\":\"0\",\"PricePerPerson\":367498.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":288748.95,\"CEB\":330748.95,\"COSTDO\":367498.95,\"COSTSO\":826347.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":367498.95,\"COSTTO\":367498.95}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the tour - Rs. 1,00,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;60 Days or more prior to the departure of tour - 50 % of holiday cost*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;40 Days or more prior to the departure of tour -&amp;nbsp; 100% of holiday cost*&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;* Once the purchased air tickets are fully booked, airfare will be collected at the time of reservation besides the advance deposit. Cancellation charges of flight tickets will be additionally charged as per actual in such case. This will also be intimated at the time of reservation.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;More than 60 Days before departure of tour INR 50,000*&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;41 to 60 Days before departure of tour 35% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;21 to 40 Days before departure of tour 75% of holiday cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 to 20 Days before departure of tour 100% of holiday cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;* Once the purchased air tickets are fully booked, airfare will be collected at the time of reservation besides the advance deposit. Cancellation charges of flight tickets will be additionally charged as per actual in such case. This will also be intimated at the time of reservation.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;There is a possibility that your Tour Manager could change in-between the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If flight timing does not suit the meal time or Indian meal is not possible during a sightseeing tour, we shall provide you a packed meal.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As a third person in a Triple room, in some cities extra bed or cot may not be available. In that case, a room with two queen beds or a king bed with a roll away bed will be provided.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On some occasions you may have to join another group in case the group does not have adequate number of members.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Applicable Government Taxes : 5% GST and (5% or 20%) TCS&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any increase in the airfare charged by the airline (presently calculated as of 20th June, 2023)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote has been shared based on Rate of Exchange on 20th June2023 &amp;ndash; (1 AUD&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;= 56 INR). The final tour cost shall be subject to change in case there is major change in ROE.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mandatory tipping for on tour Services (Coach Driver, Local Guides etc) (approx. AUD 5 per day \\/ per person)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats in international and domestic flights will be allocated at random as per availability at time of check-in at airport. Seats next to each other can&amp;rsquo;t be guaranteed. If you wish to pre-purchase the airline seats, charges will be informed on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses of personal nature such as porterage, laundry expenses, mini-bar, mineral water, telephone charges, food &amp;amp; drink that are not a part of the package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost of optional excursions, city sightseeing, entrance fees &amp;amp; local guides availed of by the passengers, that is not mentioned in the inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional charges due to Local Events&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If any views rooms are requested rates will change and rates will be advised on case to case basis. Rates for SGL, CWB, CNB can be given on request as well.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund will be provided in case of any unused services, or if you do not show up for any service as per time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Limited availability of flight tickets, security alerts and random closures might affect the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels take security deposit at the time of check-in. The deposit is refunded as per hotel policies after check-out. The same is not included in above cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other services not mentioned in the inclusion&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;MEALS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All meals are included from arrival in Melbourne to departure from Sydney&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily American Breakfast. (Except Day 1)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Indian lunches (Veg and Non-Veg) included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04 Local lunches (Veg and Non-veg) during Kuranda Rainforest, Great Barrier Reef, Gold Coast Theme Park and Blue Mountains tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;08 Indian dinners (Veg and Non-Veg) included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 local dinner (Veg and Non-Veg) at Phillip Islands tour included&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;MEDICAL INSURANCE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Normal insurance charges for the duration of the tour are included in the tour price. However, any passenger above the age of 60 years and those passengers who wish to extend their stay will be required to pay additional charges&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;VISA REQUIREMENTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cost of visas including documentation and processing fees as of 20th June 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any further increase in the same has to be borne by the passengers&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;OTHER INCLUSIONS:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Professional services of a friendly Tour Manager or a local Representative subject to minimum 20 customers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy class airfare ex-Delhi as per the itinerary (subject to availability at the time of booking &amp;ndash; limited number of seats purchased)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; excursions with entrance fees (as specified in the itinerary) by a&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;comfortable air-conditioned vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bottles of mineral water on tour day (2 bottles per day)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"429865\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[429865],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429866\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[429866],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429867\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[429867],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429868\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[429868],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"429869\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[429869],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429870\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[429870],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429871\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[429871],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429872\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[429872],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"429873\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[429873],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429874\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[429874],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429875\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[429875],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"429876\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[429876],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429877\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[429877],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"429878\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[429878],\"Remark\":[\"&lt;p&gt;All transfers &amp;amp; excursions by a comfortable air-conditioned vehicle&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20231025\":{\"FromDate\":\"2023-10-25\",\"FromDateDMY\":\"25\\/10\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Melbourne,Cairns,Gold Coast,Sydney','Melbourne,Oceania,Australia,Cairns,Gold Coast,Sydney',NULL,'35383,4693,10616,26541',367499,367499,10,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-25 00:00:00','2023-10-25 00:00:00',3,'Australia','13','2023-09-07 11:44:28','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'australia-tour-dussehra-special',NULL,NULL,NULL,0),(325,5023,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"5023\",\"VisaName\":\"USA Visa H-1B  \",\"Nationality\":null,\"VisaAdultRates\":17200,\"VisaChildRates\":17200,\"VisaInfantRates\":17200,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"USA\",\"VisaRequired\":6,\"VisaCategory\":7,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Work permit\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;Document Checklist U.S. Visa application (Work Visa H1-B)&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nDocuments to be carried for First appointment (OFC Appointment or VAC Appointment).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;bull; Your DS-160 confirmation page.&lt;br \\/&gt;\\r\\n&amp;bull; Your appointment confirmation page.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull; Valid Passport with old passport&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;. Passport copy first and last page&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Documents to be carried for second appointment (Visa Interview with the Consulate)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Appointment Confirmation page&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Application form (DS-160) confirmation page&lt;br \\/&gt;\\r\\nA passport valid for travel to the United States with a validity date at least six months&lt;br \\/&gt;\\r\\nPassport first and last page (Current passport)&lt;br \\/&gt;\\r\\nAll old passports required (if any)&lt;br \\/&gt;\\r\\nOne 2 x 2 inch (51 x 51 mm) photograph taken within the last six months.&lt;br \\/&gt;\\r\\nUSCIS Petition form I-29&lt;br \\/&gt;\\r\\nUSCIS&amp;nbsp;Form I-797&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Educational degrees, certificates, and transcripts.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Current employment letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Previous employment experience documentation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Personal bank statements last 6 months&lt;br \\/&gt;\\r\\nPersonal ITR last 3 years&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note:- You may also bring whatever supporting documents you believe support the information provided to the Embassy\\/consular officer.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Basic Requiremnts:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid Original passport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Issued Visa by Embassy&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight Ticket&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;U.S. Embassy&amp;nbsp;&lt;br \\/&gt;\\r\\nAddress:&amp;nbsp;H5WP+MQQ, Panchsheel Marg, Shantipath,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\",\"PrecessingTime\":\"10 Days\",\"VisaValidity\":\"3 Years \",\"VisaDuration\":\" \",\"DocumentSubmission\":1,\"PhysicalInterview\":1,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"5000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"5000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"27\",\"Title\":\"Biometrics\",\"Description\":\"&lt;p&gt;Biometric Submission&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your fingerprints and digital photograph will be taken at the VFS. Children less than 5 years need to visit VFS for digital photograph and submission, but are not require to provide their fingerprints. You need to visit VFS for Biometrics, everytime you apply for UK visa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"22\",\"Title\":\"Pan Card\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of Pan Card. ( For Minors, Please upload Pan of parents\\/gaurdian.)&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"},{\"DocSysId\":\"3\",\"Title\":\"Photo (51mm X 51mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White Background,Matt or semi Matt Finish, Size: 51mm X 51mm&lt;\\/p&gt;\"}],\"PlanFee\":[]}','USA','USA',NULL,'231',17200,17200,0,NULL,NULL,NULL,0,'',0,'2023-08-16 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'USA','231','2023-08-16 11:41:20','2023-08-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'usa-visa-h-1b',NULL,NULL,NULL,0),(326,5160,6,5293,1,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"5160\",\"VisaName\":\"Bali Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":35,\"VisaChildRates\":35,\"VisaInfantRates\":35,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"USD       \",\"CurrencyType\":2,\"Country\":\"Indonesia\",\"VisaRequired\":2,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Visa On Arrival\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Passport valid for at least 6 months&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed return ticket, or an onward ticket to your next destination&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evidence you have sufficient funds for your stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your completed immigration\\/arrival card&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BasicRequirementsText\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Passport valid for at least 6 months&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Confirmed return ticket, or an onward ticket to your next destination&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evidence you have sufficient funds for your stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Your completed immigration\\/arrival card&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"24 Hours\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\" \",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\".00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":0}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Indonesia','Indonesia',NULL,'102',35,35,0,'1692165584.jpg',NULL,NULL,0,'',0,'2023-08-16 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Indonesia','102','2023-08-16 11:23:43','2023-08-16 00:00:00',1,1,'1','1','0','','','',NULL,'bali-tourist-visa','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,0),(327,59549,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":59549,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/package\\/images\\/amazing-thailand-nights--days-package_1692611489\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;TRAVEL4SEASONS brings you the Bangkok AND Pattaya Tour Package with 4 nights 5 days stay in two of the world&amp;#39;s most vibrant cities. The best Bangkok Pattaya Tour Package showcase the lifestyle, natural wonders &amp;amp; artificial scenes of Bangkok and Pattaya. We have planned this tour package in such a way that you can enjoy almost all the places of these two beautiful cities as well as get some free time hang out with loved ones. The Bangkok Pattaya Tour Package is divided into two portions, in the first portion we enhance our eyes with the beauty of Pattaya with places like Coral Island, scenic beaches, Chinatown, mouth-watering Thai dishes. Whereas in the second portion, we will be in the Bangkok to experience places like old temples, Bangkok floating market, Thai Massage, Buddha in nirvana, etc. Enjoy the trip and also check our day wise itinerary of Bangkok Pattaya Tour Package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;INDIGO AIRLINES-APPROXIMATE AIRFARE :- 24000\\/- PER PERSON&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight details:-&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BLR-BKK:- 05:35-11:20&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BKK-BLR-12:20-14:30&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":8868,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":8868,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"TRAVEL4SEASONS\",\"Name\":\"AMAZING THAILAND 4NIGHTS & 5DAYS PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7904\",\"SupplierName\":\"Walker Destination Management Company Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":504186,\"Name\":\"Pattaya Discovery\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9423577\",\"Long\":\"100.884931\",\"Address\":\"489 Thanon Pattaya Nuea, 6\\/1 Muang Pattaya, Amphoe Bang Lamung, Chang Wat Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":561125,\"Name\":\"Ramada by Wyndham D\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_561125\\/8868_65ac7441ff27429864dbdf6f02c1cc771687435389.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"438526\",\"Title\":\"WELCOME TO BANGKOK-PATTAYA\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at the Suvarnabhumi international airport, clear your visa stamping and other immigration formalities, come out of the airport and meet up with our representative.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After taking a briefing about the tour, you will be transferred to your Pattaya Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check in your rooms and take some rest after a long journey. The remaining time of the day is free for you, therefore, you can explore things as per your point of interest in Pattaya. Pattaya is well known for its nightlife, scenic beaches, colourful market, Thai Dishes.Later in the eveing visit alcazar show (Normal seat) and rerun back to hotel night stay at hotel in pattaya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":504186,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"438527\",\"Title\":\"PATTAYA CORAL ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfsat starts with a short boat trip to Coral Island. At Coral Island, you can experience parasailing, Jet Ski and banana boat rides, underwater diving, glass bottom boat, etc. Enjoy the local food on the island. Make the best of the day. overnight stay at pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":504186,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"438528\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"438529\",\"Title\":\"PATTAYA- BANGKOK [BANGKOK CITY TOUR] \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Wake up and enjoy the delicious breakfast in your hotel room. Now, we will be heading for a 2.5 hrs beautiful journey to Bangkok with scenic view on either side. Don&amp;#39;t forget to capture all those moments in your cameras. After reaching Bangkok, our representative will guide to your respective rooms. Have some relax and in the later afternoon, report at the hotel lobby at the time given by our representative. It&amp;#39;s the time for the Bangkok City Tour. Our travel starts with a visit to three old temples - Wat Traimit, Wat Pho &amp;amp; Wat trimitr - the temples who perfectly reflect the Buddhism culture. Also, you will get to see Buddha in nirvana, the heaviest statue of Buddha made up of gold. After a spiritual journey, now we will head to Bangkok&amp;#39;s special. Bangkok is known as the shopping paradise, so we will now visit places like Chinatown, the Indian town, bargain shops, etc. Enjoy the overnight stay in Bangkok with some shopping in Bangkok..&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":561125,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"438530\",\"Title\":\"BANGKOK -  SAFARI WORLD PARK\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast the day is free for your own activities. So, you have got two options from which you can opt one or either both. The first option is to enjoy the Hotel amenities like swimming, spa, gym, etc whereas the second option says hang out in Bangkok. With second option you can experience the life at Bangkok by viewing stuff like skyscrapers, Thai cuisine, Thai boxing, hang out on beaches, Bangkok&amp;#39;s nightlife, and much more. overnight stay at bangkok.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Note - Please find the optional sightseeing cost details for your reference.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot; &amp;nbsp; Safari World with Marine Park + Lunch &amp;ndash; Rs.1,850\\/- per person&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot; &amp;nbsp; Siam Ocean World (Aquarium only) - Rs.1,250\\/- per person&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;middot; &amp;nbsp; Chao Phraya River Cruise with dinner - Rs.2,000\\/- per person&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":561125,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"438531\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast It&amp;#39;s the time to say goodbye to Bangkok. Have a healthy breakfast and get your bags packed. Our team manager will drop you at Bangkok international airport as per the flight time.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"59549\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":10,\"Price\":\"17500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18833,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":19500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"59549\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":10,\"Price\":\"17500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":17500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500},{\"From\":\"2023-08-21\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18833,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"16000.00\",\"priceWithoutBed\":\"14000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14000,\"CEB\":16000,\"COSTDO\":19500,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17500,\"COSTTO\":17500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Customers have to follow the Covid regulations\\/Protocol of each detsinations. Please check with your tour consultant to for the updated Covid Regulation.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any mandatory quarantine or isolation, if any, will be the responsibility of the travellers\\/Customers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel4seasons will not be responsible for the consequenses of a sudden government directives with respect to the new covid regulations,&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Accommodation in the selected hotel as per the itinerary&amp;nbsp;&amp;nbsp;on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as Mentioned&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing in Private\\/Seat In a Coach Basis-&amp;nbsp;as per the itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The tours mentioned - includes the entry tickets, and return transfers to from the hotel.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"438526\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[438526],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"438527\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[438527],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"438528\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[438528],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"438529\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[438529],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"438530\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[438530],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"438531\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[438531],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',17500,19500,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'Thailand','215','2023-09-07 13:14:26','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'amazing-thailand-4nights-5days-package',NULL,NULL,NULL,0),(328,56749,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":56749,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/package\\/images\\/chiang-mai-nights-days-package_1688550683\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":8868,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":8868,\"DestinationPlaces\":\"Chiang Mai\",\"DestinationPlacesSysId\":30567,\"SourcePlaces\":\"Chiang Mai\",\"SourcePlaceSysId\":30567,\"AgencyName\":\"TRAVEL4SEASONS\",\"Name\":\"CHIANG MAI 3NIGHTS 4DAYS PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7904\",\"SupplierName\":\"Walker Destination Management Company Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":30567,\"Title\":\"Chiang Mai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":563126,\"Name\":\"ibis Styles Chiang Mai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":30567,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_563126\\/8868_a6f04d9d8d68edd522af7fd01d356dc91688553274.jpg\",\"AccoAminitiesMask\":\"111011000011111110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"415244\",\"Title\":\"ARRIVE AT CHIANG MAI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival&amp;nbsp;Chiang Mai airport transfer to hotel check in later proceed for halfday Royal Botanical Rajapruek tour with tram ride + Doi Kham Temple and return back to hotel night stay at hotel in Chianm mai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563126,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415245\",\"Title\":\"CHIANG RAI TOUR SINGHA PARK\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed to visit full day chiang rai tour singha park with rides-maekajan hot spring and return back to hotel night stay hotel in chiang mai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563126,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415246\",\"Title\":\"CHIANG MAI - MAERIM VALLY &amp; BLUE TEMPLE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast proceed to visit half day maerim vally of joy elephant feeding + Botanic garden tram &amp;amp; blue temple &amp;amp; White temple + Long nacked karen and return back to hotel night stay at hotel in chiang mai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":563126,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415247\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel transfer to airport for your return journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56749\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30333,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":32000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56749\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":27000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":27000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000},{\"From\":\"2023-07-05\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":30333,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":null,\"priceExtraBed\":\"27000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":27000,\"COSTDO\":32000,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":27000,\"COSTTO\":27000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Customers have to follow the Covid regulations\\/Protocol of each detsinations. Please check with your tour consultant to for the updated Covid Regulation.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any mandatory quarantine or isolation, if any, will be the responsibility of the travellers\\/Customers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel4seasons will not be responsible for the consequenses of a sudden government directives with respect to the new covid regulations,&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Thailand visa&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Accommodation in the selected hotel as per the itinerary&amp;nbsp;&amp;nbsp;on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as Mentioned&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing in Private\\/Seat In a Coach Basis-&amp;nbsp;as per the itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Half day Royal Botanical Rajapruek tour with tram ride + Doi Kham Temple&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Half day maerim valley of joy elephant feeding + Botanic garden tram&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Blue temple &amp;amp; White temple + Long necked Karen&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Full day chiang rai tour Sangha Park with rides-maekajan hot spring&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Private airport transfers&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"415244\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[415244],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415245\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[415245],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415246\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415246],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415247\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[415247],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Chiang Mai','Chiang Mai,South East Asia,Thailand',NULL,'30567',27000,32000,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Thailand','215','2023-09-07 13:14:38','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'chiang-mai-3nights-4days-package',NULL,NULL,NULL,0),(329,56742,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":56742,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/package\\/images\\/enjoy-nights-pattaya-package_1688542830\",\"BookingValidUntill\":\"2023-08-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;TRAVEL4SEASONS brings you the Bangkok AND Phuket Tour Package with 4 nights 5 days stay in two of the world&amp;#39;s most vibrant cities. The best pattaya Tour Package showcase the lifestyle, natural wonders &amp;amp; artificial scenes of pattaya. We have planned this tour package in such a way that you can enjoy almost all the places of these two beautiful cities as well as get some free time hang out with loved ones.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":8868,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":8868,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"TRAVEL4SEASONS\",\"Name\":\"ENJOY 4NIGHTS PATTAYA PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7904\",\"SupplierName\":\"Walker Destination Management Company Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-08-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":562117,\"Name\":\"GLOW Pattaya\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4826497,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_01688023242.jpg\"},{\"ImagId\":4826498,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_11688023243.jpg\"},{\"ImagId\":4826499,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_21688023243.jpg\"},{\"ImagId\":4826500,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_31688023244.jpg\"},{\"ImagId\":4826501,\"Type\":\"FullImage\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_41688023244.jpg\"}]},\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_562117\\/8868_5eadbe8b5581c0c57b31bd4bc19baef41688023242.jpg\",\"AccoAminitiesMask\":\"111111000010111110000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3439,\"Title\":\"Nong Nooch Tropical Garden\",\"Description\":\"Nong Nooch Tropical Botanical Garden is a 500-acre botanical garden and tourist attraction at kilometer 163 on Sukhumvit Road in Chonburi Province, Thailand. It can be reached via bus, taxi or private land transportation. It is also a major scientific center dedicated to cycads, with its own Cycad Gene Bank.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":12.7645754,\"Long\":100.9346578,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Nong_Nooch_Tropical_Garden__20925_1518172090.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"415171\",\"Title\":\"ARRIVAL AT BANGKOK AIRPORT\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Bangkok Airport then&amp;nbsp;Pick up &amp;amp; Transfer to Pattaya Hotel by road&amp;nbsp;Check into the hotel. Evening Proceed for&amp;nbsp;Alcazar Show and under water world and ereturn back to hotel.Overnight in the Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":562117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415172\",\"Title\":\"PATTAYA CORAL ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast starts with a short boat trip to Coral Island tour on Speed Boat with Lunch SIC&amp;nbsp;Enjoy the local food on the island and return back to the hotel overnight stay at Pattaya.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":562117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415173\",\"Title\":\"PATTAYA  NOONG NOOCH TROPICAL GARDEN\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today proceed to visit noong nooch tropical garden village with lunch and return back to hotel night stay at hotel in pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":562117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3439,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415174\",\"Title\":\"PATTAYA DAY AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast at hotel today day at leisure on your own activities and night stay at hotel in pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":562117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415175\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel transfer to bangkok airport for your return journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Customers have to follow the Covid regulations\\/Protocol of each detsinations. Please check with your tour consultant to for the updated Covid Regulation.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any mandatory quarantine or isolation, if any, will be the responsibility of the travellers\\/Customers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel4seasons will not be responsible for the consequenses of a sudden government directives with respect to the new covid regulations,&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Thailand visa&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Accommodation in the selected hotel as per the itinerary&amp;nbsp;&amp;nbsp;on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as Mentioned&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing in Private\\/Seat In a Coach Basis-&amp;nbsp;as per the itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;4 Nights stay at hotel in pattaya with breakfast&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Alcaza show\\/Under water world in pattaya&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Coral island tour with lunch&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Noong nooch traopical garden with luch&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Bangkok to pattaya to Bnagkok airport transfers.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"415171\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[415171],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415172\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[415172],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415173\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415173],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415174\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[415174],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415175\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[415175],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya','Pattaya,South East Asia,Thailand',NULL,'20925',0,0,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-08-31 00:00:00','2023-08-31 00:00:00',3,'Thailand','215','2023-09-07 13:14:45','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'enjoy-4nights-pattaya-package',NULL,NULL,NULL,0),(330,56739,1,5293,0,0,0,'Family,Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":56739,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/package\\/images\\/group-tour---grand-vietnam-all-inclusive-package--days_1688551979\",\"BookingValidUntill\":\"2023-12-04\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:center&quot;&gt;There&amp;rsquo;s more to Vietnam than the traditional image of rice paddies and conical hats. Here you&amp;rsquo;ll find a country bursting with energy and forward motion. You&amp;rsquo;ll feel it in the hum and activity on the streets. You&amp;rsquo;ll see it in the way Vietnamese welcome you to their homes, invite you to taste their food, and proudly show you their rich culture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;You&amp;rsquo;ll sense it in the options and opportunities all around. Simply put, there&amp;#39;s&amp;nbsp;never been a more exciting time to visit.&amp;nbsp;Whatever you travel for, you can find it in Vietnam NOW.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":8868,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":8868,\"DestinationPlaces\":\"Bengaluru\",\"DestinationPlacesSysId\":2262,\"SourcePlaces\":\"Bengaluru\",\"SourcePlaceSysId\":2262,\"AgencyName\":\"TRAVEL4SEASONS\",\"Name\":\"GROUP TOUR - GRAND VIETNAM ALL INCLUSIVE PACKAGE 8 DAYS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"10075\",\"SupplierName\":\"HELLO ASIA TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Sightseeing,Guided Tours,Cruise,All Transfers\",\"PackageType\":\"Family,Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2023-12-04\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":556193,\"Name\":\"The Q Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11487,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_556193\\/8868_6336e68873c844d916b8d380abb626921685446881.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":39785,\"Title\":\"Tran Quoc Pagoda\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11487\\/sightseeing\\/8868_1676364374.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46404,\"Title\":\"Hoa Lu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40311,\"Title\":\"trang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":16858,\"Title\":\"Halong Bay Cruise\",\"Description\":\"&lt;p&gt;enjoy the mighty bay view. Ha Long Bay&lt;\\/p&gt;&lt;p&gt;meaning Descending Dragon Bay in Vietnamese as legend has it that it was where a holly&lt;\\/p&gt;&lt;p&gt;dragon landed down from sky. The bay, famous as one of the world&rsquo;s wonders and heritage&lt;\\/p&gt;&lt;p&gt;sites whose formation dates back 500 million years, consists of around 2,000 karst islands&lt;\\/p&gt;&lt;p&gt;and islets scattered over an area of 1,553 km2.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11405\\/sightseeing\\/8868_1673868650.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40320,\"Title\":\"Ba na hills\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40322,\"Title\":\"Golden bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/7518\\/sightseeing\\/8868_1688551889.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6368,\"Title\":\"Central Post Office\",\"Description\":\"Inside the Saigon Central Post office of special note are two painted maps that were created just after the post office was built, the first one located on the left side of the building is a map of Southern Vietnam and Cambodia titled Lignes telegraphiques du Sud Vietnam et Cambodge 1892 which translates to &amp;quot;Telegraphic lines of Southern Vietnam and Cambodia 1892&amp;quot;. The second map of greater Saigon is titled Saigon et ses environs 1892 that translates as &amp;quot;Saigon and its surroundings 1892&amp;quot;\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7801355,\"Long\":106.700057,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Centre_Post_Office__31115_1530686259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46407,\"Title\":\"War Remnants Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null}]}},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":555670,\"Name\":\"La Regina Royal Cruise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_555670\\/8868_e706589f3ff5f521063f43c0f41f7c721685082944.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Noble Suite cabin\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":39785,\"Title\":\"Tran Quoc Pagoda\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11487\\/sightseeing\\/8868_1676364374.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46404,\"Title\":\"Hoa Lu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40311,\"Title\":\"trang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":16858,\"Title\":\"Halong Bay Cruise\",\"Description\":\"&lt;p&gt;enjoy the mighty bay view. Ha Long Bay&lt;\\/p&gt;&lt;p&gt;meaning Descending Dragon Bay in Vietnamese as legend has it that it was where a holly&lt;\\/p&gt;&lt;p&gt;dragon landed down from sky. The bay, famous as one of the world&rsquo;s wonders and heritage&lt;\\/p&gt;&lt;p&gt;sites whose formation dates back 500 million years, consists of around 2,000 karst islands&lt;\\/p&gt;&lt;p&gt;and islets scattered over an area of 1,553 km2.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11405\\/sightseeing\\/8868_1673868650.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40320,\"Title\":\"Ba na hills\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40322,\"Title\":\"Golden bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/7518\\/sightseeing\\/8868_1688551889.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6368,\"Title\":\"Central Post Office\",\"Description\":\"Inside the Saigon Central Post office of special note are two painted maps that were created just after the post office was built, the first one located on the left side of the building is a map of Southern Vietnam and Cambodia titled Lignes telegraphiques du Sud Vietnam et Cambodge 1892 which translates to &amp;quot;Telegraphic lines of Southern Vietnam and Cambodia 1892&amp;quot;. The second map of greater Saigon is titled Saigon et ses environs 1892 that translates as &amp;quot;Saigon and its surroundings 1892&amp;quot;\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7801355,\"Long\":106.700057,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Centre_Post_Office__31115_1530686259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46407,\"Title\":\"War Remnants Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null}]}},{\"CityId\":7518,\"Title\":\"Danang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":520160,\"Name\":\"Paris Deli Danang Beach Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.0663054\",\"Long\":\"108.2449758\",\"Address\":\"236 V&otilde; Nguy&ecirc;n Gi&aacute;p, Ph??c M?, S?n Tr&agrave;, ?&agrave; N?ng 550000, Vietnam\"},\"Images\":[],\"CityId\":7518,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_520160\\/8868_3bef479d9725cf25fa61198c720366241688554710.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":39785,\"Title\":\"Tran Quoc Pagoda\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11487\\/sightseeing\\/8868_1676364374.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46404,\"Title\":\"Hoa Lu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40311,\"Title\":\"trang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":16858,\"Title\":\"Halong Bay Cruise\",\"Description\":\"&lt;p&gt;enjoy the mighty bay view. Ha Long Bay&lt;\\/p&gt;&lt;p&gt;meaning Descending Dragon Bay in Vietnamese as legend has it that it was where a holly&lt;\\/p&gt;&lt;p&gt;dragon landed down from sky. The bay, famous as one of the world&rsquo;s wonders and heritage&lt;\\/p&gt;&lt;p&gt;sites whose formation dates back 500 million years, consists of around 2,000 karst islands&lt;\\/p&gt;&lt;p&gt;and islets scattered over an area of 1,553 km2.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11405\\/sightseeing\\/8868_1673868650.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40320,\"Title\":\"Ba na hills\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40322,\"Title\":\"Golden bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/7518\\/sightseeing\\/8868_1688551889.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6368,\"Title\":\"Central Post Office\",\"Description\":\"Inside the Saigon Central Post office of special note are two painted maps that were created just after the post office was built, the first one located on the left side of the building is a map of Southern Vietnam and Cambodia titled Lignes telegraphiques du Sud Vietnam et Cambodge 1892 which translates to &amp;quot;Telegraphic lines of Southern Vietnam and Cambodia 1892&amp;quot;. The second map of greater Saigon is titled Saigon et ses environs 1892 that translates as &amp;quot;Saigon and its surroundings 1892&amp;quot;\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7801355,\"Long\":106.700057,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Centre_Post_Office__31115_1530686259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46407,\"Title\":\"War Remnants Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null}]}},{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":554827,\"Name\":\"Bay Hotel Ho Chi Minh\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":31115,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_554827\\/8868_34729cce5277b0836ffb0b95c1336c591684497856.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":39785,\"Title\":\"Tran Quoc Pagoda\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11487\\/sightseeing\\/8868_1676364374.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46404,\"Title\":\"Hoa Lu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40311,\"Title\":\"trang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":16858,\"Title\":\"Halong Bay Cruise\",\"Description\":\"&lt;p&gt;enjoy the mighty bay view. Ha Long Bay&lt;\\/p&gt;&lt;p&gt;meaning Descending Dragon Bay in Vietnamese as legend has it that it was where a holly&lt;\\/p&gt;&lt;p&gt;dragon landed down from sky. The bay, famous as one of the world&rsquo;s wonders and heritage&lt;\\/p&gt;&lt;p&gt;sites whose formation dates back 500 million years, consists of around 2,000 karst islands&lt;\\/p&gt;&lt;p&gt;and islets scattered over an area of 1,553 km2.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":11405,\"CityName\":\"Halong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/11405\\/sightseeing\\/8868_1673868650.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40320,\"Title\":\"Ba na hills\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":40322,\"Title\":\"Golden bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7518,\"CityName\":\"Danang\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/city\\/7518\\/sightseeing\\/8868_1688551889.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6368,\"Title\":\"Central Post Office\",\"Description\":\"Inside the Saigon Central Post office of special note are two painted maps that were created just after the post office was built, the first one located on the left side of the building is a map of Southern Vietnam and Cambodia titled Lignes telegraphiques du Sud Vietnam et Cambodge 1892 which translates to &amp;quot;Telegraphic lines of Southern Vietnam and Cambodia 1892&amp;quot;. The second map of greater Saigon is titled Saigon et ses environs 1892 that translates as &amp;quot;Saigon and its surroundings 1892&amp;quot;\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7801355,\"Long\":106.700057,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Centre_Post_Office__31115_1530686259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":46407,\"Title\":\"War Remnants Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10075,\"SupplierName\":\"HELLO ASIA TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"415131\",\"Title\":\"HANOI ARRIVAL &ndash; HALF DAY CITY TOUR \",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Hanoi, you will be collected by our local guide at Hanoi Airport and transferred to the hotel for check-in. The room is at your disposal from 14.00 onwards&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch at the Indian restaurant. and take a short rest before starting your city tour in the afternoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon, we will visit the&lt;strong&gt; Ho Chi Minh Mausoleum&amp;nbsp;&lt;\\/strong&gt;(Closed every Monday and Friday) which houses the body of the famous President Ho Chi Minh. Get to know more about his life and career with a visit to his traditional stilt house before appreciating the special structure of &lt;strong&gt;One Pillar Pagoda.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next is&lt;strong&gt; Tran Quoc Pogoda&lt;\\/strong&gt;, one of the oldest pagodas in Ha Noi, after many times of relocation and reparation, Tran Quoc Pagoda still kept its own spirit and standstill with pride and honor. The pagoda has so many architectural works placed very harmoniously, specifically for the rule of Buddhism architecture. After that, you will take a visit to &lt;strong&gt;the Hanoi Old Quarters&lt;\\/strong&gt; where you can experience the real daily life activities of local people in the oldest area of Ha Noi. Taking a short walking tour around famous streets, listening to historic stories, taking photos, and enjoying the Old Quarters will be an interesting feeling. You admire Hoan Kiem Lake, and Turtle Tower before coming back to your hotel for a relaxing time.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner at the Indian restaurant. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556193,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6341,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":39785,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17949,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415132\",\"Title\":\"HANOI - NINH BINH - HOA LU - TRANG AN - HANOI\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;In the morning after breakfast, Our tour guide will pick you up from your hotel. We take you to Ninh Binh province which is far from Hanoi city about 120 km. ( you will have a short break for 20 minutes to relax on the way).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The first destination on this trip is to visit&lt;strong&gt; Hoa Lu ancient capital&lt;\\/strong&gt;. This is the first capital of Vietnam. Come to visit &lt;strong&gt;Hoa Lu,&lt;\\/strong&gt; and you will learn about why the capital was moved to Hanoi nowadays. You are impressed by the outstanding architecture when entering the temples of King Dinh and King Le, the first and second emperors of ancient Vietnam, built in the 17 century. Try to feel the ancient atmospheres in Hoa Lu ancient capital.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have lunch at the Indian restaurant, and take a short rest before the continue the tour in the afternoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon we will visit &lt;strong&gt;Trang An &lt;\\/strong&gt;which was recognized by UNESCO as The World Heritage Site in 2014. Trang An has a wonderful tunnel cave system so Kong&amp;rsquo;s Movie Group chose this place for the New Version of Kong in 2016 &amp;ndash; &amp;ldquo; Skull Island &amp;ldquo;. Boat trip to visit Trang An to see the amazing beauty of this landscape with many caves such as Sang Cave (Light Cave), Toi Cave (Dack Cave), Nau Ruou Cave (Cooking Wine), green river, and natural view. End of the trip, Get on the Bus to return to Hanoi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner at the Indian restaurant. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":556193,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":46404,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40311,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415133\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415134\",\"Title\":\"HANOI - HALONG BAY OVERNIGHT CRUISE BY PRIVATE TRANSFER\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast at the hotel, you will be taken by cruise shuttle bus to another fascinating land &amp;ndash; the gem in the north of Vietnam &amp;ndash; Halong Bay. The drive takes you through beautiful paddy rice and the mountains of the Red River Delta. Visiting the bay, you will experience the magic of the wonderful wonder of the world.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the harbor, board our boat for a cruise among the numerous limestone karst rising from the emerald water. Make a stop en route to visit a grotto of spectacular stalactites and stalagmites and anchor for a relaxing swim in a hidden cave.&amp;nbsp;Meals will be served on the cruise. Overnight on the cruise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":555670,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Noble Suite cabin\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":16858,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415135\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415136\",\"Title\":\"HALONG BAY - HANOI - FLY TO DANANG\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, enjoy your time sunbathing and relaxing in the fascinating background of the bay. After brunch on board, you will be transferred back to the airport to catch the flight to Danang.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Welcome on arrival and transfer to your hotel in Danang to check in.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner at a restaurant in Danang. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":16858,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415137\",\"Title\":\"DANANG - BANA HILLS - GOLDEN BRIDGE - DANANG \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Pick up at the hotel in Da Nang, transfer to&lt;strong&gt; Ba Na Hills&lt;\\/strong&gt; (35km), and take Cable Car which gains 5 world scores to Ba Na Hills station. Stop at By Night station to visit Vong Nguyet Hills, Linh Ung Pagoda, and The Old Villas of French. Continue moving up by cable car to the Nui Chua Mountain &amp;ndash; the top of Ba Na range, visiting Nginh Phong top, Le Nim Villas, Orchid Garden&amp;hellip; Experience the hill climbing train (the first and unique funicular in Vietnam) and visit an old French cellar (Debay Ancient Wine Cellar), the flower garden Le Jardin D&amp;rsquo;amour, and Linh Ung Pagoda. Enjoy a walk across the famous &lt;strong&gt;Golden Bridge&lt;\\/strong&gt; and admire the panoramic view over the area of mountains and lush trees. Have lunch at Bana Hills (Buffet - Not Indian Food).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After lunch, free for joining games in&lt;strong&gt; Fantasy Park &lt;\\/strong&gt;&amp;ndash; the third biggest indoor games zone in Vietnam with a series of interesting games: 4 &amp;ndash; 5D film, skiver, the death race, dinosaur park&amp;hellip;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return to your hotel and free time at night. Have dinner at the Indian restaurant. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40320,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40322,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415138\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415139\",\"Title\":\"DANANG - HOI AN HALF DAY CITY TOUR - FLIGHT TO HO CHI MINH \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Have Breakfast at the hotel and check out then free at your leisure until our guide comes to pick you up and transfer you to Hoi An.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After reaching Hoi An, take a walk around the ancient town. As the national trading center in the 16th century, Hoi An is home to a diversity of ancient streets and homes. Stroll around the unusual cobblestone streets to admire the hundred-century-old Chinese houses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The leisurely trip offers you a great chance to see the ancient houses built in Chinese, Japanese, French, and European architecture. There are some incredible places that you should not miss when visiting Hoi An including the hundred&amp;ndash;year&amp;ndash;&lt;strong&gt;old Japanese Bridge&lt;\\/strong&gt;, the &lt;strong&gt;Phuc Kien Hall&lt;\\/strong&gt;, and the local fish market. You also have a chance to stop at a tailor-made shop to get your favorite clothes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, transfer to Da Nang Airport (without a tour guide) for a short flight to Ho Chi Minh &amp;ndash; the largest city in Vietnam.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon your arrival at the airport, our guide and driver will meet and transfer you to the hotel for check-in. The balance of the day is at your leisure. Lunch and dinner at the Indian Restaurant. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":554827,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415140\",\"Title\":\"MEKONG DELTA DAY TRIP \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Today, you will depart for &lt;strong&gt;Cai Be&lt;\\/strong&gt; by car or van via Trung Luong Express Highway. There is a stop along the way in &lt;strong&gt;Tan An town&lt;\\/strong&gt; to take some nice photos of picturesque rice fields.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once in&lt;strong&gt; Cai Be&lt;\\/strong&gt;, you will board a motor boat for a visit to the colorful Cai Be floating market where you can explore the wide selection of tropical fruits and the unique lifestyle of the local people. Then, continue onto a small family business to see the interesting making process of coconut candy and crispy rice popcorn. Take a stroll through small villages and visit the lash orchard and fruit plantation in the beautiful rhyme of traditional southern Vietnamese folk music.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Keep cruising through small canals to enjoy the charm of the &lt;strong&gt;Upper Mekong Delta.&lt;\\/strong&gt; Once arriving in&lt;strong&gt; Tan Phong Island,&lt;\\/strong&gt; join our cooking class. Share your cooking experience and try your hands to prepare some special Vietnamese dishes. Lunch will be served in the heart of the garden with the food you&amp;rsquo;ve cooked and fresh river food ( Local restaurant).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon, hop on the bike and paddle along the village road lined with beautiful orchards and bonsai gardens. Get the chance to interact with the locals on the island to get a glimpse of their way of life.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterward, take a boat ride back to Cai Be where your car\\/van awaits to take you back to Ho Chi Minh City.&amp;nbsp; Dinner at the Indian restaurant. Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":554827,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"415141\",\"Title\":\"CU CHI TUNNELS &amp; CITY TOUR AND DEPARTURE\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After checking out from the hotel. Take the morning trip to visit &lt;strong&gt;Independence Palace, &lt;\\/strong&gt;also known as the &lt;strong&gt;Reunification Palace,&lt;\\/strong&gt; which was built on the sight of the former Norodom Palace. The Independence Palace is a widely known landmark of Ho Chi Minh City and was designed by the architect Ngo Viet Thu. Continue seeing the beautiful structures from the French Colonial times such as the &lt;strong&gt;Notre Dame Cathedral,&lt;\\/strong&gt; and the &lt;strong&gt;historic Central Post Office&lt;\\/strong&gt;. Followed by the remarkable site of&lt;strong&gt; War Remnants Museum, &lt;\\/strong&gt;the museum has a vast display of both the Indochina wars.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have lunch at an Indian restaurant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon, you will transfer to &lt;strong&gt;Cu Chi Tunnels&lt;\\/strong&gt; &amp;ndash; the historic site where Vietnamese soldiers used as a shelter during wartime. This fantastic network stretches over 250 km and is the shelter of Vietnamese soldiers during the wars. The system served as communication routes, storage facilities, hospitals, and living areas for Vietnamese fighters throughout the war. Take your time to descend into the tunnels to discover the wonderful tunnels and the harsh conditions of Vietcong guerrillas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner at the restaurant and transferred to the airport (without a guide) for the departure flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;End of Services.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6373,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6368,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6361,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":46407,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56739\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"130000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":130000,\"priceDoubleOcc\":\"130000.00\",\"priceSingleOcc\":287000,\"priceExtraBed\":\"115000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":15000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":130000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":97000,\"CEB\":115000,\"COSTDO\":130000,\"COSTSO\":\"142000.00\",\"ACEB\":130000,\"COSTTO\":130000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"56739\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"125000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-09-12\",\"To\":\"2023-09-12\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-10-09\",\"To\":\"2023-10-09\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-11-07\",\"To\":\"2023-11-07\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2023-12-04\",\"To\":\"2023-12-04\",\"Currency\":1,\"priceTripleOcc\":125000,\"priceDoubleOcc\":\"125000.00\",\"priceSingleOcc\":277000,\"priceExtraBed\":\"110000.00\",\"priceWithoutBed\":\"92000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":10000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":92000,\"CEB\":110000,\"COSTDO\":125000,\"COSTSO\":\"142000.00\",\"ACEB\":125000,\"COSTTO\":125000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Early Check-in and&amp;nbsp;late check-out&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drinks, other than water on activity days&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expenses (laundry, telephone, drinks, etc...,)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional expenses caused by reasons or events outside of our control, such as riots, strikes, natural disasters (typhoons, floods), flight delays, rescheduling, or cancellations., etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 20% Extra will be applicable&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in the selected hotel as per the itinerary&amp;nbsp;&amp;nbsp;on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as Mentioned - Breakfst, Lunch &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing in Private\\/Seat In a Coach Basis-&amp;nbsp;as per the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All airport transfers as mentioned by private air-conditioned vehicle (29 seaters Bus)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All daily tour transfers in a private air-conditioned vehicle (16 seaters Bus)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local English-speaking guides&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Bottle of water in the bus&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vietnam Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International &amp;amp; Domestic flight tickets&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;FLIGHT DETAILS:-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BANGALORE TO AHMEDABAD &amp;ndash; 1650-1855 (INDIGO)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;AHMEDABAD TO HANOI&amp;nbsp; &amp;ndash; 2340-0525 (VIETJET)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;HANOI TO DANANG - 1450-1610 (VIETJET)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;DANANG TO HO CHI MINH CITY -1540-1705 (VIETJET)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;HO CHI MINH CITY TO AHMEDABAD -1905-2250 (VIETJET)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;AHMEDABAD TO BANGALORE - 0440-0650 (INDIGO)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"415131\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[415131],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415132\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[415132],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415133\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415133],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415134\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[415134],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1\"]}},\"415135\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[415135],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415136\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[415136],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1\"]}},\"415137\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[415137],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415138\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[415138],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415139\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[415139],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"415140\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[415140],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"415141\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[415141],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":{\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20230822\":{\"FromDate\":\"2023-08-22\",\"FromDateDMY\":\"22\\/08\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20230912\":{\"FromDate\":\"2023-09-12\",\"FromDateDMY\":\"12\\/09\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231009\":{\"FromDate\":\"2023-10-09\",\"FromDateDMY\":\"09\\/10\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231107\":{\"FromDate\":\"2023-11-07\",\"FromDateDMY\":\"07\\/11\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231204\":{\"FromDate\":\"2023-12-04\",\"FromDateDMY\":\"04\\/12\\/2023\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Hanoi,Halong,Danang,Ho Chi Minh City','Hanoi,South East Asia,Vietnam,Orient,Halong,Danang,Ho Chi Minh City',NULL,'11487,11405,7518,31115',125000,130000,7,NULL,NULL,NULL,2,'',0,'2023-08-25 00:00:00','2023-12-04 00:00:00','2023-12-04 00:00:00',3,'Vietnam','236','2023-08-25 00:00:00','2023-08-25 00:00:00',1,1,'1','1','1',NULL,NULL,NULL,NULL,'group-tour-grand-vietnam-all-inclusive-package-8-days',NULL,NULL,NULL,0),(331,56438,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":56438,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/8868\\/package\\/images\\/best-of-thailand-nights--days_1688376587\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;TRAVEL4SEASONS brings you the Bangkok AND Phuket Tour Package with 5 nights 6 days stay in two of the world&amp;#39;s most vibrant cities. The best Bangkok phuket Tour Package showcase the lifestyle, natural wonders &amp;amp; artificial scenes of Bangkok and phuket. We have planned this tour package in such a way that you can enjoy almost all the places of these two beautiful cities as well as get some free time hang out with loved ones.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":8868,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":8868,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Phuket\",\"SourcePlaceSysId\":21319,\"AgencyName\":\"TRAVEL4SEASONS\",\"Name\":\"BEST OF THAILAND 5NIGHTS & 6DAYS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7904\",\"SupplierName\":\"Walker Destination Management Company Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":538853,\"Name\":\"Ashlee Heights Hotel & Suites\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":523779,\"Name\":\"Sunset Beach Resort Phrabarami Road\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"7.912900899999999\",\"Long\":\"98.2944296\",\"Address\":\"316\\/2 Phrabarami Rd, Tambon Patong, Amphoe Kathu, Chang Wat Phuket 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3871,\"Title\":\"Simon Cabaret Show\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.8787672,\"Long\":98.2920958,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Simon_Cabaret_Show_21319_1519373072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516294,\"Name\":\"Seasons Siam Bangkok\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_516294\\/8868_53c7119426f0d0e34f5a8f8e4a9f18771677049578.jpg\",\"AccoAminitiesMask\":\"101000000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518793,\"Name\":\"The Ecotel Bangkok\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"13.7524697\",\"Long\":\"100.5465276\",\"Address\":\"1091 333-4 35 New Petchaburi Rd, Khwaeng Makkasan, Khet Ratchathewi, Krung Thep Maha Nakhon 10400, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3871,\"Title\":\"Simon Cabaret Show\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.8787672,\"Long\":98.2920958,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Simon_Cabaret_Show_21319_1519373072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3403,\"Title\":\"Safari World\",\"Description\":\"Safari World run by Safari World Public Limited in Thailand is a famous tourist attraction in Bangkok. There are two parks in the Safari World named Marine Park and Safari Park. In 1988 the park was opened for a total of 480 acres of open zoo and 180 acres for its bird park. A major upgrade to increase the effectiveness of land use began on April 17 1989 and was developed for holidays in its total area which now includes an open zoo and a marine park on 200 acres of land.A drive through the park takes about 45 minutes. Hundreds of animals from all over the world are present here.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":13.8667652,\"Long\":100.7063843,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Safari_World_Bangkok,_Thailand_2266_1518097783.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7904,\"SupplierName\":\"Walker Destination Management Company Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"412749\",\"Title\":\"Phuket Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Phuket, and check into the hotel (Check in time :- 14:00 hrs) then Proceed for a Half-Day Phuket City Tour with big budha and return back to hotel night stay at hotel in phuket.&lt;\\/p&gt;\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":538853,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":523779,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412750\",\"Title\":\"Phi Phi Island tour with Lunch by Big Boat (National Park fee will extra)\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Today post breakfast, get ready for an exciting day ahead. Phi Phi islands is famous from the movie &amp;lsquo;The Beach&amp;rdquo;&amp;nbsp;(2000) starring Leonardo DiCaprio. Witness the stunning mountainous scenery surrounding paradise lagoon and coves. Get lost a little bit in a lush green patch of the tropical trees. Imagine yourself being cast-away there, wandering about some foreign paradise, eating bugs right off the tree, tripping your day in the water and creating lots of memories. Proceed for local lunch.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Post this tour return to the hotel. Remaining time will be at leisure to enjoy on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Phuket Phi Phi Island Tour excludes National Park fees (Approx. THB 400-450 per Adult; THB 200-250 per Child)&amp;nbsp;which is on direct payment basis locally&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":523779,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":true,\"Id\":538853,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412751\",\"Title\":\"Phuket - Simon Cabaret Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today at leisure later in the eving proceed for&amp;nbsp;Simon Cabaret Show&amp;nbsp;&amp;nbsp;and return back to hotel noght stay at hotel in phuket.&lt;\\/p&gt;\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":523779,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":true,\"Id\":538853,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3871,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412752\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412753\",\"Title\":\"Phuket to Bangkok\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel transfer to phuket airport for your return journey to bangkok on arrival check in to hotel (check in:- 14:00hrs) later proceed for bangkok city tour and return back to hotel night stay at hptel in bangkok.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":518793,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412754\",\"Title\":\"Bangkok-Safari World with Marine Park\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, today proceed to&amp;nbsp;Safari World with Marine Park (Bangkok-Safari-Bangkok) (with Lunch) and return back to hotel overnight stay at hotel in Bangkok.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":518793,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3403,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"412755\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, check out from hotel, transfer to airport for the return journey&lt;\\/p&gt;\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"56438\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25333,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":62000,\"priceExtraBed\":\"24000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":26000,\"COSTSO\":62000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"56438\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":24000,\"COSTSO\":60000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000},{\"From\":\"2023-06-30\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":25000,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":62000,\"priceExtraBed\":\"23000.00\",\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":null,\"CEB\":24000,\"COSTDO\":26000,\"COSTSO\":62000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24000,\"COSTTO\":24000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Customers have to follow the Covid regulations\\/Protocol of each detsinations. Please check with your tour consultant to for the updated Covid Regulation.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Any mandatory quarantine or isolation, if any, will be the responsibility of the travellers\\/Customers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel4seasons will not be responsible for the consequenses of a sudden government directives with respect to the new covid regulations,&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Accommodation in the selected hotel as per the itinerary&amp;nbsp;&amp;nbsp;on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as Mentioned&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing in Private\\/Seat In a Coach Basis-&amp;nbsp;as per the itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Half day phuket city tour with big budha&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;phi phi island tour by big boat with lunch.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Simon Cabaret Show&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Halfday bangkok city tour&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Safari world marine park with lunch&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;THAI AIR ASIA AIRLINES-APPROXIMATE AIRFARE :- 25000\\/- PER PERSON&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight details:-&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BLR-HKT:- 23:20-07:45 -1h 40Mins Layover at Bangkok&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BKK-BLR-20:25-22:40&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"412749\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[412749],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412750\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[412750],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412751\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[412751],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412752\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[412752],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412753\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[412753],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412754\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[412754],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"412755\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[412755],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Phuket,Bangkok','Phuket,South East Asia,Thailand,Bangkok',NULL,'21319,2266',23000,26000,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'Thailand','215','2023-09-07 13:14:52','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-thailand-5nights-6days',NULL,NULL,NULL,0),(332,28876,1,5293,0,0,0,'Family,Culture',NULL,1,1,0,'{\"package\":{\"TPId\":28876,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/korca_the_city_of_serenades____the_old_ohrid_in_macedonia_1654771564.jpg\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":1,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#4e5f70&quot;&gt;Called City of Serenades, City of Love, City of Arts, City of the first school in the Albanian language, City of Beer, Little Paris.&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#4e5f70&quot;&gt;All this is Kor&amp;ccedil;a considered the cradle of the literary and artistic identity of Albania !!&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":0,\"AgencyId\":5439,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5439,\"DestinationPlaces\":\"Tirana\",\"DestinationPlacesSysId\":27345,\"SourcePlaces\":\"Tirana\",\"SourcePlaceSysId\":27345,\"AgencyName\":\"TRAVEL ALBANIA\",\"Name\":\"Korca, the City of Serenades   and  the old Ohrid in Macedonia \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6243\",\"SupplierName\":\"TRAVEL ALBANIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Guided Tours,Car On Disposal\",\"PackageType\":\"Family,Culture\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":27345,\"Title\":\"Tirana\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19708,\"Title\":\"Kruja and Skanderbeg&#039;s Castle\",\"Description\":\"&lt;p&gt;Kruja is a very popular tourist city and it distis only 40 km from Tirana.&Acirc;&nbsp;The city was the center of Albanian resistance against the Ottomans under our National Hero Scanderbeg. He kept the Ottoman armies from crossing into Western Europe for 25 years, thus earning the title &acirc;&euro;&oelig;Athleta Christi&acirc;&euro;\\u009d (Champion of Christ) awarded by the Pope of the time. Viisit the Skanderbeg Museum and a rich Ethnographic Museum with almost all items being original from the end of the 19th century. You can also walk through Kruja&acirc;&euro;&trade;s famous Bazaar full of traditional handicrafts and souvenirs. Don&acirc;&euro;&trade;t leave without buying very old souvenirs from this authentic bazaar.&Acirc;&nbsp;&lt;span style=&quot;color: black&quot;&gt;&Acirc;&nbsp;The famous English painter Edward Lear, who visited Kruja in 1848, wrote: &quot;Kruja, a charming little town nestled in the sky.&quot;&Acirc;&nbsp;&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":14527,\"CityName\":\"Kruja\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14527\\/sightseeing\\/5439_1633701626.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27251,\"Title\":\"Visit of Korca\",\"Description\":\"&lt;p&gt;Korca is known for its typical quarters, composed of low houses and villas, which are paved with cobblestone. The city of Kor&ccedil;a has a range of museums such as the Education Museum (located in the building where the first Albanian school opened in 1887), the renewed National Museum of Medieval Art (to visit absolutely), the Prehistoric Museum, the House-Museum of the famous landscape painter, Vangjush Mio, the Museum of the Oriental Art &ldquo;Bratko&rdquo;, Gjon Mili Photography Museum etc. In the vicinity of the city is the cemetery of French soldiers fallen during the First World War.\\r\\n&lt;\\/p&gt;&lt;p&gt;The Theatre Cajupi is also a place to see concerts or theatre performances depending by the season .\\r\\n&lt;\\/p&gt;&lt;p&gt;Apart from the museums and monuments, Kor&ccedil;a is the city where the largest carnival in Albania is organized, taking place before Orthodox Easter. Musically, the city is known for the local songs, called serenata. In the city you will find many taverns with tasteful traditional cooking such as various types of pie which perfectly combines with the good music and the traditional drink, raki.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kor&ccedil;a is a very good base for exploring many tourist points located in the nearby mountains such as Voskopoja, Dardha, Vithkuqi and Boboshtica. These villages are well known for offering the possibility to practice many outdoor sports and activities. The area is also famous for the Byzantine churches of Vithkuqi and Voskpoja, whose walls were painted by famous medieval Albanian painters. Close to Kor&ccedil;a you can visit Prespa Lake (which is the country&rsquo;s largest National Park), Drenova National Park, the Illyrian tummulus of Kamenica, etc.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":39212,\"CityName\":\"Korca\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/451\\/sightseeing\\/5439_1654506759.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":14383,\"Title\":\"Korce\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19708,\"Title\":\"Kruja and Skanderbeg&#039;s Castle\",\"Description\":\"&lt;p&gt;Kruja is a very popular tourist city and it distis only 40 km from Tirana.&Acirc;&nbsp;The city was the center of Albanian resistance against the Ottomans under our National Hero Scanderbeg. He kept the Ottoman armies from crossing into Western Europe for 25 years, thus earning the title &acirc;&euro;&oelig;Athleta Christi&acirc;&euro;\\u009d (Champion of Christ) awarded by the Pope of the time. Viisit the Skanderbeg Museum and a rich Ethnographic Museum with almost all items being original from the end of the 19th century. You can also walk through Kruja&acirc;&euro;&trade;s famous Bazaar full of traditional handicrafts and souvenirs. Don&acirc;&euro;&trade;t leave without buying very old souvenirs from this authentic bazaar.&Acirc;&nbsp;&lt;span style=&quot;color: black&quot;&gt;&Acirc;&nbsp;The famous English painter Edward Lear, who visited Kruja in 1848, wrote: &quot;Kruja, a charming little town nestled in the sky.&quot;&Acirc;&nbsp;&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":14527,\"CityName\":\"Kruja\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14527\\/sightseeing\\/5439_1633701626.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27251,\"Title\":\"Visit of Korca\",\"Description\":\"&lt;p&gt;Korca is known for its typical quarters, composed of low houses and villas, which are paved with cobblestone. The city of Kor&ccedil;a has a range of museums such as the Education Museum (located in the building where the first Albanian school opened in 1887), the renewed National Museum of Medieval Art (to visit absolutely), the Prehistoric Museum, the House-Museum of the famous landscape painter, Vangjush Mio, the Museum of the Oriental Art &ldquo;Bratko&rdquo;, Gjon Mili Photography Museum etc. In the vicinity of the city is the cemetery of French soldiers fallen during the First World War.\\r\\n&lt;\\/p&gt;&lt;p&gt;The Theatre Cajupi is also a place to see concerts or theatre performances depending by the season .\\r\\n&lt;\\/p&gt;&lt;p&gt;Apart from the museums and monuments, Kor&ccedil;a is the city where the largest carnival in Albania is organized, taking place before Orthodox Easter. Musically, the city is known for the local songs, called serenata. In the city you will find many taverns with tasteful traditional cooking such as various types of pie which perfectly combines with the good music and the traditional drink, raki.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kor&ccedil;a is a very good base for exploring many tourist points located in the nearby mountains such as Voskopoja, Dardha, Vithkuqi and Boboshtica. These villages are well known for offering the possibility to practice many outdoor sports and activities. The area is also famous for the Byzantine churches of Vithkuqi and Voskpoja, whose walls were painted by famous medieval Albanian painters. Close to Kor&ccedil;a you can visit Prespa Lake (which is the country&rsquo;s largest National Park), Drenova National Park, the Illyrian tummulus of Kamenica, etc.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":39212,\"CityName\":\"Korca\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/451\\/sightseeing\\/5439_1654506759.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205884\",\"Title\":\"TIRANA AIRPORT \\/ KRUJA \\/TIRANA\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Arrival at Tirana airport. Meeting with the guide. Departure for Kruja, a historic city located north-east of Tirana, 560 m above sea level inhabited since the 3rd century BC. Kruja was first credited as a Christian religious center in the year 879. The famous English painter Edward Lear, who visited Kruja in 1848, wrote: &amp;quot;Kruja, a charming little town immersed in the sky&amp;quot;. Visit of the castle, its typical Ottoman bazaar, the Skanderbeg Museum and the Ethnographic Museum. Return to Tirana. Free time. Overnight in a 4* Hotel in Tirana down town.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19708,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205885\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205886\",\"Title\":\"OHRID - KORCE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;Breakfast at the hotel. Departure for Ohrid. Ohrid classified as a UNESCO World Cultural Heritage Site. The tour includes the church of Santa Sofia (11th century), the most eminent medieval monument in Macedonia with magnificent Byzantine frescoes, the church of San Clemente with its icon of the Annunciation. Free time or optional boat ride to the Monastery of St. Naum. Continue to Korce. Overnight in a 4* hotel in&amp;nbsp; Korce city center.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27221,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205887\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14383,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205888\",\"Title\":\"Korce \\/ Tirane\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;Breakfast at the hotel. Kor&amp;ccedil;a is one of the largest and most important cultural and economic centers of Albania, located in the southeastern part of the country. Kor&amp;ccedil;a is the city where the largest carnival in Albania is organized, which takes place before Orthodox Easter. The city is known for its typical neighborhoods, consisting of low houses and villas, paved with cobblestones. The Cajupi Theater is also a place to attend concerts or theater performances depending on the season.&lt;br \\/&gt;\\r\\nMusically, the city is known for local songs, called serenades. Arrival in Tirana in the evening. Accommodation in a 4* Hotel in Tirana&amp;nbsp; city center.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27251,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205889\",\"Title\":\"TIRANA \\/DURRES\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Breakfast at hotel. Visit of Tirana. Departure for Durres, the ancient Durres. one of the oldest cities in Albania has the largest port in the country and is the second largest industrial center after Tirana. Durres is located on a small peninsula on the coast of the Adriatic Sea. The city was colonized by the Greeks in 627 BC. She was named Epidamnos, which later became Dyrrachium. From the Venetian tower near the port, the medieval city walls take you to the Roman amphitheater (capacity 15,000 spectators), the largest in the Balkans, dated 2nd century BC and containing a Christian crypt with a rare mosaic. The city preserves Roman and Byzantine ruins. Return to Tirana. Free time . Overnight in a 4&amp;deg; Hotel in City center.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18388,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205890\",\"Title\":\"TIRANA\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Breakfast at the hotel. Departure to the airport. End of our services&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"28876\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"260.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":364,\"priceDoubleOcc\":\"260.00\",\"priceSingleOcc\":338,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":260,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":260,\"COSTSO\":338,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572},{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":377,\"priceDoubleOcc\":\"279.50\",\"priceSingleOcc\":357.5,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":279.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":279.5,\"COSTSO\":357.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572},{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":398,\"priceDoubleOcc\":\"310.70\",\"priceSingleOcc\":388.7,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":310.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":310.7,\"COSTSO\":388.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572},{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":403,\"priceDoubleOcc\":\"318.50\",\"priceSingleOcc\":396.5,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":318.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":318.5,\"COSTSO\":396.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572},{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":458,\"priceDoubleOcc\":\"400.40\",\"priceSingleOcc\":478.4,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":400.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":400.4,\"COSTSO\":478.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572},{\"From\":\"2022-06-19\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":624,\"priceDoubleOcc\":\"650.00\",\"priceSingleOcc\":728,\"priceExtraBed\":\"325.00\",\"priceWithoutBed\":\"325.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":325,\"CEB\":325,\"COSTDO\":650,\"COSTSO\":728,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":572,\"COSTTO\":572}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Lunches and diners&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;4* Hotel Nights accommodation on single or&amp;nbsp; twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Guide cum driver at your disposal&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205884\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205884],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205885\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205886\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205886],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205887\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205887],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205888\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205888],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205889\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205889],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205890\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205890],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Tirana,Korce','Tirana,Eastern Europe,Albania,Korce,Durres,Kruja,Ohrid,Korca',NULL,'27345,14383',260,650,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Albania','2','2023-09-07 13:17:35','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'korca-the-city-of-serenades-and-the-old-ohrid-in-macedonia',NULL,NULL,NULL,0),(333,28852,1,5293,0,0,0,'Adventure,Sports,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":28852,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/hiking__rafting__boat_tour_in_albania_1654771658.jpg\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":1,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#3333ff&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Trekking &amp;nbsp;on the majestic Albanian Alps, Rafting on Vjosa River, one of the most beautiful&amp;nbsp; Balkan Rivers, and Boat tour on the marvelous and savage coast of South Albania&amp;nbsp;&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"890\",\"MarkUpOnGTXNetworkPackage\":0,\"AgencyId\":5439,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5439,\"DestinationPlaces\":\"Tirana\",\"DestinationPlacesSysId\":27345,\"SourcePlaces\":\"Tirana\",\"SourcePlaceSysId\":27345,\"AgencyName\":\"TRAVEL ALBANIA\",\"Name\":\"Hiking + Rafting + Boat tour in Albania \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6243\",\"SupplierName\":\"TRAVEL ALBANIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Adventure,Sports,Activites Tour\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25114,\"Title\":\"Shkodra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25114,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27228,\"Title\":\"Albanian Alps\",\"Description\":\"&lt;p&gt;Albanian Alps represent a valuable and unique gem in Albania\\r\\n&lt;\\/p&gt;&lt;p&gt;With a mountainous landscape with multiple contrasts, traversed by river valleys with crystal waters, gorges and mountain saddles that invite to continue to further explore the nature, and with a rich vegetation, the Albanian Alps represent a valuable and unique gem in Albania and even in the world. The Alps resemble a dome with the highest peak of Jezerca 2694 m, from which appear in the form of rays the mountain ranges with sharp peaks and steep slopes. It is impossible for visitors not to be attracted by the multiple karst, glacial and fluvial forms.\\r\\n&lt;\\/p&gt;&lt;p&gt;With its mystical beauty nature has made a compromise with itself and with men. The mountain peaks in this area seem to reach heaven. Their stunning beauty is reflected in the sobering waters of the rivers Shala, Valbona, Curraj, Cemi, Moracha, etc. as well as in the glacial lakes such those of Pech, Jezerca, Doberdol, Sylbica etc. which provide a fabulous peace and adrenaline level at any moment you contemplate the many attractions of this area.\\r\\n&lt;\\/p&gt;&lt;p&gt;Mountains such as Radohima, the Peak of Hekurave, Harapi, Shk&euml;lzen, etc. serve as points of triangulation, offering a different view which tempts the spirit of adventure of every visitor to explore the amazing beauty around them.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654421457.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18496,\"Title\":\"Guided tour of Tirana\",\"Description\":\"The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&amp;rsquo;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&amp;nbsp; Mosque and vist of the Bunk&amp;#039;Art&amp;nbsp; to know more for communist past of Albanians.\\r\\nAfter that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.\\r\\nThen we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &amp;ldquo;Deshmoret e Kombit&amp;rdquo;. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&amp;nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&amp;rsquo;s up to you if you want to have a drink or a lunch in this place.&amp;nbsp;\\r\\nTirana\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/Guided_tour_of_Tirana__27345_1611990183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27231,\"Title\":\"Rafting Vjosa River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18498,\"Title\":\"Guided tour of Gjirokaster\",\"Description\":\"Gjirokastra - the &amp;quot;Stone City&amp;quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&amp;euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &amp;quot;city of one thousand steps&amp;quot; or &amp;quot;the stone city&amp;quot;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/Guided_tour_of_Gjirokaster_10479_1611990489.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27230,\"Title\":\"Boat tour in Saranda\",\"Description\":\"&lt;p&gt;A boat trip is a great opportunity to discover the Albanian Riviera while floating on the crystal clear waters of the Ionian Sea. Head off to some virgin beaches, like Kakome, Krorez or the islands of Ksamil. Some of the best beaches can only be reached by boat, so a boat trip is a must-do when you&rsquo;re in Saranda.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1654423716.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":27345,\"Title\":\"Tirana\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":27345,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27228,\"Title\":\"Albanian Alps\",\"Description\":\"&lt;p&gt;Albanian Alps represent a valuable and unique gem in Albania\\r\\n&lt;\\/p&gt;&lt;p&gt;With a mountainous landscape with multiple contrasts, traversed by river valleys with crystal waters, gorges and mountain saddles that invite to continue to further explore the nature, and with a rich vegetation, the Albanian Alps represent a valuable and unique gem in Albania and even in the world. The Alps resemble a dome with the highest peak of Jezerca 2694 m, from which appear in the form of rays the mountain ranges with sharp peaks and steep slopes. It is impossible for visitors not to be attracted by the multiple karst, glacial and fluvial forms.\\r\\n&lt;\\/p&gt;&lt;p&gt;With its mystical beauty nature has made a compromise with itself and with men. The mountain peaks in this area seem to reach heaven. Their stunning beauty is reflected in the sobering waters of the rivers Shala, Valbona, Curraj, Cemi, Moracha, etc. as well as in the glacial lakes such those of Pech, Jezerca, Doberdol, Sylbica etc. which provide a fabulous peace and adrenaline level at any moment you contemplate the many attractions of this area.\\r\\n&lt;\\/p&gt;&lt;p&gt;Mountains such as Radohima, the Peak of Hekurave, Harapi, Shk&euml;lzen, etc. serve as points of triangulation, offering a different view which tempts the spirit of adventure of every visitor to explore the amazing beauty around them.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654421457.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18496,\"Title\":\"Guided tour of Tirana\",\"Description\":\"The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&amp;rsquo;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&amp;nbsp; Mosque and vist of the Bunk&amp;#039;Art&amp;nbsp; to know more for communist past of Albanians.\\r\\nAfter that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.\\r\\nThen we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &amp;ldquo;Deshmoret e Kombit&amp;rdquo;. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&amp;nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&amp;rsquo;s up to you if you want to have a drink or a lunch in this place.&amp;nbsp;\\r\\nTirana\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/Guided_tour_of_Tirana__27345_1611990183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27231,\"Title\":\"Rafting Vjosa River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18498,\"Title\":\"Guided tour of Gjirokaster\",\"Description\":\"Gjirokastra - the &amp;quot;Stone City&amp;quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&amp;euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &amp;quot;city of one thousand steps&amp;quot; or &amp;quot;the stone city&amp;quot;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/Guided_tour_of_Gjirokaster_10479_1611990489.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27230,\"Title\":\"Boat tour in Saranda\",\"Description\":\"&lt;p&gt;A boat trip is a great opportunity to discover the Albanian Riviera while floating on the crystal clear waters of the Ionian Sea. Head off to some virgin beaches, like Kakome, Krorez or the islands of Ksamil. Some of the best beaches can only be reached by boat, so a boat trip is a must-do when you&rsquo;re in Saranda.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1654423716.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":10479,\"Title\":\"Gjirokaster\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":10479,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27228,\"Title\":\"Albanian Alps\",\"Description\":\"&lt;p&gt;Albanian Alps represent a valuable and unique gem in Albania\\r\\n&lt;\\/p&gt;&lt;p&gt;With a mountainous landscape with multiple contrasts, traversed by river valleys with crystal waters, gorges and mountain saddles that invite to continue to further explore the nature, and with a rich vegetation, the Albanian Alps represent a valuable and unique gem in Albania and even in the world. The Alps resemble a dome with the highest peak of Jezerca 2694 m, from which appear in the form of rays the mountain ranges with sharp peaks and steep slopes. It is impossible for visitors not to be attracted by the multiple karst, glacial and fluvial forms.\\r\\n&lt;\\/p&gt;&lt;p&gt;With its mystical beauty nature has made a compromise with itself and with men. The mountain peaks in this area seem to reach heaven. Their stunning beauty is reflected in the sobering waters of the rivers Shala, Valbona, Curraj, Cemi, Moracha, etc. as well as in the glacial lakes such those of Pech, Jezerca, Doberdol, Sylbica etc. which provide a fabulous peace and adrenaline level at any moment you contemplate the many attractions of this area.\\r\\n&lt;\\/p&gt;&lt;p&gt;Mountains such as Radohima, the Peak of Hekurave, Harapi, Shk&euml;lzen, etc. serve as points of triangulation, offering a different view which tempts the spirit of adventure of every visitor to explore the amazing beauty around them.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654421457.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18496,\"Title\":\"Guided tour of Tirana\",\"Description\":\"The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&amp;rsquo;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&amp;nbsp; Mosque and vist of the Bunk&amp;#039;Art&amp;nbsp; to know more for communist past of Albanians.\\r\\nAfter that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.\\r\\nThen we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &amp;ldquo;Deshmoret e Kombit&amp;rdquo;. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&amp;nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&amp;rsquo;s up to you if you want to have a drink or a lunch in this place.&amp;nbsp;\\r\\nTirana\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/Guided_tour_of_Tirana__27345_1611990183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27231,\"Title\":\"Rafting Vjosa River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18498,\"Title\":\"Guided tour of Gjirokaster\",\"Description\":\"Gjirokastra - the &amp;quot;Stone City&amp;quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&amp;euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &amp;quot;city of one thousand steps&amp;quot; or &amp;quot;the stone city&amp;quot;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/Guided_tour_of_Gjirokaster_10479_1611990489.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27230,\"Title\":\"Boat tour in Saranda\",\"Description\":\"&lt;p&gt;A boat trip is a great opportunity to discover the Albanian Riviera while floating on the crystal clear waters of the Ionian Sea. Head off to some virgin beaches, like Kakome, Krorez or the islands of Ksamil. Some of the best beaches can only be reached by boat, so a boat trip is a must-do when you&rsquo;re in Saranda.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1654423716.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":24302,\"Title\":\"Saranda\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":24302,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27228,\"Title\":\"Albanian Alps\",\"Description\":\"&lt;p&gt;Albanian Alps represent a valuable and unique gem in Albania\\r\\n&lt;\\/p&gt;&lt;p&gt;With a mountainous landscape with multiple contrasts, traversed by river valleys with crystal waters, gorges and mountain saddles that invite to continue to further explore the nature, and with a rich vegetation, the Albanian Alps represent a valuable and unique gem in Albania and even in the world. The Alps resemble a dome with the highest peak of Jezerca 2694 m, from which appear in the form of rays the mountain ranges with sharp peaks and steep slopes. It is impossible for visitors not to be attracted by the multiple karst, glacial and fluvial forms.\\r\\n&lt;\\/p&gt;&lt;p&gt;With its mystical beauty nature has made a compromise with itself and with men. The mountain peaks in this area seem to reach heaven. Their stunning beauty is reflected in the sobering waters of the rivers Shala, Valbona, Curraj, Cemi, Moracha, etc. as well as in the glacial lakes such those of Pech, Jezerca, Doberdol, Sylbica etc. which provide a fabulous peace and adrenaline level at any moment you contemplate the many attractions of this area.\\r\\n&lt;\\/p&gt;&lt;p&gt;Mountains such as Radohima, the Peak of Hekurave, Harapi, Shk&euml;lzen, etc. serve as points of triangulation, offering a different view which tempts the spirit of adventure of every visitor to explore the amazing beauty around them.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654421457.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18496,\"Title\":\"Guided tour of Tirana\",\"Description\":\"The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&amp;rsquo;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&amp;nbsp; Mosque and vist of the Bunk&amp;#039;Art&amp;nbsp; to know more for communist past of Albanians.\\r\\nAfter that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.\\r\\nThen we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &amp;ldquo;Deshmoret e Kombit&amp;rdquo;. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&amp;nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&amp;rsquo;s up to you if you want to have a drink or a lunch in this place.&amp;nbsp;\\r\\nTirana\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/Guided_tour_of_Tirana__27345_1611990183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27231,\"Title\":\"Rafting Vjosa River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18498,\"Title\":\"Guided tour of Gjirokaster\",\"Description\":\"Gjirokastra - the &amp;quot;Stone City&amp;quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&amp;euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &amp;quot;city of one thousand steps&amp;quot; or &amp;quot;the stone city&amp;quot;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/Guided_tour_of_Gjirokaster_10479_1611990489.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27230,\"Title\":\"Boat tour in Saranda\",\"Description\":\"&lt;p&gt;A boat trip is a great opportunity to discover the Albanian Riviera while floating on the crystal clear waters of the Ionian Sea. Head off to some virgin beaches, like Kakome, Krorez or the islands of Ksamil. Some of the best beaches can only be reached by boat, so a boat trip is a must-do when you&rsquo;re in Saranda.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1654423716.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205708\",\"Title\":\"Airport - Shkoder\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Tirana airport. Meeting with the guide. Departure for Shkodra on the shores of&amp;nbsp; Shkodra Lake. Hotel accommodation. Visit the city and its cathedral. Visit the art gallery Marubi. Free time for dinner. Overnight in a 4* hotel in city center.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27227,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205709\",\"Title\":\"Through the Canyon of Lake Koman, and into the Albanian Alps\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Early in the morning we will depart on a scenic drive from Shkodra, to reach the docks in the dam of Koman. The homonymous lake beyond it, was artificially created in the 80&amp;rsquo;s after the construction of the third hydropower dam that interrupts the canyon of river Drin.The spectacular boat ride through gorgeous landscape that will follow from there, is a not-to-miss highlight of Northern Albania! Once reached the docks of Fierza, we will stop for a tasty lunch in a traditional restaurant nearby. The trip will continue by local car through the narrow valley of Valbona &amp;ndash; one of the most beautiful valleys of the Albanian Alps. Our transfer ends in the charming village of Valbona &amp;ndash; Rrogam, where we will be hosted in a comfortable local guesthouse. The location of the house is the ideal starting point for all kinds of hikes in the surrounding mountains. Free time to explore the village at own pace, while the steep and jagged limestone peaks above the village are embraced by the sunset light. &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27228,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205710\",\"Title\":\"The Valbona Pass\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today we hike on a &amp;lsquo;classic&amp;rsquo; trail of the Albanian Alps that for centuries connected the glacier valleys of Valbona and Theth via the 1860m high Valbona Pass. The pass becomes possible to cross on foot from the end of May, when the snow melts enough to let people and animals through.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indeed, we will use horses to carry the luggage to the next guesthouse, and start walking towards the end of the valley. Once past the last houses of Rrogam, the trail steepens up towards a plateau sided by rough slopes and a winding narrow trail that leads to the Valbona Pass. On clear days the col is a superb panoramic spot from where to admire the jagged peaks of &amp;lsquo;Bjeshket e Namuna&amp;rsquo; &amp;ndash; the Accursed Mountains. We than start to descent towards the village of Thethi (850m), again passing through dense woods and grassy meadows where we will stop for picnic. In the afternoon we will&amp;nbsp; depart toward Tirana. Dinner and overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205711\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205712\",\"Title\":\"Discover  Tirana \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast in the hotel. &lt;span style=&quot;color:black&quot;&gt;Full day dedicated of the visit of Tirana. &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;The night will be hold in one of the many pubs with really good live music. Overnight in a 4* hotel in Tirana city center.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18496,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205713\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205714\",\"Title\":\"Tirana -  Permet,  Rafting on Vjosa river -  Gjirokaster \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast in hotel&lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;. T&lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;ransfer to the ancient city of &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;Permet, known for many tourist attractions from where the group will go to the rafting site.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rafting on Vjosa River, one of Europe&amp;rsquo;s last free-flowing rivers, is a class III rafting. Prepare for waves up to four feet and narrow passages that send the boat shimmying and water gushing over the sides. Vjosa river&amp;rsquo;s entire 270km course is wild and untamed and adorned with beautiful canyons, braided river sections, islands and oxbows.&amp;nbsp; &lt;span style=&quot;color:black&quot;&gt;Transfer to &lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;Gjirokaster, UNESCO Heritage Site. Overnight in a 4* hotel in city center&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10479,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27231,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205715\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10479,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205716\",\"Title\":\"Gjirokaster -  Saranda  -  seaside vacations\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast in hotel . Tour of Gjirokaster.&amp;nbsp; Many houses in Gjirokaster have a local distinctive style with roofs covered in stone slabs, giving it the nickname &amp;quot;City of Stones&amp;quot;. Of great importance and interest &amp;nbsp;are the&amp;nbsp; castle, the Museum of Arms, the Ethnographic Museum &amp;ndash; also known as Enver Hoxha&amp;rsquo;s home &amp;ndash; and the home of the Zekate family, an important Gjirokaster family. Time for lunch. Transfer to Saranda. Free time. T&lt;\\/span&gt;&lt;span style=&quot;color:black&quot;&gt;he night will be hold in one of the discotheques of the city. Overnight in a 4* hotel&amp;nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18498,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205717\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205718\",\"Title\":\"Tour boat in Saranda coast \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Breakfast in the hotel.&amp;nbsp; Suggested tour boat in the Ionian Sea to discover the treasures of the sea and caverns in the neighborhood of Saranda.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27230,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205719\",\"Title\":\"Tirana \",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Breakfast at the hotel. Departure&amp;nbsp; for Tirana and then for the airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"28852\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"421.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":571,\"priceDoubleOcc\":\"421.20\",\"priceSingleOcc\":603.2,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":421.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":421.2,\"COSTSO\":603.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":590,\"priceDoubleOcc\":\"449.80\",\"priceSingleOcc\":631.8,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":449.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":449.8,\"COSTSO\":631.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":620,\"priceDoubleOcc\":\"494.00\",\"priceSingleOcc\":676,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":494,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":494,\"COSTSO\":676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":646,\"priceDoubleOcc\":\"533.00\",\"priceSingleOcc\":715,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":533,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":533,\"COSTSO\":715,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":819,\"priceDoubleOcc\":\"793.00\",\"priceSingleOcc\":975,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":793,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":793,\"COSTSO\":975,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":992,\"priceDoubleOcc\":\"1053.00\",\"priceSingleOcc\":1235,\"priceExtraBed\":\"526.50\",\"priceWithoutBed\":\"526.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1053,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":526.5,\"CEB\":526.5,\"COSTDO\":1053,\"COSTSO\":1235,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;4* Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hiking with specialised mountain guide&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rafting with specialized guides and appropriate equipment&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;6 hour Boat Tour&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205708\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205708],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205709\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205709],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205710\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205710],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205711\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205711],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205712\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205712],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205713\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205713],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205714\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205714],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205715\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205715],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205716\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205716],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205717\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205717],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205718\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205718],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205719\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[205719],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shkodra,Tirana,Gjirokaster,Saranda','Shkodra,Eastern Europe,Albania,Tirana,Gjirokaster,Saranda',NULL,'25114,27345,10479,24302',421,1053,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Albania','2','2023-09-07 13:17:46','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'hiking-+-rafting-+-boat-tour-in-albania',NULL,NULL,NULL,0),(334,28808,1,5293,0,0,0,'Adventure,Family,Culture,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":28808,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/albaniamacedonia_1654438529.jpg\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":1,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Program Albania &amp;amp; Macedonia invites everyone to discover a land brimming with stunning scenery, rich cultural&amp;nbsp;traditions, historical sites, treasure-filled museums, extraordinary architecture and legendary folklore. You will have the chance to meet local people who will stick on your mind for their warm and friendly approach.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"449\",\"MarkUpOnGTXNetworkPackage\":0,\"AgencyId\":5439,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5439,\"DestinationPlaces\":\"Tirana\",\"DestinationPlacesSysId\":27345,\"SourcePlaces\":\"Skopje\",\"SourcePlaceSysId\":25410,\"AgencyName\":\"TRAVEL ALBANIA\",\"Name\":\"Albania & Macedonia\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6243\",\"SupplierName\":\"TRAVEL ALBANIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Car On Disposal\",\"PackageType\":\"Adventure,Family,Culture,Group Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25410,\"Title\":\"Skopje\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25410,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18361,\"Title\":\"Visit of Berat\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Located in central Albania, Berat,&nbsp; Unesco&#039;s World Heritage, bears witness to the coexistence of various religious and cultural communities down the centuries. It features a castle, locally known as the Kala, most of which was built in the 13th century, although its origins date back to the 4th century BC. The citadel area numbers many Byzantine churches, mainly from the 13th century, as well as several mosques built under the Ottoman era which began in 1417.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2956,\"CityName\":\"Berat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2956\\/sightseeing\\/5439_1654533518.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27233,\"Title\":\"Visit Gjirokaster (Unesco site)\",\"Description\":\"&lt;p&gt;Gjirokastra - the &quot;Stone City&quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &quot;city of one thousand steps&quot; or &quot;the stone city&quot;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/5439_1654427741.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18386,\"Title\":\"Visit of Butrinti\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Butrinti, Unesco&#039;s World Heritage, constitutes a very rare combination of archaeology and nature. The property is a microcosm of Mediterranean history, with occupation dating from 50 000 BC, at its earliest evidence, up to the 19th century AD. Prehistoric sites have been identified within the nucleus of Butrint, the small hill surrounded by the waters of Lake Butrint and Vivari Channel, as well as in its wider territory. From 800 BC until the arrival of the Romans, Butrint was influenced by Greek culture, bearing elements of a &acirc;&euro;&oelig;polis&acirc;&euro;? and being settled by Chaonian tribes. In 44 BC Butrint became a Roman colony and expanded considerably on reclaimed marshland, primarily to the south across the Vivari Channel, where an aqueduct was built. In the 5th century AD Butrint became an Episcopal centre it was fortified and substantial early Christian structures were built. After a period of abandonment, Butrint was reconstructed under Byzantine control in the 9th century. Butrint and its territory came under Angevin and then Venetian control in the 14th century. Several attacks by despots of Epirus and then later by Ottomans led to the strengthening and extension of the defensive works of Butrint. At the beginning of the 19th century, a new fortress was added to the defensive system of Butrint at the mouth of the Vivari Channel. It was built by Ali Pasha, an Albanian Ottoman ruler who controlled Butrint and the area until its final abandonment.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1624356351.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18362,\"Title\":\"Visit of Tirana\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&acirc;&euro;&trade;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&Acirc;&nbsp; Mosque and vist of the Bunk&#039;Art&Acirc;&nbsp; to know more for communist past of Albanians.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;After that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Then we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &acirc;&euro;&oelig;Deshmoret e Kombit&acirc;&euro;\\u009d. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&Acirc;&nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&acirc;&euro;&trade;s up to you if you want to have a drink or a lunch in this place.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/5439_1611772586.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":19969,\"Title\":\"Ohrid\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":19969,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18361,\"Title\":\"Visit of Berat\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Located in central Albania, Berat,&nbsp; Unesco&#039;s World Heritage, bears witness to the coexistence of various religious and cultural communities down the centuries. It features a castle, locally known as the Kala, most of which was built in the 13th century, although its origins date back to the 4th century BC. The citadel area numbers many Byzantine churches, mainly from the 13th century, as well as several mosques built under the Ottoman era which began in 1417.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2956,\"CityName\":\"Berat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2956\\/sightseeing\\/5439_1654533518.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27233,\"Title\":\"Visit Gjirokaster (Unesco site)\",\"Description\":\"&lt;p&gt;Gjirokastra - the &quot;Stone City&quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &quot;city of one thousand steps&quot; or &quot;the stone city&quot;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/5439_1654427741.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18386,\"Title\":\"Visit of Butrinti\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Butrinti, Unesco&#039;s World Heritage, constitutes a very rare combination of archaeology and nature. The property is a microcosm of Mediterranean history, with occupation dating from 50 000 BC, at its earliest evidence, up to the 19th century AD. Prehistoric sites have been identified within the nucleus of Butrint, the small hill surrounded by the waters of Lake Butrint and Vivari Channel, as well as in its wider territory. From 800 BC until the arrival of the Romans, Butrint was influenced by Greek culture, bearing elements of a &acirc;&euro;&oelig;polis&acirc;&euro;? and being settled by Chaonian tribes. In 44 BC Butrint became a Roman colony and expanded considerably on reclaimed marshland, primarily to the south across the Vivari Channel, where an aqueduct was built. In the 5th century AD Butrint became an Episcopal centre it was fortified and substantial early Christian structures were built. After a period of abandonment, Butrint was reconstructed under Byzantine control in the 9th century. Butrint and its territory came under Angevin and then Venetian control in the 14th century. Several attacks by despots of Epirus and then later by Ottomans led to the strengthening and extension of the defensive works of Butrint. At the beginning of the 19th century, a new fortress was added to the defensive system of Butrint at the mouth of the Vivari Channel. It was built by Ali Pasha, an Albanian Ottoman ruler who controlled Butrint and the area until its final abandonment.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1624356351.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18362,\"Title\":\"Visit of Tirana\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&acirc;&euro;&trade;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&Acirc;&nbsp; Mosque and vist of the Bunk&#039;Art&Acirc;&nbsp; to know more for communist past of Albanians.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;After that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Then we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &acirc;&euro;&oelig;Deshmoret e Kombit&acirc;&euro;\\u009d. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&Acirc;&nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&acirc;&euro;&trade;s up to you if you want to have a drink or a lunch in this place.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/5439_1611772586.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":2956,\"Title\":\"Berat\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":2956,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18361,\"Title\":\"Visit of Berat\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Located in central Albania, Berat,&nbsp; Unesco&#039;s World Heritage, bears witness to the coexistence of various religious and cultural communities down the centuries. It features a castle, locally known as the Kala, most of which was built in the 13th century, although its origins date back to the 4th century BC. The citadel area numbers many Byzantine churches, mainly from the 13th century, as well as several mosques built under the Ottoman era which began in 1417.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2956,\"CityName\":\"Berat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2956\\/sightseeing\\/5439_1654533518.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27233,\"Title\":\"Visit Gjirokaster (Unesco site)\",\"Description\":\"&lt;p&gt;Gjirokastra - the &quot;Stone City&quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &quot;city of one thousand steps&quot; or &quot;the stone city&quot;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/5439_1654427741.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18386,\"Title\":\"Visit of Butrinti\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Butrinti, Unesco&#039;s World Heritage, constitutes a very rare combination of archaeology and nature. The property is a microcosm of Mediterranean history, with occupation dating from 50 000 BC, at its earliest evidence, up to the 19th century AD. Prehistoric sites have been identified within the nucleus of Butrint, the small hill surrounded by the waters of Lake Butrint and Vivari Channel, as well as in its wider territory. From 800 BC until the arrival of the Romans, Butrint was influenced by Greek culture, bearing elements of a &acirc;&euro;&oelig;polis&acirc;&euro;? and being settled by Chaonian tribes. In 44 BC Butrint became a Roman colony and expanded considerably on reclaimed marshland, primarily to the south across the Vivari Channel, where an aqueduct was built. In the 5th century AD Butrint became an Episcopal centre it was fortified and substantial early Christian structures were built. After a period of abandonment, Butrint was reconstructed under Byzantine control in the 9th century. Butrint and its territory came under Angevin and then Venetian control in the 14th century. Several attacks by despots of Epirus and then later by Ottomans led to the strengthening and extension of the defensive works of Butrint. At the beginning of the 19th century, a new fortress was added to the defensive system of Butrint at the mouth of the Vivari Channel. It was built by Ali Pasha, an Albanian Ottoman ruler who controlled Butrint and the area until its final abandonment.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1624356351.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18362,\"Title\":\"Visit of Tirana\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&acirc;&euro;&trade;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&Acirc;&nbsp; Mosque and vist of the Bunk&#039;Art&Acirc;&nbsp; to know more for communist past of Albanians.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;After that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Then we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &acirc;&euro;&oelig;Deshmoret e Kombit&acirc;&euro;\\u009d. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&Acirc;&nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&acirc;&euro;&trade;s up to you if you want to have a drink or a lunch in this place.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/5439_1611772586.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":24302,\"Title\":\"Saranda\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":24302,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18361,\"Title\":\"Visit of Berat\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Located in central Albania, Berat,&nbsp; Unesco&#039;s World Heritage, bears witness to the coexistence of various religious and cultural communities down the centuries. It features a castle, locally known as the Kala, most of which was built in the 13th century, although its origins date back to the 4th century BC. The citadel area numbers many Byzantine churches, mainly from the 13th century, as well as several mosques built under the Ottoman era which began in 1417.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2956,\"CityName\":\"Berat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2956\\/sightseeing\\/5439_1654533518.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27233,\"Title\":\"Visit Gjirokaster (Unesco site)\",\"Description\":\"&lt;p&gt;Gjirokastra - the &quot;Stone City&quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &quot;city of one thousand steps&quot; or &quot;the stone city&quot;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/5439_1654427741.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18386,\"Title\":\"Visit of Butrinti\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Butrinti, Unesco&#039;s World Heritage, constitutes a very rare combination of archaeology and nature. The property is a microcosm of Mediterranean history, with occupation dating from 50 000 BC, at its earliest evidence, up to the 19th century AD. Prehistoric sites have been identified within the nucleus of Butrint, the small hill surrounded by the waters of Lake Butrint and Vivari Channel, as well as in its wider territory. From 800 BC until the arrival of the Romans, Butrint was influenced by Greek culture, bearing elements of a &acirc;&euro;&oelig;polis&acirc;&euro;? and being settled by Chaonian tribes. In 44 BC Butrint became a Roman colony and expanded considerably on reclaimed marshland, primarily to the south across the Vivari Channel, where an aqueduct was built. In the 5th century AD Butrint became an Episcopal centre it was fortified and substantial early Christian structures were built. After a period of abandonment, Butrint was reconstructed under Byzantine control in the 9th century. Butrint and its territory came under Angevin and then Venetian control in the 14th century. Several attacks by despots of Epirus and then later by Ottomans led to the strengthening and extension of the defensive works of Butrint. At the beginning of the 19th century, a new fortress was added to the defensive system of Butrint at the mouth of the Vivari Channel. It was built by Ali Pasha, an Albanian Ottoman ruler who controlled Butrint and the area until its final abandonment.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1624356351.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18362,\"Title\":\"Visit of Tirana\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&acirc;&euro;&trade;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&Acirc;&nbsp; Mosque and vist of the Bunk&#039;Art&Acirc;&nbsp; to know more for communist past of Albanians.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;After that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Then we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &acirc;&euro;&oelig;Deshmoret e Kombit&acirc;&euro;\\u009d. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&Acirc;&nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&acirc;&euro;&trade;s up to you if you want to have a drink or a lunch in this place.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/5439_1611772586.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":27345,\"Title\":\"Tirana\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":27345,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18361,\"Title\":\"Visit of Berat\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Located in central Albania, Berat,&nbsp; Unesco&#039;s World Heritage, bears witness to the coexistence of various religious and cultural communities down the centuries. It features a castle, locally known as the Kala, most of which was built in the 13th century, although its origins date back to the 4th century BC. The citadel area numbers many Byzantine churches, mainly from the 13th century, as well as several mosques built under the Ottoman era which began in 1417.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2956,\"CityName\":\"Berat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2956\\/sightseeing\\/5439_1654533518.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27233,\"Title\":\"Visit Gjirokaster (Unesco site)\",\"Description\":\"&lt;p&gt;Gjirokastra - the &quot;Stone City&quot;, situated in the southern part of Albania only 1 hour far from Saranda city, on the eastern slope of mountain Mali i Gjere. It is a commercial center in South Albania, it produces foodstuffs, leather, and textiles. There are several 18th-century mosques and churches and an old citadel (rebuilt in the 19th cent.) in the town. Dating probably from the 4th cent., Gjirokast&euml;r passed to the Turks in the 15th cent. It was captured (1811) by Ali Pasha and was the center (late 1800s) of anti-Turkish resistance. In World War II it was occupied by Italy, Greece, and Germany in succession. What strikes the visitors most in Gjirokastra are its typical and characteristic houses which resemble little fortresses, clustered one above the other. Their exterior combines roughness with the beauty of windows, small rooms and light pillars supporting the roofs protruding from the walls. The most attractive feature is the stone which has been masterfully elaborated by the builders. Once Gjirokastra has been called the &quot;city of one thousand steps&quot; or &quot;the stone city&quot;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":10479,\"CityName\":\"Gjirokaster\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10479\\/sightseeing\\/5439_1654427741.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18386,\"Title\":\"Visit of Butrinti\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Arial, Verdana, sans-serif font-size: 16.6px text-align: left background-color: rgb(238, 238, 238)&quot;&gt;Butrinti, Unesco&#039;s World Heritage, constitutes a very rare combination of archaeology and nature. The property is a microcosm of Mediterranean history, with occupation dating from 50 000 BC, at its earliest evidence, up to the 19th century AD. Prehistoric sites have been identified within the nucleus of Butrint, the small hill surrounded by the waters of Lake Butrint and Vivari Channel, as well as in its wider territory. From 800 BC until the arrival of the Romans, Butrint was influenced by Greek culture, bearing elements of a &acirc;&euro;&oelig;polis&acirc;&euro;? and being settled by Chaonian tribes. In 44 BC Butrint became a Roman colony and expanded considerably on reclaimed marshland, primarily to the south across the Vivari Channel, where an aqueduct was built. In the 5th century AD Butrint became an Episcopal centre it was fortified and substantial early Christian structures were built. After a period of abandonment, Butrint was reconstructed under Byzantine control in the 9th century. Butrint and its territory came under Angevin and then Venetian control in the 14th century. Several attacks by despots of Epirus and then later by Ottomans led to the strengthening and extension of the defensive works of Butrint. At the beginning of the 19th century, a new fortress was added to the defensive system of Butrint at the mouth of the Vivari Channel. It was built by Ali Pasha, an Albanian Ottoman ruler who controlled Butrint and the area until its final abandonment.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":24302,\"CityName\":\"Saranda\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/24302\\/sightseeing\\/5439_1624356351.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18388,\"Title\":\"Durres\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Durres is one of the oldest towns in Albania and the first and perhaps the most important of the Greek colonies in the country. It was founded at Epidamnus in 627 B.C. by Greeks from Corcyra (present-day Corfu) and Corinth. Greek and Roman authors called it &quot;the Admirable City&quot; for its temple, statues, and other monuments. However, only a few remains remind us of this city glory days, mainly due to earthquakes and, also the fact that Durres has been continuously inhabited through time. Therefore it has been transformed accordingly. The walking tour in Durres will include the Venetian Town 15 century, featuring the close cultural and architectural ties the city had with Venice during the ottoman rule. We proceed along the Byzantine walls from the 4th and 5th century. The second stop will be the Roman ruins of a 2nd century amphitheater. This site associated with the names of Roman Emperors Trajan and Hadrian, it has been one of the most important entertaining attractions. The tour through the galleries will take us to the byzantine church, with its mural mosaics, dating from the 14th century.&nbsp;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8366,\"CityName\":\"Durres\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8366\\/sightseeing\\/5439_1654508412.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":18362,\"Title\":\"Visit of Tirana\",\"Description\":\"&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;The tour starts at Skanderbeg Square, the main destination for all tourists visiting Tirana. A short history about this square and the buildings around it: Palace of Culture, National Bank, the Et&acirc;&euro;&trade;hem Bey Mosque, The Clock Tower and National Museum. Visit of the National Historical Museum to have guidance on the Albanian history. Visit of the 1783&Acirc;&nbsp; Mosque and vist of the Bunk&#039;Art&Acirc;&nbsp; to know more for communist past of Albanians.&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;After that we head to the New Bazaar, but before that we visit the Kadare House, which is the newest museum in Tirana. Here Kadare lived almost 40 years and it is the place where he wrote most of his famous books. We continue to the new Bazaar, which is a newly open space which is also very populated lately. We have a coffee break there and continue to the Tanners Bridge, across the George Bush Street.&lt;\\/p&gt;&lt;p style=&quot;color: rgb(51, 51, 51) font-family: &quot; helvetica=&quot;&quot; neue&quot;,=&quot;&quot; helvetica,=&quot;&quot; arial,=&quot;&quot; sans-serif=&quot;&quot; text-align:=&quot;&quot; start&quot;=&quot;&quot;&gt;Then we turn back at Pedestrian Street Murat Toptani, until we reach the main Boulevard &acirc;&euro;&oelig;Deshmoret e Kombit&acirc;&euro;\\u009d. We continue to see all the historical places we had in both sides of the Boulevard: Government Buildings, Reja Installation, the Monument of Independence, Rinia Park,&Acirc;&nbsp; the Pyramid- the symbol of communism, then we head to Postbllok Monuments, Palace of Congress and reach Mother Teresa Square. We turn back for a tour to Blloku area, former isolated area during communist regime. It&acirc;&euro;&trade;s up to you if you want to have a drink or a lunch in this place.&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":27345,\"CityName\":\"Tirana\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27345\\/sightseeing\\/5439_1611772586.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205323\",\"Title\":\"Airport of Skopje  - Bitola 174 km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#333333&quot;&gt;A&lt;\\/span&gt;&lt;span style=&quot;color:#333333&quot;&gt;rrival to Skopje Airport, meeting with our guide. Tour of Skopje, city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area. Transfer to Bitola. Dinner and overnight in Hotel. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19709,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205324\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205325\",\"Title\":\"Bitola -  Ohrid  68 km \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:#333333&quot;&gt;Breakfast in hotel. Bitola is an administrative, cultural, industrial, commercial, and educational Centre of the Republic of Macedonia. Walking tour of HERAKLEA - Famous for its dazzling mosaics, ancient theatre and Roman baths, Heraclea is the most vividly preserved city from the Ancient Macedonian Empire surviving in the country. Free time for lunch. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#333333&quot;&gt;Transfer to Ohrid.&amp;nbsp; classified as a &lt;strong&gt;UNESCO`s World Cultural Heritage site&lt;\\/strong&gt;. The sightseeing tour includes the church of St Sofia (11th century), the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings, St Cl&amp;eacute;ment&amp;rsquo;s Church with its icon of Annunciation. Free time or optional boat ride to St. Naum Monastery. Accommodation and overnight in Ohrid. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19969,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27221,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205326\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19969,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205327\",\"Title\":\"Ohrid  - Berat 161 km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Breakfast in hotel. Transfer to Berat,&amp;nbsp; UNESCO Heritage Site, called the &amp;quot;city of a thousand windows&amp;quot;, divided into an &amp;quot;upper town&amp;quot; of 14th century origin, rich in Byzantine churches; and a &amp;quot;low town&amp;quot;. adorned with numerous ancient mosques. Its famous districts are the Castle, Mangalemi, and Gorica. Even today, its citadel is inhabited by more than a thousand families. There are countless places of interest in and around the Castle, including early Christian churches, the Cathedral of Santa Maria, and the many mosques built in the 14th, 15th, and 16th centuries. Dinner and overnight in Hotel. &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2956,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18361,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205328\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2956,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205333\",\"Title\":\"Berat - Gjirokaster - Saranda  158 km + 56 km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Transfer to the ancient city of &lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Gjirokaster, UNESCO Heritage Site. &lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Many houses in Gjirokaster have a local distinctive style with roofs covered in stone slabs, giving it the nickname &amp;quot;City of Stones&amp;quot;. Of great importance and interest are the castle, the Museum of Arms, the Ethnographic Museum &amp;ndash; also known as Enver Hoxha&amp;rsquo;s home &amp;ndash; and the home of the Zekate family, an important Gjirokaster family. Free time for lunch. 16:00 - 17:00 Transfer to Saranda, stopping on the way to visit a &amp;ldquo;Blue Eye, a naturalistic site.&amp;nbsp; Accommodation and overnight in Ksamil (10 km from Saranda). &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27233,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205334\",\"Title\":\"Saranda  - Butrinti  28 km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Breakfast in Hotel. Free time to enjoy the seaside. In the afternoon transfer to the archaeological park of Butrint mentioned by Virgil in the Eneid. The city is located across the sea from the Greek island of Corfu, and is one of the most important archaeological sites in the Mediterranean, declared &amp;quot;World Heritage&amp;quot; by UNESCO. The city retains Greek ruins; imposing Roman monuments; an early Christian Church and an Ottoman fort. Butrint has been inhabited almost continuously, from the 8th century B.C. and played an important role in the first &lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Peloponnesian War.&amp;nbsp; Hotel accommodation and overnight in&amp;nbsp; a 4* Hotel in Ksamil (10 km from Saranda)&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18386,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205335\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24302,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205336\",\"Title\":\"Saranda -   Durres - Tirana   283 km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Trasfert to&amp;nbsp; Durres, &lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;one of the most ancient cities in Albania, which has the largest port in the country and is the second largest industrial center after Tirana. Durres is located on a small peninsula on the Adriatic coast. The city was colonized by the Greeks in 627 B.C. and was named Epidamnos, later becoming known as Dyrrachium. From the Venetian Tower near the harbor, the medieval city walls take you to the Roman amphitheatre (capacity 15,000 spectators), the largest in the Balkans, dating back to the 2nd century B.C. The amphitheatre contains a Christian crypt with a rare mosaic. Durres has Roman and Byzantine ruins. Free time for lunch. In the afternoon transfer to Tirana, capital city of Albania. Free time. Dinner and overnight in 4* hotel in City Center . &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18388,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205337\",\"Title\":\"Tirana \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast in hotel. Explore the capital city of Albania, including some of the historical highlights, as city centre, Skenderbeg Statue, Et&amp;rsquo;hem Bey Mosque, Clock Tower and expansion of city &lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Tirana&lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;, Bunker Art and the National Museum. Free time for lunch.&amp;nbsp; Dinner and overnight in hotel in a 4* Hotel in city center.&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18362,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205338\",\"Title\":\"Tirana  -  Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#333333&quot;&gt;Breakfast in hotel. Transfer to airport. End of our services.&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"28808\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"421.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":571,\"priceDoubleOcc\":\"421.20\",\"priceSingleOcc\":629.2,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":421.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":421.2,\"COSTSO\":629.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":590,\"priceDoubleOcc\":\"449.80\",\"priceSingleOcc\":657.8,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":449.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":449.8,\"COSTSO\":657.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":620,\"priceDoubleOcc\":\"494.00\",\"priceSingleOcc\":702,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":494,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":494,\"COSTSO\":702,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":668,\"priceDoubleOcc\":\"566.80\",\"priceSingleOcc\":774.8,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":566.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":566.8,\"COSTSO\":774.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":819,\"priceDoubleOcc\":\"793.00\",\"priceSingleOcc\":1001,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":793,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":793,\"COSTSO\":1001,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871},{\"From\":\"2022-06-18\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":992,\"priceDoubleOcc\":\"1053.00\",\"priceSingleOcc\":1261,\"priceExtraBed\":\"539.50\",\"priceWithoutBed\":\"539.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":30,\"ExcludedPercent\":\"0\",\"PricePerPerson\":1053,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CWOB\":539.5,\"CEB\":539.5,\"COSTDO\":1053,\"COSTSO\":1261,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":871,\"COSTTO\":871}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;7 Nights accommodation in BB in a 4* Hotel on twin sharing basis as per itinerary&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;guide cum driver&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205323\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205323],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205324\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205324],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205325\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205326\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205326],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205327\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205327],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205328\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205328],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205333\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205333],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205334\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205334],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205335\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205335],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205336\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205336],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205337\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205337],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205338\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[205338],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Skopje,Ohrid,Berat,Saranda,Tirana','Skopje,Eastern Europe,Macedonia,Ohrid,Berat,Albania,Saranda,Tirana,Durres,Gjirokaster',NULL,'25410,19969,2956,24302,27345',421,1053,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Macedonia,Albania','129,2','2023-09-07 13:18:08','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'albania-macedonia',NULL,NULL,NULL,0),(335,25756,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":25756,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Grand_Ballkan_Tour_97.jpg\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":1,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;A dive into the heart of the interwoven Balkans cultures, diverse histories and religions; visiting ancient Greek and Roman ruins, Byzantine basilicas, Orthodox monasteries with golden mosaics, and Ottoman mosques, through villages with stone houses and red roofs. A cultural trip, taking you through the history of the region, that will give you an enormous appreciation and understanding of these three beautiful countries.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":0,\"AgencyId\":5439,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5439,\"DestinationPlaces\":\"Tirana\",\"DestinationPlacesSysId\":27345,\"SourcePlaces\":\"Tirana\",\"SourcePlaceSysId\":27345,\"AgencyName\":\"TRAVEL ALBANIA\",\"Name\":\"Grand Ballkan Tour\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6243\",\"SupplierName\":\"TRAVEL ALBANIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Sightseeing,Guided Tours\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":27345,\"Title\":\"Tirana\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":27345,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":8231,\"Title\":\"Dubrovnik\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8231,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":24299,\"Title\":\"Sarajevo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":24299,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":2781,\"Title\":\"Belgrade\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":2781,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":22126,\"Title\":\"Pristina\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":22126,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":25410,\"Title\":\"Skopje\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25410,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}},{\"CityId\":36763,\"Title\":\"Kotor\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":36763,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27227,\"Title\":\"Visit of Shkodra\",\"Description\":\"&lt;p&gt;Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border.  Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman). The trip will take you to the city&rsquo;s Catholic Cathedral. Shkoder is the spiritual center of the Albanian Catholic Church and welcomed Pope Francis in 2015. Take a walk through the pedestrian zone &ldquo;Rruga Kol Idromeno&rdquo;, recently restored with colorful houses and vibrant bars.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25114,\"CityName\":\"Shkodra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25114\\/sightseeing\\/5439_1654420626.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27283,\"Title\":\"Visit Kotor\",\"Description\":\"&lt;p&gt;Kotor has dropped an anchor between the gray mountains and the sea, and veiled its life behind the high and wide ramparts. Its bulwarks seem to have been eternally growing rock tendrils along the hill, up to the old fortress that overlooks the town.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is a dramatic town where the present lives in the maze of medieval churches, cathedrals, Venetian palaces and pillars. Kotor is made up of contrasts &ndash; the old squares with modern cafes, the sounds of serenade and live music, the echo of the footsteps down the narrow cobblestone alleys and the lazy purr of cats lying under the balconies with wrought iron railings, decorated with petunias.\\r\\n&lt;\\/p&gt;&lt;p&gt;In the evening, the walls of Kotor are as bright as the torches from a pagan ritual. When the time for carnivals comes, the streets become crowded, the torches become one with the fireworks, and all of Kotor transforms into one big spark.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor was ruled by Illyrians, Romans, Byzantines, Austro-Hungarians, and Venetians. These conquerors have left many fortunes behind, such as renaissance palaces, baroque towers, and its most monumental testament, the Cathedral of St. Tripun, which is more than three centuries older than the discovery of America. The abundance of cultural and artistic monuments has set Kotor on the UNESCO&rsquo;s list of protected cultural heritage.\\r\\n&lt;\\/p&gt;&lt;p&gt;Kotor&rsquo;s fortifications had grown up St John&rsquo;s Hill from the 9th until the 19th century. There are 1350 steps to the St John&rsquo;s Fortress at the top for those craving for magnificent views over the town and the bay.&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;&lt;p&gt;\\r\\n&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":36763,\"CityName\":\"Kotor\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36763\\/sightseeing\\/5439_1654545092.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27310,\"Title\":\"Visit Dubrovnik\",\"Description\":\"&lt;p&gt;Dubrovnik, Italian Ragusa, port of Dalmatia, southeastern Croatia. Situated on the southern Adriatic Sea coast, it is usually regarded as the most picturesque city on the Dalmatian coast and is referred to as the &ldquo;Pearl of the Adriatic.&rdquo; The &#039;Pearl of the Adriatic&#039;,&nbsp; became an important Mediterranean sea power from the 13th century onwards. Although severely damaged by an earthquake in 1667, Dubrovnik managed to preserve its beautiful Gothic, Renaissance and Baroque churches, monasteries, palaces and fountains. Damaged again in the 1990s by armed conflict, it is now the focus of a major restoration programme co-ordinated by UNESCO.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":7491,\"CityName\":\"Dalmatian Riviera\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7491\\/sightseeing\\/5439_1654595485.jpeg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27335,\"Title\":\"Visit Belgrade\",\"Description\":\"&lt;p&gt;Outspoken, adventurous, proud and audacious: Belgrade (&#039;White City&#039;) is by no means a &#039;pretty&#039; capital, but its gritty exuberance makes it one of Europe&#039;s most happening cities. While it hurtles towards a brighter future, its chaotic past unfolds before your eyes: socialist blocks are squeezed between art nouveau masterpieces, and remnants of the Habsburg legacy contrast with Ottoman relics and socialist modernist monoliths. This is where the Sava and Danube Rivers kiss, an old-world culture that at once evokes time-capsuled communist-era Yugoslavia and new-world, EU-contending cradle of cool.&nbsp; Grandiose coffee houses and smoky dives pepper Knez Mihailova, a lively pedestrian boulevard flanked by historical buildings all the way to the ancient Belgrade Fortress. The riverside Savamala quarter has gone from ruin to resurrection, and is the city&#039;s creative headquarters (for now). Deeper in Belgrade&#039;s bowels are museums guarding the cultural, religious and military heritage of the country.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2781,\"CityName\":\"Belgrade\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2781\\/sightseeing\\/5439_1654693043.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":19709,\"Title\":\"Visit of Skopie\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Skopie, &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;city in the west where you can find the signs of East as it was under the rule of Ottoman Empire for a long time. &lt;\\/span&gt;&lt;span style=&quot;color:333333&quot;&gt;We will spend some time in the old town visiting the Daud Pasha baths, the imposing Mustafa Pasha Mosque or the bustling old market area&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":25410,\"CityName\":\"Skopje\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25410\\/sightseeing\\/5439_1624459741.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null},{\"RefSSId\":27221,\"Title\":\"Visit of Ohrid\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 20px&quot;&gt;S&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;ublime Ohrid is Macedonia&#039;s most seductive destination, with an atmospheric old quarter cascading down a graceful hill, crammed full of beautiful churches and topped by the bones of a medieval castle. Its cobbled streets are flanked by traditional restaurants and lakeside cafes, but it&#039;s not a complete tourist circus just yet and still has a lived-in feel &ndash; particularly in the upper reaches of the Old Town.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;Explore Ohrid, a UNESCO World Cultural Heritage site and one of the Balkans&rsquo; most important religious landmarks. Start out from your hotel and cross the Albanian border into Macedonia where you will continue on to the lake side resort of Ohrid. Your morning sightseeing tour includes the church of St. Sofia, the most eminent medieval monument in Macedonia with magnificent Byzantine fresco paintings and St. Clement`s Church with its icon of the Annunciation. The walking tour will include Car Samuel fortifications, the Ancient theatre, Plaosnik site with many fragments of the byzantine mosaics, St. Kanoe church, built on a rock, by the lake side.&lt;\\/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana font-size: 12px&quot;&gt;&lt;br&gt;&lt;\\/span&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":19969,\"CityName\":\"Ohrid\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/19969\\/sightseeing\\/5439_1654425907.jpg\",\"SupplierSysId\":6243,\"SupplierName\":\"TRAVEL ALBANIA\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"185204\",\"Title\":\"Tirana ( Albania)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Departure by scheduled flight to Tirana. Arrival at Mother Teresa Airport. Transfer to hotel&amp;nbsp; next to Airport.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185205\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185206\",\"Title\":\"Tirana \\/ Shkodra \\/ Budva \\/ Kotorr \\/ (Albania - Montenegro ) 202 Km \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Breakfast in hotel. Depart for the ancient town of Shkoder in northern Albania, a few kilometers from the Montenegro border. Once arrived, you will visit the ancient fortress of Rozafa (fourth century B.C.) from which one can enjoy a marvelous panoramic view of the city. Shkoder has been inhabited since the Bronze Age and is built upon many historical civilizations (Illyrian, Roman, Byzantine, and Ottoman).&amp;nbsp;&amp;nbsp;Time for lunch. The trip will continue along the wonderful Montenegrian coast where lush pine walls coast a transparent turquoise sea. You will stop in the old towns of, Budva Arrival in Kotorr . and accommodation in hotel. Overnight in a 4* Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8231,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27227,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185207\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8231,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185208\",\"Title\":\"Kotor \\/ Dubrovnik (Montenegro - Croatia)  91 Km \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast in hotel.&amp;nbsp;Breakfast at hotel. During the day, travelers will visit Kotor, in Montenegro, one of the most beautiful scenic spots of the Mediterranean, declared by UNESCO &amp;quot;World Heritage&amp;quot;. &amp;nbsp;Whole morning dedicated to a boat excursion in the Kotor bay - a kind of &amp;quot;fjord&amp;quot; which covers an area of about 87 square kilometers flowing into the Adriatic Sea. On its shores, there are small stone villages, churches, monasteries and marinas. The natural panorama is one of the most beautiful in Europe. In the afternoon departure for Dubrovnik. Overnight in hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24299,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27283,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185209\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":24299,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185210\",\"Title\":\"Dubrovnik  \\/Mostar \\/ Sarajevo (141 + 129 km) (Croazia - Bosnia)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast in hotel. Once known as Ragusa, it has a long maintained its independence as the fifth Italian Maritime Republic. Today Dubrovnik belongs to Croatia and boasts a historical center of particular beauty, on the list of UNESCO World Heritage sites, known also as &amp;quot;The Pearl of the Adriatic. The trip will continue to Mostar. Visit of Mostar, the main urban center of Herzegovina, founded by the Turks in the 15th century. The ancient district of Kujunciluk, with its narrow streets, the picturesque market, the bazaar, the minarets and the sixteenth-century bridge over the Neretva attract crowds of tourists. Transfer to Sarajevo. Overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2781,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185211\",\"Title\":\"Sarajevo \\/ Belgrade  (292 km)  (Bosnia - Serbia)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Breakfast in hotel. Visit of Sarajevo which is one of the most oriental and culturally diverse cities in Europe. It has spent over 300 years under Turkish rule until the Austro-Hungarians arrived in the late nineteenth century.&amp;nbsp; Bascarsija, the old city center has been completely renovated and is today a very beautiful and lively area. Nearby there is Ferhadiya, the most elegant street of the city in European mittel style, with cafes and shops of all kinds. The siege of Sarajevo, which took place during the war in Bosnia and Herzegovina, was the longest siege in the war history of the late twentieth century, which lasted from 5 April 1992 to 29 February 1996.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to Belgrade.&amp;nbsp; Overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2781,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185212\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2781,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185213\",\"Title\":\"Belgrade \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Visit of Belgrade, the City Hall, the National Parliament, the Old Palace, Slavija Square, Terazije Street and Square, Republic and Nikola Pasic Square, Knez Mihailova Street - the main pedestrian area of down town, Albania Tower, Skadarlija (the bohemian Street), the National Theatre, the National Museum, the Ethnographical Museum, Kalemegdan Park, Belgrade Fortress, Residence of Prince Milos and Princess Ljubica. In the afternoon enjoy a walk through the beautiful Kalemegdan Park and the fascinating Belgrade fortress with an unforgettable view on the confluence of two big European rivers. &amp;ndash; Danube and Sava. Overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22126,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27335,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185214\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22126,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185215\",\"Title\":\"Belgrade \\/ Prishtina (521 km) (Serbia - Kossovo)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast in the hotel, check out and meet the guide&amp;nbsp;and depart for Prishtina. Visit of Kosovo&amp;rsquo;s capital and its attractions. Time for dinner. Overnight in hotel.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As the youngest capital city in Europe, Pristina has the physical remnants of the periods of old and new. After a rapid modernization campaign in the mid-20th century, much of the historic centre was destroyed and, as a result, only a small portion remains. However amongst what&amp;#39;s left are many hidden gems to be found, and the areas that were lost have been replaced by modern structures and monuments that speak more to Kosovo&amp;#39;s fascinating recent history than to any other period of time. Whilst the concrete jungle of Pristina&amp;#39;s centre can be quite overwhelming, there are plenty of opportunities to get out into the nature of the city&amp;#39;s parks and its beautiful rolling outskirts, as well as an abundance of easy day trip possibilities all around the region. Along the main boulevard, Rr N&amp;euml;ne Terez&amp;euml;\\/Mother Teresa St., you can feel a palpable energy from the wide mix of amiable, welcoming locals and international residents enjoying the bustling street life and vibrant coffee culture that exists during the day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Come the evening, restaurants, bars and nightclubs across the city fill with a variety of customers and music, offering many options, from a quiet local beer with friends to a heavy night of dancing that can last well into the next day. Pristina is a city that loves to almost constantly host events and festivals, so chances are high that you&amp;#39;ll walk into a unique cultural experience that you hadn&amp;#39;t anticipated.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185216\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25410,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185217\",\"Title\":\"Prishtina \\/ Skopje  (93 km) (Kossovo - Macedonia)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp;&lt;\\/span&gt;Departure for Skopje , visit of the city and its attractions. Our panoramic tour will explore the old Railway station, the monument of Mother Teresa and her memorial house, the Stone Bridge, Daut Pasha Amam &amp;ndash; monument of the Islamic architecture, the church St. Spas, the Fortress Kale. Free time. Overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19709,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"185218\",\"Title\":\"Tirana\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at hotel. Visit of the city.&amp;nbsp; Departure to the airport. End of services.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230855\",\"Title\":\"Skopje \\/ Ohrid \\/ Tirana (173 + 134km) (Macedonia - Albania)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Breakfast in hotel. Departure for Ohrid.&amp;nbsp;Visit of the Monastery of St. Naum, rich in the history of the Orthodox religion, founded by the namesake saint, a Bulgarian scholar and missionary in 905. Thanks to the efforts of St. Clement and St. Naum of Ohrid, the first pan-Slavic University in Europe, the famous Ohrid literary school, was founded. Departure from St. Naum to go to the city of Ohrid. Located on the shores of Lake Ohrid, the town was declared a UNESCO heritage. Visit of the church of S. Sofia (XI century) which is the most important medieval monument in Macedonia, with magnificent Byzantine frescoes, paintings, of St. Clement Church with its icon of the Annunciation. Visit St. Bogorodica Perivlepta, San Joan Kaneo, St. Patelejmon , the old bazaar, the fortifications of Ohrid, the fortress of King Samoil, the ancient theater, the museum of icons, the Mesokastro settlements, the settlements of Kaneo. TRansfer to Tirana. Overnight in hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36763,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27221,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230856\",\"Title\":\"Tirana Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Breakfast in hotel. Departure for the airport. End of our services.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36763,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Lunches, dinners&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Beverages or extra expenses of the hotel mini-bar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities or other&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Revenue in museums or archaeological sites.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in&amp;nbsp; 4* hotels&amp;nbsp; in BB&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chartered car and guide cum driver at disposal throughout the tour.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"185204\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[185204],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185205\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[185205],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185206\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[185206],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185207\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[185207],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185208\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[185208],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185209\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[185209],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185210\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[185210],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185211\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[185211],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185212\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[185212],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185213\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[185213],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185214\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[185214],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185215\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[185215],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185216\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[185216],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185217\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[185217],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"185218\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[185218],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230855\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[230855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230856\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[230856],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Tirana,Dubrovnik,Sarajevo,Belgrade,Pristina,Skopje,Kotor','Tirana,Eastern Europe,Albania,Dubrovnik,Croatia,Sarajevo,Bosnia and Herzegowina,Belgrade,Serbia,Pristina,Yugoslavia,Skopje,Macedonia,Kotor,MONTENEGRO,Dalmatian Riviera,Ohrid,Shkodra,Budva',NULL,'27345,8231,24299,2781,22126,25410,36763',0,0,9,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Albania,Croatia,Bosnia and Herzegowina,Serbia,Yugoslavia,Macedonia,MONTENEGRO','2,55,27,468,241,129,466','2023-09-07 13:18:16','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'grand-ballkan-tour',NULL,NULL,NULL,0),(336,53003,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family,Sports,Weekend,Festivals and Events,Romantic,Offbeat,Group Tours,Activites Tour,Luxury Tours,Private,Day Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":53003,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/54784\\/package\\/images\\/jim-corbett-riverside-weekend-package--dn_1683699489\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Mango Bloom River Resort is located in Riverside, Jim Corbett, the excellent service, luxurious rooms and superior facilities make for an unforgettable stay. Free internet access, pool access, activities for kids and adults, horse and camel ride and many more other activities are available within the resort which keeps you high through out your stay. For those driving their own car, parking is available for guests. Always get the assistance you need with front desk services including concierge service and luggage storage.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":54784,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":54784,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Jim Corbett National Park\",\"SourcePlaceSysId\":13146,\"AgencyName\":\"The Banyan Retreat Resort\",\"Name\":\"Mango Bloom Riverside Resort - 2N\\/3D Weekend Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"16514\",\"SupplierName\":\"Mango Bloom River Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Activity\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Sports,Weekend,Festivals and Events,Romantic,Offbeat,Group Tours,Activites Tour,Luxury Tours,Private,Day Tour,Road Trip\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":552973,\"Name\":\"Mango Bloom River Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":16514,\"SupplierName\":\"Mango Bloom River Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":44508,\"Title\":\"Corbett Falls\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;Corbett Falls, located near Ramnagar in Uttarakhand, is a mesmerizing natural attraction that draws tourists with its serene beauty. Nestled amidst lush greenery and the foothills of the Himalayas, the waterfall cascades down from a height of around 20 meters, creating a picturesque sight. The crystal-clear water, surrounded by dense forests, offers a refreshing and tranquil ambiance. Visitors can enjoy the scenic beauty, take a dip in the cool waters, or simply relax in the serene surroundings. Corbett Falls is a must-visit destination for nature enthusiasts and those seeking a peaceful retreat in the lap of nature.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22538,\"CityName\":\"Ramnagar\",\"Lat\":29.394862,\"Long\":79.126566,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/54784\\/city\\/22538\\/sightseeing\\/54784_1683706986.jpg\",\"SupplierSysId\":16514,\"SupplierName\":\"Mango Bloom River Resort\",\"priceaditionals\":null},{\"RefSSId\":761,\"Title\":\"Jeep Safari\",\"Description\":\"Jim Corbett National Park is very famous for open jeep safari. It is the most preferable way to visit the forest. All kind of tourist such as naturalist, wildlife photographers, bird watchers and wildlife enthusiasts are always prefer to enjoy open jeep safari in Jim Corbett National Park.\",\"CurrencyType\":0,\"CityId\":22538,\"CityName\":\"Ramnagar\",\"Lat\":29.3947643,\"Long\":79.1264997,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5602\\/thumb\\/Jeep Safari_269.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":16514,\"SupplierName\":\"Mango Bloom River Resort\",\"priceaditionals\":null},{\"RefSSId\":775,\"Title\":\"Jim Corbett National Park\",\"Description\":\"Jim Corbett National Park is a forested wildlife sanctuary in northern India&amp;rsquo;s Uttarakhand State. Rich in flora and fauna, it&amp;rsquo;s known for its Bengal tigers. Animals, including tigers, leopards and wild elephants, roam the Dhikala zone. On the banks of the Ramganga Reservoir, the Sonanadi zone is home to elephants and leopards, along with hundreds of species of birds.\",\"CurrencyType\":0,\"CityId\":22538,\"CityName\":\"Ramnagar\",\"Lat\":29.3947643,\"Long\":79.1264997,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4722\\/thumb\\/Jim Corbett National Park_856.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":16514,\"SupplierName\":\"Mango Bloom River Resort\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"384378\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Jim Corbett Riverside Weekend Package - 2D\\/3N&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Per Couple: Rs.15000\\/- Offer Price: 20%*Off&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Package Inclusions are:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Riverside Access&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spa ( 20% Off)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;High Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pool Access&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Live Singing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indoor\\/Outdoor Kids Play Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camel and Horse Riding&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Nature Walk To Forest or River Side Evening and Morning&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea Maker\\/Coffee Maker&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552973,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"384379\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552973,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":44508,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":761,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"384380\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552973,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"53003\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-15\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":12344,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":null,\"priceWithoutBed\":\"6093.75\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":25,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6093.75,\"CEB\":null,\"COSTDO\":15000,\"COSTSO\":22500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":7031.25,\"COSTTO\":7031.25}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"53003\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-15\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":9875,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":null,\"priceWithoutBed\":\"4875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4875,\"CEB\":null,\"COSTDO\":12000,\"COSTSO\":18000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":5625,\"COSTTO\":5625}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis or as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"384378\":[{\"Sequence\":[0],\"TPInvnSysId\":[384378],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"384379\":[{\"Sequence\":[0],\"TPInvnSysId\":[384379],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"384380\":[{\"Sequence\":[0],\"TPInvnSysId\":[384380],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India,Bareilly,Delhi,Ghaziabad,Gurgaon,Lucknow,Noida,Ramnagar,Meerut',NULL,'13146',12000,15000,2,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'India','101','2023-09-07 13:15:08','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'mango-bloom-riverside-resort-2n-3d-weekend-package',NULL,NULL,NULL,0),(337,52991,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family,Weekend,Romantic,Group Tours,Activites Tour,Luxury Tours,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":52991,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/54784\\/package\\/images\\/jim-corbett-weekend-package--dn_1683704010\",\"BookingValidUntill\":\"2023-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Banyan Retreat (Award -Winning Resort) is one of the best and most luxurious resorts in Ramnagar Jim Corbett, which offers Destination Wedding, pre-wedding shoot, stay or many more events which you can organize in a luxurious way and experience most brilliant wildlife. Surrounded by the majestic Himalayan range, the resort offers you to relax, rejuvenate and reconnect with yourself. Valleys, forests, and riverbeds near the resort present a delightful opportunity for nature lovers to witness the beauty first-hand.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":54784,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":54784,\"DestinationPlaces\":\"Jim Corbett National Park\",\"DestinationPlacesSysId\":13146,\"SourcePlaces\":\"Jim Corbett National Park\",\"SourcePlaceSysId\":13146,\"AgencyName\":\"The Banyan Retreat Resort\",\"Name\":\"The Banyan Retreat Resort - 2N\\/3D Weekend Package\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"16484\",\"SupplierName\":\"The Banyan Retreat Resort\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Activity\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Weekend,Romantic,Group Tours,Activites Tour,Luxury Tours,Road Trip\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13146,\"Title\":\"Jim Corbett National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":552936,\"Name\":\"The Banyan Retreat Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4825503,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_552936\\/54784_01683634560.jpeg\"},{\"ImagId\":4825504,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_552936\\/54784_11683634561.jpeg\"},{\"ImagId\":4825505,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_552936\\/54784_21683634561.jpg\"}]},\"CityId\":13146,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_552936\\/54784_b85e94641d17e99cb1370e87f0e889701683634560.jpeg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":16484,\"SupplierName\":\"The Banyan Retreat Resort\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"384304\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;The Banyan Retreat Resort Jim Corbett- 2N\\/3D Package&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Per Couple: Rs.15000\\/-&amp;nbsp; Offer Price: 20%*Off&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Inclusives are:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Meals (Breakfast\\/ Lunch\\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;High Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spa (20% Off)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camel and Horse Ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Live Singing Event&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Nature Walk To Forest&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indoor\\/ Outdoor Kids Area&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pool Access&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tea Maker\\/ Coffee Maker&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552936,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"384305\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552936,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"384306\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13146,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":552936,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"52991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-15\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":12344,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":null,\"priceWithoutBed\":\"6093.75\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":25,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6093.75,\"CEB\":null,\"COSTDO\":15000,\"COSTSO\":22500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":7031.25,\"COSTTO\":7031.25}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"52991\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-05-15\",\"To\":\"2023-09-30\",\"Currency\":1,\"priceTripleOcc\":9875,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":null,\"priceWithoutBed\":\"4875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4875,\"CEB\":null,\"COSTDO\":12000,\"COSTSO\":18000,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":5625,\"COSTTO\":5625}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis or as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":90,\"ExtraValue\":\"1000\",\"IsPercentage\":true,\"Title\":\"Before 90 Days\",\"TPRulesSysId\":\"13903\",\"Value\":\"15\"}],\"BuspickupLocation\":[],\"TransferData\":{\"384304\":[{\"Sequence\":[0],\"TPInvnSysId\":[384304],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"384305\":[{\"Sequence\":[0],\"TPInvnSysId\":[384305],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"384306\":[{\"Sequence\":[0],\"TPInvnSysId\":[384306],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Jim Corbett National Park','Jim Corbett National Park,Uttarakhand,Indian Subcontinent,North India,India,Delhi,Gurgaon,Lucknow,Noida,Ramnagar,Meerut',NULL,'13146',12000,15000,2,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-09-30 00:00:00','2023-09-30 00:00:00',3,'India','101','2023-09-07 13:15:24','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'the-banyan-retreat-resort-2n-3d-weekend-package',NULL,NULL,NULL,0),(338,49736,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49736,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/greenlilulissat--eqi-glacier_1677063689\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Greenland, the largest island in the world, welcomes all adventure lovers. With snow sheets and icebergs till as far as the eyes can see, its terrain drops to the sea and rises to the mountains with jaw-dropping transitions. This tour is focused around Disko Bay, which is one of the most popular sites in the world for whale watching.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A culture-rich tour, Greenland will showcase exciting whale safaris, exploration of the Sermermiut settlement, iceberg sightseeing, the Eqi Glacier, and multiple hiking options for those who want an in-depth experience of the country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will have the opportunity to discover the town of Ilulissat, meet the local Inuit tribe, and travel by boat across the icy channels. This experience cannot be found anywhere else in the world. Specialized guides and naturalists make sure that every penny invested in the trip gives you greatly satisfying returns, along with priceless memories.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlight :&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Whale watching at Disko Bay, a UNESCO World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk on rugged, natural terrain, ice sheets, and glacial paths &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Access to Equi Glacier, one of Greenland&amp;rsquo;s largest and most active glaciers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Abundant opportunities to see exclusive wildlife like whales, polar bears, musk oxen, walruses and species of seals&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Discover the Sermermiut settlement, a part of the Ilulissat Icefjord World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Multiple adventure hiking options including glacier hikes, and the Eqi Glacier&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Ilulissat\",\"DestinationPlacesSysId\":12662,\"SourcePlaces\":\"Ilulissat\",\"SourcePlaceSysId\":12662,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Greenland: Ilulissat & Eqi Glacier\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15635\",\"SupplierName\":\"Greenland Travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12662,\"Title\":\"Ilulissat\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542433,\"Name\":\"Hotel Arctic\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12662,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542433\\/43249_40ea74c30e3abe684a67cafdc12f3b501678965393.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior Room\",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43184,\"Title\":\"Whale Safari \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40269,\"Title\":\"Eqi Glacier\",\"Description\":\"Eqi Glacier is a stunning and unique natural wonder that offers visitors the opportunity to witness the power and beauty of nature, while also contributing to important scientific research. Eqi Glacier is one of the largest and most spectacular glaciers in Greenland, with a front that measures over 5 kilometers (3.1 miles) wide and 80 meters (262 feet) high.\\r\\nEqi Glacier is particularly famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Eqi Glacier is one of the few glaciers in Greenland that is easily accessible to visitors. It can be reached by boat or helicopter from the town of Ilulissat, which is a popular tourist destination in Greenland.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/eqi_glacier_12662_1677154352.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40275,\"Title\":\"Glacier View Hike\",\"Description\":\"The Glacier View Hike in Greenland is an unforgettable experience that offers visitors the opportunity to witness the beauty and power of the country&amp;#039;s glaciers up close. Greenland is home to some of the most awe-inspiring glaciers in the world, and the Glacier View Hike provides a unique opportunity to witness these natural wonders firsthand. Visitors can marvel at the sheer size and scale of the glaciers, as well as the stunning colors and textures of the ice.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/glacier_view_hike_12662_1677154907.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}},{\"CityId\":108767,\"Title\":\"Eqi Glacier\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542434,\"Name\":\"Glacier Lodge Eqi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":108767,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542434\\/43249_8e4ae85d33d881cd39a3baccc3a141791678965588.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43184,\"Title\":\"Whale Safari \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40269,\"Title\":\"Eqi Glacier\",\"Description\":\"Eqi Glacier is a stunning and unique natural wonder that offers visitors the opportunity to witness the power and beauty of nature, while also contributing to important scientific research. Eqi Glacier is one of the largest and most spectacular glaciers in Greenland, with a front that measures over 5 kilometers (3.1 miles) wide and 80 meters (262 feet) high.\\r\\nEqi Glacier is particularly famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Eqi Glacier is one of the few glaciers in Greenland that is easily accessible to visitors. It can be reached by boat or helicopter from the town of Ilulissat, which is a popular tourist destination in Greenland.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/eqi_glacier_12662_1677154352.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40275,\"Title\":\"Glacier View Hike\",\"Description\":\"The Glacier View Hike in Greenland is an unforgettable experience that offers visitors the opportunity to witness the beauty and power of the country&amp;#039;s glaciers up close. Greenland is home to some of the most awe-inspiring glaciers in the world, and the Glacier View Hike provides a unique opportunity to witness these natural wonders firsthand. Visitors can marvel at the sheer size and scale of the glaciers, as well as the stunning colors and textures of the ice.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/glacier_view_hike_12662_1677154907.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"358305\",\"Title\":\"Arrival in Ilulissat \\/ Ilulissat Guided Tour \\/ Iceberg Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;09:00 Board a flight from Copenhagen to Ilulissat via a connection at Kangerlussuaq.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Check in to your hotel, which is the northernmost 4-star hotel in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;16:30 Embark upon the Ilulissat Guided Tour. The guide will tell you about the town&amp;#39;s history, Greenlandic culture, and modern life 300 km north of the Arctic Circle. Stop at several places along the way and say hello to the fishermen at the harbour and the hunters at &amp;quot;br&amp;aelig;ttet.&amp;quot; Pass the famous polar explorer Knud Rasmussen&amp;#39;s birthplace and the old wooden Zion church.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:00 Enjoy a tasty welcome dinner back at your hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;20:10 Boat tour for Iceberg Sightseeing. More than 48 km3 of ice flows into the fjord during one year. The result is gigantic icebergs, more than 100 metres wide and more than 100 metres above the water&amp;#39;s surface. Icebergs are beautiful in every kind of weather. On sunny days they glitter in shiny white, the blue shades are best seen when it is cloudy, and the midnight sun casts a unique, warm glow on the icebergs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358306\",\"Title\":\"&nbsp;Whale Safari \\/ Sermermiut Settlement\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;12:00 Enjoy a thrilling Whale Safari. It is usually the humpback whale, minke whale, and fin whale we see in the summer. Despite being up to 18 metres and 30 tons, the humpback whale is the acrobat among the great whales. We are in radio contact with Ilulissat&amp;#39;s fishermen and other tourist operators, so we can almost always find the whales.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Explore the Sermermiut Settlement. For 4000 years, different Inuit cultures lived in this settlement, and today you can still see remains that indicate their presence. The guide tells stories about the Inuit people&amp;#39;s life and traditions before the Europeans came to Greenland. See turf hut ruins and touch the permafrost with your own hands. The area is so outstanding that UNESCO named it World Heritage in 2004.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43184,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40273,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358307\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358308\",\"Title\":\"The Eqi Glacier\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;14:00 Transfer to the Equi Glacier via boat. The glacier runs into a fjord approximately 80 km north of Ilulissat. By boat, you can get very close to the glacier and see huge pieces of ice breaking off.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:50 Check in to your accommodation at Eqi, where you can get stunning views of the Eqi Glacier from multiple angles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108767,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542434,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40269,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358309\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108767,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358310\",\"Title\":\"Glacier View Hike \\/ Transfer to Ilulissat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":4,\"Program\":\"&lt;p&gt;14:00 Start your Glacier View Hike. You walk past the lagoon and onto the moraine, from where you can look at the fantastic glacier. Coffee and tea will be served on the hike. It is about an 8 km walk in mountainous terrain.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Board the ferry to transfer back to Ilulissat and check into your accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358311\",\"Title\":\"Departure from Ilulissat\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;12:00 Board a flight from Ilulissat back to Copenhagen via a connection at Kangerlussuaq.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49736\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4218,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49736\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4218,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4218,\"priceDoubleOcc\":4218,\"priceSingleOcc\":\"4218.00\",\"priceExtraBed\":4218,\"priceWithoutBed\":4218,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4218,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4218,\"CWOB\":4218,\"CEB\":4218,\"COSTDO\":4218,\"COSTSO\":8436,\"ACEB\":4218}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fuel surcharges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in Inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Return flights Copenhagen - Ilulissat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return transfer Ilulissat - Accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English-speaking Greenland Travel Guide service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 nights&amp;#39; accommodation in a 4-Star Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return boat transfer Ilulissat-Eqi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 night&amp;#39;s accommodation in Eqi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast from Day 2 to Day 5&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch on Days 3 and 4&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dinner on Days 1 and 3&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"358305\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[358305],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358306\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[358306],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358307\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358307],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358308\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358308],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358309\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[358309],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358310\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[358310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358311\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[358311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ilulissat,Eqi Glacier','Ilulissat,North America,Greenland,Eqi Glacier',NULL,'12662,108767',378422,378422,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Greenland','87','2023-09-07 13:16:59','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'greenland-ilulissat-eqi-glacier',NULL,NULL,NULL,0),(339,49737,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49737,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/greenllife-north-of-the-arctic-circle_1677066369\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Greenland, the largest island in the world, welcomes all adventure lovers. With snow sheets and icebergs till as far as the eyes can see, its terrain drops to the sea and rises to the mountains with jaw-dropping transitions. This tour is focused around Disko Bay, which is one of the most popular sites in the world for whale watching.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A culture-rich tour, Greenland will showcase exciting whale safaris, exploration of the Sermermiut settlement, iceberg sightseeing, and multiple hiking options for those who want an in-depth experience of the country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will have the opportunity to discover the town of Ilulissat, meet the local Inuit tribe, and travel by boat across the icy channels. This experience cannot be found anywhere else in the world. Specialized guides and naturalists make sure that every penny invested in the trip gives you greatly satisfying returns, along with priceless memories.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Whale watching at Disko Bay, a UNESCO World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk on rugged, natural terrain, ice sheets, and glacial paths&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Abundant opportunities to see exclusive wildlife like whales, polar bears, musk oxen, walruses, and species of seals&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Discover the Sermermiut settlement, a part of the Ilulissat Icefjord World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Multiple adventure hiking options including glacier hikes, and Ilimanaq Glacier Adventure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Ilulissat\",\"DestinationPlacesSysId\":12662,\"SourcePlaces\":\"Ilulissat\",\"SourcePlaceSysId\":12662,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Greenland: Life North of the Arctic Circle\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15635\",\"SupplierName\":\"Greenland Travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12662,\"Title\":\"Ilulissat\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542433,\"Name\":\"Hotel Arctic\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12662,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542433\\/43249_40ea74c30e3abe684a67cafdc12f3b501678965393.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43184,\"Title\":\"Whale Safari \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43185,\"Title\":\"Hiking on Ice Sheet\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40272,\"Title\":\"Ilimanaq Glacier\",\"Description\":\"This glacier is located near Ilulissat and is one of the fastest-moving glaciers in the world. It produces a large number of icebergs that float into the nearby Ilulissat Icefjord, which is a UNESCO World Heritage Site. It is famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Visitors to Ilimanaq can take helicopter tours to see the vast expanse of ice from above.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/ilimanaq_glacier_12662_1677154755.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41250,\"Title\":\"Local Food\",\"Description\":\"&lt;p&gt;Local Food&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678707422.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"358312\",\"Title\":\"Arrival in Ilulissat \\/ Ilulissat Guided Tour \\/ Iceberg Sightseeing\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;09:00 Board a flight from Copenhagen to Ilulissat via a connection at Kangerlussuaq.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Check in to your hotel, which is the northernmost 4-star hotel in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;16:30 Embark upon the Ilulissat Guided Tour. The guide will tell you about the town&amp;#39;s history, Greenlandic culture, and modern life 300 km north of the Arctic Circle. Stop at several places along the way and say hello to the fishermen at the harbor and the hunters at &amp;quot;br&amp;aelig;ttet.&amp;quot; Pass the famous polar explorer Knud Rasmussen&amp;#39;s birthplace and the old wooden church Zion church.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:00 Enjoy a tasty welcome dinner back at your hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;20:10 Boat tour for Iceberg Sightseeing. More than 48 km3 of ice flows into the fjord during one year. The result is gigantic icebergs, more than 100 meters wide and more than 100 meters above the water&amp;#39;s surface. Icebergs are beautiful in every kind of weather. On sunny days they glitter in shiny white, the blue shades are best seen when it is cloudy, and the midnight sun casts a unique, warm glow on the icebergs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358313\",\"Title\":\"Whale Safari \\/ Sermermiut Settlement\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;12:00 Enjoy a thrilling Whale Safari. It is usually the humpback whale, minke whale, and fin whale we see in the summer. Despite being up to 18 meters and 30 tons, the humpback whale is the acrobat among the great whales. We are in radio contact with Ilulissat&amp;#39;s fishermen and other tourist operators, so we can almost always find the whales.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Explore the Sermermiut Settlement. For 4000 years, different Inuit cultures lived in this settlement, and today you can still see remains that indicate their presence. The guide tells stories about the Inuit people&amp;#39;s life and traditions before the Europeans came to Greenland. See turf hut ruins and touch the permafrost with your own hands. The area is so outstanding that UNESCO named it World Heritage in 2004.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40273,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43184,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358314\",\"Title\":\"Ilimanaq Glacier Adventure\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":3,\"Program\":\"&lt;p&gt;10:00 On this trip, sail south of Ilimanaq to Itilliup Ilua. You are dropped off on the wide sandy beach, where we drive in off-road vehicles through the Arctic tundra until we reach the Tasiusaq Fjord system. From here, sail further deep in between the icebergs to the end of the fjord, where the two glaciers and the ice sheet come into view. Post lunch, you have the opportunity to hike on an enormous ice sheet.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43185,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40272,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358315\",\"Title\":\"&nbsp;Free Day in Ilulissat\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Enjoy a day in Ilulissat at your leisure. Orient yourself with the region, try out some local food and shop for souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43185,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41250,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358316\",\"Title\":\"Departure from Ilulissat\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;12:00 Board a flight from Ilulissat back to Copenhagen via a connection at Kangerlussuaq.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49737\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4230,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49737\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4230,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":4230,\"priceDoubleOcc\":4230,\"priceSingleOcc\":\"4230.00\",\"priceExtraBed\":4230,\"priceWithoutBed\":4230,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4230,\"CWOB\":4230,\"CEB\":4230,\"COSTDO\":4230,\"COSTSO\":8460,\"ACEB\":4230}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fuel surcharges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in Inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Return flights Copenhagen - Ilulissat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return transfer Ilulissat - Accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English-speaking Greenland Travel Guide service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 nights&amp;#39; accommodation in a 4-star Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast from Day 2 to Day 5&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch on Day 3&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dinner on Day 1&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ilulissat City Walk&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Iceberg Sightseeing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Whale Safari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk to Sermermiut&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Glacier View Hike&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ilimanaq Glacier Adventure&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"358312\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[358312],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358313\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[358313],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358314\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358314],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358315\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[358315],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358316\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[358316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ilulissat','Ilulissat,North America,Greenland',NULL,'12662',379498,379498,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Greenland','87','2023-09-07 13:16:48','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'greenland-life-north-of-the-arctic-circle',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (340,49751,1,5293,0,0,0,'Adventure',NULL,1,1,0,'{\"package\":{\"TPId\":49751,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/greenladventures-in-disko-bay_1677129206\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Greenland, the largest island in the world, welcomes all adventure lovers. With snow sheets and icebergs till as far as the eyes can see, its terrain drops to the sea and rises to the mountains with jaw-dropping transitions. This tour is focused around Disko Bay, which is one of the most popular sites in the world for whale watching.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A culture-rich tour, Greenland will showcase exciting whale safaris, exploration of the Sermermiut settlement, iceberg sightseeing, the Eqi Glacier, and multiple hiking options for those who want an in-depth experience of the country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will have the opportunity to discover the town of Ilulissat, meet the local Inuit tribe, and travel by boat across the icy channels. This experience cannot be found anywhere else in the world. Specialized guides and naturalists make sure that every penny invested in the trip gives you greatly satisfying returns, along with priceless memories.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Whale watching at Disko Bay, a UNESCO World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk on rugged, natural terrain, ice sheets and glacial paths&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Access to Equi Glacier, one of Greenland&amp;rsquo;s largest and most active glaciers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Abundant opportunities to see exclusive wildlife like whales, polar bears, musk oxen, walruses and species of seals&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Discover the Sermermiut settlement, a part of the Ilulissat Icefjord World Heritage Site&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Multiple adventure hiking options including glacier hikes, Ilimanaq Glacier Adventure and the Eqi Glacier&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;SEASON: Mid-June to Late August&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Ilulissat\",\"DestinationPlacesSysId\":12662,\"SourcePlaces\":\"Ilulissat\",\"SourcePlaceSysId\":12662,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Greenland: Adventures in Disko Bay\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"15635\",\"SupplierName\":\"Greenland Travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Breakfast & Lunch\",\"PackageType\":\"Adventure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12662,\"Title\":\"Ilulissat\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542433,\"Name\":\"Hotel Arctic\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12662,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542433\\/43249_40ea74c30e3abe684a67cafdc12f3b501678965393.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40276,\"Title\":\"Whale Watching\",\"Description\":\"Greenland&amp;#039;s waters are home to a diverse range of whale species, including humpback whales, minke whales, and fin whales. Visitors may also be lucky enough to see orcas, pilot whales, and even the rare and elusive narwhal. Whale watching in Greenland offers an opportunity to get up close and personal with these magnificent creatures. Visitors can watch whale&amp;rsquo;s surface, breach, and blow from the safety and comfort of a boat.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/whale_watching_12662_1677154967.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40269,\"Title\":\"Eqi Glacier\",\"Description\":\"Eqi Glacier is a stunning and unique natural wonder that offers visitors the opportunity to witness the power and beauty of nature, while also contributing to important scientific research. Eqi Glacier is one of the largest and most spectacular glaciers in Greenland, with a front that measures over 5 kilometers (3.1 miles) wide and 80 meters (262 feet) high.\\r\\nEqi Glacier is particularly famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Eqi Glacier is one of the few glaciers in Greenland that is easily accessible to visitors. It can be reached by boat or helicopter from the town of Ilulissat, which is a popular tourist destination in Greenland.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/eqi_glacier_12662_1677154352.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43187,\"Title\":\"Free Day in Eqi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108767,\"CityName\":\"Eqi Glacier\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41250,\"Title\":\"Local Food\",\"Description\":\"&lt;p&gt;Local Food&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678707422.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40275,\"Title\":\"Glacier View Hike\",\"Description\":\"The Glacier View Hike in Greenland is an unforgettable experience that offers visitors the opportunity to witness the beauty and power of the country&amp;#039;s glaciers up close. Greenland is home to some of the most awe-inspiring glaciers in the world, and the Glacier View Hike provides a unique opportunity to witness these natural wonders firsthand. Visitors can marvel at the sheer size and scale of the glaciers, as well as the stunning colors and textures of the ice.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/glacier_view_hike_12662_1677154907.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43185,\"Title\":\"Hiking on Ice Sheet\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40272,\"Title\":\"Ilimanaq Glacier\",\"Description\":\"This glacier is located near Ilulissat and is one of the fastest-moving glaciers in the world. It produces a large number of icebergs that float into the nearby Ilulissat Icefjord, which is a UNESCO World Heritage Site. It is famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Visitors to Ilimanaq can take helicopter tours to see the vast expanse of ice from above.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/ilimanaq_glacier_12662_1677154755.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41298,\"Title\":\"Ilulissat Art Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;Ilulissat&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;&nbsp;Art Museum is housed in the former residence of the colony manager, designed by the famous architect Helge B. M&oslash;ller and was built in 1923.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678775494.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}},{\"CityId\":108767,\"Title\":\"Eqi Glacier\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542434,\"Name\":\"Glacier Lodge Eqi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":108767,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542434\\/43249_8e4ae85d33d881cd39a3baccc3a141791678965588.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40276,\"Title\":\"Whale Watching\",\"Description\":\"Greenland&amp;#039;s waters are home to a diverse range of whale species, including humpback whales, minke whales, and fin whales. Visitors may also be lucky enough to see orcas, pilot whales, and even the rare and elusive narwhal. Whale watching in Greenland offers an opportunity to get up close and personal with these magnificent creatures. Visitors can watch whale&amp;rsquo;s surface, breach, and blow from the safety and comfort of a boat.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/whale_watching_12662_1677154967.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40269,\"Title\":\"Eqi Glacier\",\"Description\":\"Eqi Glacier is a stunning and unique natural wonder that offers visitors the opportunity to witness the power and beauty of nature, while also contributing to important scientific research. Eqi Glacier is one of the largest and most spectacular glaciers in Greenland, with a front that measures over 5 kilometers (3.1 miles) wide and 80 meters (262 feet) high.\\r\\nEqi Glacier is particularly famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Eqi Glacier is one of the few glaciers in Greenland that is easily accessible to visitors. It can be reached by boat or helicopter from the town of Ilulissat, which is a popular tourist destination in Greenland.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/eqi_glacier_12662_1677154352.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43187,\"Title\":\"Free Day in Eqi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108767,\"CityName\":\"Eqi Glacier\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41250,\"Title\":\"Local Food\",\"Description\":\"&lt;p&gt;Local Food&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678707422.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40275,\"Title\":\"Glacier View Hike\",\"Description\":\"The Glacier View Hike in Greenland is an unforgettable experience that offers visitors the opportunity to witness the beauty and power of the country&amp;#039;s glaciers up close. Greenland is home to some of the most awe-inspiring glaciers in the world, and the Glacier View Hike provides a unique opportunity to witness these natural wonders firsthand. Visitors can marvel at the sheer size and scale of the glaciers, as well as the stunning colors and textures of the ice.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/glacier_view_hike_12662_1677154907.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43185,\"Title\":\"Hiking on Ice Sheet\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40272,\"Title\":\"Ilimanaq Glacier\",\"Description\":\"This glacier is located near Ilulissat and is one of the fastest-moving glaciers in the world. It produces a large number of icebergs that float into the nearby Ilulissat Icefjord, which is a UNESCO World Heritage Site. It is famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Visitors to Ilimanaq can take helicopter tours to see the vast expanse of ice from above.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/ilimanaq_glacier_12662_1677154755.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41298,\"Title\":\"Ilulissat Art Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;Ilulissat&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;&nbsp;Art Museum is housed in the former residence of the colony manager, designed by the famous architect Helge B. M&oslash;ller and was built in 1923.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678775494.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}},{\"CityId\":108772,\"Title\":\"Ilimanaq\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43183,\"Title\":\"Boat Tour for Iceberg Sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41238,\"Title\":\"Ilulissat\",\"Description\":\"&lt;p&gt;Ilulissat&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678697784.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43182,\"Title\":\"Ilulissat Guided Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40273,\"Title\":\"Sermermiut Settlement\",\"Description\":\"Sermermiut is an archaeological site located near Ilulissat Icefjord, a UNESCO World Heritage site, in Greenland. Sermermiut Settlement is an important archaeological site that dates back to the Saqqaq culture, which was the first group of people to settle in Greenland more than 4,000 years ago. The site contains remains of various cultures and periods, including the Dorset and Thule cultures. The settlement is located near the Ilulissat Icefjord, which is known for its stunning views of massive icebergs that calve from the nearby Sermeq Kujalleq glacier.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/sermermiut_settlement_12662_1677154814.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40276,\"Title\":\"Whale Watching\",\"Description\":\"Greenland&amp;#039;s waters are home to a diverse range of whale species, including humpback whales, minke whales, and fin whales. Visitors may also be lucky enough to see orcas, pilot whales, and even the rare and elusive narwhal. Whale watching in Greenland offers an opportunity to get up close and personal with these magnificent creatures. Visitors can watch whale&amp;rsquo;s surface, breach, and blow from the safety and comfort of a boat.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/whale_watching_12662_1677154967.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40269,\"Title\":\"Eqi Glacier\",\"Description\":\"Eqi Glacier is a stunning and unique natural wonder that offers visitors the opportunity to witness the power and beauty of nature, while also contributing to important scientific research. Eqi Glacier is one of the largest and most spectacular glaciers in Greenland, with a front that measures over 5 kilometers (3.1 miles) wide and 80 meters (262 feet) high.\\r\\nEqi Glacier is particularly famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Eqi Glacier is one of the few glaciers in Greenland that is easily accessible to visitors. It can be reached by boat or helicopter from the town of Ilulissat, which is a popular tourist destination in Greenland.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/eqi_glacier_12662_1677154352.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43187,\"Title\":\"Free Day in Eqi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108767,\"CityName\":\"Eqi Glacier\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41250,\"Title\":\"Local Food\",\"Description\":\"&lt;p&gt;Local Food&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678707422.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40275,\"Title\":\"Glacier View Hike\",\"Description\":\"The Glacier View Hike in Greenland is an unforgettable experience that offers visitors the opportunity to witness the beauty and power of the country&amp;#039;s glaciers up close. Greenland is home to some of the most awe-inspiring glaciers in the world, and the Glacier View Hike provides a unique opportunity to witness these natural wonders firsthand. Visitors can marvel at the sheer size and scale of the glaciers, as well as the stunning colors and textures of the ice.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/glacier_view_hike_12662_1677154907.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":43185,\"Title\":\"Hiking on Ice Sheet\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":40272,\"Title\":\"Ilimanaq Glacier\",\"Description\":\"This glacier is located near Ilulissat and is one of the fastest-moving glaciers in the world. It produces a large number of icebergs that float into the nearby Ilulissat Icefjord, which is a UNESCO World Heritage Site. It is famous for its calving events, where large chunks of ice break off from the glacier and fall into the water with a thunderous roar. Visitors to Ilimanaq can take helicopter tours to see the vast expanse of ice from above.\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/12662\\/sightseeing\\/ilimanaq_glacier_12662_1677154755.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null},{\"RefSSId\":41298,\"Title\":\"Ilulissat Art Museum\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;font-weight: bold color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;Ilulissat&lt;\\/span&gt;&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif text-align: start&quot;&gt;&nbsp;Art Museum is housed in the former residence of the colony manager, designed by the famous architect Helge B. M&oslash;ller and was built in 1923.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12662,\"CityName\":\"Ilulissat\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/12662\\/sightseeing\\/43249_1678775494.jpg\",\"SupplierSysId\":15635,\"SupplierName\":\"Greenland Travel\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"358414\",\"Title\":\"Arrival in Ilulissat \\/ Ilulissat Guided Tour \\/ Iceberg Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;09:00 Board a flight from Copenhagen to Ilulissat via a connection at Kangerlussuaq.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Check in to your hotel, which is the northernmost 4-star hotel in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;16:30 Embark upon the Ilulissat Guided Tour. The guide will tell you about the town&amp;#39;s history, Greenlandic culture, and modern life 300 km north of the Arctic Circle. Stop at several places along the way and say hello to the fishermen at the harbour and the hunters at &amp;quot;br&amp;aelig;ttet.&amp;quot; Pass the famous polar explorer Knud Rasmussen&amp;#39;s birthplace and the old wooden Zion church.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:00 Enjoy a tasty welcome dinner back at your hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;20:10 Boat tour for Iceberg Sightseeing. More than 48 km3 of ice flows into the fjord during one year. The result is gigantic icebergs, more than 100 metres wide and more than 100 metres above the water&amp;#39;s surface. Icebergs are beautiful in every kind of weather. On sunny days they glitter in shiny white, the blue shades are best seen when it is cloudy, and the midnight sun casts a unique, warm glow on the icebergs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358415\",\"Title\":\"Whale Safari \\/ Sermermiut Settlement\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;12:00 Enjoy a thrilling Whale Safari. It is usually the humpback whale, minke whale, and fin whale we see in the summer. Despite being up to 18 metres and 30 tons, the humpback whale is the acrobat among the great whales. We are in radio contact with Ilulissat&amp;#39;s fishermen and other tourist operators, so we can almost always find the whales.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Explore the Sermermiut Settlement. For 4000 years, different Inuit cultures lived in this settlement, and today you can still see remains that indicate their presence. The guide tells stories about the Inuit people&amp;#39;s life and traditions before the Europeans came to Greenland. See turf hut ruins and touch the permafrost with your own hands. The area is so outstanding that UNESCO named it World Heritage in 2004.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542433,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40273,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40276,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358416\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358417\",\"Title\":\"The Eqi Glacier\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;14:00 Transfer to the Equi Glacier via boat. The glacier runs into a fjord approximately 80 km north of Ilulissat. By boat, you can get very close to the glacier and see huge pieces of ice breaking off.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:50 Check in to your accommodation at Eqi, where you can get stunning views of the Eqi Glacier from multiple angles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108767,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542434,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40269,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358418\",\"Title\":\"&nbsp;Free Day in Eqi\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Enjoy a day in Eqi at your leisure. Orient yourself with the region, try out some local food and photograph one of the most iconic glaciers in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108767,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542434,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43187,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41250,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358419\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108767,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358420\",\"Title\":\"Glacier View Hike \\/ Transfer to Ilulissat\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p&gt;14:00 Start your Glacier View Hike. You walk past the lagoon and onto the moraine, from where you can look at the fantastic glacier. Coffee and tea will be served on the hike. It is about an 8 km walk in mountainous terrain.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 Board the ferry to transfer back to Ilulissat and check into your accommodation.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40275,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358421\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358422\",\"Title\":\"Ilimanaq Glacier Adventure\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":6,\"Program\":\"&lt;p&gt;10:00 On this trip, sail south of Ilimanaq to Itilliup Ilua. You are dropped off on the wide sandy beach, where we drive in off-road vehicles through the Arctic tundra until we reach the Tasiusaq Fjord system. From here, sail further deep in between the icebergs to the end of the fjord, where the two glaciers and the ice sheet come into view. Post lunch, you have the opportunity to hike on an enormous ice sheet.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108772,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43185,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40272,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358423\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108772,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358424\",\"Title\":\"Free Day in Ilulissat\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy a day in Ilulissat at your leisure. Orient yourself with the region, try out some local food and shop for souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41298,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358425\",\"Title\":\"Departure from Ilulissat\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;12:00 Board a flight from Ilulissat back to Copenhagen via a connection at Kangerlussuaq.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12662,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41238,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49751\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":6138,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49751\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":6138,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":32,\"priceTripleOcc\":6138,\"priceDoubleOcc\":6138,\"priceSingleOcc\":\"6138.00\",\"priceExtraBed\":6138,\"priceWithoutBed\":6138,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6138,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6138,\"CWOB\":6138,\"CEB\":6138,\"COSTDO\":6138,\"COSTSO\":12276,\"ACEB\":6138}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fuel surcharges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in Inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Return flights Copenhagen - Ilulissat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return transfer Ilulissat - Accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English-speaking Greenland Travel Guide service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 nights&amp;#39; accommodation in a 4-star Hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return boat transfer Ilulissat-Eqi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights&amp;#39; accommodation in Eqi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast from Day 2 to Day 8&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch on Days 3, 4, 5 and 6&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dinner on Days 1, 3, 4&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ilulissat City Walk&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Iceberg Sightseeing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Whale Safari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walk to Sermermiut&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Glacier View Hike&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ilimanaq Glacier Adventure&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"358414\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[358414],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358415\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[358415],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358416\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358416],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358417\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358417],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358418\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[358418],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358419\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[358419],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358420\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[358420],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358421\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[358421],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358422\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[358422],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358423\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[358423],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358424\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[358424],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358425\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[358425],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ilulissat,Eqi Glacier,Ilimanaq','Ilulissat,North America,Greenland,Eqi Glacier,Ilimanaq',NULL,'12662,108767,108772',550676,550676,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'Greenland','87','2023-09-07 13:16:38','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'greenland-adventures-in-disko-bay',NULL,NULL,NULL,0),(341,49760,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49760,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/classic-antarctica-air-cruise-expedition_1677137701\",\"BookingValidUntill\":\"2025-03-02\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Classic Antarctica Air-Cruise&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Antarctica, the least frequented but the most beautiful continent in the world becomes accessible to you. With miles of white snow and ice till as far as the eyes can see, its terrain drops to the sea and rises to the mountains with jaw dropping transitions. As you fill your lungs with the purest of air and feel the welcoming chill on your face, the penguins &amp;amp; whales put on a show for you.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The world&amp;rsquo;s first Air-Fly expedition starts from Punta Arenas, the southern tip of Chile where you board a specialized, 4 engine BAE Systems craft to Chile&amp;rsquo;s Frei Station. Flying over the Drake Passage saves you 5 days of your precious quality time, giving you more days to explore the continent. This is, premium cruise liner takes you across fjords (deep inlet of the sea between high cliffs) and ice bergs to King George Island in the South Shetland Islands of Antarctica.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the ship, all cabins except Porthole cabins feature private balconies. All double cabins except two have two twin beds that can be configured as one king-size bed. All cabins feature a wardrobe, individually controlled heating system, a sitting area, and a private bathroom with shower. The ship contains an observation lounge and presentation room, stellar dining room, a bar, library, meeting room, Anytime Fitness gym, sauna, and a medical clinic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A fleet of 10 zodiac boats enable embarking\\/disembarking, and more importantly, proximity to wildlife &amp;amp; exploration. Activities like Sea kayaking and snowshoeing provide a unique thrill, given the landscaping. This experience cannot be found anywhere else in the world. Specialized guides and naturalists make sure that every penny invested in the trip gives you greatly satisfying returns, along with priceless memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Highlights&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;World&amp;rsquo;s first Air-Fly Expedition to Antarctica&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Savor the ultra-luxurious Cruise Liner with 73 grand suites, a library, Anytime Fitness Gym, bar, sauna, meeting room and medical clinic, the provides a superior experience &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passengers to crew ratio of 5:3, with highly trained and international staff&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Expedition leaders, Botanists, Geologists, Marines, polar guides were present throughout the trip to ensure a safe and knowledgeable experience&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fly over the Drake passage and save 5 days of cruise time&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Abundant opportunities to see exclusive wildlife like penguins, whales and species of seals&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sea kayaking amidst floating ice chunks, Ice bergs, snow sheets, mountains and fjords. Surround yourself with glaciated peaks and look below at crystal clear waters&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Snowshoeing &amp;amp; Hiking &amp;nbsp;- View the South pole from the highest points.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10 zodiac boats present on the ship to ferry you around for exploration or for safety needs&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Punta Arenas\",\"DestinationPlacesSysId\":22242,\"SourcePlaces\":\"Punta Arenas\",\"SourcePlaceSysId\":22242,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Classic Antarctica Air-Cruise Expedition\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15625\",\"SupplierName\":\"Antarctica 21 Expedition Cruise\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2025-03-02\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22242,\"Title\":\"Punta Arenas\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":544865,\"Name\":\"Expedition Cruise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22242,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544865\\/43249_44467bf1f44b55e8e07e628937a364d91679919178.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41398,\"Title\":\"Punta Arenas\",\"Description\":\"&lt;p&gt;Punta Arenas is a city near the tip of Chile&#039;s southernmost Patagonia region. Located on the Strait of Magellan, which connects the Atlantic and Pacific oceans, it&#039;s often used as base for excursions to the surrounding wilderness and Antarctica. The Plaza Mu&ntilde;oz Gamero has a memorial to explorer Ferdinand Magellan, and the Museo Nao Victoria features a replica of one of his galleons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678942775.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43264,\"Title\":\"Chile\'s Frei Station \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43265,\"Title\":\"Russia\\u2019s Bellingshausen Station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41399,\"Title\":\"Flight to Antarctica\",\"Description\":\"&lt;p&gt;Flight to Antarctica&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678943493.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41402,\"Title\":\"Penguin\",\"Description\":\"&lt;p&gt;Penguin&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946151.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41419,\"Title\":\"Antarctic Wildlife\",\"Description\":\"&lt;p&gt;Antarctic wildlife&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946691.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43266,\"Title\":\"Sea Kayaking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41403,\"Title\":\"kayaking\",\"Description\":\"&lt;p&gt;kayaking&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678945974.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43267,\"Title\":\"Snowshoeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41421,\"Title\":\"Paradise Bay\",\"Description\":\"&lt;p&gt;Paradise Bay&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678947073.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43268,\"Title\":\"Port Lockroy\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43269,\"Title\":\"Paradise Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43270,\"Title\":\"Deception Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43271,\"Title\":\"Paulette Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43272,\"Title\":\"Hope Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43273,\"Title\":\"Peterman Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43274,\"Title\":\"Lemaire Channel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41422,\"Title\":\"King George Island\",\"Description\":\"&lt;p&gt;King George Island is the largest of the South Shetland Islands, lying 120 km off the coast of Antarctica in the Southern Ocean. The island was named after King George III.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678947794.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41423,\"Title\":\"Flight to Punta Arenas\",\"Description\":\"&lt;p&gt;Flight to Punta Arenas&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678948140.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null}]}},{\"CityId\":108774,\"Title\":\"South Shetland Islands\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":544865,\"Name\":\"Expedition Cruise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":108774,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544865\\/43249_44467bf1f44b55e8e07e628937a364d91679919178.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41398,\"Title\":\"Punta Arenas\",\"Description\":\"&lt;p&gt;Punta Arenas is a city near the tip of Chile&#039;s southernmost Patagonia region. Located on the Strait of Magellan, which connects the Atlantic and Pacific oceans, it&#039;s often used as base for excursions to the surrounding wilderness and Antarctica. The Plaza Mu&ntilde;oz Gamero has a memorial to explorer Ferdinand Magellan, and the Museo Nao Victoria features a replica of one of his galleons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678942775.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43264,\"Title\":\"Chile\'s Frei Station \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43265,\"Title\":\"Russia\\u2019s Bellingshausen Station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41399,\"Title\":\"Flight to Antarctica\",\"Description\":\"&lt;p&gt;Flight to Antarctica&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678943493.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41402,\"Title\":\"Penguin\",\"Description\":\"&lt;p&gt;Penguin&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946151.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41419,\"Title\":\"Antarctic Wildlife\",\"Description\":\"&lt;p&gt;Antarctic wildlife&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946691.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43266,\"Title\":\"Sea Kayaking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41403,\"Title\":\"kayaking\",\"Description\":\"&lt;p&gt;kayaking&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678945974.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43267,\"Title\":\"Snowshoeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41421,\"Title\":\"Paradise Bay\",\"Description\":\"&lt;p&gt;Paradise Bay&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678947073.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43268,\"Title\":\"Port Lockroy\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43269,\"Title\":\"Paradise Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43270,\"Title\":\"Deception Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43271,\"Title\":\"Paulette Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43272,\"Title\":\"Hope Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43273,\"Title\":\"Peterman Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43274,\"Title\":\"Lemaire Channel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41422,\"Title\":\"King George Island\",\"Description\":\"&lt;p&gt;King George Island is the largest of the South Shetland Islands, lying 120 km off the coast of Antarctica in the Southern Ocean. The island was named after King George III.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678947794.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41423,\"Title\":\"Flight to Punta Arenas\",\"Description\":\"&lt;p&gt;Flight to Punta Arenas&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678948140.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null}]}},{\"CityId\":108768,\"Title\":\"King George Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":544865,\"Name\":\"Expedition Cruise\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":108768,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544865\\/43249_44467bf1f44b55e8e07e628937a364d91679919178.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41398,\"Title\":\"Punta Arenas\",\"Description\":\"&lt;p&gt;Punta Arenas is a city near the tip of Chile&#039;s southernmost Patagonia region. Located on the Strait of Magellan, which connects the Atlantic and Pacific oceans, it&#039;s often used as base for excursions to the surrounding wilderness and Antarctica. The Plaza Mu&ntilde;oz Gamero has a memorial to explorer Ferdinand Magellan, and the Museo Nao Victoria features a replica of one of his galleons.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678942775.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43264,\"Title\":\"Chile\'s Frei Station \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43265,\"Title\":\"Russia\\u2019s Bellingshausen Station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41399,\"Title\":\"Flight to Antarctica\",\"Description\":\"&lt;p&gt;Flight to Antarctica&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22242,\"CityName\":\"Punta Arenas\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22242\\/sightseeing\\/43249_1678943493.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41402,\"Title\":\"Penguin\",\"Description\":\"&lt;p&gt;Penguin&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946151.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41419,\"Title\":\"Antarctic Wildlife\",\"Description\":\"&lt;p&gt;Antarctic wildlife&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678946691.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43266,\"Title\":\"Sea Kayaking\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41403,\"Title\":\"kayaking\",\"Description\":\"&lt;p&gt;kayaking&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678945974.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43267,\"Title\":\"Snowshoeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41421,\"Title\":\"Paradise Bay\",\"Description\":\"&lt;p&gt;Paradise Bay&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108774\\/sightseeing\\/43249_1678947073.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43268,\"Title\":\"Port Lockroy\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43269,\"Title\":\"Paradise Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43270,\"Title\":\"Deception Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43271,\"Title\":\"Paulette Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43272,\"Title\":\"Hope Bay\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43273,\"Title\":\"Peterman Island\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":43274,\"Title\":\"Lemaire Channel\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":108774,\"CityName\":\"South Shetland Islands\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41422,\"Title\":\"King George Island\",\"Description\":\"&lt;p&gt;King George Island is the largest of the South Shetland Islands, lying 120 km off the coast of Antarctica in the Southern Ocean. The island was named after King George III.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678947794.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null},{\"RefSSId\":41423,\"Title\":\"Flight to Punta Arenas\",\"Description\":\"&lt;p&gt;Flight to Punta Arenas&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":108768,\"CityName\":\"King George Island\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/108768\\/sightseeing\\/43249_1678948140.jpg\",\"SupplierSysId\":15625,\"SupplierName\":\"Antarctica 21 Expedition Cruise\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"358490\",\"Title\":\"Arrival at Punta Arenas&nbsp;\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;You will arrive at &lt;strong&gt;Punta Arenas&lt;\\/strong&gt;, Chile by 2 pm where you would be transferred to your hotel by our representatives. After this, you attend a mandatory briefing, which provides you with the necessary guidelines for your trip to Antarctica followed by a sumptuous dinner with your companions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22242,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41398,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358491\",\"Title\":\"Flight to Antarctica\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;The Antarctic adventure journey begins with a two-hour flight from Punta Arenas to King George Island in the South Shetland Islands. When you get out of the airplane, Antarctic air will fill your lungs for the first time. Before climbing the zodiac, explore Chile&amp;#39;s Frei station and the area around Russia&amp;rsquo;s Bellingshausen station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22242,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43264,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43265,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41399,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358492\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22242,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358493\",\"Title\":\"Exploring Antarctica\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;When you arrive between the South Shetland Islands and the west coast of the Antarctic Peninsula, enjoy the company of seabirds, &lt;strong&gt;penguins&lt;\\/strong&gt;, and whales amidst the snow-filled Fjords. You make small groups, travel to extraordinary places aboard the zodiac, and unravel the mysteries of the continent.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108774,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41402,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358494\",\"Title\":\"Exploring Antarctica\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Try your hand at&lt;strong&gt; &lt;\\/strong&gt;Sea Kayaking&lt;strong&gt; &lt;\\/strong&gt;today. Navigate the fjords in your kayak which takes you to the most intricate places making this trip most memorable. Post your explorations when you return back to the ship, the ship crew shares their experiences through engaging shows and presentations, imparting knowledge about the wonders of &lt;strong&gt;Antarctic wildlife&lt;\\/strong&gt;, history, and environment. The glass-enclosed lounge allows you to enjoy spectacular views while carrying out your daily events with your companions. Explore the continent further. You are able to absorb your surrounding better due to positive acclimatization.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108774,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43266,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358495\",\"Title\":\"Exploring Antarctica\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Travel through zodiacs with expert polar guides to encompass the beautiful landscapes. Access&lt;strong&gt; sea kayaking&lt;\\/strong&gt; and snowshoeing at your convenience.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108774,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43267,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358496\",\"Title\":\"Exploring Antarctica\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Your last day to set foot on the seventh continent of the world. Overall in totality, the places of your visit may include Port Lockro, &lt;strong&gt;Paradise Bay&lt;\\/strong&gt;, Deception Island, Paulette Island, Hope Bay, Peterman Island, Lemaire Channel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108774,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41421,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43268,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43269,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43270,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43271,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43272,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43273,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43274,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358497\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108774,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358498\",\"Title\":\"Return Flight from Antarctica\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Return to &lt;strong&gt;King George Island&lt;\\/strong&gt; and bid farewell to Antarctica before flying back To Punta Arenas. Transfer to hotel for the night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;(Note: Dining at Punta Arenas is at your leisure and is not included in the program)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108768,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41422,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"358499\",\"Title\":\"&nbsp;End of the Air-Cruise\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, transfer to the Punta Arenas airport for your onward flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":108768,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"49760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":14995,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"49760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":14995,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-01\",\"To\":\"2023-12-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-06\",\"To\":\"2023-12-06\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-11\",\"To\":\"2023-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-16\",\"To\":\"2023-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-21\",\"To\":\"2023-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-26\",\"To\":\"2023-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2023-12-31\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-14\",\"To\":\"2024-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-19\",\"To\":\"2024-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-01-31\",\"To\":\"2024-01-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-05\",\"To\":\"2024-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-10\",\"To\":\"2024-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-03-01\",\"To\":\"2024-03-01\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-11\",\"To\":\"2024-12-11\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-16\",\"To\":\"2024-12-16\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-21\",\"To\":\"2024-12-21\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-26\",\"To\":\"2024-12-26\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2024-12-31\",\"To\":\"2024-12-31\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-14\",\"To\":\"2025-01-14\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-01-19\",\"To\":\"2025-01-19\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-05\",\"To\":\"2025-02-05\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-10\",\"To\":\"2025-02-10\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-15\",\"To\":\"2025-02-15\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-20\",\"To\":\"2025-02-20\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-02-25\",\"To\":\"2025-02-25\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995},{\"From\":\"2025-03-02\",\"To\":\"2025-03-02\",\"Currency\":2,\"priceTripleOcc\":14995,\"priceDoubleOcc\":14995,\"priceSingleOcc\":\"14995.00\",\"priceExtraBed\":14995,\"priceWithoutBed\":14995,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":14995,\"CWOB\":14995,\"CEB\":14995,\"COSTDO\":14995,\"COSTSO\":29990,\"ACEB\":14995}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation, meals, excursions and transfers other than those included in the itinerary and the Contingency Plan corresponding to each voyage. Specifically, dinner in Punta Arenas upon return from Antarctica is not included.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Beverages purchased at the ship&amp;rsquo;s bar.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal travel insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extra expenses (communication, laundry,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;souvenirs, etc.).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visas for Chile and\\/or Argentina, passport expenses, and any arrival and\\/or departure tax, if applicable.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;For air-cruises starting in Punta Arenas, group transfers airport\\/hotel on Day 1.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For air-cruises starting in Punta Arenas, 1 overnight with breakfast in Punta Arenas at&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The Cabo de Hornos Hotel or similar, with a welcome dinner including drinks on Day 1.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 overnight with breakfast in Punta Arenas at the Cabo de Hornos Hotel or similar on the Day of the Scheduled Return Flight from Antarctica.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Group transfers airport\\/hotel on the Day of the Scheduled Return Flight from Antarctica, and group transfers hotel\\/airport on last Day of the Air-Cruise.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flight from Punta Arenas to Frei Station on King George Island and\\/or vice versa as indicated in the program corresponding to each voyage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ship cruise along the Antarctic Peninsula as indicated in the program corresponding to each voyage.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily buffet breakfast and lunch on board ship offering a wide choice of dishes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily served dinner on board ship offering a choice of three main courses.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wine, beer, juice, and soft drinks served with lunch and dinner on board ship.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coffee, tea, chocolate, cappuccino, water and snacks on board ship throughout the expedition.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All guided shore excursions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lectures and entertainment on board.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comprehensive pre- and post-voyage information material.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Loan of waterproof boots for landing in Antarctica.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Contingency Plan as described further on.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;IAATO passenger fee.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"358490\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[358490],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358491\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[358491],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358492\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358492],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358493\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[358493],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358494\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[358494],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358495\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[358495],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358496\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[358496],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358497\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[358497],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358498\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[358498],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"358499\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[358499],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"22242\":{\"CityName\":\"Punta Arenas\",\"FlightInv\":{\"1\":{\"758\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"759\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20231201\":{\"FromDate\":\"2023-12-01\",\"FromDateDMY\":\"01\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231206\":{\"FromDate\":\"2023-12-06\",\"FromDateDMY\":\"06\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231211\":{\"FromDate\":\"2023-12-11\",\"FromDateDMY\":\"11\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231216\":{\"FromDate\":\"2023-12-16\",\"FromDateDMY\":\"16\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231221\":{\"FromDate\":\"2023-12-21\",\"FromDateDMY\":\"21\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231226\":{\"FromDate\":\"2023-12-26\",\"FromDateDMY\":\"26\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231231\":{\"FromDate\":\"2023-12-31\",\"FromDateDMY\":\"31\\/12\\/2023\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240114\":{\"FromDate\":\"2024-01-14\",\"FromDateDMY\":\"14\\/01\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240119\":{\"FromDate\":\"2024-01-19\",\"FromDateDMY\":\"19\\/01\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240131\":{\"FromDate\":\"2024-01-31\",\"FromDateDMY\":\"31\\/01\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240205\":{\"FromDate\":\"2024-02-05\",\"FromDateDMY\":\"05\\/02\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240210\":{\"FromDate\":\"2024-02-10\",\"FromDateDMY\":\"10\\/02\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240225\":{\"FromDate\":\"2024-02-25\",\"FromDateDMY\":\"25\\/02\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240301\":{\"FromDate\":\"2024-03-01\",\"FromDateDMY\":\"01\\/03\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241211\":{\"FromDate\":\"2024-12-11\",\"FromDateDMY\":\"11\\/12\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241216\":{\"FromDate\":\"2024-12-16\",\"FromDateDMY\":\"16\\/12\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241221\":{\"FromDate\":\"2024-12-21\",\"FromDateDMY\":\"21\\/12\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241231\":{\"FromDate\":\"2024-12-31\",\"FromDateDMY\":\"31\\/12\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250114\":{\"FromDate\":\"2025-01-14\",\"FromDateDMY\":\"14\\/01\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250119\":{\"FromDate\":\"2025-01-19\",\"FromDateDMY\":\"19\\/01\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250205\":{\"FromDate\":\"2025-02-05\",\"FromDateDMY\":\"05\\/02\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250210\":{\"FromDate\":\"2025-02-10\",\"FromDateDMY\":\"10\\/02\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250215\":{\"FromDate\":\"2025-02-15\",\"FromDateDMY\":\"15\\/02\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250220\":{\"FromDate\":\"2025-02-20\",\"FromDateDMY\":\"20\\/02\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250225\":{\"FromDate\":\"2025-02-25\",\"FromDateDMY\":\"25\\/02\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20250302\":{\"FromDate\":\"2025-03-02\",\"FromDateDMY\":\"02\\/03\\/2025\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241226\":{\"FromDate\":\"2024-12-26\",\"FromDateDMY\":\"26\\/12\\/2024\",\"AdultCost\":14995,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Punta Arenas,South Shetland Islands,King George Island','Punta Arenas,South America,Chile,South Shetland Islands,Antarctica,King George Island',NULL,'22242,108774,108768',1232171,1232171,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2025-03-02 00:00:00','2025-03-02 00:00:00',3,'Chile,Antarctica','45,8','2023-09-07 13:16:28','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'classic-antarctica-air-cruise-expedition',NULL,NULL,NULL,0),(342,49844,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49844,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/highlights-of-new-zeal_1677311108\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;New Zealand is among the southernmost countries of the world and probably tops the charts among the most beautiful countries as well. With a postcard-like landscape immersed with mountains, lakes, fjords, coastal drives, blooming flowers, and glaciers, New Zealand attracts millions of tourists year-round.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The journey starts in Auckland and terminates in Christchurch, exploring both the North and South Islands of New Zealand, including other pristine cities such as Queenstown and Rotorua.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Milford Sound and Mount Cook; towering fjords &amp;amp; mountains respectively are so impressive and exquisite in nature that they are often part of travelers&amp;rsquo; bucket lists for the beauty they entail. Over 10 nights, you visit other popular attractions such as the Hobbiton Set, Mt. Tarawera, Tranz Alpine Train Journey, Franz Josef Glacier, and a cruise along Milford Sound, to discover the vast rainforests, and waterfalls.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A country so marvelous, New Zealand guarantees prime satisfaction with ecstatic expectations.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Highlights&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Mount Cook National Park; the highest mountain in New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Milford Sound; world-famous majestic fjord&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Queenstown: The Adventure Capital of the World&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Traditional Maori Cultural Show&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise along Milford Sound&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Franz Josef Glacier&amp;rsquo;s breathtaking views and glacial sheets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Experience the Tranz Alpine train Journey to Christchurch&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Christchurch\",\"DestinationPlacesSysId\":6244,\"SourcePlaces\":\"Auckland\",\"SourcePlaceSysId\":1751,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Highlights of New Zealand\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15623\",\"SupplierName\":\"NZ Sidekick\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Only Breakfast\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1751,\"Title\":\"Auckland\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542749,\"Name\":\"Hotel SkyCity Auckland\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":1751,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542749\\/43249_274aa425d9f2252b526b10f0807129d11679033369.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41365,\"Title\":\"Maori Culture\",\"Description\":\"&lt;p&gt;Maori Cultural Experience&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678872267.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41544,\"Title\":\"Hanging City\",\"Description\":\"&lt;p&gt;Hanging City&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1679298032.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":43375,\"Title\":\"Tasman Glacier\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null}]}},{\"CityId\":23350,\"Title\":\"Rotorua\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542968,\"Name\":\"Millennium Hotel Rotorua\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":23350,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542968\\/43249_5b7f08df15ee33a1f0190e6cc999c84d1678969258.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41365,\"Title\":\"Maori Culture\",\"Description\":\"&lt;p&gt;Maori Cultural Experience&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678872267.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41544,\"Title\":\"Hanging City\",\"Description\":\"&lt;p&gt;Hanging City&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1679298032.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":43375,\"Title\":\"Tasman Glacier\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null}]}},{\"CityId\":6244,\"Title\":\"Christchurch\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542763,\"Name\":\"Distinction Hotel Christchurch\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6244,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542763\\/43249_4ae4d1f4b254315f79f22dbf330d55a51679033148.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41365,\"Title\":\"Maori Culture\",\"Description\":\"&lt;p&gt;Maori Cultural Experience&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678872267.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41544,\"Title\":\"Hanging City\",\"Description\":\"&lt;p&gt;Hanging City&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1679298032.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":43375,\"Title\":\"Tasman Glacier\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null}]}},{\"CityId\":22373,\"Title\":\"Queenstown\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542969,\"Name\":\"Millennium Hotel Queenstown\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22373,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542969\\/43249_90da17c475b5da5f87031470de5ef3001679033222.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41365,\"Title\":\"Maori Culture\",\"Description\":\"&lt;p&gt;Maori Cultural Experience&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678872267.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41544,\"Title\":\"Hanging City\",\"Description\":\"&lt;p&gt;Hanging City&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1679298032.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":43375,\"Title\":\"Tasman Glacier\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null}]}},{\"CityId\":85073,\"Title\":\"FRANZ JOSEF GLACIER\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542760,\"Name\":\"Scenic Hotel Franz Josef Glacier\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":85073,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542760\\/43249_cbae4d82e62b6f301e9e37063ca033011679033278.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41365,\"Title\":\"Maori Culture\",\"Description\":\"&lt;p&gt;Maori Cultural Experience&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678872267.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41544,\"Title\":\"Hanging City\",\"Description\":\"&lt;p&gt;Hanging City&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1679298032.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":43375,\"Title\":\"Tasman Glacier\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null},{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":14378,\"SupplierName\":\"Holiday Moods Adventures\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"359114\",\"Title\":\"Arrival in Auckland\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at the Auckland airport and check into your hotel. Spend the day relaxing and orienting yourself with the &amp;ldquo;City of Sails&amp;rdquo; at your leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional Activity - We recommend enjoying the Harbour Cruise Dinner Experience for stunning views of the city downtown while enjoying delicious food on the cruise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542749,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41347,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359115\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359116\",\"Title\":\"Hobbiton Set \\/ Rotorua\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Post breakfast, journey to Middle Earth and the Hobbiton Movie Set, made famous by the Lord of the Rings and the Hobbit. At the end of the tour, travel south to Rotorua and check into your accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional Activity - &amp;nbsp;We recommend enjoying the Polynesian Spa where there are a number of differently heated water pools overlooking the Rotorua Landscape. The pool temperatures range from 36 degrees celsius to 42 degrees celsius which are therapeutic for your body.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542968,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41346,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359117\",\"Title\":\"Mt. Tarawera \\/ Maori Cultural Experience\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Travel to Mt. Tarawera and embark upon a crater walk. The guided tour includes an off-road 4x4 experience through the native New Zealand bush, transporting you to the crater&amp;#39;s edge.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, experience New Zealand&amp;rsquo;s Most Awarded Cultural Attraction, Tamaki M?ori Village presents TE P? T?. Enjoy a special seasonal dinner feast, a Maori warrior show, and a bonfire before returning to your accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542968,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359118\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359119\",\"Title\":\" Fly to Christchurch\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Board a flight from Rotorua to Christchurch, also known as the &amp;ldquo;Hanging City&amp;rdquo;. Check into your accommodation and enjoy exploring the city at your leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41544,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359120\",\"Title\":\"Mount Cook Small Group Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Travel west, across the fertile Canterbury Plains to Lake Tekapo and the Church of the Good Shepherd. Both of which provide avenues for filling up your picture gallery.&amp;nbsp; This small group, fully-guided day trip combines all of the key highlights in the area with the famous Lake Tekapo, Aoraki\\/Mount Cook National Park and Tasman Glacier.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional Activity - We recommend doing a Glacier Tour, where you have the opportunity of seeing tall glaciers as old as 500 years up close in a boat. This kind of tour is one of only three in the world.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41353,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43375,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359121\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359122\",\"Title\":\"Arrival in Queenstown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Take in the last views of Mount Cook as you travel to &lt;strong&gt;Queenstown&lt;\\/strong&gt;. Witness Lake Pukaki and Cromwell; regions that provide multiple photographing opportunities. Enjoy Queenstown at your leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41359,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359123\",\"Title\":\"Free Day in Queenstown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Welcome to the adventure capital of the World. With stunning views of Lake Wakatipu and the Southern Alps, you can enjoy the city at your leisure.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional Activities - We highly recommend taking up some adventure activities while in the adventure capital of the world. Try Skydiving, Bungy Jumping, Luging, Riding the Queenstown Gondola or experiencing the Shotover Jet.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41348,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359124\",\"Title\":\"Milford Sound Return Coach Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Drive along&lt;strong&gt; Lake Wakatipu &lt;\\/strong&gt;to Lumsden, and onward to Lake Te Anau. This entire region is so scenic, immersing travellers in an amalgamation of mountains and clear blue waters of pristine lakes. As you approach Eglinton Valley, traverse through the Homer Tunnel to reach Milford Sound. Board a cruise to explore this world-famous, mighty fjord, with Mitre Peak towering in front of you along grand spectacles of waterfalls, rainforests and wildlife. Return to Queenstown for the night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359125\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359136\",\"Title\":\"Franz Josef Glacier\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Travel across the Haast Pass to the other side of the Southern Alps, where the landscape changes dramatically. The drive culminates in the beautiful area of Franz Josef. After checking in to your accommodation, our guide will escort you on a glacier tour where you will see the Franz Josef Glacier.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":85073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41367,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359137\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":85073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359138\",\"Title\":\"Tranz Alpine Train to Christchurch\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Post breakfast, journey north to arrive at Hokitoka, an ancient gold mining town known for its Greenstone. Here on, head to the Greymouth Station to board the Tranz Alpine Scenic Train. You&amp;#39;ll travel across the South Island from the west to the east coast through Arthur&amp;#39;s Pass National Park. From the comfort of your carriage see lush beech forest, deep river valleys and the spectacular peaks of the Southern Alps. Descend to the windswept Canterbury Plains before arriving in the city of Christchurch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41368,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359139\",\"Title\":\"Departure From Christchurch\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;Your thrilling New Zealand adventure culminates as you depart for Christchurch Airport from your flight back home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41369,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49844\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4030,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49844\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":4030,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030},{\"From\":\"2023-04-25\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":4030,\"priceDoubleOcc\":4030,\"priceSingleOcc\":\"4030.00\",\"priceExtraBed\":4030,\"priceWithoutBed\":4030,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":4030,\"CWOB\":4030,\"CEB\":4030,\"COSTDO\":4030,\"COSTSO\":8060,\"ACEB\":4030}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;International round trip flight to New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities, tips etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Private Transfer from Auckland airport to Auckland accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10 nights&amp;rsquo; accommodation in 4-Star Hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Franz Josef to Greymouth Station&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Guide and in-country support&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TranzAlpine Scenic Train tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private Transfers to and from Christchurch Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hobbiton Movie Set Small Group Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Maori Cultural Experience&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mt. Tarawera guided crater walk&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private transfer from Rotorua accommodation to Rotorua airport&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air New Zealand flight Rotorua to Christchurch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mount Cook via Lake Tekapo Small Group Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Milford Sound Cruise and Coach Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Queenstown to Franz Josef Glacier Shuttle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 special dinner&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"359114\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[359114],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359115\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[359115],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359116\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[359116],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359117\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[359117],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359118\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[359118],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359119\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[359119],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359120\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[359120],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359121\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[359121],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359122\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[359122],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359123\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[359123],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359124\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[359124],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359125\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359136\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359136],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359137\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[359137],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359138\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[359138],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359139\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[359139],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Auckland,Rotorua,Christchurch,Queenstown,FRANZ JOSEF GLACIER','Auckland,Oceania,New Zealand,Rotorua,Christchurch,Queenstown,FRANZ JOSEF GLACIER',NULL,'1751,23350,6244,22373,85073',331515,331515,10,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'New Zealand','157','2023-09-07 13:16:11','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'highlights-of-new-zealand',NULL,NULL,NULL,0),(343,49896,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49896,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/the-grtour-of-new-zeal_1677486335\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;New Zealand is among the southernmost countries of the world and probably tops the charts among the most beautiful countries as well. With a postcard-like landscape immersed with mountains, lakes, fjords, coastal drives, blooming flowers and glaciers, New Zealand attracts millions of tourists year-round.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nThis tour covers most of the popular Kiwi destinations and ensures that travellers get maximum utility from their journey to New Zealand. Explore Auckland, Rotorua, Queenstown, Dunedin, Milford Sound, Franz Josef, Wellington, Te Anau, Christchurch, Mount Cook, Arrowtown, and Taupo to completely immerse yourself in this magical country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nMilford Sound and Mount Cook; towering fjords &amp;amp; mountains respectively are so impressive and exquisite in nature that they are often part of travellers&amp;rsquo; bucket lists for the beauty they entail. Over 13 nights, you visit other popular attractions such as the Hobbiton Set, Mt. Tarawera, Tranz Alpine Train Journey, Franz Josef Glacier, and a cruise along Milford Sound, to discover the vast rainforests, and waterfalls.&amp;nbsp;&lt;br \\/&gt;\\r\\nA country so marvellous, New Zealand guarantees prime satisfaction with ecstatic expectations. &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nHighlights&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Mount Cook National Park; the highest mountain in New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Milford Sound; world-famous majestic fjord&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Queenstown: The Adventure Capital of the World&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Traditional Maori Cultural Show&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise along Milford Sound&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Franz Josef Glacier&amp;rsquo;s breathtaking views and glacial sheets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Experience the Tranz Alpine train Journey to Christchurch&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Auckland\",\"DestinationPlacesSysId\":1751,\"SourcePlaces\":\"Christchurch\",\"SourcePlaceSysId\":6244,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"The Grand Tour of New Zealand\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15623\",\"SupplierName\":\"NZ Sidekick\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Breakfast & Lunch\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":6244,\"Title\":\"Christchurch\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542763,\"Name\":\"Distinction Hotel Christchurch\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6244,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542763\\/43249_4ae4d1f4b254315f79f22dbf330d55a51679033148.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AP\"},{\"RefHotelId\":542791,\"Name\":\"MacKenzie Country Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6244,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":8306,\"Title\":\"Dunedin\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":543025,\"Name\":\"Scenic Hotel Southern Cross\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":8306,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_543025\\/43249_07b240a651cbe9b5fa5f8f33eecdf4b11679034291.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":22373,\"Title\":\"Queenstown\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542969,\"Name\":\"Millennium Hotel Queenstown\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22373,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542969\\/43249_90da17c475b5da5f87031470de5ef3001679033222.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":85073,\"Title\":\"FRANZ JOSEF GLACIER\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542760,\"Name\":\"Scenic Hotel Franz Josef Glacier\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":85073,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542760\\/43249_cbae4d82e62b6f301e9e37063ca033011679033278.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":35426,\"Title\":\"Wellington\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542808,\"Name\":\"James Cook Hotel Grand Chancellor\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35426,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542808\\/43249_842715c22de6c253211b4043108d3ac01679034377.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":23350,\"Title\":\"Rotorua\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542812,\"Name\":\"Pullman Rotorua\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":23350,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542812\\/43249_d7c558cb52572468488985adf8a50b431679034881.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":1751,\"Title\":\"Auckland\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542813,\"Name\":\"Sudima Auckland City\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":1751,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542813\\/43249_bba48f41039ab461b582f0afd8cb25e61679034969.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41369,\"Title\":\"Christchurch\",\"Description\":\"&lt;p&gt;Christchurch&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678871443.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41370,\"Title\":\"Lake Tekapo\",\"Description\":\"&lt;p&gt;Lake Tekapo is a small township located at the southern end of the lake of the same name in the inland South Island of New Zealand. It had 558 residents according to the 2018 census, being one of five settlements in the sparsely populated Mackenzie Basin.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873200.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41372,\"Title\":\"Dunedin City Tour\",\"Description\":\"&lt;p&gt;Dunedin&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678873670.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41373,\"Title\":\"Larnach Castle\",\"Description\":\"&lt;p&gt;Larnach Castle is a mock castle on the ridge of the Otago Peninsula within the limits of the city of Dunedin, New Zealand, close to the small settlement of Pukehiki. It is one of a few houses of this scale in New Zealand.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8306,\"CityName\":\"Dunedin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/8306\\/sightseeing\\/43249_1678874980.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":43382,\"Title\":\"Lake Te Anau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41366,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;Lake Wakatipu is an inland lake in the South Island of New Zealand. It is in the southwest corner of the Otago region, near its boundary with Southland.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678866683.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41375,\"Title\":\"Lake Wakatipu\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Roboto, sans-serif text-align: start&quot;&gt;&nbsp;Lake Wakatipu&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678875570.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41367,\"Title\":\"Franz Josef Glacier\",\"Description\":\"&lt;p&gt;The Franz Josef Glacier is a 12-kilometre-long temperate maritime glacier in Westland Tai Poutini National Park on the West Coast of New Zealand&#039;s South Island. Together with the Fox Glacier 20 kilometres to the south, and a third glacier, it descends from the Southern Alps to less than 300 metres above sea level.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":85073,\"CityName\":\"FRANZ JOSEF GLACIER\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/85073\\/sightseeing\\/43249_1678866968.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41368,\"Title\":\"Tranz Alpine Train\",\"Description\":\"&lt;p&gt;Tranz Alpine Train&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678867435.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41377,\"Title\":\"Wellington\",\"Description\":\"&lt;p&gt;Wellington&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678876573.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41379,\"Title\":\"New Zealand&rsquo;s National Museum\",\"Description\":\"&lt;p&gt;New Zealand&rsquo;s National Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678877108.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41386,\"Title\":\"Huka Falls\",\"Description\":\"&lt;p&gt;Huka Falls&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678877389.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41387,\"Title\":\"Skyline Gandola\",\"Description\":\"&lt;p&gt;&nbsp;Skyline Gandola&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678878036.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"359501\",\"Title\":\"Arrival in Christchurch\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Christchurch airport and check into your hotel. Spend the day relaxing and orienting yourself with the &amp;ldquo;Hanging City&amp;rdquo; at your leisure.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41369,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359502\",\"Title\":\"Christchurch City Tour \\/ Lake Tekapo \\/ Twizel\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Embark on a city tour of Christchurch, and then head towards the famous &lt;strong&gt;Lake Tekapo.&lt;\\/strong&gt; Visit The Church of the Good Shepherd and view the Sheep Dog Statue. Marvel at the spectacular mountain ranges including Mt Cook, New Zealand&amp;#39;s highest peak. The opportunity is available (time and weather permitting) to enjoy a scenic flight (optional) over the Southern Alps before traveling to Twizel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":542791,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41370,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359503\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359504\",\"Title\":\"Lake Benmore \\/ Dunedin City Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Travel to Lake Benmore this day and take in the pristine, serene scenery. Follow the Waiktaki River to Oamaru, a region famous for its limestone. Finally arrive at Dunedin, where you commence a city tour, viewing all the highlights of this southern city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8306,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":543025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41372,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359505\",\"Title\":\"Larnach Castle \\/ Travel to Dunedin\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Follow the Otago Peninsula and visit the &lt;strong&gt;Larnach Castle&lt;\\/strong&gt;, where you would have the opportunity to immerse yourself in Kiwi history and enjoy manicured gardens on a guided tour, followed by a delicious Devonshire Tea.&amp;nbsp;&lt;br \\/&gt;\\r\\nPost Tea, depart for Te Anau, and check into your accommodation for the night.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8306,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":543025,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41373,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359506\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8306,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359507\",\"Title\":\"Milford Sound \\/ Travel to Queenstown\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Drive along &lt;strong&gt;Lake Wakatipu&lt;\\/strong&gt; to Lumsden, and onward to Lake Te Anau. This entire region is so scenic, immersing travelers in an amalgamation of mountains and clear blue waters of pristine lakes. As you approach Eglinton Valley, traverse through the Homer Tunnel to reach Milford Sound. Board a cruise to explore this world-famous, mighty fjord, with Mitre Peak towering in front of you along grand spectacles of waterfalls, rainforests, and wildlife. Travel to Queenstown and check into your accommodation for the night.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":41366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359508\",\"Title\":\"Free Day in Queenstown\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Welcome to the adventure capital of the World. With stunning views of Lake Wakatipu and the Southern Alps, you can enjoy the city at your leisure.&amp;nbsp;&lt;br \\/&gt;\\r\\nOptional Activities - We highly recommend taking up some adventure activities while in the adventure capital of the world. Try Skydiving, &lt;strong&gt;Bungy Jumping&lt;\\/strong&gt;, Luging, Riding the Queenstown Gondola or experiencing the Shotover Jet.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41375,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359509\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359510\",\"Title\":\"Arrowtown \\/ Franz Josef Glacier\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Traverse through beautiful Arrowtown, a quaint town that was popular for gold mining. Explore the town at your leisure before heading across the Haast Pass to the other side of the Southern Alps, where the landscape changes dramatically. The drive culminates in the beautiful area of Franz Josef. After checking in to your accommodation, our guide will escort you on a glacier tour where you will see the Franz Josef Glacier.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":85073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41367,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359511\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":85073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359512\",\"Title\":\" Tranz Alpine Train to Christchurch\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;Post breakfast, journey north to arrive at Hokitika, an ancient gold mining town known for its Greenstone. Here on, head to the Greymouth STation to board the Tranz Alpine Scenic Train. You&amp;#39;ll travel across the South Island from the west to the east coast through Arthur&amp;#39;s Pass National Park. From the comfort of your carriage see lush beech forest, deep river valleys and the spectacular peaks of the Southern Alps. Descend to the windswept Canterbury Plains before arriving in the city of Christchurch.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542763,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41368,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359513\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359514\",\"Title\":\" Ferry to Wellington\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Travel north to the village of Picton, which is well known for its food and wine. Board the interisland ferry from Picton, crossing the Cook Strait to enter Wellington. Check into your accommodation for the night.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41377,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359515\",\"Title\":\"Wellington City Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;Post breakfast, explore the Gallipoli, &lt;strong&gt;New Zealand&amp;rsquo;s national museum&lt;\\/strong&gt;, where you would see the amalgamation of history and cutting-edge technology. Later, embark on a city tour to view all the highlights of New Zealand&amp;rsquo;s capital city. Enjoy the evening at your leisure. &amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41379,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359516\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359517\",\"Title\":\"Huka Falls \\/ Rotorua\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":11,\"Program\":\"&lt;p&gt;Travel north towards Taupo and visit the staggering &lt;strong&gt;Huka Falls&lt;\\/strong&gt;, which represents an amazing photographing opportunity. Continue to the geothermal wonderland of Rotorua and check into your accommodation for the night.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542812,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41386,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359518\",\"Title\":\"Rotorua Activities\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":12,\"Program\":\"&lt;p&gt;Start this adventurous day by riding the&lt;strong&gt; Skyline Gandola&lt;\\/strong&gt; and experiencing the luge. The next stop is Agrodome for an action-packed hour of farming entertainment and education that is unlike anything you&amp;rsquo;ve seen before. Enjoy some free time this afternoon before visiting Te Puia to see the boiling mud pools and awesome geysers that Rotorua is famous for. This evening experience an entertaining M&amp;atilde;ori H&amp;atilde;ngi and Concert.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542812,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41387,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359519\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":13,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359520\",\"Title\":\"Hobbiton Movie Set \\/ Auckland City Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":13,\"Program\":\"&lt;p&gt;Post breakfast, journey to Middle Earth and the Hobbiton Movie Set, made famous by the Lord of the Rings and the Hobbit. Continue further North to arrive at Auckland, the &amp;ldquo;City of Sails&amp;rdquo;. Enjoy an orientation tour and a farewell dinner.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542813,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41346,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359521\",\"Title\":\"Departure From Auckland\",\"MealPlanInclude\":\"Breakfast\",\"Day\":14,\"Program\":\"&lt;p&gt;Post breakfast, you will be escorted to Auckland airport to catch your flight back home.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41347,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49896\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":5073,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49896\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":5073,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073},{\"From\":\"2023-04-10\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":5073,\"priceDoubleOcc\":5073,\"priceSingleOcc\":\"5073.00\",\"priceExtraBed\":5073,\"priceWithoutBed\":5073,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5073,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":5073,\"CWOB\":5073,\"CEB\":5073,\"COSTDO\":5073,\"COSTSO\":10146,\"ACEB\":5073}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;International round-trip flight to New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities, tips, etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in the inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Transfer from Auckland accommodation to Auckland Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;13 nights&amp;rsquo; accommodation in 4-Star Hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfer from Franz Josef to Greymouth Station&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Te Papa, New Zealand National Museum&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TranzAlpine Scenic Train tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All City Tours&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pre Welcome Drink and Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance to Agrodome and Maori Show&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rotorua Skyline Gondola and Luge ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lake District Museum entrance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise on inter islander ferry to Wellington&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Milford Sound Cruise and Coach Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Queenstown to Franz Josef Glacier Shuttle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Lunch, 8 Dinners, 3 Special Dinners&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"359501\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[359501],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359502\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[359502],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359503\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[359503],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359504\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[359504],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359505\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[359505],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359506\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[359506],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359507\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[359507],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359508\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[359508],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359509\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[359509],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359510\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[359510],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359511\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[359511],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359512\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[359512],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359513\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359513],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359514\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359514],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359515\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[359515],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359516\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[359516],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359517\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[359517],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359518\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[359518],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359519\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[359519],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359520\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[359520],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359521\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[359521],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Christchurch,Dunedin,Queenstown,FRANZ JOSEF GLACIER,Wellington,Rotorua,Auckland','Christchurch,Oceania,New Zealand,Dunedin,Queenstown,FRANZ JOSEF GLACIER,Wellington,Rotorua,Auckland',NULL,'6244,8306,22373,85073,35426,23350,1751',417253,417253,13,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'New Zealand','157','2023-09-07 13:16:01','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'the-grand-tour-of-new-zealand',NULL,NULL,NULL,0),(344,49901,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":49901,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/self-drive-holiday-in-new-zeal_1677492102\",\"BookingValidUntill\":\"2023-12-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;New Zealand is among the southernmost countries of the world and probably tops the charts among the most beautiful countries as well. With a postcard-like landscape immersed with mountains, lakes, fjords, coastal drives, blooming flowers and glaciers, New Zealand attracts millions of tourists year-round.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nThis tour covers most of the popular Kiwi destinations and ensures that travellers get maximum utility from their journey to New Zealand. Explore Auckland, Rotorua, Queenstown, Milford Sound, Wellington, Christchurch, and Mount Cook, to completely immerse yourself in this magical country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nMilford Sound and Mount Cook; towering fjords &amp;amp; mountains respectively are so impressive and exquisite in nature that they are often part of travellers&amp;rsquo; bucket lists for the beauty they entail. Over 10 nights, you visit other popular attractions such as the Hobbiton Set, Lake Taupo, Mt Cook, Mitre Peak, and a cruise along Milford Sound, to discover the vast rainforests, and waterfalls.&amp;nbsp;&lt;br \\/&gt;\\r\\nA country so marvellous, New Zealand guarantees prime satisfaction with ecstatic expectations. &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nHighlights&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Mount Cook National Park; the highest mountain in New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Milford Sound; world-famous majestic fjord&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Queenstown: The Adventure Capital of the World&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Traditional Maori Cultural Show&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise along Milford Sound&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Queenstown\",\"DestinationPlacesSysId\":22373,\"SourcePlaces\":\"Auckland\",\"SourcePlaceSysId\":1751,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Self Drive Holiday in New Zealand\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15623\",\"SupplierName\":\"NZ Sidekick\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Only Breakfast\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-12-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1751,\"Title\":\"Auckland\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542737,\"Name\":\"Hotel Fable Auckland\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":1751,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542737\\/43249_10c10c158f09b697e12bdd8f402f39aa1678968655.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":23350,\"Title\":\"Rotorua\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542968,\"Name\":\"Millennium Hotel Rotorua\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":23350,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542968\\/43249_5b7f08df15ee33a1f0190e6cc999c84d1678969258.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":35426,\"Title\":\"Wellington\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542740,\"Name\":\"Bolton Hotel Wellington\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":35426,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542740\\/43249_23a06b5cdc9f3fcfc54602cb798a8a6e1678969455.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":21359,\"Title\":\"Picton\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542743,\"Name\":\"Chateau Marlborough\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":21359,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542743\\/43249_c9f510558cc42982fc0e01ca0c52a8301678969516.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":13345,\"Title\":\"Kaikoura\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542745,\"Name\":\"Bendamere House B&B\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13345,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542745\\/43249_a5753abd95c7e8c9e7f61818ace4e41a1678969568.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":6244,\"Title\":\"Christchurch\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542746,\"Name\":\"The George Hotel Christchurch\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6244,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542746\\/43249_9c03fce3651ad6d16989dc6c54e7e8351678969625.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}},{\"CityId\":22373,\"Title\":\"Queenstown\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542747,\"Name\":\"Hermitage Hotel\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22373,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542747\\/43249_ef153c7dde8e844873189947c00d8f221678969722.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"},{\"RefHotelId\":542969,\"Name\":\"Millennium Hotel Queenstown\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22373,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542969\\/43249_90da17c475b5da5f87031470de5ef3001679033222.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":41347,\"Title\":\"Auckland\",\"Description\":\"&lt;p&gt;Auckland, based around 2 large harbours, is a major city in the north of New Zealand&rsquo;s North Island. In the centre, the iconic Sky Tower has views of Viaduct Harbour, which is full of superyachts and lined with bars and cafes. Auckland Domain, the city&rsquo;s oldest park, is based around an extinct volcano and is home to the formal Wintergardens.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1751,\"CityName\":\"Auckland\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/1751\\/sightseeing\\/43249_1678859551.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41346,\"Title\":\"Hobbit Movie Set\",\"Description\":\"&lt;p&gt;Hobbit Movie Set&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678858894.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41348,\"Title\":\"Maori Village\",\"Description\":\"&lt;p&gt;Maori Village&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":23350,\"CityName\":\"Rotorua\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/23350\\/sightseeing\\/43249_1678860012.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41349,\"Title\":\"Lake Taupo\",\"Description\":\"&lt;p&gt;Lake Taup? is a large crater lake in New Zealand&#039;s North Island, located in the caldera of the Taup? Volcano. The lake is the namesake of the town of Taup?, which sits on a bay in the lake&#039;s northeastern shore.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35426,\"CityName\":\"Wellington\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/35426\\/sightseeing\\/43249_1678860823.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41350,\"Title\":\"Picton\",\"Description\":\"&lt;p&gt;Picton is a town on the north coast of the South Island, in New Zealand. It&rsquo;s known as a gateway to the islands and inlets of the Marlborough Sounds. The Edwin Fox Maritime Museum is a 19th-century former convict and cargo ship.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21359,\"CityName\":\"Picton\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/21359\\/sightseeing\\/43249_1678861196.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41351,\"Title\":\"Kaikoura Range\",\"Description\":\"&lt;p&gt;The Kaik?ura Ranges are two parallel ranges of mountains located in the northeast of the South Island of New Zealand. The two ranges are visible from a great distance, including from the southern coast of the North Island.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13345,\"CityName\":\"Kaikoura\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/13345\\/sightseeing\\/43249_1678861455.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41352,\"Title\":\"Whale Watching\",\"Description\":\"Whale Watching&nbsp;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678862657.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41353,\"Title\":\"Aoraki \\/ Mount Cook National Park\",\"Description\":\"&lt;p&gt;Aoraki \\/ Mount Cook National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6244,\"CityName\":\"Christchurch\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6244\\/sightseeing\\/43249_1678863020.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41354,\"Title\":\"Lake Pukaki\",\"Description\":\"&lt;p&gt;Lake Pukaki is the largest of three roughly parallel alpine lakes running north&ndash;south along the northern edge of the Mackenzie Basin on New Zealand&#039;s South Island. The others are Lakes Tekapo and Ohau.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1679297039.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41358,\"Title\":\"Fiordland National Park\",\"Description\":\"&lt;p&gt;Fiordland National Park is in the southwest of New Zealand&rsquo;s South Island. It&rsquo;s known for the glacier-carved fiords of Doubtful and Milford sounds. A beech forest trail on the sandy Milford shore offers views of towering Mitre Peak.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678863630.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null},{\"RefSSId\":41359,\"Title\":\"Queenstown\",\"Description\":\"&lt;p&gt;Queenstown, New Zealand, sits on the shores of the South Island&rsquo;s Lake Wakatipu, set against the dramatic Southern Alps. Renowned for adventure sports, it&rsquo;s also a base for exploring the region&rsquo;s vineyards and historic mining towns.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22373,\"CityName\":\"Queenstown\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22373\\/sightseeing\\/43249_1678864115.jpg\",\"SupplierSysId\":15623,\"SupplierName\":\"NZ Sidekick\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"359526\",\"Title\":\"Arrival in Auckland\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at the &lt;strong&gt;Auckland &lt;\\/strong&gt;airport and check into your hotel. Spend the day relaxing and orienting yourself with the &amp;ldquo;City of Sails&amp;rdquo; at your leisure.&lt;br \\/&gt;\\r\\nOptional Activity - We recommend enjoying the Harbour Cruise Dinner Experience for stunning views of the city downtown while enjoying delicious food on the cruise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542737,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41347,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359527\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1751,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359528\",\"Title\":\"Hobbiton Set \\/ Rotorua\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Post breakfast, collect your car to begin your self-drive holiday, and journey to Middle Earth and the Hobbiton Movie Set, made famous by the&lt;strong&gt; Lord of the Rings and the Hobbit&lt;\\/strong&gt;. At the end of the tour, travel south to Rotorua and check into your accommodation.&lt;br \\/&gt;\\r\\nDriving info - 220kms \\/ 2.6 hrs&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542968,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41346,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359529\",\"Title\":\" Explore Rotorua\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Home to several prominent Maori tribes, a visit to one of the Maori Villages should be high on your agenda, as should an excursion to the Polynesian Spa for an invigorating soak in its natural mineral hot springs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nSpike your adrenaline at Velocity Valley Adventure Park on stomach-dropping attractions such as static &lt;strong&gt;skydiving&lt;\\/strong&gt;, or a giant swing reaching 130 km per hour. Alternatively, head up the Rotorua Gondola for soaring lake views, and ride the luge at night for an extra thrill.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nOptional Activity - &amp;nbsp;We recommend enjoying the Polynesian Spa where there are a number of differently heated water pools overlooking the Rotorua Landscape. The pool temperatures range from 36 degrees celsius to 42 degrees celsius which are therapeutic for your body.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542968,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41348,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359530\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23350,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359531\",\"Title\":\"Travel to Wellington \\/ Zealandia by Night Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Drive along New Zealand&amp;rsquo;s largest lake, &lt;strong&gt;Lake Taupo&lt;\\/strong&gt; before reaching the capital city of Wellington. Take a night tour of &lt;strong&gt;Zealandia Wildlife Sanctuary &lt;\\/strong&gt;to witness Kiwi foraging on the forest floor, tuatara hunting for food, glowworms shining, tiny Maud Island frogs in their enclosure, pateke (brown teal) ducks feeding at night and kaka (parrots) coming in to roost.&lt;br \\/&gt;\\r\\nDriving info - 441kms \\/ 5.3 hours&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542740,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41349,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359532\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35426,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359533\",\"Title\":\"Ferry to Picton\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Drop your rental car at a center and board the inter-islander ferry to travel to &lt;strong&gt;Picton &lt;\\/strong&gt;on the South Island. Collect your rental car from here and drive for a short distance to arrive at Blenheim, where you check into your accommodation for the night.&lt;br \\/&gt;\\r\\nOptional Activity - We suggest you do a half-day wine tour to try out award-winning wines from one of the best wineries in the region.&lt;br \\/&gt;\\r\\nDriving info - 25kms \\/ 0.3 hours&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21359,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542743,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41350,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359534\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21359,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359535\",\"Title\":\"Travel to Kaikoura\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Cross the &amp;#39;dry hills&amp;#39; of Marlborough and head towards one of the most spectacular coastlines of the South Island, the Kaikoura Coast. The road hugs the shore for around 50 kilometers and offers many chances to view native wildlife. To the east is the South Pacific Ocean and to the west the towering &lt;strong&gt;Kaikoura Ranges.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Driving info - 110kms \\/ 1.3hours&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359536\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13345,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359537\",\"Title\":\"Travel to Christchurch \\/ Whale Watching\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;Whale Watch&lt;\\/strong&gt; Kaikoura offers a once-in-a-lifetime, up-close encounter with the giant Sperm Whale. You are also likely to encounter New Zealand fur seals, dusky dolphins and albatross on this whale-watching experience. Then head towards Christchurch and check into your accommodation for the night.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Driving info - 178kms \\/ 2.5 hours&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542746,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41352,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359538\",\"Title\":\"Mt Cook National Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Travel west, across the fertile Canterbury Plains to Lake Tekapo and the Church of the Good Shepherd. Both of which provide avenues for filling up your picture gallery.&amp;nbsp; This small group, fully-guided day trip combines all of the key highlights in the area with the famous Lake Tekapo, &lt;strong&gt;Aoraki\\/Mount Cook National Park&lt;\\/strong&gt; and &lt;strong&gt;Tasman Glacier&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Embark on a Glacier Tour, where you have the opportunity of seeing tall glaciers as old as 500 years up close in a boat. This kind of tour is one of only three in the world.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Driving info - 350kms \\/ 4.1 hours&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542746,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41353,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359539\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6244,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359540\",\"Title\":\"Arrival in Queenstown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Take in the last views of Mount Cook as you travel to Queenstown. Witness &lt;strong&gt;Lake Pukaki&lt;\\/strong&gt; and Cromwell; regions that provide multiple photographing opportunities. Enjoy Queenstown at your leisure.&lt;br \\/&gt;\\r\\nOptional Activity - We recommend doing a Appellation Boutique Wine Tour. Experience a tasting journey through three of Central Otago&amp;rsquo;s incredibly scenic and varying wine sub-regions; Gibbston, Bannockburn and Cromwell. Visit three boutique vineyards, tasting their unique cool climate wines and discover why the Central Otago region has become world-renowned in its own right.&lt;br \\/&gt;\\r\\nDriving info - 257kms \\/ 3 hours&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542747,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41354,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359541\",\"Title\":\"Milford Sound via Flight\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Post breakfast, fly above the rugged backcountry of Central Otago. Witness what the power of nature has created over the years, as you journey over Mt Aspiring National Park and the world heritage-listed &lt;strong&gt;Fiordland National Park&lt;\\/strong&gt;. Arrive at Milford Sound, and board a cruise to explore this world-famous, mighty fjord, with Mitre Peak towering in front of you along grand spectacles of waterfalls, rainforests, and wildlife. Fly back to Queenstown for the night.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542747,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":542969,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41358,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"359542\",\"Title\":\"Departure From Queenstown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;Post breakfast, head towards the Queenstown airport to catch your flight back home.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22373,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41359,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49901\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":3335,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"49901\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":3335,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335},{\"From\":\"2023-04-27\",\"To\":\"2023-12-31\",\"Currency\":2,\"priceTripleOcc\":3335,\"priceDoubleOcc\":3335,\"priceSingleOcc\":\"3335.00\",\"priceExtraBed\":3335,\"priceWithoutBed\":3335,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":3335,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":3335,\"CWOB\":3335,\"CEB\":3335,\"COSTDO\":3335,\"COSTSO\":6670,\"ACEB\":3335}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;International round-trip flight to New Zealand&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gratuities, tips etc&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in the inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Transfer from Auckland Airport to Auckland accommodation&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10 nights&amp;rsquo; accommodation in 4-Star Hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rental car as selected for the entire trip&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rental Car Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rental Car GPS, Unlimited kms, airport and ferry fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel guide and in country support&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return flight to and from Milford Sound&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Te Ra Daytime experience at Te Puia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hobbiton Movie Set Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Zealandia by Night Wildlife Sanctuary Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wellington to Picton ferry&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Whale Watching Tour at Kaikoura&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"359526\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[359526],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359527\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[359527],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359528\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[359528],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359529\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[359529],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359530\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[359530],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359531\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[359531],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359532\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[359532],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359533\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[359533],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359534\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[359534],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359535\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[359535],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359536\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[359536],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359537\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[359537],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359538\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[359538],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359539\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359539],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359540\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[359540],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359541\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[359541],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"359542\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[359542],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Auckland,Rotorua,Wellington,Picton,Kaikoura,Christchurch,Queenstown','Auckland,Oceania,New Zealand,Rotorua,Wellington,Picton,Kaikoura,Christchurch,Queenstown',NULL,'1751,23350,35426,21359,13345,6244,22373',274057,274057,10,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-12-31 00:00:00','2023-12-31 00:00:00',3,'New Zealand','157','2023-09-07 13:15:52','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'self-drive-holiday-in-new-zealand',NULL,NULL,NULL,0),(345,50157,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":50157,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/arctic-canada--northern-lights--polar-bear-discovery_1678086722\",\"BookingValidUntill\":\"2024-02-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Canada boasts multiple settings that represent true Arctic experiences, with winter lands, frozen lakes, northern lights, boreal forests and splendid wildlife.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This tour is focused on giving you a taste of these adventures, based around the city of Churchill in Manitoba. Churchill sits just beneath the auroral oval, making it one of the greatest spots on the planet to see the awe-inspiring northern lights.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This journey allows you to view this magnificent night-sky spectacle from the tundra. Immerse yourself in stunning northern landscapes as we drive to a new and remote place each night for great aurora viewing!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;By day, you&amp;#39;ll learn about the history and culture of this remote northern village through snowshoeing, an adventurous dog sled trip through the boreal forest, a visit to the Itsanitaq Museum, and more!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This excursion includes an evening at Dan&amp;#39;s Diner, an exclusive dining experience on the Churchill River&amp;#39;s frozen banks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Highlights&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Multiple opportunities to view the stunning Northern Lights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel to the Canadian Tundra to find Arctic wildlife&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The culinary experience at Dan&amp;rsquo;s Diner, situated on the frozen banks of Churchill river&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Enjoy dog sledding on frozen lakes and rivers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Participate in Snowshoeing while looking for Arctic wildlife&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel by the official Tundra Buggy, a vehicle with large windows made for wildlife exploration&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the Itsanitaq Museum to learn more about the Inuit and native tribes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Churchill\",\"DestinationPlacesSysId\":6284,\"SourcePlaces\":\"Winnipeg\",\"SourcePlaceSysId\":29865,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Arctic Canada | Northern Lights & Polar Bear Discovery\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15636\",\"SupplierName\":\"Frontiers North\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"All Meals\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2024-02-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":29865,\"Title\":\"Winnipeg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":544956,\"Name\":\"The Tundra Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":29865,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544956\\/43249_28dd4e46aa9ecf52d60669ca4547ad881679988943.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43049,\"Title\":\"Arrival in Winnipeg\",\"Description\":\"&lt;p&gt;Arrival in Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40881,\"Title\":\"Winnipeg City\",\"Description\":\"&lt;p&gt;Winnipeg City&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/29865\\/sightseeing\\/43249_1678087872.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43050,\"Title\":\"Churchill City Tour\",\"Description\":\"&lt;p&gt;Churchill City Tour&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43051,\"Title\":\"Itsanitaq Museum\",\"Description\":\"&lt;p&gt;Itsanitaq Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40882,\"Title\":\"Northern Lights Hunting\",\"Description\":\"&lt;p&gt;Northern Lights&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088279.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43052,\"Title\":\"Polar Bear Holding Facility\",\"Description\":\"&lt;p&gt;Polar Bear Holding Facility&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43053,\"Title\":\"Snowshoeing\",\"Description\":\"&lt;p&gt;Snowshoeing&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43062,\"Title\":\"Polar Bears International House\",\"Description\":\"&lt;p&gt;Polar Bears International House&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43058,\"Title\":\"Tundra Buggy Ride\",\"Description\":\"&lt;p&gt;Tundra Buggy Ride&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43059,\"Title\":\"Dan&rsquo;s diner, a Culinary Experience\",\"Description\":\"&lt;p&gt;Dan&rsquo;s diner, a Culinary Experience&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40883,\"Title\":\"Polar Bears\",\"Description\":\"&lt;p&gt;Canada Polar Bear&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088582.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43060,\"Title\":\"Thanadelthur Lounge\",\"Description\":\"&lt;p&gt;Thanadelthur Lounge\\r\\n&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40884,\"Title\":\"Dog Sledding\",\"Description\":\"&lt;p&gt;Dog Sledding&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088823.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40887,\"Title\":\"Parks Canada Visitor Center\",\"Description\":\"&lt;p&gt;Parks Canada visitor Center&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1679056429.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43061,\"Title\":\"Departure from Winnipeg\",\"Description\":\"&lt;p&gt;Departure from Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40888,\"Title\":\"Winnipeg\",\"Description\":\"&lt;p&gt;Departure from Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/29865\\/sightseeing\\/43249_1679056542.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null}]}},{\"CityId\":6284,\"Title\":\"Churchill\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":544975,\"Name\":\"The Polar Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6284,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544975\\/43249_4e8f713addfa08f9506febea08522a091679989196.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AI\"},{\"RefHotelId\":544972,\"Name\":\"The Tundra Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":6284,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_544972\\/43249_434f9087d859aec6c35264e3bbe0a8601679988977.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":43049,\"Title\":\"Arrival in Winnipeg\",\"Description\":\"&lt;p&gt;Arrival in Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40881,\"Title\":\"Winnipeg City\",\"Description\":\"&lt;p&gt;Winnipeg City&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/29865\\/sightseeing\\/43249_1678087872.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43050,\"Title\":\"Churchill City Tour\",\"Description\":\"&lt;p&gt;Churchill City Tour&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43051,\"Title\":\"Itsanitaq Museum\",\"Description\":\"&lt;p&gt;Itsanitaq Museum&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40882,\"Title\":\"Northern Lights Hunting\",\"Description\":\"&lt;p&gt;Northern Lights&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088279.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43052,\"Title\":\"Polar Bear Holding Facility\",\"Description\":\"&lt;p&gt;Polar Bear Holding Facility&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43053,\"Title\":\"Snowshoeing\",\"Description\":\"&lt;p&gt;Snowshoeing&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43062,\"Title\":\"Polar Bears International House\",\"Description\":\"&lt;p&gt;Polar Bears International House&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43058,\"Title\":\"Tundra Buggy Ride\",\"Description\":\"&lt;p&gt;Tundra Buggy Ride&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43059,\"Title\":\"Dan&rsquo;s diner, a Culinary Experience\",\"Description\":\"&lt;p&gt;Dan&rsquo;s diner, a Culinary Experience&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40883,\"Title\":\"Polar Bears\",\"Description\":\"&lt;p&gt;Canada Polar Bear&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088582.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43060,\"Title\":\"Thanadelthur Lounge\",\"Description\":\"&lt;p&gt;Thanadelthur Lounge\\r\\n&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40884,\"Title\":\"Dog Sledding\",\"Description\":\"&lt;p&gt;Dog Sledding&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1678088823.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40887,\"Title\":\"Parks Canada Visitor Center\",\"Description\":\"&lt;p&gt;Parks Canada visitor Center&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/6284\\/sightseeing\\/43249_1679056429.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":43061,\"Title\":\"Departure from Winnipeg\",\"Description\":\"&lt;p&gt;Departure from Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":6284,\"CityName\":\"Churchill\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null},{\"RefSSId\":40888,\"Title\":\"Winnipeg\",\"Description\":\"&lt;p&gt;Departure from Winnipeg&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":29865,\"CityName\":\"Winnipeg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/29865\\/sightseeing\\/43249_1679056542.jpg\",\"SupplierSysId\":15636,\"SupplierName\":\"Frontiers North\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"361881\",\"Title\":\"Arrival in Winnipeg\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive in the city of Winnipeg and check into your accommodation. Explore the city at your leisure&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals included: None&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29865,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43049,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40881,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361882\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29865,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361883\",\"Title\":\"Churchill City Tour \\/ Itsanitaq Museum \\/ Northern Lights\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Board a flight from Winnipeg to remote and pristine Churchill. Embark on a guided bus tour to view this Tundra region and explore the Polar Bear Holding Facility and Inukshuk. Later, visit the Itsanitaq Museum which contains Canada&amp;rsquo;s finest Inuit carvings, kayaks, and artifacts. Then get ready for an adventure as you make your way to the boreal forest to hunt for the stunning northern lights in the dark skies of Manitoba.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals included: B, L, D&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6284,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43050,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43051,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40882,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43052,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361884\",\"Title\":\"&nbsp;Snowshoeing and Culinary Experience\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Visit the Polar Bears International house to learn about the majestic animals and their habitat. Then continue to Chiurchill&amp;rsquo;s boreal forest where you get to enjoy snowshoeing in the beautiful Arctic setting. Later, board the Tundra Buggy which takes you to Dan&amp;rsquo;s Diner, a culinary experience delivering the finest Arctic cuisine in such a remote location. Post dinner, head out to the open Tundra to hunt for northern lights again.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals included: B, L, D&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6284,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544972,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":544975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43053,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43059,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40883,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361885\",\"Title\":\"Dog Sledding &amp; Thanadelthur Lounge\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast, you have the opportunity to enjoy dog sliding on frozen lakes and snow as local dogs and huskies give you the thrill of the activity. Then travel by Tundra Buggy across a frozen river to the Thanadelthur Lounge, a location specially designed for northern lights viewing, containing panoramic windows and a rooftop observatory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals included: B, L, D&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6284,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544972,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":544975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43060,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43058,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40882,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40884,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361886\",\"Title\":\"Parks Canada Visitor Center\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;On our last day in Churchill, head to the Parks Canada Visitor Center to view exclusive wildlife and fur trade history. Then head to the airport to board a flight back to Winnipeg and check into your accommodation for the night.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals included: B, L, D&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6284,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":544972,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":544975,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"361887\",\"Title\":\"Departure from Winnipeg\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;Say goodbye to Winnipeg as your Canadian Arctic Northern Lights Adventure culminates. Head to the airport to board your flight back home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: None&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6284,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43061,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":40888,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50157\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":6299,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50157\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":6299,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-23\",\"To\":\"2024-02-23\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299},{\"From\":\"2024-02-28\",\"To\":\"2024-02-28\",\"Currency\":6,\"priceTripleOcc\":6299,\"priceDoubleOcc\":6299,\"priceSingleOcc\":\"6299.00\",\"priceExtraBed\":6299,\"priceWithoutBed\":6299,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6299,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":6299,\"CWOB\":6299,\"CEB\":6299,\"COSTDO\":6299,\"COSTSO\":12598,\"ACEB\":6299}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Any personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International flights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals on days 1 and 6&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tips, gratuities, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything else not mentioned in Inclusions&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5 nights&amp;rsquo; accommodation in deluxe hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dan&amp;rsquo;s Diner Culinary Experience&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return flight from Winnipeg to Churchill&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast, Lunch, and dinner from days 2 to 5&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel by the official Tundra Buggy&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Activities of Dog Sledding and snowshoeing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry to Itsanitaq Museum&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided walk in the boreal forest to hunt for Northern Lights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Access to Thanadelthur Lounge for Northern Lights Viewing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry to Parks Canada Visitor Center&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Churchill City Guided Bus Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n&lt;quillbot-extension-portal&gt;&lt;\\/quillbot-extension-portal&gt;\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"361881\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[361881],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361882\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[361882],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361883\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[361883],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361884\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[361884],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361885\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[361885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361886\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[361886],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"361887\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[361887],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"29865\":{\"CityName\":\"Winnipeg\",\"FlightInv\":{\"1\":{\"688\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"689\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20240223\":{\"FromDate\":\"2024-02-23\",\"FromDateDMY\":\"23\\/02\\/2024\",\"AdultCost\":6299,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240228\":{\"FromDate\":\"2024-02-28\",\"FromDateDMY\":\"28\\/02\\/2024\",\"AdultCost\":6299,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Winnipeg,Churchill','Winnipeg,North America,Canada,Churchill',NULL,'29865,6284',382006,382006,5,NULL,NULL,NULL,2,'',0,'2023-08-25 00:00:00','2024-02-28 00:00:00','2024-02-28 00:00:00',3,'Canada','39','2023-08-25 16:17:48','2023-08-25 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'arctic-canada-|-northern-lights-polar-bear-discovery',NULL,NULL,NULL,0),(346,51644,1,5293,0,0,0,'Adventure',NULL,1,1,0,'{\"package\":{\"TPId\":51644,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/package\\/images\\/northern-lights-glacier-lagoon-icel_1681209697\",\"BookingValidUntill\":\"2024-04-04\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;This journey takes you to some of the most spectacular places in Iceland. In addition, we will take you on a hunt for the fascinating Northern Lights. The highlights include the famous Geysir, the unique glacial lagoon J&amp;ouml;kuls&amp;aacute;rl&amp;oacute;n, and much more. The tour is scheduled to maximize your chance of seeing the Northern Lights. Please note that we cannot guarantee the Northern Lights, as they are a natural phenomenon that can be unpredictable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Pricing, Please Refer Terms and Conditions Tab &amp;gt;&amp;gt;&amp;gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":43249,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":43249,\"DestinationPlaces\":\"Reykjavik\",\"DestinationPlacesSysId\":22839,\"SourcePlaces\":\"Reykjavik\",\"SourcePlaceSysId\":22839,\"AgencyName\":\"Holiday Moods Adventures\",\"Name\":\"Northern Lights and Glacier Lagoon Iceland\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"15633\",\"SupplierName\":\"Snaeland\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Only Breakfast\",\"PackageType\":\"Adventure\",\"Validity\":{\"From\":\"2023-08-25\",\"To\":\"2024-04-04\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":22839,\"Title\":\"Reykjavik\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":542905,\"Name\":\"Hotel Klettur\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22839,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_542905\\/43249_b7db23baa97bd0c90a123101fbce34bf1678952671.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":40891,\"Title\":\"Reykjavik\",\"Description\":\"&lt;p&gt;Reykjavik&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22839\\/sightseeing\\/43249_1678093716.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43180,\"Title\":\"Geothermal Greenhouse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43178,\"Title\":\"Golden Circle \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43179,\"Title\":\"Gullfoss\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":42927,\"Title\":\"Thingvellir National Park\",\"Description\":\"&lt;p&gt;Thingvellir National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/33966\\/sightseeing\\/43249_1681210328.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":42928,\"Title\":\"Glacier Lagoon\",\"Description\":\"&lt;p&gt;Glacier Lagoon&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/33966\\/sightseeing\\/43249_1681210465.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":8286,\"Title\":\"Blue Lagoon\",\"Description\":\"The Blue Lagoon (Icelandic: Bl&amp;aacute;a l&amp;oacute;ni&amp;eth;) is a geothermal spa in southwestern Iceland. The spa is located in a lava field near Grindav&amp;iacute;k on the Reykjanes Peninsula, in a location favourable for geothermal power, and is supplied by water used in the nearby Svartsengi geothermal power station. The Blue Lagoon is approximately 20 km (12 mi) from Keflav&amp;iacute;k International Airport, and is one of the most visited attractions in Iceland.\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22839\\/sightseeing\\/Blue_Lagoon__22839_1547894751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":8298,\"Title\":\"Seljalandsfoss\",\"Description\":\"Seljalandsfoss is a waterfall in Iceland. Seljalandsfoss is located in the South Region in Iceland right by Route 1 and the road that leads to porsmork Road 249. The waterfall drops 60 m (197 ft) and is part of the Seljalands River that has its origin in the volcano glacier Eyjafjallaj&amp;ouml;kull.\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22839\\/sightseeing\\/Seljalandsfoss_22839_1548046276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":41498,\"Title\":\"Departure Day\",\"Description\":\"&lt;p&gt;Departure Day&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22839\\/sightseeing\\/43249_1679121833.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null}]}},{\"CityId\":33966,\"Title\":\"Vik\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":547312,\"Name\":\"Hotel Katla\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":33966,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_547312\\/43249_e069da06de590e50e4097548f7ac0fec1681211808.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":40891,\"Title\":\"Reykjavik\",\"Description\":\"&lt;p&gt;Reykjavik&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22839\\/sightseeing\\/43249_1678093716.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43180,\"Title\":\"Geothermal Greenhouse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43178,\"Title\":\"Golden Circle \",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":43179,\"Title\":\"Gullfoss\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":42927,\"Title\":\"Thingvellir National Park\",\"Description\":\"&lt;p&gt;Thingvellir National Park&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/33966\\/sightseeing\\/43249_1681210328.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":42928,\"Title\":\"Glacier Lagoon\",\"Description\":\"&lt;p&gt;Glacier Lagoon&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":33966,\"CityName\":\"Vik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/33966\\/sightseeing\\/43249_1681210465.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":8286,\"Title\":\"Blue Lagoon\",\"Description\":\"The Blue Lagoon (Icelandic: Bl&amp;aacute;a l&amp;oacute;ni&amp;eth;) is a geothermal spa in southwestern Iceland. The spa is located in a lava field near Grindav&amp;iacute;k on the Reykjanes Peninsula, in a location favourable for geothermal power, and is supplied by water used in the nearby Svartsengi geothermal power station. The Blue Lagoon is approximately 20 km (12 mi) from Keflav&amp;iacute;k International Airport, and is one of the most visited attractions in Iceland.\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22839\\/sightseeing\\/Blue_Lagoon__22839_1547894751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":8298,\"Title\":\"Seljalandsfoss\",\"Description\":\"Seljalandsfoss is a waterfall in Iceland. Seljalandsfoss is located in the South Region in Iceland right by Route 1 and the road that leads to porsmork Road 249. The waterfall drops 60 m (197 ft) and is part of the Seljalands River that has its origin in the volcano glacier Eyjafjallaj&amp;ouml;kull.\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22839\\/sightseeing\\/Seljalandsfoss_22839_1548046276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null},{\"RefSSId\":41498,\"Title\":\"Departure Day\",\"Description\":\"&lt;p&gt;Departure Day&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":22839,\"CityName\":\"Reykjavik\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/43249\\/city\\/22839\\/sightseeing\\/43249_1679121833.jpg\",\"SupplierSysId\":15633,\"SupplierName\":\"Snaeland\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"373568\",\"Title\":\"Welcome to Iceland\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Keflavik airport and transfer to Hotel Klettur (transfer not included)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":542905,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":40891,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373569\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373570\",\"Title\":\"The Golden Circle\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;We visit the famous Golden Circle with its highlights: &lt;strong&gt;Thingvellir National Park&lt;\\/strong&gt;, the geothermal area in Geysir, and the golden waterfall Gullfoss. We also visit a geothermal greenhouse.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":33966,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":547312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":43180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43178,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":43179,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":42927,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373571\",\"Title\":\"Glacier Lagoon\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;We make our way east along the south coast, where we visit the J&amp;ouml;kuls&amp;aacute;rl&amp;oacute;n glacial lagoon and Skaftafell National Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":33966,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":547312,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":42928,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373572\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":33966,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373573\",\"Title\":\"Volcanoes &amp; Waterfalls&nbsp;\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Along the south, we visit the waterfalls Seljalandsfoss and Sk&amp;oacute;gafoss. In Hvolsv&amp;ouml;llur, we visit the interactive lava center. In the afternoon, we visit the Blue Lagoon (entrance is optional).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8286,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8298,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"373574\",\"Title\":\"Departure from Iceland\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Transfer from Hotel to the airport (Transfer not included)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22839,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41498,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"51644\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":966,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"51644\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":966,\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-09-28\",\"To\":\"2023-09-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-05\",\"To\":\"2023-10-05\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-12\",\"To\":\"2023-10-12\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-19\",\"To\":\"2023-10-19\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-10-26\",\"To\":\"2023-10-26\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-02\",\"To\":\"2023-11-02\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-09\",\"To\":\"2023-11-09\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-16\",\"To\":\"2023-11-16\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-23\",\"To\":\"2023-11-23\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-11-30\",\"To\":\"2023-11-30\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-07\",\"To\":\"2023-12-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2023-12-14\",\"To\":\"2023-12-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-11\",\"To\":\"2024-01-11\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-18\",\"To\":\"2024-01-18\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-01-25\",\"To\":\"2024-01-25\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-01\",\"To\":\"2024-02-01\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-08\",\"To\":\"2024-02-08\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-15\",\"To\":\"2024-02-15\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966},{\"From\":\"2024-04-04\",\"To\":\"2024-04-04\",\"Currency\":32,\"priceTripleOcc\":966,\"priceDoubleOcc\":966,\"priceSingleOcc\":\"966.00\",\"priceExtraBed\":966,\"priceWithoutBed\":966,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":966,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":32,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"COSTTO\":966,\"CWOB\":966,\"CEB\":966,\"COSTDO\":966,\"COSTSO\":1932,\"ACEB\":966}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbspyou do not wish to travel,&amp;nbsp&lt;strong&gt;you must cancel your booking at least 72&amp;nbsphours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbspquoted&amp;nbspat the time of package&amp;nbspcreation&amp;nbspis subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbspto be made for Domestic packages 10&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbspdays prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbspprovided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbspand final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;ampndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbspi.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST5% &amp;nbsp;for Indian Nationals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;TCS 20% for Indian Nationals&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Optional Add-Ons&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Blue Lagoon admission including towel and 1 drink: &amp;euro;96&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A private airport transfer&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;(1-3 persons): One-way &amp;euro;188&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;(4-6 persons): One-way &amp;euro;214&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shared big bus airport transfer: One-way &amp;euro;42&amp;nbsp;&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fully escorted tour with local guide on day 2, 3 and 4&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 night accommodation in Hotel Klettur Reykjavik, standard rooms.. 2 night accommodation in Hotel Katla, standard rooms with breakfast. Super Truck and Ice Cave tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drinks&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast on days 2,3,4,5&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbspat our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"373568\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[373568],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373569\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[373569],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373570\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[373570],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373571\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[373571],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373572\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[373572],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373573\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[373573],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"373574\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[373574],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"22839\":{\"CityName\":\"Reykjavik\",\"FlightInv\":{\"1\":{\"734\":{\"FlightType\":1,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}},\"2\":{\"735\":{\"FlightType\":2,\"AirlineName\":\"\",\"AirlineCode\":\"\",\"DepartureAirportCode\":\"\",\"DepartureAirportName\":\"\",\"DepartureTime\":\"05:30:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"\",\"ArrivalAirportName\":\"\",\"ArrivalTime\":\"05:30:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"\"}}},\"FromDate\":{\"20230928\":{\"FromDate\":\"2023-09-28\",\"FromDateDMY\":\"28\\/09\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231005\":{\"FromDate\":\"2023-10-05\",\"FromDateDMY\":\"05\\/10\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231012\":{\"FromDate\":\"2023-10-12\",\"FromDateDMY\":\"12\\/10\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231019\":{\"FromDate\":\"2023-10-19\",\"FromDateDMY\":\"19\\/10\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231026\":{\"FromDate\":\"2023-10-26\",\"FromDateDMY\":\"26\\/10\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231102\":{\"FromDate\":\"2023-11-02\",\"FromDateDMY\":\"02\\/11\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231109\":{\"FromDate\":\"2023-11-09\",\"FromDateDMY\":\"09\\/11\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231116\":{\"FromDate\":\"2023-11-16\",\"FromDateDMY\":\"16\\/11\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231123\":{\"FromDate\":\"2023-11-23\",\"FromDateDMY\":\"23\\/11\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231130\":{\"FromDate\":\"2023-11-30\",\"FromDateDMY\":\"30\\/11\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231207\":{\"FromDate\":\"2023-12-07\",\"FromDateDMY\":\"07\\/12\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20231214\":{\"FromDate\":\"2023-12-14\",\"FromDateDMY\":\"14\\/12\\/2023\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240111\":{\"FromDate\":\"2024-01-11\",\"FromDateDMY\":\"11\\/01\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240118\":{\"FromDate\":\"2024-01-18\",\"FromDateDMY\":\"18\\/01\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240125\":{\"FromDate\":\"2024-01-25\",\"FromDateDMY\":\"25\\/01\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240201\":{\"FromDate\":\"2024-02-01\",\"FromDateDMY\":\"01\\/02\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240208\":{\"FromDate\":\"2024-02-08\",\"FromDateDMY\":\"08\\/02\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240215\":{\"FromDate\":\"2024-02-15\",\"FromDateDMY\":\"15\\/02\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240222\":{\"FromDate\":\"2024-02-22\",\"FromDateDMY\":\"22\\/02\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240229\":{\"FromDate\":\"2024-02-29\",\"FromDateDMY\":\"29\\/02\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240307\":{\"FromDate\":\"2024-03-07\",\"FromDateDMY\":\"07\\/03\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240314\":{\"FromDate\":\"2024-03-14\",\"FromDateDMY\":\"14\\/03\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240321\":{\"FromDate\":\"2024-03-21\",\"FromDateDMY\":\"21\\/03\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240328\":{\"FromDate\":\"2024-03-28\",\"FromDateDMY\":\"28\\/03\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240404\":{\"FromDate\":\"2024-04-04\",\"FromDateDMY\":\"04\\/04\\/2024\",\"AdultCost\":966,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Reykjavik,Vik','Reykjavik,Scandinavia,Iceland,Vik',NULL,'22839,33966',8596,86495,4,NULL,NULL,NULL,2,'',0,'2023-08-25 00:00:00','2024-04-04 00:00:00','2024-04-04 00:00:00',3,'Iceland','100','2023-08-25 16:17:21','2023-08-25 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'northern-lights-and-glacier-lagoon-iceland',NULL,NULL,NULL,0),(349,50657,1,5293,0,0,0,'Honeymoon,Beach,Family,Religious,Heritage,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":50657,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/authentic-bali_1689838616\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"A tropical heaven for tourists, no island has enchanted travellers like Bali. Bali manages to pack countless adventures into one small package. Dazzling beaches beckon the sun seekers and surfers along the island&amp;rsquo;s southwest coast, while ancient temples and a thriving wellness scene draw travellers inland to Ubud. It&amp;rsquo;s the kind of place where hedonists, relaxation-seekers, and ecotourists can all find something to enjoy, from wild nightclubs in Seminyak and Kuta to luxury clifftop hotels in Nusa Dua to the pristine jungles and volcanic landscapes of the island&amp;rsquo;s north.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"AUTHENTIC BALI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Religious,Heritage,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":216389,\"Name\":\"Kuta Central Park\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.710145\",\"Long\":\"115.179452\",\"Address\":\"Jl. Patih Jelantik  80361 KUTA  ID, , , 80361\"},\"Images\":{\"Image\":[{\"ImagId\":4786538,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFuDrz1NcxYiSE\\/sk2kXIruNJUgCGTGXg6y0e3knj1dNJ6NNL8loFD3bQ==\"}]},\"CityId\":2136,\"Brief\":\"The hotel is located in the midst of Kuta area on the pulse of all goods things Bali. While the hotel&#039;s immediate neighbourhood invites to be explored by foot, the hotel location makes it also an ideal vantage point from which to explore the rest of the island. Guests can reach the hotel within 15 minutes&#039; drive from Ngurah Rai Airport. The hotel combines the value of premium budget hotel with unique style and inspiring design elements. The property offers a swimming pool for adult and children, Lomi-Lomi Spa and weekly entertainment programs. The delightful Lotus Pond Restaurant offers an interesting array of local and imported delicacies where the guest can relax and enjoy the innovative cuisine and calm atmosphere. Children are particularly well looked after.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":172883,\"Name\":\"Risata Bali Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.736685\",\"Long\":\"115.165201\",\"Address\":\"Jl. Wana Segara South Kuta Beach\"},\"Images\":{\"Image\":[{\"ImagId\":3828031,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Risata Bali Resort and Spa in Kuta, you&amp;apos;ll be in the entertainment district and minutes from Lippo Mall and Tuban Beach.  This 4-star resort is close to Kuta Beach and Carrefour Plaza Kuta.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 139 air-conditioned rooms featuring refrigerators and flat-screen televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. Conveniences include safes and minibars, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself with massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. Additional features at this resort include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands. If you&amp;apos;d like to spend the day shopping, you can hop on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":173286,\"Name\":\"Alam Puisi Villa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.50595\",\"Long\":\"115.26\",\"Address\":\"Banjar Sembuwuk, Desa Pejeng Ubud 80515 Bali Indonesia\"},\"Images\":{\"Image\":[{\"ImagId\":3839725,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_5_t.jpg\"},{\"ImagId\":3839726,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_8_t.jpg\"},{\"ImagId\":3839727,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_6_t.jpg\"},{\"ImagId\":3839728,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_7_t.jpg\"},{\"ImagId\":3839729,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_42_t.jpg\"},{\"ImagId\":3839730,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_56_t.jpg\"},{\"ImagId\":3839731,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_52_t.jpg\"},{\"ImagId\":3839732,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_76_t.jpg\"},{\"ImagId\":3839733,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_77_t.jpg\"},{\"ImagId\":3839734,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_78_t.jpg\"},{\"ImagId\":3839735,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_79_t.jpg\"},{\"ImagId\":3839736,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_80_t.jpg\"},{\"ImagId\":3839737,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_81_t.jpg\"},{\"ImagId\":3839738,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_83_t.jpg\"},{\"ImagId\":3839739,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_84_t.jpg\"},{\"ImagId\":3839740,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_85_t.jpg\"},{\"ImagId\":3839741,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_86_t.jpg\"},{\"ImagId\":3839742,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_87_t.jpg\"},{\"ImagId\":3839743,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_92_t.jpg\"},{\"ImagId\":3839744,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_88_t.jpg\"},{\"ImagId\":3839745,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_89_t.jpg\"},{\"ImagId\":3839746,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_101_t.jpg\"},{\"ImagId\":3839747,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_94_t.jpg\"},{\"ImagId\":3839748,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_95_t.jpg\"},{\"ImagId\":3839749,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_97_t.jpg\"},{\"ImagId\":3839750,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_98_t.jpg\"},{\"ImagId\":3839751,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_100_t.jpg\"},{\"ImagId\":3839752,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_99_t.jpg\"},{\"ImagId\":3839753,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_103_t.jpg\"},{\"ImagId\":3839754,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_105_t.jpg\"},{\"ImagId\":3839755,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_102_t.jpg\"},{\"ImagId\":3839756,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_106_t.jpg\"},{\"ImagId\":3839757,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_107_t.jpg\"},{\"ImagId\":3839758,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_108_t.jpg\"},{\"ImagId\":3839759,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_111_t.jpg\"},{\"ImagId\":3839760,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_112_t.jpg\"},{\"ImagId\":3839761,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_110_t.jpg\"},{\"ImagId\":3839762,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_113_t.jpg\"},{\"ImagId\":3839763,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_118_t.jpg\"},{\"ImagId\":3839764,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_116_t.jpg\"},{\"ImagId\":3839765,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_119_t.jpg\"},{\"ImagId\":3839766,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_129_t.jpg\"},{\"ImagId\":3839767,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_131_t.jpg\"},{\"ImagId\":3839768,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_141_t.jpg\"},{\"ImagId\":3839769,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_142_t.jpg\"},{\"ImagId\":3839770,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_143_t.jpg\"},{\"ImagId\":3839771,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_144_t.jpg\"},{\"ImagId\":3839772,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_145_t.jpg\"},{\"ImagId\":3839773,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_147_t.jpg\"},{\"ImagId\":3839774,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_148_t.jpg\"},{\"ImagId\":3839775,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_163_t.jpg\"},{\"ImagId\":3839776,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_156_t.jpg\"},{\"ImagId\":3839777,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_158_t.jpg\"},{\"ImagId\":3839778,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_159_t.jpg\"},{\"ImagId\":3839779,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_160_t.jpg\"},{\"ImagId\":3839780,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_161_t.jpg\"},{\"ImagId\":3839781,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_162_t.jpg\"},{\"ImagId\":3839782,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_164_t.jpg\"},{\"ImagId\":3839783,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_166_t.jpg\"},{\"ImagId\":3839784,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_165_t.jpg\"},{\"ImagId\":3839785,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_167_t.jpg\"},{\"ImagId\":3839786,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_169_t.jpg\"},{\"ImagId\":3839787,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_170_t.jpg\"},{\"ImagId\":3839788,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_171_t.jpg\"},{\"ImagId\":3839789,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_168_t.jpg\"},{\"ImagId\":3839790,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_172_t.jpg\"},{\"ImagId\":3839791,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_174_t.jpg\"},{\"ImagId\":3839792,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_179_t.jpg\"},{\"ImagId\":3839793,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_180_t.jpg\"},{\"ImagId\":3839794,\"Type\":\"Thumbnail\",\"Order\":70,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_181_t.jpg\"},{\"ImagId\":3839795,\"Type\":\"Thumbnail\",\"Order\":71,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_176_t.jpg\"},{\"ImagId\":3839796,\"Type\":\"Thumbnail\",\"Order\":72,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_182_t.jpg\"},{\"ImagId\":3839797,\"Type\":\"Thumbnail\",\"Order\":73,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_183_t.jpg\"},{\"ImagId\":3839798,\"Type\":\"Thumbnail\",\"Order\":74,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_184_t.jpg\"},{\"ImagId\":3839799,\"Type\":\"Thumbnail\",\"Order\":75,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_185_t.jpg\"},{\"ImagId\":3839800,\"Type\":\"Thumbnail\",\"Order\":76,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_186_t.jpg\"},{\"ImagId\":3839801,\"Type\":\"Thumbnail\",\"Order\":77,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_202_t.jpg\"},{\"ImagId\":3839802,\"Type\":\"Thumbnail\",\"Order\":78,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_203_t.jpg\"},{\"ImagId\":3839803,\"Type\":\"Thumbnail\",\"Order\":79,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_204_t.jpg\"},{\"ImagId\":3839804,\"Type\":\"Thumbnail\",\"Order\":80,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_201_t.jpg\"},{\"ImagId\":3839805,\"Type\":\"Thumbnail\",\"Order\":81,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_205_t.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Ubud, Alam Puisi Villa is in a rural location and close to Botanic Garden Ubud and Seniwati Gallery of Art by Women. This 4-star resort is within close proximity of Ubud Royal Palace and Ubud Market.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 27 air-conditioned rooms featuring kitchens with refrigerators and microwaves. Rooms have private patios. LED televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool and bicycles to rent. This resort also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can get to nearby shops on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, dry cleaning\\/laundry services, and luggage storage. Planning an event in Ubud? This resort has 1615 square feet (150 square meters) of space consisting of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6700000\\/6691900\\/6691822\\/6691822_5_t.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"1 Bedroom Pool Villa\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":521606,\"Name\":\"Kori Maharani Villas\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.573694\",\"Long\":\"115.36348\",\"Address\":\"Jl. By Pass Ida Bagus Mantra, C9G7+G9H, Tulikup, Kec. Gianyar, Kabupaten Gianyar, Bali, Indonesia\"},\"Images\":[],\"CityId\":2136,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_521606\\/5293_b7913da52e97e79ad9345107b224428c1675835359.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"1 Bedroom Pool Villa\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":33395,\"Title\":\"Nusa Penida Island Tour\",\"Description\":\"&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;Once a hidden treasure, now gaining steady popularity, Nusa Penida is just the right mix of deserted and safe! You may not find the bustling city life, the happening nightlife or the fancy beach clubs here, but the beauty of the island is unparalleled!&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;Breathtaking cliff views, refreshing waterfalls, pristine beaches&hellip;Nusa Penida&#039;s day trip to the island is very doable and equally pleasurable.&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Snorkel in the Clear Waters of Crystal Bay:&nbsp;&lt;\\/span&gt;One of the most photographable places in Nusa Penida, you won&rsquo;t want to miss a visit to Crystal Bay.The beautiful palm-lined island with a thriving coral reef offers a visual treat to divers, and those who wish to snorkel during their visit. Put on the snorkel gear and be prepared to catch a glimpse of some exotic marine life.&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Hike Up to Get the Best View t Kelingking Beach:&nbsp;&lt;\\/span&gt;While Nusa Penida has so many great views, it may be challenging to pick one as the best. However, a Tyrannosaurus Rex shaped formation on a sweet hidden beach has got to be the winner! Kelingking beach is definitely, an Instagram favourite.&lt;\\/p&gt;&lt;p style=&quot;margin-bottom: 18px padding: 0px font-family: Lato, sans-serif color: rgb(51, 51, 51) line-height: 22px word-break: break-word font-size: 16px&quot;&gt;&lt;span style=&quot;margin: 0px padding: 0px font-weight: 700&quot;&gt;Catch a Romantic Moment at Broken Beach:&nbsp;&lt;\\/span&gt;Broken beach is a gorgeous little cove on Nusa Penida Island. It is called so because of a natural archway that wraps around the bay. Unfortunately, there is no way down to swim here, but it is not too far from Angel&rsquo;s Billabong. Here, there is a pathway, which leads to a naturally formed lagoon, that offers a great place to swim and breathtaking views too!&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/city\\/2136\\/sightseeing\\/5293_1679299216.jpg\",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3411,\"Title\":\"Bali Safari &amp; Marine Park\",\"Description\":\"Bali Safari and Marine Park offer exciting theme park activities in Bali&amp;#039;s island to see any kind of wild animal species. \\r\\nAn incredible adventure in Safari, in the wildlife, Sumatran Tiger in the Sumatra forest, and elephants rotating with a hippo near Lake Hippos in Africa. Explore hundreds of animal life and spend your days, enjoy 60 rare species, in which some rare and endangered species such as Komodo, Orang Utan, and Bali Mynah and much more can see you in Bali Safari and Marine Park\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.58029,\"Long\":115.345645,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Bali_Safari_&amp;_Marine_Park_2136_1518156664.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3405,\"Title\":\"Lembongan island\",\"Description\":\"Nusa Lembongan is a small island off the southeast coast of the main island of Bali. This island paradise is a world away from the hassle and hectic pace of South Bali. This is a fine place to just put your feet up and relax.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.6785828,\"Long\":115.4555858,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Lembongan_island_2136_1518153819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":14472,\"SupplierName\":\"iShull DMC Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":3092,\"Title\":\"Mount Batur\",\"Description\":\"Mount Batur volcano is one of the blessed mountain according to Hindu believe. Mount Batur (Gunung Batur) is 1717 m above sea level can be climbed to enjoy an unforgettable SUNRISE from the top of an active volcano.\\r\\nThe hike along the well-marked trails is relatively easy and the views are spectacular, stretching all the way across the Batur caldera the surrounding mountain range and beautiful Lake Batur,the island&amp;#039;s main source of irrigation water. The lake is 16 kilometres wide and is a popular fishing spot. Mount Batur is best for those who are simply curious to explore new adventures and the natural beauty.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.2401,\"Long\":115.3775,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Mount_Batur_2136_1517461873.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":14472,\"SupplierName\":\"iShull DMC Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":14128,\"Title\":\"turtle island with glass bottom boat\",\"Description\":\"Awesome place, staff are great and the work they do is so worthwhile. There are small enclosures where you can touch the tame animals, hold a python, foot spa with small fish and food and drink... Make a donation while your there.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/turtle_island_with_glass_botto_2136_1580212361.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":14472,\"SupplierName\":\"iShull DMC Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7921,\"Title\":\"Ubud Swing\",\"Description\":\"The Bali Swing is the new toursm activity in Bali and it has become such a popular activity in Bali.\\r\\nHowever, the original and best is Ubud, but to day there hundreds of others have sprung up all over Bali with breathtaking views.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.5098,\"Long\":115.2654,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ubud_Swing_2136_1546086487.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"365986\",\"Title\":\"Arrival at Bali\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":216389,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365988\",\"Title\":\"Full Day Water Sports followed by Uluwatu Temple Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for Water Sports Activities. One Round of Banana Boat, Single Parasailing, and Jet Ski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":216389,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":33395,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3090,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3411,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3405,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":3092,\"MasterIntSysId\":0},{\"IsIncluded\":false,\"Id\":14128,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365990\",\"Title\":\"Day at leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast your day is at leisure.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":216389,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365992\",\"Title\":\"Day at Leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today after breakfast your day is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hotel.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":216389,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365994\",\"Title\":\"KINTAMANI &amp; UBUD FULL DAY TOUR + BALI SWING\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full day tour to Kintamani and Ubud. The perfect introduction to Bali&amp;#39;s fascinating culture and handicrafts, fascinating insight into Bali&amp;rsquo;s artistic heritage at Ubud, beautiful natural landscape, and the breathtaking view of an active volcano.&lt;br \\/&gt;\\r\\nEnjoy the most trending instagrammable spot which is the Bali swing -&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 single swings&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 bed swing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 romantic swing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 bird nest&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1&amp;nbsp;sky&amp;nbsp;bed&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Yes, all of the above is included in your package. Have a blast and click tonnes of picture.&lt;br \\/&gt;\\r\\nPS - Don&amp;#39;t forget to tag us. Wink!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":521606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 Bedroom Pool Villa\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":173286,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 Bedroom Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2912,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7921,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365996\",\"Title\":\"Day at leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today enjoy the amazing floating breakfast in the Villa, relax freely as your day is at leisure. Indulge yourself in a shopping spree or just give your body a rest by taking the famous Balinese Spa.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":521606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 Bedroom Pool Villa\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":173286,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"1 Bedroom Pool Villa\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"365998\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Post breakfast today, transfer to airport.&lt;br \\/&gt;\\r\\nBid adieu to Bali with loads of pictures and fond memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50657\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":56980,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":56980,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"50658\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":22330,\"priceDoubleOcc\":\"23100.00\",\"priceSingleOcc\":64680,\"priceExtraBed\":\"17325.00\",\"priceWithoutBed\":\"11550.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11550,\"CEB\":17325,\"COSTDO\":23100,\"COSTSO\":64680,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20790,\"COSTTO\":20790}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As of today USD@83&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots other than mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfer on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 X Floating Breakfast @ Villa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Kintamani tour with Ubud Village + Bali Swing (Pioneer) + Inter Hotel transfer on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Water Sports Including 1x Banana, 1x Parasailing &amp;amp; 1x Jet Ski Followed by Uluwatu Temple tour on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"365986\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[365986],\"Remark\":[\"&lt;p&gt;All Transfers on PVT Basis.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365988\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[365988],\"Remark\":[\"&lt;p&gt;All Transfers on PVT Basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365990\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[365990],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365992\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[365992],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365994\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[365994],\"Remark\":[\"&lt;p&gt;All Transfers on PVT Basis.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365996\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[365996],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"365998\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[365998],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient',NULL,'2136',20350,23100,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Indonesia','102','2023-09-07 11:46:47','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'authentic-bali',NULL,NULL,NULL,0),(350,50221,1,5293,0,0,0,'Honeymoon,Beach,Family,Religious,Culture,Romantic,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":50221,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/mesmerising-bali_1689840739\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Bali is an Indonesian island known for its forested volcanic mountains, iconic rice paddies, beaches and coral reefs. The island is home to religious sites such as cliffside Uluwatu Temple. To the south, the beachside city of Kuta has lively bars, while Seminyak, Sanur and Nusa Dua are popular resort towns. The island is also known for its yoga and meditation retreats.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"MESMERISING BALI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Religious,Culture,Romantic,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":216389,\"Name\":\"Kuta Central Park\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.710145\",\"Long\":\"115.179452\",\"Address\":\"Jl. Patih Jelantik  80361 KUTA  ID, , , 80361\"},\"Images\":{\"Image\":[{\"ImagId\":4786538,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFuDrz1NcxYiSE\\/sk2kXIruNJUgCGTGXg6y0e3knj1dNJ6NNL8loFD3bQ==\"}]},\"CityId\":2136,\"Brief\":\"The hotel is located in the midst of Kuta area on the pulse of all goods things Bali. While the hotel&#039;s immediate neighbourhood invites to be explored by foot, the hotel location makes it also an ideal vantage point from which to explore the rest of the island. Guests can reach the hotel within 15 minutes&#039; drive from Ngurah Rai Airport. The hotel combines the value of premium budget hotel with unique style and inspiring design elements. The property offers a swimming pool for adult and children, Lomi-Lomi Spa and weekly entertainment programs. The delightful Lotus Pond Restaurant offers an interesting array of local and imported delicacies where the guest can relax and enjoy the innovative cuisine and calm atmosphere. Children are particularly well looked after.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":173420,\"Name\":\"Ubud Wana Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.521605949452\",\"Long\":\"115.25595499801\",\"Address\":\"Jalan Nyuhbojog Nyuh Kuning\"},\"Images\":{\"Image\":[{\"ImagId\":3844478,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_3_t.jpg\"},{\"ImagId\":3844479,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_7_t.jpg\"},{\"ImagId\":3844480,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_15_t.jpg\"},{\"ImagId\":3844481,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_10_t.jpg\"},{\"ImagId\":3844482,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_8_t.jpg\"},{\"ImagId\":3844483,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_16_t.jpg\"},{\"ImagId\":3844484,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_34_t.jpg\"},{\"ImagId\":3844485,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_37_t.jpg\"},{\"ImagId\":3844486,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_35_t.jpg\"},{\"ImagId\":3844487,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_40_t.jpg\"},{\"ImagId\":3844488,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_41_t.jpg\"},{\"ImagId\":3844489,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_44_t.jpg\"},{\"ImagId\":3844490,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_52_t.jpg\"},{\"ImagId\":3844491,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_46_t.jpg\"},{\"ImagId\":3844492,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_55_t.jpg\"},{\"ImagId\":3844493,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_58_t.jpg\"},{\"ImagId\":3844494,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_59_t.jpg\"},{\"ImagId\":3844495,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_61_t.jpg\"},{\"ImagId\":3844496,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_63_t.jpg\"},{\"ImagId\":3844497,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_60_t.jpg\"},{\"ImagId\":3844498,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_66_t.jpg\"},{\"ImagId\":3844499,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_67_t.jpg\"},{\"ImagId\":3844500,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_65_t.jpg\"},{\"ImagId\":3844501,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_74_t.jpg\"},{\"ImagId\":3844502,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_73_t.jpg\"},{\"ImagId\":3844503,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_76_t.jpg\"},{\"ImagId\":3844504,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_72_t.jpg\"},{\"ImagId\":3844505,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_64_t.jpg\"},{\"ImagId\":3844506,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_71_t.jpg\"},{\"ImagId\":3844507,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_95_t.jpg\"},{\"ImagId\":3844508,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_96_t.jpg\"},{\"ImagId\":3844509,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_97_t.jpg\"},{\"ImagId\":3844510,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_98_t.jpg\"},{\"ImagId\":3844511,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_81_t.jpg\"},{\"ImagId\":3844512,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_82_t.jpg\"},{\"ImagId\":3844513,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_84_t.jpg\"},{\"ImagId\":3844514,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_85_t.jpg\"},{\"ImagId\":3844515,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_88_t.jpg\"},{\"ImagId\":3844516,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_92_t.jpg\"},{\"ImagId\":3844517,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_93_t.jpg\"},{\"ImagId\":3844518,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_79_t.jpg\"},{\"ImagId\":3844519,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_83_t.jpg\"},{\"ImagId\":3844520,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_87_t.jpg\"},{\"ImagId\":3844521,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_94_t.jpg\"},{\"ImagId\":3844522,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_100_t.jpg\"},{\"ImagId\":3844523,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_99_t.jpg\"},{\"ImagId\":3844524,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_101_t.jpg\"},{\"ImagId\":3844525,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_114_t.jpg\"},{\"ImagId\":3844526,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_106_t.jpg\"},{\"ImagId\":3844527,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_107_t.jpg\"},{\"ImagId\":3844528,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_131_t.jpg\"},{\"ImagId\":3844529,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/e66f4d1c_t.jpg\"},{\"ImagId\":3844530,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/aca17b00_t.jpg\"},{\"ImagId\":3844531,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/e31fbb71_t.jpg\"},{\"ImagId\":3844532,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/7098e888_t.jpg\"},{\"ImagId\":3844533,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/e2b54e18_t.jpg\"},{\"ImagId\":3844534,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/f4afd948_t.jpg\"},{\"ImagId\":3844535,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/de04d0de_t.jpg\"},{\"ImagId\":3844536,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_138_t.jpg\"},{\"ImagId\":3844537,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/979f7f6d_t.jpg\"},{\"ImagId\":3844538,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/95fdc285_t.jpg\"},{\"ImagId\":3844539,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/d3732830_t.jpg\"},{\"ImagId\":3844540,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/150f7188_t.jpg\"},{\"ImagId\":3844541,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/1533dca8_t.jpg\"},{\"ImagId\":3844542,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/626a88a5_t.jpg\"},{\"ImagId\":3844543,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/1fc648f2_t.jpg\"},{\"ImagId\":3844544,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/e4c103f9_t.jpg\"},{\"ImagId\":3844545,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/d4878f7c_t.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Ubud, UBUD WANA RESORT is minutes from Pura Dalem Agung Padangtegal and close to Ubud Monkey Forest.  This 4-star hotel is within close proximity of Arma Museum and Komaneka Fine Art Gallery.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 73 air-conditioned rooms featuring refrigerators and flat-screen televisions. Rooms have private balconies or patios. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms have complimentary toiletries and bathrobes.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers body treatments and facials. You&amp;apos;re sure to appreciate the recreational amenities, which include 3 outdoor swimming pools and bicycles to rent. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and barbecue grills.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, a 24-hour front desk, and luggage storage. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9720000\\/9713700\\/9713617\\/9713617_3_t.jpg\",\"AccoAminitiesMask\":\"111000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Wana Garden\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":172883,\"Name\":\"Risata Bali Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.736685\",\"Long\":\"115.165201\",\"Address\":\"Jl. Wana Segara South Kuta Beach\"},\"Images\":{\"Image\":[{\"ImagId\":3828031,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Risata Bali Resort and Spa in Kuta, you&amp;apos;ll be in the entertainment district and minutes from Lippo Mall and Tuban Beach.  This 4-star resort is close to Kuta Beach and Carrefour Plaza Kuta.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 139 air-conditioned rooms featuring refrigerators and flat-screen televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. Conveniences include safes and minibars, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself with massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. Additional features at this resort include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands. If you&amp;apos;d like to spend the day shopping, you can hop on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":173811,\"Name\":\"The Evitel Resort Ubud\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.50595\",\"Long\":\"115.26\",\"Address\":\"Jalan Monkey Forest 80571 Ubud\"},\"Images\":{\"Image\":[{\"ImagId\":3857890,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_10_t.jpg\"},{\"ImagId\":3857891,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_16_t.jpg\"},{\"ImagId\":3857892,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_2_t.jpg\"},{\"ImagId\":3857893,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_4_t.jpg\"},{\"ImagId\":3857894,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_9_t.jpg\"},{\"ImagId\":3857895,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_3_t.jpg\"},{\"ImagId\":3857896,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_6_t.jpg\"},{\"ImagId\":3857897,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_1_t.jpg\"},{\"ImagId\":3857898,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_7_t.jpg\"},{\"ImagId\":3857899,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_22_t.jpg\"},{\"ImagId\":3857900,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_18_t.jpg\"},{\"ImagId\":3857901,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_19_t.jpg\"},{\"ImagId\":3857902,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_20_t.jpg\"},{\"ImagId\":3857903,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_21_t.jpg\"},{\"ImagId\":3857904,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/0a7fed2c_t.jpg\"},{\"ImagId\":3857905,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/d551aeee_t.jpg\"},{\"ImagId\":3857906,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/8fe6c6f4_t.jpg\"},{\"ImagId\":3857907,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/ad7ba552_t.jpg\"},{\"ImagId\":3857908,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/ce5b7e34_t.jpg\"},{\"ImagId\":3857909,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/8e56fc61_t.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at The Evitel Resort Ubud in Ubud, you&amp;apos;ll be minutes from Ubud Monkey Forest and close to Pura Dalem Agung Padangtegal.  This hotel is within close proximity of Komaneka Fine Art Gallery and Arma Museum.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 88 air-conditioned rooms featuring minibars. Rooms have private balconies or patios. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and slippers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreation opportunities such as an outdoor pool or take in the view from a terrace and a garden. This hotel also features complimentary wireless Internet access, babysitting\\/childcare (surcharge), and a television in a common area.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of The Evitel Resort Ubud. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and a 24-hour front desk. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/15000000\\/14680000\\/14677000\\/14676989\\/14676989_10_t.jpg\",\"AccoAminitiesMask\":\"111100000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7918,\"Title\":\"Water Sports TRIO(Jet Skii  Banana Boat  Parraselling)\",\"Description\":\"Enjoy water sports in Bali including Jet Skii,Banana Boat, Parraselling.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Water_Sports_TRIO(Jet_Skii__Ba_2136_1574167993.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":49890,\"Title\":\"Bali White water rafting\",\"Description\":\"Bali is renowned for its breathtaking landscapes and lush greenery. White water rafting in Bali allows you to immerse yourself in the island&amp;#039;s natural beauty as you navigate through rivers surrounded by tropical forests, rice terraces, and cascading waterfalls.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/2136\\/sightseeing\\/bali_white_water_rafting_2136_1688648783.jpg\",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":7921,\"Title\":\"Ubud Swing\",\"Description\":\"The Bali Swing is the new toursm activity in Bali and it has become such a popular activity in Bali.\\r\\nHowever, the original and best is Ubud, but to day there hundreds of others have sprung up all over Bali with breathtaking views.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.5098,\"Long\":115.2654,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ubud_Swing_2136_1546086487.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"362428\",\"Title\":\"Arrival at Bali\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":216389,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":173420,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Wana Garden\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"362430\",\"Title\":\"Full Day Water Sports Including 1x Banana, 1x Flying Fish &amp; 1x Jet Ski Followed by Uluwatu Temple tour + 01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for Water Sports Activities. One Round of Banana Boat, Flying Fish and Jet Ski.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"362432\",\"Title\":\"Full Day Ulun Danu Beratan Temple Tour Followed by Tanah Lot Temple tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Post breakfast at the hotel, get ready to explore the Ulun Danu Beratan temple. It is a famous picturesque landmark and a significant temple complex located on the western side of Beratan Lake in Bedugul, central Bali. Ulun Danu literally &amp;#39;the source temple of Lake Beratan&amp;#39;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nNext visit will be followed by a dramatic Tanah Lot Temple one of the splendid tenples in Bali. Perching a top an enormous rock, its completely surrounded by the waters of the Indian Ocean during high tide, don&amp;#39;t miss this opportunity to watch the sunset over this temple pictured above.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3090,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"362434\",\"Title\":\"Full Day White Water Rafting on Ayung River Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp; 1x Sky Bed) on Pvt Basis\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full day tour to&amp;nbsp;Full Day White Water Rafting on Ayung River Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp;amp; 1x Sky Bed) on Pvt Basis&lt;br \\/&gt;\\r\\nEnjoy the most instagrammable spot which is the bali swing -&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 single swings&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 bed swing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 romantic swing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 bird nest&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1&amp;nbsp;sky&amp;nbsp;bed&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Yes, all of the above is included in your package. Have a blast and click tonnes of picture.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":173811,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":49890,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7921,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"362436\",\"Title\":\"Day at leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Today enjoy the amazing floating breakfast in the Villa, relax freely as your day is at leisure. Indulge yourself in a shopping spree or just give your body a rest by taking the famous Balinese Spa.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Villa&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":173811,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"362438\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Post breakfast today, transfer to airport.&lt;br \\/&gt;\\r\\nBid adieu to Bali with loads of pictures and fond memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"50221\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23366.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"23366.20\",\"priceDoubleOcc\":\"23366.20\",\"priceSingleOcc\":70097.5,\"priceExtraBed\":\"23366.20\",\"priceWithoutBed\":\"22266.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23366.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":22266.2,\"CEB\":23366.2,\"COSTDO\":23366.2,\"COSTSO\":70097.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23366.2,\"COSTTO\":23366.2}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As of today USD@83&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA on arrival in Bali&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 NIghts Accommodation with breakfast on twin sharing basis as per itinerary with Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and transfers on private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeings as per itenerery.&amp;nbsp;\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Full Day Water Sports Including 1x Banana, 1x Flying Fish &amp;amp; 1x Jet Ski Followed by Uluwatu Temple tour on private basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;01x Romantic Dinner at Pool Side of IBIS Benoa on Pvt Basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day Bedugul Temple tour Followed by Tanah Lot Temple tour on Pvt Basis&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day White Water Rafting on Ayung River Followed by Bali Swing @ Pioneer Swing (1x Single Swing, 1x Romantic Swing, 1x Bird Nest, 1x Bed Swing &amp;amp; 1x Sky Bed) on Pvt Basis&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on private basis in Bali.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"362428\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[362428],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"362430\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[362430],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"362432\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[362432],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"362434\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[362434],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"362436\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[362436],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"362438\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[362438],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient',NULL,'2136',23366,23366,5,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Indonesia','102','2024-01-16 12:30:06','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'mesmerising-bali',NULL,NULL,NULL,0),(351,47652,1,5293,0,0,0,'Honeymoon,Family',NULL,1,1,0,'{\"package\":{\"TPId\":47652,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/europe-bliss_1674458729\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;European countries are full of vibrant cities bursting with culture and scenic landscapes ranging from the countrysides of France and Italy to the islands of Greece and Spain. With so many beautiful places boasting natural wonders and must-see sights, it comes as no surprise that deciding which spots to visit in Europe can be difficult.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Interlaken\",\"DestinationPlacesSysId\":12756,\"SourcePlaces\":\"Paris\",\"SourcePlaceSysId\":20822,\"AgencyName\":\"I Need Trip\",\"Name\":\"EUROPE BLISS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5658\",\"SupplierName\":\"REZLIVE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Train Ticket\",\"PackageType\":\"Honeymoon,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":192154,\"Name\":\"Ibis Paris Gennevilliers\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"48.925854806267\",\"Long\":\"2.2908827662468\",\"Address\":\"32 rue Louis Calmel 92230 Gennevilliers\"},\"Images\":{\"Image\":[{\"ImagId\":4294335,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/497\\/1966_ho_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294336,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/501\\/1966_ho_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294337,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/505\\/1966_ho_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294338,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/509\\/1966_ho_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294339,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/529\\/1966_rs_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294340,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/533\\/1966_rs_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294341,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/537\\/1966_rs_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294342,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/541\\/1966_rs_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294343,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/549\\/1966_ba_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294344,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/553\\/1966_ba_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294345,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/893\\/303\\/1966_ba_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294346,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/738\\/1966_br_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294347,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/742\\/1966_br_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294348,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/746\\/1966_br_02_p_3000x2250_A.jpg\"},{\"ImagId\":4294349,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/750\\/1966_br_03_p_3000x2250_A.jpg\"},{\"ImagId\":4294350,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/245\\/718\\/1966_fe_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294351,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/565\\/1966_sm_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294352,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/758\\/1966_de_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294353,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/762\\/1966_de_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294354,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/766\\/1966_de_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294355,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/770\\/1966_dd_02_p_3000x2250_A.jpg\"},{\"ImagId\":4294356,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/551\\/1966_rodbc_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294357,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/559\\/1966_rodbc_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294358,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/567\\/1966_rotwc_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294359,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/571\\/1966_rodbc_02_p_3000x2250_A.jpg\"}]},\"CityId\":20822,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at ibis Paris Gennevilliers in Gennevilliers, you&amp;apos;ll be connected to a shopping center and within the vicinity of Stade de France and Arc de Triomphe.  This hotel is within the vicinity of Eiffel Tower and Notre Dame Cathedral.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 60 air-conditioned guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have bathtubs and hair dryers. Conveniences include phones and desks, and you can also request irons\\/ironing boards.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the hotel&amp;apos;s 3 restaurants. Relax with a refreshing drink at one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Planning an event in Gennevilliers? This hotel has facilities measuring 807 square feet (75 square meters), including a meeting room. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/497\\/1966_ho_00_p_2048x1536_A.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":38535,\"Title\":\"Hop-on Hop-off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}},{\"CityId\":16022,\"Title\":\"Lucerne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":11568,\"Name\":\"Ibis Kriens\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"47.023776174426\",\"Long\":\"8.2990899682045\",\"Address\":\"Industriestrasse 13 6010 Kriens\"},\"Images\":{\"Image\":[{\"ImagId\":284958,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/144\\/2982_ho_00_p_2048x1536_C.jpg\"},{\"ImagId\":284959,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/148\\/2982_ho_01_p_2048x1536_C.jpg\"},{\"ImagId\":284960,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/152\\/2982_ho_02_p_2048x1536_C.jpg\"},{\"ImagId\":284961,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/156\\/2982_ho_03_p_2048x1536_C.jpg\"},{\"ImagId\":284962,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/160\\/2982_ro_00_p_2048x1536_A.jpg\"},{\"ImagId\":284963,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/164\\/2982_ro_01_p_2048x1536_A.jpg\"},{\"ImagId\":284964,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/168\\/2982_ro_02_p_2048x1536_A.jpg\"},{\"ImagId\":284965,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/172\\/2982_ro_03_p_2048x1536_A.jpg\"},{\"ImagId\":284966,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/184\\/2982_ba_00_p_2048x1536_A.jpg\"},{\"ImagId\":284967,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/188\\/2982_ba_01_p_2048x1536_A.jpg\"}]},\"CityId\":16022,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at ibis Luzern Kriens in Kriens, you&amp;apos;ll be in the mountains and close to Franciscan Church and Chapel Bridge.  This hotel is within close proximity of Jesuit Church and Richard Wagner Museum.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Stay in one of 69 guestrooms featuring LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as desks and blackout drapes\\/curtains.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make use of convenient amenities such as complimentary wireless Internet access, a hair salon, and a television in a common area.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, express check-in, and complimentary newspapers in the lobby. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/144\\/2982_ho_00_p_2048x1536_C.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":38535,\"Title\":\"Hop-on Hop-off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}},{\"CityId\":12756,\"Title\":\"Interlaken\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":401945,\"Name\":\"Chalet Swiss\",\"Star\":\"3.00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Seestrasse 22, Interlaken, Switzerland, \"},\"Images\":[],\"CityId\":12756,\"Brief\":\"The Hotel Chalet Swiss is centrally located in Interlaken, walking distance from the Tell-Spiele and the Jungfrau-Aletsch-Bietschhorn Glacier. The highly rated hotel is known for its location and its staff. The primary amenities at this hotel are bar &amp; lounge and elevator. Additional amenities include arcade &amp; game room, heating, non-smoking rooms, currency exchange and tour desk. Hotel Chalet Swiss accepts American Express, Diners Club, JCB International, MasterCard and Visa for payment. Pets allowed. The hotel is recommended for solo travellers and groups of friends.The closest airports to Hotel Chalet Swiss are Belp.The hotel occupies a traditional Swiss chalet constructed in 1862. Its largely wood facade features shuttered windows and a prominent, sloping roof.Wellness facilities include sauna.Eating and drinking facilities include bar &amp; lounge.Chargeable parking is possible onsite.\",\"MainImg\":\"https:\\/\\/www.travco.co.uk\\/images\\/hotels\\/CIZ\\/CIZ_front.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":38535,\"Title\":\"Hop-on Hop-off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"342026\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival in paris, transfer to hotel &amp;amp; checkin.&lt;br \\/&gt;\\r\\nOvernight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342027\",\"Title\":\"Disneyland\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast, you can head towards Disneyland Parks.&amp;nbsp;&lt;br \\/&gt;\\r\\nYou can enter any of the 1 parks of Disney.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2226,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342028\",\"Title\":\"PARIS CITY TOUR WITH EIFFEL TOWER &amp; SEINE RIVER CRUISE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Big Bus Paris Hop-On Hop-Off Tour (1 day pass)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Seine River cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Eiffel Tower 2nd Floor Ticket With Priority Access&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":38535,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4381,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342029\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342030\",\"Title\":\"PARIS TO SWISS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, get transferred to the station, board your train to Basel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Activate your Swiss Pass at Basel station and board the train for Lucerne.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;Lion Monument or Chapel Bridge are good options to enjoy some time&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay at Lucerne.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11568,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342031\",\"Title\":\"DAY AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Today your day is free for leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You can board a train to Engelberg and proceed to a gondola that will take you to the Tr&amp;uuml;bsee. From here, enjoy a ride in the first ever revolving gondola to reach a Swiss marvel &amp;ndash; Mount Titlis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11568,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342032\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342033\",\"Title\":\"LUCERNE TO INTERLAKEN\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After Breakfast, check out from hotel board train for Interlaken.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrive Interlaken, check in to the hotel and rest of the day free at leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight at the hotel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":401945,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342034\",\"Title\":\"DAY AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Today your day is free at leisure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;You can board a train from Kleine Scheidegg via Lauterbrunnen that will take you to Jungfrau train station &amp;ndash; the highest one on Europe.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in Interlaken hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":401945,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"342035\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast checkout from hotel and board train to Zurich Airport for your flight back home.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"47652\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"103070.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":99634,\"priceDoubleOcc\":\"103070.00\",\"priceSingleOcc\":288596,\"priceExtraBed\":\"77302.50\",\"priceWithoutBed\":\"51535.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":103070,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":51535,\"CEB\":77302.5,\"COSTDO\":103070,\"COSTSO\":288596,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":92763,\"COSTTO\":92763}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As on upload date EUR@88.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Nights in Paris&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights in Interlaken&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights in Lucerne&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport to hotel transfer in Paris on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel to Station transfer in Paris on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Train ticket from Paris to Basel (Standard)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 days Consecutive Swiss Pass&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Eiffel Tower 2nd Floor Ticket With Priority Access And Audioguide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Big Bus Paris Hop-on Hop-off Tour with Seine Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Disneyland&amp;reg; Parks ( Standard ticket )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA Assistance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"342026\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[342026],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342027\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[342027],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342028\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[342028],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342029\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[342029],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342030\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[342030],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342031\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[342031],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342032\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[342032],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342033\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[342033],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342034\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[342034],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"342035\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[342035],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Paris,Lucerne,Interlaken','Paris,Western Europe,France,Lucerne,Europe,Switzerland,Interlaken',NULL,'20822,16022,12756',103070,103070,7,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'France,Switzerland','76,210','2023-09-07 11:48:06','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'europe-bliss',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (352,47482,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":47482,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-europe_1674117959\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;European countries are full of vibrant cities bursting with culture and scenic landscapes ranging from the countrysides of France and Italy to the islands of Greece and Spain. With so many beautiful places boasting natural wonders and must-see sights, it comes as no surprise that deciding which spots to visit in Europe can be difficult.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Zurich\",\"DestinationPlacesSysId\":30548,\"SourcePlaces\":\"Paris\",\"SourcePlaceSysId\":20822,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF EUROPE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5658\",\"SupplierName\":\"REZLIVE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing,Train Ticket\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":192154,\"Name\":\"Ibis Paris Gennevilliers\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"48.925854806267\",\"Long\":\"2.2908827662468\",\"Address\":\"32 rue Louis Calmel 92230 Gennevilliers\"},\"Images\":{\"Image\":[{\"ImagId\":4294335,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/497\\/1966_ho_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294336,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/501\\/1966_ho_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294337,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/505\\/1966_ho_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294338,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/509\\/1966_ho_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294339,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/529\\/1966_rs_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294340,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/533\\/1966_rs_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294341,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/537\\/1966_rs_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294342,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/541\\/1966_rs_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294343,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/549\\/1966_ba_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294344,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/553\\/1966_ba_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294345,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/69\\/893\\/303\\/1966_ba_03_p_2048x1536_A.jpg\"},{\"ImagId\":4294346,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/738\\/1966_br_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294347,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/742\\/1966_br_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294348,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/746\\/1966_br_02_p_3000x2250_A.jpg\"},{\"ImagId\":4294349,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/750\\/1966_br_03_p_3000x2250_A.jpg\"},{\"ImagId\":4294350,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/245\\/718\\/1966_fe_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294351,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/565\\/1966_sm_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294352,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/758\\/1966_de_00_p_2048x1536_A.jpg\"},{\"ImagId\":4294353,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/762\\/1966_de_01_p_2048x1536_A.jpg\"},{\"ImagId\":4294354,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/766\\/1966_de_02_p_2048x1536_A.jpg\"},{\"ImagId\":4294355,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/574\\/770\\/1966_dd_02_p_3000x2250_A.jpg\"},{\"ImagId\":4294356,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/551\\/1966_rodbc_00_p_3000x2250_A.jpg\"},{\"ImagId\":4294357,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/559\\/1966_rodbc_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294358,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/567\\/1966_rotwc_01_p_3000x2250_A.jpg\"},{\"ImagId\":4294359,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/595\\/571\\/1966_rodbc_02_p_3000x2250_A.jpg\"}]},\"CityId\":20822,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at ibis Paris Gennevilliers in Gennevilliers, you&amp;apos;ll be connected to a shopping center and within the vicinity of Stade de France and Arc de Triomphe.  This hotel is within the vicinity of Eiffel Tower and Notre Dame Cathedral.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 60 air-conditioned guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have bathtubs and hair dryers. Conveniences include phones and desks, and you can also request irons\\/ironing boards.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the hotel&amp;apos;s 3 restaurants. Relax with a refreshing drink at one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Planning an event in Gennevilliers? This hotel has facilities measuring 807 square feet (75 square meters), including a meeting room. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/61\\/445\\/497\\/1966_ho_00_p_2048x1536_A.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}},{\"CityId\":12756,\"Title\":\"Interlaken\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":7817,\"Name\":\"Chalet Swiss\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"46.684217\",\"Long\":\"7.84591\",\"Address\":\"Seestrasse 22 3800 Interlaken\"},\"Images\":{\"Image\":[{\"ImagId\":186196,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/352\\/37092b_A.jpg\"},{\"ImagId\":186197,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/356\\/37092e_A.jpg\"},{\"ImagId\":186198,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/360\\/37092i_A.jpg\"},{\"ImagId\":186199,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/368\\/37092m_A.jpg\"},{\"ImagId\":186200,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/50\\/145\\/31\\/37092ro93074_A.jpg\"},{\"ImagId\":186201,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/384\\/37092w_A.jpg\"},{\"ImagId\":186202,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/50\\/145\\/25\\/37092y_A.jpg\"},{\"ImagId\":186203,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/388\\/37092a_A.jpg\"},{\"ImagId\":186204,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/43\\/344\\/163\\/37092ro93075_A.jpg\"},{\"ImagId\":186205,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/372\\/37092p_A.jpg\"},{\"ImagId\":186206,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/376\\/37092r_A.jpg\"},{\"ImagId\":186207,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/43\\/811\\/470\\/37092ro93076_A.jpg\"},{\"ImagId\":186208,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/380\\/37092s_A.jpg\"}]},\"CityId\":12756,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Hotel Chalet Swiss in Unterseen, you&amp;apos;ll be minutes from Hoeheweg and Mystery Rooms. This hotel is within close proximity of Kletterhalle Interlaken and Kunsthaus Interlaken.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 53 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and hair dryers. Conveniences include safes, housekeeping is provided daily, and cribs\\/infant beds (surcharge) can be requested.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Don&amp;apos;t miss out on recreational opportunities including a spa tub and a sauna.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at a coffee shop\\/caf&eacute; serving guests of Hotel Chalet Swiss. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include multilingual staff and an elevator (lift). Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/28\\/860\\/352\\/37092b_A.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}},{\"CityId\":16022,\"Title\":\"Lucerne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":11568,\"Name\":\"Ibis Kriens\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"47.023776174426\",\"Long\":\"8.2990899682045\",\"Address\":\"Industriestrasse 13 6010 Kriens\"},\"Images\":{\"Image\":[{\"ImagId\":284958,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/144\\/2982_ho_00_p_2048x1536_C.jpg\"},{\"ImagId\":284959,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/148\\/2982_ho_01_p_2048x1536_C.jpg\"},{\"ImagId\":284960,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/152\\/2982_ho_02_p_2048x1536_C.jpg\"},{\"ImagId\":284961,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/156\\/2982_ho_03_p_2048x1536_C.jpg\"},{\"ImagId\":284962,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/160\\/2982_ro_00_p_2048x1536_A.jpg\"},{\"ImagId\":284963,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/164\\/2982_ro_01_p_2048x1536_A.jpg\"},{\"ImagId\":284964,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/168\\/2982_ro_02_p_2048x1536_A.jpg\"},{\"ImagId\":284965,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/172\\/2982_ro_03_p_2048x1536_A.jpg\"},{\"ImagId\":284966,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/184\\/2982_ba_00_p_2048x1536_A.jpg\"},{\"ImagId\":284967,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/188\\/2982_ba_01_p_2048x1536_A.jpg\"}]},\"CityId\":16022,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at ibis Luzern Kriens in Kriens, you&amp;apos;ll be in the mountains and close to Franciscan Church and Chapel Bridge.  This hotel is within close proximity of Jesuit Church and Richard Wagner Museum.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Stay in one of 69 guestrooms featuring LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as desks and blackout drapes\\/curtains.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make use of convenient amenities such as complimentary wireless Internet access, a hair salon, and a television in a common area.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Quench your thirst with your favorite drink at a bar\\/lounge. Breakfast is available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, express check-in, and complimentary newspapers in the lobby. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/60\\/251\\/144\\/2982_ho_00_p_2048x1536_C.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}},{\"CityId\":30548,\"Title\":\"Zurich\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":522035,\"Name\":\"ibis Styles Zurich City Center\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"47.38122430000001\",\"Long\":\"8.5424692\",\"Address\":\"Stampfenbachstrasse 60, 8006 Z&uuml;rich, Switzerland\"},\"Images\":[],\"CityId\":30548,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5658,\"SupplierName\":\"REZLIVE\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"340854\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival in paris, transfer to hotel &amp;amp; checkin.&lt;br \\/&gt;\\r\\nOvernight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340855\",\"Title\":\"Disneyland&reg; Parks with Departure from Central Paris\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast reach the pick up point on your own. Board the coach and enjoy an unforgettable day with memories that will stay with you forever in Disneyland Paris. We begin our day by crossing Eastern Paris to the A4 motorway leading to Park Disneyland. (approx. travel time : 1 hour).&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOur driver will leave you at the group parking area close to Disneyland Paris. The group will rejoin the coach at the same spot at the end of the day. Arrival in Paris around 8pm.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2226,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340856\",\"Title\":\"Paris city tour with Eiffel Tower &amp; Seine River Cruise\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Big Bus Paris Hop-On Hop-Off Tour (1 day pass)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Seine River cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Eiffel Tower 2nd Floor Ticket With Priority Access&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Reach the nearest stop of big bus on your own.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":192154,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4381,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340857\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340858\",\"Title\":\"Paris to Swiss\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, get transferred to the station, board your train to Basel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Activate your Swiss Pass at Basel station and board the train for Interlaken.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay at Interlaken.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340859\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Today your day is free at leisure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;You can board a train from Kleine Scheidegg via Lauterbrunnen that will take you to Jungfrau train station &amp;ndash; the highest one on Europe.&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340860\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12756,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340861\",\"Title\":\"Interlaken - Lucern \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After Breakfast, check out from hotel board train for Lucerne.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrive Lucerne, check in to the hotel and rest of the day free at leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;Lion Monument or Chapel Bridge are good options to enjoy some time&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight at the hotel.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11568,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340862\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Today your day is free for leisure.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;You can board a train to Engelberg and proceed to a gondola that will take you to the Tr&amp;uuml;bsee. From here, enjoy a ride in the first ever revolving gondola to reach a Swiss marvel &amp;ndash; Mount Titlis.&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11568,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340863\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340864\",\"Title\":\"Lucerne to Zurich\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast today, check out from hotel and board a train to Zurich. Reach hotel &amp;amp; check in.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rest of the day is free at leisure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;em&gt;You can head to Bahnhofstrasse area to buy home souvenirs&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight in hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30548,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":522035,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340865\",\"Title\":\"Departure\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast get transferred to the airport for your flight back to India.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30548,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"47482\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"122540.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":118455,\"priceDoubleOcc\":\"122540.00\",\"priceSingleOcc\":343112,\"priceExtraBed\":\"91905.00\",\"priceWithoutBed\":\"61270.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":122540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":61270,\"CEB\":91905,\"COSTDO\":122540,\"COSTSO\":343112,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":110286,\"COSTTO\":110286}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots other than mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Nights in Paris&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights in Interlaken&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights in Lucerne&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night in Zurich&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport to hotel transfer in Paris on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel to Station transfer in Paris on Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel to Airport transfer in Zurich on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Train ticket from Paris to Basel (Standard)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 days Consecutive Swiss Pass&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Eiffel Tower 2nd Floor Ticket With Priority Access And Audioguide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Big Bus Paris Hop-on Hop-off Tour with Seine Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Disneyland&amp;reg; Parks With Departure From Central Paris&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA Assistance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"340854\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[340854],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340855\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[340855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340856\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[340856],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340857\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[340857],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340858\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[340858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340859\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[340859],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340860\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[340860],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340861\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[340861],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340862\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[340862],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340863\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[340863],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340864\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[340864],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340865\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[340865],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Paris,Interlaken,Lucerne,Zurich','Paris,Western Europe,France,Interlaken,Europe,Switzerland,Lucerne,Zurich',NULL,'20822,12756,16022,30548',122540,122540,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'France,Switzerland','76,210','2023-09-07 11:48:45','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-europe',NULL,NULL,NULL,0),(354,47393,1,5293,0,0,0,'Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":47393,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-dubai_1674029917\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Dubai, the destination full of luxury, meets all your requirements. Located in the&amp;nbsp;Middle East, it is one of the most preferred holiday destinations in the world. Comprising stunning architectures designed with a modern touch and luxury outlets of high-end brands from around the world.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF DUBAI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"16418\",\"SupplierName\":\"VTD TOURISM PVT. LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Family,Leisure\",\"Validity\":{\"From\":\"2024-01-13\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":5047,\"Name\":\"Grand Excelsior Hotel Bur Dubai\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.250552279544\",\"Long\":\"55.29248893261\",\"Address\":\"Al Mankhool Area Kuwait Road\"},\"Images\":{\"Image\":[{\"ImagId\":121542,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/232\\/01_Main_Entrance_A.jpg\"},{\"ImagId\":121543,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/243\\/02_Reception_Lobby_A.jpg\"},{\"ImagId\":121544,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/597\\/05_A.jpg\"},{\"ImagId\":121545,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/701\\/Suite_A.jpg\"},{\"ImagId\":121546,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/845\\/Meeting_Facilities_A.jpg\"},{\"ImagId\":121547,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/997\\/Restaurant_A.jpg\"},{\"ImagId\":121548,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/348\\/5\\/Standard_Double_Room_A.jpg\"},{\"ImagId\":121549,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/348\\/13\\/07_A.jpg\"},{\"ImagId\":121550,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/348\\/21\\/03_Reception_A.jpg\"},{\"ImagId\":121551,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/25\\/726\\/746\\/Exterior_view_A.jpg\"},{\"ImagId\":121552,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/348\\/29\\/Banquets_A.jpg\"},{\"ImagId\":121553,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/951\\/04_A.jpg\"},{\"ImagId\":121554,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/959\\/DPH_4_A.jpg\"},{\"ImagId\":121555,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/967\\/DPH_33_A.jpg\"},{\"ImagId\":121556,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/25\\/726\\/737\\/Lobby_View_A.jpg\"},{\"ImagId\":121557,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/975\\/DPH_32_A.jpg\"},{\"ImagId\":121558,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/983\\/11_A.jpg\"},{\"ImagId\":121559,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/355\\/995\\/14_A.jpg\"},{\"ImagId\":121560,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/25\\/726\\/728\\/Deluxe_room_A.jpg\"},{\"ImagId\":121561,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/356\\/3\\/06_A.jpg\"},{\"ImagId\":121562,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/356\\/11\\/08_A.jpg\"},{\"ImagId\":121563,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/25\\/726\\/719\\/Suite_A.jpg\"},{\"ImagId\":121564,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/25\\/726\\/764\\/Restaurant_A.jpg\"}]},\"CityId\":8219,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Grand Excelsior Hotel Bur Dubai in Dubai (Bur Dubai), you&amp;apos;ll be convenient to BurJuman Mall and Dubai Museum.  This 4-star hotel is within close proximity of Textile Souk and Grand Mosque.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 282 air-conditioned rooms featuring LCD televisions. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Bathrooms have bathtubs or showers and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take time to pamper yourself with a visit to the full-service spa. You&amp;apos;re sure to appreciate the recreational amenities, including a nightclub, a health club, and an outdoor pool. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite to eat at one of the hotel&amp;apos;s 3 restaurants and 4 coffee shops\\/caf&eacute;s, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a poolside bar or one of the 3 bars\\/lounges. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and limo\\/town car service. Planning an event in Dubai? This hotel has 34647 square feet (3220 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/54\\/347\\/232\\/01_Main_Entrance_A.jpg\",\"AccoAminitiesMask\":\"110111100001010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":5305,\"Name\":\"Royal Ascot Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.259251643057\",\"Long\":\"55.291060191779\",\"Address\":\"Khalid bin waleed Road P.O.Box 115160\"},\"Images\":{\"Image\":[{\"ImagId\":126834,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/732\\/H6GJEL02_C.jpg\"},{\"ImagId\":126835,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/736\\/H6GJEL00_A.jpg\"},{\"ImagId\":126836,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/740\\/H6GJEL03_A.jpg\"},{\"ImagId\":126837,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/752\\/H6GJEL05_A.jpg\"},{\"ImagId\":126838,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/744\\/H6GJEL01_A.jpg\"},{\"ImagId\":126839,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/748\\/H6GJEL04_A.jpg\"}]},\"CityId\":8219,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Royal Ascot Hotel, you&amp;apos;ll be centrally located in Dubai, walking distance from Dubai Cruise Terminal and close to Sheikh Saeed Al Maktoum House.  This 4-star hotel is within close proximity of Textile Souk and The Dubai Heritage Village.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 181 air-conditioned rooms featuring fireplaces and LCD televisions. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and complimentary toiletries. Conveniences include safes and desks, as well as phones with free local calls.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You can take advantage of recreational amenities such as a nightclub, a health club, and an outdoor pool. Additional features at this hotel include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at one of the hotel&amp;apos;s dining establishments, which include 7 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. Relax with a refreshing drink at one of the 6 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, limo\\/town car service, and complimentary newspapers in the lobby. Planning an event in Dubai? This hotel has 1900 square feet (177 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/29\\/630\\/732\\/H6GJEL02_C.jpg\",\"AccoAminitiesMask\":\"110110100001010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3876,\"Title\":\"Marina Dhow Cruise\",\"Description\":\"Dubai Marina Luxury Dhow Dinner Cruise is one of the most loved and unique dining experience. The dinner offers views of some of the gorgeous vistas of Dubai. You can choose to stay in the upper deck, which is an open-air arrangement or in the lower deck, which is an air-conditioned deck.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15828_dhow-marina-01.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"340341\",\"Title\":\"Arrival &amp; Transfer to Hotel, Evening Dinner @Dhow Cruise\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get transferred from Airport to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening enjoy dinner at Marina&amp;nbsp;Dhow Cruise.&amp;nbsp;It is a traditional wooden boat that glides along the Dubai creek under the starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to the hotel afterward.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5047,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":5305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3876,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340343\",\"Title\":\"DUBAI CITY TOUR WITH BURJ KHALIFA 124TH FLOOR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a &lt;strong&gt;Half-Day City Tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age-old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictures from different angles in front of this world-famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age-old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA ON THE 124TH FLOOR&lt;\\/strong&gt; (NON-PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel in Dubai&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5047,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":5305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340345\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;Day at leisure in Dubai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5047,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":5305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340347\",\"Title\":\" Desert Safari \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5047,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":5305,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"340349\",\"Title\":\"Departure\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE as per final day of payment. As of today USD@83.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double\\/twin sharing basis as per itinerary with breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport transfers on&amp;nbsp;Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai half day city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marina Dhow Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with BBQ Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th&amp;nbsp;(Non-prime time)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All tours and transfers on&amp;nbsp;SIC&amp;nbsp;basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA + Insurance&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"340341\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[340341],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340343\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[340343],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340345\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[340345],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340347\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[340347],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"340349\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[340349],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',0,0,4,NULL,NULL,NULL,2,'',0,'2024-01-13 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'United Arab Emirates','228','2024-01-15 13:49:25','2024-01-13 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'best-of-dubai',NULL,NULL,NULL,0),(355,47016,1,5293,0,0,0,'Honeymoon,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":47016,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/vibrant-kerala_1673504938\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Heaven on earth isn&amp;rsquo;t a dream, it&amp;rsquo;s a destination. Kerala tour is so easily and affordably accessible, you don&amp;rsquo;t even have to leave the country.&amp;nbsp; All you have to do is book a Kerala tour packages and hop on to the next flight, train or bus and make your way to the spectacular last stretch of the West Coast of India, to Kerala. Kerala holidays are popular around the world. A mesmerizing Kerala tour where the sublime beaches, cultural richness, historical depth, exotic wildlife, and beautiful mountainsides promise and our Kerala packages always deliver you an unforgettable getaway. So, are you ready to have yours?&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Kochi\",\"DestinationPlacesSysId\":14275,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"I Need Trip\",\"Name\":\"VIBRANT KERALA \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"8720\",\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Leisure\",\"Validity\":{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14275,\"Title\":\"Kochi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599061,\"Name\":\"Fort Queen\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":26569,\"Title\":\"tata tea museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599062,\"Name\":\"At Wood Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":26569,\"Title\":\"tata tea museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599063,\"Name\":\"Spice Residency\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":26569,\"Title\":\"tata tea museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510945,\"Name\":\"Ac Dlx PVT Houseboat\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_510945\\/5293_f84998f98ba2e415de99a7476af36da91658319240.png\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe Houseboat\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":332,\"Title\":\"Chinese Fishing Nets\",\"Description\":\"The Chinese Fishing Nets at Fort Kochi is a must visit attraction in Kerala. These are fixed land installations, used for fishing in a unique method. These nets are fixed on bamboo and teak poles holding it horizontally by huge mechanisms so as to pull them down into the sea.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9312328,\"Long\":76.2673041,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/131\\/thumb\\/Chinese Fishing Nets_219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":520,\"Title\":\"Fort Kochi\",\"Description\":\"Fort Kochi beach is located on the western coast of India and is often known as the &amp;#039;Queen of the Arabian Sea&amp;#039;. It&amp;#039;s a serene beach that offers a scenic view and natural beauty to its visitors. With its pristine water and tranquil ambience, it is extremely admired by tourists and local people as well.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.962765,\"Long\":76.2747035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2239\\/thumb\\/Fort Kochi_933.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1667,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\\r\\n\\r\\nThe credit for its construction goes to the Portuguese Franciscan Friars in 1503. Originally made with mud and wood, it went under a lot of work with the Portuguese, Dutch and the British leaving their imprints on the place. Eventually it would come under the control of the Church of South India in 1949. Visitors are especially charmed by its gabled timber framed roof. The interiors have two stepped pinnacles crowning the top of the chancel roof. The entire experience is the epitome of old school charm from the pulpit made of wood decorated to the confessional to the baptism platform. History has left its imprint here, which is evident to this day.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.9653371,\"Long\":76.2400237,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633728.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1759,\"Title\":\"The Dutch Palace\",\"Description\":\"The Mattancherry Palace is located about 12 km from Ernakulam. One of the finest examples of the Kerala style of architecture mixed with colonial influences, the Portuguese built it as a gift to King Veera Kerala Verma. It came to be known as the Dutch Palace as it underwent major repairs at the hands of the Dutch. It is among the most popular tourist destinations in the Fort Kochi area.\\r\\n\\r\\nThe deity of the royal family, &amp;#039;PazhayannurBhagavathi&amp;#039; (the Goddess of Pazhayannur) is placed in the central courtyard. It boasts of a brilliant collection of murals that retell the great Indian epics Ramayana and Mahabharata along with revered Gods of the Hindu faith like Guruvayoorappan. Most of them are said to have been done between the 17th and 18th century. It covers an area of almost 300 sq. km.There are many other interesting exhibits here as well that constantly inspire intrigue. These include the life-size portraits of all the kings of Cochin since 1864, sheathed swords, daggers and axes together with ceremonial spears decorated with feathers. Royal caps, coins issued by the Kings of Cochin, silver sequined gowns, royal umbrellas made of silk and brass, along with plans laid out for Cochin by the Dutch can also be viewed here.\",\"CurrencyType\":0,\"CityId\":14275,\"CityName\":\"Kochi\",\"Lat\":9.956994,\"Long\":76.2533207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14275\\/sightseeing\\/38_1521633107.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":26569,\"Title\":\"tata tea museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":8720,\"SupplierName\":\"SOUTHERN DREAMZ HOLIDAYS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"338040\",\"Title\":\"Arrival Kochi\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;&amp;nbsp;Cochin &amp;ndash; Arrival at cochin airport\\/Railway station and transfer to hotel. Check in at hotel. After&amp;nbsp;proceed for Cochin Sightseeing. Visit the Dutch Palace-built by the Portuguese in 1557 and subsequently renovated by the Dutch after 1663. The murals are perhaps the best in India. Jewish Synagogue - built in 1568 and the oldest Synagogue in the Commonwealth are at Mattancherry. St. Francis Church - built in 1510 and the oldest European church in India, Chinese Fishing Nets afternoon visit Fort cochin beach .overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599061,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":332,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":520,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1667,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1759,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338041\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338042\",\"Title\":\"Kochi to Munnar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast check out form the hotel and transfer to Munnar, which is called as &amp;ldquo;Nature Lover&amp;rsquo;s Paradise&amp;rdquo; and is at 1800mts above the sea level. On the way to Munnar visit Cheyyappara water falls. Check in at hotel. Evening have a short visit at Munnar. You can see the beautiful tea estates like a green paradise. Overnight stay at Munnar Day&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338043\",\"Title\":\"Munnar Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast proceed for Munnar sightseeing. Visit Eravikulam National Park in the morning. In the afternoon visit Mattupetty Dam\\/Kundala dam for boating, Eco point, tata tea museum, Ponthenmedu view point, Blossom Park etc. Evening at leisure. Overnight at Munnar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4293,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1377,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":26569,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338044\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338045\",\"Title\":\"Munnar to Thekkady\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning have breakfast at hotel and drive to Thekkady. Thekkady is a world famous wildlife sanctuary and it is also called as Periyar. On arrival check in Hotel Afternoon proceed for a game viewing cruise on the Periyar Lake. Here you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, wild boar etc evening you can take a Elephant ride at Periyar wild life and rest of the day is at leisure&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599063,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338046\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338047\",\"Title\":\"Thekkady to Alleppey\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast proceed to Alleppey. Check into Houseboat. While backwater cruising along the village sides and paddy fields witnessing the core life of the Kerala villages. Overnight stay at houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510945,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Houseboat\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338048\",\"Title\":\"Alleppey - Cochin\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;This morning after breakfast from the houseboat, disembark and drive to Cochin.&amp;nbsp; Later drop at Cochin Airport to board your flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"47016\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16995.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995},{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"16995.00\",\"priceDoubleOcc\":\"16995.00\",\"priceSingleOcc\":33990,\"priceExtraBed\":\"16995.00\",\"priceWithoutBed\":\"16995.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":16995,\"CEB\":16995,\"COSTDO\":16995,\"COSTSO\":33990,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16995,\"COSTTO\":16995}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accomodation on twin\\/double sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plans as mentioned in above all hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers &amp;amp; All Sightseeing by AC Sedan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All toll,tax,parking &amp;amp; Fuel Cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"338040\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[338040],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"338041\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[338041],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338042\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[338042],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"338043\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[338043],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"338044\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[338044],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338045\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[338045],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"338046\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[338046],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338047\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[338047],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"338048\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[338048],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Kochi,Munnar,Thekkady,Alleppey','Kochi,Kerala,Indian Subcontinent,South India,India,Munnar,Thekkady,Alleppey',NULL,'14275,18697,27156,670',16995,16995,5,NULL,NULL,NULL,2,'',0,'2024-03-02 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'India','101','2024-03-02 18:54:27','2024-03-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'vibrant-kerala',NULL,NULL,NULL,0),(356,47013,1,5293,0,0,0,'Family,Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":47013,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/classic-golden-triangle_1691740137\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;An all-time classic, India&amp;#39;s Golden Triangle tour offers you the opportunity to explore three of the most popular destinations and experience India&amp;rsquo;s culture and history. Chaotic, crazy, wonderful, daunting, overwhelming and fantastic &amp;ndash; you will experience all of these feelings during this trip and leave amazed.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"CLASSIC GOLDEN TRIANGLE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family,Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":355615,\"Name\":\"Hotel Taj Inn\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.162048\",\"Long\":\"78.0390466\",\"Address\":\"18\\/163, B\\/4, Taj View X-ing,\\nFatehabad Road,Uttar Pradesh,India, , , 282 001.\"},\"Images\":[],\"CityId\":266,\"Brief\":\"Hotel Taj Inn, Agra with a vibrant appeal invites guests to spend some of those coveted moments with loved ones in the beautiful city of Taj. The hotel features contemporary decor replete with luxurious ambience and warm hospitality. This hotel&#039;s proximity to Taj Mahal makes it even more perfect for all travellers.\\n\\n&lt;b&gt;Location: &lt;\\/b&gt;\\nLocated at Taj View Crossing in Agra, Hotel Taj Inn offers easy access to places of attraction like Masjid Kareem Shah (Approx. 0.5km) and Taj Mahal (Approx. 3km). This hotel boasts of its proximity to the Tourist Complex Area and Sadar Bazaar which is one of the most popular shopping destinations. Some of the other attractions worth visiting in the city of Taj Mahal are the beautiful garden Mehtab Bagh, Bageshwarnath Temple and Humayun&#039;s Mosque.\\n\\nDistance from Kheria airport: Approx. 8km\\nDistance from Agra Fort Railway station: Approx. 5km\\nDistance from Agra Cantonment Railway station: Approx. 5km\\n\\n&lt;b&gt;Hotel Facilities: &lt;\\/b&gt;\\nThe conference hall of the hotel is well-fitted with facilities like audio\\/visual equipments and LCD\\/Projector making it a perfect venue for corporate events. Non-smoking rooms, airport and railway station transfers, parking, phone service, front desk, wake-up service, 24 hr security, laundry, travel desk and doctor on call are some of the amenities provided by the hotel to ensure a hassle free stay. The hotel provides variety of dining options such as Star chilly, the multi cuisine restaurant that serves aromatic and delicious Indian, Chinese and Continental food and Flower nest, the roof top restaurant that lures food lovers with its range of local and international flavours.\\n\\n&lt;b&gt;Rooms: &lt;\\/b&gt;\\nThe AC deluxe rooms sport a simple decor and are aptly furnished, allowing the guests to delve into a world of absolute comfort and cosiness. The air conditioned rooms feature a host of amenities such as colour TV, internet access, writing desk, refrigerator, tea\\/coffee maker, safe, private bathroom, telephone with direct dialling and in-room menu to make the stay convenient.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532743,\"Name\":\"Holiday Inn Agra Mg Road\",\"Star\":\"4.00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.19744\",\"Long\":\"78.0027065\",\"Address\":\"Commercial Complex, 16\\/2\\/8, Mahatma Gandhi Rd, Sanjay Palace, Sanjay Place, Civil Lines, Agra, Uttar Pradesh 282002, India\"},\"Images\":[],\"CityId\":266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_532743\\/5293_85e9f3e60e48ec52bb655e6261d71d1e1672900017.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":105083,\"Name\":\"Regenta Central\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.95820172274\",\"Long\":\"75.843706070352\",\"Address\":\"Opposite Jalmahal Amer Road \"},\"Images\":{\"Image\":[{\"ImagId\":2285059,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_17_t.jpg\"},{\"ImagId\":2285060,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_20_t.jpg\"},{\"ImagId\":2285061,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_23_t.jpg\"},{\"ImagId\":2285062,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_26_t.jpg\"},{\"ImagId\":2285063,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_28_t.jpg\"},{\"ImagId\":2285064,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_29_t.jpg\"},{\"ImagId\":2285065,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_32_t.jpg\"},{\"ImagId\":2285066,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_39_t.jpg\"},{\"ImagId\":2285067,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_41_t.jpg\"},{\"ImagId\":2285068,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_22_t.jpg\"},{\"ImagId\":2285069,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_19_t.jpg\"},{\"ImagId\":2285070,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_24_t.jpg\"},{\"ImagId\":2285071,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_27_t.jpg\"},{\"ImagId\":2285072,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_30_t.jpg\"},{\"ImagId\":2285073,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_31_t.jpg\"},{\"ImagId\":2285074,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_34_t.jpg\"},{\"ImagId\":2285075,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_35_t.jpg\"},{\"ImagId\":2285076,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_36_t.jpg\"},{\"ImagId\":2285077,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_38_t.jpg\"},{\"ImagId\":2285078,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_25_t.jpg\"},{\"ImagId\":2285079,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_18_t.jpg\"},{\"ImagId\":2285080,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_40_t.jpg\"},{\"ImagId\":2285081,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_33_t.jpg\"},{\"ImagId\":2285082,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_21_t.jpg\"},{\"ImagId\":2285083,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_37_t.jpg\"}]},\"CityId\":12995,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Regenta Central in Jaipur (Mansagar Lake), you&amp;apos;ll be close to Jal Mahal and Amber Fort. This hotel is within close proximity of Gaitor and Jaigarh Fort.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the air-conditioned rooms featuring LCD televisions. Complimentary wireless Internet access is available to keep you connected. Bathrooms with showers are provided. Conveniences include safes and coffee\\/tea makers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in one of the hotel&amp;apos;s 2 coffee shops\\/caf&eacute;s. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Planning an event in Jaipur? This hotel has facilities measuring 2500 square feet (225 square meters), including meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request).&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6120000\\/6118100\\/6118050\\/6118050_17_t.jpg\",\"AccoAminitiesMask\":\"101000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532926,\"Name\":\"Hotel Metro Inn\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9179107\",\"Long\":\"75.7919307\",\"Address\":\"Plot No. 9 opp. ITC Rajputana Sheraton Fateh Singh Market, Gopalbari, Jaipur, Rajasthan 302006, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"338014\",\"Title\":\"Arrive Delhi \\/ Drive to Agra (242 Km)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Delhi, and be ready for a wonderful journey to &amp;ldquo;Golden Tringle&amp;rdquo;. At Delhi Airport or Railway station our Driver will meet you and drive you to Agra by road.&amp;nbsp;&lt;br \\/&gt;\\r\\nAgra is the city of the inimitable Taj Mahal. The story of Agra begins much earlier than the Taj, however it&amp;nbsp;finds mention in the epic Mahabharata when it was called Agrabana are Paradise. The golden age of the city&amp;nbsp;began with the Mughals. It was known then as Akbarab?d and remained the capital of the Mughal Empire&amp;nbsp;under the emperor Akbar, Jahangir and Shah Jahan.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nUpon arrival check in at hotel. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":355615,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532743,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338016\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338018\",\"Title\":\"Agra &ndash; Jaipur \\/ City Tour Agra &ndash; Drive to Jaipur (240 Km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, ready for Agra City tour, Visit Taj Mahal and Agra Fort. The Taj Mahal is an ivory-white marble mausoleum on the south bank of the Yamuna River It was&lt;br \\/&gt;\\r\\ncommissioned in 1632 by the Mughal emperor, Shah Jahan to house the tomb of his favourite wife, Mumtaz Mahal. The tomb is the centrepiece of a 17-hectare (42-acre) complex, which includes a mosque and a&amp;nbsp;garden. The Taj Mahal was designated as a UNESCO World Heritage Site in 1983 and declared a winner of the&lt;br \\/&gt;\\r\\nNew 7 Wonders of the World (2000&amp;ndash;2007). Later visit Agra Fort, it was the main residence of the emperors of&amp;nbsp;the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The Agra fort is a UNESCO&amp;nbsp;World Heritage site.&lt;br \\/&gt;\\r\\nLater Proceed to Jaipur and enroute visit Fatehpur Sikri. Fatehpur Sikri was a once blooming capital of the Mughal Emperor Akbar till 1585, when the city was abandoned due to the proximity of the area to the&amp;nbsp;Rajputana neighborhood and scarcity of water. The capital was moved back to Agra and the town remained a&amp;nbsp;ghost town during most of the older times. The name Fatehpur Sikri was formerly known as Fatahabad which&amp;nbsp;is derived from a Persian word Fatah meaning victory.&lt;br \\/&gt;\\r\\nDrive to Jaipur &amp;ldquo;The Pink City&amp;rdquo;. Founded in AD 1727 by Maharaja Sawai Jai Singh II, and planned by Vidyadhar&amp;nbsp;Bhattacharya, Jaipur holds the distinction of being the first planned city of India. The story goes that in 1876,&amp;nbsp;the Prince of Wales visited India on a tour. Since the colour pink was symbolic of hospitality, Maharaja Ram&amp;nbsp;Singh of Jaipur painted the entire city pink. The pink that colours the city makes for a marvellous spectacle to&amp;nbsp;behold. With broad avenues and spacious gardens, the city is steeped in history and culture. Here the past&amp;nbsp;comes alive in magnificent forts and palaces, blushed pink, where once lived the maharajas. The bustling&amp;nbsp;bazaars of Jaipur, famous for Rajasthan jewellery, fabric and shoes, possess a timeless quality and are a&amp;nbsp;treasure-trove for the shoppers.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival check in at hotel. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":105083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":499,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338020\",\"Title\":\"Jaipur Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast proceed to Jaipur City tour. Visit Amber Fort, Jantar Mantar, Hawa Mahal, and City Palace.&lt;br \\/&gt;\\r\\nAmber or Amer Palace fort a UNESCO World Heritage Site is located 11 km from main city. Raja Man Singh I&amp;nbsp;began construction in 1592 and the palace, which was built as a strong, safe haven against attacking enemies, was completed by Mirja Raja Jai Singh. The contrast between the harsh exterior and the inviting interior&amp;nbsp;couldn&amp;rsquo;t be more surprising. The magnificent Amer Fort is an extensive palace complex that has been built&amp;nbsp;with pale yellow and pink sandstone, and with white marble. The palace is nearly seven centuries old and has&amp;nbsp;a legendary past. Next stop is City Palace, located deep within the walled city, the City Palace Complex was&amp;nbsp;conceived and built by Maharaja Sawai Jai Singh II, the founder of Jaipur. A beautiful fusion of Mughal and&amp;nbsp;Rajput architecture, the palace is still home to the last ruling royal family which lives in a private section of&amp;nbsp;the palace. Maharaja Sawai Jai Singh II is credited with building most of the structures, but it was expanded&amp;nbsp;upon by later rulers as well. Further proceed to Jantar Mantar, Jantar Mantar is one of the oldest&amp;nbsp;astronomical observatories featuring the world&amp;rsquo;s largest stone sundial. Built by the Rajput king Sawai Jai&amp;nbsp;Singh II - the founder of Jaipur city, the monument was completed in 1734. Later visit Hawa Mahal, the five-&amp;nbsp;storey building looks like a honeycomb of a beehive and it is always windy inside, owing to the numerous&amp;nbsp;windows and jharokhas. This amazing ventilation that the palace enjoys is the reason why it was named as&amp;nbsp;the Hawa Mahal, which literally translates into the &amp;ldquo;Palace of the Winds&amp;rdquo; The Hawa Mahal is a five-storey&amp;nbsp;building, and it is the tallest building in the world that has been built without a foundation.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nRest day is free for Shopping. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532926,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":105083,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"338022\",\"Title\":\"Depart Jaipur Drive to Delhi (272 Km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning After Breakfast drive back to Delhi airport or railway station for your onward journey. Your Golden Tringle Tour ends with beautiful memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"47013\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13970.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13504,\"priceDoubleOcc\":\"13970.00\",\"priceSingleOcc\":41910,\"priceExtraBed\":\"10477.50\",\"priceWithoutBed\":\"6985.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13970,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6985,\"CEB\":10477.5,\"COSTDO\":13970,\"COSTSO\":41910,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12573,\"COSTTO\":12573}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"47014\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17490.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16907,\"priceDoubleOcc\":\"17490.00\",\"priceSingleOcc\":52470,\"priceExtraBed\":\"13117.50\",\"priceWithoutBed\":\"8745.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8745,\"CEB\":13117.5,\"COSTDO\":17490,\"COSTSO\":52470,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15741,\"COSTTO\":15741}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Additional \\/ personal use of vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any extra excursions or sightseeing apart from the above specified itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin \\/ Triple sharing basis in hotels mentioned or similar with breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers and Sightseeing by Sedan \\/ Innova \\/ Tempo traveller or similar Vehicle as per the booking&amp;nbsp;suitable to the number of passengers travelling together.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"338014\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[338014],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338016\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[338016],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338018\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[338018],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338020\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[338020],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"338022\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[338022],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Agra,Jaipur','Agra,Uttar Pradesh,Indian Subcontinent,North India,India,Jaipur,Rajasthan',NULL,'266,12995',13970,17490,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:51:57','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'classic-golden-triangle',NULL,NULL,NULL,0),(359,46525,1,5293,0,0,0,'Honeymoon,Family,Culture,Festivals and Events,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":46525,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/rajasthan-delight-ex-udaipur_1672901741\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Explore the crafted elegance and grandeur of the mystic Rajasthan with this Tour Package. This tailor-made Rajasthan package is crafted to provide an enthralling holiday experience to the travelers during their trip to the royal city of Udaipur. Both Mount Abu and Udaipur are home to many remarkable places. Most of these places have a glorious past attached to them. This tour package clubs the best of wonders situated in these places to offer you a truly awe-inspiring experience.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Mount Abu\",\"SourcePlaceSysId\":18551,\"AgencyName\":\"I Need Trip\",\"Name\":\"RAJASTHAN DELIGHT EX-UDAIPUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Intercity Transfers,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Culture,Festivals and Events,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18551,\"Title\":\"Mount Abu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":484418,\"Name\":\"Hotel Maharaja International\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":18551,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532782,\"Name\":\"Hotel Hillock\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5862442\",\"Long\":\"72.7150029\",\"Address\":\"Abu Cart Road, Mount Abu, Rajasthan 307501, India\"},\"Images\":[],\"CityId\":18551,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":436,\"Title\":\"Dilwara Temples\",\"Description\":\"The temple inside showcases the phenomenal work of human craftsmanship getting it done. These temples were built between eleventh to thirteenth century AD and elaborate subtle elements of marble stone carvings, which is remarkable and unmatched.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5925,\"Long\":72.7083,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/168\\/thumb\\/Dilwara Jain Temple_815.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1186,\"Title\":\"Nakki Lake\",\"Description\":\"It is the first man-made lake in India with a depth of around 11,000 metres and a width of a quarter of a mile. Located in the centre of the hill station, the fascinating lake is surrounded by lush greenery, mountains and strangely shaped rocks.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5945112,\"Long\":72.7062297,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/170\\/thumb\\/Nakki Lake_915.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1795,\"Title\":\"Tod Rock\",\"Description\":\"Known as The mascot of Mount Abu, Toad Rock is one of the most frequented point. To see the panoramic beauty of the surrounding lake and greenish hilly regions one can climb up the rock and capture the breathtaking scenery.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5925909,\"Long\":72.7156274,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3677\\/thumb\\/Tod Rock_967.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1512,\"Title\":\"Sajjangarh Palace (Monsoon Palace)\",\"Description\":\"The Monsoon Palace, also known as the Sajjan Garh Palace, is a hilltop palatial residence in the city of Udaipur, Rajasthan in India, overlooking the Fateh Sagar Lake. It is named Sajjangarh after Maharana Sajjan Singh (1874&amp;ndash;1884) of the Mewar Dynasty, who built it in 1884. The palace offers a panoramic view of the city&amp;#039;s lakes, palaces and surrounding countryside. It was built chiefly to watch the monsoon clouds hence, appropriately, it is popularly known as Monsoon Palace. It is said that the Maharana built it at the top of the hill to get a view of his ancestral home, Chittaurgarh. Previously owned by the Mewar royal family, it is now under the control of the Forest Department of the Government of Rajasthan and has recently been opened to the public. The palace provides a beautiful view of the sunset.High in the Aravalli Hills, just outside Udaipur, the Palace is illuminated in the evenings, giving a golden orange glow (see image in the infobox).[8] The palace was used in the 1983 James Bond film Octopussy as the residence of Kamal Khan, an exiled Afghan prince.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Sajjangarh_Palace_(Monsoon_Pal_28058_1529404003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1825,\"Title\":\"Udaipur City Tour\",\"Description\":\"A magnificent compositional wonder towering over the lake on a slope encompassed by crenallated dividers, it is an aggregation of yards, structures, porches, halls, rooms and hanging gardens. The fundamental passage is through the triple curved entryway, the &amp;quot;Tripolia&amp;quot; with eight marble patios. The maharanas were weighed under the entryway in gold, the equal measure of which was circulated among the masses. The Suraj Gokhada, the overhang of the sun, is the place the Suryavanshi Maharanas of Mewar introduced themselves to the general population in a bad position to reestablish their certainty. The &amp;#039;Mor Chowk&amp;#039; known for its perfect peacock mosaics in glass and the &amp;#039;Chini Chitrashala&amp;#039; noted for its blue and white earthenware production are different attractions in the Palace.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Udaipur_City_Tour_28058_1529403131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":532780,\"Name\":\"Regenta Central Udaipur\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5896533\",\"Long\":\"73.6954523\",\"Address\":\"8,Hazareshwar Colony, HMQW+R4Q, Court Chowk, Court Choraha, Madhuban, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":532783,\"Name\":\"Hotel Devraj Niwas on Lake Pichola Udaipur\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.579183\",\"Long\":\"73.682457\",\"Address\":\"32, Lal Ghat Road, Old City, Silawatwari, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":436,\"Title\":\"Dilwara Temples\",\"Description\":\"The temple inside showcases the phenomenal work of human craftsmanship getting it done. These temples were built between eleventh to thirteenth century AD and elaborate subtle elements of marble stone carvings, which is remarkable and unmatched.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5925,\"Long\":72.7083,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/168\\/thumb\\/Dilwara Jain Temple_815.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1186,\"Title\":\"Nakki Lake\",\"Description\":\"It is the first man-made lake in India with a depth of around 11,000 metres and a width of a quarter of a mile. Located in the centre of the hill station, the fascinating lake is surrounded by lush greenery, mountains and strangely shaped rocks.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5945112,\"Long\":72.7062297,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/170\\/thumb\\/Nakki Lake_915.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1795,\"Title\":\"Tod Rock\",\"Description\":\"Known as The mascot of Mount Abu, Toad Rock is one of the most frequented point. To see the panoramic beauty of the surrounding lake and greenish hilly regions one can climb up the rock and capture the breathtaking scenery.\",\"CurrencyType\":0,\"CityId\":18551,\"CityName\":\"Mount Abu\",\"Lat\":24.5925909,\"Long\":72.7156274,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3677\\/thumb\\/Tod Rock_967.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1512,\"Title\":\"Sajjangarh Palace (Monsoon Palace)\",\"Description\":\"The Monsoon Palace, also known as the Sajjan Garh Palace, is a hilltop palatial residence in the city of Udaipur, Rajasthan in India, overlooking the Fateh Sagar Lake. It is named Sajjangarh after Maharana Sajjan Singh (1874&amp;ndash;1884) of the Mewar Dynasty, who built it in 1884. The palace offers a panoramic view of the city&amp;#039;s lakes, palaces and surrounding countryside. It was built chiefly to watch the monsoon clouds hence, appropriately, it is popularly known as Monsoon Palace. It is said that the Maharana built it at the top of the hill to get a view of his ancestral home, Chittaurgarh. Previously owned by the Mewar royal family, it is now under the control of the Forest Department of the Government of Rajasthan and has recently been opened to the public. The palace provides a beautiful view of the sunset.High in the Aravalli Hills, just outside Udaipur, the Palace is illuminated in the evenings, giving a golden orange glow (see image in the infobox).[8] The palace was used in the 1983 James Bond film Octopussy as the residence of Kamal Khan, an exiled Afghan prince.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Sajjangarh_Palace_(Monsoon_Pal_28058_1529404003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":551,\"Title\":\"Garden Of The Maidens\",\"Description\":\"Saheliyon ki Bari is one of the significant traveler destinations in Udaipur, Rajasthan. Actually meaning the &amp;#039;greenery enclosure of ladies&amp;#039;, this greenhouse was worked for the gathering of 48 orderlies that a princess carried alongside her. Situated beneath the bank of the Fateh Sagar Lake, the patio has numerous pools, wellsprings, and water channels that upgrade the atmosphere of the spot. As per legend the greenery enclosure was built to help the Queen&amp;#039;s ladies have a fabulous time and peace far from the political ruses of the primary royal residence. The Queen and her friends used to appreciate unlimited hours of unwinding and fun and that clarifies the name of this nature-favored patio nursery.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Garden_Of_The_Maidens_28058_1529405797.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1825,\"Title\":\"Udaipur City Tour\",\"Description\":\"A magnificent compositional wonder towering over the lake on a slope encompassed by crenallated dividers, it is an aggregation of yards, structures, porches, halls, rooms and hanging gardens. The fundamental passage is through the triple curved entryway, the &amp;quot;Tripolia&amp;quot; with eight marble patios. The maharanas were weighed under the entryway in gold, the equal measure of which was circulated among the masses. The Suraj Gokhada, the overhang of the sun, is the place the Suryavanshi Maharanas of Mewar introduced themselves to the general population in a bad position to reestablish their certainty. The &amp;#039;Mor Chowk&amp;#039; known for its perfect peacock mosaics in glass and the &amp;#039;Chini Chitrashala&amp;#039; noted for its blue and white earthenware production are different attractions in the Palace.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Udaipur_City_Tour_28058_1529403131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"334975\",\"Title\":\"Arrive in Udaipur followed by transfer to Mount Abu (165 Km)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Udaipur, and be ready for a wonderful journey to the &amp;ldquo;Rajasthan Delight Tour&amp;rdquo;. At Udaipur Airport or Railway station, our Driver will meet you and drive you to Mount Abu.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Mount Abu Located on the beautiful Aravali range, is the only hill station in Rajasthan. This city experiences colder climates and offers pretty amazing scenery. Studded with a colorful mix of rustic abodes of tribal communities and posh houses inclusive of British-style bungalows and royal holiday lodges, Mount Abu appears to be no less than a wonder in this desert state. Covered in vast stretches of green forests, serene lakes, and effusive waterfalls, this region allows you to revel amidst panoramic vistas, all year round. Upon arrival check-in at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18551,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532782,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334977\",\"Title\":\"Mount Abu Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast ready to explore Mount Abu. Visit Dilwara Jain Temple, established sometime between the 11th and 13th centuries, the Dilwara Jain temples are considered to be among the best specimens of architectural perfection in the country. A complex of five temple structures, the Dilwara Jain temples are located at a distance of about 2.5 kilometers from Mount Abu. Carved out of white marble, these temples feature interiors that have intricate designs spreading everywhere from doorways to ceilings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit Toad Rock, the Toad Rock is a colossal rock piece which looks like a toad about to jump into the waters of the lake. Known as the &amp;ldquo;mascot of Mount Abu&amp;rdquo;. The massive rock structure is an excellent illustration of igneous rocks found in amazing shapes and is shaped, as the name suggests, like a toad.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The last stop is at Nakki Lake.&amp;nbsp; Nakki lake is recognized as the first ever manmade lake in India You can choose to take a boat ride at the lake and watch the sun set past the beautiful hills surrounding this place.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later back to the hotel. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18551,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":484418,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532782,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":436,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1186,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1795,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334979\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18551,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334981\",\"Title\":\"Mount Abu &ndash; Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning After Breakfast drive to Udaipur by road. Udaipur the city of lakes is located around azure water lakes and is hemmed in by the lush green hills of Aravallis. The famous Lake Palace, located in the middle of Lake Pichola is one of the most beautiful sights of Udaipur.&amp;nbsp;Udaipur was founded in 1553 by Maharana Udai Singh II as the new capital of the Mewar Kingdom. &amp;nbsp;The beautiful City Palace and Sajjangarh (Monsoon Palace) add to the architectural beauty and grandeur of the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival check-in at your hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532780,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1512,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334983\",\"Title\":\"Udaipur Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, visit, Saheliyon Ki Bari,&amp;nbsp;City Palace, and Lake Pichola.&lt;br \\/&gt;\\r\\n&lt;strong&gt;Sahelion-Ki-Bari: &lt;\\/strong&gt;Built by Maharana Sangram Singh II as a garden for women, also known as the Garden of the Maidens is a popular tourist destination. Along with a small museum, it has several attractions such as marble elephants, fountains, kiosks, and a lotus pool.&lt;br \\/&gt;\\r\\nLater visit City Palace; &lt;strong&gt;The City Palace&lt;\\/strong&gt; towers over Lake Pichola. The balconies, cupolas, and towers of the palace give a wonderful view of the lake and the surrounding city. This complex actually consists of four major and several minor palaces that collectively form the magnificent City Palace. The main part of the palace is now preserved as a museum displaying artifacts.&lt;br \\/&gt;\\r\\nAfter this visit &lt;strong&gt;Lake Pichola.&lt;\\/strong&gt; Picholi was the name of a village that lent its name to the lake. The islands of Jag Niwas and Jagmandir are housed in this lake. Along the eastern banks of the lake lies the City Palace.&lt;br \\/&gt;\\r\\nA boat ride in the lake around sunset offers a breathtaking view of the Lake and City Palace. &lt;em&gt;(direct payment basis)&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later back to hotel. Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":532783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":532780,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":551,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1360,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1825,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"334985\",\"Title\":\"Depart Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, transfer to Udaipur airport or railway station for your onward journey. Your &amp;ldquo;Best of Rajasthan Tour&amp;rdquo; ends with beautiful memories.After breakfast, transfer to Udaipur airport or railway station for your onward journey. Your &amp;ldquo;Best of Rajasthan Tour&amp;rdquo; ends with beautiful memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"46525\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18370.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17758,\"priceDoubleOcc\":\"18370.00\",\"priceSingleOcc\":55110,\"priceExtraBed\":\"13777.50\",\"priceWithoutBed\":\"9185.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18370,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9185,\"CEB\":13777.5,\"COSTDO\":18370,\"COSTSO\":55110,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16533,\"COSTTO\":16533}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"46526\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A\\/C will not work in Vehicle during your journey in Hills&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers and Sightseeing by Sedan \\/ Innova \\/ Tempo traveler or similar, Vehicle as per the booking suitable to the number of passengers traveling together.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"334975\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[334975],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334977\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[334977],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334979\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[334979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334981\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[334981],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334983\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[334983],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"334985\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[334985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mount Abu,Udaipur','Mount Abu,Rajasthan,Indian Subcontinent,North India,India,Udaipur',NULL,'18551,28058',18370,24750,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:53:23','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rajasthan-delight-ex-udaipur',NULL,NULL,NULL,0),(360,45914,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":45914,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-kashmir_1672138882\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;If there is heaven on earth, it is in Kashmir. The real paradise of Kashmir is an ultimate place for holidaying in the lap of nature. The place enjoys diverse wildlife, snow-capped mountains, picturesque valleys, charming landscapes, flowery gardens, traditional houseboats and much more. Known with beautiful names like &amp;#39;Alps of East&amp;#39;, &amp;#39;Kingdom of Heaven&amp;#39; and &amp;#39;Paradise on Earth&amp;#39;, Kashmir is an awesome destination for honeymooners but others as well visit this wonderful destination for getting connected to the beauty of nature.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF KASHMIR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"13429\",\"SupplierName\":\"CARROT HOLIDAYS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510339,\"Name\":\"Deluxe Houseboat Srinagar\\/\\/Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414483,\"Name\":\"Hotel Royal Arabia\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0904\",\"Long\":\"74.8372\",\"Address\":\"Khayam Chowk, Dalgate, Srinagar 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":414970,\"Name\":\"Forest Hill Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.036626\",\"Long\":\"75.321592\",\"Address\":\"Laripora,Jammu and Kashmir,India, 192126\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"Forest Hill Resort, Pahalgam, is a great resort in Pahalgam with rooms that offer a view of picturesque mountains and river Lidder. The resort is designed to meet the needs of both business and leisure travellers. Ideally located from all major tourist spots, the resort proves to be travel-convenient for the guests.\\n\\n&lt;b&gt;Location:&lt;\\/b&gt;\\nForest Hill Resort is located in Laripora. The lush green hills in Baisaran, Pahalgam (Approx. 2km) are situated close to the hotel. Guests can visit the beautiful greenish blue Sheshnag Lake, Pahalgam (Approx. 3km) which serves as an en route for pilgrims going for Amarnath yatra. There are also many tourist spots that are located nearby like Aru, Aishmuqam and Sun temple.\\n\\nDistance from Srinagar International Airport: Approx. 94kms\\nDistance from Srinagar Railway Station: Approx. 83kms\\n\\n&lt;b&gt;Hotel Features:&lt;\\/b&gt;\\nDesigned to provide utmost comfort, the hotel is equipped with necessary amenities. The array of basic amenities include room service, 24-hour front desk, parking, travel desk and 24-hour security. For business travellers, the resort ensures conference facilities and board room. The hotel has dining rooms wherein breakfast, lunch and dinner are served for the guests. Guests can relish Indian, Continental and authentic Kashmiri cuisines during the stay.\\n\\n&lt;b&gt;Rooms:&lt;\\/b&gt;\\nRooms are classified as standard rooms and deluxe rooms. These rooms are well-furnished and each room has a touch of elegance. In addition to offering good scenic view of the hills and the river, these rooms feature amenities like colour television and telephone.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/3547\\/354747\\/images\\/res_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":92383,\"Name\":\"Gulmarg Resort\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0525\",\"Long\":\"74.3912\",\"Address\":\"Near Gandola Cable Car Gulmarg 193403\"},\"Images\":{\"Image\":[{\"ImagId\":2033123,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718080020175796.jpg?s=312x\"},{\"ImagId\":2033124,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718420020176201.jpg?s=312x\"},{\"ImagId\":2033125,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130422190627.jpg?s=312x\"},{\"ImagId\":2033126,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix5.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130425170853245.jpg?s=312x\"},{\"ImagId\":2033127,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix2.agoda.net\\/hotelimages\\/460\\/460476\\/460476_130425171228950.jpg?s=312x\"}]},\"CityId\":11197,\"Brief\":\"Gulmarg Resorts is a popular choice amongst travelers in Gulmarg, whether exploring or just passing through. Offering a variety of facilities and services, the hotel provides all you need for a good night&#039;s sleep. 24-hour room service, Wi-Fi in public areas, car park, room service, restaurant are on the list of things guests can enjoy. Some of the well-appointed guestrooms feature desk, television, satellite\\/cable TV, shower, bathtub. Recuperate from a full day of sightseeing in the comfort of your room or take advantage of the hotel&#039;s recreational facilities, including garden. Friendly staff, great facilities and close proximity to all that Gulmarg has to offer are three great reasons you should stay at Gulmarg Resorts.\",\"MainImg\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/460\\/460476\\/460476_14070718080020175796.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1819,\"Title\":\"Tulian Lake\",\"Description\":\"Tulian Lake a lake and tourist destination at Pahalgam in Anantnag District of the state of Jammu and Kashmir, India. It lies at an altitude of 3,684 metres above sea level, 16 kilometres southwest from Pahalgam and 11 kilometres from Baisaran. The lake often has chunks of ice floating in it. It is surrounded on three sides by mountains that rise to over 4,800 metres (15,700 ft) and that are usually covered with snow. It is located in a meadow dotted with pine forests.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1370\\/thumb\\/Tulian Lake_680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":661,\"Title\":\"Hazratbal Shrine\",\"Description\":\"The Hazratbal Shrine, considered to be the holiest Muslim shrine in Kashmir, is located on the left bank of the Dal. The mosque was established by Inayat Begum who was the custodian of the holy relic the Moi-e-Muqqadas, which is believed to be a hair of the Prophet Mohammed.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1036\\/thumb\\/Hazratbal Shrine_354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1318,\"Title\":\"Pari Mahal\",\"Description\":\"Pari Mahal or The Angels Abode is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2812\\/thumb\\/Pari Mahal_46.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":13429,\"SupplierName\":\"CARROT HOLIDAYS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"331371\",\"Title\":\"Arrive at Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at airport, meet our local representative who will transfer you to the houseboat, Arrive&amp;nbsp;and Check in to the Houseboat and evening enjoy Famous&amp;nbsp;Shikara&amp;nbsp;ride on Dal Lake for 01 hour and night at Houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510339,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331372\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331373\",\"Title\":\"Srinagar - Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to&amp;nbsp;Pahalgam, arrive and check in the Hotel and rest.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pahalgam&amp;nbsp;valley tour - Pahalgam&amp;nbsp;is a hill station in the north Indian state of Jammu and Kashmir. Mountain trails run northeast to&amp;nbsp;Amarnath&amp;nbsp;Cave Temple, a Hindu shrine and site of the annual&amp;nbsp;Amarnath&amp;nbsp;Yatra&amp;nbsp;pilgrimage. Over&amp;nbsp;Aru&amp;nbsp;Wildlife Sanctuary is home to animals including brown bears and musk deer. Northeast, the&amp;nbsp;Lidder&amp;nbsp;River runs through scenic&amp;nbsp;Betaab&amp;nbsp;Valley. Southeast,&amp;nbsp;Tulian&amp;nbsp;Lake is flanked by mountain peaks and often frozen, after sightseeing return back to the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414970,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":971,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331374\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331375\",\"Title\":\"Pahalgam - Gulmarg\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast Check out from the Hotel and drive to&amp;nbsp;Gulmarg,&amp;nbsp;Gulmarg&amp;nbsp;59&amp;nbsp;kms&amp;nbsp;away from&amp;nbsp;Srinagar&amp;nbsp;situated at an elevation of 2650 m. After check inn leave with your guide for some adventure activity in&amp;nbsp;Gulmarg, night at&amp;nbsp;Gulmarg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":92383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331376\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331377\",\"Title\":\"Gulmarg - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel then drive to the&amp;nbsp;Srinagar, Arrive and Check in the Hotel and Proceed for Srinagar Local Sightseeing like&amp;nbsp;Mughal gardens like, Chesham&amp;nbsp;shahi&amp;nbsp;garden,&amp;nbsp;Pari&amp;nbsp;mahal&amp;nbsp;&amp;amp;&amp;nbsp;Nishat&amp;nbsp;garden, after that we will take you to Shankar Acharya temple, Hazrathbal shrine &amp;amp; local market. Evening return back to&amp;nbsp;Srinagar&amp;nbsp;for night stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414483,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":661,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"331378\",\"Title\":\"Srinagar Drop\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel then drive to the Srinagar Airport to board the flight for the ongoing Journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"45914\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19353,\"priceDoubleOcc\":\"20020.00\",\"priceSingleOcc\":60060,\"priceExtraBed\":\"15015.00\",\"priceWithoutBed\":\"10010.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10010,\"CEB\":15015,\"COSTDO\":20020,\"COSTSO\":60060,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18018,\"COSTTO\":18018}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport taxes &amp;amp; airfares to\\/from\\/within India.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sonmarg&amp;nbsp;Zero point &amp;amp;&amp;nbsp;Thajiwas&amp;nbsp;Glacier.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry charges in any Garden, horse rides at any place.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gondola rides in&amp;nbsp;Gulmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chain Car in&amp;nbsp;Tangmarg.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pahalgam&amp;nbsp;(Aru&amp;nbsp;Valley,&amp;nbsp;Chandan&amp;nbsp;wari&amp;nbsp;&amp;amp;&amp;nbsp;Betaab&amp;nbsp;Valley).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any optional tour mentioned in the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guides at any place are not included in the tour cost.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All above rates are subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Peaktime surcharge&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet &amp;amp; Greet on Arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;On Arrival welcome drinks.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shikara&amp;nbsp;ride on Dal Lake for 01 hour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast and dinner in the Hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All local sightseeing in Srinagar by Sedan \\/ Innova car.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable taxes, toll, parking, fuel charges, driver allowance included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"331371\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[331371],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331372\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331372],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331373\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[331373],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331374\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331374],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331375\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[331375],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331376\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331376],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331377\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[331377],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"331378\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[331378],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Srinagar,Pahalgam,Gulmarg','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg',NULL,'25897,20566,11197',20020,20020,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 11:55:08','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-kashmir',NULL,NULL,NULL,0),(363,45628,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Religious,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":45628,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/glimpse-of-bali_1671456829\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"There is no location like Bali. A wonderful fusion of people, culture, nature, activities, weather, gastronomic pleasures, nightlife, and lovely lodging. Bali is famed for its captivating arts, which include ancient and modern dance forms, magnificent sculptures, flamboyant paintings, superb leather, gorgeous metallurgy, and amazing music. Bali is blessed with a wealth of natural resources. It has a few lesser-known yet spectacular islands, like the adventurous Nusa Penida, Nusa Lembongan, and Nusa Ceningan.In temples like Uluwatu Temple and Ulun Danu Beratan Temple, you can find tranquility. Mountains like Mount Agung guarantee a strenuous walk and an amazing sunrise. Tegalalang&amp;#39;s rice terraces provide the ideal picturesque scenery for you to take in. There is a good reason why Bali is one of the most well-known islands. It is a center for water activities because it is surrounded by oceans and beaches.&amp;nbsp; Bali Museums won&amp;#39;t fail to surprise you and make you fall in love with the nation because they display the country&amp;#39;s true character. You shouldn&amp;#39;t miss the authentic cuisines Bali has to offer you because Balinese food is unique.&amp;nbsp;Bali is also renowned throughout the world for its kind hospitality.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bali\",\"DestinationPlacesSysId\":2136,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"GLIMPSE OF BALI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5688\",\"SupplierName\":\"VACATIS WORLD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Religious,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2136,\"Title\":\"Bali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":172883,\"Name\":\"Risata Bali Resort and Spa\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.736685\",\"Long\":\"115.165201\",\"Address\":\"Jl. Wana Segara South Kuta Beach\"},\"Images\":{\"Image\":[{\"ImagId\":3828031,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\"}]},\"CityId\":2136,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;When you stay at Risata Bali Resort and Spa in Kuta, you&amp;apos;ll be in the entertainment district and minutes from Lippo Mall and Tuban Beach.  This 4-star resort is close to Kuta Beach and Carrefour Plaza Kuta.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 139 air-conditioned rooms featuring refrigerators and flat-screen televisions. Wireless Internet access (surcharge) keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. Conveniences include safes and minibars, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself with massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including a health club, an outdoor pool, and bicycles to rent. Additional features at this resort include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and gift shops\\/newsstands. If you&amp;apos;d like to spend the day shopping, you can hop on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the resort&amp;apos;s 24-hour room service. Relax with your favorite drink at a bar\\/lounge or a poolside bar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/30\\/460\\/160\\/bar_A.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":522685,\"Name\":\"Aldeoz Grand Kancana Villa Bali\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-8.67679\",\"Long\":\"115.1725734\",\"Address\":\"Jalan Gunung Jayawijaya 494 Kerobokan, Kerobokan Kelod, Kuta Utara, Badung Regency, Bali 80361, Indonesia\"},\"Images\":[],\"CityId\":2136,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null,\"RoomTypeName\":\" 01 BEDROOM POOL VILLA\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2912,\"Title\":\"kintamani &amp; Ubud Tour\",\"Description\":\"Visit to Bali Kinatamani Volcano with Ubud Village is a one-day tour package, which is included in the category of tourism activities throughout the day in Bali, which looks at the Bali volcano which is known as Mount Batur and its beautiful lake, Ubud is famous for watching the rooftop of Tegalalang, a wonderful Bali Terrace farming landscape for 8 to 9 hours and one of the other great places of interest In areas such as.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.509271,\"Long\":115.271201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/kintamani_&amp;_Ubud_Tour_2136_1519377975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3107,\"Title\":\"Uluwatu Temple Tour\",\"Description\":\"Pura Luhur Uluwatu or Uluwatu Temple is a famous Balinese sea temple in Bali, built at the top (ulu) of a 70 meter high cliff or rock (watu) projecting into the sea. It is one of the nine directional temples of Bali meant to protect it from evil spirits. Pura Luhur Uluwatu is renowned for its magnificent location, enjoy sunset delights with direct views overlooking the beautiful Indian Ocean. A Kecak dance is performed everyday at the adjacent cliff-top stage.\\r\\nThe temple is inhabited by monkeys, who are notorious for grabbing attractive items such as sunglasses and cameras.However, they can be calmer when approached with peanuts or bananas.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.8291,\"Long\":115.0849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Uluwatu_Temple_2136_1517466836.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3426,\"Title\":\"Waterbom\",\"Description\":\"Waterbom Bali is where one can enjoy a full wet day out with family and friends, through numerous waterslides, rides and playful games.  The park covers 3.8Ha of tropical gardens and pools, as well as a complete host of dining and leisure facilities\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.7282298,\"Long\":115.1693914,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Waterbom_2136_1518159084.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":3090,\"Title\":\"Pura Tanah Lot Temple\",\"Description\":\"Pura Tanah Lot temple is a extremely popular tourist destination. It does have cultural significance to the Balinese, situated on theTanah Lot which is  the small island floating on the sea.\\r\\nThis temple is very famous among tourist destinations in Bali with spectacular view of sunset  and cultural icon for photography. It is one of the most important and venerated sea temples for the Balinese.\\r\\nNowadays, there are some eateries that will open up for sunset drinks and meals.There are also many souvenir stalls surrounding the area, catering to the tourists.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":8.621213,\"Long\":115.086807,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Pura_Tanah_Lot_2136_1517404245.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null},{\"RefSSId\":2111,\"Title\":\"Ulun Danu Beratan Temple-Bedugul Temple\",\"Description\":\"Pura Ulun Danu Beratan, or Pura Bratan, is a major Shaivite water temple on Bali, Indonesia. The temple complex is located on the shores of Lake Bratan in the mountains near Bedugul.\",\"CurrencyType\":0,\"CityId\":2136,\"CityName\":\"Bali\",\"Lat\":-8.275177,\"Long\":115.166849,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2136\\/sightseeing\\/Ulun_Danu_Beratan_Temple_2136_1519040347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5688,\"SupplierName\":\"VACATIS WORLD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"329406\",\"Title\":\"Arrival at Bali\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Bali - the perfect destination for relaxation. Meet and greet our local representative at the airport and transfer to the hotel. Check-in and relax. Your evening is at leisure&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329407\",\"Title\":\"Kintamani &amp; Ubud Full Day Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today you will enjoy a full day tour to Kintamani and Ubud. The perfect introduction to Bali&amp;#39;s fascinating culture and handicrafts, fascinating insight into Bali&amp;rsquo;s artistic heritage at Ubud, beautiful natural landscape, and the breathtaking view of an active volcano.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAll the guests visiting Monkey Forests are hereby advised to take due care that they should avoid feeding monkeys or tempt them by carrying any bags etc. that gives impression of food being in the bag. The monkeys can bite if due care is not taken. if any such act takes place , it will be at your own risk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2912,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329408\",\"Title\":\"FULL DAY WATER SPORTS FOLLLOWED BY ULUWATU TEMPLE TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast prepare yourself for Water Sports Activities. One Round of Banana Boat, Single Parasailing and Jet Ski. Tour will continue as we visit Padang beach to enjoy its beautiful landscape and the white sand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Next enjoy your visit to Uluwatu Temple, a Balinese temple to the sea gods with a commanding view of the Indian Ocean.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;span style=&quot;background-color:#dddddd&quot;&gt;Note: No watersports for children&lt;\\/span&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":172883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3107,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3426,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329409\",\"Title\":\"TRANSFER TO SEMINYAK \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today post breakfast check out from the Kuta Hotel. You will be transferred to your beautiful villa with a private pool in Seminyak. Check-in and relax for the day. You can explore the nearby places or just relax within the Hotel premises.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":522685,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"01 BEDROOM POOL VILLA\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329410\",\"Title\":\"Full Day Ulun Danu Beratan Temple Tour Followed by Tanah Lot Temple tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Post breakfast at the hotel, get ready to explore the Ulun Danu Beratan temple. It is a famous picturesque landmark and a significant temple complex located on the western side of Beratan Lake in Bedugul, central Bali. Ulun Danu literally &amp;#39;the source temple of Lake Beratan&amp;#39;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nNext visit will be followed by a dramatic Tanah Lot Temple one of the splendid tenples in Bali. Perching a top an enormous rock, its completely surrounded by the waters of the Indian Ocean during high tide, don&amp;#39;t miss this opportunity to watch the sunset over this temple pictured above.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":522685,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"01 BEDROOM POOL VILLA\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3090,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2111,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"329411\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Post breakfast today, transfer to airport.&lt;br \\/&gt;\\r\\nBid adieu to Bali with loads of pictures and fond memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2136,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"45628\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-20\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"329406\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[329406],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329407\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[329407],\"Remark\":[\"&lt;p&gt;All Tours and Sightseeings on Private Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329408\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[329408],\"Remark\":[\"&lt;p&gt;All Tours and Sightseeings on Private Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329409\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[329409],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329410\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[329410],\"Remark\":[\"&lt;p&gt;All Tours and Sightseeings on Private Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"329411\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[329411],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bali','Bali,South East Asia,Indonesia,Orient',NULL,'2136',18150,18150,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Indonesia','102','2023-09-07 11:57:38','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glimpse-of-bali',NULL,NULL,NULL,0),(364,44833,1,5293,0,0,0,'Family,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44833,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-vietnam_1669875824\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A land of staggering natural beauty and cultural complexities, of dynamic megacities and hill-tribe villages, Vietnam is unforgettably compelling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This tour will take you from the exciting city of Hanoi to the wonder of Ha Long Bay to the ancient city of Hue, the growing town of Da Nang with its spectacular beaches and&amp;nbsp;finally to the historical town of Hoi An...&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Danang\",\"DestinationPlacesSysId\":7518,\"SourcePlaces\":\"Hanoi\",\"SourcePlaceSysId\":11487,\"AgencyName\":\"I Need Trip\",\"Name\":\"EXPLORING VIETNAM\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"12654\",\"SupplierName\":\"Your Holiday Trip\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Family,Offbeat,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":95674,\"Name\":\"Hanoi Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.0318\",\"Long\":\"105.848\",\"Address\":\"28 Bat Su Street \"},\"Images\":{\"Image\":[{\"ImagId\":2094668,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_111_t.jpg\"},{\"ImagId\":2094669,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_114_t.jpg\"},{\"ImagId\":2094670,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_110_t.jpg\"},{\"ImagId\":2094671,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_109_t.jpg\"},{\"ImagId\":2094672,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_107_t.jpg\"},{\"ImagId\":2094673,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_104_t.jpg\"},{\"ImagId\":2094674,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_101_t.jpg\"},{\"ImagId\":2094675,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_94_t.jpg\"},{\"ImagId\":2094676,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_91_t.jpg\"},{\"ImagId\":2094677,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_86_t.jpg\"},{\"ImagId\":2094678,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_84_t.jpg\"},{\"ImagId\":2094679,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_75_t.jpg\"},{\"ImagId\":2094680,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_73_t.jpg\"},{\"ImagId\":2094681,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_115_t.jpg\"},{\"ImagId\":2094682,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_116_t.jpg\"},{\"ImagId\":2094683,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_117_t.jpg\"},{\"ImagId\":2094684,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_127_t.jpg\"},{\"ImagId\":2094685,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_131_t.jpg\"},{\"ImagId\":2094686,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_120_t.jpg\"},{\"ImagId\":2094687,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_126_t.jpg\"},{\"ImagId\":2094688,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_118_t.jpg\"},{\"ImagId\":2094689,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_122_t.jpg\"},{\"ImagId\":2094690,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_123_t.jpg\"},{\"ImagId\":2094691,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_124_t.jpg\"},{\"ImagId\":2094692,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_125_t.jpg\"},{\"ImagId\":2094693,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_130_t.jpg\"},{\"ImagId\":2094694,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_119_t.jpg\"},{\"ImagId\":2094695,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_121_t.jpg\"},{\"ImagId\":2094696,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_128_t.jpg\"},{\"ImagId\":2094697,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_129_t.jpg\"},{\"ImagId\":2094698,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_132_t.jpg\"},{\"ImagId\":2094699,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_133_t.jpg\"},{\"ImagId\":2094700,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_134_t.jpg\"},{\"ImagId\":2094701,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_135_t.jpg\"},{\"ImagId\":2094702,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_136_t.jpg\"},{\"ImagId\":2094703,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_137_t.jpg\"}]},\"CityId\":11487,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Hanoi (Hoan Kiem), Hanoi Culture Hostel is minutes from Vietnamese National Tuong Theatre and Bach Ma Temple.  This hotel is within close proximity of Dong Xuan Market and Hang Gai Street.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 13 air-conditioned rooms featuring minibars and flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries. Conveniences include safes and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make use of convenient amenities such as complimentary wireless Internet access, babysitting\\/childcare (surcharge), and tour\\/ticket assistance. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include dry cleaning\\/laundry services, a 24-hour front desk, and luggage storage. Guests may use a roundtrip airport shuttle for a surcharge, and self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/3000000\\/2700000\\/2692800\\/2692716\\/2692716_111_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":412906,\"Name\":\"Golden Silk Boutique Hotel\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.031468000000000\",\"Long\":\"105.849385000000000\",\"Address\":\"109-111 Hang Gai Str, Hoan Kiem Dist Hanoi 110220 Vietnam, Vietnam, \"},\"Images\":[],\"CityId\":11487,\"Brief\":\"Located is on the Old quarter area, only few minute to the famous Sword Lake, the water puppets theatre and 5 Minutes to Night Market. Studio suite.These suites offer an open, studio-style design with combined living and sleeping areas. Floor-to-ceiling windows and a balcony overlooking the Silk Street and also features a private area with terrace Breakfast, Lunch, Dinner are available at this property. This is a modern building. This accommodation has a medium lobby. Business center open from ? to\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528176,\"Name\":\"Syrena Cruises\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.924867\",\"Long\":\"106.9817991\",\"Address\":\"8 H? Long, B&atilde;i Ch&aacute;y, Th&agrave;nh ph? H? Long, Qu?ng Ninh, Vietnam\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cabin\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}},{\"CityId\":12421,\"Title\":\"Hue\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528289,\"Name\":\"Rosaleen Boutique Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.4694363\",\"Long\":\"107.595579\",\"Address\":\"36 Chu V?n An, Ph&uacute; H?i, Th&agrave;nh ph? Hu?, Th?a Thi&ecirc;n Hu? 530000, Vietnam\"},\"Images\":[],\"CityId\":12421,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528290,\"Name\":\"White Lotus Hue Hotel\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.4653402\",\"Long\":\"107.5907804\",\"Address\":\"05-07 Ho&agrave;ng Hoa Th&aacute;m, Ph&uacute; Nhu?n, Th&agrave;nh ph? Hu?, Th?a Thi&ecirc;n Hu? 47000, Vietnam\"},\"Images\":[],\"CityId\":12421,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}},{\"CityId\":7518,\"Title\":\"Danang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528295,\"Name\":\"Parze Ocean &Spa\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.0687805\",\"Long\":\"108.2438672\",\"Address\":\"15, 17 D. ?&igrave;nh Ngh?, Ph??c M?, S?n Tr&agrave;, ?&agrave; N?ng 550000, Vietnam\"},\"Images\":[],\"CityId\":7518,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528297,\"Name\":\"Grand Sea Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.068095\",\"Long\":\"108.2440628\",\"Address\":\"8 H&agrave; B?ng, Ph??c M?, S?n Tr&agrave;, ?&agrave; N?ng 550000, Vietnam\"},\"Images\":[],\"CityId\":7518,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Ocean View\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}},{\"CityId\":36150,\"Title\":\"Hoi An\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528299,\"Name\":\"Aurora Riverside Hotel & Spa\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.8890465\",\"Long\":\"108.3542186\",\"Address\":\"242 C?a ??i, C?m S?n, H?i An, Qu?ng Nam 560000, Vietnam\"},\"Images\":[],\"CityId\":36150,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528300,\"Name\":\"Hoi An Garden Palace & Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"15.8827432\",\"Long\":\"108.3463383\",\"Address\":\"311 C?a ??i, C?m Ch&acirc;u, H?i An, Qu?ng Nam 560000, Vietnam\"},\"Images\":[],\"CityId\":36150,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Junior Deluxe \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}},{\"CityId\":30741,\"Title\":\"Da Nang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528301,\"Name\":\"Parze Ocean &Spa\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.0687805\",\"Long\":\"108.2438672\",\"Address\":\"15, 17 D. ?&igrave;nh Ngh?, Ph??c M?, S?n Tr&agrave;, ?&agrave; N?ng 550000, Vietnam\"},\"Images\":[],\"CityId\":30741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528307,\"Name\":\"Grand Sea Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"16.068095\",\"Long\":\"108.2440628\",\"Address\":\"8 H&agrave; B?ng, Ph??c M?, S?n Tr&agrave;, ?&agrave; N?ng 550000, Vietnam\"},\"Images\":[],\"CityId\":30741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Ocean View\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6343,\"Title\":\"Hoan Kiem Lake\",\"Description\":\"Hoan Kiem Lake means &amp;quot;Lake of the Returned Sword&amp;quot; or &amp;quot;Lake of the Restored Sword&amp;quot;, also known as Ho Guom (Sword Lake), is a lake in the historical center. The lake is one of the major scenic spots in the city and serves as a focal point for its public life.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0286669,\"Long\":105.8521484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Hoan_Kiem_Lake_11487_1530617724.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6344,\"Title\":\"Ngoc Son Temple\",\"Description\":\"Ngoc Son Temple means &amp;quot;Temple of the Jade Mountain&amp;quot;. Being built on the Jade Islet and dedicated to Confucian and Taoist philosophers and the national hero.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0307393,\"Long\":105.8524013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Ngoc_Son_Temple__11487_1530618012.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6341,\"Title\":\"One Pillar Pagoda\",\"Description\":\"The One Pillar Pagoda is a historic Buddhist temple in Hanoi. It is regarded alongside the Perfume Temple, as one of Vietnam&amp;#039;s two most iconic temples. The temple is built of wood on a single stone pillar and it is designed to resemble a lotus blossom, which is a Buddhist symbol of purity, since a lotus blossoms in a muddy pond.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0358617,\"Long\":105.8335973,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/One_Pillar_Pagoda_11487_1530617098.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6342,\"Title\":\"Temple of Literature\",\"Description\":\"The Temple of Literature is a Temple of Confucius in Hanoi.  The art works are given away as gifts or are used as home decorations for special occasions. The gate opens onto three pathways which continues through the complex.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0300231,\"Long\":105.8363875,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Temple_of_Literature_11487_1530617432.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":17949,\"Title\":\"Uncle Ho&rsquo;s (Ho Chi Minh President) Mausoleum\",\"Description\":\"Ho Chi Minh Mausoleum in Ba Dinh Square is one of the most visited attractions in Hanoi. It is the final resting place of Ho Chi Minh, the most iconic and popular leader of Vietnam, known to his people as &amp;lsquo;Uncle Ho&amp;rsquo;. His body is preserved here in a glass case at the Ho Chi Minh Mausoleum in central Hanoi (albeit against his wishes).\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/uncle_ho&rsquo;s_ho_chi_minh_pres_11487_1687331866.jpg\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":6345,\"Title\":\"Water Puppet Performance\",\"Description\":\"The world-famous Thang Long Water Puppet Theatre in Hanoi has its roots in an art form that dates back to the 11th century. The tradition of water puppet theatre stems from a time when rice paddy fields were flooded and villagers would make entertainment by standing in the waist-deep water with the puppets performing over the water. Using large rods to support the puppets it appeared as if they were moving across the water with the puppeteers hidden behind a screen.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":21.0317459,\"Long\":105.8535705,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11487\\/sightseeing\\/Water_Puppet_Performance__11487_1530618641.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null},{\"RefSSId\":33842,\"Title\":\"Japanese Covered Bridge\",\"Description\":\"This 18-meter-long bridge goes back nearly four centuries, and it&amp;#039;s one of Hoi A&amp;#039;s most well-known tourist spots despite the fact that it&amp;#039;s little enough that you could without much of a stretch miss it on the off chance that you weren&amp;#039;t searching for it. Although, the bridge&amp;#039;s architectural style is most certainly Chinese and Japanese symbols and comprises sculptures of astrological animals that have been added to the curves throughout the years to remember significant dates.\",\"CurrencyType\":0,\"CityId\":36150,\"CityName\":\"Hoi An\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/36150\\/sightseeing\\/japanese_covered_bridge_36150_1666006782.avif\",\"SupplierSysId\":12654,\"SupplierName\":\"Your Holiday Trip\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"323929\",\"Title\":\"ARRIVAL HANOI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On your arrival at the Noi Bai International Airport, you will be welcomed by driver who will bring you to Hanoi city.&amp;nbsp;Hanoi is over 1000 years old and is currently the capital of Vietnam as well the commercial,&amp;nbsp;political, and cultural heart of the country. Check in hotel (early check-in is subject to the&amp;nbsp;hotel&amp;rsquo;s availability) and free at leisure.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hanoi city.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":95674,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":412906,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323931\",\"Title\":\"HANOI CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast at your hotel, a full day city tour of Hanoi starts with a visit to Ho Chi Minh Mausoleum (from outside), His House on-stilts, One-Pillar Pagoda and the Temple of&amp;nbsp;Literature - built in October 1073 to worship Confucius and considered to be the first&amp;nbsp;university in Vietnam.&amp;nbsp;Afternoon, we will then drive to Hoan Kiem Lake where you will see Ngoc Son Temple&amp;nbsp;which worships Van Xuong saint and Tran Hung Dao, a former general commander. Later&amp;nbsp;in the afternoon, you will get a chance to enjoy 50 minutes traditional water puppet show. Get back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nOvernight in Hanoi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":95674,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":412906,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6343,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6344,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6341,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6342,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17949,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6345,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323933\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323935\",\"Title\":\"HANOI &ndash; HALONG BAY OVERNIGHT ON BOARD\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;We leave Hanoi in morning and travel to the astonishing and mystical Ha Long Bay (by&amp;nbsp;cruise services&amp;rsquo; carpool - Pick up at your hotel and without guide on the road) which is&amp;nbsp;described by UNESCO as a World Heritage Site and is one of the most beautiful places in the&amp;nbsp;region. Located in the Gulf of Tonkin, it is an spectacular collection of 2,000 islands&amp;nbsp;covering an area in excess of 1,500km. This forms a spectacular seascape of limestone&amp;nbsp;pillars and cliff faces.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;12:30 Receptionists welcome guests at the International Tuan Chau harbour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12:45 Captain welcomes guests to cruises by tender. Check in cruise, whilst enjoy a welcome drink, safety briefing and check in cabin.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;13:00 Leaving International Tuan Chau harbour, discover the Halong Bay - natural wonders of the world. Have lunch with special foods while cruising through famous sights&amp;nbsp;Ba Hang fishing village, ??nh H??ng island, Ch&amp;oacute; ?&amp;aacute; islet, G&amp;agrave; Ch?i islet...&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;14:30 Cruises stops at B? N&amp;acirc;u cave, the core area of the world natural heritage. Transfer&amp;nbsp;by tender to Surprise cave - one of the most beautiful caves in Halong Bay.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;15:45 Leaving Surprise cave, transfer by tender to the Titov island was named by&amp;nbsp;Uncle Ho, after Gherman Stepanovich Titov - the Soviet astronaut who visited in 1962&amp;nbsp;Enjoy swimming, relaxing on the beach or climb the steps of the Rock to the top of the&amp;nbsp;island. On the top of the mountain, you can see corner of magical Halong Bay ...&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;16:45 Back to the cruise. Relax and enjoy sunset on the sun deck. Go to the overnight place.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;18:00 &amp;ndash; 19:00 HAPPY HOUR - Buy 1 drink get 1 free (wine excluded).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;18:30 Enjoy Vietnamese cooking demonstration.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;19:00 Acquaint yourseft with the set menu dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20:30 Evening activities include: film entertainment (in the dining room); squid fishing; massage (contact with cruise manager for service price)...&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cabin\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe cabin with private balcony\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323937\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323939\",\"Title\":\"HANOI &ndash; HALONG BAY &ndash; HANOI\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;06:00 Morning call (if you request).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06:30 Enjoy Tai Chi instructions on the sundeck in 30 minutes whilst cruising to Lu?n cave.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07:00 Enjoy light breakfast in the restaurant (coffee, tea, fresh milk, water, pastries, bread, egg, fresh fruit, cereals will be served in the dining room).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;08:00 After breakfast, take a guided tour to visit Lu?n cave - one of the cave open to the form beautiful about endemic the vegetation of the Halong Bay. Visit Lu?n cave by a&amp;nbsp;traditionally woven (bamboo) boat rowed by a local boatman.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;08:30 Then come back to Syrena cruise, relax and check out of cabin. Please put your&amp;nbsp;luggage outside the door. Our porters will collect and get them ready on the Pier for&amp;nbsp;you.Finally, the cruise disembarks in International Tuan Chau harbour.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;09:15 Enjoy brunch buffet menu served in the dining room. Settle bills in the dining&amp;nbsp;room after brunch (if you have).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;10:45 Transfer by tender back to Tuan Chau harbour and disembarkation. Farewell to&amp;nbsp;guests and transfer back to your hotel&amp;nbsp;&lt;em&gt;(by cruise services&amp;rsquo; carpool &amp;ndash; Drop off at your hotel&amp;nbsp;and without guide on the road).&lt;\\/em&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hanoi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":95674,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":412906,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323941\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323943\",\"Title\":\"HALONG BAY &ndash; HANOI - FLIGHT TO HUE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast, you will be transfered to the airport to Noi Bai Airport (Without guide escort) to catch the domestic flight to Hue City in the central region of Vietnam.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;During the Nguyen Dynasty (1802 &amp;ndash; 1945), Hue was the political, economic and cultural capital of Vietnam and was the home of the emperors of the past.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Once you arrive in Hue, you will be driven the short distance downtown to check into&amp;nbsp;the hotel and then be free at your leisure (early check-in is subject to the hotel&amp;rsquo;s availability).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the afternoon, drive to visit the Imperial Citadel, a World Cultural Heritage Site by&amp;nbsp;UNESCO since 1993. Here we will see the Imperial City and Forbidden City, the home of&amp;nbsp;previous Emperors, enjoy the various palaces, ornate halls, libraries, residences,&amp;nbsp;colleges, Flag Tower and Noon Gate.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Then continue the visit to Thien Mu Pagoda, one of the oldest and most beautiful pagodas in Hue. Afterward, take the boat cruise on the Perfume River back to the city&amp;nbsp;center.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spend the night in Hue.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12421,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528289,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528290,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323945\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12421,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323947\",\"Title\":\"HUE HALF DAY TOUR &ndash; DA NANG\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In the morning, we will start our journey by heading to the outskirts of Hue to explore the Khai Dinh Tombs. That may be symbolic of the decline of Vietnamese culture during the colonial era. Unlike Hue&amp;rsquo;s other tombs, the grandiose concrete structure,&amp;nbsp;built between 1920 and 1931, is a synthesis of Vietnamese and European elements.&amp;nbsp;Even the stone faces of the mandarin honor guards are endowed with a mixture of both features.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Last stop at Hue is Minh Mang tomb, fork on the west bank of Perfume River, far away&amp;nbsp;from Hue 12km. It can be said that Minh Mang tomb is different from the rest of&amp;nbsp;imperial tombs because of its archiecture. Minh Mang tomb offers a balance of nature&amp;nbsp;and structures that is unmatched among tombs in Hue. This balance between landscape&amp;nbsp;and buidings reveals a lot about personality of Minh Mang emperor and characteristics&amp;nbsp;during his reign.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;After lunch time, we will transfer out of Hue to Da Nang. You will go through the&amp;nbsp;beautiful and famous summit of Hai Van Pass &amp;amp; Lang Co Beach.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Da Nang is always known as the most livable city in the country and has beautiful&amp;nbsp;landscapes that attract tourists from all over the world. There are long beautiful beaches with clear and smooth blue water, famous tourist destinations with famous names in the&amp;nbsp;world making Da Nang the number 1 destination of everyone.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;After check in, you are free to roam and explore on your own or rest and relax in your&amp;nbsp;hotel as you wish.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528295,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528297,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323949\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7518,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323951\",\"Title\":\"DA NANG &ndash; BA NA HILLS &ndash; HOI AN\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;After breakfast at your hotel, our guide and driver will pick you up at your hotel then transfer to Ba Na Hills to enjoy the beautiful view of from the cable car up to the summit. Upon arrival have sightseeing and take photos at the world famous Golden&amp;nbsp;Bridge, continue to flower garden Le Jardin D&amp;rsquo;amour where has many kinds of&amp;nbsp;beautiful flowers and Debay Wine Cellar where are storing different wines. Take another cable car route to reach French Village at the height of 1138 meters for&amp;nbsp;experience architecture here.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Afternoon, you will visit Linh Ung pagoda of Son Tra peninsula. Linh Ung pagoda of&amp;nbsp;Son Tra peninsula is the largest pagoda in Central Vietnam. Arrive there, we can feel the&amp;nbsp;cool sea wind, see Da Nang panoramic, the Arhat statues and Lady Buddha statues&amp;nbsp;which are the tallest in Viet Nam. After that, we will visit the Marble Mountain. This&amp;nbsp;site is a cluster of five mountains, each named after an element of Chinese Yin-Yang&amp;nbsp;philosophy. Marble Mountains have long been Buddhist worshiping sites as well as a&amp;nbsp;famous tourist complex to travelers from all around the world when come to Da Nang.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;After that, we head to Hoi An, another UNESCO World Cultural Heritage Site. Hoi An&amp;nbsp;comes to life and offers tourists a chance to go shopping and relax at some of the local restaurants.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Free at leisure or discover the ancient town sparkled by lanterns at night. Spend the night in Hoi An.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36150,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528299,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528300,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Deluxe\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323953\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36150,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323955\",\"Title\":\"HOI AN FULL DAY TOUR &ndash; DA NANG\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;This morning, you will take a half-day Bamboo basket tour to explore the Coconut Forest . You will have a chance to take a basket boat to Cam Thanh Bay Mau Coconut&amp;nbsp;Forest. Visit Nipa Plam Village by basket boat and watch some interesting activities&amp;nbsp;such as basket boat dancing, catching mussels, catching snails, fishing...&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the afternoon, we will take a casual walk to tour the Chinese Assembly Halls, the&amp;nbsp;400-year-old Japanese Covered Bridge and the old family houses all of which have&amp;nbsp;been sensitively preserved.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Get back to Da Nang city and free the rest of day at your own leisure in Da Nang.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528301,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528307,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":33842,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323957\",\"Title\":\"HOI AN &ndash; DANANG DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;You will have breakfast at your hotel and will be free to spend your time as you wish before checking out at noon. You will drive to Da Nang airport to catch your flight to either Hanoi or Ho Chi Minh City or your homeland.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;This is the end of the service.&lt;br \\/&gt;\\r\\n\\t&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44833\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"51700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49977,\"priceDoubleOcc\":\"51700.00\",\"priceSingleOcc\":144760,\"priceExtraBed\":\"38775.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25850,\"CEB\":38775,\"COSTDO\":51700,\"COSTSO\":144760,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46530,\"COSTTO\":46530}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"44834\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53698,\"priceDoubleOcc\":\"55550.00\",\"priceSingleOcc\":155540,\"priceExtraBed\":\"41662.50\",\"priceWithoutBed\":\"27775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27775,\"CEB\":41662.5,\"COSTDO\":55550,\"COSTSO\":155540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49995,\"COSTTO\":49995}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All domestic &amp;amp; international flight tickets&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All visa fees: Vietnam = US$25 per person (single-entry visa)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Other meals not mentioned in the program&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The Compulsory Gala dinner in 24 Dec &amp;amp; 31 Dec 2022&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Surcharge for Vietnamese Tet holiday from 22 Jan &amp;ndash; 26 Jan 2023&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in or late check-out&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drinks, tips, personal expenses and all services not mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expense and other expenses not mentioned in the included sevices above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Surcharge for peak season&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation based on double\\/twin rooms at the hotels\\/cruise as mentioned&amp;nbsp;with daily breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Package cruise on Halong Bay (2 days, 1 night &amp;ndash; seat-in-coach)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Private transportation with aircondition&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transer Hanoi &amp;ndash; Halong &amp;ndash; Hanoi route with cruise services&amp;rsquo; carpool (Without guide escort)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Good local English-speaking guides&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees &amp;amp; permission fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mineral water &amp;amp; wet tissues daily&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"323929\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[323929],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323931\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[323931],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323933\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323933],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323935\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323935],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323937\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323937],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323939\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323939],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323941\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323941],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323943\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323943],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"323945\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323945],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323947\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323947],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323949\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323949],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323951\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323951],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323953\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[323953],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323955\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[323955],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323957\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[323957],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Hanoi,Halong,Hue,Danang,Hoi An,Da Nang','Hanoi,South East Asia,Vietnam,Orient,Halong,Hue,Danang,Hoi An,Da Nang',NULL,'11487,11405,12421,7518,36150,30741',51700,55550,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Vietnam','236','2023-09-07 11:58:17','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'exploring-vietnam',NULL,NULL,NULL,0),(365,44761,1,5293,0,0,0,'Honeymoon,Family,Cruise,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":44761,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/essence-of-vietnam_1690791966\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Vietnam is a long country with many beautiful places to visit, a lot of exciting activities to join.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cover the highlights of north and south Vietnam with one tour package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As Vietnam&amp;#39;s largest economic center and cultural capital, Ho Chi Minh City boasts soaring skyscrapers that tower over charming French colonial structures&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hanoi, the capital of Vietnam, is one of the most ancient cities in the world. This place offers examples of both contemporary and classical architecture right in the city center.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ha Long Bay &amp;ndash; a UNESCO World Heritage Site and popular travel destination&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Hanoi\",\"DestinationPlacesSysId\":11487,\"SourcePlaces\":\"Ho Chi Minh City\",\"SourcePlaceSysId\":31115,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENCE OF VIETNAM\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"12630\",\"SupplierName\":\"VeViet\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Family,Cruise,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":178188,\"Name\":\"Harmony Saigon Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.772060299687\",\"Long\":\"106.69027040608\",\"Address\":\"32A-34 Bui Thi Xuan Street District 1\"},\"Images\":{\"Image\":[{\"ImagId\":3956138,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/347\\/10_Guest_room_(Guest_room)_A.jpg\"},{\"ImagId\":3956139,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/57\\/426\\/743\\/01_Exterior_view_(Exterior_view)_C.jpg\"},{\"ImagId\":3956140,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/283\\/02_Lobby_view_(Lobby_view)_A.jpg\"},{\"ImagId\":3956141,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/291\\/03_Guest_room_(Guest_room)_A.jpg\"},{\"ImagId\":3956142,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/299\\/04_Suite_(Suite)_A.jpg\"},{\"ImagId\":3956143,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/307\\/05_Guest_room_(Guest_room)_A.jpg\"},{\"ImagId\":3956144,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/315\\/06_Suite_(Suite)_A.jpg\"},{\"ImagId\":3956145,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/323\\/07_Restaurant_(Restaurant)_A.jpg\"},{\"ImagId\":3956146,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/331\\/08_Bar_Lounge_(Bar_Lounge)_A.jpg\"},{\"ImagId\":3956147,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/339\\/09_Meeting_Room_(Meeting_Room)_A.jpg\"}]},\"CityId\":31115,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Harmony Saigon Hotel &amp;amp; Spa is in the heart of Ho Chi Minh City, walking distance from September 23 Park and Zen Plaza.  This 4-star hotel is within close proximity of Tao Dan Park and Golden Dragon Water Puppet Theatre.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 95 air-conditioned rooms featuring minibars. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy recreational amenities such as an indoor pool and a fitness center. Additional features at this hotel include complimentary wireless Internet access, concierge services, and gift shops\\/newsstands.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite at one of the hotel&amp;apos;s 2 restaurants, or stay in and take advantage of room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary breakfast is included.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Ho Chi Minh City? This hotel has 1399 square feet (130 square meters) of space consisting of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/4\\/0\\/59\\/748\\/347\\/10_Guest_room_(Guest_room)_A.jpg\",\"AccoAminitiesMask\":\"110100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"Premier\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":178153,\"Name\":\"New World Saigon\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.770901\",\"Long\":\"106.695044\",\"Address\":\"76 Le Lai Street District 1\"},\"Images\":{\"Image\":[{\"ImagId\":3954834,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/164\\/dynasty_suite1_A.jpg\"},{\"ImagId\":3954835,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/238\\/splash_poolside_bar_A.jpg\"},{\"ImagId\":3954836,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/173\\/dynasty_suite_A.jpg\"},{\"ImagId\":3954837,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/201\\/executive_lounge_A.jpg\"},{\"ImagId\":3954838,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/283\\/health_club_A.jpg\"},{\"ImagId\":3954839,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/155\\/dynasty_restaurant_A.jpg\"},{\"ImagId\":3954840,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/292\\/swimming_pool1_A.jpg\"},{\"ImagId\":3954841,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/247\\/the_spa_A.jpg\"},{\"ImagId\":3954842,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/274\\/dynasty_restaurant2_A.jpg\"},{\"ImagId\":3954843,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/182\\/meeting_room8_A.jpg\"},{\"ImagId\":3954844,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/192\\/grand_indochine_balllroom1_A.jpg\"},{\"ImagId\":3954845,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/265\\/grand_mekong_ballroom1_A.jpg\"},{\"ImagId\":3954846,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/137\\/deluxe_room_A.jpg\"},{\"ImagId\":3954847,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/229\\/swimming_pool_night_C.jpg\"},{\"ImagId\":3954848,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/220\\/swimming_pool_A.jpg\"},{\"ImagId\":3954849,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/146\\/club_lounge_A.jpg\"},{\"ImagId\":3954850,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/210\\/parkview_international_restaurant_A.jpg\"},{\"ImagId\":3954851,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/256\\/wedding3_A.jpg\"}]},\"CityId\":31115,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;New World Saigon Hotel is in the heart of Ho Chi Minh City, walking distance from Zen Plaza and September 23 Park.  This 5-star hotel is within close proximity of Tao Dan Park and Ben Thanh Market.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 533 air-conditioned rooms featuring minibars and LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with bathtubs or showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers body treatments and facials. After enjoying recreational amenities such as a health club and an outdoor pool, a lucky night at the casino is the perfect end to the day. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and gift shops\\/newsstands. Getting to nearby attractions is a breeze with the area shuttle (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite at one of the hotel&amp;apos;s 3 restaurants, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and limo\\/town car service. This hotel has 5 meeting rooms available for events. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a train station pick-up service.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/42\\/55\\/164\\/dynasty_suite1_A.jpg\",\"AccoAminitiesMask\":\"110110110001010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":33820,\"Title\":\"Museum of Vietnamese History\",\"Description\":\"Inside the grounds of the botanic gardens, the Museum of Vietnamese History reveals the country&amp;#039;s social development from the Bronze Age to the mid twentieth 100 years. The displays are coordinated sequentially and comprises antiques from Vietnam&amp;#039;s previous ethnic groups, including the Funan, Khmer, Dong Son, and Cham civilizations. Especially intriguing are the Angkor Wat relics, stone and bronze sculptures, and the well-preserved mummy.\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/museum_of_vietnamese_history_31115_1665989331.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null}]}},{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":96171,\"Name\":\"Apricot Hotel\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.0318\",\"Long\":\"105.848\",\"Address\":\"136 Hang Trong Hoan Kiem\"},\"Images\":{\"Image\":[{\"ImagId\":2107511,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/243\\/5448-Apricot-Deluxe_Twin_Room_1431691080603_A.jpg\"},{\"ImagId\":2107512,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/259\\/bathroom_Junior_Suite_1413873831879_A.jpg\"},{\"ImagId\":2107513,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/267\\/bathroom_Executive_Suite_1413873831375_A.jpg\"},{\"ImagId\":2107514,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/275\\/bathroom_Superior_1413873829738_A.jpg\"},{\"ImagId\":2107515,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/283\\/Bathroom_Deluxe_1413873830629_A.jpg\"},{\"ImagId\":2107516,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/291\\/bathroom_Superior_Twin_1413873832824_A.jpg\"},{\"ImagId\":2107517,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/299\\/Canvas_Garden_1420626759130_A.jpg\"},{\"ImagId\":2107518,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/307\\/Deluxe_1413873864356_A.jpg\"},{\"ImagId\":2107519,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/315\\/Canvas_King_1427447217159_A.jpg\"},{\"ImagId\":2107520,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/331\\/DSC_2026_1431140450987_A.jpg\"},{\"ImagId\":2107521,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/339\\/DSC_2089_1427447372438_A.jpg\"},{\"ImagId\":2107522,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/347\\/DSC_2171_1431140451851_A.jpg\"},{\"ImagId\":2107523,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/355\\/DSC_2234_1431140452732_A.jpg\"},{\"ImagId\":2107524,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/363\\/DSC_2448_1431140453626_A.jpg\"},{\"ImagId\":2107525,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/371\\/DSC_2493_1427447292289_A.jpg\"},{\"ImagId\":2107526,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/379\\/DSC_2583_3543_x_23643Masterpiece_1427447373767_A.jpg\"},{\"ImagId\":2107527,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/387\\/DSC_2592_1431140454342_A.jpg\"},{\"ImagId\":2107528,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/403\\/DSC_2664_1430709939690_A.jpg\"},{\"ImagId\":2107529,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/411\\/DSC_2763_1430709940409_A.jpg\"},{\"ImagId\":2107530,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/419\\/DSC_2826_1430709941417_A.jpg\"},{\"ImagId\":2107531,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/427\\/DSC_2853_1430709942748_A.jpg\"},{\"ImagId\":2107532,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/435\\/DSC_2844_1430709942249_A.jpg\"}]},\"CityId\":11487,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Apricot Hotel, you&amp;apos;ll be centrally located in Hanoi, steps from Hoan Kiem Lake and St. Joseph Cathedral.  This 5-star hotel is within close proximity of Ngoc Son Temple and Hang Gai Street.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 123 air-conditioned rooms featuring minibars and LED televisions. Your room comes with a pillowtop bed. Complimentary wired and wireless Internet access keeps you connected, and cable programming provides entertainment. Private bathrooms with showers feature rainfall showerheads and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You can take advantage of recreational amenities such as an outdoor pool, a sauna, and a fitness center. Additional features at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite to eat at one of the hotel&amp;apos;s 2 restaurants and 2 coffee shops\\/caf&eacute;s, or stay in and take advantage of 24-hour room service. Mingle with other guests at a complimentary reception, held daily. Relax with a refreshing drink from a poolside bar or one of the 4 bars\\/lounges. Breakfast is available for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and limo\\/town car service. Planning an event in Hanoi? This hotel has 592 square feet (55 square meters) of space consisting of a conference center and meeting rooms. For a surcharge, guests may use a shuttle from the airport to the hotel (available on request) and a train station pick-up service.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/66\\/584\\/243\\/5448-Apricot-Deluxe_Twin_Room_1431691080603_A.jpg\",\"AccoAminitiesMask\":\"110101101000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"}],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"Sketch Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":412964,\"Name\":\"Sunway Hotel Hanoi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.0164077586103\",\"Long\":\"105.857267975807\",\"Address\":\"19 Pham Dinh Ho Street, Hai Ba Trung, \"},\"Images\":[],\"CityId\":11487,\"Brief\":\"Located in the heart of Hanoi city, the Sunway Hotel, is close to all the renowned tourist attractions, a mere 15 minute walk to Hoan Kiem lake and the prime commercial, shopping and entertainment areas. The Sunway Hotel, is the only hotel in town which has drinkable tap water. The Hotel has triple-glazed windows in all guestrooms to ensure complete sound proof and also 100% generator back up power supply. Hotel equiped for High Speed Broadband Internet. Guests of Sunway Hotel are provided with a fine array of facilities managed by professional service oriented staff of international standards.Located In The Heart Of Hanoi City, the Sunway Hotel...\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/14\\/6927b98bb6d7200e5768dabf0d295ede-1106239.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":33820,\"Title\":\"Museum of Vietnamese History\",\"Description\":\"Inside the grounds of the botanic gardens, the Museum of Vietnamese History reveals the country&amp;#039;s social development from the Bronze Age to the mid twentieth 100 years. The displays are coordinated sequentially and comprises antiques from Vietnam&amp;#039;s previous ethnic groups, including the Funan, Khmer, Dong Son, and Cham civilizations. Especially intriguing are the Angkor Wat relics, stone and bronze sculptures, and the well-preserved mummy.\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/museum_of_vietnamese_history_31115_1665989331.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null}]}},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":528176,\"Name\":\"Syrena Cruises\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.924867\",\"Long\":\"106.9817991\",\"Address\":\"8 H? Long, B&atilde;i Ch&aacute;y, Th&agrave;nh ph? H? Long, Qu?ng Ninh, Vietnam\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":528177,\"Name\":\"Doris Cruise\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.920665\",\"Long\":\"106.9815132\",\"Address\":\"Gate 17, Tuan Chau Habour, Tu?n Ch&acirc;u, Th&agrave;nh ph? H? Long, Qu?ng Ninh 200000, Vietnam\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null,\"RoomTypeName\":\"Junior Balcony Suite\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":6373,\"Title\":\"Cathedral of Notre Dame\",\"Description\":\"It  is a cathedral located in the downtown of Ho Chi Minh City, Vietnam. Established by French colonists who initially named it Cathedrale Notre-Dame de Saigon, the cathedral was constructed between 1863 and 1880. It has two bell towers, reaching a height of 58 meters .\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":10.7797855,\"Long\":106.6990188,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/31115\\/sightseeing\\/Cathedral_of_Notre_Dame__31115_1530687556.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":33820,\"Title\":\"Museum of Vietnamese History\",\"Description\":\"Inside the grounds of the botanic gardens, the Museum of Vietnamese History reveals the country&amp;#039;s social development from the Bronze Age to the mid twentieth 100 years. The displays are coordinated sequentially and comprises antiques from Vietnam&amp;#039;s previous ethnic groups, including the Funan, Khmer, Dong Son, and Cham civilizations. Especially intriguing are the Angkor Wat relics, stone and bronze sculptures, and the well-preserved mummy.\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/museum_of_vietnamese_history_31115_1665989331.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":6361,\"Title\":\"Chu Chi Tunnel\",\"Description\":\"The Chu Chi Tunnels are part of a massive war museum in Ho Chi Minh. The site has over 120km of underground tunnels, with trapdoors, living areas, kitchens, storage facilities, armoury, hospitals, and command centres. After the war against the French, Vietnamese soldiers expanded the tunnels and included effective air filtration systems, which helped them survive the Chu Chi carpet-bombings\",\"CurrencyType\":0,\"CityId\":31115,\"CityName\":\"Ho Chi Minh City\",\"Lat\":11.1434467,\"Long\":106.4644785,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/31115\\/sightseeing\\/chu_chi_tunnel_31115_1665574172.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null},{\"RefSSId\":13628,\"Title\":\"Hanoi City Tour\",\"Description\":\"Explore the most famous sites in city. Tour starts with the Temple of Literature, which is well known as the first university of Vietnam. Then we visit the Museum of Ethnology, ranked at most favorite museums in Vietnam. You will see many exhibits, photographs and actual houses inhabited by some of the 54 ethnic people in Vietnam. It will offer a truly colorful introduction to these ethnic tribes. Lunch will be served at an Indian restaurant around 12:00. After lunch at around 14:00 continue trip to Tran Quoc Pagoda, The oldest Pagoda in Hanoi. Then we come back to visit the peaceful lake of Hoan Kiem with Ngoc Son temple with one hour cyclo around Hanoi Old Quarter. Then enjoy Water Puppet Show at 17:00, then comeback to hotel. Overnight in Hanoi. Transfer, entrance fee, guide, breakfast, lunch, cyclo, water puppet show.\",\"CurrencyType\":0,\"CityId\":11487,\"CityName\":\"Hanoi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/11487\\/sightseeing\\/hanoi_city_tour_11487_1665563184.jpg\",\"SupplierSysId\":12630,\"SupplierName\":\"VeViet\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"323351\",\"Title\":\"ARRIVAL HOCHIMINH VIETNAM &ndash; CITY TOUR\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Today you&amp;rsquo;ll land in Ho Chi Minh City (Tan Son Nhat International Airport). Warmly welcome by Tour Guide &amp;amp; Car Driver at airport then transfer to hotel for check in.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Halfday city tour: Visit the former Presidential Palace, headquarters to the Saigon Government during the Vietnam-American war. You may also like to visit the War Remnants Museum for&amp;nbsp;a vivid insight into the Vietnam-American war from a Vietnamese perspective. Next stop is the&amp;nbsp;Notre Dame Cathedral, a red brick building with twin spires based on the original construction&amp;nbsp;from Paris, then head across the square to the Central Post Office designed by the French&amp;nbsp;architect Gustav Eiffel.&lt;br \\/&gt;\\r\\nEvening, free time to enjoy the crowded and bustling Ho Chi Minh city &amp;ndash; Ho Chi Minh city is&amp;nbsp;the city of bars, pubs &amp;amp; other nightlife activities...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight in Ho Chi Minh city&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":178188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premier\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":178153,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6373,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":33820,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323353\",\"Title\":\"FULLDAY TO MEKONG DELTA \\/ RIVER BOAT TRIP\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today takes you to My Tho, the capital of Tien Giang Province. Situated on the Mekong River, 75 kilometers southeast of Ho Chi Minh City, the city is surrounded by orchards and rice fields,&amp;nbsp;which produce grain for the entire country. Visit one or two of the islands that produce&amp;nbsp;traditional handcrafts, coconut candy and bee farms. Visit the Vinh Trang Pagoda, the oldest&amp;nbsp;one in the delta on your boat trip on the Mekong River. Return to Ho Chi Minh City.&lt;br \\/&gt;\\r\\nStay overnight in Ho Chi Minh city.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":178188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premier\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":178153,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323355\",\"Title\":\"FULLDAY CU CHI TUNNELS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;08:30: Guide and vehicle pick up clients from hotel lobby and enjoy the visit. The Cu Chi Tunnels are an immense network of interconnected tunnels near Saigon that are part&amp;nbsp;of a much larger network lying below much of the country. A guided visit to these tunnels&amp;nbsp;provides a better understanding of their history, the hardship of life underground and the&amp;nbsp;resilience of the Vietnamese during combat.&amp;nbsp;The tunnels were built and used initially by the Viet Cong guerrillas as hiding spots to protect&amp;nbsp;them from the French air and ground sweeps. They later served as communication routes, storage&amp;nbsp;facilities, hospitals and living quarters for the guerrilla fighters throughout the Vietnam-&amp;nbsp;American war.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You&amp;#39;re invited to enter a section of the tunnels to witness the secrets of the tunnels firsthand. Your guide will also show you various mantraps employed from this period, the remains of an&amp;nbsp;American tank and numerous B52 bomb craters. There is also the opportunity to fire an M60,&amp;nbsp;M16 or AK47 rifle at the range next to the tunnel complex.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":178188,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premier\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":178153,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6361,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323357\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323371\",\"Title\":\"HOCHIMINH - FLIGHT TO HANOI - CITY TOUR HANOI\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;Transfer to airport for flight to Hanoi. Meet at airport with guide and transfer to hotel for check-in.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;City tour: visit The Temple of Literature, Vietnam&amp;rsquo;s first university. Constructed in 1070, the&amp;nbsp;gardens and well-preserved architecture offer a relaxing glimpse into Vietnam&amp;rsquo;s past.&amp;nbsp;Drive back to central Hanoi for an hour cyclo tour through the Old Quarter to enjoy the bustling&amp;nbsp;local life. This bustling area of narrow streets and alleys is home to literally thousands of small&amp;nbsp;businesses and shopkeepers. It&amp;#39;s a great place to explore with plenty of photo opportunities all&amp;nbsp;around you.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\nEnjoy the water Puppet Show, Stay overnight at hotel in Hanoi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":412964,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":96171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Sketch Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13628,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323373\",\"Title\":\"TAM COC FULLDAY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, depart for Ninh Binh which owns Hoa Lu and Tam Coc as the most favorite sightseeing of tourists from all over the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After 2 hours, you will arrive at Hoa Lu Ancient Capital. In 968, Dinh Bo Linh declared himself as the King. Since then Hoa Lu existed as the capital for the next 41 years (968 &amp;ndash; 1009), of which&amp;nbsp;12 years was under the Dinh dynasty &amp;ndash; King Dinh Tien Hoang, the country named Dai Co Viet,&amp;nbsp;and 29 years later was under the Le dynasty &amp;ndash; King Le Dai Hanh. In 1010, King Ly Thai To&amp;nbsp;moved the capital from Hoa Lu to Thang Long &amp;ndash; present day Hanoi. Hoa Lu became the old&amp;nbsp;citadel. In Hoa Lu there are now 2&amp;nbsp; temples have been built on the ground of the old royal palace,&amp;nbsp;one is dedicated to King Dinh Tien Hoang, the other is to King Le Dai Hanh. The visit offers a&lt;br \\/&gt;\\r\\nchance to know more about part of feudal dynasties and historical periods in Vietnamese history.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon, 5 minute-walk to the boat station and start the 2hour-boat trip to visit Tam Coc.&amp;nbsp;Known as &amp;ldquo;Halong Bay on land&amp;rdquo;, Tam Coc are three limestone caves stretching along Ngo Dong&amp;nbsp;river. The boat trip is a nice journey along the river with peaceful scenery of Limestone&amp;nbsp;Mountains, rice paddy and the site of some temples along the way from Hang Ca (first cave) to&amp;nbsp;Hang Hai (second cave) and Hang Ba (third cave).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Back to Hanoi in late afternoon. Stay&amp;nbsp;overnight in Hanoi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":412964,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":96171,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Sketch Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323375\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323391\",\"Title\":\"HALONG BAY - OVERNIGHT ON BOAT\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Transfer to Halong bay &amp;ndash; the bay of legend with more than 3,000 limestone &amp;ldquo;peaks&amp;rdquo; or karsts that jut from the deep blue water as far as the eye can see. Exploring this overwhelming seascape&amp;nbsp;from the cruise. Comfortable and intimate, your boat features hand- crafted wooden interiors&amp;nbsp;including a dining room and pleasant air-conditioned cabins with private baths. Since we&amp;rsquo;re&amp;nbsp;overnight on the water, we&amp;rsquo;ll be able to explore Ha Long Bay&amp;rsquo;s most beautiful spots with time&amp;nbsp;to swim and even visit some of the largest rock formations and caves. This promises to be one&amp;nbsp;of your most memorable travel experiences in Asia.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nStay overnight on Boat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Note: Transfer by cruise shuttle bus&lt;\\/em&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":528176,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":528177,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Junior Balcony Suite\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"323393\",\"Title\":\"HALONG - HANOI - DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Rising to the sound of lapping bay waters, we have time for an early morning dip followed by breakfast. Sitting on the upper deck, you can relax while taking in the breath-taking beauty of&amp;nbsp;the rocky islands rising from the emerald water of the bay.&amp;nbsp;After breakfast, explore Sung Sot cave, swim and relax. Cruises back to the jetty while brunch&lt;br \\/&gt;\\r\\nis served. Along the way you will see more of the fascinating formations. Cruise check-out.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nPrivate Transfer to Noi Bai airport for Departure.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"44761\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"42350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":40938,\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":118580,\"priceExtraBed\":\"31762.50\",\"priceWithoutBed\":\"21175.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21175,\"CEB\":31762.5,\"COSTDO\":42350,\"COSTSO\":118580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":38115,\"COSTTO\":38115}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"44762\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"60720.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":58696,\"priceDoubleOcc\":\"60720.00\",\"priceSingleOcc\":170016,\"priceExtraBed\":\"45540.00\",\"priceWithoutBed\":\"30360.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":60720,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30360,\"CEB\":45540,\"COSTDO\":60720,\"COSTSO\":170016,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54648,\"COSTTO\":54648}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Beverages and other meals do not indicate in the program&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out at all hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tipping\\/ Gratuities (About 3-5 US$\\/Person\\/Day)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any additional expenses caused by reasons beyond our control such as natural calamities (typhoon, floods), flight delays, rescheduling or cancellations, any accidents, medical evacuations, riots, strikes etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Surcharge for peak season: New Year (01 &amp;ndash; 05 Jan), Lunar New Year (23 &amp;ndash; 28 Jan), Nation Day (30 Apr &amp;ndash; 01May), Independence Day (02 Sep) Christmas (20 &amp;ndash; 31 Dec)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vietnam Evisa: &lt;a href=&quot;https:\\/\\/xuatnhapcanh.gov.vn&quot;&gt;https:\\/\\/xuatnhapcanh.gov.vn&lt;\\/a&gt; (included Visa stamp fee on arrival)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation with air-conditioned as program on private basic&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour arrival and departure airport transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English Speaking Guide as per mentioned above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Entrance fees&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as mentioned in program&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cold towel and mineral water 2 bottles per person per day&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"323351\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[323351],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323353\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[323353],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323355\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[323355],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323357\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323357],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323371\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[323371],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"323373\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[323373],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323375\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323375],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323391\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[323391],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"323393\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[323393],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ho Chi Minh City,Hanoi,Halong','Ho Chi Minh City,South East Asia,Vietnam,Orient,Hanoi,Halong',NULL,'31115,11487,11405',42350,60720,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Vietnam','236','2023-09-07 12:00:30','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'essence-of-vietnam',NULL,NULL,NULL,0),(366,42928,1,5293,0,0,0,'Honeymoon,Adventure,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42928,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/scintillating-singapore_1690012954\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Say Hello Singapore!!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Singapore is an amazing city, it has an extraordinary area, it brings a great deal to the table, and it is one of the most enchanting places to visit. Even flying there is a remarkable encounter since Singapore Changi Airport is the best airport in the world. Singapore is a cultural mixture country; in this way, you&amp;#39;ll fit in completely no matter what your cultural background is.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"I Need Trip\",\"Name\":\"SCINTILLATING SINGAPORE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":220142,\"Name\":\"Value Hotel Thomson\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"592 Balestier Road #01-01 S, Singapore, Singapore, , , 329901, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4790227,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICi78YtqrWuooqbV7OVh5cHxV2e7bfHvPY1pqiXnWk2Jc7nbpApLXgjfop232tHWIMMJILKSREilTzk7RTJXsw0pgXXgu2hBItdoTfWFYmPRs2WMDdc5Ht7NQh\\/5Oic7fvUeSVhBzli7EBpO1rhz3BS+xgKcInjMcaTQ07qbCCYTaJnp8VRH6YKRtnZQiY35IpwqqNibttLq0hAt5lnhtfRNygr+V9sSL70=\"}]},\"CityId\":25278,\"Brief\":\"The 3-star Value Hotel Thomson offers comfort and convenience whether you&#039;re on business or holiday in Singapore. The hotel has everything you need for a comfortable stay. Free Wi-Fi in all rooms, daily housekeeping, taxi service, 24-hour front desk, luggage storage are there for guest&#039;s enjoyment. Comfortable guestrooms ensure a good night&#039;s sleep with some rooms featuring facilities such as television LCD\\/plasma screen, complimentary instant coffee, complimentary tea, mirror, towels. To enhance guests&#039; stay, the hotel offers recreational facilities such as fitness center, outdoor pool. For reliable service and professional staff, Value Hotel Thomson caters to your needs.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":426059,\"Name\":\"Hotel Boss\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3053986430165\",\"Long\":\"103.860357999802\",\"Address\":\"500 Jalan Sultan  Singapore 199020 Singapore, Little India, \"},\"Images\":[],\"CityId\":25278,\"Brief\":\"Hotel boss is located near to Little India and Arab street, it is an excellent location to explore Singapore&#039;&#039;s historical and cultural heritage. The hotel is also within convenient distance to the central business district. There are a vibrant array of nightlife and entertainment choices surrounding the hotel all within walking distance.\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/5\\/3f2077a0bf9159fd2fe553199b25df4e-SIN_92H.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":12004,\"Title\":\"Madame Tussauds\",\"Description\":\"Madame Tussauds Singapore is a Wax museum and tourist attraction at the Imbiah Lookout of Sentosa Island in Singapore. It officially opened on 25 October 2014 as the seventh Asian branch of the Madame Tussauds chain of wax attractions worldwide.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Madame_Tussauds_25278_1573893439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2817,\"Title\":\"Singapore Cable Car\",\"Description\":\"The Singapore Cable Car is a gondola lift providing an aerial link from Mount Faber (Faber Peak Singapore) on the main island of Singapore to the resort island of Sentosa across the Keppel Harbour. Opened on 15 February 1974, it was the first aerial ropeway system in the world to span a harbour. However, it is not the first aerial ropeway system to span the sea. For instance, Awashima Kaij&Aring;\\u008d Ropeway in Japan, built in 1964, goes over a short strait to an island.Although referred to by its operators as a cable car, the listed system is in fact a monocable gondola lift and not an aerial tramway\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2648398,\"Long\":103.81851,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Singapore_Cable_Car_25278_1515678316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3670,\"Title\":\"Trick Eye Museum\",\"Description\":\"Trick Eye Museum Singapore, the internationally renowned optical art museum from Korea, introduces Augmented Reality (AR) features to its exhibits. The AR features will bring its art installations and paintings to life.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2569833,\"Long\":103.8226054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Trick_Eye_Museum_25278_1573893237.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2810,\"Title\":\"Wings Of Time Singapore\",\"Description\":\"Wings Of Time Singapore is a modern venue featuring a nightly show with colorful lights, lasers, water fountains &amp;amp; 3D effects.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Wings_Of_Time_Singapore_25278_1515654925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2163,\"Title\":\"Gardens by the Bay\",\"Description\":\"Gardens by the Bay is a nature park spreading over 101 hectares (250 sections of land) of recovered land in focal Singapore, contiguous the Marina Reservoir. The recreation center comprises of three waterfront gardens: Bay East Garden, Bay South Garden and Bay Central Garden. The biggest of the greenery enclosures is Bay South Garden at 54 hectares (130 sections of land). Gardens by the Bay is a piece of a methodology by the Singapore government to change Singapore from a &amp;quot;Greenhouse City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;. The expressed point is to raise the personal satisfaction by upgrading greenery and verdure in the city. Cove Central Garden will be a connection between Bay South and Bay East Gardens. It remains at 15 hectares (37 sections of land) with a 3-kilometer (1.9 mi) waterfront promenade that takes into account beautiful strolls extending from the downtown area toward the east of Singapore. More improvements of Bay Central Garden are coming in the next couple of years..\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.281568,\"Long\":103.863613,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Gardens_by_the_Bay_25278_1573892779.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3687,\"Title\":\"SANDS SKY PARK\",\"Description\":\"Marina Bay Sands SkyPark really offers a taste of the highlife by viewing Singapore from above. It offers a 360-degree panorama, with nothing but a sheet of glass and a few wires between you and the view.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2847443,\"Long\":103.8607121,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SANDS_SKY_PARK_25278_1530614001.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2162,\"Title\":\"Universal Studios Singapore\",\"Description\":\"Universal Studios Singapore  is a theme park located within Resorts World Sentosa on Sentosa Island, Singapore. It was a key component of Genting&amp;#039;s bid for the right to build Singapore&amp;#039;s second integrated resort. On 8 December 2006, the Singapore government announced that the consortium had won the bid. Construction of the theme park and the rest of the resort started on 19 April 2007. It is the second Universal Studios theme park to open in Asia (Japan being the first), and the first in Southeast Asia. The official plans for the park were unveiled to the public when Universal Studios Singapore released a park map to the public on 20 October 2009.Universal Studios Singapore has since attracted more than 2 million visitors in the 9 months from its opening.\\r\\nUniversal Parks &amp;amp; Resorts markets the park as a &amp;quot;one-of-its-kind theme park in Asia&amp;quot; and promises that the park will be the only one of its kind in Southeast Asia for the next 30 years\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.249404,\"Long\":103.830321,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Universal_Studios_Singapore_25278_1503574614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"309751\",\"Title\":\"ARRIVAL IN SINGAPORE FOLLOWED BY NIGHT SAFARI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Greetings from Singapore. We will escort you to your accommodation after arriving in Singapore. Whether you enjoy the outdoors, culture, thrills, or a good cocktail, Singapore provides a vast range of entertainment options, later in the evening proceed for Night Safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One of the top tourist destinations in Singapore is the Night Safari, the first nocturnal zoo in the world. Dr. Ong Swee Law, a former executive chairman of the Singapore Zoo, proposed the idea of a nocturnal park in Singapore in the 1980s. Along with its more traditional endeavors of providing top-notch entertainment and unique experiences, it also seeks to preserve, rescue, and improve animals through ongoing study. The constrained yet roomy recreated natural settings of the Night Safari are home to a large number of creatures from various origins. Families come here in droves to take in the variety of wildlife.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Highlights:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anywhere in the world has a zoo, but the night safari offers you a true sense of the jungle. Here, you can see animals that are not present anywhere else. It is split up into seven distinct geographic regions. For visitors, the night safari has food and beverage establishments. With adequate upkeep, animals can move around freely and without fear. Visitors are drawn to cultural performances, such as fire-eating shows. An interesting fact about Singapore: You may view leopards up close through a glass on a popular leopard path. The new wallaby track is reached through the intriguing East Lodge Trail. You can get a glimpse of the Sunda pangolin, which is the most traded mammal in the world. Only 40,000&amp;ndash;50,000 Asian elephants remain in the wild, and you can spot some of them here at night while fishing along the cat&amp;#39;s preferred route.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return back to the hotel. Overnight stay at Singapore Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":220142,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":426059,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309753\",\"Title\":\"CITY TOUR OF SINGAPORE \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Take a half-day city tour today in the morning and spend some time in Singapore exploring its well-known monuments. Enjoy traveling via China Town, Little India, Merlion Park, and the National Orchid Museum, as well as famous colonial buildings, before stopping at Thian Hock Keng Temple, Merlion Park, and the National Orchid Garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Singapore Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":220142,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":426059,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309755\",\"Title\":\"SENTOSA ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Singapore&amp;rsquo;s charm is one of its kind. The luxurious lifestyle and unique tourist attractions make it the perfect destination for the newlyweds. But the Sentosa Island of Singapore is where all the primary action happens. It might sound unbelievable but a decent number of tourists skip Singapore and plan a sole Sentosa Island Tour. With all due respect, Singapore is an amazing city but to get hold of beaches, adventure sports, and all-day fun, Sentosa Island is the place to hit. Without further ado, we&amp;rsquo;ll let you in on our quick guide to the fabulous things you can do on your Sentosa Island Tour. Now, we&amp;rsquo;re not suggesting that you skip Singapore, you might be able to do all these things in a single day. However, to do something and to enjoy something is totally different.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoying the beaches on Sentosa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Everyone loves beaches, don&amp;rsquo;t you? Sentosa has three beaches, namely the Siloso, Palawan, and Tanjong Beach. Our favorite is the Siloso beach, now don&amp;rsquo;t be mistaken, all of them offer splendid beauty and alluringly blue waters. However, Siloso offers something more, the right kind of calm within a crowd. If you want to enter the most popular beach Siloso in style, you can go ziplining 450 meters from the mega-adventure park. Siloso is a lively beach with a decent number of shacks, restaurants, and bars. It is also the best place to try kayaking, skimboarding, and other light water sports.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":220142,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":426059,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2817,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3670,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2810,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309757\",\"Title\":\"MBS SKY PARK AND GARDENS BY THE BAY\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast at the hotel, you will be escorted to the marina waterfront for your tour at Gardens by the Bay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The&amp;nbsp;&lt;strong&gt;Gardens by the Bay&lt;\\/strong&gt;&amp;nbsp;is a&amp;nbsp;nature park&amp;nbsp;spanning 101 hectares (250 acres) in the&amp;nbsp;Central Region&amp;nbsp;of&amp;nbsp;Singapore, adjacent to the&amp;nbsp;Marina Reservoir. The park consists of three waterfront gardens: Bay South Garden (in&amp;nbsp;Marina South), Bay East Garden (in&amp;nbsp;Marina East), and Bay Central Garden (in&amp;nbsp;Downtown Core&amp;nbsp;and&amp;nbsp;Kallang). The largest of the gardens is the Bay South Garden at 54 hectares (130 acres) designed by Grant Associates. Its Flower Dome is the largest glass greenhouse in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Gardens by the Bay was part of the nation&amp;#39;s plans to transform its &amp;quot;Garden City&amp;quot; to a &amp;quot;City in a Garden&amp;quot;, with the aim of raising the quality of life by enhancing greenery and flora in the city. First announced by&amp;nbsp;Prime Minister&amp;nbsp;Lee Hsien Loong&amp;nbsp;at Singapore&amp;#39;s&amp;nbsp;National Day Rally&amp;nbsp;in 2005, Gardens by the Bay was intended to be Singapore&amp;#39;s premier urban outdoor recreation space and a national icon.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":220142,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":426059,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3687,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309759\",\"Title\":\"UNIVERSAL STUDIOS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast at the hotel, our representative will you up for an adventurous and memorable day at Universal Studio.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;No one misses out the Universal Studios, it&amp;rsquo;s the most loved part of the Sentosa Island Tour. The Universal Studios on Sentosa offers multiple rides, attractions and over 23 shows (including 3D) to entertain you throughout the day. Featured rides like the Battle Galactica and Transformers attract people the most. Your tour of the Universal studios will be like stepping into a lot of Hollywood movies altogether. You can also get pictures with your favorite characters while you explore the streets of the studio. There are many restaurants and cafes within the studio so if you get tired you can satisfy the hunger within HOLLYWOOD (figuratively).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Now, the best part, if you want to explore Sentosa and the beauty of Singapore, ineedtrip has some exciting&amp;nbsp;packages&amp;nbsp;for you. With our packages, you&amp;rsquo;ll get the best deals and itineraries for your Singapore and Sentosa Island tour. We even have the option for customization, if you want to add or change one of our pre-planned packages. To have a look at them, you can visit them here.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":220142,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":426059,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2162,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309761\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Wake up to a beautiful morning and have a scrumptious breakfast.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pack your bags and complete the check-out formalities from the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your amazing Singapore tour concludes as you get dropped at the airport for your onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"42928\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"48600.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46980,\"priceDoubleOcc\":\"48600.20\",\"priceSingleOcc\":136081,\"priceExtraBed\":\"36450.70\",\"priceWithoutBed\":\"24300.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48600.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24300.1,\"CEB\":36450.7,\"COSTDO\":48600.2,\"COSTSO\":136081,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43740.4,\"COSTTO\":43740.4}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42929\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55237.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":53396,\"priceDoubleOcc\":\"55237.60\",\"priceSingleOcc\":154664.4,\"priceExtraBed\":\"41428.20\",\"priceWithoutBed\":\"27618.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55237.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27618.8,\"CEB\":41428.2,\"COSTDO\":55237.6,\"COSTSO\":154664.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49713.4,\"COSTTO\":49713.4}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"309751\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[309751],\"Remark\":[\"&lt;p&gt;&lt;ul&gt;&lt;li&gt;All transfers (tours\\/sightseeing) on SIC basis. &lt;br&gt;&lt;\\/li&gt;&lt;li&gt;Airport transfers on Private basis&lt;\\/li&gt;&lt;\\/ul&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309753\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[309753],\"Remark\":[\"&lt;p&gt;&lt;ul&gt;&lt;li&gt;All transfers (tours\\/sightseeing) on SIC basis. &lt;br&gt;&lt;\\/li&gt;&lt;li&gt;Airport transfers on Private basis&lt;br&gt;&lt;\\/li&gt;&lt;\\/ul&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309755\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[309755],\"Remark\":[\"&lt;p&gt;&lt;ul&gt;&lt;li&gt;All transfers (tours\\/sightseeing) on SIC basis. &lt;br&gt;&lt;\\/li&gt;&lt;li&gt;Airport transfers on Private basis&lt;br&gt;&lt;\\/li&gt;&lt;\\/ul&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309757\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[309757],\"Remark\":[\"&lt;p&gt;&lt;ul&gt;&lt;li&gt;All transfers (tours\\/sightseeing) on SIC basis. &lt;br&gt;&lt;\\/li&gt;&lt;li&gt;Airport transfers on Private basis&lt;\\/li&gt;&lt;\\/ul&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309759\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[309759],\"Remark\":[\"&lt;p&gt;&lt;ul&gt;&lt;li&gt;All transfers (tours\\/sightseeing) on SIC basis.&lt;br&gt;&lt;\\/li&gt;&lt;li&gt; Airport transfers on Private basis&lt;br&gt;&lt;\\/li&gt;&lt;\\/ul&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309761\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[309761],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',48600,55238,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Singapore','190','2023-09-07 12:03:21','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'scintillating-singapore',NULL,NULL,NULL,0),(367,42829,1,5293,0,0,0,'Honeymoon,Adventure,Wildlife,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42829,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/magical-thailand_1690624697\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is one of the most popular tourist destinations. Why may people have such a strong desire to visit this vibrant nation? The list of possible factors includes secluded beaches, delicious cuisine from far-off locations, beautiful landscapes and temples, a long history, or a popular social and archaeological site. There are several Buddha statues in Thailand. Others are simply meditating, while others are sleeping or standing. They are constructed of stone, metal, or emeralds and are available in varied sizes. In the country, there are more than 40,000 Buddhist temples, and each has its own personality. The best temples in Thailand as well as surrounding countries can be seen. Thailand has a lot to offer, from a vibrant sense of energy to exciting urban sites to explore. It inspires awe and the knowledge that everything is possible.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Phuket\",\"DestinationPlacesSysId\":21319,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAGICAL THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":174300,\"Name\":\"Manhattan Bangkok\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.739528\",\"Long\":\"100.558303\",\"Address\":\"13 Sukhumvit Rd. Soi 15 Bangkok 10110\"},\"Images\":{\"Image\":[{\"ImagId\":3869850,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/353\\/restaurant_A.jpg\"},{\"ImagId\":3869851,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/362\\/reception_A.jpg\"},{\"ImagId\":3869852,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/344\\/room2_A.jpg\"},{\"ImagId\":3869853,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/335\\/room1_A.jpg\"},{\"ImagId\":3869854,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/371\\/pool_A.jpg\"},{\"ImagId\":3869855,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/380\\/exteriors-Hotel-General_C.jpg\"}]},\"CityId\":2266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Manhattan Bangkok, you&amp;apos;ll be centrally located in Bangkok, walking distance from Terminal 21 Shopping Mall and close to Embassy of India.  This 4-star hotel is within close proximity of Embassy of Pakistan and Bumrungrad Hospital.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 203 air-conditioned rooms featuring refrigerators and LCD televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Be sure to enjoy recreational amenities including an outdoor pool and a fitness center. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at one of the hotel&amp;apos;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&eacute;. From your room, you can also access 24-hour room service. Mingle with other guests at a complimentary reception, held daily. Relax with a refreshing drink at one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a computer station, express check-in, and express check-out. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/39\\/374\\/353\\/restaurant_A.jpg\",\"AccoAminitiesMask\":\"110101000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":523121,\"Name\":\"ibis Bangkok Sukhumvit 4\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"13.7378798\",\"Long\":\"100.5534369\",\"Address\":\"41 Sukhumvit Rd, Klongtoey, Khet Watthana, Krung Thep Maha Nakhon 10110, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":523104,\"Name\":\"JC Kevin Sathon Bangkok Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7163463\",\"Long\":\"100.5315898\",\"Address\":\"36 Thanon Naradhiwat Rajanagarindra, Khwaeng Yan Nawa, Khet Sathon, Krung Thep Maha Nakhon 10120, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3492,\"Title\":\"Bangkok city tour\",\"Description\":\"A very unique experience to know the city of Bangkok, This includes all the major attractions of the city including temples that are famous all around the world in a single day. If you want to ensure to visit all attraction in Bangkok that are very famous and a must visit adventurous and thrilling exploration, sightseeing tour.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1518416345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":24918,\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":514207,\"Name\":\"Novotel Phuket Vintage Park Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.898862899999999\",\"Long\":\"98.3005531\",\"Address\":\"89 Rat U Thit 200 Pee Rd, ?????????? ?????????? ?????? 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":520783,\"Name\":\"ibis Phuket Patong\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.901874100000001\",\"Long\":\"98.29976010000001\",\"Address\":\"10 Chalermphrakiat Road, Tambon Patong, Amphoe Kathu, Chang Wat Phuket 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":522980,\"Name\":\"Deevana Patong Resort & Spa \",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"7.900823000000001\",\"Long\":\"98.3025912\",\"Address\":\"43\\/2 Raj-U-Thid, ??? 200 ?? ?????????? ?????????? ?????? 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_522980\\/5293_63b38902db3e78933d61c2d35705e0d51665388784.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3492,\"Title\":\"Bangkok city tour\",\"Description\":\"A very unique experience to know the city of Bangkok, This includes all the major attractions of the city including temples that are famous all around the world in a single day. If you want to ensure to visit all attraction in Bangkok that are very famous and a must visit adventurous and thrilling exploration, sightseeing tour.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1518416345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":24918,\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"309108\",\"Title\":\"ARRIVAL BANGKOK AND TRANSFER TO HOTEL\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;A warm welcome awaits you at Bangkok&amp;#39;s Suvarnabhumi International Airport. From here, our tour representative will receive and escort you to the Hotel.&amp;nbsp;After all, it&amp;rsquo;s a free day and it should go in your own way with the flow of your mood right? So, enjoy your breakfast all relaxed in your hotel. The whole day is at your own disposal to spend it your way.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":174300,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":523121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":523104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309110\",\"Title\":\" BANGKOK HALF-DAY CITY TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, get ready to explore Bangkok city. Experience a fun-filled time with your loved ones while roaming around Bangkok&amp;#39;s most renowned places with a help of a professional tour guide who will help you to understand the history and culture of the places. Touch some of the famous destinations that are popular among tourists&amp;#39; like-Golden Buddha,&amp;nbsp; Marble Buddha, and Reclining Buddha. Have a delicious meal on this experience at a scenic riverside restaurant and taste some amazing dishes there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":174300,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":523121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":523104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3492,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309112\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309114\",\"Title\":\"TRANSFER FROM BANGKOK TO PHUKET HOTEL\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Take as much as you need at breakfast this morning, pack your luggage, and leave the hotel. We said goodbye to Bangkok, today and continued our vacation to Phuket, which is a much more exotic location. Check from Hotel and unwind after arriving in Phuket. You can spend the rest of the day doing whatever you like. You can explore your neighborhood in the evening and savor some freshly prepared cuisine at neighboring beach restaurants. After that, return back to the hotel and unwind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":522980,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309116\",\"Title\":\"PHUKET HALF DAY CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Explore Phuket&amp;rsquo;s natural beauty and culture on this guided excursion. After a convenient hotel pickup, you will proceed onto exploring the entire Phuket City Tour. Phuket Island&amp;#39;s natural beauty as you are driven along beach roads through Patong, Karon, and Kata. Visit the &amp;#39;Three Beaches&amp;#39; viewpoint where you can take in a great vista of the beautiful bays of Kata Noi, Kata, Karon, and Kho Pu Island, at one of the island&amp;#39;s best scenic spots. This tour gives an insight into the highlights of the &amp;#39;Pearl of the Andaman&amp;#39;. It also includes a leisurely drive around Phuket&amp;#39;s west coastline from Patong beach till the end of the island. Other attractions visited are the Gems factory, Wat Chalong, a Cashew Nut Factory, the Sunset viewpoint at Phromthep Cape\\/Windmill Point, and other local products place.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":522980,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24918,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309118\",\"Title\":\"(PHI PHI ISLAND + KHAI ISLAND) TOUR BY SPEED BOAT \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, pick up you from the hotel and head to the most popular tour experience in Phuket, the &lt;strong&gt;Phi Phi Island Tour&lt;\\/strong&gt;, The Phi Phi archipelago is a must-visit while in Phuket, and this speedboat trip whisks you around the islands in one day. Breathtaking limestone cliffs rise straight out of the emerald-green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; the site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters. Swim over the coral reefs of Pileh Lagoon, have lunch at Phi Phi Leh, snorkel at Bamboo Island, and visit Monkey Beach and Maya Bay, immortalized in &amp;quot;The Beach.&amp;quot; Boat transfers, snacks, buffet lunch, snorkeling equipment, and Phuket hotel pickup and drop-off are all included. Visit the islands by speedboat to relax, swim, and snorkel Sightsee Maya Bay, popularized by the famous movie, &amp;ldquo;The Beach&amp;rdquo; starring Leonardo DiCaprio See the monkeys at Monkey Beach Snorkel masks and lifejackets are provided. A tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave, and Monkey Beach.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":522980,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309120\",\"Title\":\"DEPARTURE FROM PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, it&amp;#39;s time to say goodbye to the amazing place with unforgettable memories, our representative will escort you the Phuket Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"42829\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21670.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":20948,\"priceDoubleOcc\":\"21670.00\",\"priceSingleOcc\":60676,\"priceExtraBed\":\"16252.50\",\"priceWithoutBed\":\"10835.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21670,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10835,\"CEB\":16252.5,\"COSTDO\":21670,\"COSTSO\":60676,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19503,\"COSTTO\":19503}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42830\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25520.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":24669,\"priceDoubleOcc\":\"25520.00\",\"priceSingleOcc\":71456,\"priceExtraBed\":\"19140.00\",\"priceWithoutBed\":\"12760.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12760,\"CEB\":19140,\"COSTDO\":25520,\"COSTSO\":71456,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22968,\"COSTTO\":22968}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply to postpone\\/prepone charges even after meeting the above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to the availability of Hotel\\/Volvo and season\\/off-season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in the plan within 15 days of the travel date. However, in rare cases like adverse climatic conditions or strikes, the package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internal Airfare will be subject to avaliability&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double sharing basis with breakfast as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Return transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internal flight from Bangkok to Phuket&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"309108\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[309108],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309110\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[309110],\"Remark\":[\"&lt;p&gt;All Tours\\/Sightseeing on a SIC basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309112\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[309112],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309114\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[309114],\"Remark\":[\"&lt;p&gt;All Tours\\/Sightseeing on a SIC basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309116\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[309116],\"Remark\":[\"&lt;p&gt;All Tours\\/Sightseeing on a SIC basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309118\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[309118],\"Remark\":[\"&lt;p&gt;All Tours\\/Sightseeing on a SIC basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309120\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[309120],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Bangkok,Phuket','Bangkok,South East Asia,Thailand,Phuket',NULL,'2266,21319',21670,25520,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 12:05:11','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'magical-thailand',NULL,NULL,NULL,0),(368,42827,1,5293,0,0,0,'Family,Weekend,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42827,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/affordable-thailand_1690622911\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Want to plan your weekend?&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Thailand is the answer to your weekend get-a-way. Our Affordable Thailand which includes Pattaya and Bangkok will give a perfect glimpse of the Country. In Pattaya, you can relax in the clean and clear water of the sea and rest on the gorgeous sandy soul beaches and look at the breathtaking landscape and the very captivating sunset.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;No matter, what kind of vacation you are looking for whether for some quality time with family or a honeymoon special tour, or to have fun with friends, you can get it all here, without any disappointments.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Pattaya\",\"SourcePlaceSysId\":20925,\"AgencyName\":\"I Need Trip\",\"Name\":\"AFFORDABLE THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,All Transfers\",\"PackageType\":\"Family,Weekend,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218720,\"Name\":\"FX Hotel Pattaya Pratamnak\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"352316 Moo 12, Pattaya, Chon Buri Pattaya  20150, Pattaya, , , , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788860,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICi78YtqrWuooqbV7OVh5cHxV2e7bfHvPY1pqiXnWk2Jc7nbpApLXgjfpRP9WrHJgqsF1rlE8U7OWk8mvbWOKnRDqSCc\\/YlnmuKoyCF2YngXCWpryxDQQy7eCL1bFnwA7AQFquEc6IIZwi3zKlUHYk53TPf9A8ejcIRxbnme\\/Bi3DyKVRHu8CiLdmLuYAdcHq8A=\"}]},\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":520089,\"Name\":\"Centara Pattaya Hotel\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9412129\",\"Long\":\"100.888749\",\"Address\":\"78\\/140 Moo 9 Nongprue, ?????????? ????????????? ?????? 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":28463,\"Title\":\"Pattaya to Bangkok Enroute Bangkok Temple Tour Golden Temple Marble Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218933,\"Name\":\"Vince Hotel Pratunam\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.754268\",\"Long\":\"100.535617\",\"Address\":\"26\\/2 ALLEY 2, PHETCHABURI 11  10400 RATCHATHEWEE  TH, , , 10400\"},\"Images\":{\"Image\":[{\"ImagId\":4789073,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFujrqqzn7jP\\/+doJAFDSXDpB5LYigtury3d\\/8o4EQyD6JtsuBzqwL6gw==\"}]},\"CityId\":2266,\"Brief\":\"This contemporary hotel is located in one of the liveliest areas of Bangkok, Pratunam street. It is the true shopping paradise for all those on the lookout for something special and exclusive. A wide range of nearby shopping venues is to be found in the surrounding area, including Siam Paragon mall, Platinum, and Gaysorn Plaza. The exclusive accommodation units range from the superior room, with a classic design which combines warm tones of brown and white tones, to the spacious premier room, decorated in cool tones of grey and white and offering plush bedding. They all have been elegantly fitted and finely furnished for guests to feel right at home. The trendy restaurant, with opening glass walls, is ideal to sip the morning&acirc;&euro;&trade;s coffee, whilst the lobby bar is the best place where to relax after a busy day of shopping.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":523093,\"Name\":\"Hotel Amber Sukhumvit 85\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7024661\",\"Long\":\"100.6035262\",\"Address\":\"8 Soi Sukhumvit 85, Khwaeng Bang Chak, Khet Phra Khanong, Krung Thep Maha Nakhon 10260, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2819,\"Title\":\"Alcazar Show\",\"Description\":\"Alcazar Cabaret Show Pattaya is widely regarded as one of the best ladyboy cabaret shows in Pattaya, which is saying a lot given the amount of high-quality competition for such a title. A 400-member team presents a 70-minute extravaganza of glitzy and glamorous entertainment in the well-established theatre by Pattaya Second Road.\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/217_1517571685.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":28463,\"Title\":\"Pattaya to Bangkok Enroute Bangkok Temple Tour Golden Temple Marble Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"309098\",\"Title\":\"Arrival in Thailand transfer to Pattaya Hotel\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Suvarnabhumi International Airport and after clearing Immigration and Custom formalities, proceed towards the meeting point. Local Representative will greet you and welcome you. Hotels may provide rooms early if available. This is subject to availability and at the discretion of the hotel. Complete your check in. Overnight in Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218720,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":520089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2819,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309100\",\"Title\":\"CORAL ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Your tour will begin early in the morning after a delicious breakfast at the hotel. You will be driven to Pattaya Beach.&amp;nbsp;You will reach the spot to board a speedboat to marine sports pier. This will be followed by one of the most anticipated things to do in Pattaya, adventure activities (optional purchase) that include water sports i.e. parasailing, undersea walking, jet ski, and banana boat ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After arriving at Coral Island, you can spend some time at leisure under the warm tropical sun. If swimming is your thing take a dip into the water and relax. By 12:00 PM proceed back to the Pattaya beach on a speedboat and enjoy a scrumptious lunch at a restaurant.&lt;br \\/&gt;\\r\\nYou will be taken back to the hotel by mid-afternoon after which you can spend the evening at your own leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218720,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":520089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309102\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309104\",\"Title\":\"ENROUTE TO BANGKOK ALONG WITH CITY TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Wake up with a delicious breakfast and get ready for a sightseeing tour of Bangkok.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The representative will pick you up from the hotel around 10:00 AM and take you to explore this beautiful city in a shred transport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Capture the beautiful sight of the Grand Palace, adorned with beautiful architecture and intricate details and get to know why even after 150 years, the monument is the spiritual heart of the Thai kingdom.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can also visit Wat Phra Kaew or the Temple of Emerald Buddha, located within the grounds of Grand Palace and enshrines the Emerald Buddha image carefully carved from the single block of jade.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Make your way towards Kuan Yim Shrine (Thian Fa Foundation), and experience a peaceful time while praying to the goddess of mercy (basically in Mahayana Buddhism) and see the beauty of the colourful shrine which is about 900 years old.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Wat Benchamabopit or Marble Temple, one of the most modern works of Thai religious architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Continue the tour by passing through the beautiful city scenery of the colourful floating market and Chinatown.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The bustling business area of Chinatown is especially known for its gold jewellery shops where the atmosphere is totally changed at night - hordes of food stalls line the streets.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Taste the flavours of delicious Thai Cuisines, stroll around the streets and collect souvenirs for your loved ones.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":523093,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":218933,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":28463,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"309106\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, Check out from the Hotel and will escort you to the Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"42827\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":9570,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":27720,\"priceExtraBed\":\"7425.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4950,\"CEB\":7425,\"COSTDO\":9900,\"COSTSO\":27720,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":8910,\"COSTTO\":8910}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42828\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":32340,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":32340,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of confirmation.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa - On Arrival&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary including Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Nights Stay in Pattaya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Night Stay in Bangkok&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"309098\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[309098],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All tours\\/sightseeings on SIC basis.&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309100\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[309100],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All tours\\/sightseeings on SIC basis.&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309102\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[309102],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309104\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[309104],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;ul&gt;&lt;li&gt;All tours\\/sightseeings on SIC basis.&lt;\\/li&gt;&lt;\\/ul&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"309106\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[309106],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',9900,11550,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 12:06:00','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'affordable-thailand',NULL,NULL,NULL,0),(370,42109,1,5293,0,0,0,'Honeymoon,Adventure,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":42109,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/glittering-singapore_1690013755\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;Small in size, the &amp;lsquo;Lion City&amp;rsquo; offers big delights&amp;nbsp;&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;background-color:#ffffff&quot;&gt;This tiny island city-state is a study of fusions and contrasts bursting with wonders waiting to be explored. Tranquil parks abut futuristic skyscrapers and luxe shopping malls. A thriving street food scene and world-class restaurants offer countless ways to taste and sip your way through Singapore&amp;rsquo;s culinary melting pot. Your first trip to Singapore will prove that sometimes the best things come in small packages.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"I Need Trip\",\"Name\":\"GLITTERING SINGAPORE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5686\",\"SupplierName\":\"NAMHO\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Sightseeing,Visa,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":17199,\"Name\":\"Ibis Singapore Novena\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.326146\",\"Long\":\"103.845863\",\"Address\":\"6 Irrawaddy Road 329543 Singapore\"},\"Images\":{\"Image\":[{\"ImagId\":423151,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/397\\/7451_ho_00_p_3000x2250_A.jpg\"},{\"ImagId\":423152,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/401\\/7451_ho_01_p_3000x2250_A.jpg\"},{\"ImagId\":423153,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/405\\/7451_ho_02_p_3000x2250_A.jpg\"},{\"ImagId\":423154,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/806\\/767\\/7451_ho_04_p_3000x2250_A.jpg\"},{\"ImagId\":423155,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/449\\/7451_ro_04_p_3000x2250_A.jpg\"},{\"ImagId\":423156,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/549\\/952\\/7451_ro_05_p_3000x2250_A.jpg\"},{\"ImagId\":423157,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/457\\/7451_rs_00_p_3000x2250_A.jpg\"},{\"ImagId\":423158,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/461\\/7451_rs_01_p_3000x2250_A.jpg\"},{\"ImagId\":423159,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/549\\/960\\/7451_ba_00_p_3000x2250_A.jpg\"},{\"ImagId\":423160,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/469\\/7451_fe_00_p_3000x2250_A.jpg\"},{\"ImagId\":423161,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/806\\/845\\/7451_fe_01_p_3000x2250_A.jpg\"},{\"ImagId\":423162,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/526\\/645\\/7451_de_00_p_2048x1536_A.jpg\"},{\"ImagId\":423163,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/526\\/655\\/7451_de_01_p_2048x1536_A.jpg\"},{\"ImagId\":423164,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/74\\/526\\/664\\/7451_de_02_p_2048x1536_A.jpg\"},{\"ImagId\":423165,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/589\\/505\\/7451_roqec_00_p_3000x2250_A.jpg\"},{\"ImagId\":423166,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/589\\/509\\/7451_rosgc_00_p_3000x2250_A.jpg\"},{\"ImagId\":423167,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/589\\/517\\/7451_rotwc_00_p_3000x2250_A.jpg\"},{\"ImagId\":423168,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/589\\/525\\/7451_rosgc_01_p_3000x2250_A.jpg\"}]},\"CityId\":25278,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at ibis Singapore Novena in Singapore, you&amp;apos;ll be close to City Square Mall and National Orchid Garden.  This hotel is within close proximity of Mustafa Centre and Far East Plaza.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 241 air-conditioned guestrooms. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of ibis Singapore Novena. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include dry cleaning\\/laundry services, a 24-hour front desk, and multilingual staff. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/155\\/397\\/7451_ho_00_p_3000x2250_A.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":17235,\"Name\":\"Hotel Boss\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.30351\",\"Long\":\"103.853\",\"Address\":\"500 Jalan Sultan #01-01 Singapore 199020\"},\"Images\":{\"Image\":[{\"ImagId\":424163,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_39_t.jpg\"},{\"ImagId\":424164,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_40_t.jpg\"},{\"ImagId\":424165,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_41_t.jpg\"},{\"ImagId\":424166,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_42_t.jpg\"},{\"ImagId\":424167,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_43_t.jpg\"},{\"ImagId\":424168,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_45_t.jpg\"},{\"ImagId\":424169,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_46_t.jpg\"},{\"ImagId\":424170,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_44_t.jpg\"},{\"ImagId\":424171,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_47_t.jpg\"},{\"ImagId\":424172,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_49_t.jpg\"},{\"ImagId\":424173,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_75_t.jpg\"},{\"ImagId\":424174,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_92_t.jpg\"},{\"ImagId\":424175,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_52_t.jpg\"},{\"ImagId\":424176,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_68_t.jpg\"},{\"ImagId\":424177,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_54_t.jpg\"},{\"ImagId\":424178,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_56_t.jpg\"},{\"ImagId\":424179,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_58_t.jpg\"},{\"ImagId\":424180,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_59_t.jpg\"},{\"ImagId\":424181,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_61_t.jpg\"},{\"ImagId\":424182,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_70_t.jpg\"},{\"ImagId\":424183,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_71_t.jpg\"},{\"ImagId\":424184,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_78_t.jpg\"},{\"ImagId\":424185,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_86_t.jpg\"},{\"ImagId\":424186,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_87_t.jpg\"},{\"ImagId\":424187,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_88_t.jpg\"},{\"ImagId\":424188,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_63_t.jpg\"},{\"ImagId\":424189,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_65_t.jpg\"},{\"ImagId\":424190,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_69_t.jpg\"},{\"ImagId\":424191,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_93_t.jpg\"},{\"ImagId\":424192,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_51_t.jpg\"},{\"ImagId\":424193,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_77_t.jpg\"},{\"ImagId\":424194,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_90_t.jpg\"},{\"ImagId\":424195,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_50_t.jpg\"},{\"ImagId\":424196,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_81_t.jpg\"},{\"ImagId\":424197,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_62_t.jpg\"},{\"ImagId\":424198,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_66_t.jpg\"},{\"ImagId\":424199,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_74_t.jpg\"},{\"ImagId\":424200,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_76_t.jpg\"},{\"ImagId\":424201,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_79_t.jpg\"},{\"ImagId\":424202,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_84_t.jpg\"},{\"ImagId\":424203,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_94_t.jpg\"},{\"ImagId\":424204,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_95_t.jpg\"},{\"ImagId\":424205,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_91_t.jpg\"},{\"ImagId\":424206,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_60_t.jpg\"},{\"ImagId\":424207,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_89_t.jpg\"},{\"ImagId\":424208,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_64_t.jpg\"},{\"ImagId\":424209,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_53_t.jpg\"},{\"ImagId\":424210,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_57_t.jpg\"},{\"ImagId\":424211,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_80_t.jpg\"},{\"ImagId\":424212,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_82_t.jpg\"},{\"ImagId\":424213,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_67_t.jpg\"},{\"ImagId\":424214,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_73_t.jpg\"},{\"ImagId\":424215,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_85_t.jpg\"},{\"ImagId\":424216,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_55_t.jpg\"},{\"ImagId\":424217,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_72_t.jpg\"},{\"ImagId\":424218,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_83_t.jpg\"},{\"ImagId\":424219,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_48_t.jpg\"}]},\"CityId\":25278,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Hotel Boss in Singapore (Kampong Glam), you&amp;apos;ll be close to Haji Lane and Chinatown Heritage Center.  This hotel is within close proximity of Golden Mile Complex and Mustafa Centre.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 1500 air-conditioned rooms featuring LED televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as desks and coffee\\/tea makers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Don&amp;apos;t miss out on recreational opportunities including an outdoor pool and a fitness center.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the hotel&amp;apos;s 2 restaurants.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include dry cleaning\\/laundry services and a 24-hour front desk. Self parking (subject to charges) is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/14000000\\/13310000\\/13307900\\/13307850\\/13307850_39_t.jpg\",\"AccoAminitiesMask\":\"110100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":12004,\"Title\":\"Madame Tussauds\",\"Description\":\"Madame Tussauds Singapore is a Wax museum and tourist attraction at the Imbiah Lookout of Sentosa Island in Singapore. It officially opened on 25 October 2014 as the seventh Asian branch of the Madame Tussauds chain of wax attractions worldwide.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Madame_Tussauds_25278_1573893439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":2817,\"Title\":\"Singapore Cable Car\",\"Description\":\"The Singapore Cable Car is a gondola lift providing an aerial link from Mount Faber (Faber Peak Singapore) on the main island of Singapore to the resort island of Sentosa across the Keppel Harbour. Opened on 15 February 1974, it was the first aerial ropeway system in the world to span a harbour. However, it is not the first aerial ropeway system to span the sea. For instance, Awashima Kaij&Aring;\\u008d Ropeway in Japan, built in 1964, goes over a short strait to an island.Although referred to by its operators as a cable car, the listed system is in fact a monocable gondola lift and not an aerial tramway\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2648398,\"Long\":103.81851,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Singapore_Cable_Car_25278_1515678316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":2810,\"Title\":\"Wings Of Time Singapore\",\"Description\":\"Wings Of Time Singapore is a modern venue featuring a nightly show with colorful lights, lasers, water fountains &amp;amp; 3D effects.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Wings_Of_Time_Singapore_25278_1515654925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":2162,\"Title\":\"Universal Studios Singapore\",\"Description\":\"Universal Studios Singapore  is a theme park located within Resorts World Sentosa on Sentosa Island, Singapore. It was a key component of Genting&amp;#039;s bid for the right to build Singapore&amp;#039;s second integrated resort. On 8 December 2006, the Singapore government announced that the consortium had won the bid. Construction of the theme park and the rest of the resort started on 19 April 2007. It is the second Universal Studios theme park to open in Asia (Japan being the first), and the first in Southeast Asia. The official plans for the park were unveiled to the public when Universal Studios Singapore released a park map to the public on 20 October 2009.Universal Studios Singapore has since attracted more than 2 million visitors in the 9 months from its opening.\\r\\nUniversal Parks &amp;amp; Resorts markets the park as a &amp;quot;one-of-its-kind theme park in Asia&amp;quot; and promises that the park will be the only one of its kind in Southeast Asia for the next 30 years\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.249404,\"Long\":103.830321,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Universal_Studios_Singapore_25278_1503574614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"303905\",\"Title\":\"ARRIVAL IN SINGAPORE FOLLOWED BY NIGHT SAFARI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Greetings from Singapore. We will escort you to your accommodation after arriving in Singapore. Whether you enjoy the outdoors, culture, thrills, or a good cocktail, Singapore provides a vast range of entertainment options, later in the evening proceed for Night Safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One of the top tourist destinations in Singapore is the Night Safari, the first nocturnal zoo in the world. Dr. Ong Swee Law, a former executive chairman of the Singapore Zoo, proposed the idea of a nocturnal park in Singapore in the 1980s. Along with its more traditional endeavors of providing top-notch entertainment and unique experiences, it also seeks to preserve, rescue, and improve animals through ongoing study. The constrained yet roomy recreated natural settings of the Night Safari are home to a large number of creatures from various origins. Families come here in droves to take in the variety of wildlife.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Highlights:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anywhere in the world has a zoo, but the night safari offers you a true sense of the jungle. Here, you can see animals that are not present anywhere else. It is split up into seven distinct geographic regions. For visitors, the night safari has food and beverage establishments. With adequate upkeep, animals can move around freely and without fear. Visitors are drawn to cultural performances, such as fire-eating shows. An interesting fact about Singapore: You may view leopards up close through a glass on a popular leopard path. The new wallaby track is reached through the intriguing East Lodge Trail. You can get a glimpse of the Sunda pangolin, which is the most traded mammal in the world. Only 40,000&amp;ndash;50,000 Asian elephants remain in the wild, and you can spot some of them here at night while fishing along the cat&amp;#39;s preferred route.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return back to the hotel. Overnight stay at Singapore Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17235,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"303907\",\"Title\":\"HALF DAY CITY TOUR + SENTOSA TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, you will be picked up from your hotel for the city tour, where&amp;nbsp;you will be exploring the city&amp;#39;s famous landmarks&amp;nbsp;on a half-day tour. You can pass by prominent colonial buildings before stopping at Merlion Park, Thian Hock Keng Temple, and National Orchid Garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Singapore&amp;rsquo;s charm is one of its kind. The luxurious lifestyle and unique tourist attractions make it the perfect destination for the newlyweds. But the &lt;strong&gt;Sentosa Island&lt;\\/strong&gt; of Singapore is where all the primary action happens. It might sound unbelievable but a decent number of tourists skip Singapore and plan a sole Sentosa Island Tour. With all due respect, Singapore is an amazing city but to get hold of beaches, adventure sports, and all-day fun, Sentosa Island is the place to hit. Without further ado, we&amp;rsquo;ll let you in on our quick guide to the fabulous things you can do on your Sentosa Island Tour. Now, we&amp;rsquo;re not suggesting that you skip Singapore, you might be able to do all these things in a single day. However, to do something and to enjoy something is totally different.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Enjoying the beaches on Sentosa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Everyone loves beaches, don&amp;rsquo;t you? Sentosa has three beaches, namely the Siloso, Palawan, and Tanjong Beach. Our favorite is the Siloso beach, now don&amp;rsquo;t be mistaken, all of them offer splendid beauty and alluringly blue waters. However, Siloso offers something more, the right kind of calm within a crowd. If you want to enter the most popular beach Siloso in style, you can go ziplining 450 meters from the mega-adventure park. Siloso is a lively beach with a decent number of shacks, restaurants, and bars. It is also the best place to try kayaking, skimboarding, and other light water sports.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17235,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":12004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2817,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2810,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"303909\",\"Title\":\"UNIVERSAL STUDIOS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;No one misses out the Universal Studios, it&amp;rsquo;s the most loved part of the Sentosa Island Tour. The Universal Studios on Sentosa offers multiple rides, attractions and over 23 shows (including 3D) to entertain you throughout the day. Featured rides like the Battle Galactica and Transformers attract people the most. Your tour of the Universal studios will be like stepping into a lot of Hollywood movies altogether. You can also get pictures with your favorite characters while you explore the streets of the studio. There are many restaurants and cafes within the studio so if you get tired you can satisfy the hunger within HOLLYWOOD (figuratively).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Now, the best part, if you want to explore Sentosa and the beauty of Singapore, ineedtrip has some exciting&amp;nbsp;packages&amp;nbsp;for you. With our packages, you&amp;rsquo;ll get the best deals and itineraries for your Singapore and Sentosa Island tour. We even have the option for customization, if you want to add or change one of our pre-planned packages. To have a look at them, you can visit them here.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17235,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2162,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"303911\",\"Title\":\"LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;The day of the tour is a &lt;strong&gt;Leisure Day&lt;\\/strong&gt;, spend it at your convenience. You can explore famous flea markets in Singapore such as Flea where, Boutique Fairs, Public Garden, So Gelam Market, and Retro Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Experience the best of Singapore&amp;rsquo;s Indian community at Little India which is a buzzing historic area that shows off the vibrant culture to incredible shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Famous for its colorful heritage buildings, hiding old Chinese shophouses, the architecture hearkens back to a bygone era in Singapore&amp;rsquo;s history at Chinatown, which consists of post-war shops selling fine silk, traditional handicrafts, gold and silver jewelry, and Chinese herbs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Do not forget to visit the largest shopping mall in Singapore, Vivo City Mall. It&amp;#39;s a vibrant mix of retail and entertainment concepts and also features wide, open spaces for waterfront relaxation.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Orchard Road&amp;rsquo;s bustling boulevard is now a retail and dining paradise, with thousands of establishments offering the ultimate lifestyle experience to tourists; you can purchase Orchid Perfumes and Merlion Souvenirs.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After exploring the markets, return to the hotel for a sound sleep.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":17235,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"303913\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"42109\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43989.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42523,\"priceDoubleOcc\":\"43989.00\",\"priceSingleOcc\":123169.2,\"priceExtraBed\":\"32992.30\",\"priceWithoutBed\":\"21994.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43989,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21994.5,\"CEB\":32992.3,\"COSTDO\":43989,\"COSTSO\":123169.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39590.1,\"COSTTO\":39590.1}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"42110\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"48290.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":46680,\"priceDoubleOcc\":\"48290.00\",\"priceSingleOcc\":135212,\"priceExtraBed\":\"36217.50\",\"priceWithoutBed\":\"24145.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":48290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24145,\"CEB\":36217.5,\"COSTDO\":48290,\"COSTSO\":135212,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":43461,\"COSTTO\":43461}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots other than mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on double sharing basis with breakfast as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport transfers on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing and transfers as per itinerary\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Night Safari - SIC Basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Singapore City Tour With Sentosa (Cable Car Skypass - One Way + Madame Tussauds &amp;amp; Images Of Singapore + Ultimate Star Experience + 4D Marvel + Boat ride + Wings Of Time) - SIC Basis&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Universal Studios - SIC Basis&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Singapore VISA&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"303905\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[303905],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"303907\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[303907],\"Remark\":[\"&lt;p&gt;All sightseeing on SIC bais&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"303909\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[303909],\"Remark\":[\"&lt;p&gt;All sightseeing on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"303911\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[303911],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"303913\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[303913],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',43989,48290,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Singapore','190','2023-09-07 12:07:40','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glittering-singapore',NULL,NULL,NULL,0),(371,41808,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41808,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/thrilling-thail_1665815959\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Thailand is a Southeast Asian country. It&amp;#39;s known for tropical beaches, opulent royal palaces, ancient ruins, and ornate temples displaying figures of Buddha.&amp;nbsp;&lt;br \\/&gt;\\r\\nPicturesque in the day &amp;amp; Illuminating in the night. Travel with us to the land of smiles - Thrilling Thailand.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Phuket\",\"DestinationPlacesSysId\":21319,\"SourcePlaces\":\"Krabi\",\"SourcePlaceSysId\":14466,\"AgencyName\":\"I Need Trip\",\"Name\":\"MAJESTIC THAILAND\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5710\",\"SupplierName\":\"TRAVELBULLZ\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14466,\"Title\":\"Krabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":439069,\"Name\":\"Apple a Day Resort Krabi Aonang Beach\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.039775\",\"Long\":\"98.817167\",\"Address\":\"234 Moo 3 , Ao Nang Soi 8,T.Ao Nang ,A.Muang 75 81180 KRABI  TH, 81180\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"Apple A Day Resort, a new 4 stars chic &amp; stylish Apple theme hotel on Ao Nang beach, the most famous beach destination in Krabi province, where your holiday paradise awaits, takes only 5 minutes&#039; walk to Ao Nang and Nopparat Thara beaches, 15 minutes by long tail boat to Rai Lay, and 20 &acirc;&euro;&ldquo; 40 minutes to Krabi town and Krabi international airport.\\nApple A Day Resort features modernity and simplicity with Apple theme design accommodation offering 75 deluxe rooms in 2 main five-story buildings.\\nBe amazed with chic hotel designs such as the outstanding Apple&#039;s architecture at the main entrance.&Acirc;&nbsp;&Acirc;&nbsp;The outdoor swimming pool surrounded by verdant landscaped garden and main restaurant as international cuisine with a variety of yummy dishes will be very favourable for teens and new generations that adore creativity and modishness.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/54\\/543021\\/543021a_hb_ba_005.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":507627,\"Name\":\"DusitD2\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.0338654\",\"Long\":\"98.82633829999999\",\"Address\":\"2RMG+GGW, 4203, Tambon Ao Nang, Amphoe Mueang Krabi, Chang Wat Krabi 81000, Thailand\"},\"Images\":[],\"CityId\":14466,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"D\'Light Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":9994,\"Name\":\"Centara Grand Beach Resort and Villas Krabi\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.02396\",\"Long\":\"98.829\",\"Address\":\"396-396\\/1 Moo 2 Ao Nang\"},\"Images\":{\"Image\":[{\"ImagId\":246625,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_168_t.jpg\"},{\"ImagId\":246626,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_250_t.jpg\"},{\"ImagId\":246627,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_255_t.jpg\"},{\"ImagId\":246628,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_241_t.jpg\"},{\"ImagId\":246629,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_242_t.jpg\"},{\"ImagId\":246630,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_253_t.jpg\"},{\"ImagId\":246631,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_239_t.jpg\"},{\"ImagId\":246632,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_240_t.jpg\"},{\"ImagId\":246633,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_244_t.jpg\"},{\"ImagId\":246634,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_246_t.jpg\"},{\"ImagId\":246635,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_248_t.jpg\"},{\"ImagId\":246636,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_249_t.jpg\"},{\"ImagId\":246637,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_251_t.jpg\"},{\"ImagId\":246638,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_254_t.jpg\"},{\"ImagId\":246639,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_256_t.jpg\"},{\"ImagId\":246640,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_247_t.jpg\"},{\"ImagId\":246641,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_243_t.jpg\"},{\"ImagId\":246642,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_258_t.jpg\"},{\"ImagId\":246643,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_257_t.jpg\"},{\"ImagId\":246644,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_259_t.jpg\"},{\"ImagId\":246645,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_262_t.jpg\"},{\"ImagId\":246646,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_264_t.jpg\"},{\"ImagId\":246647,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_265_t.jpg\"},{\"ImagId\":246648,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_268_t.jpg\"},{\"ImagId\":246649,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_260_t.jpg\"},{\"ImagId\":246650,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_263_t.jpg\"},{\"ImagId\":246651,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_267_t.jpg\"},{\"ImagId\":246652,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_269_t.jpg\"},{\"ImagId\":246653,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_270_t.jpg\"},{\"ImagId\":246654,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_261_t.jpg\"},{\"ImagId\":246655,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_272_t.jpg\"},{\"ImagId\":246656,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_273_t.jpg\"},{\"ImagId\":246657,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_271_t.jpg\"},{\"ImagId\":246658,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_280_t.jpg\"},{\"ImagId\":246659,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_282_t.jpg\"},{\"ImagId\":246660,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_278_t.jpg\"},{\"ImagId\":246661,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_281_t.jpg\"},{\"ImagId\":246662,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_274_t.jpg\"},{\"ImagId\":246663,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_275_t.jpg\"},{\"ImagId\":246664,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_276_t.jpg\"},{\"ImagId\":246665,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_277_t.jpg\"},{\"ImagId\":246666,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_279_t.jpg\"},{\"ImagId\":246667,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_283_t.jpg\"},{\"ImagId\":246668,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_293_t.jpg\"},{\"ImagId\":246669,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_290_t.jpg\"},{\"ImagId\":246670,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_291_t.jpg\"},{\"ImagId\":246671,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_284_t.jpg\"},{\"ImagId\":246672,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_285_t.jpg\"},{\"ImagId\":246673,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_286_t.jpg\"},{\"ImagId\":246674,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_287_t.jpg\"},{\"ImagId\":246675,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_292_t.jpg\"},{\"ImagId\":246676,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_288_t.jpg\"},{\"ImagId\":246677,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_289_t.jpg\"},{\"ImagId\":246678,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/0ddf653c_t.jpg\"},{\"ImagId\":246679,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/182c3ccc_t.jpg\"},{\"ImagId\":246680,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/901d1883_t.jpg\"},{\"ImagId\":246681,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/91c9dcf5_t.jpg\"},{\"ImagId\":246682,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/3687b383_t.jpg\"},{\"ImagId\":246683,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/428286e7_t.jpg\"},{\"ImagId\":246684,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/42fdda2d_t.jpg\"},{\"ImagId\":246685,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/476ab24b_t.jpg\"},{\"ImagId\":246686,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/4df47037_t.jpg\"},{\"ImagId\":246687,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/6143d6ae_t.jpg\"},{\"ImagId\":246688,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/63f18c1d_t.jpg\"},{\"ImagId\":246689,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/703cd657_t.jpg\"},{\"ImagId\":246690,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/73c911b5_t.jpg\"},{\"ImagId\":246691,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/7435e26e_t.jpg\"},{\"ImagId\":246692,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/8ea233b5_t.jpg\"},{\"ImagId\":246693,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/a3893826_t.jpg\"},{\"ImagId\":246694,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/acaec25d_t.jpg\"},{\"ImagId\":246695,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c073e4b6_t.jpg\"},{\"ImagId\":246696,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c365edcb_t.jpg\"},{\"ImagId\":246697,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/16ba0328_t.jpg\"},{\"ImagId\":246698,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/20f0d732_t.jpg\"},{\"ImagId\":246699,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c32497e7_t.jpg\"},{\"ImagId\":246700,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/0f5b6976_t.jpg\"},{\"ImagId\":246701,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/7a65c56f_t.jpg\"},{\"ImagId\":246702,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/a14d9dbb_t.jpg\"},{\"ImagId\":246703,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c1bbf5ae_t.jpg\"},{\"ImagId\":246704,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/64d9174b_t.jpg\"},{\"ImagId\":246705,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/b66d6279_t.jpg\"},{\"ImagId\":246706,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/7752dabb_t.jpg\"},{\"ImagId\":246707,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/82b92387_t.jpg\"},{\"ImagId\":246708,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/adb76000_t.jpg\"},{\"ImagId\":246709,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/26f295b1_t.jpg\"},{\"ImagId\":246710,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/55438460_t.jpg\"},{\"ImagId\":246711,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c4b6d370_t.jpg\"},{\"ImagId\":246712,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/861ffb20_t.jpg\"},{\"ImagId\":246713,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/c82fe21c_t.jpg\"},{\"ImagId\":246714,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/90792d01_t.jpg\"},{\"ImagId\":246715,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/cd791576_t.jpg\"},{\"ImagId\":246716,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/0312669c_t.jpg\"},{\"ImagId\":246717,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1a2c674e_t.jpg\"},{\"ImagId\":246718,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/333999aa_t.jpg\"},{\"ImagId\":246719,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/e9acf0b1_t.jpg\"},{\"ImagId\":246720,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/d2cb2dab_t.jpg\"},{\"ImagId\":246721,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/a5a186f6_t.jpg\"},{\"ImagId\":246722,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/0a4a55a9_t.jpg\"},{\"ImagId\":246723,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/70a360d8_t.jpg\"},{\"ImagId\":246724,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/582df4c1_t.jpg\"}]},\"CityId\":14466,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Centara Grand Beach Resort &amp;amp; Villas Krabi in Aonang Beach, you&amp;apos;ll be on the beach and minutes from Ao Phra Nang Beach and close to Nopparat Thara Beach.  This 5-star resort is within close proximity of Ao Phai Plong and Ao Nang Krabi Boxing Stadium.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 192 air-conditioned rooms featuring refrigerators and minibars. Rooms have private balconies. 42-inch LCD televisions with satellite programming provide entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms with separate bathtubs and showers feature deep soaking bathtubs and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers massages and facials. You&amp;apos;re sure to appreciate the recreational amenities, which include 2 outdoor swimming pools, a steam room, and a fitness center. Additional features at this resort include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite at one of the resort&amp;apos;s 4 restaurants, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a beach bar or one of the 4 bars\\/lounges. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Event facilities at this resort consist of conference space and a meeting room. A roundtrip airport shuttle is provided for a surcharge during limited hours.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/2000000\\/1370000\\/1366700\\/1366653\\/1366653_168_t.jpg\",\"AccoAminitiesMask\":\"110100101000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}},{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":365445,\"Name\":\"Dusit Thani Laguna\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.001788000000000\",\"Long\":\"98.293755000000000\",\"Address\":\"390 Srisoonthorn Road, Cherngtalay Thalang Bang Tao Bay 831100 Phuket Thailand, Thailand, \"},\"Images\":[],\"CityId\":21319,\"Brief\":\"The resort is located in the exclusive Laguna Resort area,and mid western side of the island and the beautiful Bang Tao Beach,  approximately 25 kilometres from the airport. Deluxe Rooms, with a choice of either king or twin beds, Private balconies in each room. Room size Dusit Thani Laguna Phuket offers unrivaled dining experiences in Phuket to suit all tastes and desires, from Italian delicacies to authentic Royal Thai cuisine, from poolside dining to beach front barbecue. This sanctuary of tranquillity shaded by native casuarinas and coconut palms features unique neo-colonial architectural features underpinned by modern Thai style in all the guestrooms. Gentle breezes waft through the vaulted ceilings of the open-air lobby,  carrying the sound of breaking waves from the adjacent Bang Tao beach. The lobby is large and spreading with ample seating.It is open air and overlooks its fountain area as well as large swimming pool. Checkin area is located in a separate air-conditioning room with attentive staff. Lobby lounge is located at the left handside where softdrink and light snacks are available along with light music during the day. Dusit Thani Laguna Phuket provides beach accommodation in Phuket with 252 superbly appointed guest rooms, suites and private pool villas. Dusit Thani Laguna Phuket overlooks the crystal clear Andaman Sea. Each room offers a private haven of serenity, with a private balcony, lush surroundings and easy access to the beach. Elegant Thai style permeates this Phuket luxury accommodation, from the building&#039;s design to the decor and furnishings in each room. Guests at any of the seven hotels in Laguna Phuket enjoy access to a range of world-class facilities, including the 18-hole Laguna Phuket championship golf course, spas, restaurants, bars, boutique shopping, horse riding and an outdoor adventure training centre. Everywhere within the Dusit Thani Laguna Phuket resort is easily accessed within minutes by complimentary shuttle boats and buses. for the guest who booked club rooms - Dusit Club Privileges -  Exclusive Breakfast from 07\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":514207,\"Name\":\"Novotel Phuket Vintage Park Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.898862899999999\",\"Long\":\"98.3005531\",\"Address\":\"89 Rat U Thit 200 Pee Rd, ?????????? ?????????? ?????? 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":520783,\"Name\":\"ibis Phuket Patong\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.901874100000001\",\"Long\":\"98.29976010000001\",\"Address\":\"10 Chalermphrakiat Road, Tambon Patong, Amphoe Kathu, Chang Wat Phuket 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":26762,\"Title\":\"Four Island Tours\",\"Description\":\"A must visit Sightseeing and Activity in Krabi. Enjoy the Exciting Island Hopping to the tropical hot spots in the Krabi Sea which includes: Phra Nang Cave, Tup Isl., Chicken Isl. and Poda Isl. Enjoy the Swimming, snorkeling, sunbathing, exploring and photography are the main activities to enjoy which are not included in the package cost but guests can enjoy at their own.\\r\\nExpect plenty of sun, a rich variety of corals and fishes, crystal clear waters and white powdery sand beaches,\\r\\n lined with coconut palms. Fast and fun.\",\"CurrencyType\":0,\"CityId\":14466,\"CityName\":\"Krabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14466\\/sightseeing\\/Four_Island_Tours_14466_1652617224.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null},{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5710,\"SupplierName\":\"TRAVELBULLZ\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"301750\",\"Title\":\"Arrival and tranfer to Krabi\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Phuket Airport where our representative will greet you and transfer you to&amp;nbsp;Krabi. It will take around 2 hours to reach this beautiful town that lies along the coast of Southern Thailand. Proceed with the check-in formalities and enjoy the rest of the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Krabi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439069,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":507627,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"D\'Light Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":9994,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301753\",\"Title\":\"KRABI FOUR ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, head to Four Island Tour picked up from your hotel and transferred to the quay on the Krabi River. The first stop is Tup Island where at low tide a sandbar emerges from the clear waters linking the more oversized Chicken Island to the two smaller islands of Koh Mor and Tup, this picturesque and unique occurrence is commonly referred to as Talay Waek which means divided sea. Phra Nang Island is one of Asia&amp;#39;s most well-known beaches, renowned for its spectacular stalactites.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nChicken Island has beautiful beaches with fine white sand. You will have the opportunity to go swimming or snorkeling or just relax on the beach in the shade of the swaying palm trees and enjoy the sun. This area is a scuba diver&amp;#39;s heaven with a wide variety of multi-colored tropical fish and coral in crystal clear waters ranging from emerald to turquoise. Later after a long day back to the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay at Krabi&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439069,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":507627,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"D\'Light Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":9994,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":26762,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301756\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14466,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301759\",\"Title\":\"TRANSFER KRABI TO PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Take as much as you need at breakfast this morning, pack your luggage, and leave the hotel. We said goodbye to Krabi today and continued our vacation to Phuket, which is a much more exotic location. Check from Hotel and unwind after arriving in Phuket. You can spend the rest of the day whatever you like. Tour the city and see what all Phuket has got. Later, you can explore your neighborhood in the evening and savor some freshly prepared cuisine at neighboring beach restaurants. After that, return back to the hotel and unwind.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at Phuket Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520783,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365445,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301762\",\"Title\":\"FULL PHI PHI ISLAND TOUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p style=&quot;text-align:justify&quot;&gt;After breakfast, pick up you from the hotel and head to the most popular tour experience in Phuket, the Phi Phi Island tour, The Phi Phi archipelago is a must-visit while in Phuket, and this trip whisks you around the islands in one day. Breathtaking limestone cliffs rise straight out of the emerald green water. The Phi Phi&amp;#39;s are 40 kilometers southeast of Phuket in the Andaman Sea. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Swim over the coral reefs of Pileh Lagoon, have lunch at Phi Phi Leh, snorkel at Bamboo Island, and visit Monkey Beach and Maya Bay, immortalized in &amp;quot;The Beach.&amp;quot; Boat transfers, snacks, buffet lunch, snorkeling equipment, and Phuket hotel pickup and drop-off are all included. Visit the islands by big boat to relax, swim, and snorkel Sightsee Maya Bay, popularized by the famous movie, &amp;ldquo;The Beach&amp;rdquo; starring Leonardo DiCaprio See the monkeys at Monkey Beach Snorkel masks and lifejackets provided&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nA tour of Phi Phi presents you with great sightseeing and chances to take a plunge. You&amp;#39;ll see Maya Bay, Loh Samah Bay, Pileh Cove, Viking Cave, and Monkey Beach. After an awesome day returns back to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:justify&quot;&gt;Overnight stay at Phuket Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514207,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365445,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301765\",\"Title\":\"DEPARTURE FROM PHUKET\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, its time to say goodbye to the amazing place with unforgettable memories, our representative will escort you the Phuket Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41808\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"14850.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"11137.50\",\"priceWithoutBed\":\"7425.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7425,\"CEB\":11137.5,\"COSTDO\":14850,\"COSTSO\":41580,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13365,\"COSTTO\":13365}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"41809\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":50820,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":50820,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"41810\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255},{\"From\":\"2023-07-29\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26052,\"priceDoubleOcc\":\"26950.00\",\"priceSingleOcc\":75460,\"priceExtraBed\":\"20212.50\",\"priceWithoutBed\":\"13475.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13475,\"CEB\":20212.5,\"COSTDO\":26950,\"COSTSO\":75460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24255,\"COSTTO\":24255}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VISA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"301750\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[301750],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301753\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[301753],\"Remark\":[\"&lt;p&gt;All tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301756\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[301756],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301759\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[301759],\"Remark\":[\"&lt;p&gt;All tours\\/ hotel transfers on SIC&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301762\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[301762],\"Remark\":[\"&lt;p&gt;All tours on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301765\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[301765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Krabi,Phuket','Krabi,South East Asia,Thailand,Phuket',NULL,'14466,21319',14850,26950,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Thailand','215','2023-09-07 12:08:13','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'majestic-thailand',NULL,NULL,NULL,0),(373,41749,1,5293,0,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41749,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/simply-dubai_1665487174\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The name Dubai alone conjures images of stunning architecture, buzzing malls, soaring business structures, and enchanting beaches. Dubai, the most visited city in the United Arab Emirates, has become one of the top tourist attractions on the planet. This glamorous metropolis offers a wealth of choices in every area, including entertainment, employment, and lodging, dining, and shopping. Additionally, Dubai has a fascinating historical past.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"SIMPLY DUBAI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"16418\",\"SupplierName\":\"VTD TOURISM PVT. LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2024-01-13\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":443487,\"Name\":\"Citymax Hotel Bur Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2507560572169\",\"Long\":\"55.2918666601181\",\"Address\":\"Al Kuwait Street, Bur Dubai, \"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Citymax Hotel Bur Dubai is just twenty minutes from Dubai International airport.Heritage sites, the Dubai Creek and diving village are literally a stone&acirc;&euro;&trade;s throw away. The financial and World Trade Centre are as easily accessible.\\n\\n* Check in time is 2 PM and check out time updated to 12 PM\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/17\\/e84492841912918ea1af346b0ffd8a94-50029.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":433622,\"Name\":\"Admiral Plaza Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"25.2601076290171\",\"Long\":\"55.2913503348827\",\"Address\":\"Khalid Bin Walid Road, Al Nadha Street, Bur Dubai, \"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Admiral Plaza Hotel provides modern facilities to match the needs of business and leisure travellers alike. The service, professionalism and experienced management of the Admiral Plaza Hotel is indicative of the reputable pedigree of their hotels around the world, and all provide excellent facilities for the needs of it&#039;&#039;s guest.Admiral Plaza Hotel provides modern facilities to match the needs of business and leisure travellers alike...\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/7\\/9583704c897ce109b9028a4181f198ff-AE44FZ.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Desert Safari Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Get an exciting experience of the crossing the famous dunes before taking photos with the endless desert and the sun setting in the background, feel the fine sand slipping between your fingers as you make your way to the Desert camp. Here you will be welcomed with flavorful Arabic tea and coffee with dates and soft drinks to quench your thirst.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Feel the culture by dressing up in traditional attire and take selfies as the Henna artist paints your hand. This will be followed by Tanura show (traditional folk dance), Fire show and belly dancer perform to the rhythm of Arabic Music (The sequence of the event may change without prior notice).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Enjoy your meal with Veg and Non-Veg BBQ items experiencing the Arabic hospitality in this once in a lifetime Desert Safari tour in Dubai.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Budget Sharing&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by SUVs and Dune bashing in the desert for about 20 &ndash; 25 minutes ( depending on weather conditions).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The services will be provided at a safari camp with all amenities, toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard buffet menu includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Non-Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks (may be local brand), Water, Coffee and Gahwa are served complimentary.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet menu&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspincludes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Private Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be by exclusive 4 x 4 vehicle and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;menu&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items,&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Premium Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with deluxe amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International buffet&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspthat includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Pasta, Veg suttee, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;After all the evening fun you will be dropped back to your drop off location.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"301360\",\"Title\":\"Arrival &amp; Transfer to Hotel, Evening Dinner @Dhow Cruise\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get transferred from Airport to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening is going to be luxuriously romantic on a&amp;nbsp;&lt;strong&gt;Marina&amp;nbsp;Dhow Cruise&lt;\\/strong&gt;.&amp;nbsp;It is a traditional wooden boat that glides along the Dubai Marina under the starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to the hotel afterward.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301361\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes. You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301362\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":433622,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"},{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"301363\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning after breakfast check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41749\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2024-01-12\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25245.00\",\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":78540,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"13750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13750,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":78540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ROE will be calculated as per the final day of payment, as of taday USD@84.50&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any surcharges\\/tourism fees&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;3 nights accomodation as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan (Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing\\/tours on Seats in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport return transfers on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;24*7 On tour Support&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Itinerary as per the itinerary\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Dubai City Tour ( Complimentary one way mono Rail )&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Burj Khalifa at The Top 124th Floor&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Marina Dhow Cruise&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Desert Safari ( Dune Bashing, Camel Ride, Tanura show, Heena Art with BBQ Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"301360\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[301360],\"Remark\":[\"&lt;p&gt;All sightseeing on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301361\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[301361],\"Remark\":[\"&lt;p&gt;All sightseeing on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301362\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[301362],\"Remark\":[\"&lt;p&gt;All sightseeing on SIC basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"301363\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[301363],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',28050,28050,3,NULL,NULL,NULL,2,'',0,'2024-01-13 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'United Arab Emirates','228','2024-01-13 17:35:07','2024-01-13 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'simply-dubai',NULL,NULL,NULL,0),(375,33178,1,5293,0,0,0,'Honeymoon,Wildlife,Beach,Family,Cruise',NULL,1,1,0,'{\"package\":{\"TPId\":33178,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/delightful-singapore_1690022735\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Singapore, city, capital of the Republic of&amp;nbsp;Singapore. It occupies the southern part of&amp;nbsp;Singapore Island. Its strategic position on the strait between the&amp;nbsp;Indian Ocean&amp;nbsp;and&amp;nbsp;South China Sea, complemented by its deepwater harbour, has made it the largest port in&amp;nbsp;Southeast Asia&amp;nbsp;and one of the world&amp;rsquo;s greatest commercial centres. The city, once a distinct entity, so came to dominate the island that the Republic of Singapore essentially became a city-state.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Singapore&amp;mdash;known variously as the &amp;ldquo;Lion City&amp;rdquo; or &amp;ldquo;Garden City,&amp;rdquo; the latter for its many parks and tree-lined streets&amp;mdash;has also been called &amp;ldquo;instant Asia&amp;rdquo; because it offers the tourist an expeditious glimpse into the&amp;nbsp;cultures&amp;nbsp;brought to it by immigrants from all parts of Asia. While predominantly Chinese, it has substantial minorities of Malays and Indians.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DELIGHTFUL SINGAPORE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5686\",\"SupplierName\":\"NAMHO\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Wildlife,Beach,Family,Cruise\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":498163,\"Name\":\"Farrer Park Station Road\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"1.3125457\",\"Long\":\"103.8543732\",\"Address\":\"1 Farrer Park Station Rd, Singapore 217562\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"BASE CATEGORY\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":17104,\"Name\":\"One Farrer Hotel and Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"1.3124131335486\",\"Long\":\"103.85376502076\",\"Address\":\"1 Farrer Park Station Road Singapore 217562\"},\"Images\":{\"Image\":[{\"ImagId\":421300,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_62_t.jpg\"},{\"ImagId\":421301,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_67_t.jpg\"},{\"ImagId\":421302,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_68_t.jpg\"},{\"ImagId\":421303,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_72_t.jpg\"},{\"ImagId\":421304,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_80_t.jpg\"},{\"ImagId\":421305,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_92_t.jpg\"},{\"ImagId\":421306,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_95_t.jpg\"},{\"ImagId\":421307,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_74_t.jpg\"},{\"ImagId\":421308,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_76_t.jpg\"},{\"ImagId\":421309,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_73_t.jpg\"},{\"ImagId\":421310,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_75_t.jpg\"},{\"ImagId\":421311,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_79_t.jpg\"},{\"ImagId\":421312,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_86_t.jpg\"},{\"ImagId\":421313,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_87_t.jpg\"},{\"ImagId\":421314,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_89_t.jpg\"},{\"ImagId\":421315,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_94_t.jpg\"},{\"ImagId\":421316,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_99_t.jpg\"},{\"ImagId\":421317,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_97_t.jpg\"},{\"ImagId\":421318,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_93_t.jpg\"},{\"ImagId\":421319,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_78_t.jpg\"},{\"ImagId\":421320,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_82_t.jpg\"},{\"ImagId\":421321,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_77_t.jpg\"},{\"ImagId\":421322,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_81_t.jpg\"},{\"ImagId\":421323,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_104_t.jpg\"},{\"ImagId\":421324,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_105_t.jpg\"},{\"ImagId\":421325,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_106_t.jpg\"},{\"ImagId\":421326,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_103_t.jpg\"},{\"ImagId\":421327,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/03067115_t.jpg\"},{\"ImagId\":421328,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/0fa2d6a6_t.jpg\"},{\"ImagId\":421329,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/119f68b5_t.jpg\"},{\"ImagId\":421330,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/1796ed51_t.jpg\"},{\"ImagId\":421331,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/2c66eacb_t.jpg\"},{\"ImagId\":421332,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/2d29cbb0_t.jpg\"},{\"ImagId\":421333,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/3a1f12bd_t.jpg\"},{\"ImagId\":421334,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/3b550a7b_t.jpg\"},{\"ImagId\":421335,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/3d04c333_t.jpg\"},{\"ImagId\":421336,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/466c49c5_t.jpg\"},{\"ImagId\":421337,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/4695ec8e_t.jpg\"},{\"ImagId\":421338,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/51183980_t.jpg\"},{\"ImagId\":421339,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/54def39a_t.jpg\"},{\"ImagId\":421340,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/5ece3f85_t.jpg\"},{\"ImagId\":421341,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/5fb3ed96_t.jpg\"},{\"ImagId\":421342,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/636cde89_t.jpg\"},{\"ImagId\":421343,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6762980a_t.jpg\"},{\"ImagId\":421344,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/69221870_t.jpg\"},{\"ImagId\":421345,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6c245232_t.jpg\"},{\"ImagId\":421346,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6db611fb_t.jpg\"},{\"ImagId\":421347,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/7fe3c8e5_t.jpg\"},{\"ImagId\":421348,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/7ff89d5f_t.jpg\"},{\"ImagId\":421349,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/803f482b_t.jpg\"},{\"ImagId\":421350,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/805bd0e2_t.jpg\"},{\"ImagId\":421351,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/842e6ebf_t.jpg\"},{\"ImagId\":421352,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/8e5350b9_t.jpg\"},{\"ImagId\":421353,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/906188b8_t.jpg\"},{\"ImagId\":421354,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/940f85db_t.jpg\"},{\"ImagId\":421355,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/95cf3b84_t.jpg\"},{\"ImagId\":421356,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/95e221c0_t.jpg\"},{\"ImagId\":421357,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/a35f74ab_t.jpg\"},{\"ImagId\":421358,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/b82e58cb_t.jpg\"},{\"ImagId\":421359,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/bc0d9fbe_t.jpg\"},{\"ImagId\":421360,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/bf6cf8e8_t.jpg\"},{\"ImagId\":421361,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/caac0355_t.jpg\"},{\"ImagId\":421362,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/e20b9b4f_t.jpg\"},{\"ImagId\":421363,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/e26a3459_t.jpg\"},{\"ImagId\":421364,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/f9dce8cf_t.jpg\"},{\"ImagId\":421365,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/0458340c_t.jpg\"},{\"ImagId\":421366,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/0beeaa4c_t.jpg\"},{\"ImagId\":421367,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/22065bcd_t.jpg\"},{\"ImagId\":421368,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/3184f993_t.jpg\"},{\"ImagId\":421369,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/4047c8a6_t.jpg\"},{\"ImagId\":421370,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/4195227a_t.jpg\"},{\"ImagId\":421371,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/4c0a50f5_t.jpg\"},{\"ImagId\":421372,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6002d29d_t.jpg\"},{\"ImagId\":421373,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6240a49a_t.jpg\"},{\"ImagId\":421374,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_110_t.jpg\"},{\"ImagId\":421375,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_111_t.jpg\"},{\"ImagId\":421376,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_112_t.jpg\"},{\"ImagId\":421377,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_113_t.jpg\"},{\"ImagId\":421378,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_114_t.jpg\"},{\"ImagId\":421379,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_115_t.jpg\"},{\"ImagId\":421380,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_116_t.jpg\"},{\"ImagId\":421381,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_117_t.jpg\"},{\"ImagId\":421382,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_118_t.jpg\"},{\"ImagId\":421383,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_119_t.jpg\"},{\"ImagId\":421384,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_121_t.jpg\"},{\"ImagId\":421385,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_122_t.jpg\"},{\"ImagId\":421386,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_123_t.jpg\"},{\"ImagId\":421387,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_124_t.jpg\"},{\"ImagId\":421388,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_125_t.jpg\"},{\"ImagId\":421389,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/724b305b_t.jpg\"},{\"ImagId\":421390,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/80327d31_t.jpg\"},{\"ImagId\":421391,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/8221a3a5_t.jpg\"},{\"ImagId\":421392,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/8da75b24_t.jpg\"},{\"ImagId\":421393,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/98484da0_t.jpg\"},{\"ImagId\":421394,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/a013545d_t.jpg\"},{\"ImagId\":421395,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/aaefbe46_t.jpg\"},{\"ImagId\":421396,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/c286146e_t.jpg\"},{\"ImagId\":421397,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/ce05ac8c_t.jpg\"},{\"ImagId\":421398,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/d24965db_t.jpg\"},{\"ImagId\":421399,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/d6820f45_t.jpg\"},{\"ImagId\":421400,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/db5e2554_t.jpg\"},{\"ImagId\":421401,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/ddddd6f9_t.jpg\"},{\"ImagId\":421402,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/e398bffc_t.jpg\"},{\"ImagId\":421403,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/eb138f63_t.jpg\"},{\"ImagId\":421404,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/f3f28700_t.jpg\"},{\"ImagId\":421405,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/d2503dd8_t.jpg\"}]},\"CityId\":25278,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at One Farrer Hotel &amp;amp; Spa in Singapore (Little India), you&amp;apos;ll be minutes from City Square Mall and Mustafa Centre.  This 5-star hotel is close to Chinatown Heritage Center and National Orchid Garden.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 243 air-conditioned rooms featuring minibars and flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature rainfall showerheads and complimentary toiletries. Conveniences include phones, as well as safes and desks.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You&amp;apos;re sure to appreciate the recreational amenities, including an outdoor pool, a spa tub, and a sauna. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at one of the hotel&amp;apos;s 2 restaurants. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and dry cleaning\\/laundry services. Event facilities at this hotel consist of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/7000000\\/6510000\\/6501600\\/6501523\\/6501523_62_t.jpg\",\"AccoAminitiesMask\":\"110100100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"BASE CATEGORY\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":2162,\"Title\":\"Universal Studios Singapore\",\"Description\":\"Universal Studios Singapore  is a theme park located within Resorts World Sentosa on Sentosa Island, Singapore. It was a key component of Genting&amp;#039;s bid for the right to build Singapore&amp;#039;s second integrated resort. On 8 December 2006, the Singapore government announced that the consortium had won the bid. Construction of the theme park and the rest of the resort started on 19 April 2007. It is the second Universal Studios theme park to open in Asia (Japan being the first), and the first in Southeast Asia. The official plans for the park were unveiled to the public when Universal Studios Singapore released a park map to the public on 20 October 2009.Universal Studios Singapore has since attracted more than 2 million visitors in the 9 months from its opening.\\r\\nUniversal Parks &amp;amp; Resorts markets the park as a &amp;quot;one-of-its-kind theme park in Asia&amp;quot; and promises that the park will be the only one of its kind in Southeast Asia for the next 30 years\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.249404,\"Long\":103.830321,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Universal_Studios_Singapore_25278_1503574614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":24694,\"Title\":\"SANTOSA ISLAND\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"236977\",\"Title\":\"Arrival in the Singapore and Transfer to the Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to&amp;nbsp;Singapore! A City where The Haze ends, but Love doesn&amp;rsquo;t, Filled with glittering skyscrapers,&amp;nbsp;Singapore&amp;nbsp;practically hums with business and trade. You&amp;#39;ll also find multi-ethnic culture, great cuisine and attractions that include modern malls, traditional shops, colonial buildings and historic temples.&amp;nbsp;&lt;br \\/&gt;\\r\\nPost-immigration and custom procedures, you will be greeted by our local representative who will assist you with transfer to your hotel in&amp;nbsp;Singapore. Afterwards, check in at your hotel and enjoy refreshments.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":498163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"},{\"IsIncluded\":false,\"Id\":17104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"236978\",\"Title\":\"SINGAPORE CITY TOUR IN AC COACH AND PROCEED FOR SENTOSA EXTREME\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After a hearty breakfast proceed for a Half day&amp;nbsp;Singapore&amp;nbsp;City Tour including Merlion photostop, Raffles Landing, Suntec City, Fountain of Wealth, Orchard Road, Little India and Chinatown. After that you will proceed for Sentosa Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sentosa Extreme: - Enjoy your day at Sentosa Island. Visit Sea Aquarium an incredible one-stop destination for the family &amp;ndash; providing hours of fun, leisure and learning for all. Be thrilled no end by unique encounters with marine animals. Trick eye museum with many of 3D painting give you a feel of being a part of those paintings, Surrounded with lush tropical greenery, Butterfly Park &amp;amp; Insect Kingdom showcases the stunning beauties of Mother Nature. With a great variety of fluttering butterflies and exotic insects, this tamed wilderness is sure to delight you. The Luge offers a truly unique outdoor experience suitable for all ages that is not found anywhere else in&amp;nbsp;Singapore&amp;nbsp;or Southeast Asia. After Luge, board the Sky ride and take in the fantastic panoramic scenery of the city skyline and beautiful coastline. There&amp;#39;s no better way to complete a fabulous day at Sentosa than to take in a spectacular night show set outdoors against the backdrop of an open sea.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"},{\"IsIncluded\":true,\"Id\":498163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"236979\",\"Title\":\"FULL DAY UNIVERSAL STUDIOS\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Universal Studio Live the Movies at the many exclusive attractions found only at the region&amp;rsquo;s first Hollywood movie theme park, Universal Studios&amp;nbsp;Singapore. Featuring movie-themed rides and attractions, which are unique to&amp;nbsp;Singapore, thrill seekers and families will be the first to experience many new rides and shows based on blockbuster hits. The young and young at heart will be entertained by Shrek and gang on an incredible 4-D adventure in the world&amp;rsquo;s first Far Far Away Castle. Thrill seekers can face warrior mummies on Revenge of the Mummy a psychological thrill ride in total darkness. Other highlights include Madagascar, New York, Hollywood, Sci Fi City and The Lost World.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"},{\"IsIncluded\":true,\"Id\":498163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2162,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"236980\",\"Title\":\"SENTOSA FUN PASS (120 Token + 10 Free Token) With Transfer\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"},{\"IsIncluded\":true,\"Id\":498163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24694,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"236981\",\"Title\":\"DAY AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy the day at your own by shopping and relaxing.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":17104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"},{\"IsIncluded\":true,\"Id\":498163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"BASE CATEGORY\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"236982\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;Good times mostly end leaving behind a trail of golden memories to cherish. After breakfast today, spend some time at leisure and enjoy some last minute shopping depending on your flight schedule. Check-out from the hotel and get transferred to the airport to board your return flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33178\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450},{\"From\":\"2023-07-22\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":54450,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":108900,\"priceExtraBed\":\"54450.00\",\"priceWithoutBed\":\"54450.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":54450,\"CEB\":54450,\"COSTDO\":54450,\"COSTSO\":108900,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":54450,\"COSTTO\":54450}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"236977\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[236977],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"236978\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[236978],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"236979\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[236979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"236980\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[236980],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"236981\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[236981],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"236982\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[236982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Singapore','Singapore,South East Asia,Orient',NULL,'25278',54450,54450,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Singapore','190','2023-09-07 12:10:55','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'delightful-singapore',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (376,32321,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":32321,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/jalsa--beach-hotel--spa_1690616963\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Found along the&amp;nbsp;North East coast&amp;nbsp;of the tropical island of Mauritius, at Poste Lafayette, Jalsa Beach Hotel &amp;amp; Spa is a resort overlooking a turquoise lagoon with stunning mountain scenery.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jalsa Beach Hotel &amp;amp; Spa offers&amp;nbsp;66 spacious rooms&amp;nbsp;consisting of&amp;nbsp;Standard,&amp;nbsp;Deluxe&amp;nbsp;and&amp;nbsp;Executive&amp;nbsp;categories as well as&amp;nbsp;2 Junior Suites.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel enjoys the unique gift of both sunrise and sunset; by night, the hotel is blessed by a glittering blanket of stars.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jalsa Beach Hotel &amp;amp; Spa is the perfect choice for those looking for a peaceful and relaxing holiday...&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"JALSA  BEACH HOTEL & SPA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"230138\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230139\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230140\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230141\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230142\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230143\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"32321\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"42736.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42736.10\",\"priceDoubleOcc\":\"42736.10\",\"priceSingleOcc\":128208.29999999999,\"priceExtraBed\":\"42736.10\",\"priceWithoutBed\":\"39436.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42736.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":39436.1,\"CEB\":42736.1,\"COSTDO\":42736.1,\"COSTSO\":128208.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42736.1,\"COSTTO\":42736.1}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":[],\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',42736,42736,5,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-01-16 19:24:54','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'jalsa-beach-hotel-spa',NULL,NULL,NULL,0),(377,32017,1,5293,0,0,0,'Honeymoon,Wildlife,Family',NULL,1,1,0,'{\"package\":{\"TPId\":32017,\"IsCF\":1,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/enticing-escapes---turkey_1690784682\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The eclectic city of Istanbul, the fantastical rock forms of Cappadocia, the ancient ruins of Ephesus, and the glimmering Mediterranean and Aegean coastlines are&amp;nbsp;Turkey&amp;rsquo;s biggest draws, but each region of the country has something distinct to offer.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The diversity of landscapes, heritage and culinary culture will surprise those who have never ventured beyond holiday resorts and the beach.&amp;nbsp;Even though it&amp;rsquo;s easy to get around Turkey, the country has too much to see and do to tackle it all on one trip. Because most domestic flights route through Istanbul, spend at least a few days in this dynamic global metropolis before heading out to one of our other top places to visit in&amp;nbsp;Turkey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Antalya\",\"SourcePlaceSysId\":1151,\"AgencyName\":\"I Need Trip\",\"Name\":\"ENTICING ESCAPES - TURKEY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7305\",\"SupplierName\":\"TUNGA TOUR\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Breakfast & Lunch,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Wildlife,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":27616,\"Name\":\"Crowne Plaza Antalya\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"36.858364383438\",\"Long\":\"30.630961060524\",\"Address\":\"Akdeniz Bulvar\\u0131 G&uuml;rsu Mahallesi 306. Sokak\"},\"Images\":{\"Image\":[{\"ImagId\":644396,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/299\\/AYTYA_3077254755_4423330463_A.jpg\"},{\"ImagId\":644397,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/412\\/929\\/AYTYA_32590641_4349424138_A.jpg\"},{\"ImagId\":644398,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/412\\/964\\/AYTYA_4180534539_8076972541_A.jpg\"},{\"ImagId\":644399,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/412\\/971\\/AYTYA_32590625_1671158461_A.jpg\"},{\"ImagId\":644400,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/3\\/AYTYA_4180541632_2064187040_A.jpg\"},{\"ImagId\":644401,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/21\\/AYTYA_4180534948_3293520188_A.jpg\"},{\"ImagId\":644402,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/40\\/AYTYA_32590653_7892820669_A.jpg\"},{\"ImagId\":644403,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/86\\/AYTYA_32590680_9885755672_A.jpg\"},{\"ImagId\":644404,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/90\\/AYTYA_3077314912_5336817895_A.jpg\"},{\"ImagId\":644405,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/96\\/AYTYA_4180476642_1815598559_A.jpg\"},{\"ImagId\":644406,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/106\\/AYTYA_4180434413_1313864335_A.jpg\"},{\"ImagId\":644407,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/192\\/AYTYA_4180537939_4024039977_A.jpg\"},{\"ImagId\":644408,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/341\\/AYTYA_4180438209_3549677194_A.jpg\"},{\"ImagId\":644409,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/393\\/AYTYA_27297_9519261171_A.jpg\"},{\"ImagId\":644410,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/397\\/AYTYA_4180458076_6367654392_A.jpg\"},{\"ImagId\":644411,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/401\\/AYTYA_32590669_3682226593_A.jpg\"},{\"ImagId\":644412,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/429\\/AYTYA_4180536061_5154837854_A.jpg\"},{\"ImagId\":644413,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/197\\/AYTYA_4180454345_3612613587_A.jpg\"},{\"ImagId\":644414,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/216\\/AYTYA_1346668191_1558086001_A.jpg\"},{\"ImagId\":644415,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/245\\/AYTYA_4180475834_3541872001_A.jpg\"},{\"ImagId\":644416,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/267\\/AYTYA_4180459667_2373432156_A.jpg\"},{\"ImagId\":644417,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/305\\/AYTYA_4180450382_6086555742_A.jpg\"},{\"ImagId\":644418,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/318\\/AYTYA_4180542815_3002445744_A.jpg\"},{\"ImagId\":644419,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/326\\/AYTYA_3861984727_5562614712_A.jpg\"},{\"ImagId\":644420,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/345\\/AYTYA_4180474929_3073280756_A.jpg\"},{\"ImagId\":644421,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/361\\/AYTYA_32590675_6653957036_A.jpg\"},{\"ImagId\":644422,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/365\\/AYTYA_1346668190_9722304667_A.jpg\"},{\"ImagId\":644423,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/369\\/AYTYA_1346668195_2314257259_A.jpg\"},{\"ImagId\":644424,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/389\\/AYTYA_4180535446_4294814261_A.jpg\"},{\"ImagId\":644425,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/433\\/AYTYA_1346668192_3253241951_A.jpg\"},{\"ImagId\":644426,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/437\\/AYTYA_32590645_1735094125_A.jpg\"},{\"ImagId\":644427,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/445\\/AYTYA_4270888364_9692342828_A.jpg\"},{\"ImagId\":644428,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/449\\/AYTYA_4182945151_6210180293_A.jpg\"},{\"ImagId\":644429,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/457\\/AYTYA_4180448640_9797021761_A.jpg\"},{\"ImagId\":644430,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/465\\/AYTYA_4180432893_8333782052_A.jpg\"},{\"ImagId\":644431,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/478\\/AYTYA_3077262602_3773997053_A.jpg\"},{\"ImagId\":644432,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/495\\/AYTYA_4180451443_3445466599_A.jpg\"},{\"ImagId\":644433,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/512\\/AYTYA_1346668194_8595567121_A.jpg\"},{\"ImagId\":644434,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/525\\/AYTYA_32590633_3492991857_A.jpg\"},{\"ImagId\":644435,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/529\\/AYTYA_4180608196_9692622507_A.jpg\"},{\"ImagId\":644436,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/533\\/AYTYA_32590661_5039399355_A.jpg\"},{\"ImagId\":644437,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/537\\/AYTYA_4180614446_4886846578_A.jpg\"},{\"ImagId\":644438,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/73\\/AYTYA_27309_A.jpg\"},{\"ImagId\":644439,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/77\\/AYTYA_4180447628_A.jpg\"},{\"ImagId\":644440,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/81\\/AYTYA_3076720141_A.jpg\"},{\"ImagId\":644441,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/833\\/AYTYA_1346668205_A.jpg\"},{\"ImagId\":644442,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/837\\/AYTYA_3077289890_A.jpg\"},{\"ImagId\":644443,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/841\\/AYTYA_1424010143_A.jpg\"},{\"ImagId\":644444,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/845\\/AYTYA_27314_A.jpg\"},{\"ImagId\":644445,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/849\\/AYTYA_1728436238_A.jpg\"},{\"ImagId\":644446,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/853\\/AYTYA_4180438443_A.jpg\"},{\"ImagId\":644447,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/857\\/AYTYA_3077289893_A.jpg\"},{\"ImagId\":644448,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/861\\/AYTYA_4180602485_A.jpg\"},{\"ImagId\":644449,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/865\\/AYTYA_1424008904_A.jpg\"},{\"ImagId\":644450,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/869\\/AYTYA_1346668197_A.jpg\"},{\"ImagId\":644451,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/873\\/AYTYA_4180439204_A.jpg\"},{\"ImagId\":644452,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/877\\/AYTYA_3077281440_A.jpg\"},{\"ImagId\":644453,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/885\\/AYTYA_1424006911_A.jpg\"},{\"ImagId\":644454,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/709\\/573\\/AYTYA_4180434746_A.jpg\"},{\"ImagId\":644455,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/85\\/AYTYA_27305_A.jpg\"},{\"ImagId\":644456,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/89\\/AYTYA_1376331555_A.jpg\"},{\"ImagId\":644457,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/93\\/AYTYA_1376327152_A.jpg\"},{\"ImagId\":644458,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/97\\/AYTYA_3621399455_A.jpg\"},{\"ImagId\":644459,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/101\\/AYTYA_4180430066_A.jpg\"},{\"ImagId\":644460,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/105\\/AYTYA_4180460335_A.jpg\"},{\"ImagId\":644461,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/109\\/AYTYA_3076749841_A.jpg\"},{\"ImagId\":644462,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/113\\/AYTYA_1346668201_A.jpg\"},{\"ImagId\":644463,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/117\\/AYTYA_3076842621_A.jpg\"},{\"ImagId\":644464,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/129\\/AYTYA_3648116839_A.jpg\"},{\"ImagId\":644465,\"Type\":\"Thumbnail\",\"Order\":70,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/121\\/AYTYA_27298_A.jpg\"},{\"ImagId\":644466,\"Type\":\"Thumbnail\",\"Order\":71,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/553\\/125\\/AYTYA_3077002140_A.jpg\"},{\"ImagId\":644467,\"Type\":\"Thumbnail\",\"Order\":72,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/546\\/881\\/AYTYA_4180611750_A.jpg\"},{\"ImagId\":644468,\"Type\":\"Thumbnail\",\"Order\":73,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/463\\/76\\/AYTYA_4610370316_A.jpg\"},{\"ImagId\":644469,\"Type\":\"Thumbnail\",\"Order\":74,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/76\\/473\\/589\\/AYTYA_4611537929_A.jpg\"}]},\"CityId\":1151,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Crowne Plaza Hotel Antalya, you&amp;apos;ll be centrally located in Antalya, convenient to Minicity and Antalya Aquarium.  This 5-star hotel is within close proximity of Arapsu Bridge and Dolphin Park.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 194 air-conditioned rooms featuring minibars and LCD televisions. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have rainfall showerheads and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages, body treatments, and facials. You can soak up the sun at the private beach or enjoy other recreational amenities including a health club and an outdoor pool. This hotel also features complimentary wireless Internet access, concierge services, and gift shops\\/newsstands.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite at one of the hotel&amp;apos;s 2 restaurants, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges. Buffet breakfasts are available daily for a fee.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include a business center, express check-in, and complimentary newspapers in the lobby. Planning an event in Antalya? This hotel has 4629 square feet (430 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/413\\/299\\/AYTYA_3077254755_4423330463_A.jpg\",\"AccoAminitiesMask\":\"110110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17692,\"Title\":\"Antalya by night\",\"Description\":\"Antalya is one of the more lively areas in Turkey when it comes to nightlife. I&amp;rsquo;ve never had to search for all-night parties, dances, great shows, performances, or a great atmosphere when I stay in Antalya.You&amp;rsquo;re sure to have a wonderful time. Here are my suggestions for spending wonderful evenings in Antalya without spending too much money. I also have a couple of suggestions for those who want to spend money for a chic night out\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/Antalya_by_night__1151_1602152187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13992,\"Title\":\"aspendos theatre\",\"Description\":\"Aspendos or Aspendus was an ancient Greco-Roman city in Antalya province of Turkey. The site is located 7 kilometres northeast of central Serik.\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/3422_1581506028.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23413,\"Title\":\"\\u00c7a?layan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":36.8512877,\"Long\":30.78302059999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23416,\"Title\":\"Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23415,\"Title\":\"Hierapolis\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":37.9136957,\"Long\":29.1187097,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13758,\"Title\":\"ORTAHISAR CASTLE\",\"Description\":\"Ortahisar is famous for its friendly inhabitants, picturesque stone houses, narrow streets and lovely churches as well as the castle-like rock formation after which the town is named. This 90m high natural fortress, a prominent landmark in the region &amp;ndash; honeycombed with caves and tunnels, camouflaged by nature without the slightest indication of human presence inside &amp;ndash; has partly crumbled away revealing some of its interior. Today it has been restored and the peak is accessible by a staircase. The Ortahisar Castle offers a magnificent panorama over the fairy chimneys of Hallacdere and the snowy peak of Mt. Erciyes.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/ORTAHISAR_CASTLE_12905_1579693247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4944,\"Title\":\"Cavusin\",\"Description\":\"Cavusin or the Old Greek Village is one of the off-beat places in Cappadocia, Turkey. Located around 5kms from the major tourism hub Goreme, this unexplored spot has a marvellous historical tale to tell. The major highlight of splendour structure is the old and quaint church at the top of the rock overlooking the entire old town at its best. A small village in Cappadocia is one of the oldest settlements, once it used to be home to locals is now one of the best sunset spots in the area. A must visit off-beat place when in Turkey!\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6727959,\"Long\":34.8306852,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525753813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17677,\"Title\":\"Byzantium colony\",\"Description\":\"Istanbul is a major city in Turkey that straddles Europe and Asia across the Bosphorus Strait. Its Old City reflects cultural influences of the many empires that once ruled here. In the Sultanahmet district, the open-air, Roman-era Hippodrome was for centuries the site of chariot races, and Egyptian obelisks also remain. The iconic Byzantine Hagia Sophia features a soaring 6th-century dome and rare Christian mosaics.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Byzantium_colony_12905_1602137734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11099,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops on a total area of 30,700 m&Acirc;&sup2;, attracting between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8966,\"Title\":\"St Sophia \",\"Description\":\"St Sophia \\/ Hagia Sophia, Turkish Ayasofya, Latin Sancta Sophia, also called Church of the Holy Wisdom or Church of the Divine Wisdom,cathedral built at Constantinople now Istanbul in the 6th century CE (532&acirc;&euro;&ldquo;537) under the direction of the Byzantine emperor Justinian 1. By  general consensus, it is the most important Byzantine structure and one of the world&acirc;&euro;&trade;s great monuments. The Hagia Sophia was built in the remarkably short time of about six years, being completed in 537 CE.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711987.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493954,\"Name\":\"G\\u00f6reme Kaya Otel\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"38.6409266\",\"Long\":\"34.8251974\",\"Address\":\"Uzundere Cad No:43, 50180 Nev?ehir Merkez\\/Nev?ehir, Turkey\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17692,\"Title\":\"Antalya by night\",\"Description\":\"Antalya is one of the more lively areas in Turkey when it comes to nightlife. I&amp;rsquo;ve never had to search for all-night parties, dances, great shows, performances, or a great atmosphere when I stay in Antalya.You&amp;rsquo;re sure to have a wonderful time. Here are my suggestions for spending wonderful evenings in Antalya without spending too much money. I also have a couple of suggestions for those who want to spend money for a chic night out\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/Antalya_by_night__1151_1602152187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13992,\"Title\":\"aspendos theatre\",\"Description\":\"Aspendos or Aspendus was an ancient Greco-Roman city in Antalya province of Turkey. The site is located 7 kilometres northeast of central Serik.\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/3422_1581506028.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23413,\"Title\":\"\\u00c7a?layan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":36.8512877,\"Long\":30.78302059999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23416,\"Title\":\"Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23415,\"Title\":\"Hierapolis\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":37.9136957,\"Long\":29.1187097,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13758,\"Title\":\"ORTAHISAR CASTLE\",\"Description\":\"Ortahisar is famous for its friendly inhabitants, picturesque stone houses, narrow streets and lovely churches as well as the castle-like rock formation after which the town is named. This 90m high natural fortress, a prominent landmark in the region &amp;ndash; honeycombed with caves and tunnels, camouflaged by nature without the slightest indication of human presence inside &amp;ndash; has partly crumbled away revealing some of its interior. Today it has been restored and the peak is accessible by a staircase. The Ortahisar Castle offers a magnificent panorama over the fairy chimneys of Hallacdere and the snowy peak of Mt. Erciyes.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/ORTAHISAR_CASTLE_12905_1579693247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4944,\"Title\":\"Cavusin\",\"Description\":\"Cavusin or the Old Greek Village is one of the off-beat places in Cappadocia, Turkey. Located around 5kms from the major tourism hub Goreme, this unexplored spot has a marvellous historical tale to tell. The major highlight of splendour structure is the old and quaint church at the top of the rock overlooking the entire old town at its best. A small village in Cappadocia is one of the oldest settlements, once it used to be home to locals is now one of the best sunset spots in the area. A must visit off-beat place when in Turkey!\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6727959,\"Long\":34.8306852,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525753813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17677,\"Title\":\"Byzantium colony\",\"Description\":\"Istanbul is a major city in Turkey that straddles Europe and Asia across the Bosphorus Strait. Its Old City reflects cultural influences of the many empires that once ruled here. In the Sultanahmet district, the open-air, Roman-era Hippodrome was for centuries the site of chariot races, and Egyptian obelisks also remain. The iconic Byzantine Hagia Sophia features a soaring 6th-century dome and rare Christian mosaics.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Byzantium_colony_12905_1602137734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11099,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops on a total area of 30,700 m&Acirc;&sup2;, attracting between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8966,\"Title\":\"St Sophia \",\"Description\":\"St Sophia \\/ Hagia Sophia, Turkish Ayasofya, Latin Sancta Sophia, also called Church of the Holy Wisdom or Church of the Divine Wisdom,cathedral built at Constantinople now Istanbul in the 6th century CE (532&acirc;&euro;&ldquo;537) under the direction of the Byzantine emperor Justinian 1. By  general consensus, it is the most important Byzantine structure and one of the world&acirc;&euro;&trade;s great monuments. The Hagia Sophia was built in the remarkably short time of about six years, being completed in 537 CE.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711987.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null}]}},{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493955,\"Name\":\"Hoca Pa?a\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.0129226\",\"Long\":\"28.9776682\",\"Address\":\"Hoca Pa?a, H&uuml;davendigar Cd. 17\\/19, 34110 Fatih\\/?stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":494298,\"Name\":\"Hoca Pa?a\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"41.0129226\",\"Long\":\"28.9776682\",\"Address\":\"Hoca Pa?a, H&uuml;davendigar Cd. 17\\/19, 34110 Fatih\\/?stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":494299,\"Name\":\"Hoca Pa?a\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"41.0129226\",\"Long\":\"28.9776682\",\"Address\":\"Hoca Pa?a, H&uuml;davendigar Cd. 17\\/19, 34110 Fatih\\/?stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":17692,\"Title\":\"Antalya by night\",\"Description\":\"Antalya is one of the more lively areas in Turkey when it comes to nightlife. I&amp;rsquo;ve never had to search for all-night parties, dances, great shows, performances, or a great atmosphere when I stay in Antalya.You&amp;rsquo;re sure to have a wonderful time. Here are my suggestions for spending wonderful evenings in Antalya without spending too much money. I also have a couple of suggestions for those who want to spend money for a chic night out\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/Antalya_by_night__1151_1602152187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13992,\"Title\":\"aspendos theatre\",\"Description\":\"Aspendos or Aspendus was an ancient Greco-Roman city in Antalya province of Turkey. The site is located 7 kilometres northeast of central Serik.\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1151\\/sightseeing\\/3422_1581506028.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23413,\"Title\":\"\\u00c7a?layan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":36.8512877,\"Long\":30.78302059999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23416,\"Title\":\"Cotton Castle Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":23415,\"Title\":\"Hierapolis\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":37.9136957,\"Long\":29.1187097,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":6080,\"Title\":\"Devrent Valley\",\"Description\":\"DEVRENT VALLEY. Devrent Valley, which is also known as Imaginary Valley and also as Pink Valley does not have cave churches like the other valleys of Cappadocia. There are no Roman castles or Roman tombs in Devrent Valley, either. Actually it was never inhabited.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/130_1530000501.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":15595,\"Title\":\"Hot Air Balloon Tour\",\"Description\":\"Cappadocia Hot Air Balloon Rides are one of the best ways to discover and explore the area of Cappadocia. While you are soaring between the rock formations in the deep valleys of Cappadocia onboard your Hot Air Balloon, you will close your eyes and listen to the sound of silence and peace.\\r\\n\\r\\n\\r\\nCappadocia Balloon Flights are getting more popular every year due to perfect weather conditions and amazing scenery which Cappadocia offers to the guests from all around the World.\\r\\n\\r\\n\\r\\nRoyal Balloon - Cappadocia is an ISO 9001:2015 Certified Ballooning Company, &quot;Top Rated on TripAdvisor&quot;, a proud &quot;American Express Selects Member&quot; serving &quot;Royal &amp; Exclusive&quot; Cappadocia Hot Air Balloon Flights over the spectacular and breathtaking lunarscape of Cappadocia. Experienced - Worldwide known Hot Air Balloon Pilots of Royal Balloon - Cappadocia will be delighted to see you on board and take you for an unforgettable Cappadocia Balloon Tour.\\r\\n\\r\\n\\r\\nBallooning in Cappadocia, is without doubt a &quot;must do&quot; and let us treat you Royal with a Luxury and Exclusive Hot Air Balloon Adventure over Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/4539_1591679451.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13758,\"Title\":\"ORTAHISAR CASTLE\",\"Description\":\"Ortahisar is famous for its friendly inhabitants, picturesque stone houses, narrow streets and lovely churches as well as the castle-like rock formation after which the town is named. This 90m high natural fortress, a prominent landmark in the region &amp;ndash; honeycombed with caves and tunnels, camouflaged by nature without the slightest indication of human presence inside &amp;ndash; has partly crumbled away revealing some of its interior. Today it has been restored and the peak is accessible by a staircase. The Ortahisar Castle offers a magnificent panorama over the fairy chimneys of Hallacdere and the snowy peak of Mt. Erciyes.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/ORTAHISAR_CASTLE_12905_1579693247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":4944,\"Title\":\"Cavusin\",\"Description\":\"Cavusin or the Old Greek Village is one of the off-beat places in Cappadocia, Turkey. Located around 5kms from the major tourism hub Goreme, this unexplored spot has a marvellous historical tale to tell. The major highlight of splendour structure is the old and quaint church at the top of the rock overlooking the entire old town at its best. A small village in Cappadocia is one of the oldest settlements, once it used to be home to locals is now one of the best sunset spots in the area. A must visit off-beat place when in Turkey!\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6727959,\"Long\":34.8306852,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525753813.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17677,\"Title\":\"Byzantium colony\",\"Description\":\"Istanbul is a major city in Turkey that straddles Europe and Asia across the Bosphorus Strait. Its Old City reflects cultural influences of the many empires that once ruled here. In the Sultanahmet district, the open-air, Roman-era Hippodrome was for centuries the site of chariot races, and Egyptian obelisks also remain. The iconic Byzantine Hagia Sophia features a soaring 6th-century dome and rare Christian mosaics.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/Byzantium_colony_12905_1602137734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":11099,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops on a total area of 30,700 m&Acirc;&sup2;, attracting between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":8966,\"Title\":\"St Sophia \",\"Description\":\"St Sophia \\/ Hagia Sophia, Turkish Ayasofya, Latin Sancta Sophia, also called Church of the Holy Wisdom or Church of the Divine Wisdom,cathedral built at Constantinople now Istanbul in the 6th century CE (532&acirc;&euro;&ldquo;537) under the direction of the Byzantine emperor Justinian 1. By  general consensus, it is the most important Byzantine structure and one of the world&acirc;&euro;&trade;s great monuments. The Hagia Sophia was built in the remarkably short time of about six years, being completed in 537 CE.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711987.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null},{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"227893\",\"Title\":\"Antalya\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive Antalya airport and get private transfer to your hotel. Overnight in Antalya&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227894\",\"Title\":\"Antalya\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&amp;nbsp;After breakfast,&amp;nbsp;Full Day Antalya Tour &amp;amp; Waterfall Tour. Lunch at local Restaurant. Overnight in Antalya&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17692,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13992,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23413,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227895\",\"Title\":\"Antalya\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&amp;nbsp;After Breakfast,&amp;nbsp;Full Day Pamukkale Hierapolis &amp;amp; Cotton Castle Tour. Lunch at local Restaurant. Overnight in Antalya&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27616,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23416,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23415,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227896\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227912\",\"Title\":\"Cappadocia\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, Morning free to explore beautiful beaches of Antalya, later get your private transfer to Antalya Airport for onward journey to Cappadocia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (exact schedule will depend on flight availability of the day).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;Arrive Kayseri Airport in Cappadocia and get private transfer to hotel. Overnight in Cappadocia&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493954,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227913\",\"Title\":\"\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":5,\"Program\":\"&lt;p&gt;Optional Hot Air Balloon flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;After breakfast,&amp;nbsp;Full Day Cappadocia North Tour with Goreme Open Air Museum, Dervent Valley, Pasabag, Avanos. Lunch at local Restaurant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;Overnight in Cappadocia&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493954,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6080,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11659,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227914\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227915\",\"Title\":\"Cappadocia \",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;Full Day Cappadocia South Tour with Underground City, Red Valley, Cavusin, Ortahisar, Pigeon Valley. Lunch at local Restaurant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;Post Lunch get your private transfer to Kayseri Airport for onward journey to Istanbul&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;Arrive Istanbul and your private trasfer ready to take you hotel, Overnight in Istabul&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494299,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13758,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4944,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13988,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227916\",\"Title\":\"Istanbul\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;Full Day Istanbul Ottoman Relics and Byzantium Tour with Topkapi Palace, St Sophia, Hippodrome, Blue Mosque and Grand Bazaar. Lunch at local Restaurant. &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;Overnight in Istanbul&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494299,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17677,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11099,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8962,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8966,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17287,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227917\",\"Title\":\"Istanbul\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":8,\"Program\":\"&lt;p&gt;Breakfast at Hotel,&amp;nbsp;Day at Leisure to explore the city on your own OR opt for an Optional Full Day Princess Island Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;In the evening join us for Bosphorus Dinner Cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Istanbul&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494298,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":494299,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10304,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"227918\",\"Title\":\"Istanbul\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Breakfast at Hotel, Morning free For Shopping and Leisure. Later in afternoon your private transfer from hotel to Istanbul Airport is arranged for your return flight &amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"32017\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"125950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":121752,\"priceDoubleOcc\":\"125950.00\",\"priceSingleOcc\":352660,\"priceExtraBed\":\"94462.50\",\"priceWithoutBed\":\"62975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":125950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":62975,\"CEB\":94462.5,\"COSTDO\":125950,\"COSTSO\":352660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":113355,\"COSTTO\":113355}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Round trip Economy class International flight tickets Ex - Delhi on Turkish Airline&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Nights Accommodation&amp;nbsp;at Crowne Plaza Hotel Or Similar&amp;nbsp;in Antalya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights Accommodation at&amp;nbsp;Goreme Kaya Otel Or Similar&amp;nbsp;in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Nights Accommodation at&amp;nbsp;Best Western Empire Palace Hotel Or Similar&amp;nbsp;in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All airport transfers mentioned in the itinerary on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily buffet Breakfasts&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Local Lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Dinner on Bosphorus Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Domestic flights (3 FLIGHTS \\/ IST-AYT-ASR-IST)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;SIC tours mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;English Speaking Tour Guide during tours&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"227893\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[227893],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227894\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[227894],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227895\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[227895],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227896\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[227896],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"227912\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[227912],\"Remark\":[\"&lt;p&gt;Antalya-&nbsp;Cappadocia Flight&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"227913\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[227913],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227914\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[227914],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"227915\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[227915],\"Remark\":[\"&lt;p&gt;Cappadocia-Istanbul Flight&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227916\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[227916],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227917\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[227917],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"227918\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[227918],\"Remark\":[\"&lt;p&gt;Hotel To Istanbul Airport PVT Transfers&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Antalya,Cappadocia,Istanbul','Antalya,Central Asia,Turkey,Eurasia,Cappadocia,Istanbul',NULL,'1151,5094,12905',125950,125950,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2024-03-06 11:19:28','2023-09-07 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'enticing-escapes-turkey',NULL,NULL,NULL,0),(379,31355,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31355,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/dhigufaru-island-resort_1690609809\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Nestled on the protected&amp;nbsp;Biosphere reserve of Baa Atoll, Dhigufaru Island meaning &amp;ldquo;a long reef&amp;rdquo;, is the epitome of what you would imagine as an exotic getaway. Whether you like to kick back, relax &amp;amp; take in the magnificent, stunning beauty of the island and surrounding reef, or if you looking for a more action pack, exotic adventure, we offer the perfect balance of both. Welcome to Dhigufaru Island Resort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We invite you to a wholly new experience, one that allows you to discover the duality of Maldives natural beauty, under water, and above water. We offer you a chance like no other, one that gives you the choice, to be as busy or as quiet as you want.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"DHIGUFARU ISLAND RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7636\",\"SupplierName\":\"Destination Launcher\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":217173,\"Name\":\"Dhigufaru Island Resort\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Dhigufaruvinagan&#039;du, Maldives, Maldives Islands, Maldives, , , 20256, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4787322,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICi78YtqrWuooqbV7OVh5cHxV2e7bfHvPY1pqiXnWk2Jc7nbpApLXgjfop232tHWIMMJILKSREilTzk7RTJXsw0pgXXgu2hBItdoTfWFYmPRsw92F3F8quCvflRNDHBgAPxnPPkmOSrvrqXrpnQNSpT70QG0\\/wZ5RE6ovpLY4UDI4yoTFIoCAFKswr6EqHVRHK4u57bi9l9i3FkRGIg3PCxJ\\/Qw8rj46\\/kY=\"}]},\"CityId\":16505,\"Brief\":\"Dhigufaru Island Resort is a popular choice amongst travelers in Maldives Islands, whether exploring or just passing through. Offering a variety of facilities and services, the hotel provides all you need for a good night&#039;s sleep. To be found at the hotel are free Wi-Fi in all rooms, 24-hour security, daily housekeeping, gift\\/souvenir shop, 24-hour front desk. Each guestroom is elegantly furnished and equipped with handy amenities. To enhance guests&#039; stay, the hotel offers recreational facilities such as canoe, dart board, watersports equipment rentals, wind surfing, snorkeling. A welcoming atmosphere and excellent service are what you can expect during your stay at Dhigufaru Island Resort.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7636,\"SupplierName\":\"Destination Launcher\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223004\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS BEACH VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS WATER VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;FULL BOARD PLAN&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RETURN SPEEDBOAT TRANSFERS&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223005\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223006\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223007\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223008\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":217173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"02 NIGHT BEACH VILLA  02 NIGHT WATER VILLA\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"31355\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"110880.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":107184,\"priceDoubleOcc\":\"110880.00\",\"priceSingleOcc\":310464,\"priceExtraBed\":\"83160.00\",\"priceWithoutBed\":\"55440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":55440,\"CEB\":83160,\"COSTDO\":110880,\"COSTSO\":310464,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":99792,\"COSTTO\":99792}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS BEACH VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 NIGHTS WATER VILLA&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;FULL BOARD PLAN&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RETURN SPEEDBOAT TRANSFERS&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"223004\":[{\"Sequence\":[0],\"TPInvnSysId\":[223004],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223005\":[{\"Sequence\":[0],\"TPInvnSysId\":[223005],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223006\":[{\"Sequence\":[0],\"TPInvnSysId\":[223006],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223007\":[{\"Sequence\":[0],\"TPInvnSysId\":[223007],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"223008\":[{\"Sequence\":[0],\"TPInvnSysId\":[223008],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',110880,110880,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:13:22','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'dhigufaru-island-resort',NULL,NULL,NULL,0),(380,31133,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31133,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/biyadhoo_island_resort_1649999630.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Just 30 minutes from the airport by speedboat, a tropical haven is enclosed within the turquoise folds of the Indian Ocean. Located in South Male Atoll, the island of Biyadhoo offers breath-taking beauty of Maldives.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fringed by a crystalline lagoon and powdery white sandy beaches, Biyadhoo is blessed with lush tropical vegetation and famed to have the best house reef in the Maldives. Popular among the diving and snorkeling enthusiasts, the island provides peace and tranquility to the weary soul.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"BIYADHOO ISLAND RESORT \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"18530\",\"SupplierName\":\"AV DMC\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492246,\"Name\":\"Biyadhoo Island Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.9223759\",\"Long\":\"73.4552307\",\"Address\":\"Biyadhoo, South Male Atoll 02145, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":18530,\"SupplierName\":\"AV DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"221519\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;4 Nights Standard Room&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Full Board Meal Plan&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Return Speedboat Transfers&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221520\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221521\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221522\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221523\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492246,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31133\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":39556,\"priceDoubleOcc\":\"40920.00\",\"priceSingleOcc\":114576,\"priceExtraBed\":\"30690.00\",\"priceWithoutBed\":\"20460.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20460,\"CEB\":30690,\"COSTDO\":40920,\"COSTSO\":114576,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36828,\"COSTTO\":36828}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Standard Room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Speedboat Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"221519\":[{\"Sequence\":[0],\"TPInvnSysId\":[221519],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221520\":[{\"Sequence\":[0],\"TPInvnSysId\":[221520],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221521\":[{\"Sequence\":[0],\"TPInvnSysId\":[221521],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221522\":[{\"Sequence\":[0],\"TPInvnSysId\":[221522],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221523\":[{\"Sequence\":[0],\"TPInvnSysId\":[221523],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',40920,40920,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:14:01','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'biyadhoo-island-resort',NULL,NULL,NULL,0),(381,31106,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31106,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/kaani-palm-beach_1690610017\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Kaani Palm Beach with the tallest Infinity Pool in Maldives situated on the magnificent beachfront, directly on the Bikini Beach in Maafushi Island.. The Hotel combines splendid service with quality accommodation, stylish cuisine and facilities for a perfect family holiday, business trip or relaxing getaway. The stunning four-star hotel offers homely comfort in its 105 spacious, en-suite bedrooms, with stunning sea-views. Enjoy a relaxing environment, sipping a drink while overlooking the ocean in the private balcony of your room or in the rooftop Infinite Cafe&amp;#39;. If you don&amp;#39;t feel like outdoor exercise you can relax either in our Spa or if you feeling up to it, why not work out gently in the gym. Our young and friendly staff are here to book tours, welcome and serve you. It is about 25 kms from the International Airport and makes an ideal holiday for your family.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"KAANI PALM BEACH\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7435\",\"SupplierName\":\"TRAVELLING COMPASS\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492214,\"Name\":\"Kaani Beach Hotel\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.944651400000001\",\"Long\":\"73.4908574\",\"Address\":\"Aabaadhee Hingun Road, Maafushi, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7435,\"SupplierName\":\"TRAVELLING COMPASS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Room Sea view with Balcony \",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"221354\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room Sea view with Balcony\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221355\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room Sea view with Balcony\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221356\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room Sea view with Balcony\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221357\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room Sea view with Balcony\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31106\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36410.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":35196,\"priceDoubleOcc\":\"36410.00\",\"priceSingleOcc\":101948,\"priceExtraBed\":\"27307.50\",\"priceWithoutBed\":\"18205.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18205,\"CEB\":27307.5,\"COSTDO\":36410,\"COSTSO\":101948,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32769,\"COSTTO\":32769}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"221354\":[{\"Sequence\":[0],\"TPInvnSysId\":[221354],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221355\":[{\"Sequence\":[0],\"TPInvnSysId\":[221355],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221356\":[{\"Sequence\":[0],\"TPInvnSysId\":[221356],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221357\":[{\"Sequence\":[0],\"TPInvnSysId\":[221357],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',36410,36410,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:14:34','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kaani-palm-beach',NULL,NULL,NULL,0),(382,31090,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31090,\"IsCF\":0,\"URL\":\"0\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/intercontinental-resort---ihg-hotel_1690617537\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Welcome to InterContinental Life!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Where tradition meets luxury&amp;hellip;and blue water meets golden sand.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Nestled on the North West coast of the island, InterContinental Mauritius Resort Balaclava Fort offers luxurious accommodation with thoughtful amenities within a spectacular natural setting, surrounded by verdant gardens of exotic trees and flowers, complemented by a passionate team, offering heartfelt service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Newly refurbished in 2021, InterContinental Mauritius Resort Balaclava Fort offers a haven for an ultimate escape. With its modern looks, the resort will enchant any guest who is looking for a relaxed holiday or a livelier one, filled with activities. Immerse yourself in the ambience of a tranquil islander as you watch the stunning sunset of the best, north-west coast!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Winner of multiple international awards, InterContinental Mauritius Resort Balaclava Fort seamlessly accommodates the needs of all segments of travellers to Mauritius; whether these are couples, families, solo adventurers or business tripper. With its 210 ocean-facing rooms, 4 restaurants, 3 bars, 2 heated pools &amp;amp; 1 Spa, 1 Planet Trekker Kids Club, InterContinental Mauritius Resort Balaclava Fort offers an unrivalled and diverse array of world-class facilities, recreational features and leisure outlets.&amp;nbsp; Showcasing the traditional island architecture interwoven with modern conveniences, InterContinental Mauritius Resort Balaclava Fort has the largest ballroom in Mauritius, plus other meeting and events venues to cater for all types of MICE requests.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"INTERCONTINENTAL RESORT - IHG HOTEL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492173,\"Name\":\"InterContinental Resort Mauritius\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.0936386\",\"Long\":\"57.5093542\",\"Address\":\"Balaclava Fort Coastal Road Balaclava MU, Balaclava 21306, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_492173\\/5293_b9a230334fbe36416167fc68078cb2171646981822.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Ocean View\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":22723,\"Title\":\"\\u00c3\\u017dle aux Cerfs\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.2723538,\"Long\":57.8041107,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"221176\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;- Private check in with a tropical welcome Mocktail&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- Personalized escort to the room&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- Romantic Room Set up with amenities&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- 1 bottle of Sparkling Wine in the room upon arrival&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- 2 &amp;ldquo;Intercontinental &amp;ldquo;polo shirts as welcome gifts&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- 1 Romantic 3 course candle lit dinner on the beach&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;-&amp;nbsp; Free use of Sauna, Steam Room and whirlpool at Intercontinental Spa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;- 1 free 30 min. Spa Couple Treatment&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221177\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22723,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221178\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221179\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221180\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229950\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492173,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31090\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"76281.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"76281.70\",\"priceDoubleOcc\":\"76281.70\",\"priceSingleOcc\":228844,\"priceExtraBed\":\"76281.70\",\"priceWithoutBed\":\"71881.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":76281.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":71881.7,\"CEB\":76281.7,\"COSTDO\":76281.7,\"COSTSO\":228844,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":76281.7,\"COSTTO\":76281.7}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Service Pack ( In a private vehicle )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South TourRemarks&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note that Speedboat transfer during Ile Aux Cerf tour will remain on SIC basis only&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"221176\":[{\"Sequence\":[0],\"TPInvnSysId\":[221176],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221177\":[{\"Sequence\":[0],\"TPInvnSysId\":[221177],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221178\":[{\"Sequence\":[0],\"TPInvnSysId\":[221178],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221179\":[{\"Sequence\":[0],\"TPInvnSysId\":[221179],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221180\":[{\"Sequence\":[0],\"TPInvnSysId\":[221180],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"229950\":[{\"Sequence\":[0],\"TPInvnSysId\":[229950],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',76282,76282,5,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-01-16 19:32:09','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'intercontinental-resort-ihg-hotel',NULL,NULL,NULL,0),(383,31078,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":31078,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/anelia-resort--spa_1690618360\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A breath of fresh air and flare in the West Coast, Anelia Resort &amp;amp; Spa is a newly built 4 star resort with 150 rooms. Anelia, the name, epitomizes the peaceful harmonization of our multi-cultural and diverse society and takes you to a journey of discovery and fun. From the rustic and traditional thatch and shingle roofing to the chic modern designs, the resort concept conveys the guest into time travel. The woodwork and d&amp;eacute;cor are a constant reminder of our traditional architecture and depicts the different phases of the island&amp;rsquo;s development and modernization. Anelia tells you her story, invites you to be part of it and&amp;nbsp;wants you to bring back memories from your stay.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANELIA RESORT & SPA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492128,\"Name\":\"Anelia Resort and Spa\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.2721604\",\"Long\":\"57.37180369999999\",\"Address\":\"Klondike Rd, Flic en Flac, Mauritius\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_492128\\/5293_bfb2977f4ac06d4a0cab6add97b3e9d91646371896.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"221024\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accomodation on Double\\/ Twin Sharing Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal Plan - Breakfast &amp;amp; Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Honeymoon Freebies&lt;\\/strong&gt;&amp;nbsp;\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;1 fruit platter, 1 bottle of Sparkling wine, Floral decoration in room.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;During stay: One romantic dinner (excluding drinks)&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Conditions: A copy of the Wedding\\/Civil Partnership Certificate (not exceeding 12&amp;nbsp;months) must be forwarded to the Reservation Department at the time&amp;nbsp;of booking and to be presented by guests upon check-in.&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Sightseeings&lt;\\/strong&gt;\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Full Day South Tour&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All tours and transfers are on Sharing Basis&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221025\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221026\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221027\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221028\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229949\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31078\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"42350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"42350.00\",\"priceDoubleOcc\":\"42350.00\",\"priceSingleOcc\":84700,\"priceExtraBed\":\"42350.00\",\"priceWithoutBed\":\"42350.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":42350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":42350,\"CEB\":42350,\"COSTDO\":42350,\"COSTSO\":84700,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":42350,\"COSTTO\":42350}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"221024\":[{\"Sequence\":[0],\"TPInvnSysId\":[221024],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221025\":[{\"Sequence\":[0],\"TPInvnSysId\":[221025],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221026\":[{\"Sequence\":[0],\"TPInvnSysId\":[221026],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221027\":[{\"Sequence\":[0],\"TPInvnSysId\":[221027],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"221028\":[{\"Sequence\":[0],\"TPInvnSysId\":[221028],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"229949\":[{\"Sequence\":[0],\"TPInvnSysId\":[229949],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',42350,42350,5,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-01-16 12:36:45','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'anelia-resort-spa',NULL,NULL,NULL,0),(384,31065,1,5293,0,0,0,'Honeymoon,Beach,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31065,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/laguna-beach-hotel--spa_1690618643\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;At Laguna Beach Resort, we offer all our guests a complete experience. A combination of a rustic environment and modern architecture.The Resort is located on the white sands of Murud Beach, blessed by breath taking sea view where you feel close to nature. Every room is designed to meet the contemporary requirements of today&amp;#39;s traveler. From tech-enabled spaces to inspired design, from value-driven essentials to pampered indulgence.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"LAGUNA BEACH HOTEL & SPA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Breakfast & Dinner\",\"PackageType\":\"Honeymoon,Beach,Family\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220961\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 07 Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( MAP Meal Plan - Breakfast&amp;nbsp; &amp;amp; Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Freebies for Honeymooners:&amp;nbsp;Fruit Platter, Sparkling wine &amp;amp; Floral decor in room upon arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Candle Light Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220962\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220963\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220964\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220965\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229946\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229947\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229948\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31065\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"50547.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2},{\"From\":\"2024-01-16\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"50547.20\",\"priceDoubleOcc\":\"50547.20\",\"priceSingleOcc\":151642.7,\"priceExtraBed\":\"50547.20\",\"priceWithoutBed\":\"45047.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":50547.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":45047.2,\"CEB\":50547.2,\"COSTDO\":50547.2,\"COSTSO\":151642.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":50547.2,\"COSTTO\":50547.2}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 07 Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( MAP Meal Plan - Breakfast&amp;nbsp; &amp;amp; Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Freebies for Honeymooners:&amp;nbsp;Fruit Platter, Sparkling wine &amp;amp; Floral decor in room upon arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Candle Light Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":[],\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',50547,50547,7,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-01-16 19:19:56','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'laguna-beach-hotel-spa',NULL,NULL,NULL,0),(385,30928,1,5293,0,0,0,'Beach,Family,Religious',NULL,1,1,0,'{\"package\":{\"TPId\":30928,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/somnath-temple-with-diu-beach-tour_1691750056\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The&amp;nbsp;Somnath temple, also called&amp;nbsp;Soman?tha temple&amp;nbsp;or&amp;nbsp;Deo Patan, is a&amp;nbsp;Hindu&amp;nbsp;temple located in&amp;nbsp;Prabhas Patan,&amp;nbsp;Veraval&amp;nbsp;in&amp;nbsp;Gujarat,&amp;nbsp;India. It is one of the most sacred pilgrimage sites for&amp;nbsp;Hindus&amp;nbsp;and is the first among the twelve&amp;nbsp;jyotirlinga&amp;nbsp;shrines of&amp;nbsp;Shiva.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"I Need Trip\",\"Name\":\"SOMNATH TEMPLE WITH DIU BEACH TOUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7785\",\"SupplierName\":\"Gujarat Tour & Travels Organizer\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Train Station Transfers,Sightseeing\",\"PackageType\":\"Beach,Family,Religious\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34517,\"Title\":\"Somnath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491676,\"Name\":\"Hotel Heritage veraval somnath\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.9291131\",\"Long\":\"70.352942\",\"Address\":\"Junagadh Rd, opp. saibaba temple, Veraval, Gujarat 362266, India\"},\"Images\":[],\"CityId\":34517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491677,\"Name\":\"Lords Inn Somnath\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.8956329\",\"Long\":\"70.41038739999999\",\"Address\":\"Somnath By-PassRoad, Prabhash Patan, Somnath, Veraval, Gujarat 362266, India\"},\"Images\":[],\"CityId\":34517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2429,\"Title\":\"Bhalka Tirtha, Bhalka, Somnath, Gujarat, India\",\"Description\":\"Bhalka Tirth is one of the major pilgrim attractions, located at the Prabhas Kshetra near Veraval in Saurashtra district of Gujarat. This place is also refer as Shri Krishna Nija Dham Prasthan Tirth or Dehotsarg Tirth. There is a temple and a banyan tree at this Theerth, which are dedicated to Lord Krishna. As per legends, this is the site where Lord Krishna was hit by an arrow, after which he left his mortal body for his heavenly abode, the end of Dwapara Yuga. The footprints of Lord Krishna are installed in a small open shrine. The temple contains a beautiful tribhangi idol of Lord Krishna playing his flute. The festivals of Janmashtami, Holi, Radha-Ashtami, Gopashtami, and Diwali are celebrated with great devotion.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.9116989,\"Long\":70.3837745,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Bhalka_Tirth_34517_1519390495.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":439,\"Title\":\"Diu Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3527\\/thumb\\/Diu Beach_598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22642,\"Title\":\"Jalandhar Dada Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7095308,\"Long\":70.9865834,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":7951,\"Title\":\"Diu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491679,\"Name\":\"Hotel Apaar\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.7184996\",\"Long\":\"70.9852168\",\"Address\":\"Fort Road,Bunder Chowk, opp. Govt. Parking, Diu, Daman and Diu 362520, India\"},\"Images\":[],\"CityId\":7951,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491680,\"Name\":\"Radhika Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.70657629999999\",\"Long\":\"70.91482630000002\",\"Address\":\"Nagoa Beach, Diu, Daman and Diu 362520, India\"},\"Images\":[],\"CityId\":7951,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2429,\"Title\":\"Bhalka Tirtha, Bhalka, Somnath, Gujarat, India\",\"Description\":\"Bhalka Tirth is one of the major pilgrim attractions, located at the Prabhas Kshetra near Veraval in Saurashtra district of Gujarat. This place is also refer as Shri Krishna Nija Dham Prasthan Tirth or Dehotsarg Tirth. There is a temple and a banyan tree at this Theerth, which are dedicated to Lord Krishna. As per legends, this is the site where Lord Krishna was hit by an arrow, after which he left his mortal body for his heavenly abode, the end of Dwapara Yuga. The footprints of Lord Krishna are installed in a small open shrine. The temple contains a beautiful tribhangi idol of Lord Krishna playing his flute. The festivals of Janmashtami, Holi, Radha-Ashtami, Gopashtami, and Diwali are celebrated with great devotion.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.9116989,\"Long\":70.3837745,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Bhalka_Tirth_34517_1519390495.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":439,\"Title\":\"Diu Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3527\\/thumb\\/Diu Beach_598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22642,\"Title\":\"Jalandhar Dada Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7095308,\"Long\":70.9865834,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"219922\",\"Title\":\"Ahmedabad &acirc;&euro;&ldquo; Somnath (430 Kms \\/ 8.5 Hrs) Drives To Early Morning \",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Morning Arrival At Ahmedabad Airport \\/ Railway Station. Then Drives To Somnath.&amp;nbsp; Evening Check In To The Hotel &amp;amp; Then Visit The Light And Sound Show.&amp;nbsp; O\\/N Stay At Somnath.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491677,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2429,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2428,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219924\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219926\",\"Title\":\"Somnath &acirc;&euro;&ldquo; Diu (90 Kms \\/ 2 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Visit The Somnath Temple And Bhalka Tirth.&amp;nbsp; Somnath To Diu. To Diu. Visit The Diu Fort, Diu Museum, Nagoa Beach, Jallandhar Shrine, Gangeshwar Temple And St. Paul&amp;rsquo;s Church. O\\/N Stay At Diu.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7951,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491679,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491680,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":439,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":441,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":442,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22623,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22642,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1178,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1678,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219928\",\"Title\":\"Diu To Ahmedabad Drop\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today In Time Transfer To Ahmedabad Airport \\/ Railway Station To Board Flight \\/ Train For Your Hometown. Let&amp;rsquo;s Stay In Touch On Facebook\\/Email And Meet Again On Another Memorable Holiday. See You Soon!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7951,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30928\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":11165,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":34650,\"priceExtraBed\":\"8662.50\",\"priceWithoutBed\":\"5775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5775,\"CEB\":8662.5,\"COSTDO\":11550,\"COSTSO\":34650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":10395,\"COSTTO\":10395}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30929\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"219922\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[219922],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219924\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219924],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219926\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219926],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219928\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219928],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Somnath,Diu','Somnath,Gujarat,Indian Subcontinent,West India,India,Diu,Daman and Diu',NULL,'34517,7951',11550,13750,2,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:18:23','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'somnath-temple-with-diu-beach-tour',NULL,NULL,NULL,0),(386,30924,1,5293,0,0,0,'Wildlife,Beach,Family,Religious',NULL,1,1,0,'{\"package\":{\"TPId\":30924,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/royal-gujarat-tour_1691751871\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Located on the western coast of India between Maharashtra and Rajasthan, Gujarat didn&amp;#39;t really feature on the tourist map until recent years. A very successful series of ad campaigns with Bollywood actor Amitabh Bachchan and the addition of the Statue of Unity have changed this though. Tourist interest in the state has grown substantially. However, Gujarat is perhaps best known as the birthplace of Mahatma Gandhi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The legacy of Gujarat&amp;#39;s heritage includes remarkable architecture, temples, palaces and mansions (many of which have been&amp;nbsp;converted into hotels), and handicrafts. The state also has some rare wildlife and many bird-watching sites. It&amp;#39;s worthwhile getting out and about, away from the major cities, and exploring. You&amp;#39;ll be surprised by what there is to see and experience. Gujarat really is one of the most underrated destinations in India! If you&amp;#39;re serious about birding and wildlife, archeology, or textiles,&amp;nbsp;Soar Excursions&amp;nbsp;are highly recommended for guided trips.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"I Need Trip\",\"Name\":\"ROYAL GUJARAT TOUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7785\",\"SupplierName\":\"Gujarat Tour & Travels Organizer\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Train Station Transfers,Sightseeing\",\"PackageType\":\"Wildlife,Beach,Family,Religious\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":296,\"Title\":\"Ahmedabad\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":21843,\"Name\":\"Aaram Orchard\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.0326\",\"Long\":\"72.5623\",\"Address\":\"Hitek Building near NID\"},\"Images\":{\"Image\":[{\"ImagId\":524041,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_10_t.jpg\"},{\"ImagId\":524042,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_11_t.jpg\"},{\"ImagId\":524043,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_3_t.jpg\"},{\"ImagId\":524044,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_5_t.jpg\"},{\"ImagId\":524045,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_6_t.jpg\"},{\"ImagId\":524046,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_8_t.jpg\"},{\"ImagId\":524047,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_9_t.jpg\"},{\"ImagId\":524048,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_4_t.jpg\"},{\"ImagId\":524049,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_12_t.jpg\"},{\"ImagId\":524050,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_7_t.jpg\"},{\"ImagId\":524051,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_2_t.jpg\"},{\"ImagId\":524052,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_1_t.jpg\"}]},\"CityId\":296,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Ahmedabad, Hotel Aaram Orchard is minutes from Sanskar Kendra Museum and close to Manek Chowk.  This hotel is within close proximity of Jama Masjid Mosque and Swaminarayan Temple.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 26 air-conditioned rooms featuring flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries. Conveniences include desks and complimentary newspapers, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take in the views from a terrace and make use of amenities such as complimentary wireless Internet access and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s 24-hour room service.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include dry cleaning\\/laundry services, a 24-hour front desk, and laundry facilities. Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11490000\\/11488100\\/11488023\\/11488023_10_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491653,\"Name\":\"Hotel Le Grande Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"23.0203063\",\"Long\":\"72.5597709\",\"Address\":\"B\\/h., Gujarat College, Old Sharda Mandir, Sheth Mangaldas Rd, nr. Parimal Garden, Ellisbridge, Ahmedabad, Gujarat 380006, India\"},\"Images\":[],\"CityId\":296,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":13022,\"Title\":\"Jamnagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491667,\"Name\":\"Anaya Beacon Hotel\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.4704371\",\"Long\":\"70.0465284\",\"Address\":\"Imperial Commercial Space Near Raj Chamber, Main Road, Khodiyar Colony, Jamnagar, Gujarat 361006, India\"},\"Images\":[],\"CityId\":13022,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":34523,\"Title\":\"Dwarka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491671,\"Name\":\"The Grand Dwarika\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.2390117\",\"Long\":\"68.97084749999999\",\"Address\":\"Bhathan chok, Dwarkadhish Temple Rd, Dwarka, Gujarat 361335, India\"},\"Images\":[],\"CityId\":34523,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491673,\"Name\":\"The Fern Sattva Resort Dwarka\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.2029049\",\"Long\":\"69.0141355\",\"Address\":\"National Highway 51,Baradia, Village, Dwarka, Gujarat 361335, India\"},\"Images\":[],\"CityId\":34523,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":34517,\"Title\":\"Somnath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491676,\"Name\":\"Hotel Heritage veraval somnath\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.9291131\",\"Long\":\"70.352942\",\"Address\":\"Junagadh Rd, opp. saibaba temple, Veraval, Gujarat 362266, India\"},\"Images\":[],\"CityId\":34517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491677,\"Name\":\"Lords Inn Somnath\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.8956329\",\"Long\":\"70.41038739999999\",\"Address\":\"Somnath By-PassRoad, Prabhash Patan, Somnath, Veraval, Gujarat 362266, India\"},\"Images\":[],\"CityId\":34517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":10450,\"Title\":\"Gir National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491734,\"Name\":\"Daksh Resort-Sasan Gir\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.1359234\",\"Long\":\"70.505477\",\"Address\":\"Nr club mahendra Gir, Hiranvel, Gujarat 362150, India\"},\"Images\":[],\"CityId\":10450,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491735,\"Name\":\"Daksh Resort-Sasan Gir\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.1359234\",\"Long\":\"70.505477\",\"Address\":\"Nr club mahendra Gir, Hiranvel, Gujarat 362150, India\"},\"Images\":[],\"CityId\":10450,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":7951,\"Title\":\"Diu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491679,\"Name\":\"Hotel Apaar\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.7184996\",\"Long\":\"70.9852168\",\"Address\":\"Fort Road,Bunder Chowk, opp. Govt. Parking, Diu, Daman and Diu 362520, India\"},\"Images\":[],\"CityId\":7951,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491680,\"Name\":\"Radhika Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.70657629999999\",\"Long\":\"70.91482630000002\",\"Address\":\"Nagoa Beach, Diu, Daman and Diu 362520, India\"},\"Images\":[],\"CityId\":7951,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":3133,\"Title\":\"Bhavnagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":418172,\"Name\":\"EFCEE Sarovar Portico Bhavnagar\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.730209\",\"Long\":\"72.15594\",\"Address\":\"Iscon Mega City, Opposite Victoria Park,Gujarat,India, 364002\"},\"Images\":[],\"CityId\":3133,\"Brief\":\"EFCEE Sarovar Portico is situated in the City Center of Bhavnagar. The city has always been an important Centre of trade and commerce of goods. Hotel is located opposite Victoria Park and at an accessible distance from Bhavnagar Airport and Bhavnagar Railway Station. Hotel offers 24 hrs room service, 24 hrs security, currency exchange, Business Service, Housekeeping, transportation service. For relaxation, guests can use fully equipped fitness Centre, luxury SPA service and Swimming pool. For dinning, Victoria 23- all day dining coffee shop is there with pleasant view of Victoria Park. Spice story offers delicious India and Peshawari cuisines. Traveller can avail the service of travel desk for sightseeing of the spiritual places and transfer service to Airport and Railway stations. Hotel has 99 rooms and suites designed for comfort and convenience. All rooms offer  bedside lamp, Flat screen TV, Full length mirror, Hair dryer, In room safe, Ironing board, Luggage space, Phone line, Rollaway bed ( Chargeable), safety locker, Shower cubicle, Table lamp, Tea\\/Coffee maker, Temp control, Turn down Service, Wifi, Writing desk and complimentary toiletries.                                                The banqueting space available at hotel is ideal for organizing business and social events. The hall is equipped with the latest audio visual equipments, Picture screen, Wi-Fi, Overhead video and slide projectors and advanced audio and microphone systems. The open air beautiful lawn is perfect for wedding functions and social gathering.\",\"MainImg\":\"http:\\/\\/www.cleartrip.com\\/places\\/hotels\\/1361\\/1361238\\/images\\/Hotel_Facade_View_tn.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491681,\"Name\":\"GenX Bhavnagar\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.7667524\",\"Long\":\"72.14362849999999\",\"Address\":\"Kalubha Rd, Kalanala, Takhteshwar Plots, Bhavnagar, Gujarat 364002, India\"},\"Images\":[],\"CityId\":3133,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}},{\"CityId\":28303,\"Title\":\"Vadodara\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491738,\"Name\":\"Revival Lords Inn Vadodara\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.3102705\",\"Long\":\"73.1883035\",\"Address\":\"Near University Road, near Kala Ghoda Circle, Dak Bunglaw, Sayajiganj, Vadodara, Gujarat 390002, India\"},\"Images\":[],\"CityId\":28303,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491740,\"Name\":\"Ginger Vadodara RCR\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.30888999999999\",\"Long\":\"73.159091\",\"Address\":\"Race Course Road, Near, Natubhai Cir, Gadapura, Diwalipura, Vadodara, Gujarat 390007, India\"},\"Images\":[],\"CityId\":28303,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":12,\"Title\":\"Adalaj Stepwell\",\"Description\":\"Adalaj Stepwell is located in the village of Adalaj and built in 1499 by Queen Rudabai, this stepwell served as a place for relaxation for pilgrims and caravans in the earlier years. It was constructed in Indo-Islamic architectural style, with the belief that villagers would visit the well to collect water, offer their prayers to deities carved on the walls and rest for some time. The walls are beautifully carved with scenes of women churning buttermilk, kings, dancers and musicians. Since direct sunlight does not reach the interiors of the stepwell or vav, the temperature is apparently six degrees cooler than the outside. A unique feature of this  stepwell of Gujarat, that this is the only one with three entrance stairs.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.1682064,\"Long\":72.5866107,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Adalaj_Stepwell_296_1518613394.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3802,\"Title\":\"Akshardham Temple\",\"Description\":\"Akshardham Temple is one  of the largest temples in Gujarat dedicated to Lord Swaminarayan and is the best example of contemporary architecture and style, built using 6000 tons of pink sandstone. It is considered a place of education, enlightment and in a way entertainment, where more than 2 million people visit each year. The major attractions of this majestic temple are its 10 story tall golden idol of Swaminarayan Mystic India( a film on an incredible journey of an 11-year old child yogi called Neelkanth) the light and music show(Sat Chit Anand Watershow) and audio animatronic shows. It is surrounded by a garden which houses rides, swings and games for kids, a lake, a waterfall and a herbal garden.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.2293105,\"Long\":72.6741311,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Akshardham_Temple_296_1519366183.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":693,\"Title\":\"Hutheesing Jain Temple\",\"Description\":\"Hutheesing Jain Temple is considered to be one of the architectural masterpieces in Ahmedabad,  famous for its architecture and unique design that consists of intricate carvings as the main aesthetic element. The temple was built in 1848 AD by Seth Hutheesing, as a dedication to the 15th Jain Trithanakara called Dharmnath. Home to 52 shrines, each consists of an image of a tirthankara. Made from beautiful white marble, it is a delight to see. \\r\\nThe layout of the temple makes it one of the most beautiful temples in the country and is well worth a visit, has a dome on the main front and carved galleries on the other side.It also have the Mahavir Stambha (about 78 ft tall) that stands right at the entrance of the temple.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0396505,\"Long\":72.5922008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Hutheesing_Jain_Temple_296_1518608614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1503,\"Title\":\"Sabarmati Ashram (Gandhi Ashram)\",\"Description\":\"Sabarmati Ashram is the biggest tourist attraction, located on the tranquil and serene stretch of Sabarmati River in Ahmedabad. Once the residence of Mahatma Gandhi and his wife Kasturba, it was also referred to as the &amp;#039;Gandhi Ashram&amp;#039;, &amp;#039;Mahatma Gandhi Ashram&amp;#039; and most importantly, &amp;#039;Satyagraha Ashram&amp;#039; as Gandhi began the famous &amp;#039;Dandi March&amp;#039; from here. \\r\\nThe Mahatma Gandhi Ashram has a number of other buildings within its bounds. The most famous among them is the museum &amp;#039;Gandhi Smarak Sangrahalaya&amp;#039; which has some of Gandhi&amp;#039;s personal letters and photographs on display. Other buildings and sites within the Gandhi Ashram known as Nandini, Vinoba Kutir, Upasana Mandir, and Magan Niwas.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":23.0417764,\"Long\":72.5691175,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/296\\/sightseeing\\/Sabarmati_Ashram_296_1518604492.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":113,\"Title\":\"Bala Hanuman Temple\",\"Description\":\"Jamnagar also called as &amp;quot;Chhoti Kashi&amp;quot;, where the most beautiful temple &amp;quot;Shri Bala Hanuman&amp;quot; is located. It is also known as Shri Balahanuman Sankirtan Mandir, situated at the south east side of Ranmal Lake. It is the world famous temple and has acheived name in Guinness Book of world records for continous 24-hours chanting of Ram Dhun- &amp;#039;Shri Ram, Jai Ram, Jai Jai Ram&amp;#039;, since August 1, 1964. The simple looking structure houses the idols of Lord Ram, Lord Lakshman, Goddess Sita and Lord Hanuman. Local people has deep faith in the temple and believes that it protect them from natural calamities and other troubles. The evening arti is the most awaited event of the temple.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4637888,\"Long\":70.0717481,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Bala_Hanuman_Temple_13022_1519650716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22612,\"Title\":\"Lakhota Lake\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4656105,\"Long\":70.0644561,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6562,\"Title\":\"Bet Dwarka\",\"Description\":\"Bet Dwarka, also known as Bet Shankhodhar, is a small island and was the main port in the region before the development of Okha. It offers opportunities to spot dolphins, marine excursions, camping and picnicking. Most of the archaelogical ruins excavated here and religious manus correspond with Beyt Dwarka as the original abode of Lord Krishna. In order to get there from Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530786119.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":8641,\"Title\":\"Gopi Talav\",\"Description\":\"Gopi Talav or the Gopi Tank is a small pond surrounded by sandal like yellow sand, known as Gopi Chandan. This Chandan is used by devotees of Lord Krishna to make tilak marks on their bodies. The Talav has a special significance in the Hindu mythology, as it is believed to be the place where gopis came to see Lord Krishna in Dwarka.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/Gopi_Talav_34523_1552894345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6555,\"Title\":\"Nageshwar temple\",\"Description\":\"Nageshwar Jyotirling Jamnagar Gujarat. The temples at Jageshwar, in the background of Darukavana, the holy Deodar forest. Nageshvara Jyotirlinga is one of the 12 Jyotirlinga shrines mentioned in the Shiva Purana.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530782939.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":6556,\"Title\":\"Rukmini temple\",\"Description\":\"The Rukmini Devi Temple is a temple in Dwarka, 2 kilometres away from Dwarka, India. It is dedicated to Rukmini, Krishna&acirc;&euro;&trade;s chief queen. The temple is said to be 2,500 years old but in its present form it is inferred to belong to the 12th century.\",\"CurrencyType\":0,\"CityId\":34523,\"CityName\":\"Dwarka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34523\\/sightseeing\\/36_1530783414.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":3884,\"Title\":\"Dwarkadhish Temple\",\"Description\":\"Dwarkadhish Temple is the main temple at Dwarka, situated on Gomti creek, is known as jagat mandir or trilok sundar. This Hindu shrine is dedicated to Krishna and it consists of a large, 5-storey building supported by over 70 pillars. It is over 2,000 years old, enlarged in the 16th century, erected by the god&amp;#039;s grandson Vajranabha. Its exquisitely carved shikhar, reaching 43 m high and the huge flag made from 52 yards of cloth, can be seen from as far away as 10 km. The temple is built of soft limestone and consists of a rectangular hall with porches on three sides. There are 2 gateways: swarga dwar for entry and moksha dwar for exit purpose. The interior of the temple shows simplicity, with the elaborate ornamentation around the shrine to the idol of Dwarkadhish.\",\"CurrencyType\":0,\"CityId\":13022,\"CityName\":\"Jamnagar\",\"Lat\":22.4580284,\"Long\":70.0708088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13022\\/sightseeing\\/Dwarkadhish_Temple,_Kishan_Par_13022_1519384895.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2428,\"Title\":\"Somnath Temple, Prabhas Patan, Gujarat, India\",\"Description\":\"Somnath Temple is a significant temple, comprising one of the 12 Jyotirlingas of Lord Shiva. Located in Prabhas Kshetra near Veraval, Somnath Mandir is a symbol of rich cultural heritage of India. This temple is believed to have been built in gold by the moon god Soma, in silver by the sun god Ravi, in wood by Krishna and in stone by the Solanki Rajputs in the 11th century. The present temple, built in 1951, is the 7th reconstruction on the original site. Temple was invaded several times by muslim rulers, but restored to its original glory. Constructed in the Chalukyan style with a shikhara nearly 50 m tall, temple&amp;#039;s architecture includes intricate carvings, silver doors, an impressive Nandi idol and the central shivalinga.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":20.4057537,\"Long\":72.877313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Somnath_Temple_34517_1519390575.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":2430,\"Title\":\"Devaliya Safari Park (Gir Interpretation Zone)\",\"Description\":\"Devalia Safari Park also known as &amp;ldquo;Gir Interpretation Zone&amp;rdquo;, is the establishment of particular eco-tourism zone to minimize overload of tourists from Gir Forest Visit and to offer whole wildlife of Gir at single place in safe habitats. This Zone comprises of 412 Ha Chain linked fences area which is regarded as &amp;lsquo;Gir in a nutshell&amp;rsquo; covering all habitat types and wildlife of Gir. The basic motive of creating this facility is to provide an opportunity of viewing lions and other animals in their natural habitat within a short period of time at cheaper rates. There are animals like Asiatic lions, Leopards, Blue Bull, Sambhar, Chital, Black buck, Wild Boar etc. The presence of Savana habitat and rare birds is also another attraction of the area.\",\"CurrencyType\":0,\"CityId\":34517,\"CityName\":\"Somnath\",\"Lat\":21.1693505,\"Long\":70.5032763,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34517\\/sightseeing\\/Devaliya_Safari_Park_(Gir_Inte_34517_1519388353.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":441,\"Title\":\"Diu Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3523\\/thumb\\/Diu Fort_63.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":442,\"Title\":\"Diu Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7144094,\"Long\":70.9873719,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3483\\/thumb\\/Diu Museum_595.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22623,\"Title\":\"Gangeshwar Mahadev\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7053606,\"Long\":70.9566825,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1178,\"Title\":\"Nagoa Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.7137159,\"Long\":70.9232102,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3524\\/thumb\\/he Nagoa Beach_751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":1678,\"Title\":\"St.Paul Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7951,\"CityName\":\"Diu\",\"Lat\":20.428283,\"Long\":72.8397317,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3482\\/thumb\\/St.Paul Church_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22624,\"Title\":\"barton museum bhavnagar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":22625,\"Title\":\"Gandhi smriti\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3133,\"CityName\":\"Bhavnagar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null},{\"RefSSId\":10009,\"Title\":\"Statue of Unity\",\"Description\":\"The Statue of Unity is a colossal statue of Indian politician and independence activist Sardar Vallabhbhai Patel, who was the first Deputy Prime Minister and Home minister of independent India and the chief adherent of Mahatma Gandhi during the non-violent Indian Independence movement.\",\"CurrencyType\":0,\"CityId\":296,\"CityName\":\"Ahmedabad\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/296\\/sightseeing\\/15714_statue_of_unity_sardar_patel-U205730969126CB--621x414@LiveMint.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":7785,\"SupplierName\":\"Gujarat Tour & Travels Organizer\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"219877\",\"Title\":\"Ahmedabad\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Morning Arrival At Ahmedabad Airport \\/ Railway Station, Meets, Greet And Transfer To Hotel, Later City Tour Visits Of Gandhi Ashram, Hathee Singh Jain Temple, Adalej Step Well, Akshardham Temple. O\\/N STAY AT AHMEDABAD&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":296,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21843,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491653,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3802,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":693,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1503,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219879\",\"Title\":\"Ahmedabad &acirc;&euro;&ldquo; Jamnagar (320 Kms \\/ 7 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":296,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219881\",\"Title\":\"Ahmedabad &acirc;&euro;&ldquo; Jamnagar (320 Kms \\/ 7 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Visit Famous Baal Hanuman Temple &amp;amp; Lakhota Lake. O\\/N Stay At Jamnagar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491667,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491667,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":113,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22612,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219883\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219885\",\"Title\":\"Jamnagar - Dwarka (150 Kms \\/ 3 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Dwarka Local Sightseeing. Visit Dwarkadhish Temple, Nageshwra Jyotirling, Gopi Talav, Rukmani Temple &amp;amp; Bet Dwarka. O\\/N Stay At Dwarka.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34523,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491671,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491673,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6562,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8641,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6555,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6556,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3884,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219887\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34523,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219889\",\"Title\":\"Dwarka &acirc;&euro;&ldquo; Porbandar &acirc;&euro;&ldquo; Somnath (250km\\/5hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Dwarka To Somnath. En Route Visits Of Porbanadr ( Visit Kirti Temple, Sudama Temple, Shri Hari Temple ) &amp;amp; Then Drives To Somnath. Evening Check In To The Hotel &amp;amp; Then Visit Somnath Temple &amp;amp; Light And Sound Show. O\\/N Stay At Somnath.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491677,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2428,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219891\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219893\",\"Title\":\"Somnath - Gir (250km\\/5hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Visit Devaliya Safari Park [Wednesday Close ], Gir National Park &amp;amp; Gir Jungle Safari. O\\/N Stay At Gir.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10450,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491734,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491735,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2430,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219895\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10450,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219897\",\"Title\":\"Sasan Gir - Diu (100km\\/2hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Visit Diu Fort, Jallandhar Shrine, Nagoa Beach, Diu Museum, Gangeshwar Temple &amp;amp; St. Paul&amp;rsquo;s Church. O\\/N Stay At Diu.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7951,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491679,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491680,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":441,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":442,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22623,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1178,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1678,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219899\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7951,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219901\",\"Title\":\"Diu - Bhvanagar (260 Kms\\/2hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;VISIT BARTON MUSEUM &amp;amp; GANDHI SMRITI. O\\/N STAY AT BHAVNAGAR.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3133,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":418172,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22625,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219903\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3133,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219905\",\"Title\":\"Bhavnagar &acirc;&euro;&ldquo;Vadodara (390 Kms \\/ 8 Hrs) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Visit Statue Of Unity Sightseeing. O\\/N Stay At Vadodara.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28303,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491738,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491740,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10009,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219907\",\"Title\":\"Vadodara &acirc;&euro;&ldquo; Ahmedabad\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Today After Breakfast Proceed To The Airport For Your Flight To Your Hometown. Holiday Concludes! Let&amp;rsquo;s Stay In Touch On Facebook\\/Email And Meet Again On Another Memorable Holiday. See You Soon&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28303,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30924\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30925\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205},{\"From\":\"2023-08-11\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31368,\"priceDoubleOcc\":\"32450.00\",\"priceSingleOcc\":97350,\"priceExtraBed\":\"24337.50\",\"priceWithoutBed\":\"16225.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16225,\"CEB\":24337.5,\"COSTDO\":32450,\"COSTSO\":97350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":29205,\"COSTTO\":29205}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Safari Cost Is Not Include In The Package Cost&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation For 08 Nights &amp;amp; 09 Days On Twin Sharing Basis In The Listed Hotels Or Similar&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers &amp;amp; Sightseeing As Per Itinerary By Private A\\/C Vehicle On Disposal From &amp;ldquo;Ahmedabad To Ahmedabad&amp;rdquo;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Buffet Meals (Veg Only) As Per The Meal Plan.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toll Tax, Parking, Driver Allowance, Night Charges, Permits Etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Govt. Taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation By Air-Conditioned Indigo \\/ D&amp;rsquo;zire \\/ Etios (02 Pax) Innova (04 Pax) (6 Pax) For Sightseeing And Tour, Excursions As Per Our Itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"219877\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[219877],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219879\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219879],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219881\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219881],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219883\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219883],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219885\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219885],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219887\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[219887],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219889\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[219889],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219891\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219893\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219893],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219895\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[219895],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219897\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[219897],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219899\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[219899],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219901\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[219901],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219903\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[219903],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219905\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[219905],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"219907\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[219907],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Ahmedabad,Jamnagar,Dwarka,Somnath,Gir National Park,Diu,Bhavnagar,Vadodara','Ahmedabad,Gujarat,Indian Subcontinent,West India,India,Jamnagar,Dwarka,Somnath,Gir National Park,Diu,Daman and Diu,Bhavnagar,Vadodara,Sasangir',NULL,'296,13022,34523,34517,10450,7951,3133,28303',28050,32450,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:19:08','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'royal-gujarat-tour',NULL,NULL,NULL,0),(388,29127,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":29127,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/day_special_istanbul_city_tour_package_1634117200.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;A spellbinding city where cultures collide&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Over the centuries, many cultures have added their mark to Istanbul. Today, you can experience those influences firsthand by exploring its mahalles (neighborhoods). From the holy sites of Sultanahmet and the 19th-century European elegance of Beyo?lu to the high fashion of Ni?anta??, the vibrant cafe society of Kad?k&amp;ouml;y and the football-loving streets of Be?ikta?, it&amp;rsquo;s easy to see why travelers say that Istanbul isn&amp;rsquo;t just one city, but multiple cities within one.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"EXPLORE ISTANBUL \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7234\",\"SupplierName\":\"TravelShop Turkey\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Cab,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":403717,\"Name\":\"KLAS\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Harikzedeler Sok No 48, Laleli, Istanbul, 34127, Istanbul, Turkey, \"},\"Images\":[],\"CityId\":12905,\"Brief\":\"This 4 star hotel is located in the city centre of Istanbul and was established in 1986. It is close to the Grand Bazaar and the nearest station is Laleli. The Hotel has a restaurant, a bar and an outdoor swimming pool.\",\"MainImg\":\"https:\\/\\/www.miki.co.uk\\/live\\/hotel\\/mikiNet\\/image\\/v1.0\\/TR\\/22019\\/467\\/lr\\/externalview2.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"207646\",\"Title\":\"Istanbul - Arrival Day\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Turkey Istanbul Airport. Meet with TravelShop Turkey staff and transfer to your hotel, Transfer from airport &amp;amp; check in to your hotel. Dinner and overnight in Istanbul.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403717,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207647\",\"Title\":\"Istanbul City Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;We depart at 08:30 for the Istanbul city tour. First, TOPKAPI PALACE; The great palace of the Ottoman sultans from the 15th to the 19th centuries housing an exquisite collection of crystal, silver, and Chinese porcelain, robes worn by the sultans and their families, the famous jewels of the Imperial Treasury, miniatures, the Holy Mantle; enshrining relics of the Prophet Mohammed. SULTANAHMET IMPERIAL MOSQUE Across from St. Sophia built in the 16th century by the architect Mehmet, is known as the BLUE MOSQUE because of its magnificent interior decoration of blue Iznik tiles. HIPPODROME Ancient Hippodrome, the scene of chariot races, with the three monuments; the Obelisk of Theodosius, the bronze Serpentine Column and the Column of Constantine. Lunch break and then we head to Grand Spice Bazaar which is a unique atmosphere with reasonable prices for your shopping on many Exotic Spices and Herbs, Turkish Baklava, Turkish Delights, Turkish Coffee, nuts and fruits, small souvenirs such as Ceramic Handicrafts, Evil Eyes totems, all natural olive oil, soaps and many other goods in Souvenir Shops and stores. The rest of the evening is yours to enjoy&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Istanbul. Dinner and overnight in Istanbul&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403717,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207648\",\"Title\":\"Istanbul Bosphorus Cruise and Shopping Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Pick up at 08:30 from the hotel and depart for the Istanbul Bosphorus Cruise and Shopping Tour. BOSPHORUS BY BOAT a traditional excursion by boat along the waterway separating Europe and Asia. The shore is lined with old wooden villas, palaces of marble, fortresses, and small fishing villages. During the excursion you will see the magnificent sights of the following attractions from your boat. See Dolmabahce Palace, and further along, the parks and imperial pavilions of Yildiz Palace. On the coastal edge of this park, is Ciragan Palace, 300 meters of its marble facade faces the shore. At Ortakoy a great variety of artists gather every Sunday to display their work along the street. Ortakoy is a symbol of tolerance with a church, a mosque and a synagogue existing side by side for centuries. RUMELI FORTRESS Built by Mehmet the Conqueror in 1452 prior to the conquest of Istanbul was completed in only four months to control and protect the infamous Bosphorus passage. It is one of the most beautiful works of military architecture anywhere in the world. BEYLERBEYI PALAS (PALACE) The summer residence of Ottoman sultans exists in its original renovated glory featuring original antique furniture and magnificent gardens with the Harem on the Asian side of Istanbul.&lt;br \\/&gt;\\r\\nBOSPHORUS BRIDGE enjoy a unique chance to step from one continent (Asia) to another (Europe) CAMLICA HILL the highest point in Istanbul. At the top of it you can rest and admire the magnificent panorama of Istanbul and the Bosphorus from the beautiful gardens, landscaped in traditional Turkish Ottoman style. SHOPPING TOUR (after thecruise) Experience the traditional silk weaving skills of Turkish women at the carpet weaving courses provided by The Ministry of National Education. You will get the opportunity to see jewelry, handcrafts center and a modern leatherwear show. Enjoy the experience of shopping whilst gaining the knowledge of the ancient craftsmen, with Murti&amp;#39;s Tour&amp;#39;s local escort full of knowledge about how to haggle the streets of Istanbul. The rest of the evening is yours to explore Istanbul. Dinner and overnight in Istanbul.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":403717,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207649\",\"Title\":\"Istanbul - End of Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel. We hope your tour was a memorable one and we look forward to seeing you in the future on another TravelShop Turkey Tour. Have a safe trip back home and thanks for choosing TravelShop Turkey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29127\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27390.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":26477,\"priceDoubleOcc\":\"27390.00\",\"priceSingleOcc\":76692,\"priceExtraBed\":\"20542.50\",\"priceWithoutBed\":\"13695.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13695,\"CEB\":20542.5,\"COSTDO\":27390,\"COSTSO\":76692,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":24651,\"COSTTO\":24651}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrival airport transfer from Istanbul Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 nights&amp;rsquo;&amp;nbsp;hotel accommodation in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 open buffet very rich continental breakfasts&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Indian lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Indian dinners&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul City Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul Bosphorus Cruise and Shopping Tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation in a fully air-conditioned, non-smoking coach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Professional English speaking tour guides&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return transfer to Istanbul Airport&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"207646\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[207646],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207647\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[207647],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207648\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[207648],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207649\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[207649],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul','Istanbul,Central Asia,Turkey,Eurasia',NULL,'12905',27390,27390,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-09-07 12:22:32','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'explore-istanbul',NULL,NULL,NULL,0),(389,29122,1,5293,0,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":29122,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/5_day_indian_dream_of_turkey_tour_1634108766.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The beauty of Turkey is lined up with warm colours, sun-kissed beaches, pine-covered forests, and historic Roman wonders. These exquisite exceptions played a big role in bagging the country 16 UNESCO World Heritage sites. From the largest remnants of the Roman Empire to exotic hot air balloons&amp;nbsp;of Cappadocia, Turkey has it all.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The eclectic city of Istanbul, the fantastical rock forms of Cappadocia, the ancient ruins of Ephesus, and the glimmering Mediterranean and Aegean coastlines are&amp;nbsp;Turkey&amp;rsquo;s biggest draws, but each region of the country has something distinct to offer.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The diversity of landscapes, heritage and culinary culture will surprise those who have never ventured beyond holiday resorts and the beach.&amp;nbsp;Even though it&amp;rsquo;s easy to get around Turkey, the country has too much to see and do to tackle it all on one trip. Because most domestic flights route through Istanbul, spend at least a few days in this dynamic global metropolis before heading out to one of our other top places to visit in&amp;nbsp;Turkey.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"ENCHANTING TURKEY TOUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7234\",\"SupplierName\":\"TravelShop Turkey\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"All Meals,Welcome Drink,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":487062,\"Name\":\"Hoca Pa\\u00c5\\u0178a\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.01282439999999\",\"Long\":\"28.9767154\",\"Address\":\"Hoca Pa&Aring;&Yuml;a, Ebussuud Cd. No:44, 34110 Fatih\\/&Auml;&deg;stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Silver Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":487063,\"Name\":\"Hoca Pa\\u00c5\\u0178a\",\"Star\":\".00\",\"Rating\":\"3.80\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"41.01282439999999\",\"Long\":\"28.9767154\",\"Address\":\"Hoca Pa&Aring;&Yuml;a, Ebussuud Cd. No:44, 34110 Fatih\\/&Auml;&deg;stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Silver Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":487064,\"Name\":\"Ye\\u00c5\\u0178ilyurt\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"40.9598727\",\"Long\":\"28.83871\",\"Address\":\"Ye&Aring;&Yuml;ilyurt, Sahil Yolu Cd. No:2, 34149 Bak&Auml;&plusmn;rk&Atilde;&para;y\\/&Auml;&deg;stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Gold room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":487067,\"Name\":\"Esbelli\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"38.636219\",\"Long\":\"34.901681\",\"Address\":\"Esbelli, Dolay-2 Sk. No:14, 50400 &Atilde;&oelig;rg&Atilde;&frac14;p\\/Nev&Aring;&Yuml;ehir, Turkey\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Silver Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":487068,\"Name\":\"Tekelli\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"38.6324119\",\"Long\":\"34.8070411\",\"Address\":\"tekelli mah. g&Atilde;&para;reme cad. divanl&Auml;&plusmn; sok, Tekelli, D:no:83, 50240 U&Atilde;&sect;hisar\\/Nev&Aring;&Yuml;ehir Merkez\\/Nev&Aring;&Yuml;ehir, Turkey\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7234,\"SupplierName\":\"TravelShop Turkey\",\"priceaditionals\":null,\"RoomTypeName\":\"Gold room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"207613\",\"Title\":\"Istanbul - Arrival Day\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Meet at the airport Transfer to your hotel. You will be given your room key and the rest of the day is yours to explore Istanbul. Evening we have Indian Dinner. Overnight in Istanbul.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"},{\"IsIncluded\":false,\"Id\":487063,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":487064,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Gold room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207615\",\"Title\":\"Istanbul City Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;We depart at 08:30 for the Istanbul city tour. First, TOPKAPI PALACE; The great palace of the Ottoman sultans from the 15th to the 19th centuries housing an exquisite collection of crystal, silver, and Chinese porcelain, robes worn by the sultans and their families, the famous jewels of the Imperial Treasury, miniatures, the Holy Mantle; enshrining relics of the Prophet Mohammed. SULTANAHMET IMPERIAL MOSQUE Across from St. Sophia built in the 16th century by the architect Mehmet, is known as the BLUE MOSQUE because of its magnificent interior decoration of blue Iznik tiles. HIPPODROME Ancient Hippodrome, the scene of chariot races, with the three monuments; the Obelisk of Theodosius, the bronze Serpentine Column and the Column of Constantine. Lunch break and then we head to Grand Spice Bazaar which is a unique atmosphere with reasonable prices for your shopping on many Exotic Spices and Herbs, Turkish Baklava, Turkish Delights, Turkish Coffee,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;nuts and fruits, small souvenirs such as Ceramic Handicrafts, Evil Eyes totems, all natural olive oil, soaps and many other goods in Souvenir Shops and stores. The rest of the evening is yours to enjoy Istanbul. Dinner and overnight in Istanbul.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"},{\"IsIncluded\":false,\"Id\":487063,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":487064,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Gold room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207617\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207619\",\"Title\":\"Istanbul Bosphorus Cruise and Shopping Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Pick up at 08:30 from the hotel and depart for the Istanbul Bosphorus Cruise and Shopping Tour. BOSPHORUS BY BOAT a traditional excursion by boat along the waterway separating Europe and Asia. The shore is lined with old wooden villas, palaces of marble, fortresses, and small fishing villages. During the excursion you will see the magnificent sights of the following attractions from your boat. See Dolmabahce Palace, and further along, the parks and imperial pavilions of Yildiz Palace. On the coastal edge of this park, is Ciragan Palace, 300 meters of its marble facade faces the shore. At Ortakoy a great variety of artists gather every Sunday to display their work along the street. Ortakoy is a symbol of tolerance with a church, a mosque and a synagogue existing side by side for centuries. RUMELI FORTRESS Built by Mehmet the Conqueror in 1452 prior to the conquest of Istanbul was completed in only four months to control and protect the infamous Bosphorus passage. It is one of the most beautiful works of military architecture anywhere in the world. BEYLERBEYI PALAS (PALACE) The summer residence of Ottoman sultans exists in its original renovated glory featuring original antique furniture and magnificent gardens with the Harem on the Asian side of Istanbul.&lt;br \\/&gt;\\r\\nBOSPHORUS BRIDGE enjoy a unique chance to step from one continent (Asia) to another (Europe) CAMLICA HILL the highest point in Istanbul. At the top of it you can rest and admire the magnificent panorama of Istanbul and the Bosphorus from the beautiful gardens, landscaped in traditional Turkish Ottoman style. SHOPPING TOUR (after cruise) Experience the traditional silk weaving skills of Turkish women at the carpet weaving courses provided by The Ministry of National Education. You will get the opportunity to see jewelry, handcrafts center and a modern leatherwear show. Enjoy the experience of shopping whilst gaining the knowledge of the ancient craftsmen, with Murti&amp;#39;s Tour&amp;#39;s local escort full of knowledge about how to haggle the streets of Istanbul. The rest of the evening is yours to explore Istanbul. Dinner and overnight in Istanbul.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":487068,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Gold room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207621\",\"Title\":\"Cappadocia Underground City &amp; Goreme Open Air Museum\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;You will be picked up approximately 09:30 We will drive you to Ozkonak Underground City, one of the best preserved Underground cities in Cappadocia. Than visit to Uchisar Castle, the highest point of Cappadocia. After Uchisar, you visit Goreme Open Air Museum, the Heart of Cappadocia. Goreme Open Air Museum is famous for frescoes dating to 10th century describing the life of Jesus Christ and monks. Next stop is Cavusin, which is an abandoned village with old cave Greek houses. After Cavusin you go to the restaurant in Avanos to have lunch. After lunch, you visit a pottery work shop, to see how to make potteries. Then you go Lovevalley where you can see three - headed fairy chimneys.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After Lovevalley you visit another workshop to see Cappadocian handwoven carpets and kilims. Next stop is Devrent Valley, which is also called Imagination Valley, where you can see natural rock formations looking like animals. Then you head to a wine shop in Urgup for wine tasting. Last stop is Three Beauties, three beautiful fairy chimneys with their hats, which is the symbol of Cappadocia. This tour will end approximately at 18.00 and you will be returned back to your hotel. Overnight in Cappadocia.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":487067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Silver Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":487068,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Gold room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"207623\",\"Title\":\"Cappadocia to Istanbul - End of Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast you will have free time in Cappadocia. Today we depart for Kayseri Airport for our domestic flight to Istanbul and then back to home. We hope your tour was a memorable one and we would like to see you in the future in one of our tours again. Have a nice trip back home and thanks for choosing TravelShop Turkey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29122\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38812,\"priceDoubleOcc\":\"40150.00\",\"priceSingleOcc\":112420,\"priceExtraBed\":\"30112.50\",\"priceWithoutBed\":\"20075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20075,\"CEB\":30112.5,\"COSTDO\":40150,\"COSTSO\":112420,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36135,\"COSTTO\":36135}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"29123\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"51150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":49445,\"priceDoubleOcc\":\"51150.00\",\"priceSingleOcc\":143220,\"priceExtraBed\":\"38362.50\",\"priceWithoutBed\":\"25575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":51150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":25575,\"CEB\":38362.5,\"COSTDO\":51150,\"COSTSO\":143220,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":46035,\"COSTTO\":46035}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;VISA&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All airport transfer services mentioned inside the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Arrival airport transfer to Kayseri \\/ Nevsehir airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights hotel in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights hotel in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 open buffet very rich continental breakfasts&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Indian lunches&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Indian style Turkish lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 Indian dinners&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul city tour&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Istanbul Bosphorus Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided Cappadocia Tour with Underground City and Goreme Open Air Museum&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation in a fully air - conditioned, non - smoking coach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Professional English - speaking tour guides&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport transfer&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"207613\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[207613],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207615\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[207615],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207617\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[207617],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"207619\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[207619],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207621\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[207621],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"207623\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[207623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Cappadocia',NULL,'12905,5094',40150,51150,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-09-07 12:26:10','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'enchanting-turkey-tour',NULL,NULL,NULL,0),(390,28399,1,5293,0,0,0,'Honeymoon,Beach,Family,Cruise,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28399,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/shore--the-city--port-blair_1691394413\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Floating 780 miles across the Bay of Bengal from Kolkata, this port city in the Andaman archipelago is the splash-down point for the Mahatma Gandhi National Marine Park. Diving, snorkeling and glass-bottom boat trips provide views of rare corals and marine life. On shore, family-friendly Gandhi Park offers amusement rides and a nature trail. Nearby Viper and Ross islands contain historical remnants of British rule, while Corbyn&amp;#39;s Cove has remains of Japanese bunkers at its palm-lined beach.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Andaman Island\",\"DestinationPlacesSysId\":37030,\"SourcePlaces\":\"Andaman Island\",\"SourcePlaceSysId\":37030,\"AgencyName\":\"I Need Trip\",\"Name\":\"SHORE & THE CITY- PORT BLAIR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Cab,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Cruise,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485836,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6347398\",\"Long\":\"92.7170907\",\"Address\":\"Dollygunj, beside SBI, Andaman Nirman, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":485837,\"Name\":\"Keys Select Hotel Aqua Green\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6500754\",\"Long\":\"92.7312312\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":485838,\"Name\":\"Sinclairs Bayview Port Blair\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6638864\",\"Long\":\"92.75567649999999\",\"Address\":\"Corbyns Cove Rd, South Point, Shadipur, Port Blair, Andaman and Nicobar Islands 744106, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":20812,\"Title\":\"Radha Nagar Beach Havelock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202361\",\"Title\":\"Arrival at Port Blair\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. First half of the day is at leisure. Later in the afternoon visit Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India&amp;rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485838,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202364\",\"Title\":\"Havelock Island Visit Radha Nagar Beach &amp; Back\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Early in the morning proceed to Harbor for onward journey to HAVELOCK the beautiful and world- famous Island. In Havelock guest can see and enjoy Asia 7th longest &amp;amp; beautiful beach i.e. RADHA NAGAR BEACH. In the evening, the guest will start return journey for Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485838,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20812,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202367\",\"Title\":\"North bay (Coral Island) &acirc;&euro;&ldquo; Ross island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast embark on a day long three islands cruise. One of the most sought-after activities. It covers a panorama of seven harbor that include the North Bay and Ross island. It leaves a lasting impression. Visit Ross Island. Once the administrative headquarters of the British and capital of these Islands, the island is now under the Indian Navy. It stands now as a ruin of the bygone days with the old structures almost in debris. There is a small museum named Smritika, it holds photographs and the other antiques of the Britishers relevant to these islands. The island is famous for friendly flocks of Deer and lush green walking trails. North Bay, the water lovers may enjoy snorkeling or take a Glass Bottom boat ride (Optional on direct payment) in its shallow waters with a chance to see corals up close. Return to the hotel. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Did you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&amp;rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&amp;rsquo;s far from reality. Though we recommend you book your Scuba in advance, Its safe and reliable.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485838,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202370\",\"Title\":\"Depart from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Depart from Port Blair&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28399\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18608,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":57750,\"priceExtraBed\":\"14437.50\",\"priceWithoutBed\":\"9625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9625,\"CEB\":14437.5,\"COSTDO\":19250,\"COSTSO\":57750,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":17325,\"COSTTO\":17325}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"28400\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"28401\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":27115,\"priceDoubleOcc\":\"28050.00\",\"priceSingleOcc\":84150,\"priceExtraBed\":\"21037.50\",\"priceWithoutBed\":\"14025.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14025,\"CEB\":21037.5,\"COSTDO\":28050,\"COSTSO\":84150,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25245,\"COSTTO\":25245}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Above Rates are not valid on long weekend holidays &amp;amp; Festivals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast) Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary Return airport\\/ jetty Transfers in AC vehicle as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202361\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[202361],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202364\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[202364],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202367\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[202367],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202370\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202370],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Andaman Island',NULL,'32511',19250,28050,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:28:20','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'shore-the-city-port-blair',NULL,NULL,NULL,0),(391,28392,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28392,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/adamanas_-_iconic_nature_1631086845.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Andaman Island\",\"DestinationPlacesSysId\":37030,\"SourcePlaces\":\"Andaman Island\",\"SourcePlaceSysId\":37030,\"AgencyName\":\"I Need Trip\",\"Name\":\"ANDAMANS - ICONIC NATURE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Welcome Drink,Cab,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485820,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6347398\",\"Long\":\"92.7170907\",\"Address\":\"Dollygunj, beside SBI, Andaman Nirman, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485821,\"Name\":\"Keys Select Hotel Aqua Green\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6500754\",\"Long\":\"92.7312312\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485822,\"Name\":\"Sinclairs Bayview Port Blair\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6638864\",\"Long\":\"92.75567649999999\",\"Address\":\"Corbyns Cove Rd, South Point, Shadipur, Port Blair, Andaman and Nicobar Islands 744106, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485829,\"Name\":\"Hotel SR Castle\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6347398\",\"Long\":\"92.7170907\",\"Address\":\"Dollygunj, beside SBI, Andaman Nirman, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485830,\"Name\":\"Keys Select Hotel Aqua Green\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6500754\",\"Long\":\"92.7312312\",\"Address\":\"Opp. to Airport Gate, Lamba Line, Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485831,\"Name\":\"Sinclairs Bayview Port Blair\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6638864\",\"Long\":\"92.75567649999999\",\"Address\":\"Corbyns Cove Rd, South Point, Shadipur, Port Blair, Andaman and Nicobar Islands 744106, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2998,\"Title\":\"Limestone Caves\",\"Description\":\"Limestone cave is a cave with interesting limestone structures and stalactite and stalagmites. The journey on to these cave is equaly mesmerising which covers all the way through Tribal reserves. The boat ride through the heart of dense mangrove forest to reach here is a lifetime experience for some. Visitors may also catch as a glimpse of a sun-bathing crocodile with its jaws wide open and a stone like still that camouflaged in the mangroves. These natural caves are a splendid sight, remain one of the favourite tourist destinations.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.673825,\"Long\":92.747977,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Limestone_Caves__32511_1520497877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485823,\"Name\":\"APARUPA SANDS MARINA\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0343958\",\"Long\":\"92.9917804\",\"Address\":\"GOVIND NAGAR 2 HAVELOCK, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485824,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0277542\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485825,\"Name\":\"Munjoh Ocean Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0135367\",\"Long\":\"93.0072551\",\"Address\":\"Beach 5 Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2998,\"Title\":\"Limestone Caves\",\"Description\":\"Limestone cave is a cave with interesting limestone structures and stalactite and stalagmites. The journey on to these cave is equaly mesmerising which covers all the way through Tribal reserves. The boat ride through the heart of dense mangrove forest to reach here is a lifetime experience for some. Visitors may also catch as a glimpse of a sun-bathing crocodile with its jaws wide open and a stone like still that camouflaged in the mangroves. These natural caves are a splendid sight, remain one of the favourite tourist destinations.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.673825,\"Long\":92.747977,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Limestone_Caves__32511_1520497877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485826,\"Name\":\"Aquays Hotels and Resorts\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485827,\"Name\":\"Symphony Summer Sands\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":485828,\"Name\":\"SeaShell\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8405696\",\"Long\":\"93.02449759999999\",\"Address\":\"Neil Kendra Neil Island (Shaheed Dweep, Lakshmanpur, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"AC Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":18885,\"Title\":\"SITAPUR BEACH\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2998,\"Title\":\"Limestone Caves\",\"Description\":\"Limestone cave is a cave with interesting limestone structures and stalactite and stalagmites. The journey on to these cave is equaly mesmerising which covers all the way through Tribal reserves. The boat ride through the heart of dense mangrove forest to reach here is a lifetime experience for some. Visitors may also catch as a glimpse of a sun-bathing crocodile with its jaws wide open and a stone like still that camouflaged in the mangroves. These natural caves are a splendid sight, remain one of the favourite tourist destinations.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.673825,\"Long\":92.747977,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Limestone_Caves__32511_1520497877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202301\",\"Title\":\"Arrival &acirc;&euro;&ldquo;Chidiya Tapu - Cellular Jail Light &amp; Sound Show\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning and transfer to respective Hotel. After check-in proceed for Chidiya Tapu- The Southernmost tip of South Andaman bout 31 kms from Port Blair- generally known as the Bird Island covered with lush green mangroves and beautiful beach with breath taking sunset - all of which creates a mesmerizing environment. Optional activities - Swimming, Trekking &amp;amp; Picnic.&lt;br \\/&gt;\\r\\nLater proceed to the National Monument the Cellular Jail and witness the saga of the Indian Freedom struggle through the Light and Sound Show, held within the same complex. Return to Hotel. Stay Overnight in Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485820,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485821,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485822,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2300,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202304\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202307\",\"Title\":\"Port Blair- Ferry to Havelock Island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast and as per ferry timing transfer to Jetty to take the onward ferry to Havelock Island. On arrival at Havelock Island, our representative will receive and escort you to check-in to the respective hotel \\/ resort. After check-in, proceed to the Radhanagar Beach, one of the most picturesque beach on the Islands. The beach has also been ranked 07th among the beaches of Asia by the TIME magazine.&lt;br \\/&gt;\\r\\nReturn to hotel \\/ resort. Stay Overnight in Havelock Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485823,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485824,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485825,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202310\",\"Title\":\"Havelock Island- Visit to Elephant beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast proceed to Elephant beach (Optional Snorkeling at Elephant Beach at a supplement Cost) in a sharing fiber speed boat, this beach offers snorkelers calm blue shallow waters and is the perfect spot for beginner snorkelers. It&amp;rsquo;s also a great place to just spend time lazing on the beach. The beach is very scenic with fallen trees and white sand giving the photographer some beautiful pictures to take back home. Stay Overnight in Havelock Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485823,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485824,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485825,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202313\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202316\",\"Title\":\"Havelock Island - Neil Island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After an early breakfast and as per ferry timing proceed to the Jetty to take the Ferry to Neil Island. After check-in at hotel, proceed for sightseeing of this lush green Island is known for its plantations and tropical forests. The pristine white sandy beaches at Sitapur, Bharatpur and Laxmanpur are worth a visit. The breath-taking view of sea and the lush green forests on the island rejuvenate the senses. Return to hotel. Stay Overnight in Neil Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485826,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485827,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485828,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"AC Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18885,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202319\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202322\",\"Title\":\"Neil Island- ferry to Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning at leisure. Later in the afternoon transfer to Neil Island Jetty to take the return ferry to Port Blair as per ferry timing. Upon return from Havelock Island, transfer to Hotel. Overnight stay at respective Hotel \\/ Resort at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485830,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485831,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202325\",\"Title\":\"Port Blair- Barathang Island day trip\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Early morning departure to Baratang Island by road (110Kms) which holds the nature&amp;rsquo;s best treasures gifted to the Islands. Limestone caves a must-see point for nature lovers &amp;amp; leisure travelers alike. The Road journey from Port Blair to Baratang involves crossing through creeks and dense equatorial forest. This involves a creek journey in small boats. After getting down from the boat, trek through a small village to reach the caves. Return to Port Blair. Stay Overnight in Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485829,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":485830,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":485831,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2998,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202328\",\"Title\":\"Port Blair- drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Drop at Airport. Return home with memories of a iconic holiday.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28392\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34320.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":33176,\"priceDoubleOcc\":\"34320.00\",\"priceSingleOcc\":102960,\"priceExtraBed\":\"25740.00\",\"priceWithoutBed\":\"17160.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34320,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17160,\"CEB\":25740,\"COSTDO\":34320,\"COSTSO\":102960,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30888,\"COSTTO\":30888}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"28393\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41030.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":39662,\"priceDoubleOcc\":\"41030.00\",\"priceSingleOcc\":123090,\"priceExtraBed\":\"30772.50\",\"priceWithoutBed\":\"20515.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20515,\"CEB\":30772.5,\"COSTDO\":41030,\"COSTSO\":123090,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":36927,\"COSTTO\":36927}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"28394\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"52470.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":50721,\"priceDoubleOcc\":\"52470.00\",\"priceSingleOcc\":157410,\"priceExtraBed\":\"39352.50\",\"priceWithoutBed\":\"26235.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":52470,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26235,\"CEB\":39352.5,\"COSTDO\":52470,\"COSTSO\":157410,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":47223,\"COSTTO\":47223}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;We are Covid Safe Tour Operator and maintain all hygiene &amp;amp; safety guidelines&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Well-appointed accommodation Meal Plan &amp;ndash; CP (Bed &amp;amp; Breakfast) Sightseeing as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events, and activities fees as per itinerary Return airport\\/ jetty Transfers in AC vehicle as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash;Neil Island - Havelock &amp;ndash; Port Blair by private ferry Subject to availability (base category)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"8321\",\"Value\":\"50\"}],\"BuspickupLocation\":[],\"TransferData\":{\"202301\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[202301],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202304\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[202304],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202307\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[202307],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202310\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[202310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202313\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202313],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202316\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202319\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[202319],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202322\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[202322],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202325\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[202325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"202328\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[202328],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island,Andaman Island',NULL,'32511,11658,34567',34320,52470,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:27:27','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'andamans-iconic-nature',NULL,NULL,NULL,0),(392,28368,1,5293,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":28368,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/siyam_world_-_single_stay_1631181114.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 03&amp;nbsp;Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( All Inclusive&amp;nbsp;Meal Plan - Breakfast&amp;nbsp;\\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks Unlimited )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers&amp;nbsp;as per the itinerary in an Domestic Flight + Speed Boat&amp;nbsp;on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon Freebies :- 01 bottle of sparkling wine and a fruit platter on arrival day , complimentary in suite Breakfast for the couple once during stay, special evening turn down service with bed decoration on arrival night, 01 celebratory honeymoon cake.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"SIYAM WORLD - SINGLE STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485537,\"Name\":\"Siyam World Maldives\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"5.731071099999999\",\"Long\":\"73.359327\",\"Address\":\"Medhudheli, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Water Villa With Pool\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202151\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 - WATER VILLA WITH POOL&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In need of a little sea-laxation? Situated overwater, with direct access to the turquoise lagoon, Water Villas are perfect for those seeking the ultimate overwater retreat. Featuring a private sundeck with sun loungers and a fresh water pool to cool off in, a bathroom with indoor showers, mini bar, Wi-Fi and views that are out of this world. We think it can&amp;#39;t get any more perfect !&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202152\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202153\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202154\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485537,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Water Villa With Pool\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"28368\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"116820.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":112926,\"priceDoubleOcc\":\"116820.00\",\"priceSingleOcc\":327096,\"priceExtraBed\":\"87615.00\",\"priceWithoutBed\":\"58410.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":116820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":58410,\"CEB\":87615,\"COSTDO\":116820,\"COSTSO\":327096,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":105138,\"COSTTO\":105138}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel 03&amp;nbsp;Nights accommodation on Double&amp;nbsp;sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( All Inclusive&amp;nbsp;Meal Plan - Breakfast&amp;nbsp;\\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks Unlimited )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transfers&amp;nbsp;as per the itinerary in an Domestic Flight + Speed Boat&amp;nbsp;on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies &lt;\\/strong&gt;:-&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;01 bottle of sparkling wine and a fruit platter on arrival day&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;complimentary in suite Breakfast for the couple once during stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;special evening turn down service with bed decoration on arrival night&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 celebratory honeymoon cake.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202151\":[{\"Sequence\":[0],\"TPInvnSysId\":[202151],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202152\":[{\"Sequence\":[0],\"TPInvnSysId\":[202152],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202153\":[{\"Sequence\":[0],\"TPInvnSysId\":[202153],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"202154\":[{\"Sequence\":[0],\"TPInvnSysId\":[202154],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',116820,116820,3,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:28:50','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'siyam-world-single-stay',NULL,NULL,NULL,0),(397,27817,1,5293,0,0,0,'Family,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27817,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/glimpse-of-srilanka_1690876019\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Floating in tropical waters off the southern tip of India,&amp;nbsp;Sri Lanka&amp;nbsp;is defined by its gentle Buddhist culture, friendly people and laid-back way of life, despite its troubled recent history. A little knowledge goes a long way when it comes to having an easy trip to this Indian Ocean island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For such a small nation, Sri Lanka is hugely diverse. Sand-sprinkled beaches rise to forested national parks, temple-studded plains, and jungle-covered highlands, with the added perk that nowhere is that far from the beach.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Most visitors start on the coast and duck inland to tea gardens, ancient cities and national parks, but navigating Sri Lanka&amp;#39;s frenetic public transport system and cultural sensitivities can be confusing for new arrivals. To help you out, here are some of the things you need to know before traveling to Sri Lanka.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Colombo\",\"DestinationPlacesSysId\":6689,\"SourcePlaces\":\"Colombo\",\"SourcePlaceSysId\":6689,\"AgencyName\":\"I Need Trip\",\"Name\":\"GLIMPSE OF SRILANKA \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6779\",\"SupplierName\":\"Aitken Spence Travels (Pvt) Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Breakfast & Dinner\",\"PackageType\":\"Family,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":19147,\"Title\":\"Negombo\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":13493,\"Title\":\"Kandy\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":2949,\"Title\":\"Bentota\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":6689,\"Title\":\"Colombo\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"198846\",\"Title\":\"AIRPORT &acirc;&euro;&ldquo; COLOMBO\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Meet and assist on arrival at Airport by Aitken Spence Travels&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check in process along with the PCR will be at the Hotel&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Full Board at the hotel (Lunch &amp;amp; Dinner)&amp;nbsp; &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy Local\\/International cuisines at the main restaurant &amp;amp; activities, Gym, Swimming pool &amp;amp; bar facilities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19147,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198849\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19147,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198852\",\"Title\":\"COLOMBO- PINNAWALA &acirc;&euro;&ldquo;PERADENIYA &acirc;&euro;&ldquo;KANDY \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at Hotel, &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Receive your PCR Test results &amp;amp; free to explore Sri Lanka &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to Kandy &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp;&lt;strong&gt;On the way visit Pinnawala Elephant Orphanage &lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;As you enter the 25 acre coconut property, do not be surprised to witness elephants being fed or moving around freely causing absolutely no harm to anyone. It is rightly a sincere sight to observe how these gentle giants - orphaned and sometimes three-legged - are taken care of since 1975 at Pinnawala Elephant Orphanage. Up to date, over 20 calves have been born here, and it is surprising to hear that some of its inmates have even seen their grandchildren during the past few decades! &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Visit Peradeniya Botanical Gardens&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;First developed as a pleasure garden under royalty and later harmonized by the British, the Royal Botanical Gardens of Peradeniya - today bundled with the most welcoming facilities located just 4 miles off Kandy - is a flourishing national asset in the Wonder of Asia. Walk into this 147 acre bliss of an experience, passing well tended lawns, pavilions &amp;amp; an octagon conservatory to be greeted by the vast expanse of a magnificently landscaped lush green turf which will encourage you for an exhilarating break. Towards the north of the entrance rests a cafeteria that one might come across before stepping into some of the highlights - the orchid house &amp;amp; giant Javan fig tree - of this place which overflow in grace.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13493,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198855\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13493,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198858\",\"Title\":\"KANDY &acirc;&euro;&ldquo; BENTOTA \",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer to Bentota &amp;amp; Do a City Tour of Bentota ,&lt;strong&gt;Enjoy water sports&lt;\\/strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer to Kandy to Bentota &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Last ruled by King Sri Wickrama Rajasinghe - before it was brought under the British rule in 1815, Kandy - the World Heritage Site &amp;amp; last royal capital of Sri Lankan kings - crafts an array of culture, history and heritage in the minds of visitors across the globe. A stroll across this small lakeside town - cradled among the misty hills - will feature the Kandy City Centre - bundled with latest and world class brands, bazaar, an arts &amp;amp; crafts centre, as well as a gem museum &amp;amp; lapidary walk in colour as you glide through fresh fruits and vegetables in the Kandy market&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Evening visit Kandy Temple of tooth relic &amp;amp; Cultural show&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198861\",\"Title\":\"BENTOTA &acirc;&euro;&ldquo;KOSGODA &acirc;&euro;&ldquo;BALAPITIYA &acirc;&euro;&ldquo;BENTOTA  \",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Transfer to visit &lt;strong&gt;Kosgoda Turtle Farm&lt;\\/strong&gt; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Both locals and international volunteers battling it out for &amp;#39;&amp;#39;Sea Turtles&amp;#39; Sake&amp;#39;&amp;#39; is a common sight at Kosgoda. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:black&quot;&gt;Do Balapitiya Boat Ride &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Madu Ganga is situated in Balapitiya, along the country&amp;#39;s southern coast, within the Galle District of the Southern Province of Sri Lanka. It opens to the Indian Ocean Madu lagoon is a very wide and a beautiful lagoon in Sri Lanka. It is in the wet zone of Sri Lanka with a high bio-diversity. Madu River has been proclaimed a Ramsa wetland in the world in 2004.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198864\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2949,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198867\",\"Title\":\"BENTOTA &acirc;&euro;&ldquo;COLOMBO\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Leave to commercial capital &amp;ldquo;Colombo&amp;rdquo; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Enjoy scenic city of &lt;strong&gt;Colombo &amp;amp; do shopping&lt;\\/strong&gt; &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;a name=&quot;_Hlk69469895&quot;&gt;&lt;\\/a&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The throbbing metropolis, Colombo - located in the West - is not only the country&amp;#39;s commercial capital, but also the turbine that impels above 50% of the national GDP flanking Colombo&amp;#39;s fancy urban development effort. Drive along the clean streets edging the crystal white Race Course - horse racing hub in 1893 &amp;amp; World War II airstrip - furnished today with lavish clothing, food &amp;amp; tea boutiques. Meanwhile, ride to Pettah - an offbeat shopping experience - or feel the buzz surrounding the upcoming inspiration, the Colombo Port City - an offshore city - featuring parks, commercial complexes! Head along Bauddhaloka Mawatha towards &amp;#39;Arcade&amp;#39; facing a historic waypost, the Independence Square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Overnight stay at the hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6689,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"198870\",\"Title\":\"COLOMBO-AIRPORT  \",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Breakfast at the Hotel&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Departure to Airport in the time of Flight &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/span&gt;&lt;strong&gt;- END OF TOUR &amp;ndash;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6689,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27817\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29527.51\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28543,\"priceDoubleOcc\":\"29527.51\",\"priceSingleOcc\":82677.02,\"priceExtraBed\":\"22145.63\",\"priceWithoutBed\":\"14763.75\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29527.51,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":176,\"CEB\":264,\"COSTDO\":352,\"COSTSO\":985.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":316.8,\"COSTTO\":316.8}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27818\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32757.08\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":31681,\"priceDoubleOcc\":\"32757.08\",\"priceSingleOcc\":91719.82,\"priceExtraBed\":\"24544.74\",\"priceWithoutBed\":\"16424.67\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32757.08,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":195.8,\"CEB\":292.6,\"COSTDO\":390.5,\"COSTSO\":1093.4,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":352,\"COSTTO\":352}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"27819\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35986.65\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":34787,\"priceDoubleOcc\":\"35986.65\",\"priceSingleOcc\":100762.61,\"priceExtraBed\":\"27036.12\",\"priceWithoutBed\":\"17993.33\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35986.65,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":214.5,\"CEB\":322.3,\"COSTDO\":429,\"COSTSO\":1201.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":386.1,\"COSTTO\":386.1}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation specified or of similar standard rooms on Half Board Basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation on Day 01 at Level 1 hotel on Full Board Basis (Lunch &amp;amp; Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by A\\/C Vehicle as per the Itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Service of English-Speaking Chauffeur Guide for 02 to 06 pax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 x 500 ml water bottles per person per day&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"198846\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[198846],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198849\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[198849],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198852\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[198852],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198855\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[198855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198858\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[198858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198861\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[198861],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198864\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[198864],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"198867\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[198867],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"198870\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[198870],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Negombo,Kandy,Bentota,Colombo','Negombo,Indian Subcontinent,Sri Lanka,Kandy,Bentota,Colombo',NULL,'19147,13493,2949,6689',29528,35987,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'Sri Lanka','200','2023-09-07 12:36:38','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glimpse-of-srilanka',NULL,NULL,NULL,0),(401,27074,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27074,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/vaaru_by_atmosphere_-_split_stay_1627645935.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;VARU BY ATMOSPHERE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Nestled in the pristine Indian Oceans of the Maldives, Atmosphere Hotels &amp;amp; Resorts presents its newest resort, VARU by Atmosphere, a Maldives all-inclusive resort. Enjoy your first moments in Paradise, on a Speed Boat for 40mins while you arrive from Male International Airport to the North-west of the Maldives. Experience the local culture and its warm hospitality while you submerse yourself in a 5 star service throughout your stay. &amp;lsquo;Varu&amp;rsquo; in Dhivehi, the local dialect refers to strength, resilience and life in abundance which comes to life at the resort, with its perfect blend between the contemporary architecture and tropical vibes of the island paradise.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"VARU BY ATMOSPHERE - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Flight,Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475271,\"Name\":\"Vaaru By Atmosphere Maldives\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193938\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;STAY 1 &lt;strong&gt;BEACH VILLA&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Each one-bedroom beach villa features an open-air bathroom, a large veranda and gracefully designed interiors. An elegant sofa with a matching plush armchair and side table from a cozy seating space by the window. Built into a corner, the workspace has a wooden desk and an ergonomic chair.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;STAY 2 &lt;strong&gt;WATER VILLA&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Slip into a restful sleep as your senses are soothed by the sound of gentle waves lapping the stilts of your aquatic home. Live close to nature in our tranquil water villas. With a vaulted ceiling and a huge glass sliding door that brings in the natural light.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An elegant palette of cream, brown and cerulean highlights the atmosphere of airy, understated luxury. A huge glass sliding door brings in the natural light.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475271,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193939\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475271,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193940\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475271,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193941\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475271,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193942\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475271,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 NIGHTS BEACH VILLA   02 NIGHTS WATER VILLA\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27074\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"121330.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":117286,\"priceDoubleOcc\":\"121330.00\",\"priceSingleOcc\":339724,\"priceExtraBed\":\"90997.50\",\"priceWithoutBed\":\"60665.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":121330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":60665,\"CEB\":90997.5,\"COSTDO\":121330,\"COSTSO\":339724,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":109197,\"COSTTO\":109197}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Beach Villa&amp;nbsp;+ 2 Nights Stay in Water Villa&amp;nbsp;on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan (Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Drinks)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Romantically shaped bed decoration - once per stay&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Romantic candlelight dinner for the couple once during the stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One honeymoon cake&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Aromatic bubble bath - once per stay&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Complimentary Value Additions:-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Activities &amp;amp; Adventure :-&lt;\\/strong&gt; DISPORT (Sports &amp;amp; Recreation Center) &amp;minus; Complementary access to a fully equipped gymnasium, outdoor and indoor recreational activities, flood-lit tennis court, badminton, and beach-volley to keep you active &amp;minus; Weekly and seasonal group activities including yoga, Pilates, strength training, and more.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;ON THE MOVE (Kids Club) &amp;minus;&lt;\\/strong&gt; A host of fun activities and learning experiences organized daily, especially for kids &amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;ENTERTAINMENT &amp;minus; &lt;\\/strong&gt;Daily DJ Music and live entertainment &amp;nbsp;&amp;minus; Engaging events organized on a weekly and seasonal basis &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;SNORKELING AND WATER SPORTS &amp;minus; &lt;\\/strong&gt;Complimentary use of non-motorized water sports throughout the stay. Includes Windsurf, Stand-Up Paddle Boards, Canoes, Water Bikes, Waterlogs, and Water Castle ** Guests must clear a windsurfing competence check to avail the Windsurf &amp;minus; Complimentary snorkeling equipment for all guests throughout their stay &amp;minus; TWO snorkeling excursion shuttles daily to selected sites nearby** &amp;nbsp;**On pre-registration basis, weather permitting &amp;minus; 20% Discount on first TWO regular dives* per guest* Guests must hold an Internationally certified dive certificate; discount applicable on dives only.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;EXCURSIONS&amp;nbsp;&amp;minus;&lt;\\/strong&gt; Sunset fishing ONCE per guest during stay &amp;minus; ONE Complimentary excursion per guest from a selection of excursions (weather permitting): &amp;acirc;&amp;oelig;&amp;ldquo; Sunset Cruise &amp;acirc;&amp;oelig;&amp;ldquo; Stargazing cruise &amp;nbsp;** Eligible only for four night and longer stays ** Weather permitting&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Additional Services&amp;nbsp; :-&amp;nbsp;&lt;\\/strong&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;IN VILLA MINIBAR &lt;\\/strong&gt;&amp;minus; Replenished TWICE DAILY with an assortment of wines, beer, soft beverages, and snacks.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;SPA &lt;\\/strong&gt;&amp;minus; The overwater ELENA Spa at VARU offers a range of holistic treatment inspired by natural elements, that nourish the mind, body, and soul &amp;nbsp; **Eligible per person per stay for adults (15 years and above) depending on the duration of the stay: &amp;minus; 4-7 nights stay: ONE 45 minutes spa treatment.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193938\":[{\"Sequence\":[0],\"TPInvnSysId\":[193938],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193939\":[{\"Sequence\":[0],\"TPInvnSysId\":[193939],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193940\":[{\"Sequence\":[0],\"TPInvnSysId\":[193940],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193941\":[{\"Sequence\":[0],\"TPInvnSysId\":[193941],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193942\":[{\"Sequence\":[0],\"TPInvnSysId\":[193942],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',121330,121330,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:41:05','2023-09-07 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'varu-by-atmosphere-split-stay',NULL,NULL,NULL,0),(402,27066,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":27066,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/adaaran_select_hudhuranfushi_-_split_stay_1627646017.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Adaaran Select Hudhuran Fushi is a barefoot island paradise with one of the best left-hand surf break points in the world. With 24-hour access by speed-boat, it is nestled on one of the oldest natural islands in the Maldives and offers 24-hour premium, all-inclusive for surfers, honeymooners, families, and groups seeking an unforgettable tropical vacation experience.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"ADAARAN SELECT HUDHURANFUSHI - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479892,\"Name\":\"Adaaran Select Hudhuran Fushi\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"North Male Atoll, Republic Of Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4817939,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479892\\/5293_01616954165.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Amid a tropical, 83-acre property edged by a white-sand beach, this casual resort is 20 km by seaplane from&lt;strong&gt; Ibrahim Nasir International Airport.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Over-water villas feature modern decor and Wi-Fi access, while relaxed beachfront villas and garden-side rooms have a tropical vibe. All include tea and coffeemakers, satellite TV and minibars, as well as thatched roofs, and furnished terraces offering Indian Ocean or garden views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A breakfast buffet is free. Other amenities consist of a gym, a spa and an outdoor pool, plus 2 open-air bars and a pair of informal restaurants. Activities include scuba diving, tennis and seasonal surfing.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479892\\/5293_89616b16f811f1134486e5d31db81ef71616954165.png\",\"AccoAminitiesMask\":\"1111111100001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"193886\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - GARDEN VILLA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Garden Villas are located throughout the island with convenient access to the hotel facilities. Even though these rooms lack beachfront view, they are equipped with a variety of modern amenities. Garden Villas offer spacious accommodation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - OCEAN VILLA&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Situated atop rippling turquoise waters, Adaaran Hudhuranfushi Sunrise Ocean Villas are elegant retreats with modernist interiors equipped with a plethora of exclusive amenities.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193887\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193888\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193889\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"193890\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"2nt Garden Villa 2nt Sunrise Ocean Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"27066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"106920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103356,\"priceDoubleOcc\":\"106920.00\",\"priceSingleOcc\":299376,\"priceExtraBed\":\"80190.00\",\"priceWithoutBed\":\"53460.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53460,\"CEB\":80190,\"COSTDO\":106920,\"COSTSO\":299376,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96228,\"COSTTO\":96228}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Garden Villa&amp;nbsp;+ 2 Nights Stay in Sunrise Ocean Villa&amp;nbsp;on Double Sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Inclusive Meal Plan&amp;nbsp;(Breakfast \\/ Lunch \\/ Dinner \\/ Snacks \\/ Beverages)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Wi-Fi in all rooms and common areas&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary one Sunset Cruise excursion &amp;ndash; once during stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary one Dolphin Watching excursion &amp;ndash; once during stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary snorkeling excursions (twice daily - prior reservations recommended)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary snorkeling fins and masks (prior reservations recommended)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cookery demonstration (once a week)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cocktail demonstration (once a week)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary non-motorized water sports (mentioned below)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Windsurfing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Catamaran (A catamaran license is required)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Canoe&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Stand up peddle board&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"193886\":[{\"Sequence\":[0],\"TPInvnSysId\":[193886],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193887\":[{\"Sequence\":[0],\"TPInvnSysId\":[193887],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193888\":[{\"Sequence\":[0],\"TPInvnSysId\":[193888],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193889\":[{\"Sequence\":[0],\"TPInvnSysId\":[193889],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"193890\":[{\"Sequence\":[0],\"TPInvnSysId\":[193890],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',106920,106920,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:41:37','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'adaaran-select-hudhuranfushi-split-stay',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (403,25435,1,5293,0,0,0,'Honeymoon,Family,Heritage,Culture,Romantic,Leisure,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":25435,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/TURKISH_DELIGHT__3.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The beauty of Turkey is lined up with warm colours, sun-kissed beaches, pine-covered forests, and historic Roman wonders. These exquisite exceptions played a big role in bagging the country 16 UNESCO World Heritage sites. From the largest remnants of the Roman Empire to exotic hot air balloons&amp;nbsp;of Cappadocia, Turkey has it all.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The eclectic city of Istanbul, the fantastical rock forms of Cappadocia, the ancient ruins of Ephesus, and the glimmering Mediterranean and Aegean coastlines are&amp;nbsp;Turkey&amp;rsquo;s biggest draws, but each region of the country has something distinct to offer.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The diversity of landscapes, heritage and culinary culture will surprise those who have never ventured beyond holiday resorts and the beach.&amp;nbsp;Even though it&amp;rsquo;s easy to get around Turkey, the country has too much to see and do to tackle it all on one trip. Because most domestic flights route through Istanbul, spend at least a few days in this dynamic global metropolis before heading out to one of our other top places to visit in&amp;nbsp;Turkey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cappadocia\",\"DestinationPlacesSysId\":5094,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"CAPTIVATING TURKEY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5686\",\"SupplierName\":\"NAMHO\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Breakfast & Dinner,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Heritage,Culture,Romantic,Leisure,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481382,\"Name\":\"Point Hotel Taksim\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Top&Atilde;&sect;u Caddesi No.2 Taksim - &Auml;&deg;stanbul - TURKEY\"},\"Images\":{\"Image\":[{\"ImagId\":4818238,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481382\\/5293_01618472615.jpg\"},{\"ImagId\":4818239,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481382\\/5293_11618472615.jpg\"},{\"ImagId\":4818240,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481382\\/5293_21618472615.jpg\"}]},\"CityId\":12905,\"Brief\":\"&lt;p&gt;Point Hotel Taksim enjoys a perfect a location at Taksim, the heart of Istanbul, with its close proximity to all convention centers like L&Atilde;&frac14;tfi K&Auml;&plusmn;rdar Congress and Exhibition center, to Istiklal Street which is the center of shopping and social life and to the historical peninsula. A friendly welcome will give you a true taste of the Point Hotel hospitality at the beginning of your accommodation.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481382\\/5293_299cedd8fea8ac79b20c84c6cdf36e6d1618472615.jpg\",\"AccoAminitiesMask\":\"1111111110111111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":11099,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops on a total area of 30,700 m&Acirc;&sup2;, attracting between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19316,\"Title\":\"Hagia Sophia\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19315,\"Title\":\"spice bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19320,\"Title\":\"carpet manufactory\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19317,\"Title\":\"Kiliclar valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19318,\"Title\":\"pottery workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481383,\"Name\":\"Dinler Urgup Hotel\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Mehmet Dinler Bulvar&Auml;&plusmn;, 50400 &Atilde;&oelig;rg&Atilde;&frac14;p \\/ Nev&Aring;&Yuml;ehir - T&Atilde;&frac14;rkiye\"},\"Images\":{\"Image\":[{\"ImagId\":4818255,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481383\\/5293_01618484184.jpg\"},{\"ImagId\":4818256,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481383\\/5293_11618484184.jpg\"}]},\"CityId\":5094,\"Brief\":\"&lt;p&gt;Dinler Hotels - Urgup, with its breathtaking Urgup \\/ Kayakapi room views, offers all the high quality details for a comfortable stay in Cappadocia.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOur hotel is located in the most central and lively location of Turkey&acirc;&euro;&trade;s most extraordinary landscape: Cappadocia - Urgup and it is&Acirc;&nbsp;the First 5-Star Hotel of Urgup.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481383\\/5293_ecc64bd8473819a1dd6159a65984b1a71618484184.jpg\",\"AccoAminitiesMask\":\"1111111110111111101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null,\"RoomTypeName\":\"Comfort Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":11099,\"Title\":\"GRAND COVERED BAZAAR\",\"Description\":\"The Grand Bazaar in Istanbul is one of the largest and oldest covered markets in the world, with 61 covered streets and over 4,000 shops on a total area of 30,700 m&Acirc;&sup2;, attracting between 250,000 and 400,000 visitors daily.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19316,\"Title\":\"Hagia Sophia\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19315,\"Title\":\"spice bazaar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":8969,\"Title\":\"Topkap\\u00c4\\u00b1 Palace\",\"Description\":\"It was not only the residence of the Ottoman sultans, but also the administrative and educational centre of the state. Initially constructed between 1460 and 1478 by Sultan Mehmed II,  When Topkap&Auml;&plusmn; was first built, its plan was influenced by the splendor of the Edirne Palace located on the Tunca River, which had been constructed by Mehmed II&acirc;&euro;&trade;s father, Sultan Murad II (r. 1421-44, 1446-51) but very little of which survives today.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554712347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19320,\"Title\":\"carpet manufactory\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19317,\"Title\":\"Kiliclar valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":11659,\"Title\":\"PASABAG (MONKS VALLEY)\",\"Description\":\"Pasabag in Cappadocia is located on the road to Zelve, coming from Goreme or Avanos. Highly remarkable earth pillars can be seen here, in the middle of a vineyard, hence the name of the place which means: the Pacha&#039;s vineyard. Pacha means &quot;General&quot;, the military rank, in Turkish and it is a very common nick name. This site is also called&Acirc;&nbsp;&lt;\\/span&gt;&lt;strong style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;Monks Valley&lt;\\/strong&gt;&lt;span style=&quot;color: rgb(51, 51, 51) font-family: Verdana, Arial, Helvetica, sans-serif font-size: 11px background-color: rgb(239, 236, 219)&quot;&gt;. The name was derived from some cones carved in tuff stones which stand apart. Currently, there is a vineyard and a number of tuff cones standing right next to the road.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null},{\"RefSSId\":19318,\"Title\":\"pottery workshop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5686,\"SupplierName\":\"NAMHO\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"182322\",\"Title\":\"Arrival in Istanbul\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Istanbul Airport &amp;amp; get a private transfer to Hotel. Overnight at Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182323\",\"Title\":\"Istanbul Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Full Day Tour of Istanbul- Topkapi&amp;nbsp;Palace, Hagia Sophia, Blue Mosque, Hippodrome Square and Grand Bazaar, Spice Bazaar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11099,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19316,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8962,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19315,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8969,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182324\",\"Title\":\" Bosphorus Dinner Cruise\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Day at leisure. Evening Bosphorus Dinner Cruise with Folkloric Show.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481382,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10304,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182325\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182326\",\"Title\":\"Istanbul - Cappadocia\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Transfer to airport for your afternoon flight to Cappadocia.Arrival transfer to Cappadocia hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Comfort Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182327\",\"Title\":\"Cappadocia Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Cappadocia sightseeing: Goreme open-air Museum, Pasabag valley, Kiliclar valley, underground city, carpet manufactory, pottery workshop.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Comfort Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19320,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19317,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11659,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"182328\",\"Title\":\"Departure Transfer to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&amp;nbsp;Departure transfer to Airport for flight to Istanbul connecting with your international flight for Travel Back to India.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"25435\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54454.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1},{\"From\":\"2023-07-31\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52639,\"priceDoubleOcc\":\"54454.30\",\"priceSingleOcc\":152472.03,\"priceExtraBed\":\"40886.87\",\"priceWithoutBed\":\"27227.15\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54454.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":324.5,\"CEB\":487.3,\"COSTDO\":649,\"COSTSO\":1817.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":584.1,\"COSTTO\":584.1}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;03 nights accommodation in Istanbul&lt;strong&gt; ( Meal plan - Breakfast )&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 nights accommodation in Cappadocia&amp;nbsp;&lt;strong&gt;( Meal plan - Breakfast &amp;amp; Dinner&amp;nbsp;)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Istanbul City Tour with Lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Evening Bosphorus Cruise with Dinner &amp;amp; Folkloric Show (Unlimited Non Alcoholic Local Drinks)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Cappadocia Tour with Lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers&amp;nbsp;in Istanbul and Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours and Transfers on Private Basis&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"182322\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[182322],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182323\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[182323],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182324\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[182324],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182325\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[182325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182326\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[182326],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"182327\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[182327],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"182328\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[182328],\"Remark\":[\"&lt;p&gt;AIRPORT TRANSFERS ON PRIVATE BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Cappadocia',NULL,'12905,5094',54454,54454,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Turkey','222','2023-09-07 12:42:16','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'captivating-turkey',NULL,NULL,NULL,0),(404,25390,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25390,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/GLIMPSE_OF_DHAULADHAR_-_EX_DELHI_75.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;With spectacular snowy peaks and plunging river valleys, beautiful Himachal is India&amp;rsquo;s outdoor adventure playground. From trekking and climbing to rafting, paragliding and skiing, if it can be done in the mountains, it can be done here. A convoluted topography of interlocking mountain chains also makes Himachal a spectacular place simply to explore, by bus, car, motorbike, jeep or foot. Every pass crossing into a new valley brings you into a different culture, with its own deities and language. Villages perched on staggering slopes enchant with fairy-tale architecture and residents&amp;#39; easygoing warmth. Hill stations appeal with a holiday atmosphere, while backpacker magnets lure with chilled-out vibes and mountain beauty. In the Dalai Lama&amp;#39;s home-away-from-home, McLeod Ganj, or in remote Lahaul and Spiti with their centuries-old Buddhist cultures, you might wonder whether you&amp;#39;ve inadvertently stumbled into Tibet.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"GLIMPSE OF HIMACHAL - EX DELHI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480833,\"Name\":\"Pine Tree Shimla\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"The Pine Tree Shimla Barmu, PO Kelti Shimla, Himachal Pradesh 171003 India\"},\"Images\":{\"Image\":[{\"ImagId\":4818042,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_01617782563.jpg\"},{\"ImagId\":4818043,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_11617782563.jpg\"}]},\"CityId\":1,\"Brief\":\"&lt;p&gt;We offer exciting venues away from the hustle and bustle of cities, With this scenic backdrop beckoning your attention unfailingly, you are sure to enjoy every nanosecond of your stay in the Hotel.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_f2e4779a0eeb0fb4fbd2e9959437932b1617782563.jpg\",\"AccoAminitiesMask\":\"1101110100001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480836,\"Name\":\"Hotel Snow Lotus\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Near Sankat Mochan Mandir ,Shimla, Himachal Pradesh, PIN 171010\"},\"Images\":{\"Image\":[{\"ImagId\":4818160,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480836\\/5293_01618307356.jpeg\"}]},\"CityId\":1,\"Brief\":\"&lt;p&gt;Located on the way to Shimla, just a few kms away near famous Sankot Mochan Temple and overlooking the complete town of Shimla, Snow Lotus effortlessly blends into the surrounding landscape enhancing its beauty. Easy accessibility makes staying at our hotel a convenient proposition for one and all. Splendid views of nature, the famous Temple are just awesome. Easy accessibility and developed facilities along with numerous attractions around the hotel adds to the comfortable stay. Whatever be the purpose of your visit- relaxation away from the busy city life, exploring natural beauties that the surrounding has to offer - Snow Lotus Hotel Shimla guarantees to make this a vacation you would fondly remember. Offering tastefully designed rooms fitted with all modern amenities, tariffs to fit your budget. Snow Lotus is arguably the best hotel in Shimla. Enjoy the personalized service and dedicated hospitality at our Hotel for a truly memorable holiday in Shimla.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480836\\/5293_bed22c5a5fd13986b6921989d2a57d621618307356.jpeg\",\"AccoAminitiesMask\":\"1110011100101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480917,\"Name\":\"Sanobar The Grand White - Luxury Hotel - Wing A\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.09492260000001\",\"Long\":\"77.1525008\",\"Address\":\" Link Road, below ISBT, Tutikandi, Shimla, Himachal Pradesh 171004\"},\"Images\":{\"Image\":[{\"ImagId\":4818219,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480917\\/5293_01618397284.jpg\"},{\"ImagId\":4818220,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480917\\/5293_11618397284.jpg\"}]},\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480917\\/5293_b647563d272195111a4d44232fafa4691618397284.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him&Auml;\\u0081layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19305,\"Title\":\"Baijnath Shiva Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":395,\"Title\":\"Dalai Lama Temple\",\"Description\":\"The Dalai Lama Temple draws the major attention of the tourists, situated at the main temple road. Dalai Lama&amp;rsquo;s residence is also near to the temple. On entering into the temple, one can find Lamas sitting at the counters for donations and thousands of people praying there by chanting with prayer wheels and prayer beads. Tourists can also join the prayers or walk around to enjoy the sights. \\r\\nThe Dalai Lama Temple Complex is a beautiful and peaceful place, decorated with the colourful prayer flags. Admire the art, architecture and atmosphere of an important religious site. There are also a few shops also inside the complex, selling Tibetan books, t-shirts, and curios.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2036164,\"Long\":76.3259206,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dalai_Lama_Temple_7824_1518413709.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1168,\"Title\":\"Naddi Village\",\"Description\":\"Naddi Village is a great destination for weekends and is an important part of the Himachal Tourism. This amazing village is a well-known place for its trekking experiences and is visited by thousands of travellers every year. It is a beautiful and thrilling spot in the serene setting of Himachal, located at an altitude of 7152 ft. from the sea level.  \\r\\nFamous for Natural beauty, amazing adventures, scenic setting, Seeking Experience, the sunset point, eco point and the view point. During April to June, this village experiences a fair which people attend from far. Another good choice is festival which held in September.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2531675,\"Long\":76.3029044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Naddi_Village_7824_1518277027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480817,\"Name\":\"Shaina Mareema Cottage\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Mareema Cottage  Near Hadimba Temple,  Nasogi Road Manali,  Manali  Himachal Pradesh - 175131\"},\"Images\":{\"Image\":[{\"ImagId\":4818040,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_01617776061.jpg\"},{\"ImagId\":4818041,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_11617776061.jpg\"}]},\"CityId\":16593,\"Brief\":\"&lt;p&gt;Shaina Mareema Cottage&Acirc;&nbsp;is situated at Near Hadimba Temple (200mtrs) Manali recently with its up market ultramodern with Wooden Furnished, which is a perfect choice for Honeymooners and leisure traveler alike.&lt;br \\/&gt;\\r\\nThe Cottage is located in Manali, which is the most prime location around the apple orchard. It has been designed on contemporary styling with excellent finishes and top quality fixtures and fittings. We offer tastefully furnished &amp; around Natural View rooms. The Cottage offers excellent F&amp;B facilities that include Mareema - Coffee Shop-cum Restaurant. The Cottage is long for only 2 Km from Manali Mall Road.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_db4643c25214b81db7dfe148820d29721617776061.jpg\",\"AccoAminitiesMask\":\"1110011100101111011\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480835,\"Name\":\"Apple Bud Cottages and Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Rangri, Kanyal Road, Manali (H.P.)\"},\"Images\":{\"Image\":[{\"ImagId\":4818044,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_01617784836.jpg\"},{\"ImagId\":4818045,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_11617784836.jpg\"}]},\"CityId\":16593,\"Brief\":\"&lt;p&gt;Nestled in the foothill of the Himalayas amidst lush greenery, this 4 Star Deluxe hotel offers 33 well appointed rooms that are categorised as Grandeur, Premium &amp; Honeymoon Suite for your indulgence.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_97fabede42b971a2ba22ec2c5f7a301d1617784836.jpg\",\"AccoAminitiesMask\":\"1110010000101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480837,\"Name\":\"Fern Residency, Manali\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him&Auml;\\u0081layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19305,\"Title\":\"Baijnath Shiva Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":395,\"Title\":\"Dalai Lama Temple\",\"Description\":\"The Dalai Lama Temple draws the major attention of the tourists, situated at the main temple road. Dalai Lama&amp;rsquo;s residence is also near to the temple. On entering into the temple, one can find Lamas sitting at the counters for donations and thousands of people praying there by chanting with prayer wheels and prayer beads. Tourists can also join the prayers or walk around to enjoy the sights. \\r\\nThe Dalai Lama Temple Complex is a beautiful and peaceful place, decorated with the colourful prayer flags. Admire the art, architecture and atmosphere of an important religious site. There are also a few shops also inside the complex, selling Tibetan books, t-shirts, and curios.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2036164,\"Long\":76.3259206,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dalai_Lama_Temple_7824_1518413709.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1168,\"Title\":\"Naddi Village\",\"Description\":\"Naddi Village is a great destination for weekends and is an important part of the Himachal Tourism. This amazing village is a well-known place for its trekking experiences and is visited by thousands of travellers every year. It is a beautiful and thrilling spot in the serene setting of Himachal, located at an altitude of 7152 ft. from the sea level.  \\r\\nFamous for Natural beauty, amazing adventures, scenic setting, Seeking Experience, the sunset point, eco point and the view point. During April to June, this village experiences a fair which people attend from far. Another good choice is festival which held in September.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2531675,\"Long\":76.3029044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Naddi_Village_7824_1518277027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":7824,\"Title\":\"Dharamshala\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480886,\"Name\":\"Hotel Sky Lark\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bhagsunag Road Village Bhagsu Nag,Mc Leodganj Dharamshala\"},\"Images\":{\"Image\":[{\"ImagId\":4818050,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480886\\/5293_01617822677.jpg\"}]},\"CityId\":7824,\"Brief\":\"&lt;p&gt;Hotel Skylark is a perfect place to stay while your visit to the beautiful destination of &lt;strong&gt;Bhagsu nag, Mcleodganj and Dharamsala.&lt;\\/strong&gt; Bhagsu is a magnificent village just 2 kms from the famous tourist spot of Mcleodganj.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is equipped with all modern facilities and amenities. The &lt;strong&gt;newly build hotel &lt;\\/strong&gt;is so constructed to see your maximum comfort and smooth stay with us.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480886\\/5293_be8259e7eb9f3e85ccaa843b92a1d1c31617822677.jpg\",\"AccoAminitiesMask\":\"1010010000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480904,\"Name\":\"BobsNBarley\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Naddi P.O Dal Teh. Dharamshala, Dist. Kangra\"},\"Images\":{\"Image\":[{\"ImagId\":4818053,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480904\\/5293_01617861513.jpg\"}]},\"CityId\":7824,\"Brief\":\"&lt;p&gt;Hotel Bob&amp;#39;s N Barley is a perfect weekend getaway near Dharamshala where guests enjoy unparalleled facilities for relaxation and rejuvenation in the scenic Dhauladhar Hills. Book your relaxing stay with us and experience our heartfelt services and enjoy your luxurious, comfortable &amp; memorable stay. Hotel Bob&acirc;&euro;&trade;s N Barles promise a unique experience of Hospitality.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480904\\/5293_8988d95eb14ebc7594b2c61d1665c1491617861513.png\",\"AccoAminitiesMask\":\"1110010000001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480938,\"Name\":\"Spring Valley Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bhagsu Nag, McLeod Ganj, Upper Dharamshala, Distt. Kangra\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"&lt;p&gt;Spring Valley Resorts introduces itself as one of the most beautiful resorts in &lt;strong&gt;Bhagsu Nag, McLeod Ganj&lt;\\/strong&gt;. It has 24 rooms with all modern facilities. They are surrounded by panoramic views of the majestic mountains and look out to the town of Bhagsu Nag. The hotel offers a unique blend of fine hospitality and unparalleled services. Relax in this elegant and luxurious mountain-side hotel that basks in the sunshine creating a warm and welcoming retreat. The tasteful accommodation has touches of local designs with rich colors, wooden floors, plush furnishings and stunning views.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480938\\/5293_5bc3a99fe3bbdfaf16813b91c01b24df1617866031.jpg\",\"AccoAminitiesMask\":\"1110000000000101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him&Auml;\\u0081layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19305,\"Title\":\"Baijnath Shiva Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":395,\"Title\":\"Dalai Lama Temple\",\"Description\":\"The Dalai Lama Temple draws the major attention of the tourists, situated at the main temple road. Dalai Lama&amp;rsquo;s residence is also near to the temple. On entering into the temple, one can find Lamas sitting at the counters for donations and thousands of people praying there by chanting with prayer wheels and prayer beads. Tourists can also join the prayers or walk around to enjoy the sights. \\r\\nThe Dalai Lama Temple Complex is a beautiful and peaceful place, decorated with the colourful prayer flags. Admire the art, architecture and atmosphere of an important religious site. There are also a few shops also inside the complex, selling Tibetan books, t-shirts, and curios.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2036164,\"Long\":76.3259206,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dalai_Lama_Temple_7824_1518413709.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1168,\"Title\":\"Naddi Village\",\"Description\":\"Naddi Village is a great destination for weekends and is an important part of the Himachal Tourism. This amazing village is a well-known place for its trekking experiences and is visited by thousands of travellers every year. It is a beautiful and thrilling spot in the serene setting of Himachal, located at an altitude of 7152 ft. from the sea level.  \\r\\nFamous for Natural beauty, amazing adventures, scenic setting, Seeking Experience, the sunset point, eco point and the view point. During April to June, this village experiences a fair which people attend from far. Another good choice is festival which held in September.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2531675,\"Long\":76.3029044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Naddi_Village_7824_1518277027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":7478,\"Title\":\"Dalhousie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480887,\"Name\":\"Hotel Silver Oak\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Chamba Pathankot Highway Road, Bhonkri morh, Bathri, Dalhousie,\"},\"Images\":{\"Image\":[{\"ImagId\":4818051,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480887\\/5293_01617824914.jpg\"}]},\"CityId\":7478,\"Brief\":\"&lt;p&gt;Silver Oak is a comfy stay option located near &lt;strong&gt;Rock GaRoaden on Chamba Pathankot Highway in Dalhousie&lt;\\/strong&gt;. The closest bus stand is BaThei, a few minutes away. Attractions nearby are Rock GaRoaden, Devi Dehra, St. Francis Church, Ghranu Mandir, Nag Devta Mandir and more.Special FeaturesThe rooms are sophisticatedly adorned with elegant furnishings. The rooms have light hued walls, classy drapes in pastel colours, complementing furniture and artistic wall art. The bathrooms are spic and span and tiled in a trendy style. The hotel&amp;#39;s is an added advantage, with natural views around.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Every room has a queen-sized bed and TV. Moreover, the hotel also provides parking facility, kitchen services and CCTV surveillance.What&amp;#39;s NearbyRestaurants nearby include Tashi Momo Shop, Delizia Home Stay And Restaurant, AMBAR, Thakur Dhaba, Sachin Dhaba and many more. The local market and shops are the best options, for shOppositeing.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480887\\/5293_03f34d96829dafdddd4f5fd043363db51617824914.jpg\",\"AccoAminitiesMask\":\"1100010000000100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480909,\"Name\":\"Hotel Bear  Valley Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Ballooon Church Road Dalhousie\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"&lt;p&gt;The resort is an ideal place for those people who are looking for a perfect escape away destination for leisure and rejuvenate themselves by enjoying the vicinity of the nature. The Resort is perfect place of PEACE, PLEASURE AND PARTY. Take some time out from the busy schedule and listen to the sounds of birds chirping, feel the fresh breeze flowing every morning and evening, take a nice walk into the thick forest of cedar wood, pine wood and rhododendron. Experience some soft adventure activities, like rock climbing, rock rappelling, zipline, Burma Bridge crossing and Valley crossing.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480909\\/5293_c3e37f754de3aed4b1457cab761a9efe1617864009.jpg\",\"AccoAminitiesMask\":\"1110010000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480996,\"Name\":\"Indraprastha Resort Dalhousie\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Near Bus Stand Dalhousie District Chamba\"},\"Images\":{\"Image\":[{\"ImagId\":4818062,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_01617874024.jpg\"},{\"ImagId\":4818063,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_01617874048.jpg\"}]},\"CityId\":7478,\"Brief\":\"&lt;p&gt;Indraprastha Resort is a newly constructed resort in the heart of Dalhousie Himachal Pradesh. It offers various spa treatments and free Wi-Fi access at all areas of the resort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Elegantly furnished, fan-cooled rooms are fitted with a flat-screen TV with satellite channels, a wardrobe and ample writing space. The en suite bathroom comes with shower facilities and free bath amenities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can approach the hotel&acirc;&euro;&trade;s reception for assistance with laundry services and free parking facilities. Guests can also utilize the meeting\\/banquet facilities. Travel arrangements can be made at the tour desk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indraprastha&acirc;&euro;&trade;s in-house restaurant will serve a daily spread of local Indian and international dishes. Guests can also choose from a selection of cocktails and wines at the bar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The resort is nestled away, 80 km from &lt;strong&gt;Pathankot Railway Station &lt;\\/strong&gt;and 100 km from &lt;strong&gt;Kangra Airport.&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_985b729e96c399cb3cd95bd5f7aca9301617874024.jpg\",\"AccoAminitiesMask\":\"1111011110101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":630,\"Title\":\"Hadimba Temple\",\"Description\":\"Hadimba Devi Temple is an ancient cave temple dedicated to Hidimbi Devi wife of Bhima a figure in the Indian epic Mahabharat.It is constructed over a huge rock which is worshipped as a representation of Hidimba.It is surrounded by a cedar forest at the foot of the Him&Auml;\\u0081layas. The interior of the temple is maintained at its original earthen glory much in keeping with undisturbed natural beauty that surrounds the temple.The temple is a small heaven set aside in the dells of the Manali Valley and is a revered religious as well as tourist spot.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Temple_16593_1518442462.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19305,\"Title\":\"Baijnath Shiva Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":395,\"Title\":\"Dalai Lama Temple\",\"Description\":\"The Dalai Lama Temple draws the major attention of the tourists, situated at the main temple road. Dalai Lama&amp;rsquo;s residence is also near to the temple. On entering into the temple, one can find Lamas sitting at the counters for donations and thousands of people praying there by chanting with prayer wheels and prayer beads. Tourists can also join the prayers or walk around to enjoy the sights. \\r\\nThe Dalai Lama Temple Complex is a beautiful and peaceful place, decorated with the colourful prayer flags. Admire the art, architecture and atmosphere of an important religious site. There are also a few shops also inside the complex, selling Tibetan books, t-shirts, and curios.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2036164,\"Long\":76.3259206,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dalai_Lama_Temple_7824_1518413709.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1168,\"Title\":\"Naddi Village\",\"Description\":\"Naddi Village is a great destination for weekends and is an important part of the Himachal Tourism. This amazing village is a well-known place for its trekking experiences and is visited by thousands of travellers every year. It is a beautiful and thrilling spot in the serene setting of Himachal, located at an altitude of 7152 ft. from the sea level.  \\r\\nFamous for Natural beauty, amazing adventures, scenic setting, Seeking Experience, the sunset point, eco point and the view point. During April to June, this village experiences a fair which people attend from far. Another good choice is festival which held in September.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2531675,\"Long\":76.3029044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Naddi_Village_7824_1518277027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181863\",\"Title\":\"Delhi - Shimla (345 Km)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On your arrival in Delhi Airport or Railway station, Our driver will meet you and drive you to Shimla. Shimla is the capital of Himachal Pradesh and the former capital of Britishers. It is located amidst, the snow-laden, Shivalik, mountains which offer the most amazing view of the Himalayas. After reaching there, you will check-in at the hotel. Overnight stay at Shimla.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480833,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480917,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181866\",\"Title\":\"Shimla Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Today visit Shimla City including Sankat Mochan Temple and Jakhu Temple, then we will head on to KUFRI a beautiful snow hill station. a ride of about 40 minutes from the city centre, another must-visit place in the region. It is located at an elevation of 8607 ft; this small hill station promises you panoramic views of the surrounding snow-capped mountains. But Kufri is not just about Shimla sightseeing. It is also an adventure hub that offers training and facilities for exciting winter sports like ice-skating and skiing. That is why it is also known as the winter sports capital of India In the evening we will take you to The Mall &amp;amp; The Ridge. Then we will drive you back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480833,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480917,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19279,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1607,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7431,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1767,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181869\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181872\",\"Title\":\"Shimla &acirc;&euro;&ldquo; Manali (248 kms)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After early breakfast, you will proceed to Manali. Manali is an awe-inspiring hill station covered with snow mountains and dynamic waterfalls. After arrival, you will check-in at the hotel. Overnight at Manali.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181875\",\"Title\":\"Manali Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;In the morning, after breakfast, we will take you to a city tour that includes: Hadimba Devi Temple, Manu Temple, Tibetan Monastery, Vashisht Village, and at the last Solang Valley. Solang Valley is a beautiful valley between Solang village and Beas Kund. It offers a view of glaciers and snow-clad mountain peaks. Solang Valley has fine ski slopes. Then we will drop you to the hotel for an overnight stay.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":630,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1070,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1781,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1861,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181878\",\"Title\":\"Manali - Naggar, Kullu\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today you will enjoy a full-day excursion to Kullu Valley. The Naggar castle is around 20 Km from Manali. Naggar also has a famous folk-art museum. We will visit Naggar Castle, Jagatsukh Temple, then we will drive to Kullu. You can spend some time here in Kullu Bazzar \\/ Dussehra Ground. After that, we will back to Manali for an overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tour &amp;ndash; Rohtang Pass (At Extra Cost)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rohtang Pass is located at an altitude of 3980m. you can experience the breath-taking view of nature and its creation of the great Himalayan range throughout your journey. Chandra valley of Lahaul is on the north side. We will drive you back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":719,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1175,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181881\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181884\",\"Title\":\"Manali &acirc;&euro;&ldquo; Dharmshala (220km)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Today Morning after breakfast, you will check-out from the hotel and drive to Dharamshala. On the way, if time permits visit Baijnath Shiva Temple. The Baijnath Temple bears an ancient style of architecture, known as &amp;lsquo;Nagara&amp;rsquo;. It is believed that Lord Shiva still resides in the Svayambhu form of the Shivling. The temple has been worshiped since 1204 A.D. For that reason, the Baijnath Temple is one of the most culturally rich temples in Kangra. We will continue our journey to Dharamshala. On arrival check-in to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480904,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480938,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19305,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181887\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181890\",\"Title\":\"Dharmshala &acirc;&euro;&ldquo; Dalhousie (130km)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;In the morning after breakfast, you will check-out the hotel and visit McLeod Ganj, Dalai Lama temple, Naddi Dal Lake. Later drive to Dalhousie, will reach here by the evening. Here you will check-in at the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480909,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480996,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2847,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1168,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181893\",\"Title\":\"Dalhousie - Khajjiar\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, we will proceed to Khajjiar, known as India&amp;#39;s Switzerland. You will have a great view of dense green forests of deodar and heavenly snow-line that rests above these woods and here in the center of the glade, is a small lake fed by streams that traverse the green carpet. Khajjiar was probably a glacial bowl formed during the last Himalayan ice age and left with a lake that gradually withered away.&lt;br \\/&gt;\\r\\nKhajjiar is part of the notified Kalatop - Khajjiar sanctuary. We will drive back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480909,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480996,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19288,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181896\",\"Title\":\"Dalhousie -Delhi (563 Km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast check-out from the hotel and drive back to Delhi for your flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25390\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":25520,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":79200,\"priceExtraBed\":\"19800.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13200,\"CEB\":19800,\"COSTDO\":26400,\"COSTSO\":79200,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":23760,\"COSTTO\":23760}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25391\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":32963,\"priceDoubleOcc\":\"34100.00\",\"priceSingleOcc\":102300,\"priceExtraBed\":\"25575.00\",\"priceWithoutBed\":\"17050.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17050,\"CEB\":25575,\"COSTDO\":34100,\"COSTSO\":102300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30690,\"COSTTO\":30690}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25392\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":37217,\"priceDoubleOcc\":\"38500.00\",\"priceSingleOcc\":115500,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"19250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19250,\"CEB\":28875,\"COSTDO\":38500,\"COSTSO\":115500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":34650,\"COSTTO\":34650}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan ( Breakast + Lunch + Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by Dezire\\/Etios (02 Pax) and (for 04 - 06 Toyota Innova 08 - 10 Pax Tempo Traveler) for the entire tour as per Itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing and excursions as per the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Child of the age of below 5 Years to be&amp;nbsp;complimentary without extra bed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We&amp;amp;rsquore passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We&amp;amp;rsquore creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel isn&amp;amp;rsquot just about technology and systems. It&amp;amp;rsquos what we do for people with them that count. Simply put, we like helping people&amp;amp;mdashwhether they&amp;amp;rsquore colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That&amp;amp;rsquos why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We&amp;amp;rsquore natural partners with our clients, colleagues, and our community, and we&amp;amp;rsquore at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We&amp;amp;rsquore committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181863\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181863],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181866\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181866],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181869\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181869],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181872\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181872],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181875\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181875],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181878\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181878],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181881\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181881],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181884\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181884],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181887\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[181887],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181890\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[181890],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181893\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[181893],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181896\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[181896],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla,Manali,Dharamshala,Dalhousie','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali,Dharamshala,Dalhousie',NULL,'1,16593,7824,7478',26400,38500,8,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:42:49','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glimpse-of-himachal-ex-delhi',NULL,NULL,NULL,0),(405,25348,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25348,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SCENIC_HIMACHAL_PRADESH_-_EX_DELHI_24.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;With spectacular snowy peaks and plunging river valleys, beautiful Himachal is India&amp;rsquo;s outdoor adventure playground. From trekking and climbing to rafting, paragliding and skiing, if it can be done in the mountains, it can be done here. A convoluted topography of interlocking mountain chains also makes Himachal a spectacular place simply to explore, by bus, car, motorbike, jeep or foot. Every pass crossing into a new valley brings you into a different culture, with its own deities and language. Villages perched on staggering slopes enchant with fairy-tale architecture and residents&amp;#39; easygoing warmth. Hill stations appeal with a holiday atmosphere, while backpacker magnets lure with chilled-out vibes and mountain beauty. In the Dalai Lama&amp;#39;s home-away-from-home, McLeod Ganj, or in remote Lahaul and Spiti with their centuries-old Buddhist cultures, you might wonder whether you&amp;#39;ve inadvertently stumbled into Tibet.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"SCENIC HIMACHAL - EX DELHI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7478,\"Title\":\"Dalhousie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480887,\"Name\":\"Hotel Silver Oak\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Chamba Pathankot Highway Road, Bhonkri morh, Bathri, Dalhousie,\"},\"Images\":{\"Image\":[{\"ImagId\":4818051,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480887\\/5293_01617824914.jpg\"}]},\"CityId\":7478,\"Brief\":\"&lt;p&gt;Silver Oak is a comfy stay option located near &lt;strong&gt;Rock GaRoaden on Chamba Pathankot Highway in Dalhousie&lt;\\/strong&gt;. The closest bus stand is BaThei, a few minutes away. Attractions nearby are Rock GaRoaden, Devi Dehra, St. Francis Church, Ghranu Mandir, Nag Devta Mandir and more.Special FeaturesThe rooms are sophisticatedly adorned with elegant furnishings. The rooms have light hued walls, classy drapes in pastel colours, complementing furniture and artistic wall art. The bathrooms are spic and span and tiled in a trendy style. The hotel&amp;#39;s is an added advantage, with natural views around.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Every room has a queen-sized bed and TV. Moreover, the hotel also provides parking facility, kitchen services and CCTV surveillance.What&amp;#39;s NearbyRestaurants nearby include Tashi Momo Shop, Delizia Home Stay And Restaurant, AMBAR, Thakur Dhaba, Sachin Dhaba and many more. The local market and shops are the best options, for shOppositeing.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480887\\/5293_03f34d96829dafdddd4f5fd043363db51617824914.jpg\",\"AccoAminitiesMask\":\"1100010000000100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480909,\"Name\":\"Hotel Bear  Valley Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Ballooon Church Road Dalhousie\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"&lt;p&gt;The resort is an ideal place for those people who are looking for a perfect escape away destination for leisure and rejuvenate themselves by enjoying the vicinity of the nature. The Resort is perfect place of PEACE, PLEASURE AND PARTY. Take some time out from the busy schedule and listen to the sounds of birds chirping, feel the fresh breeze flowing every morning and evening, take a nice walk into the thick forest of cedar wood, pine wood and rhododendron. Experience some soft adventure activities, like rock climbing, rock rappelling, zipline, Burma Bridge crossing and Valley crossing.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480909\\/5293_c3e37f754de3aed4b1457cab761a9efe1617864009.jpg\",\"AccoAminitiesMask\":\"1110010000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480996,\"Name\":\"Indraprastha Resort Dalhousie\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Near Bus Stand Dalhousie District Chamba\"},\"Images\":{\"Image\":[{\"ImagId\":4818062,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_01617874024.jpg\"},{\"ImagId\":4818063,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_01617874048.jpg\"}]},\"CityId\":7478,\"Brief\":\"&lt;p&gt;Indraprastha Resort is a newly constructed resort in the heart of Dalhousie Himachal Pradesh. It offers various spa treatments and free Wi-Fi access at all areas of the resort.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Elegantly furnished, fan-cooled rooms are fitted with a flat-screen TV with satellite channels, a wardrobe and ample writing space. The en suite bathroom comes with shower facilities and free bath amenities.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can approach the hotel&acirc;&euro;&trade;s reception for assistance with laundry services and free parking facilities. Guests can also utilize the meeting\\/banquet facilities. Travel arrangements can be made at the tour desk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indraprastha&acirc;&euro;&trade;s in-house restaurant will serve a daily spread of local Indian and international dishes. Guests can also choose from a selection of cocktails and wines at the bar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The resort is nestled away, 80 km from &lt;strong&gt;Pathankot Railway Station &lt;\\/strong&gt;and 100 km from &lt;strong&gt;Kangra Airport.&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480996\\/5293_985b729e96c399cb3cd95bd5f7aca9301617874024.jpg\",\"AccoAminitiesMask\":\"1111011110101101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19,\"Title\":\"Aghanjar Mahadev Temple\",\"Description\":\"Aghanjar Mahadev Temple is a beautiful and unique temple, surrounded by mountains and forests, the place attracts a lot of tourists too apart from the pilgrims. It is believed that Arjuna, one among the Pandava brothers of Mahabharata was once on his way to Kailash Mountains and Lord Shiva appeared to him at this spot and blessed him to have victory over the Kauravas. There is a small waterfall also behind the temple with water flowing continuously around the temple, and a small cave with Shivlinga near the temple. This temple is believed to be about 500 years old. The cool breeze, peace, and serenity around the temple give a heavenly ambience to the pilgrims here.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2130151,\"Long\":76.3519567,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Aghanjar_Mahadev_Temple_7824_1518421656.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19289,\"Title\":\"Norbulingka monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":7824,\"Title\":\"Dharamshala\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480886,\"Name\":\"Hotel Sky Lark\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bhagsunag Road Village Bhagsu Nag,Mc Leodganj Dharamshala\"},\"Images\":{\"Image\":[{\"ImagId\":4818050,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480886\\/5293_01617822677.jpg\"}]},\"CityId\":7824,\"Brief\":\"&lt;p&gt;Hotel Skylark is a perfect place to stay while your visit to the beautiful destination of &lt;strong&gt;Bhagsu nag, Mcleodganj and Dharamsala.&lt;\\/strong&gt; Bhagsu is a magnificent village just 2 kms from the famous tourist spot of Mcleodganj.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is equipped with all modern facilities and amenities. The &lt;strong&gt;newly build hotel &lt;\\/strong&gt;is so constructed to see your maximum comfort and smooth stay with us.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480886\\/5293_be8259e7eb9f3e85ccaa843b92a1d1c31617822677.jpg\",\"AccoAminitiesMask\":\"1010010000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480904,\"Name\":\"BobsNBarley\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Naddi P.O Dal Teh. Dharamshala, Dist. Kangra\"},\"Images\":{\"Image\":[{\"ImagId\":4818053,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480904\\/5293_01617861513.jpg\"}]},\"CityId\":7824,\"Brief\":\"&lt;p&gt;Hotel Bob&amp;#39;s N Barley is a perfect weekend getaway near Dharamshala where guests enjoy unparalleled facilities for relaxation and rejuvenation in the scenic Dhauladhar Hills. Book your relaxing stay with us and experience our heartfelt services and enjoy your luxurious, comfortable &amp; memorable stay. Hotel Bob&acirc;&euro;&trade;s N Barles promise a unique experience of Hospitality.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480904\\/5293_8988d95eb14ebc7594b2c61d1665c1491617861513.png\",\"AccoAminitiesMask\":\"1110010000001101000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480938,\"Name\":\"Spring Valley Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bhagsu Nag, McLeod Ganj, Upper Dharamshala, Distt. Kangra\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"&lt;p&gt;Spring Valley Resorts introduces itself as one of the most beautiful resorts in &lt;strong&gt;Bhagsu Nag, McLeod Ganj&lt;\\/strong&gt;. It has 24 rooms with all modern facilities. They are surrounded by panoramic views of the majestic mountains and look out to the town of Bhagsu Nag. The hotel offers a unique blend of fine hospitality and unparalleled services. Relax in this elegant and luxurious mountain-side hotel that basks in the sunshine creating a warm and welcoming retreat. The tasteful accommodation has touches of local designs with rich colors, wooden floors, plush furnishings and stunning views.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480938\\/5293_5bc3a99fe3bbdfaf16813b91c01b24df1617866031.jpg\",\"AccoAminitiesMask\":\"1110000000000101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19288,\"Title\":\"Khajjiar also known as mini-Switzerland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19,\"Title\":\"Aghanjar Mahadev Temple\",\"Description\":\"Aghanjar Mahadev Temple is a beautiful and unique temple, surrounded by mountains and forests, the place attracts a lot of tourists too apart from the pilgrims. It is believed that Arjuna, one among the Pandava brothers of Mahabharata was once on his way to Kailash Mountains and Lord Shiva appeared to him at this spot and blessed him to have victory over the Kauravas. There is a small waterfall also behind the temple with water flowing continuously around the temple, and a small cave with Shivlinga near the temple. This temple is believed to be about 500 years old. The cool breeze, peace, and serenity around the temple give a heavenly ambience to the pilgrims here.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2130151,\"Long\":76.3519567,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Aghanjar_Mahadev_Temple_7824_1518421656.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":19289,\"Title\":\"Norbulingka monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181595\",\"Title\":\"Delhi &acirc;&euro;&ldquo; Dalhousie (563 Km)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On your arrival at Delhi Railway Station or Airport, Our driver will meet you and drive you to Dalhousie. Dalhousie is a popular Hill station founded by Lord Dalhousie in 1850 as a summer retreat. Rich in colonial architecture Dalhousie has amazing things to offer from marvelous forest trails, waterfalls, springs to snow-laden Dhauladhar peaks complete the horizon. On arrival in Dalhousie, check-in at the hotel. Overnight stay at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480909,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480996,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181598\",\"Title\":\"Visit Khajjiar&Acirc;&nbsp;\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast, we will visit Khajjiar also known as mini-Switzerland. It is one of the most scenic saucer shaped Plateau surrounded by dense pine and deodar forests, its beauty has further been enhanced by a small lake in the centre with a floating island and 9-hole golf course. After visiting all these places, we will drop you back at the hotel for an overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480909,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480996,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19288,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181601\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181604\",\"Title\":\"Dalhousie &acirc;&euro;&ldquo; Dharamshala (117 Km)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, we will drive you to Dharamshala. Beautiful small hill station Lies in the lap of Dhauladhar ranges. On arrival in Dharamshala check-in to the Hotel. Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480904,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480938,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181607\",\"Title\":\"Visit Dharamshala&Acirc;&nbsp;\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;It&amp;#39;s time to enjoy a full-day Dharamshala tour. We will visit Aghanjar Mahadev Temple, dedicated to Lord Shiva. It was built around 500 years ago; the temple is nestled amidst bounteous forests and emerald mountain peaks. Other than the idyllic setting, a tiny cascading waterfall accentuates the beauty of the shrine. A small cave near the temple houses a Shivalinga and has been marked as a sacred spot of worship.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later we will take you to Norbulingka monastery. The moment you step inside the gates of Norbulingka, you will experience a different divine world. There are more attractions to visit like Temple \\/ Losel Doll Museum \\/ and Tibetan arts and culture. At last, we will visit Dharamshala Cricket Stadium and War Memorial. Take an overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480904,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480938,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19289,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181610\",\"Title\":\"Depart Dharamshala &acirc;&euro;&ldquo; Delhi (500 Km\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, it&amp;#39;s time to check-out from the hotel and drive back to Delhi.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25348\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13185,\"priceDoubleOcc\":\"13640.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"10230.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13640,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6820,\"CEB\":10230,\"COSTDO\":13640,\"COSTSO\":40920,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12276,\"COSTTO\":12276}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25349\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17270.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25350\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":18077,\"priceDoubleOcc\":\"18700.00\",\"priceSingleOcc\":56100,\"priceExtraBed\":\"14025.00\",\"priceWithoutBed\":\"9350.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9350,\"CEB\":14025,\"COSTDO\":18700,\"COSTSO\":56100,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16830,\"COSTTO\":16830}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan ( Breakast + Lunch + Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by Dezire\\/Etios (02 Pax) and (for 04 - 06 Toyota Innova 08 - 10 Pax Tempo Traveler) for the entire tour as per Itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing and excursions as per the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Child of the age of below 5 Years to be&amp;nbsp;complimentary without extra bed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181595\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181595],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181598\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181598],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181601\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181601],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181604\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181604],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181607\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181607],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181610\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181610],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dalhousie,Dharamshala','Dalhousie,Himachal Pradesh,Indian Subcontinent,North India,India,Dharamshala',NULL,'7478,7824',13640,18700,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:44:09','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'scenic-himachal-ex-delhi',NULL,NULL,NULL,0),(406,25345,1,5293,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":25345,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/QUEENS_OF_HILLS_-_EX_DELHI_82.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;With spectacular snowy peaks and plunging river valleys, beautiful Himachal is India&amp;rsquo;s outdoor adventure playground. From trekking and climbing to rafting, paragliding and skiing, if it can be done in the mountains, it can be done here. A convoluted topography of interlocking mountain chains also makes Himachal a spectacular place simply to explore, by bus, car, motorbike, jeep or foot. Every pass crossing into a new valley brings you into a different culture, with its own deities and language. Villages perched on staggering slopes enchant with fairy-tale architecture and residents&amp;#39; easygoing warmth. Hill stations appeal with a holiday atmosphere, while backpacker magnets lure with chilled-out vibes and mountain beauty. In the Dalai Lama&amp;#39;s home-away-from-home, McLeod Ganj, or in remote Lahaul and Spiti with their centuries-old Buddhist cultures, you might wonder whether you&amp;#39;ve inadvertently stumbled into Tibet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"QUEENS OF HILLS - EX DELHI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5910\",\"SupplierName\":\"SARVATRAH\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure,Road Trip\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480833,\"Name\":\"Pine Tree Shimla\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"The Pine Tree Shimla Barmu, PO Kelti Shimla, Himachal Pradesh 171003 India\"},\"Images\":{\"Image\":[{\"ImagId\":4818042,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_01617782563.jpg\"},{\"ImagId\":4818043,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_11617782563.jpg\"}]},\"CityId\":1,\"Brief\":\"&lt;p&gt;We offer exciting venues away from the hustle and bustle of cities, With this scenic backdrop beckoning your attention unfailingly, you are sure to enjoy every nanosecond of your stay in the Hotel.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480833\\/5293_f2e4779a0eeb0fb4fbd2e9959437932b1617782563.jpg\",\"AccoAminitiesMask\":\"1101110100001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480836,\"Name\":\"Hotel Snow Lotus\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Near Sankat Mochan Mandir ,Shimla, Himachal Pradesh, PIN 171010\"},\"Images\":{\"Image\":[{\"ImagId\":4818160,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480836\\/5293_01618307356.jpeg\"}]},\"CityId\":1,\"Brief\":\"&lt;p&gt;Located on the way to Shimla, just a few kms away near famous Sankot Mochan Temple and overlooking the complete town of Shimla, Snow Lotus effortlessly blends into the surrounding landscape enhancing its beauty. Easy accessibility makes staying at our hotel a convenient proposition for one and all. Splendid views of nature, the famous Temple are just awesome. Easy accessibility and developed facilities along with numerous attractions around the hotel adds to the comfortable stay. Whatever be the purpose of your visit- relaxation away from the busy city life, exploring natural beauties that the surrounding has to offer - Snow Lotus Hotel Shimla guarantees to make this a vacation you would fondly remember. Offering tastefully designed rooms fitted with all modern amenities, tariffs to fit your budget. Snow Lotus is arguably the best hotel in Shimla. Enjoy the personalized service and dedicated hospitality at our Hotel for a truly memorable holiday in Shimla.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480836\\/5293_bed22c5a5fd13986b6921989d2a57d621618307356.jpeg\",\"AccoAminitiesMask\":\"1110011100101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480817,\"Name\":\"Shaina Mareema Cottage\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Mareema Cottage  Near Hadimba Temple,  Nasogi Road Manali,  Manali  Himachal Pradesh - 175131\"},\"Images\":{\"Image\":[{\"ImagId\":4818040,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_01617776061.jpg\"},{\"ImagId\":4818041,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_11617776061.jpg\"}]},\"CityId\":16593,\"Brief\":\"&lt;p&gt;Shaina Mareema Cottage&Acirc;&nbsp;is situated at Near Hadimba Temple (200mtrs) Manali recently with its up market ultramodern with Wooden Furnished, which is a perfect choice for Honeymooners and leisure traveler alike.&lt;br \\/&gt;\\r\\nThe Cottage is located in Manali, which is the most prime location around the apple orchard. It has been designed on contemporary styling with excellent finishes and top quality fixtures and fittings. We offer tastefully furnished &amp; around Natural View rooms. The Cottage offers excellent F&amp;B facilities that include Mareema - Coffee Shop-cum Restaurant. The Cottage is long for only 2 Km from Manali Mall Road.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480817\\/5293_db4643c25214b81db7dfe148820d29721617776061.jpg\",\"AccoAminitiesMask\":\"1110011100101111011\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480835,\"Name\":\"Apple Bud Cottages and Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Rangri, Kanyal Road, Manali (H.P.)\"},\"Images\":{\"Image\":[{\"ImagId\":4818044,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_01617784836.jpg\"},{\"ImagId\":4818045,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_11617784836.jpg\"}]},\"CityId\":16593,\"Brief\":\"&lt;p&gt;Nestled in the foothill of the Himalayas amidst lush greenery, this 4 Star Deluxe hotel offers 33 well appointed rooms that are categorised as Grandeur, Premium &amp; Honeymoon Suite for your indulgence.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480835\\/5293_97fabede42b971a2ba22ec2c5f7a301d1617784836.jpg\",\"AccoAminitiesMask\":\"1110010000101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":480837,\"Name\":\"Fern Residency, Manali\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":19279,\"Title\":\"Jakhu Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1607,\"Title\":\"Shri Sankat Mochan Hanuman Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0257694,\"Long\":77.1312518,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/78\\/thumb\\/Shri Sankat Mochan Hanuman Temple_962.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":7431,\"Title\":\"The mall\",\"Description\":\"Mall Road is the main street in Shimla, the capital city of Himachal Pradesh, India. Constructed during British colonial rule, the Mall road is located a level below the ridge. The offices of municipal corporation, fire service, and police headquarters are located here. Automobiles, except emergency vehicles are not allowed on this road.\\r\\nMall Road has a number of showrooms, department stores, shops, restaurants and cafes. A Himachal emporium that offers handicraft products of Himachal Pradesh like locally designed woolen clothes, branded clothes, pottery items, wooden products, and jewellery is also located.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_mall_1_1543818494.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1767,\"Title\":\"The Ridge\",\"Description\":\"The Ridge is a large open space situated along the Mall Road which is the famous shopping center of Shimla.The most famous places of Shimla like Snowdon Mall Jakhoo hill etc. are connected through the Ridge.It is the hub of all cultural activities of Shimla.It is an indispensable part of Shimla which houses the citys lifeline -the water reservoir with the capacity of storing 1000000 gallons of water. These water tanks placed under the Ridge supply water to the entire town. It  is also famous for the various government functions and fairs that are held here.The most famous festival that is held at the Ridge is the Summer Festival.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.0998322,\"Long\":77.1752727,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/The_Ridge_1_1518412007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1070,\"Title\":\"Manu Temple\",\"Description\":\"Manu Temple is dedicated to holy sage Manu,who is believed to be the creator of human race. It is said to be the only temple of Manu in India.The temple is in Pagoda style of structure which offers quite a glimpse into history, spirituality as well as a fascinating style of architecture.The temple is surrounded by breathtaking view of mountains and valleys. The Manu temple holds a  great amount of significance for the pilgrims.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Manu_Temple_16593_1518519632.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1861,\"Title\":\"Vashisht Village\",\"Description\":\"Vashisht village is a green patch of steep hill hanging at the base on a cliff, located at a\\r\\ndistance of 6kms from the Manali on the bank of river Beas. Most tourists prefer to here or at\\r\\nthe Old Manali than the downtown Manali. Vashisht has rich traditions and nice cafes for the\\r\\nbackpackers. Vashisht was named after Rishi Vashisht who was one of the seven sages of\\r\\nHindu. The village of vashisht is famous for the Vashisht temple, popular for hot springs.\\r\\nAnother ancient temple is Rama temple, a stone temple. This village is also popular for\\r\\nwoolen clothes.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4306\\/thumb\\/Vashisht Village_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":719,\"Title\":\"Jagatsukh\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2433882,\"Long\":77.1891286,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/182\\/thumb\\/Jagatsukh_18.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null},{\"RefSSId\":1175,\"Title\":\"Naggar Castle\",\"Description\":\"Naggar Castle is a famous castle located at a distance of 20km from Manali.It  is a magnificent historical structure which was built by Raja Sidhi Singh in 1460 AD.Naggar Castle is an impressive combination of European and Himalayan architecture. It has traditional architecture called Kathkooni, which uses a combination of stones and wooden beams. The castle provides awe inspiring views of the Kullu Valley and rests in peaceful reverie as the holy river of Beas flows merrily by.Naggar Castle is a beautiful combination of Indian and western sensibilities of architecture.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Naggar_Castle_16593_1518509589.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5910,\"SupplierName\":\"SARVATRAH\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"181541\",\"Title\":\"Delhi - Shimla (345 Km)\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;On your arrival in Delhi Airport or railway station Our driver will meet you and drive you to Shimla. Shimla is capital of Himachal Pradesh and former capital of Britishers. The beautiful place nestled in the lap of Shivalik, mountains which offer some of the most beautiful views of Himalaya. After reaching there you will check-in to the hotel. Overnight stay at Shimla.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480833,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181544\",\"Title\":\"Shimla Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Today visit Shimla city including SankatMochan Temple and Jakhu Temple. Later Drive to KUFRI a beautiful snow hill station. a ride of about 40 minutes from the city centre, another must-visit place in the region. It is located at an elevation of 8607 ft; this small hill station promises you panoramic views of the surrounding snow-capped mountains. But Kufri is not just about Shimla sightseeing. It is also an adventure hub that offers training and facilities for exciting winter sports like ice-skating and skiing. That is why it is also known as the winter sports capital of India. Later in evening we will visit The Mall and The Ridge. Then we will drop you back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480833,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480836,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19279,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1607,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7431,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1767,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181547\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181550\",\"Title\":\"Shimla &acirc;&euro;&ldquo; Manali (248 kms) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After early breakfast you will proceed to Manali. Manali is a perfect hill station covered with snow mountains and beautiful water falls. On arrival check in at hotel. &amp;ndash; overnight stay at Manali.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181553\",\"Title\":\"Manali Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;In the morning after breakfast go for a city tour, we will visit Hadimba Devi Temple, Manu Temple, Tibetan Monastery and Vashisht village. Later we will visit Solang Valley.&lt;br \\/&gt;\\r\\nSolang Valley: - Solang Valley is a splendid valley between Solang village and Beas Kund. Solang valley offers the view of glaciers and snow-clad mountain peaks. Solang Valley has fine ski slopes. We will drive you back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2788,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1070,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1781,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1861,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181556\",\"Title\":\"Manali - Naggar, Kullu\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today enjoy full day excursion to splendid Kullu Valley. The Naggar castle is around 20 Km from Manali. Naggar also has a famous folk-art museum. We will Visit Naggar Castle and Jagatsukh Temple. Then we will drive to Kullu. You can spend some time here in Kullu Bazzar \\/ Dussehra Ground.&lt;br \\/&gt;\\r\\nThen we will be back to Manali. Overnight stay at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tour &amp;ndash; Rohtang Pass (At Extra Cost)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;World famous Rohtang Pass is situated at the altitude of 3980m. Through a breath-taking mountain world, the road leads upwards, from where you can have an amazing view of Himalayan-Chain. On the north side lays the Chandra Valley of Lahaul. Return to hotel. Overnight stay at the hotel.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480817,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":480835,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":480837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":719,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1175,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"181559\",\"Title\":\"Manali &acirc;&euro;&ldquo; Delhi (550 Km)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast check-out from the hotel and drive back to Delhi for your flight back to home&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25345\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17270.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":16694,\"priceDoubleOcc\":\"17270.00\",\"priceSingleOcc\":51810,\"priceExtraBed\":\"12952.50\",\"priceWithoutBed\":\"8635.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8635,\"CEB\":12952.5,\"COSTDO\":17270,\"COSTSO\":51810,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":15543,\"COSTTO\":15543}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"25346\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":21798,\"priceDoubleOcc\":\"22550.00\",\"priceSingleOcc\":67650,\"priceExtraBed\":\"16912.50\",\"priceWithoutBed\":\"11275.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11275,\"CEB\":16912.5,\"COSTDO\":22550,\"COSTSO\":67650,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":20295,\"COSTTO\":20295}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25347\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25410.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869},{\"From\":\"2023-08-25\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":24563,\"priceDoubleOcc\":\"25410.00\",\"priceSingleOcc\":76230,\"priceExtraBed\":\"19057.50\",\"priceWithoutBed\":\"12705.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25410,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12705,\"CEB\":19057.5,\"COSTDO\":25410,\"COSTSO\":76230,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22869,\"COSTTO\":22869}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare\\/Train if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan ( Breakast + Lunch + Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation by Dezire\\/Etios (02 Pax) and (for 04 - 06 Toyota Innova 08 - 10 Pax Tempo Traveler) for the entire tour as per Itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing and excursions as per the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Child of the age of below 5 Years to be&amp;nbsp;complimentary without extra bed&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"181541\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[181541],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;br&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181544\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[181544],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181547\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181547],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181550\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[181550],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181553\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[181553],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181556\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[181556],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"181559\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[181559],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Shimla,Manali','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali',NULL,'1,16593',17270,25410,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:44:38','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'queens-of-hills-ex-delhi',NULL,NULL,NULL,0),(407,25258,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25258,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/POCKET_FRIENDLY_ANDAMANS_92.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Andaman&amp;nbsp;is a perfect place to explore the beauty of marine life and relax by the side of the beaches for it&amp;nbsp;is home to many beautiful beaches and ridges.&amp;nbsp;It is enveloped in thick tropical forests and forms a disjointed and long chain of 527 islands in an arc formation. Fascinating you with its turquoise water, silver shimmering sand, and breathtaking corals, this tour offers you a perfect beach escapade amidst the glorifying shores.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"I Need Trip\",\"Name\":\"POCKET FRIENDLY ANDAMANS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481011,\"Name\":\"Hotel Sea Port\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Polytechnic Road, Dollygunj, Port Blair, Andaman and Nicobar Islands 744103\"},\"Images\":{\"Image\":[{\"ImagId\":4818078,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481011\\/5293_01617881816.jpg\"}]},\"CityId\":32511,\"Brief\":\"&lt;p&gt;Located just five minutes from the Veer Sarkar International Airport, Hotel Seaport is a brand new landmark in Port Blair. Covid protected &amp; refreshing with excited staff ready to treat the guests like kings &amp; queens. The hotel&amp;#39;s has two types of rooms. Premium &amp; Oriental. Premium rooms accommodates two pax &amp; Oriental room accommodates 4 pax. We are a friendly hotel and very accommodative too. Our chefs are multi-talented in variety of cuisines and guarantee an authentic taste whether it&amp;#39;s Indian or international or vegetarian or non-vegetarain. We welcome guests whether they are here for business or leisure. We will ask you for your specific requirements while booking to make your experience suited to your time in Andman. We can arrange tours, transportation &amp; make interesting suggestions that are must to see, do &amp; experience in Andaman. We are finishing up our all new freshwater swimming pool which will be open all year round. Our conference room is a top class business hub with all facilities included for a seminar&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481011\\/5293_f8e6a3c548401137b7cef6df49dafd251617881816.jpg\",\"AccoAminitiesMask\":\"1111010000001111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18884,\"Title\":\"Enjoy Sound and Light Show at Cellular Jail\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":19261,\"Title\":\"Tiranga Park, Anthropological museum and Nature Park & interpretation centre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481019,\"Name\":\"Senses Havelock Beach Resort\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"SH5, Govind Nagar, Havelock, Andaman and Nicobar Islands 744211\"},\"Images\":{\"Image\":[{\"ImagId\":4818083,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481019\\/5293_01617886399.jpg\"}]},\"CityId\":11658,\"Brief\":\"&lt;p&gt;The hotel&amp;#39;s top most priority is the guest&amp;#39;s comfort and maintaining the highest quality standard in hospitality. While making the guest feel at ease and well looked after, our friendly staff and excellent room facilities like the flat-screen HDTV, free Wi-fi,make sure that the stay is memorable.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481019\\/5293_02305d734b13eb1f034451cd013bf9751617886399.jpg\",\"AccoAminitiesMask\":\"1110010000001111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18884,\"Title\":\"Enjoy Sound and Light Show at Cellular Jail\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null},{\"RefSSId\":19261,\"Title\":\"Tiranga Park, Anthropological museum and Nature Park & interpretation centre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180975\",\"Title\":\"Arrival &acirc;&euro;&ldquo; Port Blair &acirc;&euro;&ldquo;   Cellular Jail -  Light &amp; Sound Show\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival to Port Blair. Our representative will meet and assist you at the Veer Savarkar Airport. Board the waiting vehicles, drive to your hotel and check in. Later in the afternoon visit Cellular jail followed by light and sound show. The Cellular Jail has a pride of place in India&amp;rsquo;s freedom struggle. Many a stalwart were imprisoned here. Declared a national memorial, this three-story prison constructed by Britishers in 1906, is a pilgrimage destination for freedom fighters. This colossal edifice has mutely witnessed the most treacherous of inhumane atrocities borne by the convicts, who were mostly freedom fighters. The day draws to a gentle close with the Sound and Light Show at the historic Cellular Jail which gives you a vivid experience of its strong association with the freedom fighters and their struggle for independence. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481011,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18884,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180976\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180977\",\"Title\":\"Port Blair - Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Today after breakfast you will transfer to Jetty. Head to Havelock Island on board Cruise connecting the two islands! Havelock, about 54 kilometers northeast of Port Blair, the Island is a hidden jewel. Few Indians know of this stunning beach destination in their own backyard while heading for Phuket (in Thailand) across the waters of Andaman Sea. Havelock is a serene tropical island encompassing about 86 square kilometers. Its clear waters are rated among the best in the world for snorkeling and scuba diving. Close to 1000 different species of marine life inhabit the waters of the Andaman Islands. Scuba divers can see nudibranchs, sea slugs and snails, varieties of ghost pipe fish, jaw fish and many different crustaceans of all shapes and sizes. With its serene beaches, 40 meters visibility underwater, colorful coral reefs and &amp;lsquo;far from the maddening crowd&amp;rsquo; appeal, Havelock Island has emerged as a dream destination among discerning travelers. Arrive at Havelock Jetty, you are met and assisted by our representative. Board the waiting vehicles and drive to the hotel. Check in at the hotel. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481019,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180978\",\"Title\":\"Havelock &acirc;&euro;&ldquo; Radha Nagar Beach \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today after breakfast, proceed for Radha Nagar Beach (or Beach No. 7) is the jewel in the crown of Havelock Island. Located on the western side of the island, it stands away from the cluster. The glorious white sand beach shot to global fame when Time magazine (in 2004) rated it as the finest in Asia. With lush tropical forest rising on a hill to one side, the draw of this white sand beach has steadily grown in the legion of avid beach buffs. The popularity of this beach has triggered cruises from across the Andaman Sea. Travelers cruise over a few days from Thailand to experience the magic of this beach. A wide beach that runs over a few kilometers, Radha Nagar is simply stunning. It lends itself to a variety of activities. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Did you know: Andamans is known for its marine life and it has world class Scuba Dive centers, Scuba doesn&amp;rsquo;t require swimming skills! Yes, many people do not attempt it thinking that knowing swimming is important, but that&amp;rsquo;s far from reality. Though we recommend you to book your Scuba in advance, Its safe and reliable.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481019,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180979\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180980\",\"Title\":\"Havelock to Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today in the morning have breakfast and Leisure. Afternoon Board the vehicles and drive to Havelock Jetty. From here sail to Port Blair on board Cruise. Upon arrival check into the hotel. Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Elephanta Beach :&lt;\\/strong&gt; Proceed for snorkeling at Elephant beach. Elephant Beach is a small pristine beach, rather remotely located, it can be reached by boat. The beach is also an extremely good place for snorkeling with an easily accessible house reef, which boasts of beautiful corals and other marine life. The beach has also emerged as Havelock&amp;rsquo;s favorite spot for scuba diving. It is tailor made to be a beginner&amp;rsquo;s dive site.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481011,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180981\",\"Title\":\"Port Blair - Corbin&acirc;&euro;&trade;s Cove Beach - Tiranga Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Today after breakfast embark for Tours. Tour 1 - Visit to Corbin&amp;rsquo;s Cove Beach. Tour 2 - Visit to Tiranga Park, Anthropological museum and Nature Park &amp;amp; interpretation centre. After Tours return to the hotel. Overnight at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481011,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19261,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180982\",\"Title\":\"Departure from Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Drop to Airport \\/ Harbor for Return journey with wonderful holiday memories&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"25258\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15290.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":14780,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":45870,\"priceExtraBed\":\"11467.50\",\"priceWithoutBed\":\"7645.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7645,\"CEB\":11467.5,\"COSTDO\":15290,\"COSTSO\":45870,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13761,\"COSTTO\":13761}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;3N in Hotel Sea Port- Port Blair&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2N in Senses Havelock Beach Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation with Breakfast&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Cellular Jail and Sound &amp;amp; Light show &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Corbin&amp;rsquo;s Cove Beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Tiranga Park, Anthropological museum and Nature Park &amp;amp; interpretation centre &amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Blue Flag certified- Radha Nagar Beach&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Monuments, Museums, Cultural Events and activities fees as per itinerary&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport\\/ Jetty Transfers in AC vehicle as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Transportation for local sight-seeing tours by AC Vehicle as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cruise transfers Port Blair &amp;ndash; Havelock &amp;ndash; Port Blair by Ferry&amp;nbsp;Subject to availability (base category)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180975\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[180975],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180976\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180976],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180977\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[180977],\"Remark\":[\"&lt;p&gt;TRANSFER TO HAVELOCK BY JETTY&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180978\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[180978],\"Remark\":[\"&lt;p&gt;TRANSFER BY JETTY&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180979\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180980\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[180980],\"Remark\":[\"&lt;p&gt;TRANSFER TO PORT BLAIR&Acirc;&nbsp;BY JETTY&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180981\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[180981],\"Remark\":[\"&lt;p&gt;TRANSFERS BY CAB\\/JETTY&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"180982\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[180982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island',NULL,'32511,11658',15290,15290,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:45:17','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'pocket-friendly-andamans',NULL,NULL,NULL,0),(408,25218,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25218,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/embudu_village_resort_-_split_stay_1627643954.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Located in South Male&amp;rsquo; Atoll, it takes 20 minutes&amp;rsquo; speedboat ride from Velana International Airport to reach the island. This simple yet naturally beautiful private island is 1.9 mi long and takes about 5 minutes to walk from one end to the other. Blessed with a beautiful white sandy beach, the island itself is an beautiful natural hideaway, with lush tropical vegetation and opal white beaches. The hotel features beautiful cozy rooms including Beach Bungalows and Water Villas. Embudu is famous for its stunning house reef and spectacular world class dove sites which 35 of them are in close proximity. Rays, sharks, turtles, morays and many other amazing creatures can be found in the house reef alone. With some of the most experienced dove instructors in the industry; Diverland &amp;ndash; Embudu offers extensive range of scuba diving courses from Discover Scuba dove to Dove master courses. Whether a professional diver or an amateur, guests are in good hands when diving with Diverland. A variety of exciting excursions can also be provided. The Serena Spa &amp;ndash; an international wellness group at Embudu offers wide range of massages and rejuvenating packages for those looking for a more relaxing holiday.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"EMBUDU VILLAGE RESORT - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480858,\"Name\":\"Embudu Village Maldives\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Embudu Village South Male atoll, 20012, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"&lt;p&gt;It happens rarely - arriving somewhere new and feeling instantly at home. At Embudu Village Resort, we make it happen everyday. Whether you&acirc;&euro;&trade;re joining us for the first time, or you&acirc;&euro;&trade;re returning for your twentieth visit, we know you&acirc;&euro;&trade;ll fit right in. Kick off your shoes at the jetty, switch off your phone and put your feet up.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1111111110011111000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2 nights Garden Villa 2nt Water Villa\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180694\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - SUPERIOR ROOM&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Simple and tasteful, your veranda opens right up to the beach.&amp;nbsp;Somewhere where there&amp;rsquo;s peace, a place where you could really rest.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Well our Superior rooms&amp;nbsp;offer whitewashed&amp;nbsp;walls, rustic hardwood furniture, quality fixtures and high ceilings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - WATER BUNGALOW&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Spacious and warmly designed, the water bungalows are set along the far end of the island each with a private balcony offering an infinite view of the ocean.&amp;nbsp;In these aesthetic&amp;nbsp;water bungalows you&amp;rsquo;ll fall asleep in a four-poster bed, lulled by the sounds of the waves.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480858,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 nights Garden Villa 2nt Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180695\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480858,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 nights Garden Villa 2nt Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180696\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480858,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 nights Garden Villa 2nt Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180697\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480858,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 nights Garden Villa 2nt Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180698\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480858,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"2 nights Garden Villa 2nt Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25218\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"107140.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103569,\"priceDoubleOcc\":\"107140.00\",\"priceSingleOcc\":299992,\"priceExtraBed\":\"80355.00\",\"priceWithoutBed\":\"53570.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53570,\"CEB\":80355,\"COSTDO\":107140,\"COSTSO\":299992,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96426,\"COSTTO\":96426}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Garden Villa + 2 Nights Stay in Villa on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Speedboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkeling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;a fruit basket in the room once during the stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;small honeymoon cake in the room&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Room decoration once during the stay&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;small bottle of Red \\/ white wine in the room&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180694\":[{\"Sequence\":[0],\"TPInvnSysId\":[180694],\"Remark\":[\"&lt;p&gt;RETURN AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180695\":[{\"Sequence\":[0],\"TPInvnSysId\":[180695],\"Remark\":[\"&lt;p&gt;RETURN AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180696\":[{\"Sequence\":[0],\"TPInvnSysId\":[180696],\"Remark\":[\"&lt;p&gt;RETURN AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180697\":[{\"Sequence\":[0],\"TPInvnSysId\":[180697],\"Remark\":[\"&lt;p&gt;RETURN AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"180698\":[{\"Sequence\":[0],\"TPInvnSysId\":[180698],\"Remark\":[\"&lt;p&gt;RETURN AIRPORT TRANSFERS BY SPEED BOAT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',107140,107140,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:45:53','2023-09-07 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'embudu-village-resort-split-stay',NULL,NULL,NULL,0),(409,25212,1,5293,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":25212,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/REETHI_FARU_RESORT_-_SPLIT_STAY_85.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Welcome to Reethi Faru, a luxurious escape on the secluded private island of Filaidhoo. Experience this one-of-a-kind tropical island paradise, where the glistening crystal clear ocean meets the endless white coral sand and with its lush tropical foliage turning it into a truly magical lagoon escape. From the moment you set foot onto this paradise surrounded by light blue waters lapping onto the soft sandy beach, you will feel immersed in serenity. A unique haven of tranquility, yet with a vast array of experiences and activities you can choose from to enjoy during your stay.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"I Need Trip\",\"Name\":\"REETHI FARU RESORT - SPLIT STAY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Airport Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480857,\"Name\":\"Reethi Faru Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Filaidhoo, Maldives\"},\"Images\":{\"Image\":[{\"ImagId\":4818047,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480857\\/5293_01617803196.jpg\"}]},\"CityId\":16505,\"Brief\":\"&lt;p&gt;Set on the compact island of Baa Atoll, this relaxed beach resort is composed of villas built from natural materials.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The detached or semi-detached villas with a tropical vibe, offer flat-screen TVs, partial open-air bathrooms, and terraces or balconies. Upgraded units add ocean-views, tea and coffeemakers, and sitting areas; some are built on stilts over the lagoon.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A breakfast buffet is free. Private dining is available, as well as 10 restaurants, cafes and bars, which include poolside and beachfront locations. There&amp;#39;s a multi-lingual dive centre, a spa, and a gym with a squash court. Tours and activities such as windsurfing are offered&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_480857\\/5293_525a0ad754bbec32d8c7ae9deab883761617803196.png\",\"AccoAminitiesMask\":\"1111111110001100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"2 Nights Garden Villa  2 Nights Water Villa\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"180624\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;STAY 1 - GARDEN VILLA&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nDesigned with a contemporary flair yet fused with tropical chic,each villa is surrounded by local flora and offers the tranquility of your home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;STAY 2 - WATER VILLA&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThis is your space, with a sky that is your own. If gazing at the stars or soaking the view holding hand in hand in a private setting sound romantic, then this is it. These Villas come with beautiful natural lights, wooden ceiling and warm d&amp;eacute;cor often brushed by a fresh breeze.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480857,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"2 Nights Garden Villa  2 Nights Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180625\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480857,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"2 Nights Garden Villa  2 Nights Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180626\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480857,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"2 Nights Garden Villa  2 Nights Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180627\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480857,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"2 Nights Garden Villa  2 Nights Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"180628\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480857,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"2 Nights Garden Villa  2 Nights Water Villa\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"25212\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"107250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525},{\"From\":\"2023-07-28\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":103675,\"priceDoubleOcc\":\"107250.00\",\"priceSingleOcc\":300300,\"priceExtraBed\":\"80437.50\",\"priceWithoutBed\":\"53625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":107250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":53625,\"CEB\":80437.5,\"COSTDO\":107250,\"COSTSO\":300300,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":96525,\"COSTTO\":96525}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights Stay in Garden Villa&amp;nbsp;+ 2 Nights Stay in Water Villa on Double Sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Board Meal Plan (Breakfast \\/ Lunch \\/ Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by Seaplane&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Snorkelling equipment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes if any&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax \\/ GST Included.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies :-&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tropical Fruit Basket on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bed Decoration from Reethi Garden flowers.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Special Candle lit set menu dinner with a bottle of wine at a location \\/ Restaurant decided by the resort.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"180624\":[{\"Sequence\":[0],\"TPInvnSysId\":[180624],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"180625\":[{\"Sequence\":[0],\"TPInvnSysId\":[180625],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"180626\":[{\"Sequence\":[0],\"TPInvnSysId\":[180626],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"180627\":[{\"Sequence\":[0],\"TPInvnSysId\":[180627],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"180628\":[{\"Sequence\":[0],\"TPInvnSysId\":[180628],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',107250,107250,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'Maldives','133','2023-09-07 12:46:24','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'reethi-faru-resort-split-stay',NULL,NULL,NULL,0),(415,23759,1,5293,0,0,0,'Honeymoon,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":23759,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Explore_Kerala__63.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Heaven on earth isn&amp;rsquo;t a dream, it&amp;rsquo;s a destination. Kerala tour is so easily and affordably accessible, you don&amp;rsquo;t even have to leave the country.&amp;nbsp; All you have to do is book a Kerala tour packages and hop on to the next flight, train or bus and make your way to the spectacular last stretch of the West Coast of India, to Kerala. Kerala holidays are popular around the world. A mesmerizing Kerala tour where the sublime beaches, cultural richness, historical depth, exotic wildlife, and beautiful mountainsides promise and our Kerala packages always deliver you an unforgettable getaway. So, are you ready to have yours?&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"I Need Trip\",\"Name\":\"EXPLORE KERALA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5671\",\"SupplierName\":\"CONTENTO TOURISM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Family,Hill Station\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":6561,\"Title\":\"Cochin\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477490,\"Name\":\"Sealord\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0554836\",\"Long\":\"76.2926513\",\"Address\":\"Cheranallur, Ernakulam, Kerala 682034, India\"},\"Images\":[],\"CityId\":6561,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477491,\"Name\":\"Hotel Presidency Kochi\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9904698\",\"Long\":\"76.2851182\",\"Address\":\"Paramara Road Ernakulam, Ernakulam North, Kacheripady, Kochi, Kerala 682018, India\"},\"Images\":[],\"CityId\":6561,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477492,\"Name\":\"Casino Cochin\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.985373599999999\",\"Long\":\"76.2774864\",\"Address\":\"Opp. Saritha Theatre, Banerji Rd, Kacheripady, Ernakulam, Kerala 682018, India\"},\"Images\":[],\"CityId\":6561,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18728,\"Title\":\"Chinese fishing nets\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18726,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18727,\"Title\":\"The Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18732,\"Title\":\"Mattupetti Dam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18733,\"Title\":\"Periyar National Park.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477499,\"Name\":\"Las Palmas Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0645293\",\"Long\":\"77.10076939999999\",\"Address\":\"NH 49, Devikulam P. O Munnar, Idukki Munnar,, Nullatanni, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477500,\"Name\":\"Eastend Hotel\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0872864\",\"Long\":\"77.06259109999999\",\"Address\":\"Temple Road, Silent Valley, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477501,\"Name\":\"Amber Dale Luxury Hotel and Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0516961\",\"Long\":\"77.04608549999999\",\"Address\":\"KSEB Tunnel Road, Pallivasal, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477502,\"Name\":\"Elixir Hills\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615536\",\"Long\":\"76.9884133\",\"Address\":\"Near Letchmi Tea Estate, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18728,\"Title\":\"Chinese fishing nets\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18726,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18727,\"Title\":\"The Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18732,\"Title\":\"Mattupetti Dam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18733,\"Title\":\"Periyar National Park.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475288,\"Name\":\"Aranya Nivas\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.578557499999999\",\"Long\":\"77.1801437\",\"Address\":\"Thekkady P.O., Kumily, Kerala 685536, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477503,\"Name\":\"Silver Crest\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.604489\",\"Long\":\"77.16722\",\"Address\":\"Kumily Thekkady Rd, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477504,\"Name\":\"Aranya Nivas\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.578557499999999\",\"Long\":\"77.1801437\",\"Address\":\"Thekkady P.O., Kumily, Kerala 685536, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":419344,\"Name\":\"Greenwoods Resort Thekkady\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6119437\",\"Long\":\"77.1572269\",\"Address\":\"K.K .Road, Kumily, Thekkady 685509, Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Thekkady Greenwoods Nature Resort is a popular choice amongst travelers in Thekkady, whether exploring or just passing through. The hotel has everything you need for a comfortable stay. All the necessary facilities, including tours, currency exchange, restaurant, valet parking, coffee shop, are at hand. Each guestroom is elegantly furnished and equipped with handy amenities. Take a break from a long day and make use of massage, children&#039;s playground, table tennis, outdoor pool, pool (kids). Friendly staff, great facilities and close proximity to all that Thekkady has to offer are three great reasons you should stay at Thekkady Greenwoods Nature Resort.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18728,\"Title\":\"Chinese fishing nets\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18726,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18727,\"Title\":\"The Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18732,\"Title\":\"Mattupetti Dam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18733,\"Title\":\"Periyar National Park.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":475317,\"Name\":\"Deluxe houseboats\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.513878199999999\",\"Long\":\"76.3384366\",\"Address\":\"Kaichoondi, Alappuzha, Kerala 688006, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477468,\"Name\":\"Kerala Premium Houseboats\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5001643\",\"Long\":\"76.35238939999999\",\"Address\":\"Punnamada, Finishing Point, Alappuzha, Kerala 688013, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18728,\"Title\":\"Chinese fishing nets\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18726,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18727,\"Title\":\"The Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18732,\"Title\":\"Mattupetti Dam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18733,\"Title\":\"Periyar National Park.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":14578,\"Title\":\"Kumarakom\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477506,\"Name\":\"The Club Kumarakom\",\"Star\":\".00\",\"Rating\":\"3.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5840441\",\"Long\":\"76.42216739999999\",\"Address\":\"Block No. 12, Near Navarazreth Church, Kumarakom South, Illikkalam Rd, likkalam, Kumarakom, Kerala 686563, India\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477507,\"Name\":\"Manor Backwater Resort\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.637585\",\"Long\":\"76.4321224\",\"Address\":\"Kareemadom Road, Cheepunkal, P.O, Kumarakom, Kerala 686563, India\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477508,\"Name\":\"Paradise Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.9473218\",\"Long\":\"79.3418385\",\"Address\":\"No. 3\\/1216, Main Road, Darasuram, Ammapet, Kumabakonam, Dharasuram, Tanjore, Tamil Nadu 612702, India\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477509,\"Name\":\"Lakesong Resort\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.594293199999997\",\"Long\":\"76.4259505\",\"Address\":\"Ammankari Road, 686563 Kumarakom,, Athikkalam, Kumarakom, Kerala 686563, India\"},\"Images\":[],\"CityId\":14578,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18728,\"Title\":\"Chinese fishing nets\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18726,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18727,\"Title\":\"The Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18732,\"Title\":\"Mattupetti Dam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":18733,\"Title\":\"Periyar National Park.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"169661\",\"Title\":\"Arrive Cochin\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Today arrive at Cochin International Airport. Meet and Greet by &amp;lsquo;Contento&amp;rsquo; representative who will be waiting for you outside the arrival terminal. The representative will assist you to the cab assigned for you.&amp;nbsp; Your 07 day tour in Kerala starts with your drive to your hotel in Cochin.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;This lovely seaside city is flanked by the Western Ghats on the east and the Arabian Sea on the west. Its proximity to the equator, the sea and the mountains provide a rich experience of a moderate equatorial climate. Strictly speaking, Cochin is a small town. But, Cochin has outgrown its original bounds and is now the general name given to much of the region adjoining the original town, which now includes Cochin, Fort Kochi, Mattanchery, Ernakulam and many other nearby towns and villages.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;On arrival, check in at the hotel and later proceed for a sightseeing tour of Cochin. Below are the places you will be covering in your short tour of Cochin.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Jewish Synagogue (&lt;span style=&quot;color:#0070c0&quot;&gt;Closed on Friday, Saturday and on Jewish Holidays&lt;\\/span&gt;) &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Jewish Synagogue, situated at one end of the Jew Street in the Jew Town enclave of Mattancherry in Fort Kochi. This synagogue was built in 1568 by the Malabar Yehudans or Cochin Jewish community. &lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;The Dutch Palace (&lt;span style=&quot;color:#0070c0&quot;&gt;Closed on Friday&lt;\\/span&gt;)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;The Mattancherry Palace is one of the finest examples of the Kerala style of architecture mixed with colonial influences. The Portuguese built it as a gift to King Veera Kerala Verma. &lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Chinese fishing nets&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Legend has it that the famous Chinese explorer, Zheng He, introduced the Chinese Fishing Nets to the fishermen in Kochi over 500 years ago. Even though he would leave, these would become staple sights in these parts. &lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;St. Francis Church (Closed on Sunday during Mass) &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later back to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6561,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477490,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477492,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18728,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18726,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3746,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18727,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169665\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6561,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169669\",\"Title\":\"Cochin &acirc;&euro;&ldquo; Munnar (155 kms \\/ 05 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning, after having breakfast from the hotel, drive to Munnar which will be not less than 05 hrs. En route you may stop to visit a couple of small water falls namely Cheeyapara and Valara. On reaching Munnar, Check in at your hotel and rest of the day is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477500,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169673\",\"Title\":\"In Munnar\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning after breakfast, set off to explore Munnar. Your visits for the day will feature the below places.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Eravikulam National Park (&lt;span style=&quot;color:#0070c0&quot;&gt;Closed during Feb &amp;amp; March&lt;\\/span&gt;)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Hidden inside Munnar, lies the famous Eravikulam National Park, the home and sanctuary of the Nilgiri Tahr. This sacred haven for this exotic animal is a relief in a time when different species are disappearing off the face of the planet. Situated in the Devikulam Taluk of Idukki district, people also flock to this park to view the special Neelakurinji flowers that bloom once every 12 years.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Tea Museum&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Tata Tea established a Tea Museum in 2005 which has photographs and machineries, which chronicle the journey of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea ensures that the legacy of those who worked hard to ensure the tea plantations survived this long is recognised publicly.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mattupetti Dam&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Mattupetty Dam is a strong gravity dam which was constructed for power generation and water conservation. Located in the Munar hills near the Anamudi peak, the dam is situated 1700 meters high. The green valleys and pleasant ambience surrounding make up for a captivating site.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive back to hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477500,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18732,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169677\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169681\",\"Title\":\"Munnar &acirc;&euro;&ldquo; Thekkady (130 kms \\/ 04 hrs)\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;This morning after breakfast you will bid-adieu to the beautiful destination and its lovely tea estates. Your next destination is Thekkady, where you have Periyar National Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;The very sound of the word Thekkady conjures up images of elephants, Thekkady is one of the finest wildlife reserves in India. Spreads across the entire district are the picturesque plantations and hill towns that nestle beautiful trails for treks and mountain walks.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; On arrival check in at the hotel. After noon you are free to explore the destination and go for optional activities like boating, elephant ride etc. on direct payment. Later back to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477503,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477504,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475288,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18733,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169685\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169689\",\"Title\":\"Thekkady &acirc;&euro;&ldquo; Alleppey (190 kms \\/ 4.5 hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today morning after breakfast from the hotel, drive to Alleppey, also known as Venice of the East.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Alappuzha &amp;ndash; most still call it Alleppey &amp;ndash; is the hub of Kerala&amp;#39;s backwaters, home to a vast network of waterways and more than a thousand houseboats. Wandering around the small but chaotic city centre and bus-stand area, with its modest grid of canals, you&amp;#39;d be hard-pressed to agree with the &amp;#39;Venice of the East&amp;#39; tag.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival embark a private houseboat which will be waiting for you. Enjoy traditional lunch and dinner on board. The cruise today will be from 1200 noon to 1700 hrs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Houseboats in Kerala, south India, are huge, slow-moving barges used for leisure trips. They are a reworked model of Kettuvallams (in the Malayalam language, Kettu means &amp;quot;tied with ropes&amp;quot;, and vallam means &amp;quot;boat&amp;quot;), which, in earlier times, were used to carry rice and spices from Kuttanad to the Kochi port. Kerala houseboats were considered a convenient means of transportation.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay on board houseboat&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169693\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169697\",\"Title\":\"Alleppey - Kumarakom\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning after breakfast from the houseboat disembark, and drive to Kumarakom, another backwater village on the banks of Vembanadu Lake. On reaching, check in at the hotel and rest of the day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Kumarakom is a village on Vembanad Lake in the backwaters of Kerala, southern India. It&amp;rsquo;s laced with canals, where houseboats ply the waters. Kumarakom Bird Sanctuary is home to many species including cuckoos and Siberian storks. Nearby, the Bay Island Driftwood Museum displays wooden sculptures. In the lake, Pathiramanal Island is a haven for rare migratory birds.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14578,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477506,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477507,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477508,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477509,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169701\",\"Title\":\"Kumarakom &acirc;&euro;&ldquo; Cochin Drop\\t\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;This morning after breakfast from Check out and drive Cochin. Drop at Cochin Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Tour Ends~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14578,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23759\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23760\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":19672,\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":61050,\"priceExtraBed\":\"15262.50\",\"priceWithoutBed\":\"10175.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10175,\"CEB\":15262.5,\"COSTDO\":20350,\"COSTSO\":61050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":18315,\"COSTTO\":18315}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23761\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":23925,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":74250,\"priceExtraBed\":\"18562.50\",\"priceWithoutBed\":\"12375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12375,\"CEB\":18562.5,\"COSTDO\":24750,\"COSTSO\":74250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":22275,\"COSTTO\":22275}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23762\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":28178,\"priceDoubleOcc\":\"29150.00\",\"priceSingleOcc\":87450,\"priceExtraBed\":\"21862.50\",\"priceWithoutBed\":\"14575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14575,\"CEB\":21862.5,\"COSTDO\":29150,\"COSTSO\":87450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":26235,\"COSTTO\":26235}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Above is a quotation and no booking or blocking has been made.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above rates are net and non-commissionable&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of above mentioned hotels are not available at the time of confirmation, alternate similar hotels will be provided&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel check in time is 1400 hrs and check out is 1200 hrs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Only 01 extra person is allowed in a room. Extra person shall be provided with either an extra bed or an extra mattress depending on the hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above rates are valid for this enquiry and any change in travel date will change the quote&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All hotel rooms considered are basic rooms and any upgrades to higher category will be on additional payment&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel rooms in Munnar &amp;amp; Thekkady will be Non AC due to the cold climate in the destination&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Deluxe houseboat will have AC functioning from 2100 hrs to 0600 hrs and cruise will be from 1200 hrs to 1700 hrs and 0800 hrs to 0900 hrs&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Any Flight fare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any Entrance fees during sightseeing&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any guide charges&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any meals which is not mentioned in the program&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any activity which is not mentioned in the program&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expense of personal nature such as laundry, drinks, tipping, telephone etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera\\/Video charges at monuments&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Accommodation in a Dbl sharing room&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Daily breakfast at hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All meals during stay in Houseboat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Transportation by AC Med Car \\/ AC Innova\\/AC Tempo as per pax strength&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All toll\\/parking, driver allowances&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All presently applicable taxes EXCEPT GST on total invoice&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;NOTE : YOUR CAN OPT FOR UPGRADE TO MAP MEAL PLAN AT AN ADDITIONAL COST OF INR 3500 PER PERSON APPROX.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"169661\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[169661],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169665\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169665],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169669\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169669],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169673\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169673],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169677\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169677],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169681\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169681],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169685\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169685],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169689\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169689],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169693\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[169693],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169697\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[169697],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169701\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[169701],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Cochin,Munnar,Thekkady,Alleppey,Kumarakom','Cochin,Kerala,Indian Subcontinent,South India,India,Munnar,Thekkady,Alleppey,Kumarakom',NULL,'6561,18697,27156,670,14578',18150,29150,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:50:15','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'explore-kerala',NULL,NULL,NULL,0),(416,23713,1,5293,0,0,0,'Honeymoon,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":23713,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/Essential_Kerala_56.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Embraced by the Malabar Coast, jotted by lush coconut groves and fringed by a network of canals, holidays in Kerala or God&amp;#39;s Own Country is all about the pristine and untouched beauty of Mother Nature. Adding more to this, the Amazing Munnar-Thekkady-Alleppey Tour will introduce you to the enchanting beauty of Kerala.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENTIAL KERALA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5671\",\"SupplierName\":\"CONTENTO TOURISM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Breakfast & Dinner,Welcome Drink,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477448,\"Name\":\"Las Palmas Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0645293\",\"Long\":\"77.10076939999999\",\"Address\":\"NH 49, Devikulam P. O Munnar, Idukki Munnar,, Nullatanni, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":456343,\"Name\":\"Any Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477450,\"Name\":\"Las Palmas Hotel\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0645293\",\"Long\":\"77.10076939999999\",\"Address\":\"NH 49, Devikulam P. O Munnar, Idukki Munnar,, Nullatanni, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477452,\"Name\":\"Eastend Hotel\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0872864\",\"Long\":\"77.06259109999999\",\"Address\":\"Temple Road, Silent Valley, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477453,\"Name\":\"Amber Dale Luxury Hotel and Spa\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0516961\",\"Long\":\"77.04608549999999\",\"Address\":\"KSEB Tunnel Road, Pallivasal, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477456,\"Name\":\"Elixir Hills\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615536\",\"Long\":\"76.9884133\",\"Address\":\"Near Letchmi Tea Estate, Munnar, Kerala 685612, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":477464,\"Name\":\"Silver Crest\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.604489\",\"Long\":\"77.16722\",\"Address\":\"Kumily Thekkady Rd, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477465,\"Name\":\"Aranya Nivas\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.578557499999999\",\"Long\":\"77.1801437\",\"Address\":\"Thekkady P.O., Kumily, Kerala 685536, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":419344,\"Name\":\"Greenwoods Resort Thekkady\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6119437\",\"Long\":\"77.1572269\",\"Address\":\"K.K .Road, Kumily, Thekkady 685509, Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Thekkady Greenwoods Nature Resort is a popular choice amongst travelers in Thekkady, whether exploring or just passing through. The hotel has everything you need for a comfortable stay. All the necessary facilities, including tours, currency exchange, restaurant, valet parking, coffee shop, are at hand. Each guestroom is elegantly furnished and equipped with handy amenities. Take a break from a long day and make use of massage, children&#039;s playground, table tennis, outdoor pool, pool (kids). Friendly staff, great facilities and close proximity to all that Thekkady has to offer are three great reasons you should stay at Thekkady Greenwoods Nature Resort.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475288,\"Name\":\"Aranya Nivas\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.578557499999999\",\"Long\":\"77.1801437\",\"Address\":\"Thekkady P.O., Kumily, Kerala 685536, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456343,\"Name\":\"Any Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":473992,\"Name\":\"Overnight Journey\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"0\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475317,\"Name\":\"Deluxe houseboats\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.513878199999999\",\"Long\":\"76.3384366\",\"Address\":\"Kaichoondi, Alappuzha, Kerala 688006, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":475547,\"Name\":\"Alleppey Deluxe Houseboat\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.5014469\",\"Long\":\"76.3517957\",\"Address\":\"Finishing Point Road, Punnamada, Finishing Point, Alappuzha, Kerala 688013, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":477468,\"Name\":\"Kerala Premium Houseboats\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.5001643\",\"Long\":\"76.35238939999999\",\"Address\":\"Punnamada, Finishing Point, Alappuzha, Kerala 688013, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":5671,\"SupplierName\":\"CONTENTO TOURISM PVT LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"169360\",\"Title\":\"Arrive Cochin &acirc;&euro;&ldquo; Drive to Munnar\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Today arrive at Cochin International Airport. Meet and Greet by &amp;lsquo;&lt;strong&gt;I Need Trip&lt;\\/strong&gt;&amp;rsquo; representative who will be waiting for you outside the arrival terminal. The representative will assist you to the cab assigned for you.&amp;nbsp; Your 04 day tour in Kerala starts with your drive straight to Munnar.&amp;nbsp; En route you may stop to visit a couple of small water falls namely Cheeyapara and Valara. On reaching Munnar, Check in at your hotel and rest of the day is at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456343,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477450,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477452,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477453,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477456,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169364\",\"Title\":\"In Munnar (Local Sightseeing)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning after breakfast, set off to explore Munnar. Your visits for the day will feature the below places.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Eravikulam National Park (&lt;span style=&quot;color:#0070c0&quot;&gt;Closed during Feb &amp;amp; March&lt;\\/span&gt;)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Hidden inside Munnar, lies the famous Eravikulam National Park, the home and sanctuary of the Nilgiri Tahr. This sacred haven for this exotic animal is a relief in a time when different species are disappearing off the face of the planet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Tea Museum&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;The museum set up at the Nallathanni Estate of Tata Tea ensures that the legacy of those who worked hard to ensure the tea plantations survived this long is recognised publicly.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mattupetti Dam&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Mattupetty Dam is a strong gravity dam which was constructed for power generation and water conservation. Located in the Munar hills near the Anamudi peak, the dam is situated 1700 meters high.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul style=&quot;list-style-type:square&quot;&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Echo Point&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Located at an altitude of 600 ft. and at a distance of about 15 kilometres from Munnar, the scenic beauty of Echo Point is quite captivating.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive back to hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":false,\"Id\":456343,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":true,\"Id\":477448,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477450,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477452,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":477453,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477456,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169368\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169372\",\"Title\":\"Munnar - Thekkady (130 kms \\/ 04 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning after breakfast drive to Thekkady aka Periyar. The destination is known for its Periyar Tiger Reserve. On arrival check in at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;The Periyar Lake formed by the construction of the dam across the Mullaperiyar River in 1895, the lake harbors within itself a unique aquatic ecosystem. The numerous little islets in the lake are witness to the intricate inherent interrelationship among the terrestrial aquatic and subterranean life forms. &lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon you have plenty of optional activities like Boating in Periyar Lake, Spice plantation visit or Elephant ride on direct payment basis. Later back to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":477464,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":477465,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":475288,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169376\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169380\",\"Title\":\": Thekkady &acirc;&euro;&ldquo; Allepey (190 kms \\/ 05 hrs)\\t [Breakfast, Lunch and Dinner\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;This morning after breakfast you will bid-adieu to the beautiful destination and its lovely tea estates. Your next destination is Alleppey, the Venice of the East.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival embark a private houseboat which will be waiting for you. Start your cruise in a houseboat through narrow canals to live through an un matching experience. Enjoy traditional lunch and dinner on board. The cruise today will be from 1200 noon to 1700 hrs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay on board houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":475317,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":475547,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":475547,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":456343,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":473992,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":477468,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"169384\",\"Title\":\"Alleppey - Cochin\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;This morning after breakfast from the houseboat, disembark and drive to Cochin. You will enjoy one hour cruise this morning before disembarking. Drive to Cochin. If time permits you can have a short sightseeing tour of Cochin. Later drop at Cochin Airport to board your flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"23713\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":13292,\"priceDoubleOcc\":\"13750.00\",\"priceSingleOcc\":41250,\"priceExtraBed\":\"10312.50\",\"priceWithoutBed\":\"6875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6875,\"CEB\":10312.5,\"COSTDO\":13750,\"COSTSO\":41250,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":12375,\"COSTTO\":12375}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"23714\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15950.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":15418,\"priceDoubleOcc\":\"15950.00\",\"priceSingleOcc\":47850,\"priceExtraBed\":\"11962.50\",\"priceWithoutBed\":\"7975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7975,\"CEB\":11962.5,\"COSTDO\":15950,\"COSTSO\":47850,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":14355,\"COSTTO\":14355}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"23715\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18150.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":17545,\"priceDoubleOcc\":\"18150.00\",\"priceSingleOcc\":54450,\"priceExtraBed\":\"13612.50\",\"priceWithoutBed\":\"9075.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9075,\"CEB\":13612.5,\"COSTDO\":18150,\"COSTSO\":54450,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16335,\"COSTTO\":16335}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"23716\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305},{\"From\":\"2023-08-07\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":20735,\"priceDoubleOcc\":\"21450.00\",\"priceSingleOcc\":64350,\"priceExtraBed\":\"16087.50\",\"priceWithoutBed\":\"10725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10725,\"CEB\":16087.5,\"COSTDO\":21450,\"COSTSO\":64350,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":19305,\"COSTTO\":19305}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Base category rooms are incorporated at all places.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel rooms in Munnar and Thekkady are Non AC due to the climatic conditions&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Deluxe houseboat will have AC from 2100 hrs to 0600 hrs. Cruise from 1200 noon to 1700 hrs and 0800 hrs to 0900 hrs&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span style=&quot;color:red&quot;&gt;Rates are not applicable during long weekends and festival days&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in Double&amp;nbsp;sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meal plan as per package selection&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportation as per the program (AC Med car \\/ AC Innova \\/ AC Tempo)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transport related expense such as toll\\/parking, driver allowance, fuel, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All presently applicable taxes EXCEPT GST on total invoice&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;NOTE&lt;\\/strong&gt;:&lt;strong&gt; OPTIONAL UPGRADATION TO MAP MEAL PLAN AT AN ADDITIONAL COST OF INR 2200 PER PERSON&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"169360\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[169360],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169364\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[169364],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"1,2\"]}},\"169368\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169368],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169372\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[169372],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169376\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169376],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169380\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[169380],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"169384\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[169384],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"1\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Munnar,Thekkady,Alleppey','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Cochin',NULL,'18697,27156,670',13750,21450,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'India','101','2023-09-07 12:50:41','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'essential-kerala',NULL,NULL,NULL,0),(417,22820,1,5293,0,0,0,'Honeymoon,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22820,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_LUXURY_HONEYMOON_PACKAGE_27.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;AFFLUENT HONEYMOON PACKAGE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;5 Nights 6 Days&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Honeymoon Freebies - Red Velvet Cake + Bottle of Sparkling Wine + Chocolate Box&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers by LEXUS&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Limousine Ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Yacht Ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Premium Desert Safari with Dinner at&amp;nbsp;Al Hadheerah Restaurant in&amp;nbsp;Bab Al Shams Desert Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Many more Inclusions&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"AFFLUENT HONEYMOON PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Romantic,Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":476072,\"Name\":\"Paramount Hotel Dubai\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.18643750000001\",\"Long\":\"55.2920625\",\"Address\":\"57PR+HR Business Bay - Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817929,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476072\\/5293_01616755794.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;&lt;br \\/&gt;\\r\\nThe glory of the golden age has rolled out its red carpet. This time, exclusively for you. Inspired by the rich history of Paramount Pictures, our hotel is set centre stage in the heart of Dubai&acirc;&euro;&trade;s dynamic Business Bay district, 16 km near to the Dubai International Airport. With Hollywood-themed rooms, Californian inspired cuisine and unequivocal entertainment, it&acirc;&euro;&trade;s time to script your own story at the Paramount Hotel Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set in the modern Business Bay district, this sleek hotel with an&lt;strong&gt; Old Hollywood theme is 3 km from the Dubai Mall, 10 km from Jumeirah Beach and 14 km from Dubai International Airport.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The airy, chic rooms provide flat-screen TVs, Wi-Fi, minifridges and Nespresso machines, plus sitting areas, and marble bathrooms with free-standing tubs and rainfall showers. The 1-bedroom themed suites add separate living rooms and\\/or kitchenettes. Some have city views. Room service is offered.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dining options include 2 restaurants, 2 bars, a patisserie and a relaxed cafe. There&acirc;&euro;&trade;s also a spa, an outdoor pool, a gym and a screening room. Breakfast is available.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_476072\\/5293_465c88e7a29e2864a89ade260ac6bb801616755794.jpg\",\"AccoAminitiesMask\":\"1111111010000100010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"SCENE ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":479711,\"Name\":\"Lapita Dubai Parks And Resorts Autograph Collection\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Dubai Parks &amp; Resorts, Sheikh Zayed Road, P.O.Box: 334221, Dubai   United Arab Emirates\"},\"Images\":{\"Image\":[{\"ImagId\":4817923,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_01616684528.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;With its Polynesian-inspired design and one-of-a-kind location, Lapita, Dubai Parks and Resorts, Autograph Collection is exactly like nothing else. We&amp;#39;re the only hotel within Dubai Parks and Resorts; RIVERLAND&acirc;&bdquo;&cent; Dubai, LEGOLAND&Acirc;&reg; Water Park, LEGOLAND&Acirc;&reg; Dubai, MOTIONGATE&acirc;&bdquo;&cent; Dubai and BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai are just a short walk away. Each of our accommodations showcases careful attention to detail, with artful styling and perks such as complimentary Wi-Fi, pillowtop beds, private balconies or terraces and marble bathrooms. Reserve one of our three villas to enjoy extra space, a plunge pool, a garden and picturesque views. Elsewhere at the hotel, we invite you to relax at the on-site spa, sample a flavorful meal from one of our several restaurants, sip a drink at our pool bar or take a dip in one of the temperature-controlled pools. Younger guests can have fun at the Kids and Teens Club and at the lazy river. For those planning events, our 26,296 square feet of flexible space is sure to inspire.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479711\\/5293_1d1e7fe9b738f28895305358b46437301616684528.jpg\",\"AccoAminitiesMask\":\"1111011000001110001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"ROOM WITH PARK ACCESS\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18530,\"Title\":\"1 Hour Yacht Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18429,\"Title\":\"Limousine Dubai Tour\",\"Description\":\"&lt;p&gt;Our limousine can comfortably accommodate 17 people. We also provide pick up and drop off services to your residence in Dubai. In addition to the Limousine tour package, our well trained courteous chauffer will help you explore Dubai&acirc;&euro;&trade;s riches in a way that is beyond your expectation. From the historic Dubai Creek, stupendous Jumeirah Mosque and picturesque Jumeirah Beach to the city&acirc;&euro;&trade;s modern highlights like Dubai Mall, Burj Al Arab, Madinat Jumeirah and the Palm Atlantis Hotel, our limo will take you on a magical ride through the Dubai&acirc;&euro;&trade;s scenic landscape, monumental heritage sites, towering attractions and architectural marvels in a royal and stylish manner. Apart from city tour, we make available our fleet of limousines to make your special occasions such as weddings, birthdays and prom night indeed special. So to turn your days in Dubai an experience worth treasuring and boasting, contact us to book a classy yet sophisticated ride on our luxurious limousine.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18435,\"Title\":\"Dubai Parks &amp; Resorts\",\"Description\":\"&lt;p&gt;Dubai Parks and Resorts is home to 3 world-class theme parks and 1 water park, a uniquely themed dining and retail destination and a Polynesian themed family resort. With over 100 rides, shows and attractions, Dubai Parks and Resorts have something to offer every member of the family.&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;MOTIONGATE&acirc;&bdquo;&cent; Dubai: MOTIONGATE&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the largest Hollywood-Inspired theme park in the region. Shoot at ghosts with the Ghostbusters, meet the Smurfs, hang with Shrek or join the Zoosters of Madagascar on an adrenaline-fueled escape! You can even learn Kung Fu with Po! With 27 immersive rides and attractions, exciting live entertainment and themed restaurants, MOTIONGATE&acirc;&bdquo;&cent; Dubai brings some of Hollywood&acirc;&euro;&trade;s most beloved films to life.&lt;\\/p&gt;&lt;p&gt;BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai: BOLLYWOOD PARKS&acirc;&bdquo;&cent; Dubai at Dubai Parks and Resorts, is the world&acirc;&euro;&trade;s first theme park with rides, spellbinding live shows and dramatic attractions based on Bollywood blockbusters. This captivating theme park features rides where you will be immersed in Mumbai&acirc;&euro;&trade;s famous movie industry chase Shahrukh Khan as the mafia boss Don!, fly with Hritihik in Krrish, and watch live performances including a stunt show with Salman Khan&acirc;&euro;&trade;s Chulbul Pandey.&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Dubai: Explore a world where the LEGO&Acirc;&reg; brick comes to life at LEGOLAND&Acirc;&reg; Dubai. The ultimate Theme Park for families with kids aged 2-12 at Dubai Parks and Resorts. Set your imagination racing with over 40 LEGO themed rides, shows and interactive building experiences together with over 15,000 LEGO models. It&acirc;&euro;&trade;s where awesome awaits!&lt;\\/p&gt;&lt;p&gt;LEGOLAND&Acirc;&reg; Water Park: Splash into a world of LEGO&Acirc;&reg; adventures at LEGOLAND&Acirc;&reg; Water Park, the Middle East&acirc;&euro;&trade;s only Water&lt;\\/p&gt;&lt;p&gt;Park designed for families with kids aged 2-12 at Dubai Parks and Resorts. Let your creativity and imagination flow with over 20 LEGO themed water slides and attractions, including the LEGO Wave Pool and DUPLO&Acirc;&reg; toddler play area. It&acirc;&euro;&trade;s where awesome awaits!&Acirc;&nbsp;&lt;\\/p&gt;&lt;p&gt;RIVERLAND&acirc;&bdquo;&cent; Dubai: Riverland&acirc;&bdquo;&cent; Dubai is a uniquely themed retail and dining destination that is free for everyone to enjoy and the gateway into Dubai Parks and Resorts. It is the perfect place for families and friends to come together to meet, relax and recharge as well as enjoy an amazing selection of over 50 dining and retail stores.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"163389\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel. Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"SCENE ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163390\",\"Title\":\"Modern Dubai City Tour + Burj Khalifa 124th Floor Non Prime Time\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"SCENE ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163391\",\"Title\":\"Premium Desert Safari with Dinner at Al Hadheerah Restaurant in Bab Al Shams Desert Resort \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"SCENE ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163392\",\"Title\":\"Limousine Ride + Yacht Ride\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"SCENE ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18530,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18429,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163393\",\"Title\":\"Interhotel Transfer to Lapita Resorts + Unlimited Access to Dubai Parks during the stay in Lapita Resorts\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479711,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"ROOM WITH PARK ACCESS\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18435,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"163394\",\"Title\":\"Departure to Dubai Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22820\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"68750.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":66458,\"priceDoubleOcc\":\"68750.00\",\"priceSingleOcc\":192500,\"priceExtraBed\":\"51562.50\",\"priceWithoutBed\":\"34375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34375,\"CEB\":51562.5,\"COSTDO\":68750,\"COSTSO\":192500,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":61875,\"COSTTO\":61875}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 Nights Stay at Paramount Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night Stay at Lapita Parks &amp;amp; Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon Freebies - Red Velvet Cake + Bottle of Sparkling Wine + Chocolate Box&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers by LEXUS&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Interhotel Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Modern Dubai City Tour + Burj Khalifa 124th Floor Non-prime time&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Limousine Ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Hour Yacht Ride&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Premium Desert Safari with Dinner at&amp;nbsp;Al Hadheerah Restaurant in&amp;nbsp;Bab Al Shams Desert Resort&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Unlimited Access to all Dubai Parks during the stay in Lapita Resorts ( Subject to operational days of parks )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All Tours &amp;amp; Transfers are on PVT Basis.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"163389\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[163389],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163390\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[163390],\"Remark\":[\"&lt;p&gt;Tour Transfers on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163391\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[163391],\"Remark\":[\"&lt;p&gt;Tour Transfer on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163392\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[163392],\"Remark\":[\"&lt;p&gt;Tour Transfers on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163393\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[163393],\"Remark\":[\"&lt;p&gt;Interhotel Transfer on PVT Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"163394\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[163394],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',68750,68750,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:51:47','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'affluent-honeymoon-package',NULL,NULL,NULL,0),(418,22719,1,5293,0,0,0,'Adventure,Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":22719,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/SPECTACULAR_SOUTH_AFRICA_-_7_DAYS_63.jpg\",\"BookingValidUntill\":\"2023-11-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;SPECTACULAR SOUTH AFRICA&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nA land of immense history and geographical diversity, South Africa is a must on any traveller&amp;rsquo;s bucket-list. For no matter the nature of your wanderlust, there&amp;rsquo;s a thrilling experience waiting to satisfy it. South Africa tourism has the ideal mix of wildlife, adventure sports, coastlines, wineries, even deserts!&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Duration :&lt;\\/strong&gt; 6&amp;nbsp;Nights 7&amp;nbsp;Days&lt;br \\/&gt;\\r\\n&lt;strong&gt;Cities Covered : &lt;\\/strong&gt;Cape Town,&amp;nbsp;Sun City &amp;amp; Johannesburg&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Johannesburg\",\"DestinationPlacesSysId\":13189,\"SourcePlaces\":\"Cape Town\",\"SourcePlaceSysId\":5069,\"AgencyName\":\"I Need Trip\",\"Name\":\"SPECTACULAR SOUTH AFRICA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5786\",\"SupplierName\":\"TRAVCARE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Adventure,Wildlife\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-11-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5069,\"Title\":\"Cape Town\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481476,\"Name\":\"Garden Court Nelson Mandela Boulevard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Corner of Melbourne and Coronation Roads, Cape Town, Western Cape, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818306,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_01618910832.jpg\"},{\"ImagId\":4818307,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_01618910851.jpg\"}]},\"CityId\":5069,\"Brief\":\"&lt;p&gt;Close to the central business district and the &lt;strong&gt;Cape Town International Convention Centre &lt;\\/strong&gt;and just 15 minutes from Cape Town International airport, the Garden Court Nelson Mandela Boulevard hotel is ideally suited to business and leisure travellers alike.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Garden Court Nelson Mandela Boulevard offers guests a choice of &lt;strong&gt;292 &lt;\\/strong&gt;Standard and Executive en-suite rooms, with views of Signal Hill and the harbour. Guests at our Woodstock hotel enjoy a host of amenities, which include a self-service workstation, conferencing facilities, a gift shop and more.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is located near Woodstock and provides a great base from which to explore Cape Town attractions such as the Victoria and Alfred Waterfront, the iconic Table Mountain and the Cape&acirc;&euro;&trade;s pristine beaches. Cape Town is one of the world&acirc;&euro;&trade;s foremost cities &acirc;&euro;&ldquo; and for comfort, convenience and affordability, Garden Court Nelson Mandela Boulevard is an outstanding choice.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481476\\/5293_4c47a2dee1bf78bca9cafb3cbc9ffda21618910832.png\",\"AccoAminitiesMask\":\"1111010010001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18473,\"Title\":\"half-day Mother City tour.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18474,\"Title\":\"Gold Reef City tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13189,\"CityName\":\"Johannesburg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":26381,\"Title\":\"Sun City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481482,\"Name\":\"The Cabanas Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sun City Resort, R556, Sun City, 0316, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818308,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481482\\/5293_01618914734.jpg\"}]},\"CityId\":26381,\"Brief\":\"&lt;p&gt;On the sprawling grounds of Sun City Resort, this modern hotel overlooks tropical gardens and a lake beach. It&amp;#39;s 3.1 km from Pilanesberg National Park, 3.9 km from Route 556 and 12.2 km from Pilanesberg International Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The airy rooms have relaxed interiors, and provide flat-screen TVs with satellite channels, safes, tea and coffeemaking facilities, and minibars. Some add sofabeds and\\/or lake views. Wi-Fi is available, and room service is offered.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Breakfast is free. There are 2 golf courses, plus a day spa, a stone maze, and a waterpark with a man-made beach. The resort also has &lt;strong&gt;21 restaurants and bars, a casino&lt;\\/strong&gt;, and a shopping centre.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481482\\/5293_8d7b1f774110f0452c7928d4643107191618914734.jpg\",\"AccoAminitiesMask\":\"1111011110001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18473,\"Title\":\"half-day Mother City tour.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18474,\"Title\":\"Gold Reef City tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13189,\"CityName\":\"Johannesburg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}},{\"CityId\":13189,\"Title\":\"Johannesburg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":481486,\"Name\":\"Centurion Hotel, A Legacy Hotel (Formerly Centurion Lake Hotel)\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"1001 Lenchen Ave N, Centurion Central, Centurion, 0046, South Africa\"},\"Images\":{\"Image\":[{\"ImagId\":4818309,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481486\\/5293_01618922046.jpg\"}]},\"CityId\":13189,\"Brief\":\"&lt;p&gt;Centrally located between Johannesburg and Pretoria, The Centurion Hotel offers exceptional value for the cost-conscious businessman or tourist, who is looking for excellent service and a tranquil setting or the perfect conference venue. Combined with easy access to both Johannesburg and Pretoria; located within easy walking distance of the Centurion Gautrain station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overlooking Centurion Lake, this straightforward hotel is a 5-minute walk from Centurion Mall and 14.5 km from downtown Pretoria.&lt;br \\/&gt;\\r\\nThe classic rooms (some with lake views) offer free Wi-Fi, flat-screen TVs, and tea and coffeemaking facilities. Suites add separate living areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A breakfast buffet is complimentary, and there&amp;#39;s a restaurant with a bar and terrace seating. There&amp;#39;s also an outdoor pool, a 24-hour business centre, 5 meeting rooms and parking.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_481486\\/5293_5e0a1afb4f6d50ef2c7f48697a640be91618922046.jpg\",\"AccoAminitiesMask\":\"1111110010001101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18473,\"Title\":\"half-day Mother City tour.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":7668,\"Title\":\"Cape Peninsula\",\"Description\":\"The Cape Peninsula is a generally rocky peninsula that juts out into the Atlantic Ocean at the south-western extremity of the African continent. At the southern end of the peninsula are Cape Point and the Cape of Good Hope. On the northern end is Table Mountain, overlooking Cape Town, South Africa.\",\"CurrencyType\":0,\"CityId\":5069,\"CityName\":\"Cape Town\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5069\\/sightseeing\\/Cape_Peninsula_5069_1545043613.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null},{\"RefSSId\":18474,\"Title\":\"Gold Reef City tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13189,\"CityName\":\"Johannesburg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"162688\",\"Title\":\"Cape Town : Upon arrival at Cape Town International Airport, a Travcare representative meets you for a transfer to your pre-booked hotel.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Cape Town is one of the most popular long-haul destinations in the world. Due to its unique topography, it is also one of the easiest places in which to orientate oneself as long as you remember that with Table Mountain behind you and Robben Island before you; you are facing north, looking across Table Bay and up the west coast of Africa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162689\",\"Title\":\"Cape Town : After breakfast leave on a half-day Mother City tour. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;You will go for a scenic coastal drive through Clifton &amp;amp; Sea Point &amp;amp; later tour passes the Houses of Parliament, the Castle, the SA Museum, and a few other historical sights &amp;ndash; District Six, Bo-Kaap, Slave Lodge &amp;amp; ending at the bustling Greenmarket Square.&amp;nbsp; A cable car ride, takes you up the Table Mountain (weather permitting otherwise Signal Hill) for a breath-taking view over the city (entrance is included) Return to your hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18473,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162690\",\"Title\":\"Cape Town : Breakfast is taken at the hotel. Depart on a full day Peninsula tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This comprehensive tour shows you the best of the spectacular Cape Peninsula and why it is it&amp;#39;s called the Fairest Cape. Travel past Sea Point and Camps Bay, past the famous beaches of Clifton and Llandudno towards Hout Bay. Drive along the Atlantic Seaboard. Pass through Noordhoek and Scarborough. Later you will take to the Cape of Good Hope Nature Reserve. Enjoy the funicular ride aboard the &amp;ldquo;Flying Dutchman&amp;rdquo; and enjoy the unforgettable spectacular views. Later get the photo opportunity to take some pictures at the second southernmost tip of the African continent. Visit the beautiful Boulders Beach, and have the option to sit among the famous colony of Jackass Penguins. Thereafter we enjoy a short stop at the naval port of Simon&amp;#39;s Town and know about the legend of &amp;ldquo;Able Seaman Just Nuisance&amp;rdquo; the Great Dane Dog that was inducted in Royal Navy. Return to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481476,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7668,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162691\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162692\",\"Title\":\"Cape Town - Johannesburg - Sun City : After breakfast transfer to George airport to board a flight to Johannesburg. On arrival you are met by a Travcare representative for a transfer to Sun City. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;The Sun City complex is surrounded by two championship golf courses, numerous swimming pools and a huge manmade lake offering various water sports. Optional activities include Hot Air Ballooning. Enjoy lunch at the Raj Indian Restaurant (own account). Then you could relax at the Valley of the Waves, or take a walk through the gardens of the Lost City. This magical city knows no limits - you have the chance to win a fortune at the Casino and Entertainment Centre, there are lavish extravaganzas and a multitude of restaurants to cater for every taste.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481482,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162693\",\"Title\":\"Sun City : Day at Leisure \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast you will enjoy your day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Optional game drives to Pilanesberg Nature Reserve to see the Big 5 (cost of the game drive is not included)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481482,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162694\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26381,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162695\",\"Title\":\"Sun City - Johannesburg : After breakfast leave for a Gold Reef City tour (Closed on Mondays and Tuesdays)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Where you will see reconstruction of Johannesburg during the Gold Rush era, built around a mine.&amp;nbsp; Activities include a Victorian fun fair, miners&amp;#39; houses, brewery, pubs, restaurants and stock exchange.&amp;nbsp; You can watch molten gold being poured and take a trip down an old mine shaft.&amp;nbsp; Tribal dancing adds to the fun. Return to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Overnight at hotel&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13189,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481486,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18474,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162696\",\"Title\":\"Johannesburg :  After breakfast, transfer to Or Tambo International for flight back home \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, transfer to Or Tambo International for flight back home&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13189,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"22719\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"68904.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5},{\"From\":\"2023-08-01\",\"To\":\"2023-11-30\",\"Currency\":1,\"priceTripleOcc\":66607,\"priceDoubleOcc\":\"68904.30\",\"priceSingleOcc\":192932.04,\"priceExtraBed\":\"51680.81\",\"priceWithoutBed\":\"34452.14\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68904.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":31,\"CWOB\":7342.5,\"CEB\":11014.3,\"COSTDO\":14685,\"COSTSO\":41118,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":13216.5,\"COSTTO\":13216.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;The above prices are subject to availability of flights and hotel accommodation and services at the time of processing the reservation.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The quote is based on the above hotels and any change will impact the cost. Long week-ends &amp;amp; school holidays in SA may attract a supplement.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The check-in time is 1430 hrs and check out time is 1030 hrs. Early check-in or a late checkout is not guaranteed and is only on request.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day vehicle is 8-9 hrs and half &amp;ndash; day is 4-5 hrs. On the Garden Route the vehicle is available for 10-12 hrs. Any extra hours required may not be allowed and is purely on request and will be charged for.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The drivers\\/guides may not stay in the same hotel as the clients. It is customary to pay 10% gratuity (tips) both to the driver and the guide to ensure a more pleasurable services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any unutilised entrances\\/sightseeing is non-refundable, however if any entrance is cancelled on account of weather, that refund can be adjusted against next booking or collected before departing South Africa. No remittances towards any refund will be done.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The amount paid at the time of booking confirmation and request of Visa Letter is adjusted in the final invoice. This amount will be Forfeited in the event of cancellation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The prices are nett with all bank charges to your account.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any cash payments made will attract 2% handling\\/cash deposit fees. All Master\\/Visa credit cards will attract 4% and American Express cards 5.75% handling fees.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We must receive the above nett quoted amounts in our bank, whether the amount transferred is in Dollar or Rand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Child policy in South Africa varies from hotel to hotel. In most of the hotels children will be accommodated in a family room subject to availability of such rooms.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Some hotels may not allow children below a certain age and some hotels don&amp;rsquo;t allow children to share in the same room with adults and will have to be accommodate in separate rooms since they do not have Family rooms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Most hotels consider children above 12 years as adults and charged accordingly&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;It is very important to check the child policy while requesting for a hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In South Africa, triple rooms are mostly higher category rooms and cost more than standard double\\/twin. Some hotels don&amp;rsquo;t allow triple sharing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cancellations 30-day prior to the client&amp;rsquo;s arrival is subject to a cancellation fee. 30% advance required at the time of booking and balance of full payment required 35 days prior to arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The prices may change, due to Rand\\/Dollar exchange rate fluctuations, revision in fuel prices or govt. levies \\/ duties, without notice. It is deemed our detailed terms and conditions applicable have been read, understood and agreed upon.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All flights, porterage and tips, mineral water, laundry, telephone or any other expense personal in nature.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Insurance, we strongly suggest that the passenger&amp;rsquo;s take out their own insurance before departing for South Africa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drinks and lunches\\/dinner except where mentioned&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Items of a personal nature, driver and guide gratuities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees and excursions not mentioned above&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porterage at hotels and airports&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses caused by reasons beyond our control such as bad weather, natural calamities (landslides, floods), flight delays, excess baggage, rescheduling or cancellations, any accidents, medical evacuations, riots, strikes, war, airline or hotel policies etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Meet and Greet Representation at the Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day &amp;ldquo;Cape Peninsula&amp;rdquo; &amp;amp; a half-day &amp;ldquo;Mother City&amp;rdquo; Tour in Cape Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation in standard rooms in above or similar on bed &amp;amp; breakfast basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp; sightseeing is on Private basis in an air conditioned luxury vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees as per the itinerary with Table Mountain Cable car ride.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;A guided tour to Gold Reef City with a qualified English guide.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162688\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162688],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162689\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162689],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&Acirc;&nbsp;BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162690\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162690],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&Acirc;&nbsp;BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162691\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162691],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162692\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162692],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162693\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162693],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162694\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162694],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162695\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162695],\"Remark\":[\"&lt;p&gt;TOUR ON PVT&Acirc;&nbsp;BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162696\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[162696],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Cape Town,Sun City,Johannesburg','Cape Town,Southern Africa,South Africa,Sun City,Johannesburg',NULL,'5069,26381,13189',68904,68904,6,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-11-30 00:00:00','2023-11-30 00:00:00',3,'South Africa','195','2023-09-07 12:53:14','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'spectacular-south-africa',NULL,NULL,NULL,0),(419,22707,1,5293,0,0,0,'Honeymoon',NULL,1,1,0,'{\"package\":{\"TPId\":22707,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_PREMIUM_HONEYMOON_PACKAGE__43.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;PREMIUM HONEYMOON PACKAGE&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;4 Nights &amp;amp; 5 Days&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One voucher of Lunch or Dinner for couple at Nine7One Restaurant in Oberoi Hotel (3 Course Set Menu)&lt;br \\/&gt;\\r\\nOne Souvenir per couple&lt;br \\/&gt;\\r\\nComplimentary Sparkling Wine bottle&lt;br \\/&gt;\\r\\nHoneymoon special amenities upon arrival&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"PREMIUM HONEYMOON PACKAGE \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479800,\"Name\":\"The Oberoi Hotel Al A\'amal Street Dubai\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Business Bay P.O. Box 71847 Dubai, United Arab Emirates\"},\"Images\":{\"Image\":[{\"ImagId\":4817932,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479800\\/5293_01616768887.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;Dubai is an international business centre and a global hub; a fantastic destination for luxury shopping, international cultural activities, wellness opportunities, water sports, desert safaris and even skiing. It&Acirc;&nbsp;is famed for its spectacular skyline and the iconic Burj Khalifa, which towers over the city at 2,722 feet (830 metres), making it&Acirc;&nbsp;the tallest building in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can enjoy superlative views of the Burj Khalifa from The Oberoi, Dubai at the enviable downtown address that befits the best hotel in Dubai, close to prominent business and leisure landmarks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Internationally acclaimed for taking care of its guests, our 5 star hotel in Dubai offers spacious, comfortable accommodation, fine dining to suit every palate and a 24 hour business centre equipped with all modern technologies. After a busy day at work or sightseeing, our comprehensive wellness facilities are the perfect solution to help you wind down.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479800\\/5293_b871810e86185afb79384aa0dfb9cc201616768887.png\",\"AccoAminitiesMask\":\"1111111010101111001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe City View Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"162626\",\"Title\":\"Delhi - Dubai (Arrival) + Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to the city of glitz, Dubai! On arrival, clear customs and immigration, collect your baggage and exit the airport. Our tour operator will meet you there for your transfer to the hotel. After check in, you can relax in your room for a while and remove jet lag.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, you can go for a self exploration of the glistening city. Just a stroll would give you a good experience of flamboyance of the city. Indulge in some local Arabic cuisine on your way back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: Standard Check in time at Hotel is 1400 hours &amp;amp; Early check in is Subject to Availability.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162627\",\"Title\":\"Half day modern Dubai tour with visit to man-made blue waters island + visit to Dubai mall with entrance to Burj khalifa 124th floor (standard time) + Dubai lake fountain ride\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162628\",\"Title\":\" Desert Safari in the Evening + Deluxe Camp with Butler service\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162629\",\"Title\":\"Canal Dhow Cruise in the evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479800,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe City View Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162630\",\"Title\":\"Departure to Dubai Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"22707\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":52635,\"priceDoubleOcc\":\"54450.00\",\"priceSingleOcc\":152460,\"priceExtraBed\":\"40837.50\",\"priceWithoutBed\":\"27225.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":27225,\"CEB\":40837.5,\"COSTDO\":54450,\"COSTSO\":152460,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49005,\"COSTTO\":49005}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights stay with breakfast at hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers - Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half Day Modern Dubai Tour with visit to Man-made Bluewaters Island - Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with dinner - Deluxe Camp with Butler service - Sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Canal Cruise with dinner - Private transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Dubai Mall with entrance to Burj Khalifa 124th Floor (Standard time) + Dubai Lake Fountain Ride - Private transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One voucher of Lunch or Dinner for couple at Nine7One Restaurant in Oberoi Hotel (3 Course Set Menu)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Souvenir per couple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Sparkling Wine bottle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon special amenities upon arrival&lt;br \\/&gt;\\r\\n\\t&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162626\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162626],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162627\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162627],\"Remark\":[\"&lt;p&gt;Tour on Private basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162628\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162628],\"Remark\":[\"&lt;p&gt;Tour on Sharing&Acirc;&nbsp;basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162629\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162629],\"Remark\":[\"&lt;p&gt;Tour on Private basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162630\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162630],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',54450,54450,4,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:53:44','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'premium-honeymoon-package',NULL,NULL,NULL,0),(420,22702,1,5293,0,0,0,'Honeymoon',NULL,1,1,0,'{\"package\":{\"TPId\":22702,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_-_LUXURY_HONEYMOON_PACKAGE_64.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;LUXURY HONEYMOON PACKAGE&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;5 Nights &amp;amp; 6 Days&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One voucher of Lunch or Dinner for couple at Signature By Sanjeev Kapoor Restaurant (3 Course Set Menu)&lt;br \\/&gt;\\r\\nOne complimentary 45 min SPA for 1 person during the stay. 50% discount for the second person&lt;br \\/&gt;\\r\\nOne Souvenir per couple&lt;br \\/&gt;\\r\\nComplimentary Sparkling Wine bottle&lt;br \\/&gt;\\r\\nHoneymoon special amenities upon arrival&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"LUXURY HONEYMOON PACKAGE\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479545,\"Name\":\"The Canvas Hotel MGallery Collection\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"23 Kuwait Street Port Rashid Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817894,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479545\\/5293_01616417971.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;Our 5-star hotel in old Dubai pays homage to the idea of the city as a blank canvas &acirc;&euro;&ldquo; a place of constant transformation where even the most impossible dreams can become a reality. In particular, Bur Dubai&acirc;&euro;&trade;s dual role as a historic centre and modern trendsetter have inspired our own outlook, which is both respectfully traditional and fiercely contemporary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From the moment you step into our glass-ceilinged atrium the stage is set for a memorable stay. Clear desert light filters down through eight floors to reflect off Helidon Xhixha&acirc;&euro;&trade;s polished steel wall art, a tribute to the beauty of Dubai&acirc;&euro;&trade;s night-time skyline. Burgundy leather sofas invite travel-weary legs to rest awhile and admire masterpieces by Emirati artists &acirc;&euro;&ldquo; proof of the city&acirc;&euro;&trade;s leadership in the spheres of art and culture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Perhaps you will dedicate your time to exploring Bur Dubai&acirc;&euro;&trade;s heritage &acirc;&euro;&ldquo; through a visit to the historic Al Bastakiya neighbourhood perhaps, or with a Memorable Moment tour of the Etihad Museum. Perhaps you&acirc;&euro;&trade;ll embrace the fast pace of modern Dubai instead, with heady days in the nearby gold souks and Arabian nights at our rooftop lounge. Either way, our luxury hotel in Bur Dubai is the ideal base for your Emirati adventures. In between discoveries, make your way to MYST Spa to recharge body and mind with a soak in the city&acirc;&euro;&trade;s largest private jacuzzi. Or revel in the tantalising scents and flavours served up at our celebrity restaurant, Signature by Sanjeev Kapoor.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479545\\/5293_94b89e450d152cdc8f28dc2bab6fbee51616417982.jpg\",\"AccoAminitiesMask\":\"1111101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18420,\"Title\":\"Morning Half Day Dubai City Tour\",\"Description\":\"&lt;p&gt;Situated in the east of the Arabian Peninsula and south west of the Arabian Gulf, Dubai is most celebrated for its constant sunshine, stunning coastline, and vast deserts, among others. One of the most ideal ways to discover and explore both the rich history along with the glittering modernity of Dubai on your holiday is the four-hour Dubai City Tour with Best Value Tourism. Get lost in the historical arts and artifacts of the city&acirc;&euro;&trade;s original heritage at the Dubai Museum which is structured within the beautifully restored Al Fahidi Fort, the oldest building in Dubai. Another historic and iconic landmark that you will visit is the Jumeirah Mosque that welcomes visitors of all faiths to learn about the local culture. Built entirely from white stone in the medieval Fatimid tradition, the intricate artistry and true beauty are a highlight you won&acirc;&euro;&trade;t miss. For a look at Dubai&acirc;&euro;&trade;s modern wonders, you will visit some of the most incredible locations such as the Burj Al Arab Hotel built on its own man-made island, the crescent shaped man-made Palm Islands that are lined with luxury hotels and residences, most significantly the Atlantis Hotel located at the apex of the Palm Jumeirah. And at the height of Dubai&acirc;&euro;&trade;s modernity is the towering Burj Khalifa. A drive down to the famous shopping malls and Sheikh Zayed Road is the perfect conclusion to this immersive tour of Dubai.&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715934.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Evening Desert Safari Tour with BBQ Dinner: Dune Bashing, Camel Riding, and More\",\"Description\":\"&lt;p&gt;Located very close to Dubai City in an exclusive area in Al Aveer, the Masyaf Desert Camp is a unique Oasis in the Desert. The Dunes around the Camp are isolated and fresh, giving a feeling of exclusivity. We drive you in 4-wheel SUVs through the desert for an exciting 20 minutes or so, taking you up and down the dunes, skidding - sliding &acirc;&euro;&ldquo; bashing these majestic giants. You end the thrilling ride to marvel at the breathtaking sunset over the horizon - a scenic end to an exhilarating drive. Next, we drive you to our camp for a taste of a traditional experience of the Bedouins.&lt;\\/p&gt;&lt;p&gt;The camp itself is a premium ethnic Bedouin camp. A deliberate attempt to stick to a rustic and original look and feel, avoiding being labelled as another restaurant in the desert. Our endeavour is to offer you tradition without compromising on quality and an authentically rich experience.&lt;\\/p&gt;&lt;p&gt;Traditional Gahwa (traditional Arabic Coffee on arrival) is offered upon arrival, along with dates and refreshing wet towels. Tea and coffee is also available. We follow this with some native starters which include Shawarma and Falafel. Stroll around the camp and you will find a variety of activities of interest that include a souvenir display stall, a henna tattoo corner and a photo studio area where you can adorn traditional local Dishdashas and Abayas and get your photographs clicked. A camel ride and a hand at Falconry is for you to try gratis, or ride a Quad Bike for a charge.&lt;\\/p&gt;&lt;p&gt;After you settle down, we offer you a display of local \\/ Middle Eastern art by entertaining you with the mesmerizing Tanoora Dance, a daring Fire Show followed by a spellbinding Belly Dance show that promises alluring moves to enthralling music.&lt;\\/p&gt;&lt;p&gt;While taking a stroll around the camp or during the ongoing entertainment you have a choice of quenching your thirst with soft drinks and water with our compliments. Alternatively, we have a live bar where you can explore some spirits or beer at a charge.&lt;\\/p&gt;&lt;p&gt;Later, we offer you a sumptuous three course menu with fresh grills, hot freshly baked breads, hot buffet and deserts from the local kitchen followed by Fresh Fruits.&lt;\\/p&gt;&lt;p&gt;As we bid farewell and our vehicle drives you back to your hotel or destination, we look forward to your next visit, perhaps with another option of experiencing an Overnight Safari or a Sunrise Safari.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":18425,\"Title\":\"Burj Khalifa Observation Deck\",\"Description\":\"&lt;p&gt;Burj Khalifa is the world&acirc;&euro;&trade;s tallest structure. A view of Dubai from the Burj&#039;s top floors is an experience of a lifetime. Take the world&acirc;&euro;&trade;s fastest elevator to the 124th floor &acirc;&euro;&ldquo; a 60 second ride into the clouds.&lt;\\/p&gt;&lt;p&gt;The spectacular observation deck has floor-to-ceiling glass windows that give you unparalleled views of the city below. Zoom in on your favorite spots via one of the high-powered telescopes available for a closer look. For those brave hearts, there is an outdoor terrace for a freer view.&lt;\\/p&gt;&lt;p&gt;When is the best time to visit the 124th floor of Burj Khalifa? At sunset, of course! With a prime time ticket that allows you entry between 15:00-18:30 Hrs, There&acirc;&euro;&trade;s no better spot to watch the sun go down and the city sparkle to life than the top of world&acirc;&euro;&trade;s tallest skyscraper. An Experience of a lifetime!&lt;\\/p&gt;&lt;p&gt;A personal escort will guide you to a dedicated elevator that will race up and open onto &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. At 555 metres above ground level, the 148th floor of the Burj Khalifa is the world&acirc;&euro;&trade;s highest outdoor observatory. Watch the city of Dubai Come alive as the sun sets, spot your favourite sights with high-tech telescopes, and make sure to click some stunning profile pictures of yourself!&lt;\\/p&gt;&lt;p&gt;For a magical experience, visit the Burj Off-peak hours. Get an exclusive tour of the 148th Floor also known as &acirc;&euro;&tilde;At the Top, Burj Khalifa SKY&acirc;&euro;&trade;. During this time of the evening, a thick layer of fog surrounds the city, making you feel like you&#039;re walking on clouds. What&acirc;&euro;&trade;s more, specially designed, motion-sensor projections create the feeling of flying over global landmarks.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"162556\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162557\",\"Title\":\"Dubai Half Day City Tour with visit to La Mer Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visit to La Mer Beach&lt;\\/strong&gt; is also included in the Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18420,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162558\",\"Title\":\" Desert Safari in the Evening - Deluxe Camp with Butler Service\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162559\",\"Title\":\"Canal Dhow Cruise in the evening\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162560\",\"Title\":\"Visit To Dubai Mall With Entrance To Burj Khalifa 124th Floor (Standard Time) + Dubai Lake Fountain Ride \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18425,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"162561\",\"Title\":\"Departure Transfer to Dubai Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22702\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43450.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":42002,\"priceDoubleOcc\":\"43450.00\",\"priceSingleOcc\":121660,\"priceExtraBed\":\"32587.50\",\"priceWithoutBed\":\"21725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21725,\"CEB\":32587.5,\"COSTDO\":43450,\"COSTSO\":121660,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":39105,\"COSTTO\":39105}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;05 Nights stay with breakfast at hotel&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers - Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half Day Dubai City Tour with visit to Lamer Beach - Private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with dinner - Deluxe Camp with Butler service - Sharing basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Canal Cruise with dinner - Private transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit to Dubai Mall with entrance to Burj Khalifa 124th Floor (Standard time) + Dubai Lake Fountain Ride - Private transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One voucher of Lunch or Dinner for couple at Signature By Sanjeev Kapoor Restaurant (3 Course Set Menu)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One complimentary 45 min SPA for 1 person during the stay. 50% discount for the second person&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One Souvenir per couple&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Complimentary Sparkling Wine bottle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon special amenities upon arrival&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"162556\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[162556],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162557\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[162557],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PVT BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162558\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[162558],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON SHARING BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162559\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[162559],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PVT&Acirc;&nbsp;BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162560\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[162560],\"Remark\":[\"&lt;p&gt;TOUR TRANSFERS ON PVT&Acirc;&nbsp;BASIS&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"162561\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[162561],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',43450,43450,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:54:20','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'luxury-honeymoon-package',NULL,NULL,NULL,0),(421,22434,1,5293,0,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22434,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/package\\/DUBAI_HIGHLIGHTS_74.jpg\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;DUBAI HIGHLIGHTS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;04 nights accommodation in hotel grand excelsior&lt;br \\/&gt;\\r\\n01 night accommodation in Atlantis on half board basis&lt;br \\/&gt;\\r\\nDesert safari&lt;br \\/&gt;\\r\\nDubai city tour with burj khalifa + dhow cruise at marina&lt;br \\/&gt;\\r\\nMiracle garden with global village&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"DUBAI HIGHLIGHTS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5711\",\"SupplierName\":\"BEST VALUE TOURISM\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Cab,Airport Transfers,Sightseeing,Guided Tours\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2023-09-07\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479612,\"Name\":\"Grand Excelsior Hotel Bur Dubai\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kuwait Road, Al Mankhool, Bur Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817907,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479612\\/5293_01616519430.jpg\"},{\"ImagId\":4817908,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479612\\/5293_01616519448.jpg\"},{\"ImagId\":4817909,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479612\\/5293_01616519562.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;Blending traditional Arabic hospitality with modern day standards of comfort and service,&lt;strong&gt; Grand Excelsior Hotel Bur Dubai &lt;\\/strong&gt;is a luxurious option when in Dubai. Located just minutes from the city&amp;#39;s business district and the &lt;em&gt;World Trade Center&lt;\\/em&gt;, the hotel is close to world-class shopping malls and restaurants. Accommodation is provided by 282 rooms and suites, elegantly furnished in traditional Arabic style and complete with modern conveniences such as plasma TVs, interactive entertainment, and high speed internet. A wide range of restaurants and bars cater to all tastes, while the hotel&amp;#39;s leisure facilities include a &lt;em&gt;rooftop swimming pool, health club, and spa&lt;\\/em&gt;. Whatever the reason for your stay, Grand Excelsior Hotel Bur Dubai will make it a good one.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located in downtown Bur-Dubai within walking distance of the city&acirc;&euro;&trade;s popular historical districts and attractions including the &lt;strong&gt;Dubai Museum, Old Bastakiya Quarters, Grand Mosque and Heritage Village&lt;\\/strong&gt;. For leisure visitors, this family-friendly hotel&acirc;&euro;&trade;s location never fails to disappoint with &lt;em&gt;a number of souks and shopping malls, Meena bazaar, Dubai Museum, Dubai Creek, Dubai Mall, Burj Khalifa, Dubai Opera, Dubai Fram&lt;\\/em&gt;e within easy reach as well as the closest&lt;strong&gt; Dubai Metro Stations&lt;\\/strong&gt; providing easy access to other parts of the city. &lt;strong&gt;BurJuman Shopping Mall&lt;\\/strong&gt; and &lt;strong&gt;the new Gold Souk&lt;\\/strong&gt; are just minutes by car along with the colourful souks of Bur Dubai.&lt;strong&gt; Jumeirah Beach&lt;\\/strong&gt; is also just minutes away&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479612\\/5293_9fd69b81a11ce4b4122171e42c3c44711616519430.jpg\",\"AccoAminitiesMask\":\"1111101010001111110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":479710,\"Name\":\"Atlantis, The Palm\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Crescent Road  The Palm Jumeirah  Dubai\"},\"Images\":{\"Image\":[{\"ImagId\":4817922,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479710\\/5293_01616683109.jpg\"}]},\"CityId\":8219,\"Brief\":\"&lt;p&gt;On iconic Palm Jumeirah island in the &lt;strong&gt;Arabian Gulf&lt;\\/strong&gt;, this posh resort is 14 km from &lt;strong&gt;Wild Wadi Water Park&lt;\\/strong&gt; and 15 km from the upscale shops in &lt;strong&gt;the Mall of the Emirates&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cozy rooms have minibars, flat-screens and free Wi-Fi, as well as gulf or&lt;strong&gt; island views&lt;\\/strong&gt;. Suites offer sitting areas; some include terraces, whirlpool baths and\\/or living rooms. Upgraded suites are set in the water tank of an aquarium, and have floor-to-ceiling windows with &lt;strong&gt;views of marine life&lt;\\/strong&gt;. Room service is available 24\\/7.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There are &lt;strong&gt;23 restaurants, plus a spa, a gym &amp; a water park&lt;\\/strong&gt;. Other amenities include an &lt;strong&gt;aquarium and a dolphin poo&lt;\\/strong&gt;l, along with a kids&acirc;&euro;&trade; club and a &lt;strong&gt;nightclub&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/hotel\\/hoteId_479710\\/5293_090f181dac2369716f479f62065b59651616683109.jpg\",\"AccoAminitiesMask\":\"1111111110111101010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null,\"RoomTypeName\":\"PALM KING ROOM\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3876,\"Title\":\"Marina Dhow Cruise\",\"Description\":\"Dubai Marina Luxury Dhow Dinner Cruise is one of the most loved and unique dining experience. The dinner offers views of some of the gorgeous vistas of Dubai. You can choose to stay in the upper deck, which is an open-air arrangement or in the lower deck, which is an air-conditioned deck.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15828_dhow-marina-01.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3386,\"Title\":\"Global Village\",\"Description\":\"Global Village is the world&amp;#039;s largest tourism, leisure, shopping and entertainment project.  It is the region&amp;#039;s first cultural, entertainment, family and shopping destination. Every year, it has over 5 million visitors over an area of 17,200,000 sq ft.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":35.7878086,\"Long\":-78.6677678,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Global_Village_8219_1519037115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":3369,\"Title\":\"Miracle Garden\",\"Description\":\"Get lost in a one-of-a-kind world of wonderment at Dubai Miracle Garden. Located in Al Barsha South the park is home to the regions biggest flower garden with more than 45 million blooming flowers across 72000sq\\/m all showcased in a variety of immense sculptures and designs. Feast your eyes on blooming pyramids stars igloos and hearts. Marvel at the record-breaking wall of flowers or take a stroll under a ceiling of colourful umbrellas. Bursting with vibrant displays the park feels more like an immersive art exhibit than a tourist attraction. Youll leave knowing youve truly witnessed a miracle: a mega garden in the middle of a desert.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":40.0229448,\"Long\":-82.9629605,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Miracle_Garden_8219_1519031713.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null},{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5711,\"SupplierName\":\"BEST VALUE TOURISM\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"160657\",\"Title\":\"Arrival at Dubai Airport &amp; Transfer to Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get your Private transfer from Airport to Hotel. Day Free at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"160658\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"160659\",\"Title\":\"Dubai City Tour with Burj Khalifa 124th floor with Dhow Cruise in evening\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning, after having breakfast at the hotel, we proceed for a&amp;nbsp;&lt;strong&gt;half day city tour of Dubai&lt;\\/strong&gt;. The city is a perfect blend of vibrant cosmopolitan life and age old culture and heritage. We first visit the most famous landmark of Dubai, Burj Al Arab Hotel. Take loads of pictured from different angles in-front of this world famous luxury hotel. We&amp;rsquo;ll also visit Jumeirah, the spectacular palace of Dubai where we will visit the renowned Jumeirah Mosque. We then go to see Dubai&amp;rsquo;s age old culture at Al Fahidi Fort, home to Dubai&amp;rsquo;s famous museum. There are several other attractions also that we would witness while on the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;BURJ KHALIFA AT 124TH FLOOR&lt;\\/strong&gt; (NON PRIME SLOT)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Step out onto the world&amp;#39;s highest observation deck with an outdoor terrace.&lt;br \\/&gt;\\r\\nExplore&amp;nbsp;Dubai&amp;#39;s&amp;nbsp;most famous landmarks with a unique interactive experience, using motion senses.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dhow Cruise Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for Dhow cruise at the designated time. On board you will be welcomed with a glass of cold drink and music will be played to make you sail enjoyable. After the enjoyment it become much darker in the sky and time for dinner which will be form of buffet. The said buffet will be made available tablewise turns. The tables nearer will be given preference first and farther tables occupants will have to wait for their dinner turn. Since tables are on the cruise on one side and buffet at one other end of the cruise, one would not be allowed to rush at buffet counters. This is done so to maintain balance of the cruise. Post dinner there will be Tanoura dance show. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can upgrade from Dhow Cruise to Marina Dhow Cruise at the time of booking, where food is comparatively more liked by tourists and service is also relatively good.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3876,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"160660\",\"Title\":\"Miracle Garden with Global Village \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;MIRACLE GARDEN&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the biggest flower garden ever built in Dubai: the Miracle Garden!&amp;nbsp;&lt;br \\/&gt;\\r\\nSee over 45 million flowers blooming in front of you.&lt;br \\/&gt;\\r\\nIt is a flower garden which occupies over 72,000 square metres, making it the world&amp;#39;s largest natural flower garden featuring over 50 million flowers and 250 million plants.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;GLOBAL VILLAGE&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Global Village is known as the world&amp;#39;s largest tourism.&lt;br \\/&gt;\\r\\nThe best of Global Village is region&amp;rsquo;s cultural and entertainment with unlimited fun, excitement and adventure.&amp;nbsp;&lt;br \\/&gt;\\r\\nFrom children rides, family rides to thrilling rides; Global Village is extra great on the entertainment quotient.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It brings together the best of cultural offerings through 32 giant stalls and pavilions representing more than 75 countries with different cultures.&amp;nbsp;&lt;br \\/&gt;\\r\\nThe food, the souvenirs, shopping, rides, and excitement all makes it a cosmopolitan and diverse experience for all.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3386,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3369,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"160661\",\"Title\":\"Inter Hotel Transfer to Atlantis + Day at Leisure in Atlantis\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Inter Hotel Transfer to Atlantis &amp;amp; Day at Leisure in Atlantis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy Aquaventure waterpark &amp;amp; Lost Chamber ( Subject to operational days &amp;amp; timings )&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479710,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"PALM KING ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2927,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"160662\",\"Title\":\"Breakfast at hotel + Departure transfer to Dubai Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After Breakfast, Check out from Hotel. Private Transfer to drop at Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22434\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640},{\"From\":\"2023-07-27\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":38280,\"priceDoubleOcc\":\"39600.00\",\"priceSingleOcc\":110880,\"priceExtraBed\":\"29700.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":19800,\"CEB\":29700,\"COSTDO\":39600,\"COSTSO\":110880,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":35640,\"COSTTO\":35640}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;span style=&quot;color:c0392b&quot;&gt;&lt;strong&gt;Booking&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights accommodation on double sharing basis at Grand Excelsior on Breakfast Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01&amp;nbsp;Nights accommodation on double sharing basis at Atlantis on Half Board Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices f tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Experience :&lt;\\/strong&gt;We know the market and we understand your travel requirements which helps us to provide you with a better product than you can find on the internet. We have destination specific experts for all your travel needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service on Tour :&lt;\\/strong&gt;&amp;nbsp;If in case something goes wrong on your trip, we ensure to be available 24*7 via internet or phone and no matter who is at fault , we always try to get your vacation back on track.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Convenience :&amp;nbsp;&lt;\\/strong&gt;Your time is valuable and you shouldn&amp;amp;rsquot have to spend it searching for the right vacation. A travel agent can do that for you.They can match you with the vacation that you actually want, not the one that you saw on television. There is a&amp;nbsp; &amp;nbsp;difference between travel inspiration and actual travel desires. Destination may look good on TV but not actually be ideal for you personally. Travel experts can create customized packages for you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Relationships :&amp;nbsp;&lt;\\/strong&gt;As you develop a relationship with your travel company they are able to design the right trips for you without even having a conversation. Ideally, a simple phone call or email could result in your next vacation &amp;amp;mdash already planned.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Save Money :&amp;nbsp;&lt;\\/strong&gt;Often, Travel advisors can save you money based on their supplier relationships &amp;amp;mdash or at least match the price you find &amp;amp;mdash while saving you time and effort. A travel agent will likely book transfers for you, included in the price. Sometimes a package that you book yourself won&amp;amp;rsquot include those, making the experience appear cheaper.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Added Value :&amp;nbsp;&lt;\\/strong&gt;There are a lot of value &amp;amp;ndash additions that consumers don&amp;amp;rsquot even know about that can be added by a travel company.Even wonder why the couple in the cabin next to yours got champagne and you didn&amp;amp;rsquot? They probably got their package designed from a travel expert.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"160657\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[160657],\"Remark\":[\"&lt;p&gt;Private Transfer from Airport to Hotel&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160658\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[160658],\"Remark\":[\"&lt;p&gt;Tour Transfer on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160659\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[160659],\"Remark\":[\"&lt;p&gt;Tour Transfers on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160660\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[160660],\"Remark\":[\"&lt;p&gt;Tour Transfers on SIC Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160661\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[160661],\"Remark\":[\"&lt;p&gt;Inter Hotel Transfer on PVT&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"160662\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[160662],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates,Maldives,Male',NULL,'8219',39600,39600,5,NULL,NULL,NULL,2,'',0,'2023-09-07 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates','228','2023-09-07 12:54:42','2023-09-07 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'dubai-highlights',NULL,NULL,NULL,0),(422,22090,1,5293,0,0,0,'Honeymoon,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":22090,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/dubai-with-mauritius_1690614707\",\"BookingValidUntill\":\"2023-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Book Dubai Mauritius Packages for an unmatched exploration that brings two contrasting lands of the world closer and offers fantastic holidays in Dubai and Mauritius. Travelling to Mauritius and Dubai with roaming routes will be a lifetime memory for you. This year&amp;rsquo;s vacation with the family will be the best under the influence of natural touch and modernity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are bound to give travellers an immersive experience, so we have designed each Dubai Mauritius combo package to deliver the best at affordable prices. Romantic couples can choose from the exclusive Dubai Mauritius honeymoon packages with luxurious stays.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dubai and Mauritius are the perfect combos to unleash. The tourists most appreciate Dubai desert safaris or road trips to Abu Dhabi. And By being in Mauritius, you find yourself closer to God. The mountains lined with greenery and floating islands in the Indian Ocean will never let the tourists get bored.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dubai and Mauritius are hiding some great places to visit that everyone would like to explore.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"I Need Trip\",\"Name\":\"DUBAI WITH MAURITIUS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5640\",\"SupplierName\":\"I NEED TRIP\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Airport Transfers,Sightseeing,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Leisure\",\"Validity\":{\"From\":\"2023-10-27\",\"To\":\"2023-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218072,\"Name\":\"Citymax Bur Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\", , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788212,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"\"}]},\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":218130,\"Name\":\"FOUR POINTS BY SHERATON - BUR DUBAI\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.25770000\",\"Long\":\"55.29960000\",\"Address\":\"P.O. BOX 33196, \\nDUBAI, \\nU.A.E., Bur Dubai, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788270,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICj7LhRYuT1RY+ClRs27teEFnxnZJMfiYbX4fETs728CeV3JCOeEu6HG4sNafNm5F2uCIonG7ZfzZINgNeW\\/BWNHnn2paKO7U8suJyz7w3SwGYO98pHEeVmpMdIpJQ8q7de67wUvUyjIng==\"}]},\"CityId\":8219,\"Brief\":\"Four Points by Sheraton Bur Dubai is located in the heart of Bur Dubai on Bank Street. It is a ten-minutes drive from Dubai Iternational Airort, Dubai World Trade Centre and Jumeirah Beach Park. The hotel is within walking distance to Dubai Meseum,Meena Bazaar (Gold souk and textile souk). Khalid bin al walid and Al Fahidi metro station is also five minutes away from the hotel. 125 spacious guest rooms. La Terrace-lobby lounge.\\n\\nViceroy Pub &amp; Lounge: An English pub with a colonial setting, it is the perfect place to spend a lazy afternoon or a cheerful evening. On the several LCD screens in the pub are show a wide variety of sports.Relax with your favourite beer in Viceroy Pub. Our Best Brews are always available on tap every evening.\\n\\nPromenade a chic French styled caf&Atilde;&copy; that offers you tempting international cuisine. \\n\\nAntique Bazaar is an award winning Indian Restaurant that reflects the authenticity of Indian cuisines. Few restaurants stand out with the right delicacy and the perfect ambience, Antique Bazaar is one of such. Renowned for carrying on the legacy of serving cuisines that once ruled the hearts of the royal families of India who are still known for their respect for exquisite food.\\n\\nPicante: The home of exotic PERI PERI. An authentic Portuguese restaurant with a homely feel, Picante presents a wide variety of existing peri peri flavors, authentic recipes &amp; tradit\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":217871,\"Name\":\"JW Marriott Marquis\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.185205000000000\",\"Long\":\"55.257742000000000\",\"Address\":\"Sheikh Zayed Road Business Bay Duba Dubai City United Arab Emirates, , United Arab Emirates, \"},\"Images\":{\"Image\":[{\"ImagId\":4788011,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=hpRBSdtPJNrQuwRo5I\\/exPbdtjJGoRI2R1Qo2\\/mGLJnD3Labs864bu1awghNJAAvjq2FjKN9\\/XUlwUIoZ5y73A==\"}]},\"CityId\":8219,\"Brief\":\"Elevated above Dubai&#039;s business district, on Sheikh Zayed Road, the JW Marriott Marquis Dubai resides in the Business Bay area and is the world tallest hotel. Spread across two iconic towers, the hotel is 10 minutes drive to Dubai Mall ,20 minutes to the Marina Walk and JBR and 25 minutes to Dubai International Airport. The luxurious air-conditioned deluxe room features contemporary design and is spacious in size (54sqm). It is furnished with carpeted floors and includes a flat-screen TV, a wardrobe and an iPod docking station. The marble-floor bathroom is equipped with a bathtub and a shower and offers free toiletries. Breakfast, lunch and dinner are available at property. This is a modern building. This hotel has a very large lobby The hotel features exceptional event and business facilities, an enticing array of bars and restaurants and the sublime Saray Spa and Health Club.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3876,\"Title\":\"Marina Dhow Cruise\",\"Description\":\"Dubai Marina Luxury Dhow Dinner Cruise is one of the most loved and unique dining experience. The dinner offers views of some of the gorgeous vistas of Dubai. You can choose to stay in the upper deck, which is an open-air arrangement or in the lower deck, which is an air-conditioned deck.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15828_dhow-marina-01.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3626,\"Title\":\"Dubai Aquarium &amp; Under Water Zoo\",\"Description\":\"Dubai Aquarium &amp;amp; Under Water Zoo is the largest suspended aquariums in the world. It has everything to keep the entire family happy.The Aquarium houses thousands of aquatic animals, comprising over 140 species. Over 300 sharks and rays live in this tank, including the largest collection of Sand Tiger sharks in the world, plus a creepy crawly zone with snakes.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1973877,\"Long\":55.2790805,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dubai_Aquarium_&amp;_Under_Water_Z_8219_1519045726.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3160,\"Title\":\"Abu Dhabi city tour with Ferrari world\",\"Description\":\"After breakfast at hotel get ready  08:30 Am for Abu Dhabi City Tour: Drive around Abu Dhabi City on a tour Cab, and pay a visit to the Grand Mosque while you&amp;#039;re in the city. \\r\\n\\r\\nFerrari World: Visit the famous Ferrari World at Yas Island, a one-of-its-kind Ferrari theme park! Experience exciting rides, drives, games and shows for a true F1 experience.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4851552,\"Long\":54.6075651,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Abu_Dhabi_city_tour_with_Ferra_8219_1519040949.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null}]}},{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":219986,\"Name\":\"MARITIM CRYSTALS BEACH HOTEL MAURITIUS\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.208459\",\"Long\":\"57.789733\",\"Address\":\"Coastal Road, 00100 Belle Mare, Mauritius, Mauritius, Mauritius, \"},\"Images\":{\"Image\":[{\"ImagId\":4790071,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5dL4b6pa4rDyLBpTOAYOC6Y5YpOeoU1Pri\\/kDIz7H6C0WdIe9WuPZXECEZbXBlcdiuw3ieq8WkcCattcS0+\\/6XoWwAQUQmuf5UPG\\/bOJD8uB5EgMWKRa8lg\"}]},\"CityId\":17162,\"Brief\":\"Located in Palmar, the contemporary Crystals Beach Resort &amp;amp; Spa boasts a tropical garden including water elements and feature unique local architecture. This beachfront hotel has a heated outdoor swimming pool and fitness centre.The MARITIM CRYSTALS BEACH HOTEL MAURITIUS is a  hotel. Located in Belle Mare area..\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":391860,\"Name\":\"Tarisa Resort and Spa\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Mont Choisy  , \"},\"Images\":[],\"CityId\":17162,\"Brief\":\"Property Location With a stay at Tarisa Resort in Mont Choisy, you&amp;apos;ll be on the beach and convenient to Mont Choisy Beach and Trou aux Biches Beach.  This\",\"MainImg\":\"https:\\/\\/www.tboholidays.com\\/imageresource.aspx?img=k6DH+39xpEWJ6sshsBgEUY9oKBj\\/b6OqzQcmXbJdJ1Hj37UO5f67lvzo9KP\\/UxaDp2N7aZDGCp5hHu5+giyhQeD9rTe2Y4wQOV5DD9CHPDo=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Double Superior Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":220062,\"Name\":\"Intercontinental Mauritius Resort Balaclava\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"-20.0935\",\"Long\":\"57.5093\",\"Address\":\"COASTAL ROAD   BALACLAVA  MU, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4790147,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIIChAnwOW\\/84dgWcpXl1h0cFuDrz1NcxYiSHecAs+1XaV9uMJ11ycargJk8lA8+\\/GxxAY0VVtht8Cxw==\"}]},\"CityId\":17162,\"Brief\":\"The club resort is located on a pristine stretch of beach looking out over the Bay of Balaclava, just north of the capital, Port Louis. It is 15 minutes&#039; drive from the main tourist region of Grand Bay, and 50 minutes&#039; drive (approximately 52 km) from Plaisance International Airport.\\n\\nNewly built in 2009, this club resort offers fabulous views of the ocean and 210 elegant, functional, well-furnished and spacious rooms. Guests are welcomed in a lobby with 24-hour reception and check-out services. Facilities include a hotel safe, currency exchange and a cloakroom. There is also a newspaper stand, hairdressing salon and a games room. For the younger guests, there is a children&#039;s playground and a kids&#039; club. Furthermore, restaurants, bars, sports facilities as well as business services including conference facilities can be found at this property. Guests can also take advantage of the WLAN Internet access and the room and laundry services on offer and those guests who are arriving by car may park their vehicle in the hotel&#039;s car park. Cars, scooters and bicycles are all available to rent (hire fees apply) and the hotel&#039;s concierge is on hand to assist with any request.\\n\\nThe hotel has 140 deluxe rooms, 20 of which have hot tubs and private roof terraces, tastefully laid out to provide guests with the utmost comfort. To complement this the hotel also features 40 family rooms and 10 duplex ocean suites complete with their own private hot tubs, terraces and balconies, all beautifully designed for guests to relax and make the most of the stunning views of the Indian Ocean. Each room has an en suite bathroom with a shower, bath and a hairdryer. Rooms are furnished with double or king-size beds. Amenities include a direct dial telephone, satellite\\/cable TV, a radio, Internet access and a safe. A minibar, an ironing set and tea and coffee making facilities are also provided. Individually regulated air conditioning is a standard feature in all accommodation.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null,\"RoomTypeName\":\"Superior sea view room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3876,\"Title\":\"Marina Dhow Cruise\",\"Description\":\"Dubai Marina Luxury Dhow Dinner Cruise is one of the most loved and unique dining experience. The dinner offers views of some of the gorgeous vistas of Dubai. You can choose to stay in the upper deck, which is an open-air arrangement or in the lower deck, which is an air-conditioned deck.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15828_dhow-marina-01.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3626,\"Title\":\"Dubai Aquarium &amp; Under Water Zoo\",\"Description\":\"Dubai Aquarium &amp;amp; Under Water Zoo is the largest suspended aquariums in the world. It has everything to keep the entire family happy.The Aquarium houses thousands of aquatic animals, comprising over 140 species. Over 300 sharks and rays live in this tank, including the largest collection of Sand Tiger sharks in the world, plus a creepy crawly zone with snakes.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1973877,\"Long\":55.2790805,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dubai_Aquarium_&amp;_Under_Water_Z_8219_1519045726.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":3160,\"Title\":\"Abu Dhabi city tour with Ferrari world\",\"Description\":\"After breakfast at hotel get ready  08:30 Am for Abu Dhabi City Tour: Drive around Abu Dhabi City on a tour Cab, and pay a visit to the Grand Mosque while you&amp;#039;re in the city. \\r\\n\\r\\nFerrari World: Visit the famous Ferrari World at Yas Island, a one-of-its-kind Ferrari theme park! Experience exciting rides, drives, games and shows for a true F1 experience.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4851552,\"Long\":54.6075651,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Abu_Dhabi_city_tour_with_Ferra_8219_1519040949.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5640,\"SupplierName\":\"I NEED TRIP\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"158084\",\"Title\":\"Arrive Dubai\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Airport and Drop to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dhow Cruise with Dinner.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3876,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158087\",\"Title\":\"HALF DAY CITY TOUR WITH DESERT SAFARI WITH DINNER\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;HALF DAY CITY TOUR WITH DESERT SAFARI WITH DINNER&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158090\",\"Title\":\"Breakfast with Burj Khalifa and Aquarium\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast with Burj Khalifa and Dubai Under Water Zoo&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3626,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158093\",\"Title\":\"ABU DHABI FULL DAY TOUR WITH FERRARI WORLD\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;ABU DHABI FULL DAY TOUR WITH FERRARI WORLD&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":218130,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":217871,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3160,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158096\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158099\",\"Title\":\"CHECK OUT AND TRANSFER TO AIRPORT \\/\\/ FLIGHT TO MAURITIUS\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;CHECK OUT AND TRANSFER TO AIRPORT \\/\\/ FLIGHT TO MAURITIUS&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior sea view room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158102\",\"Title\":\"SOUTH ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;SOUTH ISLAND TOUR&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior sea view room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158105\",\"Title\":\"NORTH ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;NORTH ISLAND TOUR&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior sea view room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158108\",\"Title\":\"EAST ISLAND TOUR\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;EAST ISLAND TOUR&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":391860,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":219986,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Double Superior Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":220062,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Superior sea view room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"158111\",\"Title\":\"CHECK OUT \",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;CHECK OUT&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"22090\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"45974.58\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"41377.13\",\"priceDoubleOcc\":\"45974.58\",\"priceSingleOcc\":128728.82,\"priceExtraBed\":\"34480.93\",\"priceWithoutBed\":\"22987.29\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":45974.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":275,\"CEB\":412.5,\"COSTDO\":550,\"COSTSO\":1540,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":495,\"COSTTO\":495}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"22091\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"68961.87\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"62065.68\",\"priceDoubleOcc\":\"68961.87\",\"priceSingleOcc\":193093.24,\"priceExtraBed\":\"51767.38\",\"priceWithoutBed\":\"34480.93\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68961.87,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":412.5,\"CEB\":619.3,\"COSTDO\":825,\"COSTSO\":2310,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":742.5,\"COSTTO\":742.5}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"22092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":2,\"Price\":\"91949.16\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990},{\"From\":\"2023-07-26\",\"To\":\"2023-10-31\",\"Currency\":1,\"priceTripleOcc\":\"82754.24\",\"priceDoubleOcc\":\"91949.16\",\"priceSingleOcc\":257457.65,\"priceExtraBed\":\"68961.87\",\"priceWithoutBed\":\"45974.58\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":91949.16,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CostInfent\":null,\"CWOB\":550,\"CEB\":825,\"COSTDO\":1100,\"COSTSO\":3080,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":990,\"COSTTO\":990}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"\",\"BookingTerms\":\"\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp; No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;In case of 2 to 6 Travelers&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of Group Bookings (i.e. 6 or more Travelers), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS 5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation on twin sharing with breakfast basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa + Travel Insurance&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport transfers on Private Basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates Are Inclusive of all Local Taxes and Vat except Tourism Dirhams Fee.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;&lt;strong&gt;Here is a must take list that you should carry while traveling&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof (Passport Mandatory For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Cream\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"158084\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[158084],\"Remark\":[\"&lt;p&gt;Dhow Cruise Transfer on SIC&lt;\\/p&gt;                                                                                                                                                                                                                                                                          \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158087\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[158087],\"Remark\":[\"&lt;p&gt;All Tours are on SIC.&lt;\\/p&gt;                                                                                                                                                                                                                                                                                \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158090\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[158090],\"Remark\":[\"&lt;p&gt;All Transfers on SIC.&lt;\\/p&gt;                                                                                                                                                                                                                                                                                \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158093\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[158093],\"Remark\":[\"&lt;p&gt;Full day tour on Private&lt;\\/p&gt;                                                                                                                                                                                                                                                                             \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158096\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[158096],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158099\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[158099],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"158102\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[158102],\"Remark\":[\"&lt;p&gt;ALL TOUR ON SIC&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158105\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[158105],\"Remark\":[\"&lt;p&gt;ALL TOUR ON SIC&lt;\\/p&gt;                                                                                                                                                                                                                                                                                      \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158108\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[158108],\"Remark\":[\"&lt;p&gt;EAST ISLAND TOUR&lt;\\/p&gt;                                                                                                                                                                                                                                                                                     \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"158111\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[158111],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;                                                                                                                                                                                                                                                                                                 \"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai,Mauritius','Dubai,Middle East,United Arab Emirates,Mauritius,East African Islands,Abu Dhabi',NULL,'8219,17162',45975,91949,8,NULL,NULL,NULL,2,'',0,'2023-10-27 00:00:00','2023-10-31 00:00:00','2023-10-31 00:00:00',3,'United Arab Emirates,Mauritius','228,139','2023-10-27 12:09:27','2023-10-27 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'dubai-with-mauritius',NULL,NULL,NULL,0),(423,4034,3,5293,0,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"54686\",\"Title\":\"Free at leisurre\",\"Details\":\"\",\"Duration\":\"0\",\"Icon\":\"\",\"ThumnailImg\":\"0\",\"DetailImg\":\"0\",\"InvnItemSysId\":\"4034\",\"From\":\"2023-09-12\",\"To\":\"2023-12-30\",\"Currency\":1,\"SupplierSysId\":\"13739\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"5000.00\",\"ChildEntryFee\":\"3000.00\",\"SSInclusion\":[],\"SICCost\":[{\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"0\",\"ChildCost\":\"0\",\"AdultMarkup\":\"200\",\"ChildMarkup\":\"150\",\"NetAdultCost\":\"200\",\"NetChildCost\":\"150\"},{\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"0\",\"ChildCost\":\"0\",\"AdultMarkup\":\"500\",\"ChildMarkup\":\"200\",\"NetAdultCost\":\"500\",\"NetChildCost\":\"200\"}],\"PvtCost\":[],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"0\",\"TimeSlots\":\"0\",\"PickUpLocation\":\"0\",\"PickUpTime\":\"\",\"OpenDays\":\"\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"132\",\"CitySysId\":\"30568\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"\",\"SightseeingVehicles\":[]}','Kuala Lumpur','Kuala Lumpur,Malaysia',NULL,'30568',0,0,0,NULL,NULL,NULL,0,'',0,'2023-09-12 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'Malaysia','132','2023-09-12 15:54:15','2023-09-12 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0),(424,4035,3,5293,0,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"54109\",\"Title\":\"Sky view with Glass sliding\",\"Details\":\"\",\"Duration\":\"0\",\"Icon\":\"\",\"ThumnailImg\":\"0\",\"DetailImg\":\"0\",\"InvnItemSysId\":\"4035\",\"From\":\"2023-09-12\",\"To\":\"2023-11-30\",\"Currency\":1,\"SupplierSysId\":\"13739\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"3000.00\",\"ChildEntryFee\":\"2000.00\",\"SSInclusion\":{\"1\":\"Breakfast\"},\"SICCost\":[{\"MPType\":1,\"MarkUpType\":1,\"AdultCost\":\"0\",\"ChildCost\":\"0\",\"AdultMarkup\":\"300\",\"ChildMarkup\":\"300\",\"NetAdultCost\":\"300\",\"NetChildCost\":\"300\"},{\"MPType\":2,\"MarkUpType\":1,\"AdultCost\":\"0\",\"ChildCost\":\"0\",\"AdultMarkup\":\"400\",\"ChildMarkup\":\"300\",\"NetAdultCost\":\"400\",\"NetChildCost\":\"300\"}],\"PvtCost\":[],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"0\",\"TimeSlots\":\"0\",\"PickUpLocation\":\"0\",\"PickUpTime\":\"\",\"OpenDays\":\"\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates',NULL,'8219',0,0,0,NULL,NULL,NULL,0,'',0,'2023-09-14 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-14 17:07:06','2023-09-14 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0),(425,4101,3,5293,0,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"3130\",\"Title\":\"Desert Safari Dubai\",\"Details\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"Duration\":\"\",\"Icon\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg\",\"ThumnailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg\",\"DetailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg\",\"InvnItemSysId\":\"4101\",\"From\":\"2023-09-14\",\"To\":\"2023-10-31\",\"Currency\":1,\"SupplierSysId\":\"5739\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"2.00\",\"ChildEntryFee\":\"1.00\",\"SSInclusion\":{\"1\":\"Breakfast\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"\",\"TimeSlots\":\"[[\\\"06:00 am\\\",\\\"06:00 pm\\\"]]                                                                           \",\"PickUpLocation\":\"\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu\",\"ThingsToCarry\":\"[\\\"Credit and ATM cards \\\",\\\"Body lotion\\\",\\\"Sun Glasses\\\",\\\"Slippers\\\",\\\"Travel blanket\\\"]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"70\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"55.207517\",\"latitude\":\"25.11854\",\"Address\":\"Dubai - United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates',NULL,'8219',0,0,0,'Desert_Safari_Dubai_8219_1517577772.jpg',NULL,NULL,0,'',0,'2023-09-14 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-14 17:10:04','2023-09-14 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0),(426,60646,1,5293,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":60646,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-12-13\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"TOKI\",\"DestinationPlacesSysId\":80600,\"SourcePlaces\":\"TOKI\",\"SourcePlaceSysId\":80600,\"AgencyName\":\"I Need Trip\",\"Name\":\"test\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5739\",\"SupplierName\":\"test by hello gtx\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2023-09-14\",\"To\":\"2023-12-13\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":80600,\"Title\":\"TOKI\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"447161\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447162\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447163\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447164\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447165\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447166\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447167\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447168\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447169\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447170\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80600,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"\",\"BookingTerms\":\"Booking Terms\",\"CancellationPolicy\":\"CancellationPolicy\",\"Conditions\":\"Terms And Conditions\",\"Exclusions\":\"Exclusions\",\"Inclusion\":\"Inclusions\",\"TravelBasics\":\"Travel Basics\",\"WhyUseUs\":\"Why Use Us\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":[],\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','TOKI','TOKI,Orient,Japan',NULL,'80600',0,0,9,NULL,NULL,NULL,2,'',0,'2023-09-14 00:00:00','2023-12-13 00:00:00','2023-12-13 00:00:00',3,'Japan','110','2023-09-14 11:19:02','2023-09-14 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'test',NULL,NULL,NULL,0),(427,4107,3,5293,1,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"6151\",\"Title\":\"Dubai Frame\",\"Details\":\"Dubai Frame has been named among the world\'s best new attractions of 2017, according to a UK-based newspaper.\\r\\n\\r\\nThe location of the giant rectangular frame is Zabeel Park and was carefully chosen to give visitors the best view of both old and new Dubai.\\r\\n\\r\\nThe project comprises a 150-metre-high, 93-metre-wide structure being built to resemble a huge picture frame, through which landmarks representing modern Dubai such as Emirates Towers and Burj Khalifa can be seen on one side, while from the other side, visitors can view older parts of the city such as Deira, Umm Harare and Karama.\",\"Duration\":\"60\",\"Icon\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/36_1529654255.jpg\",\"ThumnailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/36_1529654255.jpg\",\"DetailImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/36_1529654255.jpg\",\"InvnItemSysId\":\"4107\",\"From\":\"2023-09-14\",\"To\":\"2024-04-30\",\"Currency\":1,\"SupplierSysId\":\"16418\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"1450.00\",\"ChildEntryFee\":\".00\",\"SSInclusion\":{\"4\":\"No\"},\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"0\",\"DurationStr\":\"60\",\"TimeSlots\":\"[[\\\"10:00\\\",\\\"23:00\\\"]]                                                                                 \",\"PickUpLocation\":\"HOTEL\",\"PickUpTime\":\"\",\"OpenDays\":\"Sun,Mon,Tue,Wed,Thu,Fri,Sat\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"1\",\"EndAgeYr\":\"99\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"8219\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"Zabeel Park, Dubai, United Arab Emirates\",\"SightseeingVehicles\":[]}','Dubai','Dubai,United Arab Emirates','','8219',0,0,0,'427_1694690464_0.jpg',NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 15:37:43','2023-09-15 00:00:00',1,1,'0','0','0','','','',NULL,'',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (428,60705,1,5293,0,0,0,'Honeymoon,Culture,Romantic,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":60705,\"IsCF\":0,\"URL\":\"0\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-japan----days_1695109476\",\"BookingValidUntill\":\"2024-03-22\",\"AdvBookingDays\":60,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing, including Kyoto&amp;#39;s Fushimi Inari and Golden Pavilion, marvel at sacred Mount Fuji, and discover the dazzling cities of Tokyo and Osaka&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Six nights in central 3 and 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by a professional English-speaking tour guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-depth sightseeing and entrance fees as per the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Tokyo\",\"DestinationPlacesSysId\":27427,\"SourcePlaces\":\"Tokyo\",\"SourcePlaceSysId\":27427,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF JAPAN - 7 DAYS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Culture,Romantic,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2024-02-02\",\"To\":\"2024-03-22\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":27427,\"Title\":\"Tokyo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575121,\"Name\":\"Smile Hotel Tokyo Nishikasai\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27427,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":6666,\"Title\":\"Mt. Fuji\",\"Description\":\"Japan&acirc;&euro;&trade;s Mt. Fuji is an active volcano about 100 kilometers southwest of Tokyo. Commonly called &acirc;&euro;&oelig;Fuji-san,&acirc;&euro;\\u009d it&acirc;&euro;&trade;s the country&acirc;&euro;&trade;s tallest peak, at 3,776 meters. A pilgrimage site for centuries, it&acirc;&euro;&trade;s considered one of Japan&acirc;&euro;&trade;s 3 sacred mountains, and summit hikes remain a popular activity. Its iconic profile is the subject of numerous works of art, notably Edo Period prints by Hokusai and Hiroshige.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/36_1530874565.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55729,\"Title\":\"nara tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55732,\"Title\":\"Goin Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55734,\"Title\":\"Historic 17th-century Nagoya Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55733,\"Title\":\"Ninja Museum of Igaryu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55735,\"Title\":\"Asakusa\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":10140,\"Title\":\"Nakamise Shopping Street\",\"Description\":\"Numazu Nakamise Shopping Street is a popular shopping area located in Numazu city, Shizuoka Prefecture, Japan. It is a vibrant and bustling pedestrian street that stretches for approximately 500 meters and is lined with more than 60 shops and restaurants.\\r\\nThe street is known for its traditional Japanese architecture and atmosphere, which gives visitors a glimpse of what life was like in Japan in the past. The shops on the street sell a variety of goods, including local souvenirs, traditional Japanese sweets, and seafood from the nearby port.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/27427\\/sightseeing\\/nakamise_shopping_street_27427_1680164458.jpg\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":11417,\"Title\":\"Hamamatsu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575122,\"Name\":\"Hotel Crown Palais Hamamatsu\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11417,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":6666,\"Title\":\"Mt. Fuji\",\"Description\":\"Japan&acirc;&euro;&trade;s Mt. Fuji is an active volcano about 100 kilometers southwest of Tokyo. Commonly called &acirc;&euro;&oelig;Fuji-san,&acirc;&euro;\\u009d it&acirc;&euro;&trade;s the country&acirc;&euro;&trade;s tallest peak, at 3,776 meters. A pilgrimage site for centuries, it&acirc;&euro;&trade;s considered one of Japan&acirc;&euro;&trade;s 3 sacred mountains, and summit hikes remain a popular activity. Its iconic profile is the subject of numerous works of art, notably Edo Period prints by Hokusai and Hiroshige.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/36_1530874565.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55729,\"Title\":\"nara tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55732,\"Title\":\"Goin Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55734,\"Title\":\"Historic 17th-century Nagoya Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55733,\"Title\":\"Ninja Museum of Igaryu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55735,\"Title\":\"Asakusa\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":10140,\"Title\":\"Nakamise Shopping Street\",\"Description\":\"Numazu Nakamise Shopping Street is a popular shopping area located in Numazu city, Shizuoka Prefecture, Japan. It is a vibrant and bustling pedestrian street that stretches for approximately 500 meters and is lined with more than 60 shops and restaurants.\\r\\nThe street is known for its traditional Japanese architecture and atmosphere, which gives visitors a glimpse of what life was like in Japan in the past. The shops on the street sell a variety of goods, including local souvenirs, traditional Japanese sweets, and seafood from the nearby port.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/27427\\/sightseeing\\/nakamise_shopping_street_27427_1680164458.jpg\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":32378,\"Title\":\"Osaka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575128,\"Name\":\"Sarasa Hotel Namba\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32378,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":6666,\"Title\":\"Mt. Fuji\",\"Description\":\"Japan&acirc;&euro;&trade;s Mt. Fuji is an active volcano about 100 kilometers southwest of Tokyo. Commonly called &acirc;&euro;&oelig;Fuji-san,&acirc;&euro;\\u009d it&acirc;&euro;&trade;s the country&acirc;&euro;&trade;s tallest peak, at 3,776 meters. A pilgrimage site for centuries, it&acirc;&euro;&trade;s considered one of Japan&acirc;&euro;&trade;s 3 sacred mountains, and summit hikes remain a popular activity. Its iconic profile is the subject of numerous works of art, notably Edo Period prints by Hokusai and Hiroshige.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/36_1530874565.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55729,\"Title\":\"nara tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55732,\"Title\":\"Goin Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55734,\"Title\":\"Historic 17th-century Nagoya Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55733,\"Title\":\"Ninja Museum of Igaryu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55735,\"Title\":\"Asakusa\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":10140,\"Title\":\"Nakamise Shopping Street\",\"Description\":\"Numazu Nakamise Shopping Street is a popular shopping area located in Numazu city, Shizuoka Prefecture, Japan. It is a vibrant and bustling pedestrian street that stretches for approximately 500 meters and is lined with more than 60 shops and restaurants.\\r\\nThe street is known for its traditional Japanese architecture and atmosphere, which gives visitors a glimpse of what life was like in Japan in the past. The shops on the street sell a variety of goods, including local souvenirs, traditional Japanese sweets, and seafood from the nearby port.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/27427\\/sightseeing\\/nakamise_shopping_street_27427_1680164458.jpg\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":25113,\"Title\":\"Shizuoka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":212380,\"Name\":\"Smile Hotel Shizuoka\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.975957237586\",\"Long\":\"138.39215857497\",\"Address\":\"23&minus;5 Tenma-ch\\u014d Aoiku\"},\"Images\":{\"Image\":[{\"ImagId\":4747481,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_9_t.jpg\"},{\"ImagId\":4747482,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_11_t.jpg\"},{\"ImagId\":4747483,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_10_t.jpg\"},{\"ImagId\":4747484,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_12_t.jpg\"},{\"ImagId\":4747485,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_14_t.jpg\"},{\"ImagId\":4747486,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_13_t.jpg\"},{\"ImagId\":4747487,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_16_t.jpg\"},{\"ImagId\":4747488,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_17_t.jpg\"},{\"ImagId\":4747489,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_8_t.jpg\"}]},\"CityId\":25113,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at Smile Hotel Shizuoka - formerly Abant Inn Shizuoka places you in the heart of Shizuoka and within the vicinity of Shimizu Funakoshi Tsutsumi Park. This hotel is within the region of Koshuji Temple and Miho Shrine.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 63 air-conditioned rooms featuring refrigerators. Complimentary high-speed (wired) Internet access keeps you connected, and digital programming is available for your entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and complimentary toiletries. Conveniences include phones and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;For your convenience, a complimentary breakfast is served daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a computer station, and a 24-hour front desk.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5260000\\/5250500\\/5250417\\/5250417_9_t.jpg\",\"AccoAminitiesMask\":\"110000000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"}],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":6666,\"Title\":\"Mt. Fuji\",\"Description\":\"Japan&acirc;&euro;&trade;s Mt. Fuji is an active volcano about 100 kilometers southwest of Tokyo. Commonly called &acirc;&euro;&oelig;Fuji-san,&acirc;&euro;\\u009d it&acirc;&euro;&trade;s the country&acirc;&euro;&trade;s tallest peak, at 3,776 meters. A pilgrimage site for centuries, it&acirc;&euro;&trade;s considered one of Japan&acirc;&euro;&trade;s 3 sacred mountains, and summit hikes remain a popular activity. Its iconic profile is the subject of numerous works of art, notably Edo Period prints by Hokusai and Hiroshige.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/36_1530874565.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55729,\"Title\":\"nara tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55732,\"Title\":\"Goin Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55734,\"Title\":\"Historic 17th-century Nagoya Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55733,\"Title\":\"Ninja Museum of Igaryu\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25113,\"CityName\":\"Shizuoka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55735,\"Title\":\"Asakusa\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":10140,\"Title\":\"Nakamise Shopping Street\",\"Description\":\"Numazu Nakamise Shopping Street is a popular shopping area located in Numazu city, Shizuoka Prefecture, Japan. It is a vibrant and bustling pedestrian street that stretches for approximately 500 meters and is lined with more than 60 shops and restaurants.\\r\\nThe street is known for its traditional Japanese architecture and atmosphere, which gives visitors a glimpse of what life was like in Japan in the past. The shops on the street sell a variety of goods, including local souvenirs, traditional Japanese sweets, and seafood from the nearby port.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/3\\/city\\/27427\\/sightseeing\\/nakamise_shopping_street_27427_1680164458.jpg\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"447663\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival into Tokyo, please make your own way to the starting point hotel. Take the evening to relax after your flight and prepare for your first full day of touring tomorrow.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447664\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447665\",\"Title\":\"Tokyo-Oishi Park-Lake Kawaguchi-Mount Fuji-Hamamatsu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy breakfast this morning before you meet your Tour Leader this morning at approximately 08:30am before you start your full day of sightseeing. Our day starts with a stop at Oishi Park on the shores of Lake Kawaguchi, well known for its serene, flower-lined walking path and its spectacular view of Mount Fuji.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Then, we stop by the eight ponds at Oshino Hakkai, a small village in the Fuji Five Lake region fed by the snow melt from the nearby mountains. See traditional thatched roof farmhouses in the shadow of the iconic Mount Fuji.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After our day in the Mount Fuji area we continue to Hamamatsu. Enjoy an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11417,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575122,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55727,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55728,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6666,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447666\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11417,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447667\",\"Title\":\"Hamamatsu-Nara-Dotonbori-Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today we head to Nara, famous for its many temples and its free-roaming deer. First, we visit Todaiji (Great Eastern Temple), one of Japan&amp;#39;s most famous temples. This massive building houses one of Japan&amp;#39;s largest bronze statues of Buddha (Daibutsu). We then wander through Nara Park, home to hundreds of friendly Sika deer.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We then continue to Osaka, where we&amp;rsquo;ll enjoy a walking tour of the D?tonbori area. One of Osaka&amp;#39;s most popular tourist destinations, this street runs parallel to the D?tonbori canal and is a hugely popular destination for shopping, street food, bars and entertainment. At night the streets here are illuminated by hundreds of colourful neon lights and mechanised signs, including the famous running Glico Man sign and the Kani Doraku crab sign.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy an evening at leisure in Osaka.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55729,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447668\",\"Title\":\"Osaka-Kyoto-Gion-Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;We&amp;rsquo;ll see the sights of ancient Kyoto this morning, starting with Kyoto&amp;rsquo;s famed Fushimi Inari Shrine &amp;ndash; known throughout the world as the &amp;lsquo;Path of the Red Gates.&amp;rsquo; Take time to appreciate the quieter corners of the shrine, and if you&amp;rsquo;re feeling fit, a walk to the halfway point provides stunning city views.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll continue on to some of Kyoto&amp;rsquo;s most iconic sites, like Kinkakuji (Golden Pavilion). This is a Zen temple and UNESCO World Heritage Site, with two floors covered entirely in thin layers of pure gold, set within a beautiful classical Zen garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, stand amongst the soaring stalks of bamboo at Arashiyama Bamboo Grove. It&amp;rsquo;s green, peaceful and the seemingly endless boughs make for a serene experience, even with the tourist crowds. Take in the sound of rustling bamboo as you stroll these paths &amp;ndash; if there&amp;rsquo;s a bit of wind, the groves will gently sway back and forth which only adds to the magic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Before leaving Kyoto, we visit the authentic Gion district. This historic area is home to many geisha and is packed with bars, restaurants and cafes.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We head back to Osaka for another evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575128,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55732,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55731,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447669\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447670\",\"Title\":\"Osaka-Igaryu-Nagoya-Shizuoka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast we depart Osaka for Shizuoka. On the way, we will visit the Ninja Museum of Igaryu where you can see a ninja trick house, ninja museum and experience a ninja show (if time permits, at own expense).&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We then visit the historic 17th-century Nagoya Castle. The castle is the most iconic landmark in Nagoya and is an impressive sight. Afterwards, we continue to Shizuoka for an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25113,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":212380,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55734,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55733,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447671\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25113,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447672\",\"Title\":\"Shizuoka-Asakusa-Nakamise Street-Tokyo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast we travel back to Tokyo, where we embark on a tour of this energetic city.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In a city of such frenetic pace, a stop at the charming Asakusa neighbourhood is a refreshing taste of older Tokyo. It&amp;rsquo;s home to the ancient seventh-century Sens?-ji Temple. Built in the Asuka era, it&amp;rsquo;s the oldest and most important Buddhist temple in Tokyo &amp;ndash; be prepared for crowds! It&amp;rsquo;s known for its imposing entrance gate, Kaminarimon (also known as &amp;lsquo;Thunder Gate&amp;rsquo;), with its magnificent red lantern.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll walk along Nakamise, the shopping street connecting the front gate and main hall of the temple. It&amp;rsquo;s a wonderful atmosphere, with food stalls and souvenir shops, selling authentic Japanese items like traditional crafts. You&amp;rsquo;ll find great souvenirs here. We&amp;rsquo;ll then stop at Tokyo Metropolitan Government Building for late afternoon panoramic city views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, we check in to our hotel for an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575121,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55735,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":10140,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"447673\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy one last delicious breakfast this morning, before your Japanese adventure comes to an end.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We hope you&amp;rsquo;ve enjoyed this extraordinary journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"60705\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"83600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"83600.00\",\"priceDoubleOcc\":\"83600.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":83600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":83600,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-13\",\"To\":\"2024-03-13\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"96800.00\",\"priceDoubleOcc\":\"96800.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":96800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":96800,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the Tour - 10% of the Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;90 Days or more prior to the departure of tour - 50% of Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;60 Days or more prior to the departure of tour -&amp;nbsp; 100% of Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp; No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International airfares&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visas&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel insurance (Compulsory)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tipping&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Optional activities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned in the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing, including Kyoto&amp;#39;s Fushimi Inari and Golden Pavilion, marvel at sacred Mount Fuji, and discover the dazzling cities of Tokyo and Osaka&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Six nights in central 3 and 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by a professional English-speaking tour guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-depth sightseeing and entrance fees as per the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeing Highlights&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tokyo &amp;ndash; Enjoy the buzz and energy of one of the world&amp;rsquo;s great cities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tokyo &amp;ndash; Get a bird&amp;rsquo;s eye view from the Tokyo Metropolitan Government Building observation deck, 202 metres high&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tokyo &amp;ndash; Visit Japan&amp;rsquo;s oldest temple Sens?-ji Temple, and enjoy a walking tour of atmospheric Nakamise Street&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Oshino Hakkai &amp;ndash; See traditional thatched roof farm houses in the shadow of Mount Fuji at Oshino Hakkai&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lake Kawaguchiko &amp;ndash; Take in spectacular views of Mount Fuji at Oishi Park on the shores of Lake Kawaguchiko&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kyoto &amp;ndash; See this ancient capital&amp;rsquo;s most famous temples and shrines including the Golden Pavilion and Fushimi Inari&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kyoto &amp;ndash; Revel in the lush, peaceful green splendour of Arashiyama Bamboo Grove&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kyoto &amp;ndash; Wander through Kyoto&amp;rsquo;s famous geisha district, Gion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nara &amp;ndash; Wander through Nara park with over 1,200 Sika deer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nara &amp;ndash; Discover the Todaiji Temple and its great Buddha&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Osaka &amp;ndash; Stroll through lively, colourful Dotonbori&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Iga &amp;ndash; Learn about the secretive and ancient art of the ninja at the Iga-ryu Ninja Museum&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nagoya&amp;nbsp;&amp;ndash;&amp;nbsp;Visit the impressive Nagoya Castle, completed in 1615&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;&lt;strong&gt;Fitness Requirements&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nWhile the tour itinerary should give you some guidance and overview to the expected requirements, to determine if this tour is right for you we categorise each of our tours in terms of their intensity. These guidelines are to ensure that each tour group is conducted as expected and to ensure the overall satisfaction of all Inspiring Vacations customers.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As a general rule, porterage is not included, therefore at all times you are expected to handle your own luggage where help may not be available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This particular tour is categorised as a&amp;rdquo;4&amp;quot;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Active Tour:&lt;\\/strong&gt; A very good level of&amp;nbsp;fitness&amp;nbsp;and mobility is required for you to enjoy all aspects of the itinerary, as this is considered a fast-paced tour. While there is some free time scheduled either in the morning or afternoon, there are many full days of sightseeing with minimal rest and some early starts. You will be required to walk up and down stairs, get on and off the coach and participate in all scheduled sightseeing that may be conducted on uneven ground and terrain. Any physical ailments you may have must be disclosed at the time of booking to determine your suitability. If you have any form of walking aids, other than a walking stick or hiking poles, then this tour is not suitable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tipping&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nA friendly reminder that tipping is not included in your package. While tipping is not customary, it&amp;#39;s of great significance to the people who will take care of you during your travels, inspires excellent service, and is an entrenched feature of the tourism industry across many destinations.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also consider tipping your tour leader and driver for outstanding service throughout your trip. Suggested amount for your guide, 500Y per person per day. Remember, a tip is not compulsory and should only be given when you receive excellent service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTravel insurance is recommended to protect yourself against the unexpected. In addition to the support that a policy may provide, you may be asked to present a copy of your travel insurance documentation while traveling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visa &amp;amp; Passport information&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nIt is the traveller&amp;#39;s responsibility to ensure they have a valid passport. The passport must be valid for a minimum of six months from the intended date of return. Visas may be required. Please note that these details are subject to change without notice. We recommend visiting&amp;nbsp;https:\\/\\/www.vfsglobal.com\\/&amp;nbsp;for up to date information in terms of entry requirements.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Group Size&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n20-40 travellers&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Children&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nChildren must be 5 years old or above and share a room with parents at all times. Children are charged the same price as adults.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tour Style&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTo meet the needs of various types of travelers, we choose to operate various types of tours, and depending on your selected package will mean different services are provided throughout your trip. The following descriptions of each tour style we hope will ensure that each traveller has appropriate expectations before they start their travels:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Fully Escorted&lt;\\/strong&gt; - This tour is fully escorted by an expert English-speaking guide who will accompany you throughout the tour.&lt;br \\/&gt;\\r\\n&lt;strong&gt;Cherry Blossoms&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nPlease note: cherry blossoms are weather dependent and it is not guaranteed that they will be in bloom at the time of your arrival.&lt;\\/p&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"447663\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[447663],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447664\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[447664],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447665\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[447665],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447666\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[447666],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447667\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[447667],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447668\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[447668],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447669\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[447669],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447670\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[447670],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447671\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[447671],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447672\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[447672],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"447673\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[447673],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"27427\":{\"CityName\":\"Tokyo\",\"FromDate\":{\"20240310\":{\"FromDate\":\"2024-03-10\",\"FromDateDMY\":\"10\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240313\":{\"FromDate\":\"2024-03-13\",\"FromDateDMY\":\"13\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240317\":{\"FromDate\":\"2024-03-17\",\"FromDateDMY\":\"17\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240322\":{\"FromDate\":\"2024-03-22\",\"FromDateDMY\":\"22\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Tokyo,Hamamatsu,Osaka,Shizuoka','Tokyo,Orient,Japan,Hamamatsu,Osaka,Shizuoka','','27427,11417,32378,25113',83600,96800,6,'',NULL,'[{\"day\":1,\"images\":\"Untitled design (1).jpg\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"Untitled design (2).jpg\"},{\"day\":5,\"images\":\"Untitled design (3).jpg\"},{\"day\":6,\"images\":\"\"},{\"day\":7,\"images\":\"Untitled design.jpg\"}]',2,'',0,'2024-02-02 00:00:00','2024-03-22 00:00:00','2024-03-22 00:00:00',3,'Japan','110','2024-02-02 19:13:33','2024-02-02 00:00:00',1,1,'0','0','0','Dive into the captivating world of Japan, where ancient traditions thrive alongside breathtaking landscapes and cutting-edge technology. Explore Japan\'s top attractions, cultural heritage, and its dynamic blend of past and present.','Japan, Japan travel, Japanese culture, natural beauty, modern Japan, historical sites, Japanese cuisine, technology, Japanese traditions, travel experiences','Discover Japan: A Land of Rich Tradition, Natural Beauty, and Modern Marvels',NULL,'best-of-japan-7-days',NULL,NULL,NULL,0),(429,4109,3,5293,0,0,0,'',NULL,3,0,0,'{\"gtxPkgId\":\"55738\",\"Title\":\"test\",\"Details\":\"\",\"Duration\":\"1 Day, 25 Hours\",\"Icon\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/city\\/105\\/sightseeing\\/5293_1694779497.jpg\",\"ThumnailImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/city\\/105\\/sightseeing\\/5293_1694779497.jpg\",\"DetailImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/city\\/105\\/sightseeing\\/5293_1694779497.jpg\",\"InvnItemSysId\":\"4109\",\"From\":\"2023-09-17\",\"To\":\"2023-12-22\",\"Currency\":1,\"SupplierSysId\":\"5739\",\"CurrencySymbol\":\"INR\",\"AdultEntryFee\":\"1200.00\",\"ChildEntryFee\":\"300.00\",\"SSInclusion\":[],\"SICCost\":[],\"PvtCost\":[],\"OtherInclusion\":\"\",\"Advisory\":\"\",\"RefundPolicy\":\"\",\"CancellationPolicy\":\"\",\"ConfirmationPolicy\":\"\",\"ActivityGrType\":\"[\\\"Indoor Activity\\\"]\",\"ActivityType\":\"[]\",\"DurationInMin\":\"2940\",\"DurationStr\":\"1 Day, 25 Hours\",\"TimeSlots\":\"[[\\\"17:00\\\",\\\"18:00\\\"]]\",\"PickUpLocation\":\"\",\"PickUpTime\":\"\",\"OpenDays\":\"\",\"ThingsToCarry\":\"[]\",\"IsKidAllowed\":\"0\",\"IsTransferInc\":\"0\",\"EndAgeYr\":\"0\",\"StartAgeYr\":\"0\",\"ContSysId\":\"228\",\"CitySysId\":\"105\",\"longitude\":\"0\",\"latitude\":\"0\",\"Address\":\"test\",\"SightseeingVehicles\":[]}','Abu Dhabi','Abu Dhabi,United Arab Emirates',NULL,'105',0,0,0,NULL,NULL,NULL,0,'',0,'2023-09-15 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',3,'United Arab Emirates','228','2023-09-15 17:37:18','2023-09-15 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,0),(430,60804,1,5293,1,0,0,'Honeymoon,Culture,Romantic,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":60804,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/cherry-blossoms-of-japan----days_1695104949\",\"BookingValidUntill\":\"2024-03-23\",\"AdvBookingDays\":60,\"DETAILS\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing as per the itinerary, including the beauty of sakura (cherry blossoms) in beautiful destinations like Tokyo&amp;rsquo;s Ueno Park, Kyoto&amp;rsquo;s Heian Jingu Shrine and Lake Kawaguchiko with the backdrop of iconic Mount Fuji&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All coach, rail and ferry transportation, including the iconic Japanese bullet train&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12 nights in comfortable, 3 &amp;amp; 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily and 1 dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ride the renowned Japanese bullet train&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated private transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by professional, English-speaking guide&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Osaka\",\"DestinationPlacesSysId\":32378,\"SourcePlaces\":\"Tokyo\",\"SourcePlaceSysId\":27427,\"AgencyName\":\"I Need Trip\",\"Name\":\"CHERRY BLOSSOMS OF JAPAN - 13 DAYS \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Gala Dinner,Train Station Transfers,Intercity Transfers,Sightseeing,Guided Tours,Ferry,All Transfers\",\"PackageType\":\"Honeymoon,Culture,Romantic,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2023-09-19\",\"To\":\"2024-03-23\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":27427,\"Title\":\"Tokyo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575491,\"Name\":\"Shinjuku Washington Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27427,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":80535,\"Title\":\"KAWAGUCHI\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575496,\"Name\":\"Kasugai View Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":80535,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":26669,\"Title\":\"Takayama\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575498,\"Name\":\"Hodakasou Yamano Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":26669,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":14674,\"Title\":\"Kyoto\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575499,\"Name\":\"Hotel MONday Kyoto Marutamachi\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14674,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":32378,\"Title\":\"Osaka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575501,\"Name\":\"Osaka Sheraton Miyako Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32378,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":34773,\"Title\":\"Hiroshima\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":575502,\"Name\":\"Grand Prince Hiroshima Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34773,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55918,\"Title\":\"Full day Tokyo City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55919,\"Title\":\"Tsukiji Outer Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":7691,\"Title\":\"Ueno Park\",\"Description\":\"Ueno Park (&auml;&cedil;&Scaron;&eacute;&Dagger;\\u017d&aring;&hellip;&not;&aring;&oelig;&rsquo; Ueno K&Aring;\\u008den) is a spacious public park in the Ueno district of Tait&Aring;\\u008d, Tokyo, Japan. The park was established in 1873 on lands formerly belonging to the temple of Kan&amp;#039;ei-ji. Amongst the country&amp;#039;s first public parks, it was founded following the western example as part of the borrowing and assimilation of international practices that characterizes the early Meiji period. The home of a number of major museums, Ueno Park is also celebrated in spring for its cherry blossoms and hanami. In recent times the park and its attractions have drawn over ten million visitors a year, making it Japan&amp;#039;s most popular city park.\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27427\\/sightseeing\\/Ueno_Park_27427_1545052827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55920,\"Title\":\"Yoyogi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27427,\"CityName\":\"Tokyo\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55921,\"Title\":\"Lake Kawaguchiko\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55922,\"Title\":\"Mt Fuji 5th station\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55923,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":80535,\"CityName\":\"KAWAGUCHI\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55924,\"Title\":\"Matsumoto Castle also known as \\u2018Crow Castle\\u2019\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55926,\"Title\":\"Takayama Jinya\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55925,\"Title\":\"tour of Takayama old town\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26669,\"CityName\":\"Takayama\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55927,\"Title\":\"Shirakawa-go Village a UNESCO World Heritage Site\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55929,\"Title\":\"Heian Jingu Shrine\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":4920,\"Title\":\"Kinkaku-ji Temple\",\"Description\":\"Kinkaku-ji, officially named Rokuon-ji, is a Zen Buddhist temple in Kyoto, Japan. It is one of the most popular buildings in Japan, attracting a large number of visitors annually. It is designated as a National Special Historic Site and a National Special Landscape, and it is one of 17 locations making up the Historic Monuments of Ancient Kyoto which are World Heritage Sites. The site of Kinkaku-ji was originally a villa called Kitayama-dai, belonging to a powerful statesman, Saionji Kintsune. Kinkaku-ji&#039;s history dates to 1397, when the villa was purchased from the Saionji family by sh&Aring;\\u008dgun Ashikaga Yoshimitsu, and transformed into the Kinkaku-ji complex. When Yoshimitsu died, the building was converted into a Zen temple by his son, according to his wishes.\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":35.0393744,\"Long\":135.727054,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14674\\/sightseeing\\/48_1525634686.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55928,\"Title\":\"Lake Biwa Canal\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14674,\"CityName\":\"Kyoto\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55930,\"Title\":\"Todai-ji (Great Eastern Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55934,\"Title\":\"Bikan Historical Quarter\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55933,\"Title\":\"Kurashiki, a city on Japan\\u2019s Seto Inland Sea\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55932,\"Title\":\"\'White Heron Castle\', Himeji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55936,\"Title\":\"Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8106,\"Title\":\"Hiroshima Peace Memorial Museum\",\"Description\":\"The Hiroshima Peace Memorial Museum is a museum located in Hiroshima Peace Memorial Park, in central Hiroshima, Japan, dedicated to ing the atomic bombing of Hiroshima in World War II. The museum was established in August 1955 with the Hiroshima Peace Memorial Hall.  It is the most popular of Hiroshima&amp;#039;s destinations for school field-trips from all over Japan and for international visitors. 53 million people had visited the museum from its opening in 1955 through 2005, averaging over one million visitors per year.\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34773\\/sightseeing\\/Hiroshima_Peace_Memorial_Museu_34773_1547209949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55935,\"Title\":\"short trip to Miyajima\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34773,\"CityName\":\"Hiroshima\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55937,\"Title\":\"full-day Osaka city tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55938,\"Title\":\"Kuromon Ichiba\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55939,\"Title\":\"Minami area in the city\\u2019s south\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"448420\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Japan! Today begins your magnificent tour through Japan! Please make your own way to the starting point hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take the evening to relax after your flight and prepare for your first full day of touring tomorrow.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448421\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;This is arguably one of the most extraordinary capital cities on the planet. The Tokyo metropolitan area spreads over three prefectures with 38 million residents.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In spring, local and international tourists alike flock to Japan to see the renowned cherry trees bloom and join in the sakura (cherry blossom) festivities. Even for a city so densely populated, Tokyo has a lot of parks and green spaces, making it perfect for sakura viewing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a full day tour of the city&amp;rsquo;s highlights. We&amp;rsquo;ll start with a visit to the Tsukiji Outer Market, a shopping district adjacent to the enormous former wholesale fish market. It&amp;rsquo;s a dream for foodies. This lively area is home to everything food-related &amp;ndash; fresh ingredients, street food vendors, kitchen utensils. You&amp;rsquo;ll find great sushi and other restaurants around here, too.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll see a beautiful public park that has served many purposes over the centuries. It was originally built as a feudal lord&amp;rsquo;s Tokyo residence and duck hunting grounds during the Edo period, but later served as a strolling garden and an imperial detached palace, before eventually being opened to the public in its current form.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Depending on the season&amp;#39;s timing, your guide will carefully choose another viewing spot around Tokyo for you to enjoy these lush pink blooms and the joy of sakura.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55918,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55919,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448422\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Enjoy the serenity of Ueno Park, the city&amp;rsquo;s largest green space and home to numerous temples and museums. There&amp;rsquo;s even a zoo here. More than 800 cherry blossom trees line the wide central path. The first cherry trees were planted here by legendary shogun Tokugawa Ieyasu, whose reign began the Edo Period (1603-1868). It&amp;rsquo;s said to be one of the oldest hanami (a cherry blossom viewing party) places in the city and it&amp;rsquo;s certainly a popular spot, so be prepared for crowds. The trees here typically bloom a little bit earlier. At night it&amp;rsquo;s especially magical when this space is lit up.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The annual blooming of sakura is a sacred occurrence that has been celebrated for over 1,000 years. Cherry blossom season is widely f&amp;ecirc;ted all over the country. Hanami, usually with a picnic, is a chance to celebrate the arrival of spring and the transient, fleeting beauty of sakura.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You&amp;rsquo;ll have some free time for lunch and a wander among the blossoms.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the heart of the quirky Harajuku district, we&amp;rsquo;ll stop at Yoyogi Park. It&amp;rsquo;s a popular gathering place year-round and in spring, with around 600 cherry trees, it&amp;rsquo;s another lively spot for hanami parties. We&amp;rsquo;ll then visit nearby Meiji Shrine (Meiji Jingu), located within a 170-acre forest in the centre of Tokyo. Constructed of cypress wood and copper, the shrine commemorates Emperor Meiji, who presided over Japan&amp;rsquo;s industrial revolution in the second half of the 19th century. This calm, peaceful escape is beautiful in cherry blossom season.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575491,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7691,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55920,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448423\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448432\",\"Title\":\"Tokyo - Kawaguchiko\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;We&amp;rsquo;ll head to Kawaguchiko today, about a two hour drive. Lake Kawaguchiko is the most accessible of the Fuji Five lakes; popular sightseeing spots each offering an astonishing view of dramatic, iconic Mount Fuji. Sakura season aside, this is a great place to get back to nature.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Here we&amp;rsquo;ll visit Mt Fuji 5th station to hopefully view the divine mountain before visiting Oishi Park on the north side of the lake. Seeing the cherry blossoms with Japan&amp;rsquo;s most famous mountain in the background really is an experience. There are about 300 cherry trees on the northern shore, stretching for about a kilometre.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You&amp;rsquo;ll see the lakeside trail along the eastern shore of the lake that boasts many weeping cherry trees. There will be time for lunch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This lake is also home to a cherry blossom festival held during the season, one of the most popular in the country.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80535,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575496,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55921,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55922,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55923,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448433\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":80535,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448434\",\"Title\":\"Kawaguchiko - Takayama\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;We&amp;rsquo;ll drive to the traditional city of Takayama today, still home to many Edo-period buildings.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll visit Matsumoto Castle, also known as &amp;lsquo;Crow Castle&amp;rsquo; due to its dramatic black exterior. The donjon (keep) &amp;ndash; Japan&amp;rsquo;s oldest remaining wooden keep, completed around 1593 &amp;ndash; is listed as a National Treasure of Japan. This historic site is particularly lovely when hundreds of cherry blossom trees surrounding the castle are in bloom.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For a taste of authentic, old Japan, we&amp;rsquo;ll enjoy a tour of Takayama old town, nestled in the Hida mountains. This city still retains a traditional feel, especially in its beautifully preserved old town (Sanmachi Suji). Here you&amp;rsquo;ll find quaint, old latticed wooden buildings and Sannomachi Street, with pretty homes, restaurants and sake breweries. We&amp;rsquo;ll see the Takayama Jinya, the former government headquarters under the Tokugawa Shogunate from 1692-1871.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards we will continue to our traditional onsen hotel deep in the stunning Japanese alps.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26669,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575498,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55924,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55926,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55925,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448435\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26669,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448436\",\"Title\":\"Takayama - Shirakawago - Kyoto\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today travel to Shirakawa-go Village, a UNESCO World Heritage Site that has more than 100 &amp;#39;Gassho-style&amp;#39; houses, which feature steeply-pitched roofs. Built many hundreds of years ago, these historic houses stand together in a beautiful natural setting. Enjoy exploring this unique village with its thatched-roof houses sitting among gorgeous mountain scenery. Following this we will transfer to Kyoto where the afternoon is at leisure to enjoy this UNESCO delight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14674,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55927,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448437\",\"Title\":\"Kyoto\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;In north-eastern Kyoto, we&amp;rsquo;ll walk along the Philosopher&amp;rsquo;s Path, running alongside the Lake Biwa Canal. It&amp;rsquo;s perfect for a slow stroll under the fragrant blossoms.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Heian Jingu Shrine is a relatively young sacred location &amp;ndash; built in 1895 &amp;ndash; but this Shinto shrine is very impressive, with its enormous torii (sacred gate) standing almost 25 metres high. The garden behind the main hall &amp;ndash; a shining example of Meiji-era garden design &amp;ndash; is home to several weeping cherry trees.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Kinkaku-ji Temple, otherwise known as the Golden Pavilion. This is a Zen temple and a UNESCO World Heritage Site with two floors covered entirely in thin layers of pure gold. The site is set within a beautiful classical Zen garden. The detailed architecture of Kinkaku-ji incorporates three distinct architectural styles &amp;ndash; Shinden, Samurai, and Zen.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14674,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55929,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4920,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55928,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448438\",\"Title\":\"Kyoto\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Today is a full free day to spend in Kyoto. This golden city was once the capital of Japan and sits on the island of Honsh?. It&amp;#39;s famous for its numerous classical Buddhist temples, as well as gardens, imperial palaces, Shinto shrines and traditional wooden houses. In the city&amp;#39;s famous Gion district, Geisha can often be seen strolling through the streets.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14674,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575499,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448439\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14674,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448440\",\"Title\":\"Kyoto - Nara - Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;This morning, we travel the short distance to Nara. Visit T?dai-ji (Great Eastern Temple), famed for its Great Buddha Hall, which remains one of the largest wooden buildings in the world. This impressive building houses a 15m-tall bronze statue of the Buddha Vairocana. Following this we&amp;#39;ll wander through gorgeous Nara Park, where more than 1200 tame sika deer roam freely.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Following our tour we&amp;#39;ll depart Nara and head to Osaka, a vibrant tourist destination renowned for its food culture.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55931,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55930,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448441\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448442\",\"Title\":\"Osaka - Himeji - Hiroshima\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Today your main luggage will remain at the hotel in Osaka to meet you upon your return in two days time. Please ensure you have an overnight bag packed for your two evenings in Hiroshima.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast we&amp;#39;ll depart Osaka to visit the so-called &amp;#39;White Heron Castle&amp;#39;, Himeji &amp;ndash; it&amp;#39;s the largest surviving example of a traditional Japanese castle. Comprising 83 buildings, the white roof of this UNESCO World Heritage-listed complex is said to evoke the wings of a heron taking flight, hence the popular name Shirasagi-j? (White Heron Castle). This is the most visited castle in Japan and the site offers some wonderful views of surrounding Himeji city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From here we&amp;#39;ll continue on to Kurashiki, a city on Japan&amp;rsquo;s Seto Inland Sea, where we&amp;#39;ll tour the Bikan Historical Quarter, known for its centuries-old buildings and lovely local shops. After our visit here we&amp;#39;ll transfer to our hotel in Hiroshima.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34773,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55934,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55933,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55932,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448443\",\"Title\":\"Hiroshima - Miyajima Island - Hiroshima\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;After breakfast this morning our guide will meet us in the hotel lobby. Together we&amp;#39;ll board a ferry for the short trip to Miyajima, an island known for its forests and ancient temples. Just offshore, there&amp;#39;s a &amp;#39;floating&amp;#39; torii, which becomes partially submerged at high tide. It marks the entrance to the Itsukushima Shrine, which was first built in the 12th century. Nearby, the Museum of History and Folklore has cultural artifacts in a 19th-century merchant&amp;#39;s home. We&amp;rsquo;ll take a walk along Omotesando Shopping Street where you can grab some lunch before returning to Hiroshima by ferry.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once we&amp;#39;re back in Hiroshima we&amp;#39;ll visit the Atomic Bomb Dome, otherwise known as the Genbaku Dome, or the Hiroshima Peace Memorial. A shell of a building that was one of very few left standing after the United States bombed Hiroshima in 1945. In Hiroshima today, locals have mixed feelings about the UNESCO World Heritage-listed structure: some see it as a reminder of war, while others consider it a tribute to the lost that ensures we&amp;#39;ll never forget the tragic events that took place here.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, we&amp;#39;ll visit the Hiroshima Peace Memorial Museum, which contains many poignant, yet important, exhibits. The flame in the cenotaph is intended to burn until the last nuclear weapon has been destroyed.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34773,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575502,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55936,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55935,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448444\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34773,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448445\",\"Title\":\"Hiroshima - Osaka\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":12,\"Program\":\"&lt;p&gt;This morning we&amp;#39;ll depart Hiroshima via the bullet train to Shin-Osaka Station. Upon arrival in Osaka we&amp;#39;ll begin a full-day coach tour with our guide, beginning at Osaka Castle, which played a major role in the unification of Japan during the Azuchi-Momoyama period in the 16th century.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, we&amp;#39;ll tour Kuromon Ichiba, one of the city&amp;#39;s main food markets. This spacious covered market features vendors peddling street food, fresh produce, shellfish and trinkets and souvenirs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After a short break for lunch our tour continues to the Minami area in the city&amp;rsquo;s south &amp;ndash; a district that&amp;#39;s bursting with boutiques, designers outlets, restaurants and bars.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll also enjoy a walking tour of the Dotonbori area. One of Osaka&amp;#39;s most popular tourist destinations, this street runs parallel to the Dotonbori canal and is a hugely popular destination for shopping, street food, bars and entertainment. At night the streets here are illuminated by hundreds of colourful neon lights and mechanised signs, including the famous running Glico Man sign and the Kani Doraku crab sign.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This evening we&amp;rsquo;ll enjoy dinner as a group at a local restaurant.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":575501,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55937,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55938,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55939,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"448446\",\"Title\":\"Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;Enjoy one last delicious breakfast this morning, before your Japanese adventure comes to an end.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"60804\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"218020.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-15\",\"To\":\"2024-03-15\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-22\",\"To\":\"2024-03-22\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null},{\"From\":\"2024-03-23\",\"To\":\"2024-03-23\",\"Currency\":1,\"priceTripleOcc\":\"218020.00\",\"priceDoubleOcc\":\"218020.00\",\"priceSingleOcc\":null,\"priceExtraBed\":null,\"priceWithoutBed\":null,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":218020,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":null,\"CEB\":null,\"COSTDO\":218020,\"COSTSO\":null,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":null,\"COSTTO\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;p&gt;&lt;strong&gt;Minimum amount to be paid&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;On the date of booking the Tour - 10% of the Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;90 Days or more prior to the departure of tour - 50% of Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;60 Days or more prior to the departure of tour -&amp;nbsp; 100% of Package Cost&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp; No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International airfares&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visas&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel insurance (compulsory)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tipping&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Optional activities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned in the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;All coach, rail and ferry transportation, including the iconic Japanese bullet train&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;12 nights in comfortable, 3 and 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily, 1 dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ride the renowned Japanese bullet train&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated private transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by professional, English-speaking guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing as per the itinerary, including the beauty of sakura (cherry blossoms) in beautiful destinations like Tokyo&amp;rsquo;s Ueno Park, Kyoto&amp;rsquo;s Heian Jingu Shrine and Lake Kawaguchiko with the backdrop of iconic Mount Fuji&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeing Highlights&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tokyo &amp;ndash; Enjoy sakura festivities and the art of hanami in this extraordinary city&amp;rsquo;s remarkable green spaces&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kawaguchiko &amp;ndash; Take in the natural beauty of this lake with astounding views of iconic Mount Fuji&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Takayama &amp;ndash; Experience the timeless charm of this quaint, traditional city with a walk through its beautifully-preserved old town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kyoto &amp;ndash; Experience sakura in Japan&amp;rsquo;s spiritual heart as you stroll the Philosopher&amp;rsquo;s Path under an umbrella of fragrant cherry blossoms&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nara &amp;ndash; See the country&amp;rsquo;s largest Buddha statue and the famous Nara deer park&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hiroshima &amp;ndash; Ride the iconic Japanese bullet train between Osaka and Hiroshima&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hiroshima &amp;ndash; Visit the Hiroshima Peace Memorial Museum to understand the tragedies of Japan&amp;rsquo;s not so distant past&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Miyajima - See the 12th-century Itsukushima Shrine and famous floating torii gate&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Osaka &amp;ndash; Enjoy free time in this vibrant city renowned for its food culture&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;&lt;strong&gt;Fitness Requirements&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nWhile the tour itinerary should give you some guidance and overview to the expected requirements, to determine if this tour is right for you we categorise each of our tours in terms of their intensity. These guidelines are to ensure that each tour group is conducted as expected and to ensure the overall satisfaction of all Inspiring Vacations customers.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;As a general rule, porterage is not included, therefore at all times you are expected to handle your own luggage where help may not be available.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This particular tour is categorised as a &amp;ldquo;3&amp;rdquo;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3 &amp;ndash; Moderate Tour: A good level of fitness and mobility is required, as this tour includes a moderate level of physical activity and is considered a medium-fast paced tour. You should be able to walk up and down stairs, get on and off the coach and able to walk reasonable distances of approximately 2 kilometres per day or more with ease. Any physical ailments you may have must be disclosed at the time of booking to determine your suitability. If you have any form of walking aids, other than a walking stick or hiking poles, then this tour is not suitable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tipping&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nA friendly reminder that tipping is not included in your package. While tipping is not customary, it&amp;#39;s of great significance to the people who will take care of you during your travels, inspires excellent service, and is an entrenched feature of the tourism industry across many destinations.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also consider tipping your tour leader and driver for outstanding service throughout your trip. Remember, a tip is not compulsory and should only be given when you receive excellent service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Accommodation&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThe accommodation listed is subject to change. Any changes will be of an equal or higher standard. Bedding configurations (double or twin) are requests only. All efforts will be made to meet your preferences, however any changes are beyond our control.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Twin Share Bedding Configuration&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nAt any time, bedding configuration is subject to confirmation by the hotel and based on availability. While you have the option to select either twin or double bedding at time of booking, our recommendation when travelling to Japan is to choose twin bedding, as the rooms are often bigger than those that have a double bed. If insisting on double bedding, please note that the rooms will be smaller and more narrow. As a general expectation, we cannot always guarantee bedding at all hotel stays.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTravel insurance is recommended to protect yourself against the unexpected. In addition to the support that a policy may provide, you may be asked to present a copy of your travel insurance documentation while traveling.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visa &amp;amp; Passport information&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nIt is the traveller&amp;#39;s responsibility to ensure they have a valid passport. The passport must be valid for a minimum of six months from the intended date of return. Visas may be required. Please note that these details are subject to change without notice. We recommend visiting&amp;nbsp;https:\\/\\/www.vfsglobal.com\\/&amp;nbsp;for up to date information in terms of entry requirements.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Group Size&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n20-40 people&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Children&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nChildren must be 5 years old or above and share a room with parents at all times. Children are charged the same price as adults.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tour Style&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nTo meet the needs of various types of travelers, we choose to operate various types of tours, and depending on your selected package will mean different services are provided throughout your trip. The following descriptions of each tour style we hope will ensure that each traveller has appropriate expectations before they start their travels:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Fully Escorted &lt;\\/strong&gt;- This tour is fully escorted by an expert English-speaking guide who will accompany you throughout the tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Cherry Blossoms&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nPlease note: cherry blossoms are weather dependent and it is not guaranteed that they will be in bloom at the time of your arrival.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"448420\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[448420],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448421\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[448421],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448422\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[448422],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448423\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[448423],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448432\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[448432],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448433\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[448433],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448434\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[448434],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448435\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[448435],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448436\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[448436],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448437\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[448437],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448438\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[448438],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448439\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[448439],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448440\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[448440],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448441\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[448441],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448442\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[448442],\"Remark\":[\"&lt;p&gt;All Transfers in Private Coach fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448443\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[448443],\"Remark\":[\"&lt;p&gt;All Transfers in Coach &amp; Ferry fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448444\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[448444],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448445\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[448445],\"Remark\":[\"&lt;p&gt;All Transfers in Coach &amp; Train fully escorted by a professional English-speaking tour guide.&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"448446\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[448446],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"27427\":{\"CityName\":\"Tokyo\",\"FromDate\":{\"20240307\":{\"FromDate\":\"2024-03-07\",\"FromDateDMY\":\"07\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240315\":{\"FromDate\":\"2024-03-15\",\"FromDateDMY\":\"15\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240322\":{\"FromDate\":\"2024-03-22\",\"FromDateDMY\":\"22\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240323\":{\"FromDate\":\"2024-03-23\",\"FromDateDMY\":\"23\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Tokyo,KAWAGUCHI,Takayama,Kyoto,Osaka,Hiroshima','Tokyo,Orient,Japan,KAWAGUCHI,Takayama,Kyoto,Osaka,Hiroshima','','27427,80535,26669,14674,32378,34773',218020,218020,12,'',NULL,'[{\"day\":1,\"images\":\"Untitled design.jpg\"},{\"day\":2,\"images\":\"Untitled design (1).jpg\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"Untitled design (2).jpg\"},{\"day\":5,\"images\":\"Untitled design (3).jpg\"},{\"day\":6,\"images\":\"Untitled design (5).jpg\"},{\"day\":7,\"images\":\"Untitled design.png\"},{\"day\":8,\"images\":\"Untitled design (6).jpg\"},{\"day\":9,\"images\":\"Untitled design (7).jpg\"},{\"day\":10,\"images\":\"Untitled design (8).jpg\"},{\"day\":11,\"images\":\"\"},{\"day\":12,\"images\":\"\"},{\"day\":13,\"images\":\"\"}]',2,'',0,'2023-09-19 00:00:00','2024-03-23 00:00:00','2024-03-23 00:00:00',3,'Japan','110','2023-09-19 15:18:33','2023-09-19 00:00:00',1,1,'1','1','0','Cherry blossoms Japan\r\nSakura season\r\n13-day Japan itinerary\r\nJapanese cherry blossoms tour\r\nSakura viewing\r\nJapan travel experience\r\nCherry blossom festivals\r\nSpringtime in Japan','Immerse yourself in the ethereal beauty of Japan\'s cherry blossoms on this 13-day adventure. Explore historic sites, savor exquisite cuisine, and witness the annual sakura spectacle.','\"Cherry Blossoms of Japan: A 13-Day Floral Journey\"',NULL,'cherry-blossoms-of-japan-13-days',NULL,NULL,NULL,0),(431,5822,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"5822\",\"VisaName\":\"Germany Business Visa \",\"Nationality\":null,\"VisaAdultRates\":7200,\"VisaChildRates\":3600,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Germany\",\"VisaRequired\":6,\"VisaCategory\":2,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Business\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;Documents Required for Germany Business Visa:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid passport (issued within the last 10 years and with at least 3 months&amp;#39; validity after the scheduled return); passports with observations regarding the front data page will not be accepted; passport must have at least two empty pages to affix visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Schengen Visa Application Form:&lt;\\/strong&gt;&amp;nbsp;completely filled out and signed,&amp;nbsp;Print and submit all pages of the application form, including the barcodes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Appointment Letter:&lt;\\/strong&gt;&amp;nbsp;This slip needs be carried on the day of appointment&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Copy of the biometric &amp;amp; address page of the passport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Declarations:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sign two declarations of True and Complete Information.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sign a declaration of travel with valid medical insurance.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Photograph:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a recent biometric passport picture (35x45mm).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Must have a white background with 70%-80% face coverage.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Not older than six months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cover Letter with signature&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clearly state the purpose and duration of your travel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide proof of intended means of transport and itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a certificate from the travel agency confirming the booking of an organised trip or any other detailed travel itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include proof of hotel reservations, rental of a holiday home, or campus residence reservation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If staying with a family member or friend, provide proof of sponsorship, a confirmation from the third person with signature, proof of address, and a copy of their passport or German ID card.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a flight reservation for your trip.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Medical InsuranceFlight Reservation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The insurance should cover the entire duration of your Schengen trip with a minimum medical expenses coverage of EUR 30,000.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Supporting Documents for Germany Tourist Sticker Visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If your trip is Sponsored:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If sponsored by an Indian resident - submit a sponsor letter, the sponsor&amp;#39;s passport copy, and their bank statements for the last 3 months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you are sponsored by a German\\/EU resident - Sponsor letter with a passport copy of the sponsor and copy of the German residence permit (if sponsor is residing in Germany and not a German Citizen) and If provided: Verpflichtungserkl&amp;auml;rung (formal obligation letter) of your sponsor.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If the sponsor is your spouse&lt;\\/strong&gt; -&amp;nbsp;include a marriage certificate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If the sponsor is your parent&lt;\\/strong&gt; - provide a birth certificate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If you are sponsored by a company in India&lt;\\/strong&gt; - Acknowledgement of the company&amp;#39;s ITR Returns for the last three years (latest first, for example, 2022-2020)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If you are sponsored by a company in Germany&lt;\\/strong&gt; - Sponsor letter with a passport copy of the sponsor and copy of the German residence permit (if sponsor is residing in Germany and not a German Citizen).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Invitation letter from the business partner in German or English including the following information:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;What activities are planned What is the business relationship between the inviting and sending company?&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For consultancy services: &lt;\\/strong&gt;a confirmation letter from the German client. - If the inviting company arranges for accommodation, they should confirm the same in their invitation letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Employed:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pay slips&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Employment contract&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Employer&amp;#39;s statement (leave sanction letter).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include your bank statements for the last 3 months, Indian income tax return (ITR) acknowledgment, or Form 16.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Self-Employed or a Company owner:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Certificate of registration of the company&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Goods and services tax (GST) registration number for companies based in India&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indian income tax return (ITR) acknowledgment for the last two assessment years or Form 16.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Retired:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pension statements for the last three months and\\/or proof of regular income generated by ownership of property or business&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If a Student:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Certificates of the establishment at which you are enrolled and no objection certificate from School \\/ University and for university students&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;If Unemployed:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Supporting Documents for Germany Business Sticker Visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Federal Employment Agency Approval (for international staff exchange or work contracts)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you intend to work in Germany while on your Schengen Visa, please confirm with the inviting company whether you need approval from the Federal Employment Agency (Federal Agency for Labor) beforehand.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hosting company or institution should obtain this approval directly from the Federal Employment Agency and provide it when you submit your visa application.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Covering Letter from the Indian Company:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Submit an original signed covering letter on the company&amp;#39;s letterhead from the Indian company.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include the following details - Traveler&amp;#39;s name, passport number, purpose of the trip, duration of stay, brief itinerary of the visit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Company Details&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide the Certificate of Incorporation of the Indian Company.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include the GST Registration document.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offer proof of Company Registration.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Invitation Letter from the Business Partner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Obtain an invitation letter from the business partner in German or English.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The letter should specify the Planned activities during the visit and Details of the business relationship between the inviting and sending companies (e.g., same group, supplier relationships, specific trade details).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;For Consultancy Services&lt;\\/strong&gt; - Confirmation letter from the German client and If the inviting company is arranging accommodation, confirm this in the invitation letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Detailed Business Meeting Schedule(for stays over 30 days)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide a detailed schedule of your business meetings if your stay exceeds 30 days.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you have Additional Appointments in the Schengen Area&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you have further appointments in the Schengen area, submit a signed invitation letter from the Schengen business partner on their company letterhead.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This letter should mention the purpose of travel, itinerary, and personal data of the applicant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Immigration Tips Upon Arrival at Germany Airport&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have your travel documents ready: Ensure you have your passport, valid Germany sticker visa, return ticket, and hotel bookings for quick verification by immigration authorities, making your arrival process smoother.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Understand Germany&amp;rsquo;s regulations: If you have items to declare or need baggage inspection, head to the customs area. Familiarise yourself with the Customs Regulations at Germany Airports to avoid any complications.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay updated on advisories: Stay informed about airline and travel advisories for any potential changes in flight schedules, procedures, or regulations. This knowledge helps you make informed decisions while travelling.&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Embassy Of The Federal Republic Of Germany&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;6, 50G, Shantipath, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Phone:&amp;nbsp;011 4419 9199&lt;\\/p&gt;\",\"PrecessingTime\":\"15 Days\",\"VisaValidity\":\"As per Embassy \",\"VisaDuration\":\" \",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"4000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"4000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"25\",\"Title\":\"One Old Passport\",\"Description\":\"&lt;p&gt;If any&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Germany','Germany',NULL,'83',7200,7200,0,NULL,NULL,NULL,0,'',0,'2024-02-29 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Germany','83','2024-02-29 19:07:48','2024-02-29 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'germany-business-visa',NULL,NULL,NULL,0),(432,66811,1,5293,1,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":66811,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-dubai_1705307879\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Looking for a luxurious escapade to spend your vacation? Dubai, the destination full of luxury, meets all your requirements. Located in the&amp;nbsp;Middle East, it is one of the most preferred holiday destinations in the world. Comprising stunning architectures designed with a modern touch and luxury outlets of high-end brands from around the world. For a chill out vacation at the flawless beaches, stay at the luxurious beachside resorts and have an enthralling experience.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF DUBAI\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"16418\",\"SupplierName\":\"VTD TOURISM PVT. LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":218050,\"Name\":\"CITYMAX HOTEL - BUR DUBAI\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.25080000\",\"Long\":\"55.29210000\",\"Address\":\"P.O BOX 116121, \\nDUBAI, \\nUAE, Bur Dubai, , , \"},\"Images\":{\"Image\":[{\"ImagId\":4788190,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICj7LhRYuT1RY+ClRs27teEFnxnZJMfiYbX4fETs728CeV3JCOeEu6HG4sNafNm5F2vLqT13w33EZY7Tgb\\/gXtJhvwQo6KkiPqGvK35KQQfrzWdDNpyOCRthFAoMdEtKcomeW7EqhnDpwqQOsczeunDe\"}]},\"CityId\":8219,\"Brief\":\"Citymax Hotel Bur Dubai is just twenty minutes from Dubai International airport.Heritage sites, the Dubai Creek and diving village are literally a stone&acirc;&euro;&trade;s throw away. The financial and World Trade Centre are as easily accessible. With 691 rooms of contemporary comfort. The 574 double rooms, 91 twin rooms, 4 rooms modified for disabilities, 14 interconnecting double rooms and 10 interconnecting twin rooms. Buffet Restaurant, Indian Restaurant, Chinese Restaurant, Sports Bar, Lounge Bar, 24-hour Coffee Shop. Besides being in the hub of coffee shops and restaurants, the hotel has an extensive choice of in-house dining and entertainment.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":18419,\"Title\":\"Dhow Cruise Marina\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;90 minutes of cruising in Dubai Marina, Yacht Club and Marina Towers&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International 3-Star buffet with Veg &amp; Non Veg dishes.(If Standard Option Booked)&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International 5-Star buffet with Veg &amp; Non Veg dishes.(If Premium Option Booked)&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Access to the open air upper deck and fully air conditioned lower deck&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Welcome drinks, water, tea and coffee available&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Live performance of Tanura Dance by professional artist&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Soothing music in the background&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617715025.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":18423,\"Title\":\"Desert Safari Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Get an exciting experience of the crossing the famous dunes before taking photos with the endless desert and the sun setting in the background, feel the fine sand slipping between your fingers as you make your way to the Desert camp. Here you will be welcomed with flavorful Arabic tea and coffee with dates and soft drinks to quench your thirst.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Feel the culture by dressing up in traditional attire and take selfies as the Henna artist paints your hand. This will be followed by Tanura show (traditional folk dance), Fire show and belly dancer perform to the rhythm of Arabic Music (The sequence of the event may change without prior notice).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Enjoy your meal with Veg and Non-Veg BBQ items experiencing the Arabic hospitality in this once in a lifetime Desert Safari tour in Dubai.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Budget Sharing&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by SUVs and Dune bashing in the desert for about 20 &ndash; 25 minutes ( depending on weather conditions).&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The services will be provided at a safari camp with all amenities, toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard buffet menu includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Non-Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks (may be local brand), Water, Coffee and Gahwa are served complimentary.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet menu&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspincludes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Standard Private Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be by exclusive 4 x 4 vehicle and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with standard amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;buffet&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;\\/span&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;menu&amp;nbsp&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Main Dish, Chicken, Lamb and Veg BBQ items,&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;Premium Camp&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;The pickup and drop from hotels will be on sharing basis by 4 x 4 vehicles and Dune bashing in the desert for about 30 &ndash; 40 minutes (depending on weather conditions). The services will be provided at a safari camp with deluxe amenities, with clean toilets, seating and linen.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;font-weight: 600 background-image: initial background-position: initial background-size: initial background-repeat: initial background-attachment: initial background-origin: initial background-clip: initial border: 0px margin: 0px padding: 0px outline: 0px list-style-type: none color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;International buffet&lt;\\/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&amp;nbspthat includes:&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Starters, Salads, Pasta, Veg suttee, Chicken, Lamb and Veg BBQ items&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Desserts&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&bull; Soft drinks, Water, Coffee and Gahwa served complimentary&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: Poppins, sans-serif text-align: left&quot;&gt;After all the evening fun you will be dropped back to your drop off location.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/crm.ineedtrip.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/5293_1617706459.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":16418,\"SupplierName\":\"VTD TOURISM PVT. LTD\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"497376\",\"Title\":\"Arrival &amp; Transfer to Hotel, Evening Dinner @Dhow Cruise\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On Arrival, Get transferred from Airport to Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening is going to be luxuriously romantic on a&amp;nbsp;Marina&amp;nbsp;Dhow Cruise.&amp;nbsp;It is a traditional wooden boat that glides along the Dubai creek under the starlit sky while a sumptuous dinner is served to you in true Arabic hospitality. Savour the delicacies and spend some cosy moments with your partner. Return to the hotel afterward.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18419,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497377\",\"Title\":\" Desert Safari in the Evening \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Evening is for the exciting&amp;nbsp;&lt;strong&gt;Desert Safari&lt;\\/strong&gt;, the biggest attraction of Dubai. Get aboard an exciting dune drive across the desert. Witness the beautiful sunset over sand dunes, enjoy camel ride and sand boarding. Camel ride in the desert is not that easy and it will make you hungry too! So then we enjoy delicious barbecue dinner and shisha (the famous Arabic water pipe). Relax and enjoy the amazing belly dance show by the campfire. Return back to hotel after an awesome day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at hotel in Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;PLEASE NOTE: We don&amp;#39;t recommend Desert Safari for Senior Citizens, infants, heart patients, pregnant women, persons those requiring special care, patients of a respiratory disorder, persons suffering from arthritis, blood pressure and diabetes, not to undertake tour.&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Desert Safari Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be picked from hotel to reach for dessert safari at the designated time. On reaching dessert area you can do dune bashing, where one can have drive through sand dunes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You may also enjoy Quard Biking, Camel Ride, Photography with Falcon Eagle which are not part of the package, hence these services are chargeable at the time of availing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There will be complimentary heena (mehendi) application. Later in the evening there will be camp dance, mostly it could be Belly Dance\\/Tanoura dance performance followed by dinner. Dinner would be in form of buffet where there is a long queue and if you like to have second helping of buffet items you will have to again stand in queue. It is therefore good idea to have sufficient helpings of buffet items at the first go itself. Dinner is always on dari\\/mat spread out on dessert, which is traditional way of eating there. After the dinner the dance again will resume. At designated time you will be taken back to the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you go for any additional or chargeable services you will have to make payment to the service provider on the spot. They may arrange VIP service where sitting will be arranged on benches\\/chairs and service will be also made of dinner at your place. But these services are chargeable, since it is not part of the package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Food served in buffet is of basic standard which is preset menu with no choice available, whether you opt for VIP paid service or otherwise.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18423,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497378\",\"Title\":\"HALF DAY CITY TOUR WITH BURJ KHALIFA 124TH FLOOR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Post a tempting breakfast, set out on a refreshing half-day Dubai city tour. Wander in the fascinating Dubai Museum &amp;amp; the Jumeirah Mosque. Next on your Dubai tour package, enjoy the glittering vistas of the world-famous Burj Al Arab Hotel and the ultra-luxurious Atlantis Hotel. Click pictures in the backdrop of the Atlantis perched atop the marvelous crescent-shaped Palm Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, behold breathtaking bird&amp;rsquo;s eye views of Dubai city from atop the towering Burj Khalifa that shall make you feel like you&amp;rsquo;re looking down from the Heavens itself. Shop at Dubai&amp;rsquo;s world-class shopping malls and buy exclusive Dubai merchandise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497379\",\"Title\":\"DAY FREE AT LEISURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After all, it&amp;rsquo;s a free day and it should go in your own way with the flow of your mood right? So, enjoy your breakfast all relaxed in your hotel. The whole day is at your own disposal to spend it your way. You can select an optional tour from different options provided by us like going for an early morning Hot Air Balloon ride&amp;nbsp;or maybe you are not yet satiated with the thirst for shopping. How about a relaxed day at Jumeirah Beach? Anyway, spend it your way. Return to hotel by night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stay overnight at Hotel in Dubai.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":218050,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497380\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after breakfast in check out from hotel and transfer to airport for departure flight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"66811\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30387.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5},{\"From\":\"2024-01-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"30387.50\",\"priceDoubleOcc\":\"30387.50\",\"priceSingleOcc\":91162.5,\"priceExtraBed\":\"30387.50\",\"priceWithoutBed\":\"28187.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30387.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28187.5,\"CEB\":30387.5,\"COSTDO\":30387.5,\"COSTSO\":91162.5,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":30387.5,\"COSTTO\":30387.5}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport return transfers on private basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing\\/tours on Seats in Coach basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;24*7 On tour Support&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sightseeings as per the itinerary\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Dubai City Tour ( Complimentary one way mono Rail )&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Burj Khalifa at The Top 124th Floor&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Marina Dhow Cruise&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Desert Safari ( Dune Bashing, Camel Ride, Tanura show, Heena Art with BBQ Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"497376\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[497376],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497377\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[497377],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497378\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[497378],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497379\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[497379],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497380\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[497380],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',30388,30388,4,NULL,NULL,NULL,2,'',0,'2024-01-15 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'United Arab Emirates','228','2024-01-15 16:42:17','2024-01-15 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-dubai',NULL,NULL,NULL,0),(433,66871,1,5293,0,0,0,'Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":66871,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/amazing-kashmir_1705403228\",\"BookingValidUntill\":\"2024-01-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;If there is heaven on earth, it is in Kashmir. The real paradise of Kashmir is an ultimate place for holidaying in the lap of nature. The place enjoys diverse wildlife, snow-capped mountains, picturesque valleys, charming landscapes, flowery gardens, traditional houseboats and much more. Known with beautiful names like &amp;#39;Alps of East&amp;#39;, &amp;#39;Kingdom of Heaven&amp;#39; and &amp;#39;Paradise on Earth&amp;#39;, Kashmir is an awesome destination for honeymooners but others as well visit this wonderful destination for getting connected to the beauty of nature.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"I Need Trip\",\"Name\":\"AMAZING KASHMIR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"19833\",\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Hill Station,Weekend,Romantic,Leisure\",\"Validity\":{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595467,\"Name\":\"Hotel Royal Arabia\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":595472,\"Name\":\"Deluxe Houseboat\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":506,\"Title\":\"Floating Garden\",\"Description\":\"Dal Lake is famed for its floating vegetable market. The unique floating gardens in the natural wetlands of Srinagar are the prime source of vegetables cultivation and these fresh vegetable are then sold on the floating Shikaras on the lake. You can easily get a glimpse of this floating market early in the morning. The pretty picture it proffers makes it one of the best Srinagar tourist places to visit. This colorful floating market set against the beautiful backdrop marks it is a photographers&amp;rsquo; haven. A prized possession of Jammu &amp;amp; Kashmir tourism, the floating market of Srinagar is a must see.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Floating_Garden_25897_1550667523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1867,\"Title\":\"Vegetable Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2897\\/thumb\\/Vegetable Gardens_71.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595471,\"Name\":\"Hotel The Regency\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":506,\"Title\":\"Floating Garden\",\"Description\":\"Dal Lake is famed for its floating vegetable market. The unique floating gardens in the natural wetlands of Srinagar are the prime source of vegetables cultivation and these fresh vegetable are then sold on the floating Shikaras on the lake. You can easily get a glimpse of this floating market early in the morning. The pretty picture it proffers makes it one of the best Srinagar tourist places to visit. This colorful floating market set against the beautiful backdrop marks it is a photographers&amp;rsquo; haven. A prized possession of Jammu &amp;amp; Kashmir tourism, the floating market of Srinagar is a must see.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Floating_Garden_25897_1550667523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1867,\"Title\":\"Vegetable Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2897\\/thumb\\/Vegetable Gardens_71.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":19833,\"SupplierName\":\"BARIZA EVENTS AND HOLIDAYS PRIVATE LIMITED\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"497937\",\"Title\":\"Arrive at Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome Srinagar Airport pickup you will be met our representative and get transfer to Hotel. Check in Hotel. After relax visit Shankacharya TempleIn the evening free at leisure.Overnight stay in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497938\",\"Title\":\"Srinagar - Sonmarg - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast leave for Sonamarg for a Day trip the name Sonamarg is derived from two Kashmiri words &amp;ldquo;Son&amp;rdquo; &amp;amp; &amp;ldquo;Marg&amp;rdquo; which mean &amp;ldquo;Gold&amp;rdquo; &amp;amp; &amp;ldquo;Meadow&amp;rdquo;, when put together it means &amp;ldquo;Meadow of Gold&amp;rdquo; The drive from Srinagar to Sonamarg is very beautiful as you will pass through some towns and villages, at many places you can enjoy the view of paddy fields with rivers flowing on one side. in Sonamarg you can visit ThajwasGlacier which is around 4Kms from Sonamarg a Local Taxi Or Pony Ride has to be hired (on your own Expenses) return back to Srinagar in the evening after enjoyed your day, overnight stay in Hotel at Srinagar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497939\",\"Title\":\"Srinagar &ndash; Gulmarg &ndash; Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Srinagar to Gulmarg &amp;ldquo;Meadow of Flowers&amp;rdquo; Discovered by the Kashmiri romantic poet in the 16th century who was inspired with its grassy slopes covered with wild flowers. In winter Gulmarg looks more beautiful due to heavy snow fall. And turns into India&amp;#39;s premier Ski resort in winter.Gulmarg has one of the best ski slopes in the world and highest golf course with 18 holes,inGulmarg you also can enjoy Gondola Cable Car(On Your Own Expenses) offers rides to the upland meadows of Kongdori and beyond to the top of Apharwat range to a height of 14000 ft for viewing the Himalayan Peaks in summer and for downhill skiing in winter, return back to Srinagar in the evening after enjoyed your day, overnight stay in Hotel at Srinagar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595467,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497940\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497941\",\"Title\":\"Srinagar - Pahalgam\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast proceed to Pahalgam &amp;ldquo;Valley of Shepherds&amp;rdquo; via en route sightseeing visit Awantipura Ruins, Saffron Fields and Cricket Bat Factories, continue drive towards Pahalgam, Pahalgam is the most famous place for Indian Film Industry. In Pahalgam enjoy the nature and admire the beauty of this quiet place and be in awe of the serene surroundings, in Pahalgam you can visit Betaab valley (Betaab Valley is situated at a distance of 15 kilometers from Pahalgam got its name from the Sunny Deol&amp;amp; Amrita Sight hit debut fimBetaab.The valley surrounded by lush green meadows, snow clad Mountains and covered with dense vegetation) Then visit Aru Valley (Aru Valley is a small yet self-sufficient scenic village located 12 km from Pahalgam) or you can visit Chandanwari (Is situated at a distance of 16 km from Pahalgam, is the starting point of the yatra that takes place every year in the month of (July to August) A local Taxi has to be hired for these beautiful places (own your own expenses) . overnight stay in Hotel pahalgam&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595471,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497942\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497943\",\"Title\":\"Pahalgam - Srinagar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast transfer to srinagar to &amp;nbsp;Houseboat for check inn, after re fresh proceed to Local Sightseeing See Mughal Gardens:- Visit Shankaranchariya Temple (is also known as the Jyesteshwara temple It is on top of the Shankaracharya Hill on the Zabarwan Mountain It is dedicated to Lord Shiva The temple is at a height of 1,000 feet above the plain and overlooks the city of Srinagar) then visit PariMahal &amp;#39;Palace of Fairies&amp;#39; (is a seven terraced garden located at the top of Zabarwan mountain range over-looking city of Srinagar and south-west of Dal Lake) Then visit to Chesham Shahi (is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders of the Emperor, as a gift for his elder son Prince DaraShikoh) you will also visit Nishat Garden known as &amp;#39;Garden of pleasure&amp;#39; built in 16th century (1633) by Mughal King Asif Khan. Then visit Shalimar Garden known as &amp;#39;Garden of love&amp;#39; built in 16th century (1619) by Mughal King Jehangir for his beloved wife Noor Jehan or (Mehr-un-Nissa) evening enjoy SHIKARA RIDE on world famous Dal Lake in which you will cover, Floating Gardens, Vegetable Gardens, Golden Lake, Inner markets like Mena Bazar, and Canals etc, also enjoy the scenic view of Zabarwan Mountains, evening free for leisure, overnight stay in Houseboat&amp;nbsp;at&amp;nbsp;Srinagar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":309,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":506,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"497944\",\"Title\":\"Srinagar Drop\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After Breakfast check out from the Hotel then drive to the Srinagar Airport to board the flight for the ongoing Journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"66871\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500},{\"From\":\"2024-01-16\",\"To\":\"2024-01-31\",\"Currency\":1,\"priceTripleOcc\":\"16500.00\",\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":59400,\"priceExtraBed\":\"16500.00\",\"priceWithoutBed\":\"13200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":13200,\"CEB\":16500,\"COSTDO\":19800,\"COSTSO\":59400,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":16500,\"COSTTO\":16500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pony Ride\\/Sledging (It&amp;rsquo;s done by bargaining).&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Trips to Waiters\\/Drivers\\/Any Other Person.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gandola Ticket by own Expense.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Aru Chandanwari and Betaab valley Trip at Pahalgam. (It&amp;rsquo;s done by Union Taxi at Pahalgam and is on direct payment basis.)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thajwas Glacier Trip at Sonmarg. (It&amp;rsquo;s done by Union Taxi at Sonmarg or by pony ride and is on direct payment basis.)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In winter from Tangmarg to Gulmarg. if Road is closed &amp;nbsp;(It&amp;rsquo;s done by Union Taxi at and is on direct payment basis.)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Monument Fees at all Places.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any other thing which is not mentioned in inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour Itinerary can be changed depending upon the availability of Hotels\\/Houseboat.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any meals except those listed in above inclusion.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The rates does not include any airfare, meals not specified, table drinks, laundry, tips, camera fee, Gondola\\/Pony\\/Sledge riding at Gulmarg \\/ Pahalgam personal expenses of the clients or other expenses incurred beyond our control such as bad weather, flight cancellation, road closure, landslides, political disturbances,&amp;nbsp;etc&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on double\\/twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( Breakfast and Dinner )&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, Driver&amp;#39;s allowance, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink on arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Parking and Toll tax&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meet &amp;amp; greet at arrival&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pick and Drop at time of arrival\\/departure&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transfers by Sedan Car. ( Non A.C )&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"497937\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[497937],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497938\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[497938],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"497939\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[497939],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"497940\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[497940],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497941\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[497941],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"497942\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[497942],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"497943\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[497943],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"497944\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[497944],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Srinagar,Pahalgam','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg',NULL,'25897,20566',19800,19800,5,NULL,NULL,NULL,2,'',0,'2024-01-16 00:00:00','2024-01-31 00:00:00','2024-01-31 00:00:00',3,'India','101','2024-01-16 00:00:00','2024-01-16 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'amazing-kashmir',NULL,NULL,NULL,0),(434,66944,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Weekend,New Year,Romantic,Leisure,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":66944,\"IsCF\":0,\"URL\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/the-ravenala--attitude-hotel_1705497714\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"THE RAVENALA  ATTITUDE HOTEL\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Weekend,New Year,Romantic,Leisure,Luxury Tours\",\"Validity\":{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":595721,\"Name\":\"The Ravenala Attitude Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Couple Suite\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"498542\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498543\",\"Title\":\"Full day North Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Proceed to explore the northern region of the island. Begin with a city tour of Port Louis, enjoy visits of Fort Adelaide - Citadel including the Viewpoint, Visit the World Unique Tea Factory - Kuan Fu Tea, Visit Caudan waterfront and shopping arcade, Stop at the Bagatelle Mall of Mauritius for shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tonight enjoy dinner at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498544\",\"Title\":\"Ile Aux Cerf Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed for Ile Aux Cerf Island Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Reach Belle mare beach where you can enjoy water sports activities at an additional cost. Proceed to Trou d&amp;#39;eau Douce village to experience a thrilling speed boat ride across to the island of Ile Aux Cerf. Revel in the beauty of fine white sand and clear blue waters.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498545\",\"Title\":\"South Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, proceed for the full day South Island Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proceed for a full day tour of the exotic Southern region of this Island. Visits of the famous volcanic crater - Trou Aux Cerfs, Ganga Talao - Grand Bassin Shiv Temples, visit the model ship factory, Visit the duty free shop- Adams and visit to La Valle des Couleurs Nature Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tonight enjoy dinner at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498546\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today the day will be at leisure. Enjoy breakfast at the hotel. Explore this beautiful island on your own or head for shopping or just soak up the sun and laze around on the beach&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498547\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Today the day will be at leisure. Enjoy breakfast at the hotel. Explore this beautiful island on your own or head for shopping or just soak up the sun and laze around on the beach&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":595721,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Couple Suite\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"498548\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy breakfast at the hotel. Check out of the Hotel (Standard check out time is 1100hrs) and later transfer to airport on seat in coach basis for flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"66944\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"62832.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832},{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832},{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832},{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832},{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832},{\"From\":\"2024-01-17\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"62832.00\",\"priceDoubleOcc\":\"62832.00\",\"priceSingleOcc\":188496,\"priceExtraBed\":\"62832.00\",\"priceWithoutBed\":\"60632.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":62832,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":60632,\"CEB\":62832,\"COSTDO\":62832,\"COSTSO\":188496,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":62832,\"COSTTO\":62832}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"498542\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[498542],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498543\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[498543],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498544\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[498544],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498545\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[498545],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498546\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[498546],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498547\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[498547],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"498548\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[498548],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',62832,62832,6,NULL,NULL,NULL,2,'',0,'2024-01-17 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-01-17 00:00:00','2024-01-17 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'the-ravenala-attitude-hotel',NULL,NULL,NULL,0),(435,5911,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"5911\",\"VisaName\":\"Bangladesh Visa\",\"Nationality\":null,\"VisaAdultRates\":0,\"VisaChildRates\":0,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Bangladesh\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;&lt;strong&gt;TOURIST Visa Requirements for BANGLADESH (DELHI)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;(Visit visas are valid for 1 month from the date of Submission)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Valid passport with at least a 6 month validity from the date of travel.&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Passport copy of front page and last page and copies of all the visas issued in the passports&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;2 Copies of ONLINE Visa Form with signed by the applicant.&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;2 Photograph passport size (Fresh ones i.e. NOT used earlier for any visa)&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Covering Letter on company Letter Head (Addressed to Bangladesh High Commission).(will provide)&amp;nbsp;&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Invitation letter ( mentioning detailed address of Bangladesh with contact number) along with Passport copy and visa copy INCASE OF SPONSOR.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Final Covid vaccination certificate&lt;br \\/&gt;\\r\\n&amp;bull;&amp;nbsp;&amp;nbsp; &amp;nbsp;Aadhar&amp;nbsp;card&amp;nbsp;copy&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;NOTE&lt;br \\/&gt;\\r\\nPlease note that Bangladesh embassy does not Issue visa as per ticket \\/ In-Advance travel. Visas are issued for 1 month and single entry only, from the date of issuance of visa.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;&lt;strong&gt;Basic Requirements:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original passort with valid visa&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ticket Itinerary&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel confirmation.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;&lt;strong&gt;Bangladesh High Commission:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Address:&amp;nbsp;EP-39, S Radhakrishna Marg, Chanakyapuri, New Delhi, Delhi 110021&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Phone:&amp;nbsp;011 2412 1392&lt;\\/p&gt;\",\"PrecessingTime\":\"10 Days\",\"VisaValidity\":\"30 Days \",\"VisaDuration\":\" \",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"3000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"3000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Bangladesh','Bangladesh',NULL,'18',0,0,0,NULL,NULL,NULL,0,'',0,'2024-01-20 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Bangladesh','18','2024-01-20 17:22:31','2024-01-20 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'bangladesh-visa',NULL,NULL,NULL,0),(436,68167,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure,Activites Tour,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":68167,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/tropical-attitude_1706952580\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;06 Nights Mauritius&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set along a tranquil beach on the Indian Ocean, this relaxed, adults-only hotel is 11 km from white-sand beaches on &amp;Icirc;le aux Cerfs and 8 km from Belle Mare Public Beach.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nLaid-back rooms provide satellite TV, minibars and sitting areas, plus tea and coffeemaking facilities. All include balconies or terraces. Upgraded rooms add ocean views.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nBreakfast is complimentary. Other amenities include a bright restaurant, 2 open-air eateries and 2 bars. There&amp;#39;s also a spa, an outdoor pool, a tropical garden and direct beach access, as well as snorkeling and water sports.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"UNFORGETTABLE MAURITIUS\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure,Activites Tour,Luxury Tours\",\"Validity\":{\"From\":\"2024-03-02\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598514,\"Name\":\"Tropical Attitude Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":17162,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Couple Seafront\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2364,\"Title\":\"Mauritius north tour\",\"Description\":\"Explore the North area of Mauritius,it has lot to discover. Whether you are on your honeymoon trip or family tour this is the best place where you can enjoy to the full.This tour offers you to discover and visit all the main tourist sights, attractions and places of interest of the North of Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_north_tour_17162_1519121851.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2366,\"Title\":\"Ile Aux Cerfs Island\",\"Description\":\"Ile Aux Cerfs Island is also known as the deer island.It  is a privately owned island near the east coast of Mauritius in the Flacq District. This island constitutes of around 100 hectares of land and is famous for its sandy beaches, beautiful lagoon and big selection of activities and facilities. Ile Aux Cerfs Island offers beach restaurants, an adventure park, a wide array of water sports and an 18-hole golf course as well as untouched tranquil beaches.Ile Aux Cerfs Island recently became one of the most popular tourist destination in Mauritius.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":-20.272354,\"Long\":57.804111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Ile_Aux_Cerfs_Island_17162_1517983243.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null},{\"RefSSId\":2365,\"Title\":\"Mauritius south tour\",\"Description\":\"Go for at least full day tour to the South and South West areas of Mauritius if you are here for 5, 6 days. This tour will cover many attractions. Plan a trip to Mauritius south tour with your loved ones and get ready to discover some magnificent wonders.\",\"CurrencyType\":0,\"CityId\":17162,\"CityName\":\"Mauritius\",\"Lat\":20.016379,\"Long\":57.569572,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17162\\/sightseeing\\/Mauritius_south_tour_17162_1519120310.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"509225\",\"Title\":\"Arrival\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509226\",\"Title\":\"Full day North Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Proceed to explore the northern region of the island. Begin with a city tour of Port Louis, enjoy visits of Fort Adelaide - Citadel including the Viewpoint, Visit the World Unique Tea Factory - Kuan Fu Tea, Visit Caudan waterfront and shopping arcade, Stop at the Bagatelle Mall of Mauritius for shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tonight enjoy dinner at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2364,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509227\",\"Title\":\"Ile Aux Cerf Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed for Ile Aux Cerf Island Tour&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Reach Belle mare beach where you can enjoy water sports activities at an additional cost. Proceed to Trou d&amp;#39;eau Douce village to experience a thrilling speed boat ride across to the island of Ile Aux Cerf. Revel in the beauty of fine white sand and clear blue waters.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2366,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509228\",\"Title\":\"South Island Tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, proceed for the full day South Island Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proceed for a full day tour of the exotic Southern region of this Island. Visits of the famous volcanic crater - Trou Aux Cerfs, Ganga Talao - Grand Bassin Shiv Temples, visit the model ship factory, Visit the duty free shop- Adams and visit to La Valle des Couleurs Nature Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tonight enjoy dinner at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2365,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509229\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today the day will be at leisure. Enjoy breakfast at the hotel. Explore this beautiful island on your own or head for shopping or just soak up the sun and laze around on the beach&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509230\",\"Title\":\"Day at leisure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Today the day will be at leisure. Enjoy breakfast at the hotel. Explore this beautiful island on your own or head for shopping or just soak up the sun and laze around on the beach&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598514,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Couple Seafront\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509231\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy breakfast at the hotel. Check out of the Hotel (Standard check out time is 1100hrs) and later transfer to airport on seat in coach basis for flight back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"68167\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"49995.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-01\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49995.00\",\"priceDoubleOcc\":\"49995.00\",\"priceSingleOcc\":99990,\"priceExtraBed\":\"49995.00\",\"priceWithoutBed\":\"49995.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":3755,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49995,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":49995,\"CEB\":49995,\"COSTDO\":49995,\"COSTSO\":\"46240.00\",\"ACEB\":49995,\"COSTTO\":49995,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour SIC&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour SIC&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Honeymoon Freebies:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Beach Bag and Attitude Exclusive Tea&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Lunch Free of Charge During Stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Mins of Massage for the Couple - 1 Time during Stay&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Romantic Dinner for the Couple ( Excluding Drinks) - 1 Time during Stay&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"509225\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[509225],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509226\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[509226],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509227\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[509227],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509228\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[509228],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509229\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[509229],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509230\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[509230],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"509231\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[509231],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',49995,49995,6,NULL,NULL,NULL,2,'',0,'2024-03-02 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'Mauritius','139','2024-03-02 18:47:01','2024-03-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'unforgettable-mauritius',NULL,NULL,NULL,0),(437,68188,1,5293,1,0,0,'Honeymoon,Beach,Family,Romantic,Leisure,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":68188,\"IsCF\":1,\"URL\":\"\",\"IsSharingPrice\":\"1\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/outrigger-mauritius-beach-resort_1706703996\",\"BookingValidUntill\":\"2024-03-28\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Mauritius\",\"DestinationPlacesSysId\":17162,\"SourcePlaces\":\"Mauritius\",\"SourcePlaceSysId\":17162,\"AgencyName\":\"I Need Trip\",\"Name\":\"OUTRIGGER MAURITIUS BEACH RESORT\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5684\",\"SupplierName\":\"MVT - MY VALUE TRAVEL\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Flight,Hotel,Breakfast & Dinner,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure,Luxury Tours\",\"Validity\":{\"From\":\"2024-02-01\",\"To\":\"2024-03-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":17162,\"Title\":\"Mauritius\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598545,\"Name\":\"OUTRIGGER Mauritius Beach Resort\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4830508,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_598545\\/5293_01706704574.png\"},{\"ImagId\":4830509,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_598545\\/5293_11706704575.png\"},{\"ImagId\":4830510,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_598545\\/5293_21706704575.png\"},{\"ImagId\":4830511,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_598545\\/5293_31706704576.png\"}]},\"CityId\":17162,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/hotel\\/hoteId_598545\\/5293_b34bd8641bfdbcf1d0252321eae856e51706704574.png\",\"AccoAminitiesMask\":\"111100111010110010001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":5684,\"SupplierName\":\"MVT - MY VALUE TRAVEL\",\"priceaditionals\":null,\"RoomTypeName\":\"Ocean View\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"509449\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Complimentary Casela Bird Park Tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509450\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509451\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509452\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509453\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509454\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"509455\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17162,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598545,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Ocean View\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"68188\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"134747.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-18\",\"To\":\"2024-02-18\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-22\",\"To\":\"2024-02-22\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-25\",\"To\":\"2024-02-25\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-02-29\",\"To\":\"2024-02-29\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-03\",\"To\":\"2024-03-03\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-07\",\"To\":\"2024-03-07\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-10\",\"To\":\"2024-03-10\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-14\",\"To\":\"2024-03-14\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-17\",\"To\":\"2024-03-17\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-21\",\"To\":\"2024-03-21\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-03-28\",\"To\":\"2024-03-28\",\"Currency\":1,\"priceTripleOcc\":\"134747.00\",\"priceDoubleOcc\":\"134747.00\",\"priceSingleOcc\":396719,\"priceExtraBed\":\"134747.00\",\"priceWithoutBed\":\"134747.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":7522,\"ExcludedPercent\":\"0\",\"PricePerPerson\":134747,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":134747,\"CEB\":134747,\"COSTDO\":134747,\"COSTSO\":\"254450.00\",\"ACEB\":134747,\"COSTTO\":134747,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on double sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan ( Breakfast, Dinner)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return economy Class Airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport - Hotel - Airport transfer SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day Ile Aux Cerf Tour with speed boat transfer SIC basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day North Tour SIC&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full Day South Tour SIC&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Complimentary Casela Bird Park Tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"509449\":[{\"Sequence\":[0],\"TPInvnSysId\":[509449],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509450\":[{\"Sequence\":[0],\"TPInvnSysId\":[509450],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509451\":[{\"Sequence\":[0],\"TPInvnSysId\":[509451],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509452\":[{\"Sequence\":[0],\"TPInvnSysId\":[509452],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509453\":[{\"Sequence\":[0],\"TPInvnSysId\":[509453],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509454\":[{\"Sequence\":[0],\"TPInvnSysId\":[509454],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}],\"509455\":[{\"Sequence\":[0],\"TPInvnSysId\":[509455],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FlightInv\":{\"1\":{\"1140\":{\"FlightType\":1,\"AirlineName\":\"Air Mauritius\",\"AirlineCode\":\"MK-745\",\"DepartureAirportCode\":\"DEL\",\"DepartureAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"DepartureTime\":\"08:00:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"MRU\",\"ArrivalAirportName\":\"Mauritius, MU - Mauritius - Sir S Ramgoolam Airport (MRU)\",\"ArrivalTime\":\"14:00:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"06:00\"}},\"2\":{\"1141\":{\"FlightType\":2,\"AirlineName\":\"Air Mauritius\",\"AirlineCode\":\"MK-744\",\"DepartureAirportCode\":\"MRU\",\"DepartureAirportName\":\"Mauritius, MU - Mauritius - Sir S Ramgoolam Airport (MRU)\",\"DepartureTime\":\"21:15:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"DEL\",\"ArrivalAirportName\":\"Delhi, IN - Indira Gandhi Intl Airport (DEL)\",\"ArrivalTime\":\"06:15:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"06:00\"}}},\"FromDate\":{\"20240218\":{\"FromDate\":\"2024-02-18\",\"FromDateDMY\":\"18\\/02\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240222\":{\"FromDate\":\"2024-02-22\",\"FromDateDMY\":\"22\\/02\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240225\":{\"FromDate\":\"2024-02-25\",\"FromDateDMY\":\"25\\/02\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240229\":{\"FromDate\":\"2024-02-29\",\"FromDateDMY\":\"29\\/02\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240303\":{\"FromDate\":\"2024-03-03\",\"FromDateDMY\":\"03\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240307\":{\"FromDate\":\"2024-03-07\",\"FromDateDMY\":\"07\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240310\":{\"FromDate\":\"2024-03-10\",\"FromDateDMY\":\"10\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240314\":{\"FromDate\":\"2024-03-14\",\"FromDateDMY\":\"14\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240317\":{\"FromDate\":\"2024-03-17\",\"FromDateDMY\":\"17\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240321\":{\"FromDate\":\"2024-03-21\",\"FromDateDMY\":\"21\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240324\":{\"FromDate\":\"2024-03-24\",\"FromDateDMY\":\"24\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240328\":{\"FromDate\":\"2024-03-28\",\"FromDateDMY\":\"28\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Mauritius','Mauritius,East African Islands',NULL,'17162',134747,134747,6,NULL,NULL,NULL,2,'',0,'2024-02-01 00:00:00','2024-03-28 00:00:00','2024-03-28 00:00:00',3,'Mauritius','139','2024-02-01 16:55:03','2024-02-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'outrigger-mauritius-beach-resort',NULL,NULL,NULL,0),(438,68305,1,5293,1,0,0,'Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":68305,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/day-premium-sicily_1706790452\",\"BookingValidUntill\":\"2024-11-07\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Travel with the experts for a carefully curated, value-packed discovery of the world&amp;#39;s most iconic destinations. Our tours are bursting with must-see sights, rich experiences and quality inclusions, all at an unbeatable price. Bucket list dreams are ticked off on these all-encompassing journeys.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeings Highlights&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Palermo&lt;\\/strong&gt;&amp;nbsp;- Wander the streets of the Old Town, hearing tales of Palermo&amp;rsquo;s 3,000-year history with your local guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Marsala&lt;\\/strong&gt;&amp;nbsp;- Take part in a sensorial experience as you taste regional wine and food during an unforgettable lunch&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Agrigento&lt;\\/strong&gt;&amp;nbsp;-&amp;nbsp; Guided tour and entrance tickets to the Valley of Temples&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Ragusa&lt;\\/strong&gt;&amp;nbsp;- Be enchanted by the magnificent Cosentini palace, one of the most interesting Late Baroque palaces in Sicily&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Taormina&lt;\\/strong&gt;&amp;nbsp;- Travel to nearby Mount Etna, the largest active volcano in Europe and the highest mountain in Italy&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Taormina\",\"DestinationPlacesSysId\":26795,\"SourcePlaces\":\"PALERMO\",\"SourcePlaceSysId\":74941,\"AgencyName\":\"I Need Trip\",\"Name\":\"PREMIUM SICILY - ITALY\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2024-02-02\",\"To\":\"2024-11-07\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":74941,\"Title\":\"PALERMO\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598749,\"Name\":\"Mercure or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":74941,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":270,\"Title\":\"Agrigento\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598750,\"Name\":\"Della Valle or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":270,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":22491,\"Title\":\"Ragusa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598758,\"Name\":\"Poggo del Sole or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22491,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":26795,\"Title\":\"Taormina\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598760,\"Name\":\"Hotel Splendid Taormina or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":26795,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"510510\",\"Title\":\"Palermo\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Sicily! After your arrival at the airport, make your own way to the hotel and enjoy your first day at leisure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy dinner at the hotel this evening and rest up for the adventure that lies ahead.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check in: Passengers will be arriving at various times throughout the day. If arriving prior to standard check-in time, which is generally 3pm local time, you are welcome to leave your luggage with hotel reception and explore your surroundings until check-in becomes available, as there are generally no scheduled activities on Day 1 of the itinerary. The hotel may grant early check-in, however this is strictly subject to availability and at the hotel&amp;rsquo;s discretion.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":74941,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598749,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510511\",\"Title\":\"Palermo\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Explore beautiful Monreale, an ancient royal town that recently joined the UNESCO World Heritage list and impresses with some of the best almonds, olive oil and citrus fruits in the region. It is also known for stunning Norman architecture, which you get to experience first-hand with a visit to the elaborate Cathedral of Monreale, followed by a shopping opportunity. Return to Palermo and enjoy a walking tour, taking you across the streets of the Old Town and Palermo Cathedral with its impressive arches, cupolas and mosaics. You will have some free time before returning to the hotel for dinner.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":74941,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598749,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510512\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":74941,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510513\",\"Title\":\"Palermo To Agrigento via Erice, Marsala\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;This morning you depart for Erice, a medieval village located on the side of Monte San Giuliano and known for its labyrinth-like twist of lanes. Next is a visit to Saline, a special lagoon inviting you to try unique experiences based on history, nature and archeology.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From here, we continue to Marsala to participate in an extraordinary lunch experience including regional wine tasting. Board your coach and proceed to Agrigento for your chance to visit ancient Greek monuments and ruins at the UNESCO World Heritage certified Valley of Temples. Check in to your hotel, enjoy a hearty dinner and overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":270,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598750,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510514\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":270,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510515\",\"Title\":\"Agrigento To Ragusa\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast travel to Ragusa and visit the enchanting historical center &amp;ldquo;Ibla&amp;rdquo; renowned for its baroque palaces and churches, rightfully earning it a spot on the UNESCO World Heritage list. Visit the historically important sites, including the elegant Cathedral of San Giorgio and magnificent Cosentini Palace, before arriving at your hotel for dinner and overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22491,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598758,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510516\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22491,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510517\",\"Title\":\"Ragusa To Taormina via Noto, Syracuse\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Drive to Noto, a picturesque fishing town popular for its stately Baroque architecture. Following a walk in the town&amp;rsquo;s centre depart for Syracuse on the southeastern coast. From here, we cross a bridge to visit the island of Ortigia, home to a wealth of Baroque churches and medieval palaces.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Look forward to a hearty meal after checking into your Taormina hotel for the next two nights.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510518\",\"Title\":\"Taormina\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;The incredible Mount Etna is on the program this morning. Learn about volcanic activity and marvel at the old lava fields of Europe&amp;rsquo;s largest active volcano, doubling as Italy&amp;rsquo;s highest mountain. Weather permitting, do not miss your opportunity to climb to the summit at 1,800m above sea level before returning to Taormina.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Spend the rest of your day at leisure in this romantic town.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598760,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510519\",\"Title\":\"Taormina\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Today marks the end of your magnificent and unforgettable tour through Sicily. We hope you have thoroughly enjoyed your inspiring trip. At the appropriate time please make your way to the airport for your onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26795,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"68305\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"127499.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-04-18\",\"To\":\"2024-04-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-09\",\"To\":\"2024-05-09\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-23\",\"To\":\"2024-05-23\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-06\",\"To\":\"2024-06-06\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-20\",\"To\":\"2024-06-20\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-04\",\"To\":\"2024-07-04\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-18\",\"To\":\"2024-07-18\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-05\",\"To\":\"2024-09-05\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-12\",\"To\":\"2024-09-12\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-26\",\"To\":\"2024-09-26\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-10\",\"To\":\"2024-10-10\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-24\",\"To\":\"2024-10-24\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-07\",\"To\":\"2024-11-07\",\"Currency\":1,\"priceTripleOcc\":\"127499.00\",\"priceDoubleOcc\":\"127499.00\",\"priceSingleOcc\":382497,\"priceExtraBed\":\"127499.00\",\"priceWithoutBed\":\"127499.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":127499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":127499,\"CEB\":127499,\"COSTDO\":127499,\"COSTSO\":\"254998.00\",\"ACEB\":127499,\"COSTTO\":127499,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International airfares&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visas&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel insurance (compulsory)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tipping&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Optional activities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal expenses&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST and TCS&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by an English-speaking guide&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated private coach transportation throughout&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 nights&amp;rsquo; accommodation in selected 4-star hotels&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;6 breakfasts, 1 lunch and 5 dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wine tasting with light lunch in Marsala&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local guides in Palermo and Agrigento&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All activities listed in the itinerary unless a paid optional&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees to archaeological sites listed&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"510510\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[510510],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510511\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[510511],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510512\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[510512],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510513\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[510513],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510514\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[510514],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510515\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[510515],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510516\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[510516],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510517\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[510517],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510518\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[510518],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510519\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[510519],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"6000\":{\"CityName\":\"Chennai\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"12538\":{\"CityName\":\"Hyderabad\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"14323\":{\"CityName\":\"Kolkata\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240418\":{\"FromDate\":\"2024-04-18\",\"FromDateDMY\":\"18\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240509\":{\"FromDate\":\"2024-05-09\",\"FromDateDMY\":\"09\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240523\":{\"FromDate\":\"2024-05-23\",\"FromDateDMY\":\"23\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240606\":{\"FromDate\":\"2024-06-06\",\"FromDateDMY\":\"06\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240620\":{\"FromDate\":\"2024-06-20\",\"FromDateDMY\":\"20\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240704\":{\"FromDate\":\"2024-07-04\",\"FromDateDMY\":\"04\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240718\":{\"FromDate\":\"2024-07-18\",\"FromDateDMY\":\"18\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240905\":{\"FromDate\":\"2024-09-05\",\"FromDateDMY\":\"05\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240912\":{\"FromDate\":\"2024-09-12\",\"FromDateDMY\":\"12\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240926\":{\"FromDate\":\"2024-09-26\",\"FromDateDMY\":\"26\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241010\":{\"FromDate\":\"2024-10-10\",\"FromDateDMY\":\"10\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241024\":{\"FromDate\":\"2024-10-24\",\"FromDateDMY\":\"24\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241107\":{\"FromDate\":\"2024-11-07\",\"FromDateDMY\":\"07\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','PALERMO,Agrigento,Ragusa,Taormina','PALERMO,Western Europe,Italy,Agrigento,Ragusa,Taormina,Marsala,Noto,Syracuse',NULL,'74941,270,22491,26795',127499,127499,6,NULL,NULL,NULL,2,'',0,'2024-02-02 00:00:00','2024-11-07 00:00:00','2024-11-07 00:00:00',3,'Italy','107','2024-02-02 19:10:29','2024-02-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'premium-sicily-italy',NULL,NULL,NULL,0),(439,68322,1,5293,1,0,0,'Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":68322,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/best-of-japan_1706853955\",\"BookingValidUntill\":\"2024-11-20\",\"AdvBookingDays\":120,\"DETAILS\":\"&lt;p&gt;Tick off your Japan must-do list with a rich journey through this country of contrasts, fascinating culture and dazzling beauty. Explore eclectic Tokyo, visit a charming small village in the Fuji Five Lake region and soak in the serene beauty of Arashiyama Bamboo Grove. See the famed deer of Nara, visit a ninja museum, see sacred shrines, castles and temples &amp;ndash; and of course, witness the natural beauty of breathtaking Mount Fuji.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeings Hightlights&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tokyo&lt;\\/strong&gt; &amp;ndash; Enjoy the buzz and energy of one of the world&amp;rsquo;s great cities&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tokyo&lt;\\/strong&gt; &amp;ndash; Get a bird&amp;rsquo;s eye view from the Tokyo Metropolitan Government Building observation deck, 202 metres high&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Tokyo&lt;\\/strong&gt; &amp;ndash; Visit Japan&amp;rsquo;s oldest temple Sens?-ji Temple, and enjoy a walking tour of atmospheric Nakamise Street&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Oshino Hakkai &lt;\\/strong&gt;&amp;ndash; See traditional thatched roof farm houses in the shadow of Mount Fuji at Oshino Hakkai&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Lake Kawaguchiko&lt;\\/strong&gt; &amp;ndash; Take in spectacular views of Mount Fuji at Oishi Park on the shores of Lake Kawaguchiko&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kyoto&lt;\\/strong&gt; &amp;ndash; See this ancient capital&amp;rsquo;s most famous temples and shrines including the Golden Pavilion and Fushimi Inari&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kyoto&lt;\\/strong&gt; &amp;ndash; Revel in the lush, peaceful green splendour of Arashiyama Bamboo Grove&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kyoto&lt;\\/strong&gt; &amp;ndash; Wander through Kyoto&amp;rsquo;s famous geisha district, Gion&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nara&lt;\\/strong&gt; &amp;ndash; Wander through Nara park with over 1,200 Sika deer&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nara&lt;\\/strong&gt; &amp;ndash; Discover the Todaiji Temple and its great Buddha&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Osaka&lt;\\/strong&gt; &amp;ndash; Stroll through lively, colourful D?tonbori&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Iga&lt;\\/strong&gt; &amp;ndash; Learn about the secretive and ancient art of the ninja at the Iga-ryu Ninja Museum&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nagoya&lt;\\/strong&gt;&amp;nbsp;&amp;ndash;&amp;nbsp;Visit the impressive Nagoya Castle, completed in 1615&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Tokyo\",\"DestinationPlacesSysId\":27427,\"SourcePlaces\":\"Tokyo\",\"SourcePlaceSysId\":27427,\"AgencyName\":\"I Need Trip\",\"Name\":\"BEST OF JAPAN\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour\",\"Validity\":{\"From\":\"2024-02-09\",\"To\":\"2024-11-20\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":27427,\"Title\":\"Tokyo\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598801,\"Name\":\"Smile Hotel Tokyo Nishikasai or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27427,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":598808,\"Name\":\"Smile Hotel Tokyo Nishikasai or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27427,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":67062,\"Title\":\"Mount Fuji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":11417,\"Title\":\"Hamamatsu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598802,\"Name\":\"Hotel Crown Palais Hamamatsu or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11417,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":67062,\"Title\":\"Mount Fuji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":32378,\"Title\":\"Osaka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598804,\"Name\":\"Sarasa Hotel Namba or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32378,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":67062,\"Title\":\"Mount Fuji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}},{\"CityId\":25113,\"Title\":\"Shizuoka\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598806,\"Name\":\"Smile Hotel Shizuoka or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25113,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":55727,\"Title\":\"Lake Kawaguchi\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":67062,\"Title\":\"Mount Fuji\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55728,\"Title\":\"Oishi Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11417,\"CityName\":\"Hamamatsu\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":8163,\"Title\":\"Dotonbori\",\"Description\":\"Dotonbori is one of the principal tourist destinations in Osaka, Japan, running along the D&Aring;\\u008dtonbori canal from Dotonboribashi Bridge to Nipponbashi Bridge in the Namba district of the city&amp;#039;s Chuo ward. Historically a theater district, it is now a popular nightlife and entertainment area characterized by its eccentric atmosphere and large illuminated signboards.\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32378\\/sightseeing\\/Dotonbori_32378_1547465695.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55931,\"Title\":\"Nara Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null},{\"RefSSId\":55731,\"Title\":\"Kyoto Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32378,\"CityName\":\"Osaka\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"510663\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival into Tokyo, please make your own way to the starting point hotel. Take the evening to relax after your flight and prepare for your first full day of touring tomorrow.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Arrival &amp;amp; Check-in information&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nHaneda International Airport (HND). The easiest and most convenient way to travel from Haneda International Airport (HND) to Tokyo Central is by train or by Monorail. The airport is also serviced by many &amp;#39;Limousine Bus&amp;#39; services which offer shared shuttle bus service from around 1300 Yen per person.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Narita International Airport. The best way to travel from Narita International Airport to Tokyo Central is by the Narita Airport Express. The journey to most Tokyo stations takes approximately 1hr and the ticket costs 4070 Yen. The airport is also serviced by many &amp;#39;Limousine Bus&amp;#39; services which offer shared shuttle buses from around 1300 Yen per person.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Check-in&lt;br \\/&gt;\\r\\nTravellers will be arriving at various times throughout the day. If arriving prior to standard check-in time, which is generally 3pm local time, you are welcome to leave your luggage with hotel reception and explore your surroundings until check-in becomes available, as there are no scheduled activities on Day 1 of the itinerary. The hotel may grant early check-in, however this is strictly subject to availability and at the hotels discretion.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598801,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510664\",\"Title\":\"Tokyo - Oishi Park - Lake Kawaguchi - Mount Fuji - Hamamatsu Hotel\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510666\",\"Title\":\"Tokyo-Oishi Park-Lake Kawaguchi-Mount Fuji-Hamamatsu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy breakfast this morning before you meet your Tour Leader this morning at approximately 08:30am before you start your full day of sightseeing. Our day starts with a stop at Oishi Park on the shores of Lake Kawaguchi, well known for its serene, flower-lined walking path and its spectacular view of Mount Fuji.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Then, we stop by the eight ponds at Oshino Hakkai, a small village in the Fuji Five Lake region fed by the snow melt from the nearby mountains. See traditional thatched roof farmhouses in the shadow of the iconic Mount Fuji.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After our day in the Mount Fuji area we continue to Hamamatsu. Enjoy an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11417,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598802,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55727,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":67062,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55728,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510667\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11417,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510668\",\"Title\":\"Hamamatsu - Nara - Dotonbori - Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today we head to Nara, famous for its many temples and its free-roaming deer. First, we visit Todaiji (Great Eastern Temple), one of Japan&amp;#39;s most famous temples. This massive building houses one of Japan&amp;#39;s largest bronze statues of Buddha (Daibutsu). We then wander through Nara Park, home to hundreds of friendly Sika deer.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We then continue to Osaka, where we&amp;rsquo;ll enjoy a walking tour of the Dotonbori area. One of Osaka&amp;#39;s most popular tourist destinations, this street runs parallel to the Dotonbori canal and is a hugely popular destination for shopping, street food, bars and entertainment. At night the streets here are illuminated by hundreds of colourful neon lights and mechanised signs, including the famous running Glico Man sign and the Kani Doraku crab sign.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy an evening at leisure in Osaka.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598804,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8163,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":55931,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510669\",\"Title\":\"Osaka - Kyoto - Gion - Osaka\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;We&amp;rsquo;ll see the sights of ancient Kyoto this morning, starting with Kyoto&amp;rsquo;s famed Fushimi Inari Shrine &amp;ndash; known throughout the world as the &amp;lsquo;Path of the Red Gates.&amp;rsquo; Take time to appreciate the quieter corners of the shrine, and if you&amp;rsquo;re feeling fit, a walk to the halfway point provides stunning city views.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll continue on to some of Kyoto&amp;rsquo;s most iconic sites, like Kinkakuji (Golden Pavilion). This is a Zen temple and UNESCO World Heritage Site, with two floors covered entirely in thin layers of pure gold, set within a beautiful classical Zen garden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, stand amongst the soaring stalks of bamboo at Arashiyama Bamboo Grove. It&amp;rsquo;s green, peaceful and the seemingly endless boughs make for a serene experience, even with the tourist crowds. Take in the sound of rustling bamboo as you stroll these paths &amp;ndash; if there&amp;rsquo;s a bit of wind, the groves will gently sway back and forth which only adds to the magic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Before leaving Kyoto, we visit the authentic Gion district. This historic area is home to many geisha and is packed with bars, restaurants and cafes.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We head back to Osaka for another evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598804,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":55731,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510670\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32378,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510671\",\"Title\":\"Osaka - Igaryu - Nagoya - Shizuoka Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast we depart Osaka for Shizuoka. On the way, we will visit the Ninja Museum of Igaryu where you can see a ninja trick house, ninja museum and experience a ninja show (if time permits, at own expense).&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We then visit the historic 17th-century Nagoya Castle. The castle is the most iconic landmark in Nagoya and is an impressive sight. Afterwards, we continue to Shizuoka for an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25113,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598806,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510672\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25113,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510673\",\"Title\":\"Shizuoka - Asakusa - Nakamise Street - Tokyo Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast we travel back to Tokyo, where we embark on a tour of this energetic city.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In a city of such frenetic pace, a stop at the charming Asakusa neighbourhood is a refreshing taste of older Tokyo. It&amp;rsquo;s home to the ancient seventh-century Senso-ji Temple. Built in the Asuka era, it&amp;rsquo;s the oldest and most important Buddhist temple in Tokyo &amp;ndash; be prepared for crowds! It&amp;rsquo;s known for its imposing entrance gate, Kaminarimon (also known as &amp;lsquo;Thunder Gate&amp;rsquo;), with its magnificent red lantern.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We&amp;rsquo;ll walk along Nakamise, the shopping street connecting the front gate and main hall of the temple. It&amp;rsquo;s a wonderful atmosphere, with food stalls and souvenir shops, selling authentic Japanese items like traditional crafts. You&amp;rsquo;ll find great souvenirs here. We&amp;rsquo;ll then stop at Tokyo Metropolitan Government Building for late afternoon panoramic city views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, we check in to our hotel for an evening at leisure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598808,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"510674\",\"Title\":\"Tokyo\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Enjoy one last delicious breakfast this morning, before your Japanese adventure comes to an end.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We hope you&amp;rsquo;ve enjoyed this extraordinary journey.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Departure &amp;amp; check-out:&amp;nbsp;&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nThere are several ways to travel from your hotel to either Narita Airport (NRT) or Haneda Airport (HND), from shuttle buses to trains and taxis. Transport to the airports can cost between 250 Yen to 21,000 Yen depending on the form of transport you choose. Your Tour Leader and hotel concierge will be able to assist you arrange the most convenient way to the airport on the last day of the trip.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travellers will be departing at various times throughout the day. Check-out time is generally from 10am-12pm. You are welcome to leave your luggage at hotel reception and spend your final moments of free time exploring the area or, alternatively, please speak with hotel staff if you would like to extend your check-out time. This service is subject to availability and will likely come at an additional cost.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27427,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"68322\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"54999.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-05\",\"To\":\"2024-06-05\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-12\",\"To\":\"2024-07-12\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-14\",\"To\":\"2024-07-14\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-22\",\"To\":\"2024-08-22\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-25\",\"To\":\"2024-08-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-13\",\"To\":\"2024-09-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"137198.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"137198.00\",\"priceWithoutBed\":\"137198.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":137198,\"CEB\":137198,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":137198,\"COSTTO\":137198,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-03\",\"To\":\"2024-10-03\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-16\",\"To\":\"2024-10-16\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-25\",\"To\":\"2024-10-25\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-30\",\"To\":\"2024-10-30\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-03\",\"To\":\"2024-11-03\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-06\",\"To\":\"2024-11-06\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-13\",\"To\":\"2024-11-13\",\"Currency\":1,\"priceTripleOcc\":\"54999.00\",\"priceDoubleOcc\":\"54999.00\",\"priceSingleOcc\":164997,\"priceExtraBed\":\"54999.00\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":54999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":54999,\"CEB\":54999,\"COSTDO\":54999,\"COSTSO\":\"109998.00\",\"ACEB\":54999,\"COSTTO\":54999,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-20\",\"To\":\"2024-11-20\",\"Currency\":1,\"priceTripleOcc\":\"68599.00\",\"priceDoubleOcc\":\"68599.00\",\"priceSingleOcc\":205797,\"priceExtraBed\":\"68599.00\",\"priceWithoutBed\":\"68599.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":68599,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":68599,\"CEB\":68599,\"COSTDO\":68599,\"COSTSO\":\"137198.00\",\"ACEB\":68599,\"COSTTO\":68599,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;International airfares&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visas&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing, including Kyoto&amp;#39;s Fushimi Inari and Golden Pavilion, marvel at sacred Mount Fuji, and discover the dazzling cities of Tokyo and Osaka&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Six nights in central 3 and 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fully escorted by a professional English-speaking tour guide&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-depth sightseeing and entrance fees as per the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"510663\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[510663],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510664\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[510664],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510666\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[510666],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510667\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[510667],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510668\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[510668],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510669\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[510669],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510670\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[510670],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510671\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[510671],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510672\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[510672],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"510673\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[510673],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"510674\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[510674],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"14323\":{\"CityName\":\"Kolkata\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"12538\":{\"CityName\":\"Hyderabad\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"6000\":{\"CityName\":\"Chennai\",\"FromDate\":{\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240605\":{\"FromDate\":\"2024-06-05\",\"FromDateDMY\":\"05\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240712\":{\"FromDate\":\"2024-07-12\",\"FromDateDMY\":\"12\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240714\":{\"FromDate\":\"2024-07-14\",\"FromDateDMY\":\"14\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240822\":{\"FromDate\":\"2024-08-22\",\"FromDateDMY\":\"22\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240825\":{\"FromDate\":\"2024-08-25\",\"FromDateDMY\":\"25\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240913\":{\"FromDate\":\"2024-09-13\",\"FromDateDMY\":\"13\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241003\":{\"FromDate\":\"2024-10-03\",\"FromDateDMY\":\"03\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241016\":{\"FromDate\":\"2024-10-16\",\"FromDateDMY\":\"16\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241025\":{\"FromDate\":\"2024-10-25\",\"FromDateDMY\":\"25\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241030\":{\"FromDate\":\"2024-10-30\",\"FromDateDMY\":\"30\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241103\":{\"FromDate\":\"2024-11-03\",\"FromDateDMY\":\"03\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241106\":{\"FromDate\":\"2024-11-06\",\"FromDateDMY\":\"06\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241113\":{\"FromDate\":\"2024-11-13\",\"FromDateDMY\":\"13\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241120\":{\"FromDate\":\"2024-11-20\",\"FromDateDMY\":\"20\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Tokyo,Hamamatsu,Osaka,Shizuoka','Tokyo,Orient,Japan,Hamamatsu,Osaka,Shizuoka,Kyoto,Nagoya',NULL,'27427,11417,32378,25113',54999,68599,6,NULL,NULL,NULL,2,'',0,'2024-02-09 00:00:00','2024-11-20 00:00:00','2024-11-20 00:00:00',3,'Japan','110','2024-02-09 12:42:37','2024-02-09 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-of-japan',NULL,NULL,NULL,0),(440,68370,1,5293,0,0,0,'Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":68370,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/essential-vietnam-premium-small-group-tour_1706947777\",\"BookingValidUntill\":\"2024-10-13\",\"AdvBookingDays\":120,\"DETAILS\":\"&lt;p style=&quot;margin-left:40px; text-align:justify&quot;&gt;Travel with the experts for a carefully curated, value-packed discovery of the world&amp;#39;s most iconic destinations. Our tours are bursting with must-see sights, rich experiences and quality inclusions, all at an unbeatable price. Bucket list dreams are ticked off on these all-encompassing journeys.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi&lt;\\/strong&gt; - Enjoy a city tour of Hanoi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi&lt;\\/strong&gt; - Visit the Temple of Literature, the first university in Vietnam&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi&lt;\\/strong&gt; - Enjoy a walk through the Old Quarter of Hanoi&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi&lt;\\/strong&gt; - Embark on a walking tour to explore Vietnam&amp;#39;s lively street food scene&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Halong Bay&lt;\\/strong&gt; - Cruise the splendid waters of Halong Bay on a deluxe boat&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Halong Bay&lt;\\/strong&gt; - Overnight deluxe boat with all meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh&lt;\\/strong&gt; - Enjoy a sightseeing tour of Ho Chi Minh&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh&lt;\\/strong&gt; - Explore the Ben Thanh market - one of Ho Chi Minh&amp;rsquo;s livelist.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh&lt;\\/strong&gt; - Either delve into the historical Cu Chi Tunnels or embark on a tour of the Mekong Delta with a unique local twist&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh&lt;\\/strong&gt; - Join a number of exceptional optional tours.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ho Chi Minh City\",\"DestinationPlacesSysId\":31115,\"SourcePlaces\":\"Hanoi\",\"SourcePlaceSysId\":11487,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENTIAL VIETNAM PREMIUM SMALL GROUP TOUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour\",\"Validity\":{\"From\":\"2024-02-03\",\"To\":\"2024-10-13\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":598998,\"Name\":\"The Q Hotel Hanoi or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11487,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599001,\"Name\":\"Le Journey Cruise or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599004,\"Name\":\"Golden Central Hotel Saigon or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":31115,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"511128\",\"Title\":\"HANOI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Chao mung! Or welcome to Vietnam.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On your arrival at the Noi Bai International Airport, you will be welcomed by driver who will bring you to Hanoi city.&amp;nbsp;Hanoi is over 1000 years old and is currently the capital of Vietnam as well the commercial,&amp;nbsp;political, and cultural heart of the country. Check in hotel (early check-in is subject to the&amp;nbsp;hotel&amp;rsquo;s availability) and free at leisure.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The rest of the day is at leisure to explore this beautiful, ancient capital city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hanoi city.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511129\",\"Title\":\"HANOI\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Start the day with breakfast at the hotel, before your tour of Hanoi begins. Start your visit at the Temple of Literature, the first university in Vietnam. It was built in 1070. Move on to the Ethnographic Museum of Vietnam where you can see numerous exhibitions relevant to national folklore. Continue to Tran Quoc Pagoda - one of the oldest pagodas in Vietnam.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This afternoon enjoy a walk through the Old Quarter of Hanoi, also called 36 streets. This vibrant area houses thousands of boutiques and small shops and is a great way to cap off&amp;nbsp; an interesting day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At approximately 6pm this evening, you will embark on your Hanoi Street Food tour which will include delicacies from Northern Vietnam such as; stuffed pancakes, banh mi, stuffed sticky rice balls, unique egg coffee and many more (this food tour will be considered as your included dinner).&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":598998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511130\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511131\",\"Title\":\"Hanoi - Halong Bay\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Today, you will travel by coach through the rich farmland of the Red River Delta to arrive at Halong Bay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Designated a World Heritage site in 1994, Halong Bay&amp;rsquo;s spectacular scatter of islands, dotted with wind-and wave-eroded grottoes, is a vision of ethereal beauty.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival you will board your ship to visit the thousands of limestone islands filled with caves of all shapes&amp;nbsp;and sizes. The sails of junks and sampans gliding along the clear and emerald waters of the bay form a&amp;nbsp;magnificent scene that blends into the sky. You will also have the opportunity to visit some of the hidden grottoes beneath the towering cliffs.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599001,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511132\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511133\",\"Title\":\"Halong Bay - Hanoi - Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Awake early and participate in Tai Chi on the deck or simply relax and enjoy the sunrise over the bay&amp;rsquo;s&amp;nbsp;towering islands, a sight not to be missed! Enjoy a morning cup of coffee or tea, before setting out to&amp;nbsp;explore nearby islands by rowboat. Return to the junk for breakfast then take advantage of the sundeck&amp;nbsp;and admire the amazing rock formations of Halong Bay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a light lunch before heading back to shore. Your driver will then meet you at the Halong jetty for your drive back to Hanoi airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival at Tan Son Nhat Airport you will be transferred to your 4-star hotel in Ho Chi Minh City located beside the famous Ben Thanh Market.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599004,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511134\",\"Title\":\"Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, embark on a tour of Ho Chi Minh City (formerly known as Saigon). Visit highlights&amp;nbsp;such as the historic Post Office, War Remnant Museum, photograph the Notre Dame Cathedral and soak up&amp;nbsp;the atmosphere at Ben Thanh market, one of Ho Chi Minh&amp;rsquo;s liveliest areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The rest of the afternoon is your own leisure time to explore or join in an optional tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tour - Cu Chi Tunnels Tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cu Chi is a network of more than 120 km under the ground and were built by sweat and blood of Vietnamese guerrillas to hide and fight against the rival forces. You will be introduced to many kinds of booby traps used during Vietnam war. We will take time to explain the methods of creating, maintaining and living in these tunnels as well as the special technique of hiding smoke invented by the guerrillas.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599004,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511135\",\"Title\":\"Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today is a free day for individual activities, optional tours or shopping. The central streets are full of shops&amp;nbsp;and boutiques. Traditional objects, war memorabilia, Vietnamese drinks, unconventional food, handicrafts, fruits and vegetables can be found in Ben Thanh Market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599004,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511136\",\"Title\":\"Ho Chi Minh Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;DEPARTURE.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There are no activities planned for today and you will be free at leisure until your flight time. Organize a taxi to the airport (approx $A20-$30, paid in local currency Vietnamese Dong).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We hope you have been&amp;nbsp;Inspired&amp;nbsp;in Vietnam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"68370\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"55399.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"55399.00\",\"priceDoubleOcc\":\"55399.00\",\"priceSingleOcc\":166197,\"priceExtraBed\":\"55399.00\",\"priceWithoutBed\":\"55399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":55399,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":55399,\"CEB\":55399,\"COSTDO\":55399,\"COSTSO\":\"110798.00\",\"ACEB\":55399,\"COSTTO\":55399,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Optional activities, Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Preffered Seats and Meals are not included in the Airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin\\/ double sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Small group tour, up to 16 guests only&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing including, strolling around the bustling capital of Hanoi, embarking on a walking tour to explore Vietnam&amp;#39;s lively street food scene, reveling in an unforgettable overnight cruise on the stunning Halong Bay, and discovering the most notable highlights of Ho Chi Minh City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 nights in central 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 night on board your deluxe Halong Bay cruise boat with all inclusive meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internal flights from&amp;nbsp;Hanoi to Ho Chi Minh&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily, 2 Lunches, 1 Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Escorted by a professional English-speaking tour guides in each location&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-depth sightseeing and entrance fees as per the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"511128\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[511128],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511129\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[511129],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511130\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[511130],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511131\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[511131],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511132\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[511132],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511133\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[511133],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511134\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[511134],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511135\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[511135],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511136\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[511136],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"14323\":{\"CityName\":\"Kolkata\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"6000\":{\"CityName\":\"Chennai\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"12538\":{\"CityName\":\"Hyderabad\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Hanoi,Halong,Ho Chi Minh City','Hanoi,South East Asia,Vietnam,Orient,Halong,Ho Chi Minh City',NULL,'11487,11405,31115',55399,55399,6,NULL,NULL,NULL,2,'',0,'2024-02-03 00:00:00','2024-10-13 00:00:00','2024-10-13 00:00:00',3,'Vietnam','236','2024-02-03 15:35:57','2024-02-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'essential-vietnam-premium-small-group-tour',NULL,NULL,NULL,0),(441,68415,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":68415,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/essential-vietnam--nha-trang-beach-break_1706956820\",\"BookingValidUntill\":\"2024-12-08\",\"AdvBookingDays\":120,\"DETAILS\":\"&lt;p&gt;Travel with the experts for a carefully curated, value-packed discovery of the world&amp;#39;s most iconic destinations. Our tours are bursting with must-see sights, rich experiences and quality inclusions, all at an unbeatable price. Bucket list dreams are ticked off on these all-encompassing journeys.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi - Enjoy a city tour of Hanoi&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi - Visit the Temple of Literature, the first university in Vietnam&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi - Enjoy a walk through the Old Quarter of Hanoi&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Hanoi - Embark on a walking tour to explore Vietnam&amp;#39;s lively street food scene&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Halong Bay - Cruise the splendid waters of Halong Bay on a traditional Vietnamese boat&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh City - Enjoy a sightseeing tour of Ho Chi Minh City&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh City - Explore the Ben Thanh market, one of Ho Chi Minh City&amp;rsquo;s livelist&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ho Chi Minh City - Either delve into the historical Cu Chi Tunnels or embark on a tour of the Mekong Delta with a unique local twist&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"AdvBookingPercent\":100,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Ho Chi Minh City\",\"DestinationPlacesSysId\":31115,\"SourcePlaces\":\"Hanoi\",\"SourcePlaceSysId\":11487,\"AgencyName\":\"I Need Trip\",\"Name\":\"ESSENTIAL VIETNAM & NHA TRANG BEACH BREAK\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"19264\",\"SupplierName\":\"INSPIRING VACATIONS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Heritage,Romantic,Leisure,Group Tours,Activites Tour\",\"Validity\":{\"From\":\"2024-02-03\",\"To\":\"2024-12-08\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":11487,\"Title\":\"Hanoi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599080,\"Name\":\"The Q Hotel Hanoi or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11487,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11405,\"Title\":\"Halong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599082,\"Name\":\"Le Journey Cruise or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":11405,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":31115,\"Title\":\"Ho Chi Minh City\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599085,\"Name\":\"Golden Central Hotel Saigon or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":31115,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34732,\"Title\":\"Nha Trang\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":599089,\"Name\":\"Selectum Noa Resort Cam Ranh or Similar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34732,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":19264,\"SupplierName\":\"INSPIRING VACATIONS\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"511509\",\"Title\":\"HANOI\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Chao mung! Or welcome to Vietnam.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On your arrival at the Noi Bai International Airport,Please make your own way to your 4-star boutique hotel located in the heart of Hanoi.Hanoi is over 1000 years old and is currently the capital of Vietnam as well the commercial,&amp;nbsp;political, and cultural heart of the country. Check in hotel (early check-in is subject to the&amp;nbsp;hotel&amp;rsquo;s availability) and free at leisure.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrival transfers can be added via the purchase path when making a booking.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Please note: that standard check in is 3pm. Should you be arriving earlier in the day, the hotel can hold your luggage until your room is ready.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Hanoi city.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599080,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511510\",\"Title\":\"HANOI\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Start the day with breakfast at the hotel, before your tour of Hanoi begins. Start your visit at the Temple of Literature, the first university in Vietnam. It was built in 1070. Move on to the Ethnographic Museum of Vietnam where you can see numerous exhibitions relevant to national folklore. Continue to Tran Quoc Pagoda - one of the oldest pagodas in Vietnam.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This afternoon enjoy a walk through the Old Quarter of Hanoi, also called 36 streets. This vibrant area houses thousands of boutiques and small shops and is a great way to cap off&amp;nbsp; an interesting day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At approximately 6pm this evening, you will embark on your Hanoi Street Food tour which will include delicacies from Northern Vietnam such as; stuffed pancakes, banh mi, stuffed sticky rice balls, unique egg coffee and many more (this food tour will be considered as your included dinner).&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599080,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511511\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11487,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511512\",\"Title\":\"HANOI &ndash; HALONG BAY\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Today, you will travel by coach through the rich farmland of the Red River Delta to arrive at Halong Bay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Designated a World Heritage site in 1994, Halong Bay&amp;rsquo;s spectacular scatter of islands, dotted with wind-and wave-eroded grottoes, is a vision of ethereal beauty.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival you will board your ship to visit the thousands of limestone islands filled with caves of all shapes&amp;nbsp;and sizes. The sails of junks and sampans gliding along the clear and emerald waters of the bay form a&amp;nbsp;magnificent scene that blends into the sky. You will also have the opportunity to visit some of the hidden grottoes beneath the towering cliffs.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599082,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511513\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11405,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511514\",\"Title\":\"HALONG - HANOI - HO CHI MINH CITY\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Awake early and participate in Tai Chi on the deck or simply relax and enjoy the sunrise over the bay&amp;rsquo;s&amp;nbsp;towering islands, a sight not to be missed! Enjoy a morning cup of coffee or tea, before setting out to&amp;nbsp;explore nearby islands by rowboat. Return to the junk for breakfast then take advantage of the sundeck&amp;nbsp;and admire the amazing rock formations of Halong Bay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a light lunch before heading back to shore. Your driver will then meet you at the Halong jetty for your drive back to Hanoi airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival at Tan Son Nhat Airport you will be transferred to your 4-star hotel in Ho Chi Minh City located beside the famous Ben Thanh Market.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599085,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511515\",\"Title\":\"Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, embark on a tour of Ho Chi Minh City (formerly known as Saigon). Visit highlights&amp;nbsp;such as the historic Post Office, War Remnant Museum, photograph the Notre Dame Cathedral and soak up&amp;nbsp;the atmosphere at Ben Thanh market, one of Ho Chi Minh&amp;rsquo;s liveliest areas.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The rest of the afternoon is your own leisure time to explore or join in an optional tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tour - Cu Chi Tunnels Tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cu Chi is a network of more than 120 km under the ground and were built by sweat and blood of Vietnamese guerrillas to hide and fight against the rival forces. You will be introduced to many kinds of booby traps used during Vietnam war. We will take time to explain the methods of creating, maintaining and living in these tunnels as well as the special technique of hiding smoke invented by the guerrillas.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599085,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511516\",\"Title\":\"Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today is a free day for individual activities, optional tours or shopping. The central streets are full of shops&amp;nbsp;and boutiques. Traditional objects, war memorabilia, Vietnamese drinks, unconventional food, handicrafts, fruits and vegetables can be found in Ben Thanh Market.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tour - Mekong Delta Discovery Tour - My Tho&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Escape the hustle and bustle of the city and embark on a captivating tour of the Mekong Delta, where you&amp;#39;ll get a glimpse of life beyond the urban center of the South. A mere 2.5 hours away lies My Tho, a former naval base that has evolved into a thriving port city in the heart of the Mekong Delta. This area marks the final destination of the mighty Mekong River, which traverses through Tibet, China, Burma, Laos, Cambodia, and finally into Vietnam. Known for its incredibly fertile land, the Mekong Delta is a powerhouse of food production, responsible for generating almost half of Vietnam&amp;#39;s agricultural output. For the locals residing in this region, their lives revolve around the intricate network of rivers and canals that constitute the delta. In fact, water transport is more commonplace than road transport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once we arrive in My Tho, we&amp;#39;ll embark on a private boat and cruise along the Mekong River. Our first stop will be a fish farm, where we&amp;#39;ll gain insight into one of the cottage industries that drives the region. We&amp;#39;ll then visit an island that&amp;#39;s home to lush tropical gardens, where we&amp;#39;ll get to savor some delicious tropical fruits. Our Mekong tour continues onto another island, where we&amp;#39;ll learn more about coconut candy, another cottage industry prevalent in the region. Our local guide will take us to a factory, where we&amp;#39;ll discover the process of making this sweet treat. As we journey down the Mekong, we&amp;#39;ll have the opportunity to visit local villages and gain a deeper understanding of the traditional lifestyles, culture, and customs of the people who call this Delta their home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our Mekong discovery continues as we travel via Xe Loi (motorized cart) to a bee farm. Here, we&amp;#39;ll transfer to a smaller rowing boat, which will allow us to explore the smaller canals of the Delta. We&amp;#39;ll then head to Mien Tay riverside restaurant, where we&amp;#39;ll indulge in a set-menu lunch. Your local guide will provide you with valuable insights into the finer points of local cuisine and assist with ordering some of the most delectable delicacies. After lunch, we&amp;#39;ll stop at Vinh Trang pagoda before heading back to Ho Chi Minh City, where we&amp;#39;ll drop you off at your hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599085,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511517\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31115,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511518\",\"Title\":\"Ho Chi Minh City - Nha Trang (Cam Ranh)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, you will be transferred to the airport for your included flight to Nha Trang, a charming coastal city in the south of Vietnam renowned for its sandy shores, captivating diving spots, and picturesque islands.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival, you will receive a warm welcome and be escorted to Cam Ranh Beach, where your tranquil beachfront retreat awaits, offering a peaceful sanctuary away from the lively atmosphere of Nha Trang.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Nestled along a stretch of 400 metres of private beachfront, the Selectum Noa Resort will serve as your residence for the next three nights.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34732,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511519\",\"Title\":\"Cam Ranh Beach Nha Trang Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Today is a leisure day, dedicated to unwinding and enjoying the sunshine on the pristine shores of Cam Ranh Beach, situated in the enchanting Nha Trang area.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Alternatively, you may wish to join in an optional cruise to the surrounding islands.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34732,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511520\",\"Title\":\"Cam Ranh Beach Nha Trang Hotel\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Spend another full day indulging in relaxation on the serene private beach and making the most of the resort&amp;#39;s amenities.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you&amp;#39;re in the mood for some exploration, take a short taxi ride to the vibrant city centre of Nha Trang. Don&amp;#39;t miss out on visiting Nha Trang Vietnam Walking Street, a lively pedestrian street bustling with over 100 stalls offering a wide array of clothing, shoes, handicrafts, souvenirs, and more. It&amp;#39;s also a paradise for food enthusiasts, with a diverse selection of delectable Nha Trang cuisine awaiting your taste buds.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34732,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":599089,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"511521\",\"Title\":\"Nha Trang - Ho Chi Minh City\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Today, you will be transferred to Cam Ranh Airport in time for your included flight back to Tan Son Nhat International Airport (SGN). If planning a connecting flight to your onward journey on the same day, please ensure departure from Tan Son Nhat International Airport (SGN) is after 3pm.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34732,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"68415\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"93699.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-05-12\",\"To\":\"2024-05-12\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-09\",\"To\":\"2024-06-09\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-06-23\",\"To\":\"2024-06-23\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-07\",\"To\":\"2024-07-07\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-07-21\",\"To\":\"2024-07-21\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-04\",\"To\":\"2024-08-04\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-08-18\",\"To\":\"2024-08-18\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-08\",\"To\":\"2024-09-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-15\",\"To\":\"2024-09-15\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-22\",\"To\":\"2024-09-22\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-09-29\",\"To\":\"2024-09-29\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-13\",\"To\":\"2024-10-13\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-10-27\",\"To\":\"2024-10-27\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-10\",\"To\":\"2024-11-10\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-11-24\",\"To\":\"2024-11-24\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null},{\"From\":\"2024-12-08\",\"To\":\"2024-12-08\",\"Currency\":1,\"priceTripleOcc\":\"93699.00\",\"priceDoubleOcc\":\"93699.00\",\"priceSingleOcc\":281097,\"priceExtraBed\":\"93699.00\",\"priceWithoutBed\":\"93699.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":0,\"ExcludedPercent\":\"0\",\"PricePerPerson\":93699,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":93699,\"CEB\":93699,\"COSTDO\":93699,\"COSTSO\":\"187398.00\",\"ACEB\":93699,\"COSTTO\":93699,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airport Transfer&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Small group tour, up to 16 guests only&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incredible sightseeing including, strolling around the bustling capital of Hanoi, embarking on a walking tour to explore Vietnam&amp;#39;s lively street food scene, revelling in an unforgettable overnight cruise on the stunning Halong Bay, and discovering the most notable highlights of Ho Chi Minh City&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;8 nights in central 4-star accommodation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 night aboard a Halong Bay cruise with all inclusive meals&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internal flights in economy class from Hanoi to Ho Chi Minh City and return Ho Chi Minh City to Nha Trang&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Breakfast daily, 2 lunches, 2 dinners&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Escorted by professional English-speaking tour guides in Hanoi &amp;amp; Ho Chi Minh City&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Comfortable, dedicated transportation throughout&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In-depth sightseeing and entrance fees as per the itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"511509\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[511509],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511510\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[511510],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511511\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[511511],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511512\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[511512],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511513\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[511513],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511514\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[511514],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511515\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[511515],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511516\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[511516],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511517\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[511517],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"511518\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[511518],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511519\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[511519],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511520\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[511520],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"511521\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[511521],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"14323\":{\"CityName\":\"Kolkata\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"12538\":{\"CityName\":\"Hyderabad\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"6000\":{\"CityName\":\"Chennai\",\"FromDate\":{\"20240512\":{\"FromDate\":\"2024-05-12\",\"FromDateDMY\":\"12\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240609\":{\"FromDate\":\"2024-06-09\",\"FromDateDMY\":\"09\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240623\":{\"FromDate\":\"2024-06-23\",\"FromDateDMY\":\"23\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240707\":{\"FromDate\":\"2024-07-07\",\"FromDateDMY\":\"07\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240721\":{\"FromDate\":\"2024-07-21\",\"FromDateDMY\":\"21\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240804\":{\"FromDate\":\"2024-08-04\",\"FromDateDMY\":\"04\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240818\":{\"FromDate\":\"2024-08-18\",\"FromDateDMY\":\"18\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240908\":{\"FromDate\":\"2024-09-08\",\"FromDateDMY\":\"08\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240915\":{\"FromDate\":\"2024-09-15\",\"FromDateDMY\":\"15\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240922\":{\"FromDate\":\"2024-09-22\",\"FromDateDMY\":\"22\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240929\":{\"FromDate\":\"2024-09-29\",\"FromDateDMY\":\"29\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241013\":{\"FromDate\":\"2024-10-13\",\"FromDateDMY\":\"13\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241027\":{\"FromDate\":\"2024-10-27\",\"FromDateDMY\":\"27\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241110\":{\"FromDate\":\"2024-11-10\",\"FromDateDMY\":\"10\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241124\":{\"FromDate\":\"2024-11-24\",\"FromDateDMY\":\"24\\/11\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241208\":{\"FromDate\":\"2024-12-08\",\"FromDateDMY\":\"08\\/12\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Hanoi,Halong,Ho Chi Minh City,Nha Trang','Hanoi,South East Asia,Vietnam,Orient,Halong,Ho Chi Minh City,Nha Trang,CAM RANH',NULL,'11487,11405,31115,34732',93699,93699,9,NULL,NULL,NULL,2,'',0,'2024-02-03 00:00:00','2024-12-08 00:00:00','2024-12-08 00:00:00',3,'Vietnam','236','2024-02-03 17:26:56','2024-02-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'essential-vietnam-nha-trang-beach-break',NULL,NULL,NULL,0),(442,68676,1,5293,0,0,0,'Adventure,Beach,Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":68676,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/spectacular-south-africa_1707389822\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;margin-left:440px&quot;&gt;&lt;strong&gt;Spectacular South Africa &amp;ndash; 5 Days&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;margin-left:440px&quot;&gt;&lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cape Town&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Cape Town\",\"DestinationPlacesSysId\":5069,\"SourcePlaces\":\"Cape Town\",\"SourcePlaceSysId\":5069,\"AgencyName\":\"I Need Trip\",\"Name\":\"SPECTACULAR SOUTH AFRICA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"5786\",\"SupplierName\":\"TRAVCARE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,All Transfers\",\"PackageType\":\"Adventure,Beach,Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":5069,\"Title\":\"Cape Town\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":600053,\"Name\":\"Fountains Hotel Cape Town\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":5069,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":5786,\"SupplierName\":\"TRAVCARE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"513842\",\"Title\":\"Cape Town\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Cape Town International Airport, a Travcare representative meets you for a transfer to&lt;br \\/&gt;\\r\\nyour pre-booked hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cape Town is one of the most popular long-haul destinations in the world. Due to its unique topography, it&lt;br \\/&gt;\\r\\nis also one of the easiest places in which to orientate oneself as long as you remember that with Table&lt;br \\/&gt;\\r\\nMountain behind you and Robben Island before you; you are facing north, looking across Table Bay and&lt;br \\/&gt;\\r\\nup the west coast of Africa.&lt;br \\/&gt;\\r\\n? Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":600053,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"513843\",\"Title\":\"Cape Town - City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast leave on a half-day Mother City tour.&lt;br \\/&gt;\\r\\nYou will go for a scenic coastal drive through Clifton &amp;amp;amp; Sea Point &amp;amp;amp; later tour passes the Houses of&lt;br \\/&gt;\\r\\nParliament, the Castle, the SA Museum, and a few other historical sights &amp;ndash; District Six, Bo-Kaap, Slave&lt;br \\/&gt;\\r\\nLodge &amp;amp;amp; ending at the bustling Greenmarket Square. A cable car ride takes you up the Table Mountain&lt;br \\/&gt;\\r\\n(weather permitting otherwise Signal Hill) for a breath-taking view over the city (entrance is included)&lt;br \\/&gt;\\r\\nReturn to your hotel.&lt;br \\/&gt;\\r\\n? Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":600053,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"513844\",\"Title\":\"Cape Town - Peninsula Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast is taken at the hotel. Depart on a full day Peninsula tour&lt;br \\/&gt;\\r\\nThis comprehensive tour shows you the best of the spectacular Cape Peninsula and why it is it&amp;amp;#39;s called the&lt;br \\/&gt;\\r\\nFairest Cape. Travel past Sea Point and Camps Bay, past the famous beaches of Clifton and Llandudno&lt;br \\/&gt;\\r\\ntowards Hout Bay. Drive along the Atlantic Seaboard. Pass through Noordhoek and Scarborough. Later&lt;br \\/&gt;\\r\\nyou will take to the Cape of Good Hope Nature Reserve. Enjoy the funicular ride aboard the &amp;ldquo;Flying&lt;br \\/&gt;\\r\\nDutchman&amp;rdquo; and enjoy the unforgettable spectacular views. Later get the photo opportunity to take some&lt;br \\/&gt;\\r\\npictures at the second southernmost tip of the African continent. Visit the beautiful Boulders Beach and&lt;br \\/&gt;\\r\\nhave the option to sit among the famous colony of Jackass Penguins. Thereafter we enjoy a short stop at&lt;br \\/&gt;\\r\\nthe naval port of Simon&amp;amp;#39;s Town and know about the legend of &amp;ldquo;Able Seaman Just Nuisance&amp;rdquo; the Great&lt;br \\/&gt;\\r\\nDane Dog that was inducted in Royal Navy. Return to the hotel.&lt;br \\/&gt;\\r\\n? Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":600053,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"513845\",\"Title\":\"Cape Town &ndash;Robben island\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, leave for a half day trip to Robben Island. Afternoon return to the hotel and enjoy rest of&lt;br \\/&gt;\\r\\nyour day at leisure.&lt;br \\/&gt;\\r\\n&amp;bull; Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":600053,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"513846\",\"Title\":\"Cape Town\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, transfer to Cape Town International for flight back home&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5069,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"68676\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30064.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"30064.10\",\"priceSingleOcc\":129160.9,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30064.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":30064.1,\"COSTSO\":129160.9,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8},{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"31267.50\",\"priceSingleOcc\":130364.3,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31267.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":31267.5,\"COSTSO\":130364.3,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8},{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"33191.40\",\"priceSingleOcc\":132288.2,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33191.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":33191.4,\"COSTSO\":132288.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8},{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"34630.20\",\"priceSingleOcc\":133727,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34630.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":34630.2,\"COSTSO\":133727,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8},{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"39680.30\",\"priceSingleOcc\":138777.1,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39680.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":39680.3,\"COSTSO\":138777.1,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8},{\"From\":\"2024-02-08\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"49596.80\",\"priceDoubleOcc\":\"49596.80\",\"priceSingleOcc\":148693.6,\"priceExtraBed\":\"49596.80\",\"priceWithoutBed\":\"19961.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":49596.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":19961.7,\"CEB\":49596.8,\"COSTDO\":49596.8,\"COSTSO\":148693.6,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":49596.8,\"COSTTO\":49596.8}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited. (Incase, if there is any)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommendable by I Need Trip)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personal Insurance, we strongly suggest that the passenger&amp;rsquo;s take out their own insurance before departing for South Africa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Drinks and lunches\\/dinner except where mentioned.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Items of a personal nature, driver and guide gratuities&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees and excursions not mentioned above.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Porterage at hotels and airports&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any expenses caused by reasons beyond our control such as bad weather, natural calamities(landslides, floods), flight delays, excess baggage, rescheduling or cancellations, any accidents,medical evacuations, riots, strikes, war, airline or hotel policies etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Accommodation in standard rooms in above or similar on bed &amp;amp;amp; breakfast basis&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan (Breakfast)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis (until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Full day &amp;ldquo;Cape Peninsula&amp;rdquo; &amp;amp;amp; a half-day &amp;ldquo;Mother City&amp;rdquo; Tour in Cape Town&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers &amp;amp;amp; sightseeing is on Private basis in an air-conditioned luxury vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All entrance fees as per the itinerary with Table Mountain Cable car ride.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Robben island Tour&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"513842\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[513842],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"513843\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[513843],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"513844\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[513844],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"513845\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[513845],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"513846\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[513846],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Cape Town','Cape Town,Southern Africa,South Africa',NULL,'5069',30064,49597,4,NULL,NULL,NULL,2,'',0,'2024-02-08 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'South Africa','195','2024-02-08 18:12:04','2024-02-08 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'spectacular-south-africa',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (443,69096,1,5293,0,0,0,'Honeymoon,Adventure,Beach,Family,Religious,Romantic,Leisure,Group Tours,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":69096,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/mini-south-india-tour_1708063458\",\"BookingValidUntill\":\"2024-03-31\",\"AdvBookingDays\":7,\"DETAILS\":\"&lt;p&gt;We would like to take this opportunity to share with you the beauty of South India, a region that is rich in culture, history, and natural beauty. Our tour package includes visits to some of the most iconic destinations in the region, including&amp;nbsp;Tanjore, Mahabalipuram Temple, Navagraha, Srirangam Temple, Velankanni Church, Madurai Meenakshi Amman Temple, Ooty, Kodaikanal Hill Station and Kanyakumari, where you can witness the breathtaking sunrise and sunset. We are confident that our tour package will leave you with memories to cherish for a lifetime.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Kovalam\",\"DestinationPlacesSysId\":14455,\"SourcePlaces\":\"Madurai\",\"SourcePlaceSysId\":16319,\"AgencyName\":\"I Need Trip\",\"Name\":\" MINI SOUTH INDIA TOUR \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"21434\",\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Breakfast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Religious,Romantic,Leisure,Group Tours,Activites Tour\",\"Validity\":{\"From\":\"2024-02-28\",\"To\":\"2024-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16319,\"Title\":\"Madurai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":601210,\"Name\":\"Madurai Residency \\/Similar (Madurai)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1108,\"Title\":\"Meenakshi Amman Temple\",\"Description\":\"The wonderful architecture of the place is renowned globally. Meenakshi Temple is primarily dedicated to Parvati, known as Meenakshi, and her spouse, Shiva.  Meenakshi temple was hence built here to commemorate the same and to pay respects to the Goddess. The most striking feature of the temple is its exquisite facade, which has highly minute details with great art pieces incorporated in the walls and pillars. Meenakshi Amman temple complex is made in accordance to the Shilpa Shastra and has 14 gateway towers or &amp;#039;gopurams&amp;#039;, golden &amp;#039;vimanas&amp;#039;, holy sanctums and shrines dedicated to the revered Goddess Meenakshi and many others.\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":9.9157062,\"Long\":78.1193823,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4799\\/thumb\\/Meenakshi Amman Temple_655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68353,\"Title\":\"Thirumalai Nayakar Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14026,\"Title\":\"Pamban Bridge\",\"Description\":\"Pamban Bridge is a railway bridge which connects the town of Mandapam in mainland India with Pamban Island, and Rameswaram. Opened on 24 February 1914[1], it was India&amp;#039;s first sea bridge, and was the longest sea bridge in India until the opening of the Bandra-Worli Sea Link in 2010. The rail bridge is, for the most part, a conventional bridge resting on concrete piers, but has a double-leaf bascule section midway, which can be raised to let ships and barges pass through. Until 1988, the Pamban bridge was the only surface transport that connected Tamil Nadu&amp;#039;s island of Rameswaram to the mainland. In Dec-2018, the bascule of this bridge was damaged, which suspended the transportation on the bridge for 3 months. Rail movement was again restored on 27th Feb 2019.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Pamban_Bridge_36423_1580127333.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14020,\"Title\":\"Ramanathaswamy Temple\",\"Description\":\"Ramanathaswamy Temple is a Hindu temple dedicated to the god Shiva located on Rameswaram island in the state of Tamil Nadu, India. It is also one of the twelve Jyotirlinga temples.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Ramanathaswamy_Temple_36423_1580123820.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14015,\"Title\":\"Kanyakumari Amman Temple\",\"Description\":\"Ornate temple &amp;amp; pilgrimage site, dating back thousands of years, dedicated to Hindu goddess Kumari.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13520\\/sightseeing\\/Kanyakumari_Amman_Temple_13520_1580121817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":838,\"Title\":\"Kanyakumari Beach\",\"Description\":\"Kanyakumari beach with its beautiful hue-changing beaches, the confluence of three water bodies as well as the places of religious, historic and spiritual interests is one of the most exotic destinations in India and will never cease to amuse you with its sheer magnificence. The three distinct shades of the Bay of Bengal, The Indian Ocean and the Arabian Sea can be distinguished easily. Another exciting thing to do nearby will be the exciting water sports.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0877344,\"Long\":77.546716,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/930\\/thumb\\/Kanyakumari Beach_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1891,\"Title\":\"Vivekananda Rock Memorial\",\"Description\":\"It is situated on one of the two adjacent rocks projecting out of the Lakshadweep Sea and comprises of the &amp;#039;Shripada Mandapam&amp;#039; and the &amp;#039;Vivekananda Mandapam&amp;#039;. The island on which the statue is located is said to have been the site where Vivekananda attained enlightenment.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0883064,\"Long\":77.5384507,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/100\\/thumb\\/Rock Memorial_919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68354,\"Title\":\"Thirparappu Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1276,\"Title\":\"Padmanabhapuram Palace\",\"Description\":\"Padmanabhapuram Palace is a Travancore era palace located in Padmanabhapuram, Kalkulam taluk of Kanyakumari District, Tamil Nadu. It is also known as Kalkulam Palace.\\r\\nPadmanabhapuram is the former capital city of the erstwhile Hindu Kingdom of Travancore. It is around 20km from Nagercoil, and 60km from Thiruvananthapuram city. The \\r\\npalace is complex inside with an old granite fortress around four kilometers long. The palace is located at the foot of the Veli Hills, which forms a part of the Western Ghats. The\\r\\n river Valli flows nearby. Another palace known as kuttalam Palace is situated in Kuttalam in Tenkasi, Thirunelveli district, Tamil Nadu which is also under the ownership of Kerala government. It is situated in the Tenkasi, Tirunelveli District, Tamil Nadu (before state reorganisation, Kanyakumari District, Chenkottah Taluk, Tenkasi Taluk including the areas of Kuttalam are in the control of Travancore Kingdom in Kerala).\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6259\\/thumb\\/Padmanabhapuram Palace_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null}]}},{\"CityId\":22535,\"Title\":\"Rameshwaram\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":601211,\"Name\":\"Asoka \\/Similar (Rameshwaram)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":22535,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1108,\"Title\":\"Meenakshi Amman Temple\",\"Description\":\"The wonderful architecture of the place is renowned globally. Meenakshi Temple is primarily dedicated to Parvati, known as Meenakshi, and her spouse, Shiva.  Meenakshi temple was hence built here to commemorate the same and to pay respects to the Goddess. The most striking feature of the temple is its exquisite facade, which has highly minute details with great art pieces incorporated in the walls and pillars. Meenakshi Amman temple complex is made in accordance to the Shilpa Shastra and has 14 gateway towers or &amp;#039;gopurams&amp;#039;, golden &amp;#039;vimanas&amp;#039;, holy sanctums and shrines dedicated to the revered Goddess Meenakshi and many others.\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":9.9157062,\"Long\":78.1193823,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4799\\/thumb\\/Meenakshi Amman Temple_655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68353,\"Title\":\"Thirumalai Nayakar Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14026,\"Title\":\"Pamban Bridge\",\"Description\":\"Pamban Bridge is a railway bridge which connects the town of Mandapam in mainland India with Pamban Island, and Rameswaram. Opened on 24 February 1914[1], it was India&amp;#039;s first sea bridge, and was the longest sea bridge in India until the opening of the Bandra-Worli Sea Link in 2010. The rail bridge is, for the most part, a conventional bridge resting on concrete piers, but has a double-leaf bascule section midway, which can be raised to let ships and barges pass through. Until 1988, the Pamban bridge was the only surface transport that connected Tamil Nadu&amp;#039;s island of Rameswaram to the mainland. In Dec-2018, the bascule of this bridge was damaged, which suspended the transportation on the bridge for 3 months. Rail movement was again restored on 27th Feb 2019.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Pamban_Bridge_36423_1580127333.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14020,\"Title\":\"Ramanathaswamy Temple\",\"Description\":\"Ramanathaswamy Temple is a Hindu temple dedicated to the god Shiva located on Rameswaram island in the state of Tamil Nadu, India. It is also one of the twelve Jyotirlinga temples.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Ramanathaswamy_Temple_36423_1580123820.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14015,\"Title\":\"Kanyakumari Amman Temple\",\"Description\":\"Ornate temple &amp;amp; pilgrimage site, dating back thousands of years, dedicated to Hindu goddess Kumari.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13520\\/sightseeing\\/Kanyakumari_Amman_Temple_13520_1580121817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":838,\"Title\":\"Kanyakumari Beach\",\"Description\":\"Kanyakumari beach with its beautiful hue-changing beaches, the confluence of three water bodies as well as the places of religious, historic and spiritual interests is one of the most exotic destinations in India and will never cease to amuse you with its sheer magnificence. The three distinct shades of the Bay of Bengal, The Indian Ocean and the Arabian Sea can be distinguished easily. Another exciting thing to do nearby will be the exciting water sports.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0877344,\"Long\":77.546716,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/930\\/thumb\\/Kanyakumari Beach_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1891,\"Title\":\"Vivekananda Rock Memorial\",\"Description\":\"It is situated on one of the two adjacent rocks projecting out of the Lakshadweep Sea and comprises of the &amp;#039;Shripada Mandapam&amp;#039; and the &amp;#039;Vivekananda Mandapam&amp;#039;. The island on which the statue is located is said to have been the site where Vivekananda attained enlightenment.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0883064,\"Long\":77.5384507,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/100\\/thumb\\/Rock Memorial_919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68354,\"Title\":\"Thirparappu Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1276,\"Title\":\"Padmanabhapuram Palace\",\"Description\":\"Padmanabhapuram Palace is a Travancore era palace located in Padmanabhapuram, Kalkulam taluk of Kanyakumari District, Tamil Nadu. It is also known as Kalkulam Palace.\\r\\nPadmanabhapuram is the former capital city of the erstwhile Hindu Kingdom of Travancore. It is around 20km from Nagercoil, and 60km from Thiruvananthapuram city. The \\r\\npalace is complex inside with an old granite fortress around four kilometers long. The palace is located at the foot of the Veli Hills, which forms a part of the Western Ghats. The\\r\\n river Valli flows nearby. Another palace known as kuttalam Palace is situated in Kuttalam in Tenkasi, Thirunelveli district, Tamil Nadu which is also under the ownership of Kerala government. It is situated in the Tenkasi, Tirunelveli District, Tamil Nadu (before state reorganisation, Kanyakumari District, Chenkottah Taluk, Tenkasi Taluk including the areas of Kuttalam are in the control of Travancore Kingdom in Kerala).\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6259\\/thumb\\/Padmanabhapuram Palace_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null}]}},{\"CityId\":13520,\"Title\":\"Kanyakumari\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":601212,\"Name\":\"Viswa Grand\\/Similar (Kanyakumari)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13520,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":601213,\"Name\":\"Delano Residency\\/Similar (Thirparappu )\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":13520,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1108,\"Title\":\"Meenakshi Amman Temple\",\"Description\":\"The wonderful architecture of the place is renowned globally. Meenakshi Temple is primarily dedicated to Parvati, known as Meenakshi, and her spouse, Shiva.  Meenakshi temple was hence built here to commemorate the same and to pay respects to the Goddess. The most striking feature of the temple is its exquisite facade, which has highly minute details with great art pieces incorporated in the walls and pillars. Meenakshi Amman temple complex is made in accordance to the Shilpa Shastra and has 14 gateway towers or &amp;#039;gopurams&amp;#039;, golden &amp;#039;vimanas&amp;#039;, holy sanctums and shrines dedicated to the revered Goddess Meenakshi and many others.\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":9.9157062,\"Long\":78.1193823,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4799\\/thumb\\/Meenakshi Amman Temple_655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68353,\"Title\":\"Thirumalai Nayakar Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14026,\"Title\":\"Pamban Bridge\",\"Description\":\"Pamban Bridge is a railway bridge which connects the town of Mandapam in mainland India with Pamban Island, and Rameswaram. Opened on 24 February 1914[1], it was India&amp;#039;s first sea bridge, and was the longest sea bridge in India until the opening of the Bandra-Worli Sea Link in 2010. The rail bridge is, for the most part, a conventional bridge resting on concrete piers, but has a double-leaf bascule section midway, which can be raised to let ships and barges pass through. Until 1988, the Pamban bridge was the only surface transport that connected Tamil Nadu&amp;#039;s island of Rameswaram to the mainland. In Dec-2018, the bascule of this bridge was damaged, which suspended the transportation on the bridge for 3 months. Rail movement was again restored on 27th Feb 2019.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Pamban_Bridge_36423_1580127333.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14020,\"Title\":\"Ramanathaswamy Temple\",\"Description\":\"Ramanathaswamy Temple is a Hindu temple dedicated to the god Shiva located on Rameswaram island in the state of Tamil Nadu, India. It is also one of the twelve Jyotirlinga temples.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Ramanathaswamy_Temple_36423_1580123820.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14015,\"Title\":\"Kanyakumari Amman Temple\",\"Description\":\"Ornate temple &amp;amp; pilgrimage site, dating back thousands of years, dedicated to Hindu goddess Kumari.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13520\\/sightseeing\\/Kanyakumari_Amman_Temple_13520_1580121817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":838,\"Title\":\"Kanyakumari Beach\",\"Description\":\"Kanyakumari beach with its beautiful hue-changing beaches, the confluence of three water bodies as well as the places of religious, historic and spiritual interests is one of the most exotic destinations in India and will never cease to amuse you with its sheer magnificence. The three distinct shades of the Bay of Bengal, The Indian Ocean and the Arabian Sea can be distinguished easily. Another exciting thing to do nearby will be the exciting water sports.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0877344,\"Long\":77.546716,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/930\\/thumb\\/Kanyakumari Beach_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1891,\"Title\":\"Vivekananda Rock Memorial\",\"Description\":\"It is situated on one of the two adjacent rocks projecting out of the Lakshadweep Sea and comprises of the &amp;#039;Shripada Mandapam&amp;#039; and the &amp;#039;Vivekananda Mandapam&amp;#039;. The island on which the statue is located is said to have been the site where Vivekananda attained enlightenment.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0883064,\"Long\":77.5384507,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/100\\/thumb\\/Rock Memorial_919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68354,\"Title\":\"Thirparappu Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1276,\"Title\":\"Padmanabhapuram Palace\",\"Description\":\"Padmanabhapuram Palace is a Travancore era palace located in Padmanabhapuram, Kalkulam taluk of Kanyakumari District, Tamil Nadu. It is also known as Kalkulam Palace.\\r\\nPadmanabhapuram is the former capital city of the erstwhile Hindu Kingdom of Travancore. It is around 20km from Nagercoil, and 60km from Thiruvananthapuram city. The \\r\\npalace is complex inside with an old granite fortress around four kilometers long. The palace is located at the foot of the Veli Hills, which forms a part of the Western Ghats. The\\r\\n river Valli flows nearby. Another palace known as kuttalam Palace is situated in Kuttalam in Tenkasi, Thirunelveli district, Tamil Nadu which is also under the ownership of Kerala government. It is situated in the Tenkasi, Tirunelveli District, Tamil Nadu (before state reorganisation, Kanyakumari District, Chenkottah Taluk, Tenkasi Taluk including the areas of Kuttalam are in the control of Travancore Kingdom in Kerala).\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6259\\/thumb\\/Padmanabhapuram Palace_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null}]}},{\"CityId\":14455,\"Title\":\"Kovalam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":601214,\"Name\":\"Sagara\\/Similar\\u00a0(Kovalam)\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14455,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1108,\"Title\":\"Meenakshi Amman Temple\",\"Description\":\"The wonderful architecture of the place is renowned globally. Meenakshi Temple is primarily dedicated to Parvati, known as Meenakshi, and her spouse, Shiva.  Meenakshi temple was hence built here to commemorate the same and to pay respects to the Goddess. The most striking feature of the temple is its exquisite facade, which has highly minute details with great art pieces incorporated in the walls and pillars. Meenakshi Amman temple complex is made in accordance to the Shilpa Shastra and has 14 gateway towers or &amp;#039;gopurams&amp;#039;, golden &amp;#039;vimanas&amp;#039;, holy sanctums and shrines dedicated to the revered Goddess Meenakshi and many others.\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":9.9157062,\"Long\":78.1193823,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4799\\/thumb\\/Meenakshi Amman Temple_655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68353,\"Title\":\"Thirumalai Nayakar Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":16319,\"CityName\":\"Madurai\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14026,\"Title\":\"Pamban Bridge\",\"Description\":\"Pamban Bridge is a railway bridge which connects the town of Mandapam in mainland India with Pamban Island, and Rameswaram. Opened on 24 February 1914[1], it was India&amp;#039;s first sea bridge, and was the longest sea bridge in India until the opening of the Bandra-Worli Sea Link in 2010. The rail bridge is, for the most part, a conventional bridge resting on concrete piers, but has a double-leaf bascule section midway, which can be raised to let ships and barges pass through. Until 1988, the Pamban bridge was the only surface transport that connected Tamil Nadu&amp;#039;s island of Rameswaram to the mainland. In Dec-2018, the bascule of this bridge was damaged, which suspended the transportation on the bridge for 3 months. Rail movement was again restored on 27th Feb 2019.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Pamban_Bridge_36423_1580127333.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14020,\"Title\":\"Ramanathaswamy Temple\",\"Description\":\"Ramanathaswamy Temple is a Hindu temple dedicated to the god Shiva located on Rameswaram island in the state of Tamil Nadu, India. It is also one of the twelve Jyotirlinga temples.\",\"CurrencyType\":0,\"CityId\":36423,\"CityName\":\"Rameswaram\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36423\\/sightseeing\\/Ramanathaswamy_Temple_36423_1580123820.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":14015,\"Title\":\"Kanyakumari Amman Temple\",\"Description\":\"Ornate temple &amp;amp; pilgrimage site, dating back thousands of years, dedicated to Hindu goddess Kumari.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13520\\/sightseeing\\/Kanyakumari_Amman_Temple_13520_1580121817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":838,\"Title\":\"Kanyakumari Beach\",\"Description\":\"Kanyakumari beach with its beautiful hue-changing beaches, the confluence of three water bodies as well as the places of religious, historic and spiritual interests is one of the most exotic destinations in India and will never cease to amuse you with its sheer magnificence. The three distinct shades of the Bay of Bengal, The Indian Ocean and the Arabian Sea can be distinguished easily. Another exciting thing to do nearby will be the exciting water sports.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0877344,\"Long\":77.546716,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/930\\/thumb\\/Kanyakumari Beach_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1891,\"Title\":\"Vivekananda Rock Memorial\",\"Description\":\"It is situated on one of the two adjacent rocks projecting out of the Lakshadweep Sea and comprises of the &amp;#039;Shripada Mandapam&amp;#039; and the &amp;#039;Vivekananda Mandapam&amp;#039;. The island on which the statue is located is said to have been the site where Vivekananda attained enlightenment.\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":8.0883064,\"Long\":77.5384507,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/100\\/thumb\\/Rock Memorial_919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":68354,\"Title\":\"Thirparappu Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13520,\"CityName\":\"Kanyakumari\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1276,\"Title\":\"Padmanabhapuram Palace\",\"Description\":\"Padmanabhapuram Palace is a Travancore era palace located in Padmanabhapuram, Kalkulam taluk of Kanyakumari District, Tamil Nadu. It is also known as Kalkulam Palace.\\r\\nPadmanabhapuram is the former capital city of the erstwhile Hindu Kingdom of Travancore. It is around 20km from Nagercoil, and 60km from Thiruvananthapuram city. The \\r\\npalace is complex inside with an old granite fortress around four kilometers long. The palace is located at the foot of the Veli Hills, which forms a part of the Western Ghats. The\\r\\n river Valli flows nearby. Another palace known as kuttalam Palace is situated in Kuttalam in Tenkasi, Thirunelveli district, Tamil Nadu which is also under the ownership of Kerala government. It is situated in the Tenkasi, Tirunelveli District, Tamil Nadu (before state reorganisation, Kanyakumari District, Chenkottah Taluk, Tenkasi Taluk including the areas of Kuttalam are in the control of Travancore Kingdom in Kerala).\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6259\\/thumb\\/Padmanabhapuram Palace_61.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":21434,\"SupplierName\":\"SpaceX Tours & Travels Pvt. Ltd\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"518320\",\"Title\":\"MADURAI \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Arrive in Madurai and check into your hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the famous Meenakshi Amman Temple and marvel at the intricate carvings and colorful architecture.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore the Thirumalai Nayakkar Palace, an impressive 17th-century palace with beautiful gardens and stunning architecture.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the evening, take a stroll around the lively streets of Madurai and enjoy some local street food.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay in Madurai&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601210,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1108,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":68353,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518321\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518322\",\"Title\":\"RAMESHWARAM\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Check out from your hotel and drive to Rameshwaram, which is about 170 km from Madurai.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the Ramanathaswamy Temple, one of the most sacred Hindu temples in India and take a dip in the holy water.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore the Pamban Bridge, the longest sea bridge in India, and enjoy the breathtaking views of the sea and surrounding islands.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the evening, relax on the beautiful beaches of Rameshwaram and enjoy the peaceful surroundings.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay in Rameshwaram&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22535,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14026,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518323\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22535,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518324\",\"Title\":\"KANYAKUMARI\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Check out from your hotel and drive to Kanyakumari, which is about 310 km from Rameshwaram.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the Vivekananda Rock Memorial, built in honor of the great Indian philosopher Swami Vivekananda.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Explore the Kanyakumari Temple, which is dedicated to the goddess Kanyakumari and is located on the shore of the sea.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the evening, witness the stunning sunset at Kanyakumari beach, where the Arabian Sea, Bay of Bengal and Indian Ocean meet.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay in Kanyakumari&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14015,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":838,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1891,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518325\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518326\",\"Title\":\"Kanyakumari\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Head to Padmanapuram Palace&amp;nbsp; A historic palace known for its traditional Kerala architecture and beautiful interiors.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thirparappu Falls&amp;nbsp; A waterfall known for its natural beauty and the surrounding greenery.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Overnight stay in Thirparappu&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601213,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":68354,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1276,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518327\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518328\",\"Title\":\"KOVALAM\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Check out from your hotel and drive to Trivandrum, which is about 90 km from Kanyakumari.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit the famous Padmanabhaswamy Temple, which is dedicated to Lord Vishnu and is known for its intricate carvings and beautiful architecture.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Head to Lighthouse Beach, one of the most famous beaches in Kovalam. Enjoy a leisurely stroll along the golden sands, soak in the sun, and take in the breathtaking views of the Arabian Sea.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2708,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":972,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1606,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"518329\",\"Title\":\"KOVALAM\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;DEPARTURE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drop off at Trivandrum&amp;nbsp;Railway station or Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"69096\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25850.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"25850.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":25850,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850},{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"25850.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":25850,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850},{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"25850.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":25850,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850},{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"20350.00\",\"priceSingleOcc\":72050,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":20350,\"COSTSO\":72050,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850},{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"21175.00\",\"priceSingleOcc\":72875,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21175,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":21175,\"COSTSO\":72875,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850},{\"From\":\"2024-02-15\",\"To\":\"2024-03-31\",\"Currency\":1,\"priceTripleOcc\":\"25850.00\",\"priceDoubleOcc\":\"25850.00\",\"priceSingleOcc\":77550,\"priceExtraBed\":\"25850.00\",\"priceWithoutBed\":\"25850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":25850,\"CEB\":25850,\"COSTDO\":25850,\"COSTSO\":77550,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":25850,\"COSTTO\":25850}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;No refund will be made for any unused accommodation, missed meals, transportation segments, sightseeing tours or any other service. Such unused items are neither refundable nor exchangeable.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;Room allocation is done by the hotel depending upon availability at the time of check-in in the category of room as specified on your confirmation voucher.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;No refund shall be claimed, if the services &amp;amp; amenities of hotel were not up to your expectations, it will be considered on case to case basis Confirmation policy.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The Above package can be booked by paying token amount which is 50% of the total amount for booking &amp;amp; 50% must need to pay 7 days prior to arrival.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Assistance on arrival.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation as per package.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;MAP Meal Plan (Includes: Breakfast &amp;amp; Dinner).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Inclusive of all the Taxes (Parking, Toll Tax, Luxury Tax, Green Tax, Fuel Exp., and Driver Exp.etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Airport \\/ Railway station and Hotel Pickup and drop back at the end of the tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Check in &amp;amp; Check out at 12Noon. (Early arrival &amp;amp; Late departure subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Honeymoon Package Inclusions :-&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;Candle light Dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Flower Decoration.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hot Badam Milk.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Honeymoon Cake.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Check in &amp;amp; Check out at 12Noon. (Early arrival &amp;amp; Late departure subject to availability).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"518320\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[518320],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"518321\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[518321],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"518322\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[518322],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"518323\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[518323],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"518324\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[518324],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"518325\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[518325],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"518326\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[518326],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"518327\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[518327],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"518328\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[518328],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"518329\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[518329],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":[],\"bookingvalidityDay\":0,\"eventarray\":[]}}','Madurai,Rameshwaram,Kanyakumari,Kovalam','Madurai,Tamil Nadu,Indian Subcontinent,South India,India,Rameshwaram,Kanyakumari,Kovalam,Kerala,Rameswaram',NULL,'16319,22535,13520,14455',20350,25850,5,NULL,NULL,NULL,2,'',0,'2024-02-28 00:00:00','2024-03-31 00:00:00','2024-03-31 00:00:00',3,'India','101','2024-02-28 16:58:08','2024-02-28 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'mini-south-india-tour',NULL,NULL,NULL,0),(444,6219,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"6219\",\"VisaName\":\"Tourist Visa\",\"Nationality\":null,\"VisaAdultRates\":4000,\"VisaChildRates\":4000,\"VisaInfantRates\":4000,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Taiwan\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":1,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Single Entry\",\"DocsRequiredText\":\"&lt;p&gt;Tourist Visa Requirements for TAIWAN:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 photograph&amp;nbsp;(Passport Size 3.5cm x 4.5cm, coloured photo upto shoulder level with white background taken within 6 months, with 60% face covered in it)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Photocopy of the 1st, 2nd and last page of the passport is mandatory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1 Online visa Application forms: completed and signed&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Personal Covering letter: explaining purpose of travel to the country&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Original Bank Statement: stamped &amp;amp; updated for last 3 months with bank seal&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Air tickets: proof of return flight tickets from and back to your home country&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel reservation: proof of accommodation for your entire stay&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Day to day itinerary on tour operator`s letterhead with stamp and sign.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Income Tax Returns\\/Form 16: for last 3 years&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Itinerary: day-wise plan outlining all elements of the trip&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nSupporting documents as per your occupation, type of visit:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;1. If Employed:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Leave Sanctioned Certificate: with company seal providing approval for leave&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Salary Slips: of last 3 months&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2.If Self Employed:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Business Proof: Registration License\\/MOA\\/Partnership deed&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Company Bank Statement: stamped &amp;amp; updated for last 6 months with bank seal&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Company&amp;rsquo;s Income Tax Returns: of last 3 years&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. If Retired:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Retirement Proof: pension book, statement etc&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4. If Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;ID Card: from school, college or institute&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;OPTION-2 : E-Visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For Applicants having Valid USA\\/UK\\/Australia\\/Canada\\/Newzealand\\/Japan\\/Shengen visas, Taiwan visas can be applied online by us. For that you are required to send the Passport copy, email ID, Ticket copy and Mobile number of the pax&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Basic requirements&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The applicant&amp;#39;s passport must have remaining validity of at least six months starting from the date of arrival in Taiwan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid Taiwan Visa&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The applicant must possess an onward\\/return air or ferry ticket.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The applicant has never been employed as a blue-collar worker in Taiwan.&lt;\\/p&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;Address&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;34, Pashchimi Marg, New Delhi&lt;br \\/&gt;\\r\\nTel : 46077777&lt;br \\/&gt;\\r\\nFax : 26148480&lt;br \\/&gt;\\r\\nEmail: ind@mofa.gov.tw&lt;br \\/&gt;\\r\\nweb : www.taiwanembassy.org&lt;\\/p&gt;\",\"PrecessingTime\":\"5 Days\",\"VisaValidity\":\"90 Days \",\"VisaDuration\":\"30 Days \",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"19\",\"Title\":\"Photo (35mm X 45mm)\",\"Description\":\"&lt;p&gt;Two Recent Coloured Photographs,White background ,Matt finish, 60% to 80% Face Coverage, Size: 35mm X 45mm&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"}],\"PlanFee\":[]}','Taiwan','Taiwan',NULL,'212',4000,4000,0,NULL,NULL,NULL,0,'',0,'2024-02-28 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Taiwan','212','2024-02-28 11:42:56','2024-02-28 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'tourist-visa',NULL,NULL,NULL,0),(445,6317,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"6317\",\"VisaName\":\"France Visa\",\"Nationality\":null,\"VisaAdultRates\":7200,\"VisaChildRates\":3600,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"France\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p style=&#039;text-align:justify&#039;&gt;Documents required for France Visa:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Original Passport with at least 6 months validity and minimum 3 blank pages + all old passports if any;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Visa Application form;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;2 Passport size&amp;nbsp;35X45mm Photographs with white background and face coverage 70-80%&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Personal Covering letter (For Employed - Plain paper\\/ For Self-Employed &amp;ndash; Company Letterhead);&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Original updated Bank Statement with stamp &amp;amp; sign by bank (last 6 months);&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Income Tax Returns\\/Form 16 for last 3 years;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Confirmed return flight tickets;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Hotel reservation;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Travel Insurance (minimum coverage of EUR 30000).&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Supporting France Visa documents as per your occupation, type of visit:&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;1. If Employed:&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Employment Contract&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Original Leave sanctioned certificate with company seal and signature;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Last 3 months salary slip.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;2. If Self Employed:&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Business Registration License \\/ MOA \\/ Partnership deed;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Company&amp;rsquo;s updated bank statement of last 6 months;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Company&amp;rsquo;s IT returns for last 3 years.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;3. If Retired:&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Proof of retirement like pension book, statement etc.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;4. If Student&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;School \\/ College \\/ Institute ID Card;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Bonafide certificate.&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;5. If Visiting friend or relative&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;&amp;ldquo;Attestation d&amp;rsquo;accueil&amp;rdquo; from the Inviter;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Inviter&amp;rsquo;s ID proof like Passport or Resident Permit;&lt;\\/li&gt;\\r\\n\\t&lt;li style=&#039;text-align:justify&#039;&gt;Address proof like any Electricity bill, any Utility bill etc.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p style=&#039;text-align:justify&#039;&gt;Kindly note:&amp;nbsp;The Govt is very strict on the photograph requirement; please ensure that your photos are as per the specifications.&lt;\\/p&gt;\",\"BasicRequirementsText\":\"&lt;p&gt;Basic Requirements to visit France&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Have a valid Passport and valid France Visa;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be in good health;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Good moral character;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be able to convince the immigration officer that you have your family, property, assets, etc. that would serve as an incentive to come back to your home country;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Be able to convince the immigration officer that you will leave the country before your France visa expires;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Have sufficient funds to support yourself in France and the amount depends on how long you will stay in France and whether you will be staying with family, friends or any paid accommodation.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"EmbassyAddressText\":\"&lt;p&gt;France Embassy:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2\\/50-E Shantipath&lt;br \\/&gt;\\r\\nChanakyapuri&lt;br \\/&gt;\\r\\nNew Delhi 110021&lt;br \\/&gt;\\r\\nIndia&lt;\\/p&gt;\",\"PrecessingTime\":\"15 Days\",\"VisaValidity\":\"As per Embassy \",\"VisaDuration\":\"90 Days \",\"DocumentSubmission\":1,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"2500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[{\"DocSysId\":\"28\",\"Title\":\"Proof of Occupation\",\"Description\":\"&lt;p&gt;Proof of Occupation in the resident country is to be provided, for example :&amp;nbsp;&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Company Registration Certificate \\/ Certificate of Incorporation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp; GST Certificate&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Employed&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Proof of employment like Salary Slip or Appointment Letter and NOC from Employer.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Student&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;School ID copy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Leave Sanction Letter from school or School diary mentioning school holidays.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\"},{\"DocSysId\":\"26\",\"Title\":\"Letters addressed to the Embassy\\/Consulate\",\"Description\":\"&lt;p&gt;Letters addressed to the Embassy, for example : Request letter, Covering Letter or Invitation Letter etc.&lt;\\/p&gt;\"},{\"DocSysId\":\"24\",\"Title\":\"Basic Requirements\",\"Description\":\"&lt;p&gt;&lt;strong&gt;COVERING LETTER&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from applicant on business letter head stating his name, designation, purpose and duration of visit duly signed by authorized signatory and addressed to the Embassy.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Proof of Occupation&lt;br \\/&gt;\\r\\nSelf &amp;ndash;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Company Registration Certificate \\/ Certificate of Incorporation&lt;br \\/&gt;\\r\\nb) Articles of Memorandum (Incase the applicant is MD\\/Director)&lt;br \\/&gt;\\r\\nc) Proof of Proprietorship \\/ Partnership (In case applicant is Proprietor \\/ Partner in a firm)&lt;br \\/&gt;\\r\\nd) Import \\/ Export License (if applicable)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;&amp;nbsp;Employed&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Proof of employment like Salary Slip or Appointment Letter and NOC from Employer&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Student&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Leave Sanction Letter from school and School ID copy.&lt;br \\/&gt;\\r\\nb) Parents have to provide ITR, Bank statement and NOC letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;If applicant is a minor or travelling with anyone:&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\na) Birth Certificate (original and A4 sized copy)&lt;br \\/&gt;\\r\\nb) Letter of School confirming current school admission and sanctioned leave of absence (original, no copy)&lt;br \\/&gt;\\r\\nc) Consent Letter from both parents regarding child&amp;rsquo;s travel (original, no copy)&lt;br \\/&gt;\\r\\nd) A4 sized copy of Parents&amp;rsquo; Passports&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Proof of Accommodation:&lt;\\/strong&gt;&amp;nbsp;Hotel confirmation&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Airline Reservation:&lt;\\/strong&gt;&amp;nbsp;Ticket Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Travel Insurance&lt;\\/strong&gt;:&amp;nbsp;Overseas Medical Insurance for the stay duration amounting to 30,000 Euros to be submitted in original along with the photocopy&lt;\\/p&gt;\"},{\"DocSysId\":\"20\",\"Title\":\"Photo\",\"Description\":\"&lt;p&gt;Please upload one coloured recent scan Photo.&lt;\\/p&gt;\"},{\"DocSysId\":\"17\",\"Title\":\"Original Passport\",\"Description\":\"&lt;p&gt;&lt;span style=&#039;color:black&#039;&gt;Original Passport (&lt;\\/span&gt;&amp;nbsp;With Validity of more than 6 months with Minimum 3 Blank Pages)&lt;\\/p&gt;\"},{\"DocSysId\":\"5\",\"Title\":\"Passport Scan\",\"Description\":\"&lt;p&gt;Please upload colour scan copy of the first and last page of your current passport which contains the photograph and the personal particular details. Passport must be valid for 6 months beyond the last intended date of departure from this country.&lt;\\/p&gt;\"}],\"PlanFee\":[]}','France','France',NULL,'76',7200,7200,0,NULL,NULL,NULL,0,'',0,'2024-02-29 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'France','76','2024-02-29 18:54:06','2024-02-29 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'france-visa',NULL,NULL,NULL,0),(446,5823,6,5293,0,0,0,'',NULL,6,0,0,'{\"InvnVisaAllSysId\":\"5823\",\"VisaName\":\"Germany Visa \",\"Nationality\":null,\"VisaAdultRates\":7200,\"VisaChildRates\":3600,\"VisaInfantRates\":0,\"VisaFamilyOfRates\":0,\"CurrencySymbol\":\"INR       \",\"CurrencyType\":1,\"Country\":\"Germany\",\"VisaRequired\":6,\"VisaCategory\":1,\"DocName1\":\"\",\"DocFileName1\":null,\"DocName2\":\"\",\"DocFileName2\":null,\"DocName3\":\"\",\"DocFileName3\":null,\"DocName4\":\"\",\"DocFileName4\":null,\"DocName5\":\"\",\"DocFileName5\":null,\"DocName6\":\"\",\"DocFileName6\":null,\"VisaType\":2,\"VisaRequiredName\":\"Stamp Visa\",\"VisaCategoryName\":\"Tourism\",\"VisaTypeName\":\"Multi Entry\",\"DocsRequiredText\":\"&lt;p&gt;Documents Required for Germany Sticker Visa:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Schengen Visa Application Form&amp;nbsp;completely filled out and signed&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Print and submit all pages of the application form, including the barcodes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Declarations:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sign two declarations of True and Complete Information.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sign a declaration of travel with valid medical insurance.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passport:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Valid passport issued within the last 10 years.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Must have at least 3 months&amp;#39; validity beyond the scheduled return.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Should have at least two empty pages for visa affixation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;No observations on the front data page.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passport Copy&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide a copy of the biometric and address page of the passport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Photograph:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a recent biometric passport picture (35x45mm).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Must have a white background with 70%-80% face coverage.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Not older than six months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cover Letter with signature&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clearly state the purpose and duration of your travel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Itinerary&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide proof of intended means of transport and itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a certificate from the travel agency confirming the booking of an organised trip or any other detailed travel itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of Accommodation:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include proof of hotel reservations, rental of a holiday home, or campus residence reservation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If staying with a family member or friend, provide proof of sponsorship, a confirmation from the third person with signature, proof of address, and a copy of their passport or German ID card.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to multiple Member States, show proof of accommodation in each.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proof of Civil Status&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Submit the relevant documents based on your civil status (marriage certificate, divorce decree, birth certificates of children, or death certificate of spouse).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight Reservation:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include a flight reservation for your trip.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Medical Insurance&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The insurance should cover the entire duration of your Schengen trip with a minimum medical expenses coverage of EUR 30,000.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ensure it&amp;#39;s from approved Indian travel insurance companies as per German Missions&amp;#39; guidelines.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Supporting Documents for Germany Tourist Sticker Visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If your trip is Sponsored:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If sponsored by an Indian resident - submit a sponsor letter, the sponsor&amp;#39;s passport copy, and their bank statements for the last 3 months.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you are sponsored by a German\\/EU resident - Sponsor letter with a passport copy of the sponsor and copy of the German residence permit (if sponsor is residing in Germany and not a German Citizen) and If provided: Verpflichtungserkl&amp;auml;rung (formal obligation letter) of your sponsor.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If the sponsor is your spouse -&amp;nbsp;include a marriage certificate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If the sponsor is your parent - provide a birth certificate.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you are sponsored by a company in India - Acknowledgement of the company&amp;#39;s ITR Returns for the last three years (latest first, for example, 2022-2020)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you are sponsored by a company in Germany - Sponsor letter with a passport copy of the sponsor and copy of the German residence permit (if sponsor is residing in Germany and not a German Citizen).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Employed:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pay slips&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Employment contract&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Employer&amp;#39;s statement (leave sanction letter).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include your bank statements for the last 3 months, Indian income tax return (ITR) acknowledgment, or Form 16.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Self-Employed or a Company owner:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Certificate of registration of the company&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Goods and services tax (GST) registration number for companies based in India&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indian income tax return (ITR) acknowledgment for the last two assessment years or Form 16.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Retired:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pension statements for the last three months and\\/or proof of regular income generated by ownership of property or business&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If a Student:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Certificates of the establishment at which you are enrolled and no objection certificate from School \\/ University and for university students&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If Unemployed:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Applicant&amp;rsquo;s bank statements for the last 3 months stamped by the bank&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Supporting Documents for Germany Business Sticker Visa&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Federal Employment Agency Approval (for international staff exchange or work contracts)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you intend to work in Germany while on your Schengen Visa, please confirm with the inviting company whether you need approval from the Federal Employment Agency (Federal Agency for Labor) beforehand.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hosting company or institution should obtain this approval directly from the Federal Employment Agency and provide it when you submit your visa application.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Covering Letter from the Indian Company&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Submit an original signed covering letter on the company&amp;#39;s letterhead from the Indian company.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include the following details - Traveler&amp;#39;s name, passport number, purpose of the trip, duration of stay, brief itinerary of the visit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Company Details&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide the Certificate of Incorporation of the Indian Company.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Include the GST Registration document.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offer proof of Company Registration.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Invitation Letter from the Business Partner&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Obtain an invitation letter from the business partner in German or English.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The letter should specify the Planned activities during the visit and Details of the business relationship between the inviting and sending companies (e.g., same group, supplier relationships, specific trade details).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For Consultancy Services - Confirmation letter from the German client and If the inviting company is arranging accommodation, confirm this in the invitation letter.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Detailed Business Meeting Schedule(for stays over 30 days)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Provide a detailed schedule of your business meetings if your stay exceeds 30 days.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you have Additional Appointments in the Schengen Area&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If you have further appointments in the Schengen area, submit a signed invitation letter from the Schengen business partner on their company letterhead.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This letter should mention the purpose of travel, itinerary, and personal data of the applicant.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\",\"BasicRequirementsText\":\"\",\"EmbassyAddressText\":\"\",\"PrecessingTime\":\"15 Days\",\"VisaValidity\":\"As per Embassy \",\"VisaDuration\":\" \",\"DocumentSubmission\":0,\"PhysicalInterview\":0,\"Markup\":[{\"MPType\":1,\"MarkUpType\":1,\"MarkUp\":\"2500.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1},{\"MPType\":2,\"MarkUpType\":1,\"MarkUp\":\"2000.00\",\"CurrencyType\":1,\"ServiceProviderFee\":\"0\",\"ServiceProviderFeeCurrencyType\":1}],\"TravelersNationality\":[{\"ContId\":\"101\",\"Title\":\"India\"}],\"Document\":[],\"PlanFee\":[]}','Germany','Germany',NULL,'83',7200,7200,0,NULL,NULL,NULL,0,'',0,'2024-02-29 00:00:00','1900-01-01 00:00:00','1900-01-01 00:00:00',0,'Germany','83','2024-02-29 19:02:19','2024-02-29 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'germany-visa',NULL,NULL,NULL,0),(447,69881,1,5293,0,0,0,'Honeymoon,Family,Cruise,Heritage,Weekend,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":69881,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/lakshadweep-samudram_1709294242\",\"BookingValidUntill\":\"2024-04-11\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p style=&quot;text-align:justify&quot;&gt;Lakshadweep&amp;nbsp;Samudram&amp;nbsp;is a Five-day cruise to visit the islands of Kavaratti,&lt;br \\/&gt;\\r\\nKalpeni and Minicoy by ship- M.V Kavaratti. The island tour is organized during&lt;br \\/&gt;\\r\\nthe day, with lunch and refreshments ashore. Nights are spent onboard the ship.&lt;br \\/&gt;\\r\\nM.V Kavaratti has 180 Diamond class accommodations. Swimming, snorkeling and&lt;br \\/&gt;\\r\\nother water sports are arranged during the day&amp;amp;#39; tour. Children from 1 year and&lt;br \\/&gt;\\r\\nabove up to 10 years will be treated as children.&lt;br \\/&gt;\\r\\nMV Kavaratti. The ships have cafeterias, snack bars, doctor on call, entertainment&lt;br \\/&gt;\\r\\nand an upper-deck promenade. Ship facilities include three independent galleys,&lt;br \\/&gt;\\r\\nhalls, recreation places with a swimming pool and a helipad. While planning your&lt;br \\/&gt;\\r\\ntravel itinerary, please provide a day at Kochi, both one way to Lakshadweep and on&lt;br \\/&gt;\\r\\nthe way back. Ship programs\\/Itineraries are subject to change without notice due to&lt;br \\/&gt;\\r\\nship&amp;amp;#39;s arrival\\/departure or other unforeseen reasons.&lt;br \\/&gt;\\r\\nReporting time to our facilitation desk at the First floor, Lakshadweep Wharf and&lt;br \\/&gt;\\r\\nPassenger Facilitation Centre, Near FCI Godown, Indira Gandhi Road, Wellington&lt;br \\/&gt;\\r\\nIsland at 10:00 AM. Ship departure time 12.00 AM.&lt;br \\/&gt;\\r\\nKOCHI - WILLINGDON ISLAND&lt;br \\/&gt;\\r\\nKochi (Cochin), while you are at Kochi, we would be glad to arrange your&lt;br \\/&gt;\\r\\naccommodation on request and organize local sightseeing and backwater cruises.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":75,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Kochi\",\"DestinationPlacesSysId\":14275,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"I Need Trip\",\"Name\":\"LAKSHADWEEP SAMUDRAM \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6318\",\"SupplierName\":\"ANDAMAN EXPERTS\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"All Meals,Sightseeing,Cruise,All Transfers\",\"PackageType\":\"Honeymoon,Family,Cruise,Heritage,Weekend,Leisure,Group Tours\",\"Validity\":{\"From\":\"2024-03-01\",\"To\":\"2024-04-11\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14275,\"Title\":\"Kochi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":603985,\"Name\":\"SAMUDRAM\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14275,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cabin\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34476,\"Title\":\"Kalpeni\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":603992,\"Name\":\"SAMUDRAM\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34476,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cabin\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34477,\"Title\":\"Minicoy\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":603993,\"Name\":\"SAMUDRAM\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34477,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cabin\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34478,\"Title\":\"Agatti\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":603994,\"Name\":\"SAMUDRAM\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34478,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6318,\"SupplierName\":\"ANDAMAN EXPERTS\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cabin\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"526613\",\"Title\":\"Departure from Kochi\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Kavaratti Island:&amp;nbsp;&lt;br \\/&gt;\\r\\nLocated 404 km. From Cochin. It has been the headquarters of the U.T&lt;br \\/&gt;\\r\\nAdministration since 1964. You have enough time to explore the island. The beautiful&lt;br \\/&gt;\\r\\ncalm lagoon forms an ideal spot for water sports, swimming and basking on warm&lt;br \\/&gt;\\r\\nsandy beaches. Marine life exhibits can be seen at the new MARINE AQUARIUM,&lt;br \\/&gt;\\r\\nwhich has an excellent collection of specimens.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;10:00 to 10:30 Boarding.&lt;br \\/&gt;\\r\\n13:00 to 13:45 Lunch on Ship (Buffet separately for Veg and Non-Veg)&amp;nbsp;&lt;br \\/&gt;\\r\\n15:30 to 16:00 Evening Tea with Snacks&amp;nbsp;&lt;br \\/&gt;\\r\\n20:00 to 20:45 Dinner (Buffet separately for Veg and Non-Veg)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":603985,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Cabin\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526614\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14275,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526615\",\"Title\":\"Kalpeni\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Kalpeni:&amp;nbsp;Located 287 km. from Cochin. It is known for its scenic beauty and the small&lt;br \\/&gt;\\r\\nislets called Tilakkam and Pitti and an uninhabited island in the north called&lt;br \\/&gt;\\r\\nCheriyam. A huge, shallow lagoon encloses all of them. A peculiar feature of the&lt;br \\/&gt;\\r\\nKALPENI atoll is the huge storm bank of coral debris along the eastern and south-&lt;br \\/&gt;\\r\\neastern shorelines. Here, one can swim, reef-walk or water sport on kayaks, sailboats&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;and pedal boats. A visit to the Banyan Factory and the Light House is also included in&lt;br \\/&gt;\\r\\nthe day&amp;amp;#39;s program.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;06:00 to 06:30 Morning tea with Snacks&lt;br \\/&gt;\\r\\n07:00 to 07:30 Breakfast on board&amp;nbsp;&lt;br \\/&gt;\\r\\n07:30 to 08:00 Disembarkation (Follow the announcement onboard)&amp;nbsp;&lt;br \\/&gt;\\r\\n08:00 to 09:00 reception with welcome drinks on the island&amp;nbsp;&lt;br \\/&gt;\\r\\n09:00 to 13:00 Water Sports activities&amp;nbsp;&lt;br \\/&gt;\\r\\n13:00 to 13:45 Lunch in the beach resort. (Buffet separately for veg and non-Veg)&lt;br \\/&gt;\\r\\n14:00 to 15:30 Sightseeing&amp;nbsp;&lt;br \\/&gt;\\r\\n16:00 to 16:30 Evening Tea with Snacks&lt;br \\/&gt;\\r\\n16:30 to 16:45 Boarding to Ship.&lt;br \\/&gt;\\r\\n20:00 to 20:45 Dinner on board&amp;nbsp;(Buffet separately for veg and non-Veg)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34476,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":603992,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Cabin\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526616\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34476,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526617\",\"Title\":\"Minicoy\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Minicoy:&amp;nbsp;Located 398 km. from Cochin. It is about 10.6 Kms. Long: it is the second-&lt;br \\/&gt;\\r\\nlargest island. It is the southernmost island in Lakshadweep, crescent-shaped and&lt;br \\/&gt;\\r\\nhas one of the largest lagoons.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;06:00 to 06:30 Morning tea with Snacks&lt;br \\/&gt;\\r\\n07:00 to 07:30 Breakfast on board&amp;nbsp;&lt;br \\/&gt;\\r\\n07:30 to 08:00 Disembarkation (Follow the announcement onboard)&amp;nbsp;&lt;br \\/&gt;\\r\\n08:00 to 09:00 reception with welcome drinks on the island&amp;nbsp;&lt;br \\/&gt;\\r\\n09:00 to 13:00 Water Sports activities&amp;nbsp;&lt;br \\/&gt;\\r\\n13:00 to 13:45 Lunch in the beach resort. (Buffet separately for veg and non-Veg)&lt;br \\/&gt;\\r\\n14:00 to 15:30 Sightseeing&amp;nbsp;&lt;br \\/&gt;\\r\\n16:00 to 16:30 Evening Tea with Snacks&lt;br \\/&gt;\\r\\n16:30 to 16:45 Boarding to Ship.&lt;br \\/&gt;\\r\\n20:00 to 20:45 Dinner on board&amp;nbsp;(Buffet separately for veg and non-Veg)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34477,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":603993,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Cabin\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526618\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34477,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526619\",\"Title\":\"Agatti\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Agatti: has one of the most beautiful lagoons in Lakshadweep. The airport is built on&lt;br \\/&gt;\\r\\nthis island. From the aircraft, as one approaches for a landing, one gets a breath-&lt;br \\/&gt;\\r\\ntaking view of the airstrip on the island. Agatti is the virtual gateway to the islands.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;06:00 to 06:30 Morning tea with Snacks&lt;br \\/&gt;\\r\\n07:00 to 07:30 Breakfast on board&amp;nbsp;&lt;br \\/&gt;\\r\\n07:30 to 08:00 Disembarkation (Follow the announcement onboard)&amp;nbsp;&lt;br \\/&gt;\\r\\n08:00 to 09:00 reception with welcome drinks on the island&amp;nbsp;&lt;br \\/&gt;\\r\\n09:00 to 13:00 Water Sports activities&amp;nbsp;&lt;br \\/&gt;\\r\\n13:00 to 13:45 Lunch in the beach resort. (Buffet separately for veg and non-Veg)&lt;br \\/&gt;\\r\\n14:00 to 15:30 Sightseeing&amp;nbsp;&lt;br \\/&gt;\\r\\n16:00 to 16:30 Evening Tea with Snacks&lt;br \\/&gt;\\r\\n16:30 to 16:45 Boarding to Ship.&lt;br \\/&gt;\\r\\n20:00 to 20:45 Dinner on board&amp;nbsp;(Buffet separately for veg and non-Veg)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":603994,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Deluxe Cabin\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"526620\",\"Title\":\"Arrival Kochi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;06:00 to 06:30 Morning tea with Snacks&lt;br \\/&gt;\\r\\n07:00 to 07:30 Breakfast on board&amp;nbsp;&lt;br \\/&gt;\\r\\nDisembarkation (Follow the announcement onboard)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"69881\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32995.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-06\",\"To\":\"2024-03-06\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":65991.2,\"priceExtraBed\":\"32995.60\",\"priceWithoutBed\":\"32995.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":32995.6,\"CEB\":32995.6,\"COSTDO\":32995.6,\"COSTSO\":65991.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-12\",\"To\":\"2024-03-12\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-18\",\"To\":\"2024-03-18\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-24\",\"To\":\"2024-03-24\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-03-30\",\"To\":\"2024-03-30\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-05\",\"To\":\"2024-04-05\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6},{\"From\":\"2024-04-11\",\"To\":\"2024-04-11\",\"Currency\":1,\"priceTripleOcc\":\"32995.60\",\"priceDoubleOcc\":\"32995.60\",\"priceSingleOcc\":98986.79999999999,\"priceExtraBed\":\"28875.00\",\"priceWithoutBed\":\"28875.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32995.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":28875,\"CEB\":28875,\"COSTDO\":32995.6,\"COSTSO\":98986.8,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":32995.6,\"COSTTO\":32995.6}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 7 Days prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;75% advance to be paid at the time of booking &lt;strong&gt;(We will start booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need minimum 72 working hours to reply back on your booking confirmation, if we fail to give you the proposed services then we will provide you similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page or any observation page if any&lt;\\/strong&gt;) needs to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or whatsapp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 10&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 15&amp;nbsp;days prior to departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Note: Underwater scuba diving is not included if required, guests can avail of&lt;br \\/&gt;\\r\\n\\tKavaratti paying Rs 2500 per dive at the Dolphin dive center of Lakshadweep&lt;br \\/&gt;\\r\\n\\tTourism.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;First class cabin accommodation&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All 3-time meals [breakfast Lunch and Dinner] morning and evening tea or coffee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Bus transfer to the ship from the boarding point at Cochin.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Welcome drink at the island.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All 3-island sightseeing.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Water sports Kayaking Snorkeling and glass boat 1 time&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Entry permit and heritage fee&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All the Government taxes.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Our personal assistance on the ship and Island&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"526613\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[526613],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526614\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[526614],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526615\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[526615],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526616\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[526616],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526617\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[526617],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526618\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[526618],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526619\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[526619],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"526620\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[526620],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"14275\":{\"CityName\":\"Kochi\",\"FromDate\":{\"20240306\":{\"FromDate\":\"2024-03-06\",\"FromDateDMY\":\"06\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240312\":{\"FromDate\":\"2024-03-12\",\"FromDateDMY\":\"12\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240318\":{\"FromDate\":\"2024-03-18\",\"FromDateDMY\":\"18\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240324\":{\"FromDate\":\"2024-03-24\",\"FromDateDMY\":\"24\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240330\":{\"FromDate\":\"2024-03-30\",\"FromDateDMY\":\"30\\/03\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240405\":{\"FromDate\":\"2024-04-05\",\"FromDateDMY\":\"05\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240411\":{\"FromDate\":\"2024-04-11\",\"FromDateDMY\":\"11\\/04\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Kochi,Kalpeni,Minicoy,Agatti','Kochi,Kerala,Indian Subcontinent,South India,India,Kalpeni,Lakshadweep Islands,Minicoy,Agatti,Lakshadweep',NULL,'14275,34476,34477,34478',32996,32996,4,NULL,NULL,NULL,2,'',0,'2024-03-01 00:00:00','2024-04-11 00:00:00','2024-04-11 00:00:00',3,'India','101','2024-03-01 00:00:00','2024-03-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'lakshadweep-samudram',NULL,NULL,NULL,0),(448,70143,1,5293,0,0,0,'Honeymoon,Wildlife,Family,Cruise,Weekend,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":70143,\"IsCF\":0,\"URL\":\"\",\"IsSharingPrice\":\"\",\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/b2bzend.s3.ap-south-1.amazonaws.com\\/img\\/5293\\/package\\/images\\/amazing-turkiye-tour_1709711675\",\"BookingValidUntill\":\"2024-10-18\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Turkey&lt;\\/strong&gt;, officially the Republic of T&amp;uuml;rkiye, is a country mainly in Anatolia in West Asia, with a smaller part called East Thrace in Southeast Europe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Istanbul&lt;\\/strong&gt; is a major city in Turkey that straddles Europe and Asia across the Bosphorus Strait. Its Old City reflects cultural influences of the many empires that once ruled here. In the Sultanahmet district, the open-air, Roman-era Hippodrome was for centuries the site of chariot races, and Egyptian obelisks also remain. The iconic Byzantine Hagia Sophia features a soaring 6th-century dome and rare Christian mosaics.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Cappadocia&lt;\\/strong&gt;, a semi-arid region in central Turkey, is known for its distinctive &amp;ldquo;fairy chimneys,&amp;rdquo; tall, cone-shaped rock formations clustered in Monks Valley, G&amp;ouml;reme and elsewhere. Other notables sites include Bronze Age homes carved into valley walls by troglodytes (cave dwellers) and later used as refuges by early Christians. The 100m-deep Ihlara Canyon houses numerous rock-face churches.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Antalya&lt;\\/strong&gt; is a Turkish resort city with a yacht-filled Old Harbor and beaches flanked by large hotels. It&amp;#39;s a gateway to Turkey&amp;#39;s southern Mediterranean region, known as the Turquoise Coast for its blue waters. Remnants remain from Antalya&amp;#39;s time as a major Roman port. These include Hadrian&amp;rsquo;s Gate, built to honor the Roman emperor&amp;rsquo;s visit in 130 A.D and 2nd-century Hidirlik Tower, with harbor views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":70,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":5293,\"AgencyIdB2C\":5293,\"AgencyIdB2B\":5293,\"DestinationPlaces\":\"Antalya\",\"DestinationPlacesSysId\":1151,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"I Need Trip\",\"Name\":\"AMAZING TURKIYE TOUR\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7305\",\"SupplierName\":\"TUNGA TOUR\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Sightseeing,All Transfers\",\"PackageType\":\"Honeymoon,Wildlife,Family,Cruise,Weekend,Leisure\",\"Validity\":{\"From\":\"2024-03-06\",\"To\":\"2024-10-18\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":604726,\"Name\":\"GRAND GULSOY HOTEL OR SIMILAR IN ISTANBUL\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":604728,\"Name\":\"CAVE HOTEL OR SIMILAR IN CAPPADOCIA\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":604734,\"Name\":\"BEST WESTERN KHAN HOTEL OR SIMILAR IN ANTALYA\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":1151,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7305,\"SupplierName\":\"TUNGA TOUR\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"FB\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"530022\",\"Title\":\"Friday, Istanbul &ndash; Arrival &ndash; (no meal)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;After you arrive in Istanbul, our transfer man will meet you at Istanbul airport and transfer you to your hotel.&lt;strong&gt; Today you&lt;br \\/&gt;\\r\\nwill have time for rest and free time. Overnight in Istanbul.&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n&lt;strong&gt;Optional Tour; Bosphorus Dinner Cruise&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604726,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530023\",\"Title\":\"Saturday &ndash; Istanbul Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; Indian Lunch &amp;ndash; Indian Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, our guide will pick you up from the hotel for the Istanbul tour.&lt;strong&gt; Topkapi Palace&lt;\\/strong&gt; was more than&lt;br \\/&gt;\\r\\njust the private residence of the Sultan and his court, It was the seat of the supreme executive and judiciary council,&lt;br \\/&gt;\\r\\nthe Divan, and the training school. &lt;strong&gt;Hippodrome and Obelisks;&lt;\\/strong&gt; The square in front of the Blue Mosque covers the site&lt;br \\/&gt;\\r\\nof the ancient &amp;#39;Hippodrome&amp;quot;, one of the most famous areas in Byzantine. Shopping Opportunity, &lt;strong&gt;Lunch at an Indian&lt;br \\/&gt;\\r\\nRestaurant. The Blue Mosque&lt;\\/strong&gt; is one of the most prominent landmarks of Istanbul. It is very impressive with its&lt;br \\/&gt;\\r\\nbeautiful domes and semidomes, nice courtyards, and six slender minarets. Our tour is going to conclude in &lt;strong&gt;Grand&lt;br \\/&gt;\\r\\nBazaar f&lt;\\/strong&gt;or giving you free time to visit this legendary bazaar.&lt;strong&gt; Dinner at an Indian Restaurant. &lt;\\/strong&gt;Transfer back to your&lt;br \\/&gt;\\r\\nhotel. Overnight in Istanbul.&lt;br \\/&gt;\\r\\n&lt;strong&gt;SPECIAL NOTE: Please do not forget to carry a headscarf with you for the visit to Blue Mosque&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604726,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530024\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530025\",\"Title\":\"Sunday &ndash; Istanbul Tour &ndash; flight to Cappadocia (TK2020 \\/ 18:25-19:55)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; Indian Lunch &amp;ndash; local Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, you will picked up from hotel. Today you will have shopping opportunity and sightseeing&lt;br \\/&gt;\\r\\nIstanbul.&lt;strong&gt; Bosphorus Cruise&lt;\\/strong&gt; for 1,5 hours. You will have the chance to see the Bosphorus districts &lt;strong&gt;Besiktas, Bebek and&lt;br \\/&gt;\\r\\nOrtakoy&lt;\\/strong&gt;. After&lt;strong&gt; lunch at an Indian restaurant,&lt;\\/strong&gt; we will visit &lt;strong&gt;Spice Bazaar&lt;\\/strong&gt;. After the tour, transfer to the airport for flight&lt;br \\/&gt;\\r\\nto &lt;strong&gt;Cappadocia&lt;\\/strong&gt; (TK2020 \\/ 18:25-19:55). After arrival, transfer to the hotel.&lt;strong&gt; Local dinner&lt;\\/strong&gt; at the hotel or a restaurant.&lt;br \\/&gt;\\r\\nOvernight in Cappadocia.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604728,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530026\",\"Title\":\"Monday &ndash; Cappadocia Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; Indian Lunch &amp;ndash; Local Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional tour; Hot Air Balloon&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, depart from the hotel for the Cappadocia Tour. Our first real encounter with Cappadocia&lt;br \\/&gt;\\r\\nalmost Martian landscape is in the&lt;strong&gt; Dervent valley&lt;\\/strong&gt;. From here we pause at &lt;strong&gt;Avanos &lt;\\/strong&gt;Center of Terracotta Art which is a&lt;br \\/&gt;\\r\\npopular destination because of its attractive old town with cobbled streets, views over the river, and its&lt;br \\/&gt;\\r\\nproduction of earthenware pottery, it is also the most economic activity in the town. After&lt;strong&gt; lunch at an Indian&lt;br \\/&gt;\\r\\nrestaurant,&lt;\\/strong&gt; we will visit&lt;strong&gt; Red Valley&lt;\\/strong&gt; and then &lt;strong&gt;Rose Valley&lt;\\/strong&gt; to explore the famous rock-cut churches and hike 2 km. End&lt;br \\/&gt;\\r\\nof the tour transfer to the hotel. &lt;strong&gt;Dinner &lt;\\/strong&gt;at the hotel or a local restaurant. Overnight in Cappadocia.&lt;br \\/&gt;\\r\\n&lt;strong&gt;SPECIAL NOTE; Guests must be able to walk approximately 1, 5 miles over uneven and cobblestone surfaces.&lt;br \\/&gt;\\r\\nComfortable shoes, a hat, and plenty of sunscreens are recommended as shade is limited the order of the tour itinerary&lt;br \\/&gt;\\r\\nmay vary in order to avoid congestion. Guests should watch their steps at all times in order to avoid injuries.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604728,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530027\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530028\",\"Title\":\"Tuesday &ndash; Cappadocia Tour &ndash; flight to Antalya (XQ7033 \\/ 21:20-22:40)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; Indian Lunch &amp;ndash; Local Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, you will picked up from the hotel for a Cappadocia tour and transfer to the airport for&lt;br \\/&gt;\\r\\nAntalya flight. First visit &lt;strong&gt;Zelve open air museum&lt;\\/strong&gt;, Zelve Open Air Museum to see the best examples of Byzantine art in&lt;br \\/&gt;\\r\\nCappadocia. People of Goreme, at the heart of the Cappadocia Region, realized that these soft rocks could be easily&lt;br \\/&gt;\\r\\ncarved out to form houses, churches, and monasteries. After &lt;strong&gt;lunch at an Indian restaurant&lt;\\/strong&gt; drive to the&lt;strong&gt; Pigeon Valley&lt;\\/strong&gt;. In&lt;br \\/&gt;\\r\\nthe afternoon visit &lt;strong&gt;Underground City&lt;\\/strong&gt;, where early Christians lived in fear and faith. The houses in the village are&lt;br \\/&gt;\\r\\nconstructed around the nearly one hundred tunnels of the underground city, which is one of the most interesting&lt;br \\/&gt;\\r\\nunderground settlements in Cappadocia. After &lt;strong&gt;dinner &lt;\\/strong&gt;at a local restaurant transfer to the airport for an evening flight to&lt;br \\/&gt;\\r\\nAntalya (XQ7033 \\/ 21:20-22:40). After arrival transfer to the hotel. Overnight in Antalya.&lt;br \\/&gt;\\r\\nDay&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604734,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530029\",\"Title\":\"Wednesday &ndash; Antalya City Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; Indian Lunch &amp;ndash; Local Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, drive with your guide to&lt;strong&gt; Karpuz Kald?ran Waterfalls&lt;\\/strong&gt; the place where the falls meet the&lt;br \\/&gt;\\r\\nsea and have a photo break in &lt;strong&gt;Konyaalti beach&lt;\\/strong&gt;. Our next stop will be in&lt;strong&gt; Kalei&amp;ccedil;i&lt;\\/strong&gt;. After&lt;strong&gt; lunch at an Indian Restaurant&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nvisit to old town with the&lt;strong&gt; gate of Hadrian, the Clock Tower, Fluted Minaret, Palm Street and the ancient harbor&lt;\\/strong&gt;. There&lt;br \\/&gt;\\r\\nare many beautiful old houses in Kaleici. At last, &lt;strong&gt;boat tour&lt;\\/strong&gt; for 45 min. after tour, transfer back to the hotel. &lt;strong&gt;Dinner&lt;\\/strong&gt; at&lt;br \\/&gt;\\r\\na local restaurant or at the hotel. Overnight in Antalya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604734,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530030\",\"Title\":\"Thursday &ndash; Pamukkale Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast &amp;ndash; local Lunch &amp;ndash; Local Dinner)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast in the early morning, depart&amp;nbsp;&lt;strong&gt;for Pamukkale&lt;\\/strong&gt; &amp;ldquo;Hierapolis&amp;rdquo; Travertine Terraces, traveling via Denizli. &lt;strong&gt;Local&lt;br \\/&gt;\\r\\nLunch&lt;\\/strong&gt; at Pam Thermal Hotel. Also 2 hours of Thermal water pool free time for swimming. the natural wonder of the&lt;br \\/&gt;\\r\\ncalcified waterfalls of Pamukkale (Cotton Castle) compensates for this. Thermal spring waters, laden with calcium&lt;br \\/&gt;\\r\\ncarbonate running off the plateau&amp;rsquo;s edge, have formed this sparkling white petrified cascade of basins ringed by&lt;br \\/&gt;\\r\\nstalagmites. The thermal waters have been used since Roman times for their therapeutic powers, and behind the&lt;br \\/&gt;\\r\\nwaterfalls lie the ruins of the Roman City of &lt;strong&gt;&amp;ldquo;Hierapolis&amp;rdquo;&lt;\\/strong&gt;. Cleopatra Pool is&lt;strong&gt; an extra&lt;\\/strong&gt;. You will have the opportunity&amp;nbsp;&lt;br \\/&gt;\\r\\nnot only to swim in the famous thermal springs of Pamukkale but also visit the remarkable Roman Theatre and&lt;br \\/&gt;\\r\\nthe impressive largest antique graveyard of Asia Minor. At the end of the tour, back to Antalya. &lt;strong&gt;Dinner&lt;\\/strong&gt; at a local&lt;br \\/&gt;\\r\\nrestaurant or the hotel. Overnight in Antalya.&lt;br \\/&gt;\\r\\n&lt;strong&gt;SPECIAL NOTE; in Pam Thermal Hotel, a 2-hour thermal water pool is included in the tour. Cleopatra Pool is not included.&lt;br \\/&gt;\\r\\nPlease do not forget to bring your swimsuit with you.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":604734,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"530031\",\"Title\":\"Friday &ndash; End of the tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;(local buffet breakfast)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast at the hotel, transfer to the Antalya airport and end of the tour.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"70143\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"98895.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-03\",\"To\":\"2024-05-03\",\"Currency\":1,\"priceTripleOcc\":\"98895.40\",\"priceDoubleOcc\":\"98895.40\",\"priceSingleOcc\":296686.19999999995,\"priceExtraBed\":\"98895.40\",\"priceWithoutBed\":\"98895.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":98895.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":98895.4,\"CEB\":98895.4,\"COSTDO\":98895.4,\"COSTSO\":296686.2,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":98895.4,\"COSTTO\":98895.4},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-17\",\"To\":\"2024-05-17\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-05-31\",\"To\":\"2024-05-31\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-07\",\"To\":\"2024-06-07\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-06-21\",\"To\":\"2024-06-21\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-05\",\"To\":\"2024-07-05\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-07-19\",\"To\":\"2024-07-19\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-02\",\"To\":\"2024-08-02\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-08-16\",\"To\":\"2024-08-16\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-06\",\"To\":\"2024-09-06\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-09-20\",\"To\":\"2024-09-20\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-04\",\"To\":\"2024-10-04\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9},{\"From\":\"2024-10-18\",\"To\":\"2024-10-18\",\"Currency\":1,\"priceTripleOcc\":\"94994.90\",\"priceDoubleOcc\":\"94994.90\",\"priceSingleOcc\":284984.69999999995,\"priceExtraBed\":\"94994.90\",\"priceWithoutBed\":\"94994.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":94994.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CostInfent\":null,\"CWOB\":94994.9,\"CEB\":94994.9,\"COSTDO\":94994.9,\"COSTSO\":284984.7,\"CostQuad\":null,\"CostQuint\":null,\"CostHexa\":null,\"ACEB\":94994.9,\"COSTTO\":94994.9}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;If&amp;nbsp;you do not wish to travel,&amp;nbsp;&lt;strong&gt;you must cancel your booking at least 72&amp;nbsp;hours prior to scheduled departure of the flight&lt;\\/strong&gt;.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Refund is subject to applicable cancellation charges. Please note that cancellation policy is subject to change without prior notice.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;If your travel plans have changed, you can cancel your booking. Please note that cancellation and refund policies differ for different types of services.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of a booking made through a Travel agent, the refund amount will be processed to the Travel agency account on cancellation of the booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travelers\\/Guests will have to contact the concerned agency directly to claim their refund.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;70% advance to be paid at the time of booking &lt;strong&gt;(We will start the booking process after the receipt of the initial payment, until then we are not holding anything &amp;amp; cannot guarantee the availability of the proposed services)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare&amp;nbsp;quoted&amp;nbsp;at the time of package&amp;nbsp;creation&amp;nbsp;is subject to change at the time of booking depending on fare fluctuations.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We need a minimum of 72 working hours to reply to your booking confirmation, if we fail to give you the proposed services then we will provide you with similar options or we will refund your received amount.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passport copies of all Guests&amp;nbsp;(&lt;strong&gt;front page, address page, or any observation page if any&lt;\\/strong&gt;) need to be provided at the time of booking along with the initial payment, if you do not provide the same the booking process will be delayed.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any verbal conversations regarding the Trip\\/Package will be considered null &amp;amp; void. Only written communications over mail or WhatsApp will be accepted.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;As per the new RBI guidelines, PANCARD IS MANDATORY for every Booking &amp;amp; Travel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment&amp;nbsp;to be made for Domestic packages 04 weeks&amp;nbsp;before departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100% payment to be made for International packages 04 weeks before departure date.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:c0392b&quot;&gt;Travel Vouchers&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Travel vouchers will be provided within 3 working days of receipt of Final Payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Itinerary&amp;nbsp;provided at the time of booking is &lt;strong&gt;Tentative&lt;\\/strong&gt;&amp;nbsp;and final the itinerary will be shared on arrival at your destination as it all depends on the final discretion of our local counterpart at that particular destination.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;&lt;strong&gt;Airline:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All cancellation and date change of Air tickets is based on the airline policy and will be shared at the time of the requirement.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Land Part:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 working days or more prior to the date of departure of the Tour &amp;amp;ndash No Cancellation for the Tour Price until or unless specified NON REFUNDABLE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 35 to 31 working days prior to the date of departure of the Tour. - 25% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 30 to 16 working days prior to the date of departure of the Tour. - 50% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Clear 15 to 08 working days prior to the date of departure of the Tour. - 75% OF THE TOUR PRICE&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Less than 07 clear working days prior to the date of departure of the Tour. - 100% of Tour Cost&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;I Need Trip Cancellation Charges&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;INR 7000\\/- per Adult \\/ Child (&amp;nbsp;&lt;strong&gt;In case of 2 to 6 Travellers&lt;\\/strong&gt;&amp;nbsp;)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Incase of Group Bookings (&lt;strong&gt;&amp;nbsp;i.e. 6 or more Travellers&lt;\\/strong&gt;&amp;nbsp;), Cancellation charges will be at the sole discretion of I Need Trip.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\",\"Conditions\":\"&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;As per new guidelines TCS &amp;nbsp;5% is mandatory on Tour packages with effect 01 October 2020.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Interinternational&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Extras in hotels&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Damages caused by guest&amp;nbsp;or vehicle&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Optional extra tours&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;OPTIONAL TOURS &amp;amp; SHOPPING;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Optional tours (aciviies) like Bosphorus Dinner Cruise, Hot Air Balloon, Turkish night, Turkish Bath, etc will be sold on the ground by our guide.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;In our tour, we are taking our guests to shopping. Guests do not have to buy anything but shopping is part of our tour.&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seats and Meals are not included in the airfare&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary (Highly recommended&amp;nbsp;by I Need Trip)&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 nights hotel in Istanbul&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights hotel in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 nights hotel in Antalya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;7 days buffet breakfast&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 days of Indian lunch&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1-day local lunch&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1-day Indian Dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5 days local dinner&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;Airport transfers and transportation&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;All entrance fees mentioned in the itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;English speaking tour guides XQ7033 \\/\\/ AYT-IST TK2441)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;1.5 hours Bosphorus Cruise&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;2 days tour in Istanbul&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;2-day tour in Cappadocia&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;1-day tour in Antalya&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1-day tour in Pamukkale&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&amp;nbsp;(until or unless specified Private in the itinerary)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Regular Check-in time is 15.00 hours and Check-out time is&amp;nbsp;12.00 noon&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Early check-in and late check-out will be subject to availability and at the discretion of the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above is just a quotation, we are not holding any rooms as of now for the below query.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Twin beds are subject to availability.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rooms and rates will be subject to availability at the time of booking process.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Above quotes based on the normal ticket prices of tours , the rate will be subject to change if we receive any revise rate at later stage.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;&lt;strong&gt;Vision&lt;\\/strong&gt;: We look beyond the horizon to anticipate change. We are passionate about shaping the next generation of travel &amp;amp; tourism.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Innovation&lt;\\/strong&gt;: We are creative, and we love innovating new working ways. With a genuinely talented group of people, great products, open minds and clients with complex and unique challenges, we always try to do something new.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Service&lt;\\/strong&gt;: Travel is not just about technology and systems. It is what we do for people with them that count. Simply put, we like helping people whether they are colleagues, clients or partners.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Integrity&lt;\\/strong&gt;: We deliver what we promise, and only promise what we can deliver. We do what we say with warmth, humor, and a great deal of thought. (That is why people enjoy working with us!)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Teamwork&lt;\\/strong&gt;: We are natural partners with our clients, colleagues, and our community, and we are&amp;nbsp;at our best when working together to produce extraordinary results.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Strength&lt;\\/strong&gt;: We aim to always exceed our financial goals and the expectations of our clients, our colleagues and our shareholders. We build our human resources by giving exciting opportunities to our own people, and bringing aboard new people whose skills enhance and expand our already strong base. We are committed to growing our global footprint together with our customers.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"530022\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[530022],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"530023\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[530023],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530024\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[530024],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"530025\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[530025],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530026\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[530026],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530027\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[530027],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"530028\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[530028],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530029\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[530029],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530030\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[530030],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"530031\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[530031],\"Remark\":[\"\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"QuadPrice\":false,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"6000\":{\"CityName\":\"Chennai\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"14323\":{\"CityName\":\"Kolkata\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"12538\":{\"CityName\":\"Hyderabad\",\"FromDate\":{\"20240503\":{\"FromDate\":\"2024-05-03\",\"FromDateDMY\":\"03\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240517\":{\"FromDate\":\"2024-05-17\",\"FromDateDMY\":\"17\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240531\":{\"FromDate\":\"2024-05-31\",\"FromDateDMY\":\"31\\/05\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240607\":{\"FromDate\":\"2024-06-07\",\"FromDateDMY\":\"07\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240621\":{\"FromDate\":\"2024-06-21\",\"FromDateDMY\":\"21\\/06\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240705\":{\"FromDate\":\"2024-07-05\",\"FromDateDMY\":\"05\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240719\":{\"FromDate\":\"2024-07-19\",\"FromDateDMY\":\"19\\/07\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240802\":{\"FromDate\":\"2024-08-02\",\"FromDateDMY\":\"02\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240816\":{\"FromDate\":\"2024-08-16\",\"FromDateDMY\":\"16\\/08\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240906\":{\"FromDate\":\"2024-09-06\",\"FromDateDMY\":\"06\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20240920\":{\"FromDate\":\"2024-09-20\",\"FromDateDMY\":\"20\\/09\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241004\":{\"FromDate\":\"2024-10-04\",\"FromDateDMY\":\"04\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20241018\":{\"FromDate\":\"2024-10-18\",\"FromDateDMY\":\"18\\/10\\/2024\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}},\"bookingvalidityDay\":0,\"eventarray\":[]}}','Istanbul,Cappadocia,Antalya','Istanbul,Central Asia,Turkey,Eurasia,Cappadocia,Antalya',NULL,'12905,5094,1151',94995,98895,7,NULL,NULL,NULL,2,'',0,'2024-03-06 00:00:00','2024-10-18 00:00:00','2024-10-18 00:00:00',3,'Turkey','222','2024-03-06 13:29:06','2024-03-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'amazing-turkiye-tour',NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tb_tbb2c_packages_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_traavelplan`
--

DROP TABLE IF EXISTS `tb_traavelplan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan` (
  `TPSysId` int NOT NULL AUTO_INCREMENT,
  `code` varchar(256) NOT NULL,
  `MasterTpSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `UserSysId` int NOT NULL,
  `CustomerSysId` int NOT NULL,
  `StartDate` date NOT NULL,
  `StartCityId` int NOT NULL,
  `StartCity` varchar(36) NOT NULL,
  `EndCityId` int NOT NULL,
  `EndCity` varchar(36) NOT NULL,
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfant` int NOT NULL,
  `StartContId` int NOT NULL,
  `EndContId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `CreateDate` datetime NOT NULL,
  `QueryStatus` varchar(250) NOT NULL,
  `RM` varchar(100) NOT NULL,
  `Cost` decimal(10,0) NOT NULL,
  `roomJsonInfo` varchar(500) NOT NULL,
  `remark` varchar(500) NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `query_type` enum('1','0') NOT NULL DEFAULT '1',
  `packageName` varchar(256) NOT NULL,
  `noofNights` int NOT NULL DEFAULT '0',
  `Destinations` varchar(500) NOT NULL,
  `IsCustEdit` enum('1','0') NOT NULL DEFAULT '0',
  `PlanType` int NOT NULL DEFAULT (5),
  PRIMARY KEY (`TPSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan`
--

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

--
-- Table structure for table `tb_traavelplan_destination`
--

DROP TABLE IF EXISTS `tb_traavelplan_destination`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_destination` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `Seq` int NOT NULL,
  `NoDay` int NOT NULL,
  `CitySysId` int NOT NULL,
  `destName` varchar(100) NOT NULL,
  `StartDate` date NOT NULL,
  `EndDate` date NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_destination`
--

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

--
-- Table structure for table `tb_traavelplan_hotel_selected`
--

DROP TABLE IF EXISTS `tb_traavelplan_hotel_selected`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_hotel_selected` (
  `hotelSId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `optionNo` int NOT NULL,
  `selected_hotelId` int NOT NULL,
  `price` int NOT NULL,
  `DestinationId` int NOT NULL,
  `RoomTypeId` int NOT NULL,
  `MealPlanId` int NOT NULL,
  `Adult` int NOT NULL,
  `AdultExtraBed` int NOT NULL,
  `ChildWithBed` int NOT NULL,
  `ChildWithOutBed` int NOT NULL,
  `Infent` int NOT NULL,
  `IsSelected` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `noofNights` int NOT NULL,
  `destSeq` int NOT NULL,
  PRIMARY KEY (`hotelSId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_hotel_selected`
--

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

--
-- Table structure for table `tb_traavelplan_itinerary`
--

DROP TABLE IF EXISTS `tb_traavelplan_itinerary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_itinerary` (
  `it_Id` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `it_day` varchar(100) NOT NULL,
  `it_title_id` int NOT NULL DEFAULT '0',
  `it_title` varchar(100) DEFAULT NULL,
  `it_description` text,
  `cityId` int DEFAULT NULL,
  `CityName` varchar(100) DEFAULT NULL,
  `contId` int DEFAULT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`it_Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_itinerary`
--

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

--
-- Table structure for table `tb_traavelplan_meals`
--

DROP TABLE IF EXISTS `tb_traavelplan_meals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_meals` (
  `mid` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `MealSysId` int NOT NULL,
  `MealName` varchar(200) DEFAULT NULL,
  `RestaurantId` int NOT NULL DEFAULT '0',
  `AreaSysId` int NOT NULL,
  `CitySysId` int NOT NULL,
  `day` int NOT NULL,
  `mealsCategory` int NOT NULL,
  `mealsType` int NOT NULL DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `markup` int DEFAULT NULL,
  `supplierId` int DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `AdultCost` int NOT NULL DEFAULT '0',
  `AdultMarkup` int NOT NULL DEFAULT '0',
  `ChildCost` int NOT NULL DEFAULT '0',
  `ChildMarkup` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`mid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_meals`
--

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

--
-- Table structure for table `tb_traavelplan_sightseeings`
--

DROP TABLE IF EXISTS `tb_traavelplan_sightseeings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_sightseeings` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `SSSysId` int NOT NULL,
  `gtxPkgId` int NOT NULL DEFAULT '0',
  `Title` varchar(500) NOT NULL,
  `CitySysId` int NOT NULL,
  `day` int NOT NULL,
  `Description` text,
  `Image` varchar(256) DEFAULT NULL,
  `sightseeingType` int NOT NULL,
  `priceType` int NOT NULL DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_sightseeings`
--

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

--
-- Table structure for table `tb_traavelplan_tnc`
--

DROP TABLE IF EXISTS `tb_traavelplan_tnc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_tnc` (
  `tncId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `inclusion` text NOT NULL,
  `exclusion` text NOT NULL,
  `tnc` text NOT NULL,
  `travel_basics` text NOT NULL,
  `booking_term` text NOT NULL,
  `why_choose_us` text NOT NULL,
  `cancellation_policy` text NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`tncId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_tnc`
--

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

--
-- Table structure for table `tb_traavelplan_tnc_master`
--

DROP TABLE IF EXISTS `tb_traavelplan_tnc_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_tnc_master` (
  `travTncId` int NOT NULL AUTO_INCREMENT,
  `agencySysId` int NOT NULL,
  `inclusion` text NOT NULL,
  `exclusion` text NOT NULL,
  `tnc` text NOT NULL,
  `travel_basics` text NOT NULL,
  `booking_term` text NOT NULL,
  `why_choose_us` text NOT NULL,
  `cancellation_policy` text NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`travTncId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_tnc_master`
--

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

--
-- Table structure for table `tb_traavelplan_vehicles`
--

DROP TABLE IF EXISTS `tb_traavelplan_vehicles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_vehicles` (
  `vehicleId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `VehName` varchar(255) NOT NULL,
  `RouteName` varchar(255) NOT NULL,
  `Capacity` int NOT NULL,
  `Noofnights` int NOT NULL,
  `count_cost` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfent` int NOT NULL,
  `RouteVechSysId` int NOT NULL,
  `VehicleSysId` int NOT NULL,
  `StartCitySysId` int NOT NULL,
  `DestCityId` int NOT NULL,
  `VehSysId` int NOT NULL,
  `SEQ` int NOT NULL,
  `CityName` varchar(64) NOT NULL,
  `EndCityName` varchar(64) NOT NULL,
  `RouteSysId` int NOT NULL,
  `TransType` varchar(255) NOT NULL,
  `TransTypeCat` varchar(255) NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `selected_quantity` int NOT NULL,
  PRIMARY KEY (`vehicleId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_vehicles`
--

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

--
-- Table structure for table `tb_transport_route`
--

DROP TABLE IF EXISTS `tb_transport_route`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_transport_route` (
  `transport_route_id` int NOT NULL AUTO_INCREMENT,
  `RouteSysId` bigint DEFAULT NULL,
  `RouteName` varchar(250) DEFAULT NULL,
  `SupplierSysId` bigint DEFAULT NULL,
  `Title` varchar(250) DEFAULT NULL,
  `Description` varchar(500) DEFAULT NULL,
  `StartCitySysId` bigint DEFAULT NULL,
  `Noofnights` int DEFAULT NULL,
  `CityName` varchar(50) DEFAULT NULL,
  `EndCityName` varchar(50) DEFAULT NULL,
  `category` text,
  `cityIncludes` text,
  `SSIncludes` text,
  `EndCitySysId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`transport_route_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_transport_route`
--

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

--
-- Table structure for table `tb_travelplan_hotel`
--

DROP TABLE IF EXISTS `tb_travelplan_hotel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_travelplan_hotel` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `HotelId` int NOT NULL,
  `hotelName` varchar(256) NOT NULL,
  `DestinationId` int NOT NULL,
  `RoomTypeId` int NOT NULL,
  `MealPlanId` int NOT NULL,
  `Adult` int NOT NULL,
  `AdultExtraBed` int NOT NULL,
  `ChildWithBed` int NOT NULL,
  `ChildWithOutBed` int NOT NULL,
  `Infent` int NOT NULL,
  `IsSelected` enum('0','1') NOT NULL,
  `TpsysId` int NOT NULL,
  `destsysId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `noofNights` int NOT NULL,
  `destSeq` int NOT NULL,
  `star` int NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_travelplan_hotel`
--

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

--
-- Table structure for table `tb_whychooseus`
--

DROP TABLE IF EXISTS `tb_whychooseus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_whychooseus` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `status` enum('1','0') NOT NULL,
  `isDisplayOnHome` enum('1','0') NOT NULL,
  `image` varchar(200) NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_whychooseus`
--

LOCK TABLES `tb_whychooseus` WRITE;
/*!40000 ALTER TABLE `tb_whychooseus` DISABLE KEYS */;
INSERT INTO `tb_whychooseus` VALUES (12,'Competitive Pricing','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','12_1672386029.png','0'),(13,'Worldwide Coverage','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','13_1672400344.png','0'),(14,'Fast Booking','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','14_1672400333.png','0'),(15,'Guided Tours','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','15_1672400290.png','0');
/*!40000 ALTER TABLE `tb_whychooseus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_about_agency`
--

DROP TABLE IF EXISTS `tbl_about_agency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_agency` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `icon` varchar(256) NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_agency`
--

LOCK TABLES `tbl_about_agency` WRITE;
/*!40000 ALTER TABLE `tbl_about_agency` DISABLE KEYS */;
INSERT INTO `tbl_about_agency` VALUES (32,'Test','1618391112.jpg','','0','1','1');
/*!40000 ALTER TABLE `tbl_about_agency` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_about_indoasia`
--

DROP TABLE IF EXISTS `tbl_about_indoasia`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_indoasia` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_indoasia`
--

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

--
-- Table structure for table `tbl_about_yit`
--

DROP TABLE IF EXISTS `tbl_about_yit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_yit` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_yit`
--

LOCK TABLES `tbl_about_yit` WRITE;
/*!40000 ALTER TABLE `tbl_about_yit` DISABLE KEYS */;
INSERT INTO `tbl_about_yit` VALUES (1,'Offer 1','1579094359.png','','',0,'2020-01-15 18:49:19','0000-00-00 00:00:00',1,1);
/*!40000 ALTER TABLE `tbl_about_yit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_accolades_awards`
--

DROP TABLE IF EXISTS `tbl_accolades_awards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_accolades_awards` (
  `AwardId` int NOT NULL AUTO_INCREMENT,
  `AwardTitle` varchar(100) NOT NULL,
  `AwardImage` varchar(256) NOT NULL,
  `AwardDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`AwardId`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_accolades_awards`
--

LOCK TABLES `tbl_accolades_awards` WRITE;
/*!40000 ALTER TABLE `tbl_accolades_awards` DISABLE KEYS */;
INSERT INTO `tbl_accolades_awards` VALUES (1,'sddsfdsfdfs cvvvvvvvvvvvvvvv','1554097652.jpg','<p>sfdsdfsdfdfs</p>\r\n','2019-04-01 11:02:45','2019-04-01 11:17:40','1','1'),(2,'dfgdgdf','1554097637.jpg','<p>gdfgdfgdfg</p>\r\n','2019-04-01 11:03:02','2019-04-01 11:17:17','1','0'),(3,'sdfsdfsdf','1560584250.png','<p>sdfsdfsdf</p>','2019-04-01 11:17:25','2019-06-15 13:07:30','1','0'),(4,'test by m','1560584270.jpg','','2019-06-15 13:07:50','0000-00-00 00:00:00','1','0');
/*!40000 ALTER TABLE `tbl_accolades_awards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_accreditations_client`
--

DROP TABLE IF EXISTS `tbl_accreditations_client`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_accreditations_client` (
  `ClientId` int NOT NULL AUTO_INCREMENT,
  `AccreditationsTitle` text NOT NULL,
  `AccreditationsImage` varchar(100) NOT NULL,
  `ClientImages` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`ClientId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_accreditations_client`
--

LOCK TABLES `tbl_accreditations_client` WRITE;
/*!40000 ALTER TABLE `tbl_accreditations_client` DISABLE KEYS */;
INSERT INTO `tbl_accreditations_client` VALUES (1,'YIT is nationally recognized tour operator and travel agents with recognition from National and International associations such as Government of India (MOTGOI), IATO, ADTOI, ASTA, PATA, Eco Tourism, SITE (applied for)..','1554118185.jpg','1561705221_0.png,1561705221_1.jpg,1561705459_0.jpg,1561705476_0.jpg,1561705476_1.jpg','2019-06-28 12:34:36','1','0');
/*!40000 ALTER TABLE `tbl_accreditations_client` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_agent_query`
--

DROP TABLE IF EXISTS `tbl_agent_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_agent_query` (
  `queryId` int NOT NULL AUTO_INCREMENT,
  `code` text NOT NULL,
  `MasterTpSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `UserSysId` int NOT NULL,
  `StartDate` datetime NOT NULL,
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfant` int NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `packageName` varchar(256) NOT NULL,
  `noofNights` int NOT NULL,
  `Destination` varchar(256) NOT NULL,
  PRIMARY KEY (`queryId`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_agent_query`
--

LOCK TABLES `tbl_agent_query` WRITE;
/*!40000 ALTER TABLE `tbl_agent_query` DISABLE KEYS */;
INSERT INTO `tbl_agent_query` VALUES (1,'',0,37,453,'0000-00-00 00:00:00',2,0,0,'1','0','2018-12-10 18:10:50','2018-12-10 18:10:50','Amazing Ladakh',7,''),(2,'',0,37,453,'2018-12-17 00:00:00',3,1,0,'1','0','2018-12-10 18:23:02','2018-12-10 18:23:02','Amazing Ladakh',7,'Leh'),(3,'',0,37,453,'2018-12-17 00:00:00',3,0,0,'1','0','2018-12-11 16:40:30','2018-12-11 16:40:30','Test Package Hellogtx',5,'Leh'),(4,'',0,37,453,'2018-12-12 00:00:00',3,1,0,'1','0','2018-12-11 16:42:04','2018-12-11 16:42:04','Test Package Hellogtx',5,'Leh'),(5,'',0,37,453,'2018-12-12 00:00:00',2,0,0,'1','0','2018-12-11 16:47:11','2018-12-11 16:47:11','Test Package Hellogtx',5,'Leh'),(6,'',0,37,453,'2018-12-17 00:00:00',2,0,0,'1','0','2018-12-11 16:48:13','2018-12-11 16:48:13','Test Package Hellogtx',5,'Leh'),(7,'',0,37,453,'2019-01-11 00:00:00',2,0,0,'1','0','2018-12-11 16:51:51','2018-12-11 16:51:51','Test Package Hellogtx',5,'Leh'),(8,'',0,37,453,'2018-11-11 00:00:00',1,0,0,'1','0','2018-12-11 16:54:45','2018-12-11 16:54:45','Test Package Hellogtx',5,'Leh'),(9,'',0,37,453,'2018-12-17 00:00:00',1,0,0,'1','0','2018-12-11 17:00:24','2018-12-11 17:00:24','Test Package Hellogtx',5,'Leh'),(10,'',0,37,453,'2018-12-17 00:00:00',1,0,0,'1','0','2018-12-11 17:00:33','2018-12-11 17:00:33','Test Package Hellogtx',5,'Leh'),(11,'',0,37,453,'2019-01-11 00:00:00',2,0,0,'1','0','2018-12-11 17:33:32','2018-12-11 17:33:32','Test Package Hellogtx',5,'Leh'),(12,'',0,37,453,'2018-12-17 00:00:00',2,0,0,'1','0','2018-12-11 17:34:24','2018-12-11 17:34:24','Test Package Hellogtx',5,'Leh'),(13,'',0,37,453,'2018-12-17 00:00:00',2,0,0,'1','0','2018-12-11 17:34:35','2018-12-11 17:34:35','Test Package Hellogtx',5,'Leh'),(14,'',0,37,453,'2018-12-28 00:00:00',2,0,0,'1','0','2018-12-27 17:38:12','2018-12-27 17:38:12','Test Package Hellogtx',5,'Leh');
/*!40000 ALTER TABLE `tbl_agent_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_airline_support`
--

DROP TABLE IF EXISTS `tbl_airline_support`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_airline_support` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `airlinecode` varchar(20) NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `address1` varchar(250) DEFAULT NULL,
  `address2` varchar(250) DEFAULT NULL,
  `phoneno` varchar(50) DEFAULT NULL,
  `mobileno` varchar(50) DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_airline_support`
--

LOCK TABLES `tbl_airline_support` WRITE;
/*!40000 ALTER TABLE `tbl_airline_support` DISABLE KEYS */;
INSERT INTO `tbl_airline_support` VALUES (32,'9H','','<p>dsfsdfs</p>\r\n','<p>ewrewtwte</p>\r\n','999988','77777777777','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(33,'9W','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(34,'AA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(35,'AC','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(36,'AF','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(37,'AI','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(38,'AK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(39,'AY','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(40,'AZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(41,'B3','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(42,'BA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(43,'CO','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(44,'CX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(45,'CZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(46,'D7','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(47,'DL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(48,'DN','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(49,'EK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(50,'ET','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(51,'EY','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(52,'FD','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(53,'FI','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(54,'FR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(55,'FZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(56,'G8','G8.png','C-1, Wadia International Centre (WIC), Pandurang Budhkar Marg, Worli, Mumbai 400 025, India','C-1, Wadia International Centre (WIC), Pandurang Budhkar Marg, Worli, Mumbai 400 025, India','022 6741 0000','022 6868 6000','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(57,'G9','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(58,'GF','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(59,'H1','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(60,'HQ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(61,'I5','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(62,'I7','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(63,'IC','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(64,'IT','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(65,'IX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(66,'J9','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(67,'JL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(68,'KC','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(69,'KL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(70,'KU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(71,'LB','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(72,'LH','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(73,'LX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(74,'MH','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(75,'MU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(76,'noimage','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(77,'OS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(78,'PG','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(79,'PR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(80,'PS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(81,'QF','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(82,'QR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(83,'QZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(84,'RA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(85,'SG','','A-74, Sweetball Business Center BAY, 108, Sector 63, Noida, Uttar Pradesh 201301','','222222222','44444444','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(86,'SK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(87,'SN','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(88,'SQ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(89,'SU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(90,'SV','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(91,'TG','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(92,'TK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(93,'U2','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(94,'UA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(95,'UK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(96,'UL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(97,'VS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(98,'WY','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(99,'Z5','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(100,'ZS','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(101,'6E','6E.png','A-74, Sweetball Business Center BAY, 108, Sector 63, Noida, Uttar Pradesh 201301','','2354545454','5555555555','1','0','1','2021-12-10 07:15:55','2021-12-10 07:15:55'),(102,'AccesRail_1516864292','','','','','','1','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43'),(103,'royal_air_cambodge','','','','','','1','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43'),(104,'zuliana_de_aviacian','','','','','','1','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43');
/*!40000 ALTER TABLE `tbl_airline_support` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_all_continent`
--

DROP TABLE IF EXISTS `tbl_all_continent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_all_continent` (
  `ContinentId` int NOT NULL AUTO_INCREMENT,
  `ContinentTitle` varchar(256) NOT NULL,
  `ContinentLabel` varchar(256) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `UpdateDate` datetime NOT NULL,
  `orderOfAppearance` int NOT NULL,
  PRIMARY KEY (`ContinentId`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_all_continent`
--

LOCK TABLES `tbl_all_continent` WRITE;
/*!40000 ALTER TABLE `tbl_all_continent` DISABLE KEYS */;
INSERT INTO `tbl_all_continent` VALUES (1,'Middle East','middle-east','1','2020-01-27 17:16:14',5),(2,'Asia','asia','1','2019-10-04 11:59:03',4),(3,'Europe','europe','1','2019-04-15 17:37:27',3),(4,'India','india','1','2020-02-12 16:33:30',1),(5,'North America','north-america','1','2020-01-31 13:19:37',8),(6,'Eurasia','eurasia','1','2020-01-28 13:02:55',6),(7,'United Kingdom','united-kingdom','1','2020-01-27 17:15:48',2),(8,'Oceania','oceania','1','2020-03-19 18:24:39',7);
/*!40000 ALTER TABLE `tbl_all_continent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_available_destination`
--

DROP TABLE IF EXISTS `tbl_available_destination`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_available_destination` (
  `id` int NOT NULL AUTO_INCREMENT,
  `source` varchar(100) NOT NULL,
  `Destination` varchar(100) DEFAULT NULL,
  `Origin` varchar(100) DEFAULT NULL,
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_available_destination`
--

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

--
-- Table structure for table `tbl_block`
--

DROP TABLE IF EXISTS `tbl_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_block` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `block_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `block_description` longtext NOT NULL,
  `url_title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  PRIMARY KEY (`sid`),
  UNIQUE KEY `sid` (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_block`
--

LOCK TABLES `tbl_block` WRITE;
/*!40000 ALTER TABLE `tbl_block` DISABLE KEYS */;
INSERT INTO `tbl_block` VALUES (1,'LAST MINUTE DEALS','','<p>Save up to 25% plus an extra US$50 with Mastercard</p>\r\n','50+ TRIP DEALS','ertrtu1','1_1556258977.jpg','Activate','2019-04-24 16:27:23','0000-00-00 00:00:00'),(2,'FIX DEPARTURES DEALS','','<p>Save up to 25% plus an extra US$50 with Mastercard</p>\r\n','STARTING FROM US$783','ertrtu2','_1556260758.jpg','Activate','2019-04-24 19:16:04','0000-00-00 00:00:00'),(3,'SUMMER IN INDIA','','<p>Book now to score the best deal on your 2019 trip</p>\r\n','DREAMING OF A INDIA SUMMER?','ertrtusdfgsdfg3','3_1556262005.jpg','Activate','2019-04-24 19:16:04','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `tbl_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_blog`
--

DROP TABLE IF EXISTS `tbl_blog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_blog` (
  `BlogId` int NOT NULL AUTO_INCREMENT,
  `BlogTitle` varchar(255) NOT NULL,
  `BlogIdentifier` varchar(256) NOT NULL,
  `BlogCity` varchar(100) NOT NULL,
  `BlogCityId` varchar(100) NOT NULL,
  `BlogDate` date NOT NULL,
  `PostedBy` varchar(255) NOT NULL,
  `BlogImage` varchar(255) NOT NULL,
  `BlogPostByImage` varchar(256) NOT NULL,
  `BlogDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint DEFAULT '0',
  `isMarkForDel` tinyint DEFAULT '0',
  `keyword` text,
  `description` text,
  `metatag` text,
  `selectedPackages` varchar(500) NOT NULL,
  PRIMARY KEY (`BlogId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_blog`
--

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

--
-- Table structure for table `tbl_branches`
--

DROP TABLE IF EXISTS `tbl_branches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_branches` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `office_address` varchar(250) NOT NULL,
  `office_address_name` varchar(250) NOT NULL,
  `branch_mailid` varchar(25) NOT NULL,
  `address` varchar(255) NOT NULL,
  `image` varchar(200) NOT NULL,
  `website_link` varchar(100) NOT NULL,
  `toll_free_name` varchar(100) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`DesSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_branches`
--

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

--
-- Table structure for table `tbl_car_booking`
--

DROP TABLE IF EXISTS `tbl_car_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_booking` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `Trip_Id` varchar(255) NOT NULL,
  `TravelDate` date NOT NULL,
  `BookingId` varchar(120) NOT NULL,
  `status` varchar(50) NOT NULL,
  `API_Response` longtext NOT NULL,
  `GUID` varchar(255) NOT NULL,
  `error` varchar(150) DEFAULT NULL,
  `PaymentStatus` smallint NOT NULL,
  `error_Message` varchar(50) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `phone` varchar(50) NOT NULL,
  `customerData` text NOT NULL,
  `requestdata` text NOT NULL,
  `ticketStatus` varchar(150) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_car_booking`
--

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

--
-- Table structure for table `tbl_comments`
--

DROP TABLE IF EXISTS `tbl_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_comments` (
  `commentId` int NOT NULL AUTO_INCREMENT,
  `blogId` int NOT NULL,
  `name` varchar(55) NOT NULL,
  `emailId` varchar(55) NOT NULL,
  `website` varchar(256) NOT NULL,
  `comment` text NOT NULL,
  `status` tinyint NOT NULL,
  `createDate` datetime NOT NULL,
  PRIMARY KEY (`commentId`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_comments`
--

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

--
-- Table structure for table `tbl_committees_members`
--

DROP TABLE IF EXISTS `tbl_committees_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_committees_members` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(500) NOT NULL,
  `designation` varchar(256) NOT NULL,
  `companyName` varchar(500) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phone` varchar(50) NOT NULL,
  `address` text NOT NULL,
  `pageType` int NOT NULL,
  `image` varchar(500) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_committees_members`
--

LOCK TABLES `tbl_committees_members` WRITE;
/*!40000 ALTER TABLE `tbl_committees_members` DISABLE KEYS */;
INSERT INTO `tbl_committees_members` VALUES (1,'Mangal','dev','HelloGTX','mangal@catpl.co.in','7727052691','noida',2,'1565684924.jpg','1','0');
/*!40000 ALTER TABLE `tbl_committees_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_common_box`
--

DROP TABLE IF EXISTS `tbl_common_box`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_common_box` (
  `common_id` int NOT NULL AUTO_INCREMENT,
  `common_content_header_1` text NOT NULL,
  `common_content_footer_1` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `metaTitle` varchar(500) NOT NULL,
  `Keyword` varchar(500) NOT NULL,
  `Description` varchar(500) NOT NULL,
  `home_content_script` text NOT NULL,
  `common_content_header_2` text NOT NULL,
  `common_content_header_3` text NOT NULL,
  `common_content_footer_2` text NOT NULL,
  `common_content_footer_3` text NOT NULL,
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `Title` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`common_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_common_box`
--

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

--
-- Table structure for table `tbl_contactus`
--

DROP TABLE IF EXISTS `tbl_contactus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_contactus` (
  `sid` bigint NOT NULL AUTO_INCREMENT,
  `name` varchar(16) NOT NULL,
  `email` varchar(32) NOT NULL,
  `website` varchar(64) NOT NULL,
  `subject` varchar(64) NOT NULL,
  `message` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_contactus`
--

LOCK TABLES `tbl_contactus` WRITE;
/*!40000 ALTER TABLE `tbl_contactus` DISABLE KEYS */;
INSERT INTO `tbl_contactus` VALUES (1,'Prashant','prashant.gupta11687@gmail.com','google.com','Mobile App Devel','test','1'),(2,'ranvir','ranvir@catpl.co.in','google search','test subject','theisa la dsfjk lakdjfl kjsadlkfj laskdjfl sadf asdf sadf','1');
/*!40000 ALTER TABLE `tbl_contactus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_countries`
--

DROP TABLE IF EXISTS `tbl_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_countries` (
  `contSysId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `seotitle` varchar(256) NOT NULL,
  `label` varchar(256) NOT NULL,
  `countryId` int NOT NULL,
  `image` varchar(256) NOT NULL,
  `region_id` int NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `sightseeingIds` text,
  `description` text,
  `otherDescription` text,
  `similarDestinations` varchar(256) DEFAULT NULL,
  `FAQ` text,
  `whyUseUs` text,
  `topTravelBlog` text,
  `metaTitle` varchar(500) DEFAULT NULL,
  `metaKeyword` text,
  `metaDescription` text,
  `meta_header` varchar(2000) DEFAULT NULL,
  `meta_footer` varchar(2000) DEFAULT NULL,
  `bannerImage` varchar(256) DEFAULT NULL,
  `popularPackages` varchar(500) DEFAULT NULL,
  `displayOnHeader` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `startingPrice` varchar(256) DEFAULT NULL,
  `DestDescription` varchar(500) DEFAULT NULL,
  `destinationImage` varchar(256) DEFAULT NULL,
  `packageListTitle` varchar(500) DEFAULT NULL,
  `packageListKeyword` varchar(500) DEFAULT NULL,
  `packageListDescription` varchar(500) DEFAULT NULL,
  `package_list_header` text,
  `package_list_footer` text,
  `displayOnVisa` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`contSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_countries`
--

LOCK TABLES `tbl_countries` WRITE;
/*!40000 ALTER TABLE `tbl_countries` DISABLE KEYS */;
INSERT INTO `tbl_countries` VALUES (1,'United Arab Emirates','united-arab-emirates','United Arab Emirates',228,'228_1690005571.jpg',0,'2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,'<div>The United Arab Emirates (UAE), a land of modern marvels and rich traditions, offers travelers a blend of futuristic cities, ancient heritage, and luxurious experiences. Whether you\'re an urban explorer, a history enthusiast, a shopaholic, or a desert adventurer, the UAE has something to captivate every traveler\'s heart.<br></div><div><b>UAE: A Land of Contrasts and Modern Wonders</b></div><div>As you embark on your journey through the UAE, prepare to be amazed by its striking contrasts and modern marvels.</div><div><b>Futuristic Skylines&nbsp;</b></div><div>The UAE is home to iconic skyscrapers, including the Burj Khalifa in Dubai, the world\'s tallest building. Explore the futuristic cityscapes of Dubai and Abu Dhabi, where innovation and architecture converge.</div><div><b>Rich Cultural Heritage</b></div><div>&nbsp;Discover the UAE\'s rich cultural heritage by visiting historical sites like Al Fahidi Historic Neighborhood in Dubai and Al Jahili Fort in Al Ain. Explore the traditions, art, and craftsmanship that have shaped the nation.</div><div><b>&nbsp;Luxury and Opulence&nbsp;</b></div><div>Indulge in luxury experiences, from world-class shopping in Abu Dhabi\'s malls to staying in lavish desert resorts. Experience the opulent lifestyle the UAE is renowned for.</div><div><b>Desert Adventures</b></div><div>&nbsp;Venture into the mesmerizing Arabian Desert and experience the thrill of dune bashing, camel riding, and starlit desert nights. Explore the unique landscapes of sand dunes and oases.</div><div><b>The Best Time to Visit the UAE</b></div><div>The ideal time to visit the UAE depends on your interests and the activities you wish to pursue.</div><div><b>Weather Considerations</b></div><div>&nbsp;The UAE experiences hot summers from June to September and milder winters from October to April. Consider your tolerance for high temperatures when planning your visit.</div><div><b>Festivals and Events</b></div><div>&nbsp;The UAE hosts various festivals and events throughout the year, such as the Dubai Shopping Festival, Abu Dhabi Festival, and cultural celebrations. Plan your trip to coincide with these vibrant occasions.</div><div><b>Top Destinations to Include in Your UAE Tour Package</b></div><div>The UAE offers a plethora of captivating destinations to explore. Here are some must-visit places to include in your tour package:</div><div><b>Dubai: The City of Superlatives</b></div><div>Explore Dubai\'s iconic landmarks, including the Burj Khalifa, Palm Jumeirah, and Dubai Mall. Enjoy world-class shopping, fine dining, and thrilling adventures.</div><div><b>Abu Dhabi: The Capital\'s Grandeur</b></div><div>&nbsp;Discover the grandeur of Abu Dhabi, with its magnificent Sheikh Zayed Grand Mosque, Yas Island, and cultural attractions like Qasr Al Hosn.</div><div><b>Sharjah: Art and Culture Hub&nbsp;</b></div><div>Explore Sharjah\'s cultural heritage by visiting museums, art galleries, and the historic Heart of Sharjah district.</div><div><b>Al Ain: Garden City Oasis&nbsp;</b></div><div>Visit Al Ain\'s lush gardens, Jebel Hafeet mountain, and heritage sites, offering a serene contrast to the bustling cities.</div><div><b>Fujairah: Coastal Charms</b></div><div>&nbsp;Enjoy Fujairah\'s beautiful beaches, historical forts, and outdoor adventures like snorkeling and diving.</div><div><b>Ras Al Khaimah: Natural Beauty</b></div><div>&nbsp;Experience the natural beauty of Ras Al Khaimah with its rugged mountains, desert dunes, and historical sites.</div><div><b>Experiencing Emirati Culture and Lifestyle</b></div><div>The UAE\'s culture is a fascinating blend of traditional Bedouin values and contemporary global influences.</div><div><b>Emirati Traditions</b></div><div>&nbsp;Learn about Emirati traditions, hospitality, and the importance of camel farming. Engage in cultural experiences to gain insights into local life.</div><div><b>Emirati Cuisine</b></div><div>&nbsp;Sample Emirati cuisine, including dishes like Al Harees and Al Machboos. Savor local flavors and spices that make UAE cuisine unique.</div><div><b>&nbsp;Arts and Entertainment</b></div><div>&nbsp;Explore the UAE\'s burgeoning arts and entertainment scene, with events, exhibitions, and performances that celebrate local and international talent.</div><div><b>UAE Tour Packages for Luxury Travelers</b></div><div>Indulge in the UAE\'s luxury offerings with tailor-made experiences for those seeking opulence.</div><div><b>Luxury Accommodations&nbsp;</b></div><div>Stay in lavish hotels and resorts, some featuring overwater villas and private beaches.</div><div><b>High-End Shopping</b></div><div>&nbsp;Embark on shopping sprees in designer boutiques and luxury malls, such as The Dubai Mall and Mall of the Emirates.</div><div><b>Fine Dining&nbsp;</b></div><div>Experience gourmet dining at Michelin-starred restaurants and dine with breathtaking views of city skylines and desert landscapes.</div><div><b>Private Tours and Experiences&nbsp;</b></div><div>Enjoy private tours of iconic attractions, spa treatments, and exclusive desert safaris in the comfort of personalized experiences.</div><div><b>UAE Tour Packages for Adventure Seekers</b></div><div>The UAE offers thrilling adventures for those seeking adrenaline-pumping experiences.</div><div><b>Desert Safaris&nbsp;</b></div><div>Embark on exhilarating desert safaris with dune bashing, sandboarding, and camel treks in the vast sand dunes.</div><div>FAQs about UAE Tour Packages<br></div><div>1. <b>Are UAE tour packages suitable for families? </b></div><div>&nbsp; &nbsp; Yes, UAE tour packages cater to families with diverse interests, offering a range of family-friendly activities and accommodations.</div><div>2&nbsp; C<b>an I customize my UAE tour package?</b></div><div>&nbsp; &nbsp; Many travel agencies offer customizable UAE tour packages, allowing you to personalize your itinerary based on your preferences and interests.</div><div>3. <b>What are the best cultural experiences in the UAE? </b></div><div>Immerse yourself in Emirati culture by visiting cultural sites like the Sheikh Zayed Grand Mosque and exploring traditional souks.</div><div>4. <b>Is travel insurance necessary for a UAE tour? </b></div><div>While not mandatory, travel insurance is recommended for any international trip, including a UAE tour, to provide financial protection against unforeseen events.</div><div>5. <b>How can I find the best deals on UAE tour packages?</b></div><div> To find the best deals, compare offerings from different travel agencies, consider off-peak travel times, and look for special promotions and discounts. Subscribing to travel deal newsletters can also help you stay informed about offers and deals.</div><div><br></div>  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Wonders of the United Arab Emirates','UAE travel United Arab Emirates tourism UAE tour packages Dubai attractions Abu Dhabi landmarks UAE cultural experiences Luxury travel UAE Desert safaris UAE Emirati cuisine Adventure in the UAE UAE heritage sites UAE travel tips Emirati culture UAE vacation Beaches in the UAE Shopping in Dubai Desert adventures UAE UAE travel itinerary UAE travel guide UAE travel agency','\"Discover the enchanting wonders of the United Arab Emirates (UAE) with our UAE travel guide. Explore Dubai\'s iconic skyscrapers, experience Abu Dhabi\'s cultural landmarks, and embark on thrilling desert safaris. Plan your dream vacation to the UAE with expert tips and tour packages.\"','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,'India','india','India',101,'101_1694173322.png',0,'2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">India, the land of contrasts and\r\ncolors, is a captivating destination that offers a kaleidoscope of experiences\r\nfor travelers. From the snow-capped Himalayan peaks in the north to the\r\nsun-soaked beaches of the south, India\'s vast expanse is a treasure trove of\r\nculture, history, and natural beauty waiting to be explored. India is a\r\nshopper\'s paradise. Explore bustling markets and bazaars filled with\r\nhandicrafts, textiles, jewelry, and spices. Haggling is an art in itself, and\r\nyou\'ll have the opportunity to take home unique souvenirs.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">A Journey of Contrasts. India is\r\na land of paradoxes, where tradition meets modernity, and chaos coexists with\r\nserenity. Be prepared for sensory overload as you navigate crowded streets, bustling\r\nmarkets, and serene temples.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Best places to visit &amp; things\r\nto do in India</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Before you embark on a vacation\r\nto India, we have rounded up the places to visit and the best things to do in\r\nthis diverse and enchanting country</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Taj Mahal, Agra</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">The Taj Mahal, one of the Seven\r\nWonders of the World, is a symbol of love and a masterpiece of architecture.\r\nVisit this iconic white marble mausoleum and witness its breathtaking beauty.</span><span style=\"font-size: 10.5pt;\">&nbsp;</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Jaipur, Rajasthan</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Explore the \"Pink City\"\r\nof Jaipur with its magnificent palaces, forts, and vibrant markets. Don\'t miss\r\nthe chance to visit the Amber Fort and Hawa Mahal.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>varanasi, Uttar Pradesh</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Experience the spiritual heart of\r\nIndia in Varanasi, where the sacred Ganges River flows. Witness mesmerizing\r\nGanga Aarti ceremonies and explore the city\'s ancient temples.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Kerala Backwaters</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Cruise through the serene Kerala\r\nbackwaters on a traditional houseboat and immerse yourself in the lush green\r\nlandscapes and tranquil waters.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Goa Beaches</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Relax on the beautiful beaches of\r\nGoa, known for their golden sands, crystal-clear waters, and vibrant nightlife.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Rishikesh, Uttarakhand</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">For adventure enthusiasts,\r\nRishikesh offers thrilling white-water rafting, trekking, and yoga retreats\r\namidst the stunning Himalayan foothills.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Khajuraho Temples, Madhya Pradesh</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Marvel at the intricate and\r\nerotic sculptures of the Khajuraho Temples, a UNESCO World Heritage Site known\r\nfor its stunning architecture.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Amritsar, Punjab</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Visit the Golden Temple in\r\nAmritsar, a spiritual and architectural marvel, and savor delicious Punjabi\r\ncuisine.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Ajanta and Ellora Caves,\r\nMaharashtra</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Explore the ancient rock-cut\r\ncaves of Ajanta and Ellora, showcasing remarkable Buddhist, Hindu, and Jain\r\nartwork.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>India\'s Wildlife Sanctuaries</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Embark on a wildlife adventure in\r\nIndia\'s national parks and sanctuaries, such as Ranthambhore, Jim Corbett, and\r\nKaziranga, to spot diverse flora and fauna.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Ganges River</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Take a serene boat ride on the\r\nsacred Ganges River in Varanasi, where you can witness spiritual rituals and\r\nimmerse yourself in the rich culture.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Hampi</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Discover the ruins of Hampi, a\r\nUNESCO World Heritage Site in Karnataka, and explore the ancient temples and\r\ncaptivating landscapes.</span><span style=\"font-size: 10.5pt;\">&nbsp;</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Coorg (Kodagu)</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Escape to Coorg, also known as\r\nthe \"Scotland of India,\" and experience lush coffee plantations,\r\nserene landscapes, and vibrant culture.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Mysore</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Explore the royal city of Mysore,\r\nknown for its majestic Mysore Palace and vibrant Dasara festival celebrations.</span><span style=\"font-size: 10.5pt;\">&nbsp;</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Gokarna</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Relax on the pristine beaches of\r\nGokarna, a serene coastal town in Karnataka, known for its laid-back\r\natmosphere.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Indian Cuisine</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Indulge in the diverse and\r\ndelicious Indian cuisine, from spicy curries to flavorful street food.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Yoga and Meditation Retreats</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Rejuvenate your mind and body\r\nwith yoga and meditation retreats in places like Rishikesh and Kerala.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Traditional Festivals</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Experience the vibrant festivals\r\nof India, such as Diwali, Holi, and Durga Puja, which are celebrated with\r\ngrandeur and enthusiasm.</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Luxurious Stays</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">India offers a range of luxurious\r\naccommodations, from palace hotels in Rajasthan to beachfront resorts in Goa,\r\nensuring a comfortable and lavish stay.</span><span style=\"font-size: 10.5pt;\">&nbsp;</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>Why India</b>?<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">India, with its diverse\r\nlandscapes and rich cultural heritage, offers a plethora of options for\r\ntravelers. Whether you are seeking adventure in the mountains, relaxation on\r\nthe beaches, or cultural immersion in historic cities, India has it all.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">From the snow-capped peaks of the\r\nHimalayas to the pristine beaches of Kerala, India\'s natural beauty is\r\nunparalleled. The country\'s cultural diversity is reflected in its festivals,\r\ntraditions, and cuisine, making it a truly unique destination.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">So, whether you are a solo\r\ntraveler, a couple on a romantic getaway, or a family looking for an enriching\r\nvacation, India has something to offer everyone.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\"><b>So how about honeymooning in\r\nIndia?</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">When you book an India honeymoon\r\npackage, you book a trip to a land that blends its local traditions with the\r\nallure of its history. India is a cultural center where you can meet people\r\nfrom diverse backgrounds.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Then, there is the natural beauty\r\nof India, from the lush landscapes of Kerala to the majestic mountains of\r\nHimachal Pradesh. Your India honeymoon package will be filled with romantic\r\nexperiences, from exploring historical monuments to enjoying serene moments in\r\npicturesque settings.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">For your honeymoon in India,\r\nthere are a lot of sensational activities filled into your India Honeymoon\r\nPackage, from visiting the iconic Taj Mahal to taking a romantic boat ride in\r\nUdaipur. India tour packages guarantee to help you create memories.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">For a romantic escape, consider a\r\nstay in a luxurious palace-turned-hotel in Rajasthan or a serene beachfront\r\nresort in Goa. The choices are endless!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">&nbsp;</span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\"><span style=\"font-size: 10.5pt;\">Choose India for your next\r\nvacation, and let this incredible country leave you with memories that will\r\nlast a lifetime.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;line-height:13.5pt\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><span lang=\"EN-GB\" style=\"font-size: 12pt; line-height: 115%; font-family: Georgia, serif;\">&nbsp;</span></p>       ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering India: A Tapestry of Wonders','India travel 	Taj Mahal visit Jaipur sightseeing 	Kerala backwaters  Goa beaches Himalayan trekking 	Khajuraho temples 	Varanasi spiritual experience 	Golden Temple Amritsar 	Indian cuisine Yoga retreats 	Diwali festival','','','','101_1694173322.png',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,'Mauritius','mauritius','Mauritius',139,'139_1690005480.jpg',0,'2021-02-26 12:00:38','2021-02-26 12:00:38','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">Beaches, sure, however what else could there have been to do in Mauritius? You would have seen the ideal palm fringed shoreline in numerous magazines, however a great deal of Mauritius\' other magical elements had been presented by the glossy brochures, to such an extent you will be astonished and enamored by this small island heaven from the second you look.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">For some individuals, the initial thing that comes into their mind about Mauritius is its beaches. Concealed toward the east of Madagascar, encompassed by the mild Indian Ocean, it is the original tropical island. It brags sensational volcanic peaks, rich vegetation and more than 160 kilometers of shoreline, dabbed with picture-perfect beaches. For a breathtaking vacation experience Mauritius tour package would be the perfect choice.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Best Places to Visit in Mauritius</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Mauritius is an ethereal land which fulfills the dreams of explorers with different interests. Independent of your movement decisions, the staggering spots in Mauritius will have something or the other to propose to you. Mauritius is a forerunner in outdoor adventure, fine dining, wildlife tourism, and luxury resorts. Here you can see monster turtles, intriguing exotic birds, horseback riding, appreciating kitesurfing, coral reef swimming, golf, climbing, and that\'s just the beginning. A genuine delight all throughout your visit will be to test delectable local food which takes its impact from Indian, French, Creole, and Chinese foundations. You\'ll adore the entire trip in Mauritius with our <a href=\"https://www.tripsgateway.com/holidays/mauritius/mauritius-tour-packages\"><font color=\"#424242\">Mauritius Holiday Package</font></a>. How about we investigate the best places to visit in Mauritius that you shouldn\'t miss! <br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in North Mauritius:</b> Port Louis, Le Plate  Island, Mauritius National Botanical Garden, Pereybere, Mont Choisy Beach, Grand Bassin, Trou Aux Cerfs and many more are some of the best places to visit. </p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in South Mauritius:</b> Le Morne Brabant, Tamarind Falls, Ilot Des Deux Cocos, Gris Gris Beach, La Cambuse, Le Souffleur, La Vallee Des Couleurs Nature Park, Ile aux Aigrettes and many more are some of the best places to visit. Exciting <a href=\"https://www.tripsgateway.com/holidays/mauritius/mauritius-tour-packages\">Mauritius Tour package</a> deals are waiting for you!<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in East Mauritius:</b>  Ile Aux Cerfs (Island) Beach, Le Water park, Chamarel Waterfalls are some of the best places to visit.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in West Mauritius:</b> Lighthouse of Albion, Casela Park, Flic En Flac Beach, Casela Nature Park are some of the best places to visit. </p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Things to do in Mauritius</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">With astounding whites and beaches, dazzling blue water, mountains, UNESCO World Heritage Sites thus significantly more stuffed in one country, you won\'t run out of things to do in Mauritius! The following is only a halfway rundown of thoughts of how to treat Mauritius that will make your get-away one that you will always remember! Go for Mauritius Package from Delhi the most adventurous vacation!<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in North Mauritius:</b> Port Louis Full Day Tour, Albatross Seaplane Ride, Mountain Hiking to Le Pouce Mountain, Underwater Sub Scooter Trip, Try the Street food, North Coast Cruise are some of the best things to do. <br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in South Mauritius:</b> Mauritius Island Hopping, Quad Biking in La Vallee Des Couleurs Nature Park, Canyoning at Tamarind Falls, Snorkeling in Blue Bay Marine Park, Windsurfing are some of the best things to do.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in East Mauritius:</b> Whale Watching, Deep-Sea Fishing, and Parasailing at Ile Aux Cerfs are some of the best things to do.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>If you\'re planning to stay in West Mauritius:</b> Walk with Lions at Casela Park, Sea Kayaking in Albion Caves, Sea Kart Ride in Black River, Zip lining at Tamarin Falls, Hiking to Black River Peak are some of the best things to do. </p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><i>If you want to experience the best, opt for the Mauritius tour package for a mesmerizing vacation experience.</i></b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Lose yourself in the astounding beauty of this location with the ethereal beaches, white sandy beaches and the azure waters. This heaven on earth is certainly the spot you should visit during your next excursion. This spot has the most flawless beaches in the world which makes it a legitimate objective for all. Regardless of whether you are on a honeymoon or on a get-away with your companions you won\'t ever be angry with this spot. The best Mauritius Honeymoon Package lets you have a romantic and fun loving vacation!<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Cuisines to try out in Mauritius</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Mauritius is a heaven for the sense of taste and the faculties, as the ethnic variety of the local population is reflected in its cuisine. Officially known as the Republic of Mauritius, this volcanic island is a fantasy objective because of its environment, the benevolence of the Mauritians, and the variety of its food. Most Mauritians are multilingual, speaking Creole, French, and English. <br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Curries, Farata, Alouda, Bois Cheri Tea, Dim sums, Mauritian Biryani, Mauritian Sea Dish, Dholl Puri, Sugar from L\'Aventure du Sucre, Coconut cakes, Mine Frites, Rum, Coconut Chutney, Palm Heart Salad, Layered Rice topped with Fried Omelette, Boulettes- a type of Chinese Dumplings, Achard Legumes- Pickled Vegetables, Gajak-Deep Fried Snack, Roti Chaud - Indian Flat Bread.</p><p class=\"MsoNormal\" style=\"text-align: justify; \">Why not choose Mauritius Holiday Package, if you want to have the best experience?<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Where to Enjoy Shopping in Mauritius?</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Shopping experiences in Mauritius are totally astonishing: going from shopping in a casual environment in shopping centers, carrying out responsibility free shopping or shopping in creating advertisements or in any event, purchasing distinctive items from peddlers on the beach or on roads. Mauritius has a standing of a shopping heaven. Mauritius has become referred to worldwide as a manufacturer of quality textile, specially planned jewelry, diamonds and wide scope of handcrafts, for example, artificial flowers, model boats, wooden art and some more.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Shopping at the north of Mauritius:</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Grand-Bay Shopping<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Goodlands Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Arsenal Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Port-Louis Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Shopping at the center of Mauritius:</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Curepipe Shopping<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Floreal Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Phoenix Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Quatre-Bornes Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Rose-Hill Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Moka Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Shopping at the East of Mauritius:</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Flacq Shopping<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Shopping at the West of Mauritius</p><p class=\"MsoNormal\" style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Flic En Flac Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Black River Shopping</p><p class=\"MsoNormal\" style=\"text-align: justify; \">With the Mauritius tour package, you have the chance to explore the best of Mauritius without having to worry about anything. <br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>How to Reach Mauritius?</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Whenever you intend to venture out to any place, the preeminent thing you need to investigate is the method for movement. Albeit the most ideal way to arrive at Mauritius from India is by air, there is one more option of going by water, because of its area.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Via air</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Via air Mauritius has flights from practically everywhere. It is easily connected with the rest of Africa, significant urban areas of Europe, the Middle East and Asia. For Indians, it shouldn\'t be an issue profiting flight services to Mauritius from Mumbai and Delhi. The Sir Seewoosagur Ramgoolam International Airport is the significant door to Mauritius. Situated at Plaisance it is around 50 kilometers from the capital city of Port Louis. While Air Mauritius is the home carrier, operating local and international routes, there are International airlines like Air India, Air France, British Airways, Emirates and South African Airways that give services from their headquarters also.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Via ocean</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">A number of ships and cruises have services that let you travel to Mauritius in style. Mauritius likewise has its own vessels that move to and from the Reunion Islands. The most well-known course here is from Madagascar. The excursion can require as long as 4 days or seriously depending where you board from and the climate conditions.<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>To travel around Mauritius</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">There are various ways of travelling around Mauritius like transport and taxi, car, motor bike and bicycle rentals and even flight and helicopter services. The buses are a helpful and agreeable method for getting around in Mauritius. It\'s great to have air conditioned buses in a moist objective and Mauritius caters well. There\'s likewise the taxi service which isn\'t incredibly costly. Mauritius Holiday Package from Delhi, India for an enthralling experience!<br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Best Time to Visit Mauritius</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">The best time to visit Mauritius is from May to December when the climate is cool, dry and radiant. Expect a portion of Africa\'s best beaches, fresh seafood and long, sundrenched days on a Mauritius holiday. The island has a classic tropical environment with warm weather all year. Indeed, even in winter, from May to October, the temperature drops from hot to refreshing. During summer, from November to April, the days are hot and moist. We don\'t suggest visiting Mauritius during the wet cyclone season, from January to March, and stay away from the east coast in July and August, when the breeze is at its most grounded. <br></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><i>Here’s your chance to book the best Mauritius honeymoon package from Delhi, India!</i></b></p>           ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Mauritius Tour Package, Holiday and Honeymoon Package from India','Book Mauritius Tour, Tour Package Mauritius, Mauritius Package, Holiday Package Mauritius, Honeymoon Package Mauritius, Mauritius Honeymoon Tour, Tour Package Mauritius.','Mauritius Package:  Explore Mauritius tours and honeymoon package at affordable price. Plan your Mauritius trip with Ineedtrip.com and get best holiday deals from Delhi, India.','','','139_1691495346.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'South Africa','south-africa','South Africa',195,'195_1627386278.jpg',0,'2021-02-26 18:45:49','2021-02-26 18:45:49','1','0',NULL,'<p><b>A short guide to South Africa</b> - What’s your idea of a perfect holiday? Lovely beaches, incredible wildlife, stunning views, or mouth-watering food? If your answer is all of the above-mentioned, then, we know a spot that has them all, and substantially more. Africa has a tempting interest for some eventual explorers, and South Africa’s famous destinations that offer such a broad assortment of awe-inspiring holidays and encounters joined with its First World infrastructure continues to carry an ever-increasing number of guests to its world-well-known game reserves, dramatic mountains, magnificent beaches, complex cities, historic front lines, extraordinary and little semi-deserts, wide-open spaces, stunning adventure activities, and significantly more. South Africa tour package to have the best vacation!</p><p><b>Most amazing places to visit in South Africa</b><br></p><p>South Africa is a diverse and attractive country. Its intriguing wildlife, dramatic landscape, and astounding beaches, diverse culture make it a shelter for explorers from around the world. Guests rapidly find that the rich history and vivid occupants in a perfect world make it the top vacation destination in South Africa, which creates an extraordinary encounter. South Africa honeymoon package for the perfect romantic getaway!<br></p><p><b>Top tourist attractions in South Africa:</b></p><p>Cape Town, Johannesburg, Durban, Kruger National Park, Table Mountain, Cape Point, Soweto &amp; the Mandela Museum, Castle of Good Hope, The Apartheid Museum, Cape Winelands, Constantia Valley, Garden Route, District six museum, Kgalagadi National Park, Addo National Park, Pilanesberg National Park, iSimangaliso Wetland Park, Blyde River Canyon Nature Reserve, Robben Island, Golden Gate Highlands National Park, Sani Pass, Boulders Beach, Tsitsikamma National Park, Kirstenbosch National Botanical Gardens, Signal Hill and the Noon Gun, Victoria &amp; Alfred Waterfront, Clifton and Camps Bay Beaches, Two Oceans Aquarium, Umgeni River Bird Park, Durban Botanical Gardens, Umhlanga Rocks, KwaMuhle Museum, Valley of 1000 Hills, Constitution Hill, Route 67,&nbsp; Cango Caves, National Zoological Gardens of South Africa, The Cradle of Humankind. Opt for the South Africa tour package if you don’t want to miss anything to visit!<br></p><p><b>Things to do in South Africa</b><br></p><p>South Africa is popular for its striking landscape, incredible wildlife, award-winning wineries, gorgeous beaches, and energetic and cosmopolitan urban areas. Many individuals have been to the nation twice and consistently leave needing more.&nbsp;<br></p><p>There’s something profoundly extraordinary with regards to this spot. However there are many things to see and do in South Africa, here’s a rundown of what I believe are the must-see and to do activities while you are here. Exciting South Africa Packages for a memorable trip!<br></p><p><b>Top things to do:</b><br></p><p>Go on a safari, Bungee Jumping, Climbing Table Mountain, Hot Air Balloon Rides, Swim with the sharks, Explore the Cape Winelands, Enjoy surfing, Capture the wildflower bloom, Get to know the tribal culture, Sandboarding, Hippo River Cruise, Horse Safari, Microlight Flight, Canopy Tour, whale watching, visit the penguins, hot air balloon ride, Hop on hop off Cape Town bus tour, Cable car ride to Table Mountain, hiking, cycling, Paragliding in Cape Town, Snorkeling, Skydiving in Cape Town, Scuba diving in Cape Town, Kayaking, etc. South Africa Packages lets you have the best thrilling holiday experience!<br></p><p><b>Where to enjoy shopping in South Africa?</b><br></p><p>Johannesburg, Cape Town, Durban, and other large cities are spotted with big shopping malls that have a few supermarkets and plenty of other retail outlets selling the sort of goods you would expect in other western countries like North America and Europe. Home-grown foodstuffs, wine, beer, and other local produce will, in general, be exceptionally economical by international standards yet imported goods can be expensive. Smaller towns will have something like one shopping center with less choice than the main big cities of South Africa. Also, shopping malls are restricted in game reserves. South Africa Packages for a stirring escape!<br></p><p><b>Best places to shop in South Africa:</b><br></p><p>1.<span style=\"white-space: pre;\">	</span>V&amp;A Waterfront<br></p><p>2.<span style=\"white-space:pre\">	</span>Cape Quarter</p><p>3.<span style=\"white-space:pre\">	</span>Gardens Shopping Centre</p><p>4.<span style=\"white-space:pre\">	</span>Victoria Wharf Shopping Centre</p><p>5.<span style=\"white-space:pre\">	</span>Greenmarket Square</p><p>6.<span style=\"white-space:pre\">	</span>Woodstock</p><p>7.<span style=\"white-space:pre\">	</span>Cavendish Square</p><p>8.<span style=\"white-space:pre\">	</span>Canal Walk Shopping Centre</p><p>9.<span style=\"white-space:pre\">	</span>Tyger Valley Shopping Centre</p><p>10.<span style=\"white-space:pre\">	</span>Milnerton Flea Market&nbsp;</p><p><b>Things to shop in South Africa:</b><br></p><p>1.<span style=\"white-space: pre;\">	</span>Gold coins and diamonds&nbsp;<br></p><p>2.<span style=\"white-space:pre\">	</span>Beer and old wine</p><p>3.<span style=\"white-space:pre\">	</span>Kalahari salt and Rooibos tea</p><p>4.<span style=\"white-space:pre\">	</span>Beaded jewelry</p><p>5.<span style=\"white-space:pre\">	</span>Fynbos shrub beauty products</p><p>With a customized South Africa holiday package, you can travel to the places you want. Grab the deals now! Chance to explore the best of South Africa!<br></p><p><b>Local food to eat in South Africa</b><br></p><p>Like so many motivating scenic beauty, South Africa offers delectable meals made fascinating by the combination of various cultures, traditions, and cuisines. The native populace, just like the Dutch, French, Indian and Malaysian people, has been influenced culturally, politically, and historically affected this part of Africa. This concoction of impacts has helped to structure a modern cuisine that is ensured to invigorate the sense of taste. South Africa tour package for covering all important places!<br></p><p><b>Best delicious food to try out in South Africa:</b><br></p><p>Braai, Potjiekos And Boerekos, Sosatie, Roosterbrood, Braaibroodjie, Biltong, Droëwors, Samoosa, Amanqina Enkukhu, Monkey Gland Sauce, Potjiekos, Frikkadel, Mala Mogodu, Tomato Bredie, Cape Malay Curry, Denningvleis, Biryani, Boer Chicken Pie, Bobotie, Pap, Umngqusho, Bunny chow, Vetkoek, Koeksister, Melktert, Rooibos Tea. Get Best Offers on South Africa holiday package!&nbsp;<br></p><p><b>How to reach South Africa?</b><br></p><p>South Africa incredibly has ten international airports. The most important ones are Cape Town International Airport, Tambo International Airport, Johannesburg, and Durban International Airport. Flights travel frequently to and from Mauritius, Nairobi, Cairo, Dar es Salaam, Lusaka, and that\'s only the tip of the iceberg. A blissful South Africa honeymoon package is waiting for you!<br></p><p><b>The ideal time to visit Cape Town</b><br></p><p>The best time to visit Cape Town is from March to May and furthermore from September to November. These are the best months to visit Cape Town when the weather is pleasant, lesser groups, and you can book your hotels at lower prices. Nothing can be better than getting a chance to save more and explore. South Africa honeymoon package for an incredibly romantic experience!<br></p><p><b>Do you need a visa to visit South Africa?</b><br></p><p>If you want to visit South Africa, you should apply for a valid visa before your departure. The visa can only be used for tourism or business purposes and is valid for 90 days. Contingent upon your planned visit, you can apply for a Visitor\'s Visa or a Transit Visa. South Africa holiday package is the right choice for you to save more and explore more!<br></p><p><b>Mandatory Quarantine &amp; Testing Rules&nbsp; &nbsp;</b></p><p>1.<span style=\"white-space:pre\">	</span>Mandatory RT-PCR Test 72hrs prior departure</p><p>2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p>3.<span style=\"white-space:pre\">	</span>2 doses of vaccine completed</p>',NULL,NULL,NULL,NULL,NULL,'South Africa Travel Package, South Africa Holiday Tour Package','Tour to South Africa, Best Package South Africa, Book South Africa Tour, Book South Africa Holiday Package, Cheap South Africa Package, Best South Africa Honeymoon Package, Explore South Africa Package, South Africa Honeymoon, South Africa Trip Deals, Best Deals South Africa.','South Africa Packages - Explore and book your South Africa tour & travel packages at affordable price with INeedTrip.com. Click now to get exclusive South Africa holiday deals.','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'Maldives','maldives','Maldives',133,'133_1690005445.jpg',0,'2021-03-04 13:34:29','2021-03-04 13:34:29','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\">Recognized as the most romantic location on earth, Maldives surely has many reasons to captivate the masses. Tourists say that the encompassing ocean gives one of the most spectacular views. Nobody is disappointed how Maldives amazes you. The moment\r\nyou land on a beach in Maldives, you will be spellbound by the stunning\r\nambiance and magical color of the ocean. You will get a feel of the\r\nocean\'s eternity below you and show the different shades of\r\nblue additionally to unparalleled landscapes that is hard\r\nto see elsewhere. It creates an undoubtedly unreal effect that is so\r\nmuch difficult to express in words. Truly, the beauty of this archipelago is\r\nhard to describe. Your vacation in this archipelago is surely going to leave an\r\neverlasting impression. There are many reasons to choose <b>Maldives Package from India</b> for your next vacation. We have listed\r\na few for you:</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Explore the city of Male<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">The city of\r\nMale is located on the southern fringe of Kaafu coral reef, the\r\nNorth Malé coral reef. It is the largest town and also\r\nthe preferred destination in Maldives. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Male was\r\npopularly known as Mahal for being the residence of the Royal Dynasties,\r\ncurrently it is known as the Kings Island. The climate here comprises\r\ntropical monsoon climate, however the best thing about Maldives is that it has\r\na moderate climate throughout the year, making it a year round tourist\r\ndestination. When in Male you should visit the:<o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Old Friday Mosque</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Muleeaage (Palace)</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">The National Museum</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">The Male Local Market</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Sultan Park</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Artificial Beach</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l2 level1 lfo3;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;color:black\"=\"\">The Tsunami Monument</span><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Visit the glowing beach in Vaadhoo Island</b></span><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">One of the\r\nexotic islands in Maldives, it offers amazing beaches, gorgeous landscapes,\r\nsparkling blue ocean water, and heaven like feeling. So, one of the unique\r\nfacts about the Vaadhoo Island is that when the sun goes does, the\r\nocean waves overlapping the shore illuminate sort of\r\na shimmering field of blue twinkling dots giving the ocean the\r\nlooks of the starry night sky.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">This\r\nimplausible phenomenon takes place due to the phytoplankton present in the water.\r\nWhen a phytoplankton comes in contact with any element it splashes a dazzling\r\nblue light like the stars. You can have a glimpse of seeing these creatures\r\nonly when you are off-shore. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Find out about the </span><b><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Maldives\r\nTour Package</span></b><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"> to explore the unique and\r\nbreathtaking places in Maldives.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Enjoy the top water sports in Maldives<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Maldives not\r\nonly has an amazing landscape, but it is also one of the best destinations in\r\nthe world for providing unlimited water sports activities. In case you are\r\nconfused as to what is exactly available, let’s guide you out! Here, we have\r\nrounded off all the water sports activities in Maldives that you can choose,\r\nfor an adventurous and exhilarating vacation. Check out the list:<o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Fly High with Parasailing</span><span style=\"font-family:\r\n     \" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Scuba Diving at Maaya Thila</span><span style=\"font-family:\r\n     \" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Surfing </span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Underwater Walking</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Wakeboarding</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Flyboarding</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Kitesurfing</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Fun Tubing</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Catamaran Sailing</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Snorkeling</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Kayaking</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Jet Skiing</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Big Game Fishing</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Banana Boat Rides</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Kneeboarding</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Underwater scooters</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Stand up paddling</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;color:black\"=\"\">Diving with hammerhead\r\n     sharks</span><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">To enjoy an\r\nexhilarating vacation, check out the <b>Maldives\r\nTour Package</b>. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>The Conrad Maldives resort <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">The\r\nMuraka is a stunning 2-level undersea villa, located within\r\nthe Conrad Maldives resort. Why not spend the night in a unique\r\nhideout? A chance to experience an exotic type of living, dining, and\r\nsleeping under the sapphire blue waters of the Indian Ocean, this surreal\r\nresidence isn\'t solely the\r\nforemost luxurious accommodation\r\noption, however conjointly one in all the\r\nmost mystifying places to visit in Maldives. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>A visit to The China Maldives Friendship\r\nBridge <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Around 2 km\r\nlong, this bridge connects the Male city to Hulhule Airport Island and is\r\nextended till Hulhumale Island. As the name suggests, this bridge was built to\r\nstrengthen the ties between the two countries and was funded by China. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Undersea restaurant<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Eat at the thrilling\r\nundersea restaurant. Gulp in the delicious food while enjoying the stunning\r\nundersea view.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Ithaa Undersea Restaurant</b><o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Ithaa\r\nUndersea Restaurant is one of the undersea restaurants in Maldives and is\r\nlocated in Conrad Maldives at a depth of 5 meters below the sea level. It is\r\none of the best places to try out the luscious food. It has a capacity to\r\naccommodate only 14 guests at a time. The glass rooftop offers splendid views\r\nof the beautiful coral garden. Isn’t it a dreamy restaurant? Do enjoy a date at\r\nthis restaurant. This place also organizes private events and parties. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><b>Subsix<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">The Subsix\r\nis also an undersea restaurant located at around 20 feet below the sea level.\r\nYou can reach Subsix by taking a speedboat. Devour delicious food in this\r\nmulti-cuisine restaurant! Also, organizes stunning underwater parties every\r\nSaturday and Wednesday. Make your <b>Maldives\r\nHoneymoon</b> vacation more thrilling and enjoyable.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Submarine tour <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">The\r\nSubmarine tour offers an electrifying and detailed view of\r\nthe wealthy marine life of the place.<br>\r\nThe underwater cruising activity takes place for forty five minutes and\r\noffers an identical expertise like that\r\nof road through an exquisite garden. A number\r\nof the marine creatures that may catch your\r\nattention throughout your underwater tour in the submarine are the\r\nyellow and blue snappers, shark rays, turtles, Yellow Boxfish, and Common\r\nLionfish. <b>Maldives Trip</b> for a unique\r\nexperience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Whale/Dolphin Watching <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Get chance\r\nto see a wide range of whales starting from the spirited Spinner Dolphin,\r\nMelon headed Whale to the huge Blue Whale and Pilot Whale. Maldives has an\r\nassortment of whale and dolphin watching chances. It is listed in the top\r\nfive whales and dolphin watching destinations around the world and\r\nits glossy outline is home to more than twenty completely\r\ndifferent species of whales and dolphins. Come back and\r\nwitness a number of the foremost fascinating marine creatures\r\nthriving in their natural environs in Maldives.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Cruise<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">You can opt\r\nfor an exciting half day, full day or long stay cruise in Maldives and travel\r\naround the gorgeous country and its several islands. If you\r\nprefer, you can visit the coral islands, go fishing, opt for snorkeling, walk\r\naround the sandy beaches or simply relax within the middle of the ocean. .<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Explore the Banana Reef <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Banana Reef\r\nis one of the oldest reefs discovered within the Maldives is\r\ndecked out with dramatic caves, splendid cliffs, beautiful coral growths and\r\nimmense overhangs. Banana Reef is additionally inhabited by\r\nbarracudas, sharks, and groupers, Banana Reef is one of the\r\nworld\'s preferred dive sites. The tranquil and welcoming\r\ncurrents not to mention nice visibility prove rather\r\nwell for first-time divers, learners and beginner to\r\ninduce their feet wet with. It is possible for skilled and\r\nexperienced divers to dive here because it permits them to\r\ntravel deeper and explore the vibrant world below the surface of\r\nthe water.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Island hopping <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Maldives\r\ncomprises many islands, each island is set apart from the other. The famous\r\ncommercial islands include Kudahuvadhoo, Gan, Hulhule, Alimantha, and\r\nMirihi. You’ll be able to get from one island to another by\r\nseaplanes, local boats with diesel engines or Dhonis-\r\nyou\'ll undoubtedly be spoilt for the selection, whether or\r\nnot you choose for the aerial views in a seaplane or traveling\r\naround in the cool blue waters on a boat.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Go for the <b>Maldives Honeymoon Package</b> to save more\r\nand explore more…<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Seaplane Tours <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Taking a\r\nride on a seaplane and enjoy the breathtaking view below. A seaplane trip\r\nin Maldives could be a visual treat for tourists and that\r\nthey get to observe the attractive Hulhumale Island and\r\nMale Island from top.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>How to reach Maldives?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Male is the\r\nmain international airport in Maldives, also popularly known as Velana\r\nInternational Airport. Located in the North Male Atoll on Hulhule Island, it\r\nconnects to all the countries around the world. Other three important airports\r\nin Maldives include:<o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Gan International Airport, Gan</span><span style=\"font-family:\r\n     \" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Maafaru International Airport, Maafaru</span><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;color:black\"=\"\">Hanimaadhoo International\r\n     Airport, Hanimaadhoo</span><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">There are\r\nalso domestic airports in atolls like Gnaviyani, Laamu, Dhaalu and so on. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">In India,\r\nyou get direct flights from Delhi, Bangalore, Mumbai, and even Kochi. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>How do I get around Maldives?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Maldives has\r\na wide selection of transportation options, thus hopping\r\nfrom one island to another in Maldives is easy. \r\nFrom Male airport you can either choose for a speedboat\r\ntransfer or a seaplane to your resort island. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Though, most\r\nresorts you have booked with for your accommodation a resort\r\nrepresentative will pick you up from Male airport upon your arrival. Once you\r\nreach your resort island, you simply got to take a couple\r\nof steps to your resort. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Where to stay in Maldives?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Maldives is\r\na luxurious holiday destination. But don’t worry! With <a href=\"https://www.tripsgateway.com/holidays/maldives/maldives-tour-packages\">Maldives Holiday Package</a> and <b>Maldives\r\nHoneymoon Package</b>, all are included in the package- accommodation, meals,\r\ndrinks, and activities. What else do you need? You can leave your wallet at\r\nhome. However, even if it’s not included Maldives resorts typically charge the\r\nminimal price for a meal, or drink. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Don’t\r\nforget! Shopping is at your own cost.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><b>Who can travel to Maldives post COVID?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Those who\r\nhave completed 2 doses of vaccination with a Negative COVID-19 test result is a\r\nmust for passengers travelling from other countries.</span></p>          ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Book Maldives Tours, Honeymoon Package, Maldives Packages from India','Tour to Maldives, Best Package Maldives, Book Maldives Tour, Book Maldives Holiday Package, Cheap Maldives Package from India, Best Maldives Honeymoon Package, Explore Maldives Package, Maldives Honeymoon, Maldives Trip Deals, Best Deals Maldives.','Maldives Package:  Explore Maldives tours and honeymoon package at affordable price. Plan your Maldives trip with Ineedtrip.com and get best holiday deals from India.','','','133_1691495156.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'Russia','russia','Russia',507,'507_1627385892.jpg',0,'2021-03-04 14:34:18','2021-03-04 14:34:18','1','0',NULL,'<p style=\"text-align: justify; \"><b>A Short Guide to Russia</b> - Russia is on the travel list of every tourist! Russia is rich in history and culture, and the two cities are Moscow and St. Petersburg, both are historical, beautiful, and certainly worth a few days each. Spreading over two continents and lining 14 countries, Russia is a novel blend of cultures and power. Look at the fundamental justifications for why Russia is so brilliant and plan your trip accordingly.</p><p style=\"text-align: justify; \">Russia is the greatest country on the planet, and its powerful scale is reflected in the magnificence of its palaces, churches and parks. Wherever you look, from the glory of the Moscow Metro to the transcending Kremlin, everything is grand here. In any case, Russian culture is similarly about refinement. Russia tour package for exploring breathtaking spots!<br></p><p style=\"text-align: justify; \">Simply think about the finesse of the Russian artful dance (ballet dance) and the country’s extraordinary works of literature. To truly comprehend the immensity of Russia, if you want to leave the city and head for the wild, the perpetual Siberian taiga forests, the volcanic moonscapes of Kamchatka or the blue region of Lake Baikal, it offers everything extraordinary. Russia’s sheer size implies it covers an inconceivable variety of scenes and climatic zones. Russia holiday package to experience something unique!<br></p><p style=\"text-align: justify; \"><b>Mesmerizing places to visit in Russia</b><br></p><p style=\"text-align: justify; \">The largest country on the planet truly has it all mountains, valleys, frozen lands and warm sands, and a number of astonishing destinations to mesmerize any guest. The oldest cities in Russia, including Moscow and St. Petersburg, actually hold their royal splendor which is evident in their architecture as well as in their grand malls, parks, and even metro stations. Russia Packages for a breathtaking holiday experience!<br></p><p style=\"text-align: justify; \">Other cities and regions including far-away locations in Siberia and the Far East offer an opportunity to discover things like the shocking excellence of the tundra and the Northern Lights, volcanoes, and more skiing than you might long for. From striking plated palaces to huge spaces, here is a rundown of the best exotic places to visit in Russia. Go for Russia tour package for a hassle-free vacation!<br></p><p style=\"text-align: justify; \"><b>Tops places to visit in Russia:</b><br></p><p style=\"text-align: justify; \">Moscow, St. Petersburg, Lake Baikal, Altay, the Russian Tundra, Petropavlovsk-Kamchatsky, Sochi, Kizhi Island, Kazan, The Golden Ring, National park Curonian Spit, Limpopo Zoo, Lighthouse Egersheld, Olkhon Island, Kamchatka, Ruskeala, Kenozersky National Park, Russian Arctic National Park, The Red Square, St. Basil’s Cathedral, the Moscow Kremlin, GUM, Tretyakov Gallery, Bolshoi Theatre, River Moskva, Krestovsky Stadium, Pushkin Museum. Russia Packages for an exciting trip to another world!<br></p><p style=\"text-align: justify; \"><b>Exhilarating things to do in Russia</b><br></p><p style=\"text-align: justify; \">Whether you’re exploring Moscow’s Kremlin or meandering through the steppes of Mongolia, a visit to Russia is an adventure not before long neglected. Here is a list of some of the exciting and unique things to do in Russia. Check out the best Russia holiday package!<br></p><p style=\"text-align: justify; \"><b>Top things to do in Russia:<br></b></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Enjoy Canal Tour<br></p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>Try Skiing At Red Valley&nbsp;</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>Search for the Russian tigers in the wild&nbsp;</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Enjoy a journey on the Trans-Siberian Railway</p><p style=\"text-align: justify;\">5.<span style=\"white-space:pre\">	</span>Cruise the Volga River</p><p style=\"text-align: justify;\">6.<span style=\"white-space:pre\">	</span>Visit the Samara Embankment</p><p style=\"text-align: justify;\">7.<span style=\"white-space:pre\">	</span>Watch a Show at Samara Academic Opera and Ballet Theatre</p><p style=\"text-align: justify;\">8.<span style=\"white-space:pre\">	</span>Pray at Saint Basil’s Cathedral</p><p style=\"text-align: justify;\">9.<span style=\"white-space:pre\">	</span>Go to Moscow’s Kremlin</p><p style=\"text-align: justify;\">10.<span style=\"white-space:pre\">	</span>Visit the State Hermitage Museum</p><p style=\"text-align: justify;\">11.<span style=\"white-space:pre\">	</span>Stroll at Kizhi Island</p><p style=\"text-align: justify;\">12.<span style=\"white-space:pre\">	</span>Enjoy a Show at Moscow Cat Theatre</p><p style=\"text-align: justify;\">13.<span style=\"white-space:pre\">	</span>Marvel at the Glorious Amber Room</p><p style=\"text-align: justify;\">14.<span style=\"white-space:pre\">	</span>Visit St Isaac’s Cathedral</p><p style=\"text-align: justify;\">15.<span style=\"white-space:pre\">	</span>Visit the \'City of Dead’</p><p style=\"text-align: justify;\">16.<span style=\"white-space:pre\">	</span>Discover Psychedelic Salt Mines</p><p style=\"text-align: justify;\">17.<span style=\"white-space:pre\">	</span>Go Ice-Skating at Gorky Park</p><p style=\"text-align: justify;\">18.<span style=\"white-space:pre\">	</span>Take a Ride in the Nizhny Novgorod Cableway</p><p style=\"text-align: justify;\">19.<span style=\"white-space:pre\">	</span>Discover Local Tatar Culture</p><p style=\"text-align: justify;\">20.<span style=\"white-space:pre\">	</span>Enjoy a Riverboat Ride</p><p style=\"text-align: justify;\">21.<span style=\"white-space:pre\">	</span>Stopover at Church Upon The Blood</p><p style=\"text-align: justify;\">22.<span style=\"white-space:pre\">	</span>Enjoy the Peterhof palace tour</p><p style=\"text-align: justify;\">23.<span style=\"white-space:pre\">	</span>Spend a Day in Vladimir, a Town Among the Golden Ring</p><p style=\"text-align: justify; \"><b>Traditional food to eat in Russia<br></b></p><p style=\"text-align: justify; \">Russian cooking is particular and one of a kind, and like some other countries, it was affected by various environmental, economic, social, geographical, and historical factors. There are various dishes made of batter, for example, blini, cakes, pies, rolls, and so on just as an unleavened mixture, including dumplings and homemade noodles. The primary element of Russian cuisine is viewed as a bounty and assortment of items utilized for cooking. Russia Packages for an exotic vacation experience!<br></p><p style=\"text-align: justify; \">Being a nation of Orthodox Christian religion which infers various diets, Russian cuisine offers an extraordinary number of vegetarian dishes including mushrooms, pickles, and so on. The Russian culinary range is additionally rich in poultry, meat, and fish dishes which are served at different events.&nbsp; Explore the best with Russia tour package!<br></p><p style=\"text-align: justify; \"><b>Must-try food:</b><br></p><p style=\"text-align: justify; \">Blini, Sirniki, Pelmeni, Beef Stroganoff, Syrniki, Kasha (Porridge), Borscht (beetroot soup), Okroshka, Pirozhki, Shashlik, Pirog, Solyanka, Sorrel soup, Herring, Salad Olivier, Vinaigrette, Holodets, Pickles, Chicken kiev, Sbiten, Kvas, Mors, Pryanik.&nbsp;<br></p><p style=\"text-align: justify; \"><b>Best shopping destination in Russia</b><br></p><p style=\"text-align: justify; \">Russia offers voyagers a novel shopping experience because of its rich, diverse culture. Major cities like Moscow, St. Petersburg, Yekaterinburg, Murmansk, Kazan, and Kaliningrad highlight probably the best shopping spots like shopping malls, independent stores, art shops, designer stores, boutique shops, flea markets, bookstores, and some more. From upcoming Russian designers to antique shops and high-end shopping malls, here are some of the trendy places to shop in Russia. Enjoy the Russia holiday package for an exciting vacation!<br></p><p style=\"text-align: justify; \"><b>Where to shop in Moscow?</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>GUM<br></p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>TsUM</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>Izmailovo Market</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Art Play and Falcon Design Factory</p><p style=\"text-align: justify;\">5.<span style=\"white-space:pre\">	</span>Depo and Danilovsky Market</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Arbat Street</p><p style=\"text-align: justify; \"><b>Where to shop in St. Petersburg, Russia?</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Galleria Shopping Mall<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>ArtSpace</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Udelnaya Flea Market</p><p style=\"text-align: justify; \"><b>How to reach Russia?</b><br></p><p style=\"text-align: justify; \">The best way to reach Russia from India is to take a flight to Moscow. All major airlines to Moscow fly from Delhi’s Indira Gandhi International Airport. Delhi has a direct flight to Sheremetyevo International Airport in Moscow. The Russian airline – Aeroflot flies you directly from Delhi to Moscow within six hours. Russia tour package for a flawless experience!<br></p><p style=\"text-align: justify; \"><b>Best time to visit Moscow<br></b></p><p style=\"text-align: justify; \">The ideal time to visit Moscow is from April to May when the temperature is 50-60 degrees Celsius. The sun is at its most splendid best and you get to see the best of Russia through your eyes. However, ensure that you book your hotel in advance, as this is the peak season and is mostly crowded! Russia honeymoon package for the perfect romantic getaway!<br></p><p style=\"text-align: justify; \"><b>It’s time you plan your holiday to Russia&nbsp;</b><br></p><p style=\"text-align: justify; \">Browse the exceptionally planned Russia tour packages. Russia is one of the most unimaginably diverse nations on the planet, with practically unparalleled fortunes of culture, history, and scenery. Russia has it all, from the onion-domed fantasy towers of Moscow and St. Petersburg to the peaceful and stunning Ural Mountains in the west than for experiencing the warmth visit the sparkling beaches of Sochi in the southwest. Russia honeymoon package for dreamlike fairytale vacation!<br></p><p style=\"text-align: justify;\">The country brags 28 World Heritage Sites which seventeen properties are cultural, and eleven are natural. A 2 days trip to Russia isn’t enough to cover all features, still, probably all that attractions can be covered on your seven-day single Russia trip. Check out the best Russia honeymoon package with invigorating offers.&nbsp;<br></p><p style=\"text-align: justify;\"><b>Visa to Russia from India</b><br></p><p style=\"text-align: justify;\">To acquire a Russian visa it is better to apply through the official Russian Visa Centers set up to upgrade the quality of service located in New Delhi, Mumbai, Chennai, and Kolkata.<br></p><p style=\"text-align: justify; \"><b>Mandatory Quarantine &amp; Testing Rules&nbsp;</b> &nbsp;<br></p><p style=\"text-align: justify;\">1.<span style=\"white-space: pre;\">	</span>Mandatory RT-PCR Test 72hrs prior departure<br></p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>2 doses of vaccine&nbsp;</p>',NULL,NULL,NULL,NULL,NULL,'Explore Russia Packages, Russia Holidays and Honeymoon Package','Tour to Russia, Best Package Russia, Book Russia Tour, Book Russia Holiday Package, Cheap Russia Package, Best Russia Honeymoon Package, Explore Russia Package, Russia Honeymoon, Russia Trip Deals, Best Deals Russia.','Russia Packages - Explore and book your Russia tour & travel packages at affordable price with INeedTrip.com. Click now to get exclusive Russia holiday deals. ','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,'Russian Federation','russian-federation','Russian Federation',181,'181_1627385903.jpg',0,'2021-03-04 14:34:18','2021-03-04 14:34:18','1','0',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Russia is the largest country in\r\nthe world, known for its vast and diverse landscapes. From the bustling streets\r\nof Moscow to the serene Lake Baikal, there\'s something for every traveler in\r\nthis expansive nation.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">1. Moscow - The Capital City<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Start your journey in Moscow, the\r\ncapital city, and experience the rich history and vibrant culture of Russia.\r\nHighlights of Moscow include:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Red Square: Visit the iconic Red\r\nSquare, home to St. Basil\'s Cathedral and the Kremlin, where you can explore\r\nthe history of Russian rulers.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Bolshoi Theatre: Enjoy a\r\nworld-class ballet or opera performance at the historic Bolshoi Theatre.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The State Tretyakov Gallery:\r\nExplore the impressive collection of Russian art, including works by famous\r\npainters like Ivan Aivazovsky and Ivan Shishkin.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Gorky Park: Relax and enjoy the\r\nbeautiful green spaces of Gorky Park, perfect for picnics and leisurely walks.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">2. St. Petersburg - The Cultural\r\nGem<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Travel to St. Petersburg, Russia\'s\r\ncultural capital, and immerse yourself in the city\'s artistic and architectural\r\ntreasures:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The Hermitage Museum: Marvel at\r\nthe vast art collection housed in the Winter Palace, including works by\r\nLeonardo da Vinci, Rembrandt, and Michelangelo.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Peterhof Palace: Explore the\r\nstunning gardens and fountains of Peterhof Palace, often called the\r\n\"Russian Versailles.\"<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Nevsky Prospekt: Wander along\r\nNevsky Prospekt, the city\'s main avenue, lined with shops, cafes, and historic\r\nbuildings.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">3. Lake Baikal - The Siberian\r\nJewel<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Head to Siberia to witness the\r\nawe-inspiring beauty of Lake Baikal, the world\'s deepest freshwater lake:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Olkhon Island: Visit Olkhon Island\r\non Lake Baikal for breathtaking landscapes, hiking, and the opportunity to\r\nexperience the indigenous Buryat culture.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Listvyanka: Explore the lakeside\r\nvillage of Listvyanka, known for its fish market and scenic views of the lake\r\nand surrounding mountains.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">4. Trans-Siberian Railway - An\r\nEpic Journey<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Consider embarking on an epic\r\nadventure by taking the Trans-Siberian Railway, one of the world\'s most famous\r\ntrain journeys. This railway spans nearly 6,000 miles, crossing eight time\r\nzones and offering a unique glimpse into Russia\'s vastness.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">5. Kamchatka Peninsula - Land of\r\nVolcanoes<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">For adventure seekers, the\r\nKamchatka Peninsula is a must-visit destination:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Volcano Tours: Take guided tours\r\nto explore the region\'s active volcanoes, including Klyuchevskaya Sopka, the\r\nhighest volcano in Eurasia.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Hot Springs: Relax in the natural\r\nhot springs, known as \"banyas,\" with stunning views of volcanic\r\nlandscapes.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">6. The Golden Ring - Historical\r\nTowns<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Discover Russia\'s historical roots\r\nby touring the Golden Ring, a group of ancient towns northeast of Moscow:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Suzdal: Explore Suzdal\'s\r\nwell-preserved medieval architecture and visit the beautiful Suzdal Kremlin.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Vladimir: Admire the UNESCO-listed\r\nsites in Vladimir, including the Assumption Cathedral and the Golden Gate.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">7. The Russian Cuisine<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Don\'t miss the chance to savor\r\ntraditional Russian dishes like borscht, pelmeni (dumplings), blini (pancakes),\r\nand enjoy a glass of vodka or kvass.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">8. Language and Travel Tips<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">While English may not be widely\r\nspoken, learning a few basic Russian phrases can be helpful. Be sure to check\r\nvisa requirements before your trip, and consider traveling during the summer\r\nmonths for more pleasant weather.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Russia\'s vastness offers a wide\r\nrange of experiences, from cultural immersion in its cities to adventure in its\r\nnatural wonders. Plan your journey carefully to make the most of your visit to\r\nthis incredible country.<o:p></o:p></p> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Explore the Diverse Landscapes of Russia','Russia travel Russian destinations Moscow tourism St. Petersburg attractions Trans-Siberian Railway Lake Baikal trips Kamchatka Peninsula adventure Golden Ring towns Russian cuisine experiences Travel tips for Russia Russian culture immersion Hermitage Museum visit Trans-Siberian Railway journey Russian landmarks Siberian wilderness','\"Discover the wonders of Russia with our comprehensive travel guide. Explore iconic cities like Moscow and St. Petersburg, embark on epic journeys like the Trans-Siberian Railway, and immerse yourself in the rich culture and history of this vast nation. From the majestic Lake Baikal to the fiery volcanoes of Kamchatka, plan your unforgettable Russian adventure with us.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,'Kenya','kenya','Kenya',113,'113_1627384813.jpg',0,'2021-04-13 16:38:57','2021-04-13 16:38:57','1','0',NULL,'<p style=\"text-align: justify; \"><b>A Short Guide to Kenya </b>- Kenya is one of Africa\'s stunning and staggering areas and your experience with African Mecca Safaris takes you to the country\'s best places. Sustainable tourism and globally recognized wildlife management imply that you will get a chance to see the vast wilderness and globally huge habitats where wildlife roams uninhibitedly, including uncommon and endangered species and the Big Five. Visit breathtaking Kenya, and experience all that Africa offers. Kenya tour package for an exciting experience!</p><p style=\"text-align: justify; \">Kenya has an overwhelming effect on the people who travel there. Consider a trip to this African country, a simple holiday to woo you away. Visit the cradle of civilization, as it is in some cases called and you will experience an enduring, profound association. For some, it is unexplainable adoration. From the Rift Valley and the shores of Lake Naivasha to the cosmopolitan clamor of Nairobi and the white sand seashores that soften into the gem Indian Ocean, Kenya is a dream destination for explorers. Kenya Packages for the best holiday escape.<br></p><p style=\"text-align: justify; \"><b>Exotic Places to visit in Kenya</b><br></p><p style=\"text-align: justify; \">The interest and adventure of Kenya ventures once again into the birth of humankind extends along miles of white sand beaches and voyage into the dense forests and deserts. Iconic tourist spots, for example, Mount Kenya is over the savannah fields and tropical forests while its waterfalls lie settled within the foothills of montane. Kenya tour package for an electrifying experience!<br></p><p style=\"text-align: justify; \">Cool winds float across the Indian Ocean to revive your soul in the country\'s coastal towns and islands. From the most noteworthy tops to the most unfathomable sea profundities, Kenya gives you an African dream holiday experience that could not be overestimated! Dumbfounding wildlife, spectacular scenes, and an inviting blend of culture, there are many motivations behind why Kenya should top your travel list. Kenya Packages lets you explore the best of Kenya!<br></p><p style=\"text-align: justify; \"><b>Top places to visit in Kenya:</b><br></p><p style=\"text-align: justify; \">Maasai Mara, Kiboko Bay, Haller Park, Amboseli National Park, Lake Victoria, Nairobi, Mt. Kenya National Park, Mombasa, Malindi, Samburu National Reserve, Diani Beach, Manda Bay, The Great Rift Valley, Jamia Mosque, Uhuru Gardens, Lamu Island, Wasini Island, Mt. Elgon, David Sheldrick Wildlife Trust, Fourteen Falls. Go for the Kenya tour package for an exciting trip!<br></p><p style=\"text-align: justify; \"><b>Exciting &amp; adventurous things to do in Kenya</b><br></p><p style=\"text-align: justify; \">Stunning scenic views, fantastic wildlife in their natural surroundings, and the tropical Indian Ocean shoreline are some of the attractions in Kenya. There are loads of activities to indulge in Kenya, from traveling around the capital city of Nairobi to going on safaris and hanging out on Lake Victoria. Kenya Packages for a thrilling getaway you can experience nowhere else.<br></p><p style=\"text-align: justify; \"><b>Top things to do in Kenya:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Watch the Great Migration in Masai Mara<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Hot-air ballooning in Masai Mara</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Maasai Mara Camping Safari</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Horseback safaris</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Helicopter safaris</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Watch Ostrich Racing at Maasai Ostrich Farm</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Jeep Safari at Nairobi National Park</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Take breakfast at the Giraffe Manor</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Pay a visit to Takwa ruins</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>Hike to Mount Kenya</p><p style=\"text-align: justify; \">11.<span style=\"white-space:pre\">	</span>Pay a visit to the legendary Hippo Point</p><p style=\"text-align: justify; \">12.<span style=\"white-space:pre\">	</span>Cycle through Great Rift Valley</p><p style=\"text-align: justify; \">13.<span style=\"white-space:pre\">	</span>Walking Safari at Ndere Island National Park</p><p style=\"text-align: justify; \">14.<span style=\"white-space:pre\">	</span>Pay a visit to the very famous Mamba Village</p><p style=\"text-align: justify; \">15.<span style=\"white-space:pre\">	</span>Watch Various Animals at Nairobi Safari Walk</p><p style=\"text-align: justify; \">16.<span style=\"white-space:pre\">	</span>Hiking trip to Mount Longonot</p><p style=\"text-align: justify; \">17.<span style=\"white-space:pre\">	</span>Boating at Lake Naivasha</p><p style=\"text-align: justify; \">18.<span style=\"white-space:pre\">	</span>Bungee jumping, Sagana</p><p style=\"text-align: justify; \">19.<span style=\"white-space:pre\">	</span>Visit the majestic Fort Jesus</p><p style=\"text-align: justify; \">20.<span style=\"white-space:pre\">	</span>Pay a visit to the famous Mombasa Marine National Park</p><p style=\"text-align: justify; \">21.<span style=\"white-space:pre\">	</span>Camel rides at Pirates Beach</p><p style=\"text-align: justify; \">22.<span style=\"white-space:pre\">	</span>Go cruising in a Tamarind Dhow</p><p style=\"text-align: justify; \">23.<span style=\"white-space:pre\">	</span>Rock climbing at Tsavo East National Park</p><p style=\"text-align: justify; \">24.<span style=\"white-space:pre\">	</span>Explore Hot Springs in Lake Bogoria</p><p style=\"text-align: justify; \">25.<span style=\"white-space:pre\">	</span>Skyping, Diani Beach</p><p style=\"text-align: justify; \">26.<span style=\"white-space:pre\">	</span>Snorkeling, Malindi</p><p style=\"text-align: justify; \">27.<span style=\"white-space:pre\">	</span>Paragliding, Kerio Valley</p><p style=\"text-align: justify; \"><b>Traditional food to eat in Kenya</b><br></p><p style=\"text-align: justify; \">Kenyan dishes are among the best you will at any point gobble up. Ask any Kenyan who lives away and they will let you know how much they loved the Kenyan cuisine. Kenya is a country with 42 tribes and pretty much every community has its own exceptional dish. The culinary scene fluctuates all through the country. Make sure to try any one of the Kenyan cuisines. Kenya tour package for one of the best holiday experiences!<br></p><p style=\"text-align: justify; \"><b>Delicious cuisines to try in Kenya:</b><br></p><p style=\"text-align: justify; \">Ugali, Samaki, Nyama Choma, Kachumbari, Pilau, Githeri, Mukimo, Matoke, Silverfish, Ingoho, Sukumawiki, Kenyan style stew, Kenyan blood sausage, Jute mallow, Coconut rice, Viazi Karai, Roast maize, Omelet, and French fries, Mandazi, Dumo Kachri. Kenya Packages for the perfect unique experience!<br></p><p style=\"text-align: justify; \"><b>Best places to enjoy shopping in Kenya</b><br></p><p style=\"text-align: justify; \">If you have an enthusiastic shopaholic soul stimulating you, head for a shopping binge at the popular Maasai Market. You can track down an assortment of sellers selling various things at an affordable and bargainable cost. Probably the most suggested things you can look for at the Maasai Market include the Maasai shoes, Shukas, Kiondos, beaded jewelry, sculptures, artworks, and belts. The prices of the items are less expensive in the evening hours in contrast with that in the lunch breaks; so you can design your visit according to your convenience. Choose the Kenya holiday package for an exciting trip!<br></p><p style=\"text-align: justify; \"><b>Best places to shop in Kenya:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>City market<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Maasai market</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Gikomba market</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Old town market</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Biashara Market</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Westgate Shopping Mall</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>The Village Market</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Yaya Centre</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Cedar Mall</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>The Hub Karen Mall</p><p style=\"text-align: justify; \"><b>How to reach Kenya?</b><br></p><p style=\"text-align: justify; \">Jomo Kenyatta International Airport is the main airport in Kenya which is situated 15 km southeast of Nairobi. Kenya\'s second international airport is Moi International Airport, found 9 km west of Mombasa, however aside from flights to Zanzibar, this is principally utilized for domestic and charter flights. Kenya honeymoon package for the perfect romantic experience you never thought of!<br></p><p style=\"text-align: justify; \"><b>Best time to visit Kenya?</b><br></p><p style=\"text-align: justify; \">Perhaps the best and ideal time to visit Kenya is from July to September, during the nation\'s dry season, which corresponds with the Great Migration of wildebeest and zebra. The rainy seasons are the best season to travel, there are fewer guests and you can respect the striking emerald vegetation. Go for the Kenya honeymoon package for an enthralling and romantic vacation!<br></p><p style=\"text-align: justify; \"><b>Do Indians need visas to travel to Kenya?</b><br></p><p style=\"text-align: justify; \">Indian nationals need to obtain visas prior to heading out to Kenya, for tourism and business reason. Indians would now be able to apply for an Online Visa to visit Kenya. You can get a Kenya visa on arrival at the airport, but you will have to wait in line to get it or else apply and get an eVisa before your departure. Choose the Kenya holiday package for an exhilarating trip!<br></p><p style=\"text-align: justify; \"><b>Mandatory Quarantine &amp; Testing Rules&nbsp;</b> &nbsp;<br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Mandatory RT-PCR Test 72hrs prior departure<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>2 doses of vaccine&nbsp;</p><p style=\"text-align: justify; \"><br></p>  ',NULL,NULL,NULL,NULL,NULL,'Explore Kenya Packages, Kenya Holidays and Honeymoon Package','Tour to Kenya, Best Package Kenya, Book Kenya Tour, Book Kenya Holiday Package, Cheap Kenya Package, Best Kenya Honeymoon Package, Explore Kenya Package, Kenya Honeymoon, Kenya Trip Deals, Best Deals Kenya.','Kenya Packages - Explore and book your Kenya tour & travel packages at affordable price with INeedTrip.com. Click now to get exclusive Kenya holiday deals.','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,'Turkey','turkey','Turkey',222,'222_1627386555.jpg',0,'2021-04-15 15:44:05','2021-04-15 15:44:05','1','0',NULL,'<p style=\"text-align: justify; \"><b>A Short Guide to Turkey</b> - Excited about visiting Turkey? It’s an intriguing country with a rich history and culture. Completely clear waters, tall mountains, the remains of ancient empires little idyllic villages, colossal cosmopolitan urban communities there are many countless motivations behind why you should visit Turkey. Here, ‘I Need Trip’ takes a look at some of the best. Turkey tour package to explore the best of Turkey</p><p style=\"text-align: justify; \"><b>Mesmerizing Places to Visit in Turkey</b><br></p><p style=\"text-align: justify; \">One of only a handful of exceptional nations on the planet that ranges more than one continent, Turkey is a charming treat to the senses. It brags stunning views: lakes, waterfalls, mountains, seas, rivers, forests, and surprisingly warm hot springs! It has the ideal blend of historical and ultra-modern cities. Here are some of the must-visit places in Turkey for your next vacation. Turkey Packages for a stirring holiday experience!<br></p><p style=\"text-align: justify; \"><b>Best places to visit in Turkey:</b><br></p><p style=\"text-align: justify; \">Hagia Sophia (Aya Sofya), Ephesus, Aspendos, Topkapi palace, Sumela Monastery, Mount Nemrut, Pamukkale, Basilica Cistern, Galata Tower, Blue Mosque, Istanbul archaeological museum, Chora Church, Taksim Square, Kaymakli Underground City, Ihlara Valley, Devrent valley, Red Rose Valley, Goreme Open Air Museum, Pasabag (Monks Valley), Uchisar castle, Soganli valley, Love valley, Antalya Aquarium, Antalya Archaeological Museum, Patara, Perge, Kursunlu falls, Koprulu Canyon National Park, Ankara Castle, Anitkabir, Anatolian Civilization Museum, Atakule, Cengelhan Rahmi M.Koc Museum, Hisar, War of Independence Museum, Butterfly Valley, Izmir Natural Life Park, Akdamar Island, Kusadasi Castle. Popular Turkey tour package to experience a holiday like never before!<br></p><p style=\"text-align: justify; \"><b>Exhilarating things to do in Turkey</b><br></p><p style=\"text-align: justify; \">Guess what? Turkey has surprises for you as well. Even if you don’t know much with regards to this country before you booked your flight, you can instantly fall in love in this country as soon as you land. Turkey is a nation where the East meets the west and history meets adventure. The individuals are inviting, the cuisine is wonderful, and the culture has profundity. Turkey Packages to have a memorable retreat!<br></p><p style=\"text-align: justify; \">Turkey is a country with a genuine list of must-do’s commendable adventures and Instagram destinations. From sun-kissed beaches to pine-covered mountains, there are a sizable amount of attractions to completely possess within a month’s time. Turkey tour package for an adventurous trip!<br></p><p style=\"text-align: justify; \"><b>There are so many things to do in Turkey:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Take a ferry ride down the Bosporus<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Stroll Through the Grand Bazaar</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Catch the Tram at Taksim Square</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Taste the Seafood Under Galata Bridge</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Enjoy the Traditional Turkish Bathhouse</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Feel like a Giant in Miniaturk Park</p><p style=\"text-align: justify; \">7.<span style=\"white-space:pre\">	</span>Enjoy the Hot Air Balloon in Cappadocia</p><p style=\"text-align: justify; \">8.<span style=\"white-space:pre\">	</span>Taste the Local Wine at Wineries</p><p style=\"text-align: justify; \">9.<span style=\"white-space:pre\">	</span>Play Golf at the Fairy Chimneys</p><p style=\"text-align: justify; \">10.<span style=\"white-space:pre\">	</span>Rafting in Koprulu Canyon National Park</p><p style=\"text-align: justify; \">11.<span style=\"white-space:pre\">	</span>Cable-Skiing at Hip-Notics</p><p style=\"text-align: justify; \">12.<span style=\"white-space:pre\">	</span>Relax at Lara beach and Patara</p><p style=\"text-align: justify; \">13.<span style=\"white-space:pre\">	</span>Witness the Beauty of Ankara from Atakule Tower</p><p style=\"text-align: justify; \">14.<span style=\"white-space:pre\">	</span>Hike at Mount Nemrut</p><p style=\"text-align: justify; \">15.<span style=\"white-space:pre\">	</span>Relax at Pamukkale Thermal Pools</p><p style=\"text-align: justify; \">16.<span style=\"white-space:pre\">	</span>Paragliding at Oludeniz</p><p style=\"text-align: justify; \">17.<span style=\"white-space:pre\">	</span>Kayaking at Ruins of Kekova</p><p style=\"text-align: justify; \"><b>Exotic shopping experience in Turkey </b><br></p><p style=\"text-align: justify; \">Turkey, a country prestigious for being one of the best holiday destinations is home to a grand shopping experience. This is a country that lies both in Asia and Europe and offers the best of east and west. From vibrant and lively street bazaars to exotic spice markets, there\'s a totally different world external the luxurious shopping centers that make shopping in Turkey resemble an essential encounter. Turkey holiday package for a fun and relaxing vacation!<br></p><p style=\"text-align: justify; \">So, would you say you are a shopaholic? Indeed, Turkey should be your next destination for a get-away. This is what the nation brings to the table as far shopping is concerned. Turkey tour package for a stimulating vacation!<br></p><p style=\"text-align: justify; \"><b>Check out some of the best places to shop in Turkey</b><br></p><p style=\"text-align: justify; \">1. Grand Bazaar<br></p><p style=\"text-align: justify; \">2. Spice Bazaar</p><p style=\"text-align: justify; \">3. Bagdat Street</p><p style=\"text-align: justify; \">4. mall of Istanbul </p><p style=\"text-align: justify; \">5. Nisantasi Shopping Center</p><p style=\"text-align: justify; \">6. Kemerlati Bazar</p><p style=\"text-align: justify; \">7. Arasta Bazaar</p><p style=\"text-align: justify; \"><b>Delicious Turkish Cuisine </b><br></p><p style=\"text-align: justify; \">Turkish cuisine is viewed as one of the world’s most prominent and no measure of political difficulty will change that. The country’s culinary traditions are more than 1,300 years and fuse a flavorful combination of Middle Eastern, Balkan, and central Asian impacts. It is popular for its grilled meats- the kebabs are much loved here. Turkey Packages to experience the best of Turkey!<br></p><p style=\"text-align: justify; \">Turkish cuisine is extremely assorted and widely acclaimed. Istanbul is a mixture of cultures, and this multitude of impacts wonderfully influences the food scene. While you’re here, experience the authentic food of Turkey. Yet, with such countless various dishes to browse, where do you begin? We have listed some for you. Turkey holiday package lets you enjoy a hassle-free experience.<br></p><p style=\"text-align: justify; \"><b>Things to eat in Istanbul:</b><br></p><p style=\"text-align: justify; \">Piyaz Salad, Ezogelin Corba, Saksuka, Kisir, Mercimek Kofte, Yaprak Dolma, Inegol Kofte, Iskender Kebab, Cag Kebab, Perde Pilav, Manti, Testi Kebab, Gozleme, Pide, Su Boregi, Simit, Lahmacun, Baklava, Dondurma, Turkish Delight. <br></p><p style=\"text-align: justify; \">When in Turley, start your day with a traditional Turkish breakfast. This tantalizing breakfast includes fresh white bread, eggs, tomatoes, a cheese platter, cucumber, black olives, and different spreads all to devour with tea. <br></p><p style=\"text-align: justify; \">Enticing scrumptious Koftemeatballs, mezze platters, and Turkish coffee will surely gain your attention. Soups have from early times have held an exceptional spot within the Turkish food arena and it is OK to arrange a bowl. Traditional desserts include the famous Turkish delight, Baklava (a sweet pastry), and Turkish rice pudding known as Sutlac. Turkey Packages gives you unending excitement!<br></p><p style=\"text-align: justify; \"><b>How to reach Turkey?</b><br></p><p style=\"text-align: justify; \">The best way to reach Turkey from India is to take a flight. Because of the sheer geographical distance, air travel is the most helpful and practical method for undertaking this voyage. To streamline on schedule and enjoy all the facilities, people should book a flight to the capital city of Istanbul. Ataturk Airport is the main airport and is well connected to major cities like Delhi, Mumbai, Pune, Bangalore, Kolkata, Chennai, and Hyderabad. The Atatrk Airport has a limit of nearly 200 million travelers. Enjoy the best with a Turkey honeymoon package!<br></p><p style=\"text-align: justify; \"><b>Best time to visit Turkey </b><br></p><p style=\"text-align: justify; \">The best ideal opportunity to visit Turkey relies upon what you’re inspired by. April, May, and October are warm, with temperatures 20 degrees Celsius to 30 degrees Celsius, it is the best time to visit Turkey and explore the terrific ancient sites. The summer months start from June to September and are exceptionally blistering, with temperatures around the mid-thirties on the south coast. This is ideal for relaxing by the ocean or a pool, as visiting the sites on a summer afternoon would be uncomfortable. <br></p><p style=\"text-align: justify; \">The weather starts to chill in late October. November to March can get quite cold and many hotels in beachfront regions close during these months. But, in spite of the cool temperatures, these cold weather months can be the best ideal time to explore the locales, as they’re undeniably less occupied. In Cappadocia, the temperature can dip to zero degrees Celsius; however, the snow-covered landscape is beautiful to see. Turkey honeymoon package gives you the best excitement!<br></p><p style=\"text-align: justify; \"><b>Do Indians need visas to travel to Turkey?</b><br></p><p style=\"text-align: justify; \">Yes, citizens of India need a visa to visit Turkey. Indian citizens who meet all the Turkey eVisa necessities can apply to travel. The Turkey eVisa process is quick and productive. The Turkey eVisa is for residents of India who want to stay for 30 days for tourism and business purpose only.<br></p><p style=\"text-align: justify; \"><b>Mandatory Quarantine & Testing Rules   </b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Mandatory RT-PCR Test 72 hrs prior departure<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>2 doses of vaccine completed</p> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Turkey Travel Package, Turkey Holiday and Honeymoon Tour Package','Tour to Turkey, Best Package Turkey, Book Turkey Tour, Book Turkey Holiday Package, Cheap Turkey Package, Best Turkey Honeymoon Package, Explore Turkey Package, Turkey Honeymoon, Turkey Trip Deals, Best Deals Turkey.','Turkey Packages - Explore and book your Turkey tour & travel packages at affordable price with INeedTrip.com. Click now to get exclusive Turkey holiday deals.','','','222_1691496363.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,'Tanzania','tanzania','Tanzania',214,'214_1627387711.jpg',0,'2021-04-15 15:44:05','2021-04-15 15:44:05','1','0',NULL,'<p style=\"text-align: justify; \"><b>A short guide to Tanzania</b> - There really is something to suit each sort of holidaymaker in Tanzania from amazing game reserves abounding with natural life to wonderful beaches, luxurious accommodation and unimaginable culture and food. The enchantment of Tanzania is difficult to beat similar to the impressive number of choices it presents.&nbsp;</p><p style=\"text-align: justify; \">With choices from visiting the awesome safaris in African wildlife, the quiet encompasses of the wonderful lakes, the most noteworthy mountain in Africa, and a walk around the diverse Stone Town, here are some of the best reasons this incredible region of East Africa brings to the table. Tanzania tour package for a thrilling experience!</p><p style=\"text-align: justify; \"><b>Reasons to visit Tanzania</b></p><p style=\"text-align: justify; \"><b>The Great Migration</b></p><p style=\"text-align: justify;\">Africa is loaded with amazing wildlife encounters however one of the most marvelous to witness is the Great Migration. A once in a blue moon insight and on the bucket list of numerous a voyager to Africa, none can outperform this amazing display: 1,000,000 wildebeest crossing the plains of the Serengeti looking for fresh grass while overcoming hunters and risky river crossings. Tanzania Packages for a unique holiday experience!</p><p style=\"text-align: justify; \"><b>The Masai People</b></p><p style=\"text-align: justify;\">The Masai Mara people of East Africa live in the southern Kenya and northern Tanzania along the Great Rift Valley in arid and semi-arid region. They\'re notable for the uncommon red material they wear which is known as a Shuka and their exceptionally vivacious traditions. They welcome guests to their area to encounter their culture and way of life direct. Tanzania holiday package, time to experience something different!</p><p style=\"text-align: justify;\"><b>Mount Kilimanjaro</b></p><p style=\"text-align: justify;\">Situated in North Eastern Tanzania, Kilimanjaro is the most elevated mountain in Africa and can be seen far from Kenya. The mountain addresses an amazing life power for the local Chagga individuals and every one of the people who have made their lives around the mountain, giving rich volcanic soils for agriculture and an unending wellspring of fresh spring waters. 75,000 individuals climb Kilimanjaro consistently so it isn\'t the most immaculate mountain, nor is it the most exhausting, but it is a remarkable incredible sight and enthusiastically suggested for anybody with even an ambiguous interest in climbing mountains. For a breathtaking experience opt for Tanzania tour package!</p><p style=\"text-align: justify;\"><b>&nbsp;Zanzibar</b></p><p style=\"text-align: justify;\">What would better than enjoying a safari adventure through Tanzania than spend some time unwinding in Zanzibar in one of its white sand beaches. Known as the Spice Island, Zanzibar has brought guests from different terrains since the days of yore: Arabs, Indians, Persians, Chinese, and a lot more have all cruised their vessels into Zanzibar\'s harbor throughout the long term, bowed on exchange and some of the time loot. Tanzania Packages will surely woo you!</p><p style=\"text-align: justify;\">Make a point to visit Stone Town to see its spice markets and eminent Arabic architecture. If diving is more your thing, figure out how to plunge at one of the numerous dive centers the local resorts brag, the waters around the island are extremely clear and host an immense variety of marine life. Tanzania holiday package to experience something different!</p><p style=\"text-align: justify;\"><b>Wildlife and Birdlife&nbsp;</b></p><p style=\"text-align: justify;\">Tanzania has the biggest fixation and variety of wild creatures in Africa and there are more than 1000 bird species to spot in the country. Tanzania is home to some of the most loved national parks and game reserves including the Selous Game Reserve, which is the largest game reserve and home to in excess of 120,000 elephants, 2000 rhinos, and 160,000 wild oxen. Selous is likewise home to thousands of crocodiles, hippos, and wild dogs. Tanzania honeymoon package for a romantic experience in the wild!</p><p style=\"text-align: justify;\"><b>Popular places to visit in Tanzania</b></p><p style=\"text-align: justify;\">Home to some of Africa’s largest parks and reserves, Tanzania is your quintessential safari destination. It’s probably the best spot to visit if you want to observe part of the Great Migration when many thousands of wildebeest follow the downpours between Kenya’s Masai Mara and the Serengeti’s plains. You can stay in a remote camp in Nyerere National Park, where waterways and streams draw in hippo, giraffes, and brilliantly plumed birds. Or on the other hand visit the Ngorongoro Conservation Area, where a huge volcanic crater structures a natural sanctuary for the Big Five. Go for the Tanzania holiday package if you want to explore the best!</p><p style=\"text-align: justify;\"><b>Places to visit in Tanzania:</b></p><p style=\"text-align: justify;\">Serengeti National Park, Mount Kilimanjaro, Ngorongoro Conservation Area, Mnemba Island, Ol Doinyo Lengai, Lake Tanganyika, Arusha City, Olduvai Gorge, Selous Game Reserve, Old Fort of Zanzibar, National Museum of Tanzania, Tarangire National Park, Pemba Island, Lake Manyara National Park,&nbsp;</p><p style=\"text-align: justify;\"><b>Things to do in Tanzania</b></p><p style=\"text-align: justify;\">While the Serengeti is the main tourist attraction, there are many activities to indulge in Tanzania other than viewing the wild beast. Here are a few things that will tempt you to make your next African Adventure in Tanzania thrilling. From climbing Kilimanjaro and seeing the Great Migration to lazing on a sugar-white beach on Zanzibar, Tanzania is the ideal spot for any traveler’s bucket list. You should definitely try it out when visiting Tanzania. For a thrilling and adventurous experience go for Tanzania Packages!</p><p style=\"text-align: justify;\"><b>Top exciting things to do in Tanzania:</b></p><p style=\"text-align: justify;\">1.<span style=\"white-space:pre\">	</span>Go on a safari&nbsp;</p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>Witness the Great Migration&nbsp;</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>Climb Mount Kilimanjaro</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Safari in the Serengeti National Park</p><p style=\"text-align: justify;\">5.<span style=\"white-space:pre\">	</span>Hot air balloon safari over the Serengeti Plains</p><p style=\"text-align: justify;\">6.<span style=\"white-space:pre\">	</span>Scuba diving in Zanzibar</p><p style=\"text-align: justify;\">7.<span style=\"white-space:pre\">	</span>Explorer the beaches of Zanzibar</p><p style=\"text-align: justify;\">8.<span style=\"white-space:pre\">	</span>Visit a Masai Village</p><p style=\"text-align: justify;\"><b>Shopping in Tanzania</b></p><p style=\"text-align: justify;\">Shopping in Tanzania is very explicit. In this country, you can purchase just things with traditional African flavor. Clothing, which is offered by local shopping centers, is made of normal textures. These outfits are intended for ocean-side diversion or safaris. Shopping centers and markets sell brilliant pareos, light trousers, t-shirts, shorts, and scarves. You can find large stores just in Dar es Salaam, Dodoma, and Zanzibar. Tanzania tour package for an exciting holiday experience!</p><p style=\"text-align: justify;\">Nevertheless, the selection of gifts in Tanzania is enormous. All local products are symbols of Africa. You can carry with you an assortment of jewelry, wooden masks and statuettes, leather goods, and drums. An extraordinary thing is jewelry made of tanzanite. This precious stone, tanzanite is mined at the foot of Kilimanjaro. Nothing is exciting than opting for the Tanzania tour package!</p><p style=\"text-align: justify;\">1.<span style=\"white-space:pre\">	</span>Maasai Market Curio and Crafts</p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>Coffee plantations in Arusha</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>Kizimbani and Kindaichi Spice Plantations</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Msasani City Mall for High-end Boutiques</p><p style=\"text-align: justify;\">5.<span style=\"white-space:pre\">	</span>Mwenge Woodcarvers Market</p><p style=\"text-align: justify;\">6.<span style=\"white-space:pre\">	</span>Shanga Shanga Cultural Tour</p><p style=\"text-align: justify;\">7.<span style=\"white-space:pre\">	</span>Tingatinga Arts Cooperative Society</p><p style=\"text-align: justify;\"><b>The Food in Tanzania</b></p><p style=\"text-align: justify;\">Tanzanian cooking is a blend of traditional African food, with a solid Arabic/Indian impact, particularly along the coast and in Zanzibar. Encircled by the sea, Zanzibar is eminent for its fish with most hotels in offering a fabulous assortment of new seafood menus. For a definitive foodie experience, try the food in the Stone Town night food market. Offering an assortment of tasty dishes, this exuberant market is an absolute necessity to encounter the local culture and the people. Your Tanzania holiday package is waiting for you!</p><p style=\"text-align: justify;\"><b>How to reach Tanzania?</b></p><p style=\"text-align: justify;\"><b>By Air</b></p><p style=\"text-align: justify;\">Tanzania has three international airports at Zanzibar, Dar es Salaam, and Kilimanjaro. Their national airline flies to all the continents of the world- Asia, Europe, and Africa. Fly now for a mesmerizing romantic experience, go for the Tanzania honeymoon package!</p><p style=\"text-align: justify;\"><b>By Rail</b><br></p><p style=\"text-align: justify;\">There are two train services in Tanzania that interface the adjoining nations like Kenya, Rwanda, Zambia, and Burundi.&nbsp;</p><p style=\"text-align: justify;\"><b>By Road</b></p><p style=\"text-align: justify;\">Tanzania is linked with all its adjoining areas through well-constructed highways and there are buses, minibusses, and hired vehicles easily available at the border crossing.</p><p style=\"text-align: justify;\"><b>Best time to visit Tanzania</b></p><p style=\"text-align: justify;\">Tanzania has a tropical climate that fluctuates by region and height. The coast is for the most part hot and sticky, while the low-lying parks are cool and dry. The ideal time to visit Tanzania is from July to October during the country’s driest season. This corresponds with the Great Migration river crossings; in any case, all the parks offer astounding wildlife sightings during this time as the grasses and shrubs are basically thick. Tanzania honeymoon package for a unique romantic and awe-inspiring vacation!</p><p style=\"text-align: justify;\"><b>Things to pack for your trip to Tanzania</b></p><p style=\"text-align: justify;\">1.<span style=\"white-space:pre\">	</span>Layered, versatile clothing</p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>Comfortable shoes</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>Sun protection</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Medical kit</p><p style=\"text-align: justify;\">5.<span style=\"white-space:pre\">	</span>Day bag</p><p style=\"text-align: justify;\">6.<span style=\"white-space:pre\">	</span>Toiletries</p><p style=\"text-align: justify;\">7.<span style=\"white-space:pre\">	</span>Gadgets</p><p style=\"text-align: justify;\">8.<span style=\"white-space:pre\">	</span>Binoculars</p><p style=\"text-align: justify;\">9.<span style=\"white-space:pre\">	</span>Swahili phrasebook</p><p style=\"text-align: justify;\">10.<span style=\"white-space:pre\">	</span>Entertainment</p><p style=\"text-align: justify;\"><b>Is it safe to travel to Tanzania?</b></p><p style=\"text-align: justify;\">Yes, Tanzania is safe to travel to. But, you do have to play it safe and stay aware of government travel advisories. Keep away from isolated areas, particularly secluded stretches of the ocean side.&nbsp;</p><p style=\"text-align: justify;\"><b>Do Indians need visas to travel to Tanzania?</b></p><p style=\"text-align: justify;\">Indian nationals need to get visas before flying down to Tanzania, for tourism or business reason. Indians can now apply for an Online Visa to visit the United Republic of Tanzania (both Zanzibar and Tanzania Mainland). You can get a Tanzania visa on arrival at the border, but it’s better to apply and get an eVisa on time before flying to Tanzania.</p><p style=\"text-align: justify;\"><b>Mandatory Quarantine &amp; Testing Rules&nbsp; </b>&nbsp;</p><p style=\"text-align: justify;\">1.<span style=\"white-space:pre\">	</span>Mandatory RT-PCR Test 72hrs prior departure</p><p style=\"text-align: justify;\">2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"text-align: justify;\">3.<span style=\"white-space:pre\">	</span>2 doses of vaccine completed</p><p style=\"text-align: justify;\">4.<span style=\"white-space:pre\">	</span>Visit the tourism board website for the latest updates: https://www.tanzaniatourism.go.tz/en</p><p style=\"text-align: justify;\"><b>Quarantine Protocol</b></p><p style=\"text-align: justify;\">1.<span style=\"white-space:pre\">	</span>Mandatory quarantine duration for Indians: 14 days for those showing symptoms</p><div style=\"text-align: justify;\"><br></div>       ',NULL,NULL,NULL,NULL,NULL,'Explore Tanzania Packages, Tanzania Holidays and Honeymoon Package','Tour to Tanzania, Best Package Tanzania, Book Tanzania Tour, Book Tanzania Holiday Package, Cheap Tanzania Package, Best Tanzania Honeymoon Package, Explore Tanzania Package, Tanzania Honeymoon, Tanzania Trip Deals, Best Deals Tanzania.','Tanzania Packages - Explore and book your Tanzania tour & travel packages at affordable price with INeedTrip.com. Click now to get exclusive Tanzania holiday deals.','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,'Macedonia','macedonia','Macedonia',129,'129_1694411842.jpg',0,'2021-07-29 16:27:29','2021-07-29 16:27:29','1','0',NULL,'<div>Traveling to Macedonia can be an exciting experience. Here are some essential tips and information to help you plan your trip:</div><div>1. Visa Requirements:</div><div>Check if you need a visa to enter Macedonia. Visa requirements can vary depending on your nationality. Visit the official website of the Ministry of Foreign Affairs of Macedonia or consult your nearest Macedonian embassy or consulate for up-to-date visa information.</div><div>2. Passport:</div><div>Ensure your passport is valid for at least six months beyond your planned date of departure from Macedonia.</div><div>3. Currency:</div><div>The currency used in Macedonia is the Macedonian Denar (MKD). It\'s advisable to exchange some currency before your trip or withdraw money from ATMs in Macedonia.</div><div>4. Language:</div><div>The official language in Macedonia is Macedonian. English is widely spoken in urban areas and tourist destinations, so communication should not be a significant issue.</div><div>5. Transportation:</div><div>Skopje International Airport is the primary international gateway to Macedonia. You can also enter Macedonia by land from neighboring countries.</div><div>Public transportation, including buses and taxis, is readily available within cities and for intercity travel. Consider renting a car if you plan to explore rural areas.</div><div>6. Accommodation:</div><div>Macedonia offers a range of accommodation options, from budget hostels to luxury hotels. Be sure to book your accommodations in advance, especially during peak tourist seasons.</div><div>7. Attractions:</div><div>Macedonia boasts a rich cultural and historical heritage. Some popular attractions include Skopje (the capital city), Lake Ohrid, Matka Canyon, and various monasteries and archaeological sites.</div><div>8. Safety and Health:</div><div>Macedonia is generally considered a safe destination for travelers. However, it\'s always a good idea to take standard safety precautions, such as safeguarding your belongings.</div><div>Ensure you have travel insurance that covers medical emergencies and repatriation.</div><div>9. Local Customs and Etiquette:</div><div>Respect local customs and etiquette, including dress modestly when visiting religious sites.</div><div>Tipping is customary in restaurants, and it\'s typical to leave a 10% tip.</div><div>10. Electrical Outlets:</div><div>- Macedonia uses Type C and Type F electrical outlets. The standard voltage is 230V, and the standard frequency is 50Hz. If your devices use a different type of plug or voltage, you may need an adapter or converter.</div><div>11. Time Zone:</div><div>- Macedonia operates on Central European Time (CET), which is UTC+1. During daylight saving time, it follows Central European Summer Time (CEST), UTC+2.</div><div>12. Local Cuisine:</div><div>- Enjoy Macedonian cuisine, which includes dishes like kebabs, ajvar (pepper-based condiment), and baklava. Try local wines and rakija, a traditional fruit brandy.</div><div>13. Emergency Numbers:</div><div>- In case of emergencies, dial 112 for assistance.</div><div>Certainly! Here are some of the best places to visit and things to do in Macedonia:</div><div>1. Lake Ohrid:</div><div>Explore the picturesque town of Ohrid, a UNESCO World Heritage Site, and enjoy the crystal-clear waters of Lake Ohrid. Visit the Ohrid Old Town, Ohrid Fortress, and numerous historic churches and monasteries.</div><div>2. Skopje:</div><div>Discover the capital city\'s eclectic architecture, including the Skopje Fortress, the Old Bazaar, and the Stone Bridge. Don\'t miss the impressive statues and monuments throughout the city.</div><div>3. Matka Canyon:</div><div>Experience the natural beauty of Matka Canyon, located near Skopje. Explore caves, take a boat ride on the Treska River, and hike along the picturesque trails.</div><div>4. Bitola:</div><div>Visit Bitola, known as the \"City of Consuls.\" Explore the Old Bazaar, Shirok Sokak Street, and the Heraclea Lyncestis archaeological site.</div><div>5. Kratovo:</div><div>Explore the charming town of Kratovo, famous for its stone bridges, towers, and traditional architecture. Don\'t miss the Kratovo Old Bazaar.</div><div>6. Pelister National Park:</div><div>Enjoy outdoor activities in Pelister National Park, including hiking and skiing in winter. The park is known for its diverse flora and fauna.</div><div>7. Mavrovo National Park:</div><div>Discover the beauty of Mavrovo National Park, which offers opportunities for hiking, skiing, and exploring the Mavrovo Lake area.</div><div>8. St. Naum Monastery:</div><div>Visit the St. Naum Monastery, located on the shores of Lake Ohrid. Enjoy the serene surroundings and take a boat ride to the nearby springs.</div><div>9. Strumica:</div><div>Explore Strumica, known for its vibrant carnival and the beautiful Koleshino Waterfalls. Strumica is also famous for its wine production.</div><div>10. Galicica National Park:</div><div>- Hike or bike in Galicica National Park, situated between Lake Ohrid and Lake Prespa. The park offers stunning views of the lakes and surrounding landscapes.</div><div>11. Kokino Megalithic Observatory:</div><div>- Visit one of the world\'s oldest astronomical observatories, Kokino Megalithic Observatory, to explore ancient stone markers and witness the celestial connections.</div><div>12. Tavche Gravche:</div><div>- Savor traditional Macedonian dishes, including Tavche Gravche (baked beans), shopska salad, and ajvar, at local restaurants and taverns.</div><div>13. Pelagonia Region:</div><div>- Explore the picturesque Pelagonia Region, known for its scenic landscapes, historic villages, and opportunities for outdoor adventures.</div><div>These are just a few of the many incredible places to visit and things to do in Macedonia. The country offers a rich cultural and natural heritage, making it a rewarding destination for travelers.</div><div><br></div><div><br></div><div><br></div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Beauty of Macedonia','Macedonia travel Macedonian heritage Ohrid Skopje Matka Canyon Macedonian cuisine Cultural festivals Macedonian music Solo travel Adventure in Macedonia','\"Embark on a journey to Macedonia, where rich history meets stunning landscapes. Explore ancient sites in Ohrid, savor Macedonian cuisine, and experience the warmth of its culture.\"','','','129_1694411842.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,'Greece','greece','Greece',86,'86_1694409222.jpg',0,'2021-07-29 16:27:29','2021-07-29 16:27:29','1','0',NULL,'<div>If you\'re seeking a luxurious getaway, Greece, with its rich history and stunning landscapes, is your perfect destination. Nestled in the heart of Europe, Greece offers a blend of ancient charm and modern luxury, making it an ideal choice for discerning travelers. From its iconic historical sites to its pristine beaches and luxury resorts, Greece has it all.</div><div><b>Greek Tour Packages:</b> The best way to experience Greece\'s luxury is through carefully crafted Greek Tour Packages. These packages offer a seamless blend of history, culture, and opulence, ensuring that your Greek journey is nothing short of extraordinary.</div><div><b>Greece: Where History Meets Luxury:</b> Greece is not just a destination; it\'s a journey through time. Explore ancient ruins, such as the Acropolis in Athens, and marvel at the birthplace of democracy. Stay in luxury hotels that offer breathtaking views of historical sites, ensuring that you\'re immersed in Greece\'s rich heritage.</div><div><b>Perfect for All:</b> Greece is a versatile destination suitable for solo travelers, couples, and families. With Greek Holiday Packages, you can tailor your trip to suit your preferences and create lasting memories.</div><div><b>Top Places to Visit &amp; Things to Do in Greece</b></div><div>Before you embark on your Greek adventure, here are some must-visit places and activities to include in your itinerary:</div><div><b>Santorini\'s Enchanting Beauty:</b> Santorini, with its iconic blue-domed churches and stunning sunsets, is a must-visit destination. Stay in luxury cave hotels, savor delectable Greek cuisine, and explore the island\'s charming villages.</div><div><b>Historical Marvels in Athens:</b> Explore Athens, the cradle of Western civilization. Visit the Acropolis, the Parthenon, and the National Archaeological Museum to delve into Greece\'s ancient history.</div><div><b>Island-Hopping in the Cyclades: </b>With Greek Island-Hopping Packages, discover the beauty of the Cyclades islands. From Mykonos\' vibrant nightlife to the serene beaches of Naxos, each island offers a unique experience.</div><div><b>Relaxation in Crete:</b> Crete is an island paradise known for its pristine beaches and rich culture. Stay in luxury beachfront resorts, indulge in spa treatments, and explore ancient Minoan ruins.</div><div><b>Delphi\'s Mystical Aura:</b> Delve into Greek mythology at Delphi. Visit the Temple of Apollo and the Delphi Archaeological Museum to connect with Greece\'s spiritual past.</div><div><b>Luxury Resorts in Mykonos:</b> Mykonos is synonymous with luxury. Stay in upscale beachfront resorts, party at world-renowned beach clubs, and enjoy Mykonos\' cosmopolitan vibe.</div><div><b>Greek Cuisine:</b> Savor Greece\'s culinary delights, from fresh seafood and Mediterranean cuisine to traditional dishes like moussaka and souvlaki. Dining in Greece is a luxurious experience in itself.</div><div><b>Wine Tasting in Santorini:</b> Santorini\'s volcanic soil produces exceptional wines. Take a wine-tasting tour and enjoy the island\'s unique vintages while overlooking the caldera.</div><div><b>Water Adventures in Rhodes:</b> Discover the crystal-clear waters of Rhodes through water sports, snorkeling, and boat trips to secluded beaches.</div><div>Luxury Cruises in the Aegean: Experience the Greek islands from the deck of a luxury cruise ship. Sail the Aegean Sea and explore multiple islands in one grand adventure.</div><div><b>Why Choose a Greek Tour Package?</b></div><div>A Greek Tour Package offers convenience, savings, and a curated experience that ensures you make the most of your luxury vacation. Whether you\'re exploring ancient history, basking on beautiful beaches, or enjoying gourmet cuisine, these packages cover it all.</div><div><b>Honeymooning in Greece</b></div><div>Greece is a dream destination for honeymooners. With its romantic sunsets, luxurious accommodations, and charming villages, Greece offers the perfect backdrop for a honeymoon toremember. Greek Honeymoon Packages cater to couples seeking a blend of romance, adventure, and culture.</div><div><b>How to Reach Greece</b></div><div>The best way to reach Greece is by air. Greece is well-connected to major international airports, including Athens International Airport, Thessaloniki Airport, and airports on popular islands like Santorini and Mykonos.</div><div>The ideal time to visit Greece is during the spring (April to June) and fall (September to October) when the weather is pleasant, and the crowds are thinner. However, Greece\'s diverse regions offer year-round attractions, making it a great destination at any time.</div><div><b>Luxury Accommodations in Greece</b></div><div>Luxury accommodations in Greece range from boutique hotels with panoramic views to beachfront resorts with private villas and infinity pools. Choose from a wide range of options to make your Greek getaway truly opulent.</div><div><b>Conclusion: Experience Greece\'s Luxury</b></div><div>Greece, with its blend of history, culture, and natural beauty, offers a luxurious escape for travelers seeking the extraordinary. Whether you\'re exploring ancient ruins, relaxing on pristine beaches, or indulging in gourmet cuisine, Greece promises a luxurious journey that will leave you with unforgettable memories.</div><div>Pack your bags and embark on a luxurious adventure in Greece. Let the beauty and charm of this Mediterranean paradise captivate your soul!</div><div><br></div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Luxury Escapes in Greece','Luxury Greece Greek tour packages Greece travel Greek islands Santorini Athens history Mykonos luxury resorts Greek cuisine Honeymoon in Greece Greek culture Greek archaeological sites Greek beaches Greek mythology Mediterranean vacations Greek island-hopping Greece cruise','\"Experience Greece\'s luxury and history. Explore ancient ruins, relax on pristine beaches, and savor Mediterranean cuisine. Book your Greek tour package today!\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,'Albania','albania','Albania',2,'2_1692948978.jpg',0,'2021-07-29 16:27:29','2021-07-29 16:27:29','1','0',NULL,'<div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><b>Albania - \"Unveiling Albania”</b></span></font></div><div><br></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">A hidden gem nestled between the Adriatic Sea and the rugged embrace of the Balkan Mountains. Here, where history and natural beauty intertwine, a land of enchantment and exploration awaits.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">With its pristine beaches and azure waters, the Albanian Riviera beckons like a siren\'s call. Feel the soft sand beneath your feet and let the gentle waves serenade your senses. As the sun dips below the horizon, the coastline transforms into a canvas of warm hues, casting a spell that captures the heart.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">Venture inland, and you\'ll find a landscape painted with emerald valleys and ancient castles. The UNESCO-listed Gjirokastër and Berat unveil stories of a bygone era etched into stone, while the mystical ruins of Butrint whisper secrets of civilizations long past, waiting for you to listen.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">The Albanian spirit is alive in its hearty cuisine. Taste the rich flavors of traditional dishes like the mouthwatering qofte (meatballs) and the savory byrek, a pastry filled with stories of generations mastering the art of flaky perfection.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">The warmth of Albanian hospitality is like a sunbeam breaking through the clouds. The locals welcome you with open arms, inviting you to share in their traditions and celebrations. The sound of polyphonic singing resonates, a reminder of the unity that runs deep through the country\'s cultural tapestry.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">For the intrepid traveler, the Accursed Mountains offer an adventure into the wild. Here, where time stands still, the beauty of untouched nature unfurls in panoramic views and hidden valleys. Hike through breathtaking landscapes, forging connections with both the land and the fellow explorers you meet along the way.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">Albania\'s history is a storybook, and its capital, Tirana, is a chapter waiting to be explored. Modern cafes and bustling markets coexist with remnants of the past, creating a vibrant tapestry where the old and the new dance in harmony.</span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\"><br></span></font></div><div><font color=\"#374151\" face=\"Roboto, sans-serif\"><span style=\"font-size: 16px; white-space-collapse: preserve;\">As you leave this land, know that Albania\'s charm has woven itself into your soul. Its untamed landscapes, rich culture, and warm-hearted people will linger in your memories, reminding you that true beauty is often found in the places less traveled.</span></font></div><div><br></div>',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'','','','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,'Egypt','egypt','Egypt',65,'65_1694177426.png',0,'2021-11-15 21:08:30','2021-11-15 21:08:30','1','0',NULL,'<div>Discover the Mysteries of Egypt</div><div>Egypt, a land of ancient wonders and modern marvels, invites travelers to explore its captivating blend of history, culture, and natural beauty. From the iconic Pyramids of Giza to the tranquil shores of the Red Sea, Egypt offers an enchanting journey for adventurers, history enthusiasts, families, couples, and solo explorers alike.</div><div>Egypt: A Tapestry of Rich History and Natural Splendors</div><div>As you embark on your Egyptian adventure, prepare to be immersed in a tapestry of history and natural wonders.</div><div>1.<span style=\"white-space:pre\">	</span>The Enigmatic Historical Sites&nbsp;</div><div>Egypt\'s landscapes are dotted with awe-inspiring historical sites, from the enigmatic Sphinx to the temples of Luxor and Karnak. Marvel at the pyramids and tombs of pharaohs that have stood the test of time.</div><div>2.<span style=\"white-space:pre\">	</span>Unique Encounters with Ancient Treasures&nbsp;</div><div>Step back in time as you explore the treasures of Tutankhamun and other ancient artifacts in world-renowned museums and archaeological sites.</div><div>3.<span style=\"white-space:pre\">	</span>Bustling Cities and Cultural Delights&nbsp;</div><div>Delve into the vibrant culture of Cairo, Alexandria, and Aswan. Savor traditional Egyptian cuisine, shop in bustling bazaars, and immerse yourself in the local way of life.</div><div>4.<span style=\"white-space:pre\">	</span>Idyllic Beach Retreats</div><div>&nbsp;Egypt\'s coastline along the Red Sea offers pristine beaches and world-class diving and snorkeling opportunities. Discover vibrant coral reefs and exotic marine life.</div><div>The Best Time to Visit Egypt</div><div>The ideal time to visit Egypt depends on your preferences and the experiences you seek.</div><div>1.<span style=\"white-space:pre\">	</span>Mild Winters and Comfortable Summers</div><div>&nbsp;Egypt enjoys mild winters from November to April, making it an excellent time for sightseeing. Summers can be hot but are perfect for beach lovers and water activities.</div><div>2.<span style=\"white-space:pre\">	</span>Festival Highlights&nbsp;</div><div>Experience the magic of festivals like Ramadan, Eid al-Fitr, and Eid al-Adha, which offer unique cultural insights.</div><div>Top Destinations to Include in Your Egypt Tour Package</div><div>Egypt boasts a wealth of destinations to explore. Here are some must-visit places to include in your tour package:</div><div>1.<span style=\"white-space:pre\">	</span>Cairo: The Vibrant Capital</div><div>&nbsp;Explore Cairo\'s bustling streets, visit the Egyptian Museum, and witness the grandeur of the Pyramids of Giza and the Sphinx.</div><div>2.<span style=\"white-space:pre\">	</span>Luxor: A Window to Ancient Egypt</div><div>&nbsp; &nbsp; &nbsp; &nbsp;Delve into Luxor\'s archaeological wonders, including the Valley of the&nbsp; &nbsp; &nbsp;Kings, Karnak Temple, and Luxor Temple.</div><div>3.<span style=\"white-space:pre\">	</span>Aswan: Tranquil Beauty&nbsp;</div><div>Discover the serene charm of Aswan, visit the High Dam, take a felucca ride on the Nile, and explore the captivating Philae Temple.</div><div>4.<span style=\"white-space:pre\">	</span>Alexandria: A Mediterranean Gem</div><div>&nbsp;Stroll along Alexandria\'s picturesque Corniche, visit the Bibliotheca Alexandrina, and explore the historic Catacombs of Kom El Shoqafa.</div><div>5.<span style=\"white-space:pre\">	</span>Red Sea Resorts: Underwater Paradise</div><div>&nbsp;Relax and rejuvenate in world-class resorts like Sharm El Sheikh and Hurghada, known for their stunning beaches and vibrant coral reefs.</div><div>6.<span style=\"white-space:pre\">	</span>Nile River Cruises: A Voyage Through Time</div><div>&nbsp;Embark on a Nile River cruise and witness the timeless beauty of Egypt\'s riverbanks, dotted with ancient temples and villages.</div><div>Experiencing Egyptian Culture and Lifestyle</div><div>Egypt\'s culture is a captivating blend of ancient traditions and modern influences.</div><div>1.<span style=\"white-space:pre\">	</span>Ancient History and Pharaonic Legacy</div><div>&nbsp;Explore the fascinating history of ancient Egypt, from the time of the pharaohs to the present day, through cultural shows and heritage tours.</div><div>2.<span style=\"white-space:pre\">	</span>Traditional Cuisine and Dining Experiences&nbsp;</div><div>Indulge in Egyptian cuisine, savor aromatic dishes like koshari and falafel, and embrace the warmth of Egyptian hospitality.</div><div>3.<span style=\"white-space:pre\">	</span>Desert Adventures and Oasis Retreats&nbsp;</div><div>Embark on desert safaris and discover the mystique of Egypt\'s oases, like Siwa and Bahariya.</div><div>Egypt Tour Packages for Adventure Enthusiasts</div><div>Egypt offers a treasure trove of adventures for thrill-seekers.</div><div>1.<span style=\"white-space:pre\">	</span>Desert Expeditions</div><div>&nbsp;Embark on off-road desert adventures and camping under the starlit Egyptian sky.</div><div>2.<span style=\"white-space:pre\">	</span>Scuba Diving and Snorkeling&nbsp;</div><div>Explore the underwater wonders of the Red Sea with world-class diving and snorkeling experiences.</div><div>3.<span style=\"white-space:pre\">	</span>Hot Air Balloon Rides&nbsp;</div><div>Soar above Luxor\'s ancient sites in a hot air balloon for a breathtaking view of the historical landscape.</div><div>4.<span style=\"white-space:pre\">	</span>Hiking and Trekking</div><div>Challenge yourself with treks through Egypt\'s stunning desert and mountain landscapes.</div><div>Egypt Tour Packages for Solo Travelers</div><div>Egypt welcomes solo travelers with open arms and provides unique experiences for those exploring alone.</div><div>1.<span style=\"white-space:pre\">	</span>Cultural Immersion</div><div>&nbsp;Engage with locals through cultural tours, language classes, and community-based experiences.</div><div>2.<span style=\"white-space:pre\">	</span>Guided Tours and Group Activities&nbsp;</div><div>Join guided tours and group activities to meet fellow travelers and explore Egypt\'s wonders together.</div><div>Conclusion: Embrace the Magic of Egypt</div><div>An Egypt tour package promises an unforgettable blend of historical exploration, cultural discovery, and natural beauty. Whether you\'re gazing upon ancient wonders or diving into the Red Sea, Egypt\'s magic will leave you with memories to cherish forever.</div><div>Pack your bags and embark on a journey to Egypt, where the sands of time reveal stories of the past and adventures await around every corner.</div><div>FAQs about Egypt Tour Packages</div><div>1.<span style=\"white-space:pre\">	</span>Are Egypt tour packages suitable for all age groups?</div><div>&nbsp;Yes, Egypt tour packages cater to travelers of all age groups, offering a wide range of activities and experiences for everyone.</div><div>2.<span style=\"white-space:pre\">	</span>Can I customize my Egypt tour package?</div><div>&nbsp;Many travel agencies offer customizable Egypt tour packages, allowing you to tailor your itinerary to suit your preferences and interests.</div><div>3.<span style=\"white-space:pre\">	</span>What are the best activities to experience in Egypt?&nbsp;</div><div>Top activities in Egypt include visiting historical sites like the Pyramids and Sphinx, cruising the Nile River, diving in the Red Sea, and exploring ancient temples and tombs.</div><div>4.<span style=\"white-space:pre\">	</span>Is travel insurance necessary for an Egypt tour?&nbsp;</div><div>While not mandatory, travel insurance is recommended for any international trip to provide financial protection in case of unexpected events such as trip cancellations, medical emergencies, and lost luggage.</div><div>5.<span style=\"white-space:pre\">	</span>How can I find the best deals on Egypt tour packages?</div><div>&nbsp;To find the best deals on Egypt tour packages, compare offerings from multiple travel agencies, consider traveling during the shoulder or off-peak seasons, and keep an eye out for special promotions and discounts.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discover the Mysteries of Egypt','Egypt travel Egyptian landmarks Pyramids of Giza Nile River cruises Red Sea resorts Egyptian culture Luxor temples Cairo attractions Egypt adventure tours Solo travel Egypt Egyptian cuisine Desert safaris Historical Egypt Archaeological wonders Cultural experiences Egypt Scuba diving Red Sea Ancient history tours Egypt tour packages Pharaonic legacy Egypt solo travel','Explore Egypt\'s wonders: Pyramids, Nile cruises, Red Sea resorts, & rich culture. Embark on an adventure through ancient history. Discover Egypt tour packages!','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,'Sri Lanka','sri-lanka','Sri Lanka',200,'200_1690004989.jpg',0,'2022-02-21 11:16:44','2022-02-21 11:16:44','1','0',NULL,'<span id=\"docs-internal-guid-dfb3edab-7fff-959e-73fd-8737bca173f7\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Welcome to the tropical paradise of Sri Lanka! This beautiful island nation, nestled in the Indian Ocean, is known for its stunning landscapes, rich history, and vibrant culture. A Sri Lanka tour package offers a perfect blend of adventure, relaxation, and exploration. In this article, we will take you on a journey through the highlights of this mesmerizing destination, providing you with all the essential information you need to plan an unforgettable trip.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">The Enchanting Capital City - Colombo</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Your journey begins in Colombo, the vibrant capital city of Sri Lanka. Explore the bustling streets, modern architecture, and charming historical sites. Don\'t miss a visit to the Gangaramaya Temple, a famous Buddhist temple with a fascinating mix of architectural styles. Take a stroll along Galle Face Green, a popular oceanfront promenade, and indulge in some delicious street food from local vendors.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Unraveling Ancient Mysteries in Anuradhapura</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Step back in time as you explore the ancient city of Anuradhapura, a UNESCO World Heritage site. Marvel at the majestic stupas and ruins that date back to the 4th century BC. The Sacred Bodhi Tree, a descendant of the original tree under which Buddha attained enlightenment, is a significant pilgrimage site for Buddhists. </span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">The Cultural Gem - Kandy</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Immerse yourself in the cultural heart of Sri Lanka, Kandy. Visit the Temple of the Sacred Tooth Relic, which houses a tooth of Lord Buddha, and witness the mesmerizing Kandyan dance performance. Stroll through the enchanting Peradeniya Botanical Gardens, home to a vast collection of exotic flora. Take a serene boat ride on Kandy Lake and witness the serene beauty of this picturesque city.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Exploring the Hill Country</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Escape to the cool climate and lush greenery of Sri Lanka\'s hill country. Ella\'s Greenery offers breathtaking views and picturesque hikes. Admire the cascading Ramboda Falls and experience the colonial charm of Nuwara Eliya, often referred to as \"Little England.\" Don\'t forget to explore the stunning Horton Plains National Park, where you can trek to the World\'s End, a breathtaking cliff with panoramic views.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Wildlife Safari in Yala National Park</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Embark on a wildlife safari in Yala National Park, home to an incredible array of wildlife. Look out for elephants, leopards, sloth bears, and buffaloes, popularly known as the \"Big Four.\" The park is also a paradise for birdwatchers, with over 200 bird species to spot. </span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Spiritual Journey to Dambulla Cave Temple</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Discover spirituality at the Dambulla Cave Temple, also known as the Golden Temple of Dambulla. Marvel at the intricate cave art and sculptures that depict the life of Buddha. Take a stroll through the serene Iron Wood Forest nearby and soak in the tranquil ambiance of this sacred site.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Galle - Where History Meets the Sea</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Step into the past at Galle, a fortified city with a rich colonial heritage. Explore the Galle Fort, a UNESCO World Heritage site, and visit the Maritime Archaeological Museum to learn about Sri Lanka\'s maritime history. Relax at the tranquil Jungle Beach, a hidden gem with clear waters and a pristine shoreline.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Experiencing Traditional Village Life in Hiriwadunna</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Get a taste of traditional Sri Lankan village life in Hiriwadunna. Take a memorable bullock cart ride through the village, experiencing the slower pace of life. Enjoy a catamaran ride on the picturesque lake, and savor a traditional Sri Lankan village lunch prepared with love and local flavors.</span></p><h2 dir=\"ltr\" style=\"line-height: 1.6; margin-top: 0pt; margin-bottom: 0pt; padding: 3pt 0pt 4pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Conclusion</span></h2><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 15pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">A Sri Lanka tour package promises an unforgettable journey through a land of diverse landscapes, rich heritage, and warm hospitality. From ancient ruins to pristine beaches, this island paradise has something for every traveler. Whether you seek adventure, relaxation, or cultural exploration, Sri Lanka will captivate your heart and leave you with cherished memories.</span></p><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 15pt;\"><br></p><br></span>      ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'I Need Trip: Sri Lanka Tour Packages and Travel Deals','Sri lanka tour packages, Sri lanka trip, Sri Lanka travel package','Explore the best Sri Lanka tour packages, holiday options, and trip costs from India. Uncover the beauty of Sri Lanka with expert insights and helpful tips','','','200_1691494667.jpeg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,'Singapore','singapore','Singapore',190,'190_1652514738.jpg',0,'2022-03-15 16:39:23','2022-03-15 16:39:23','1','0',NULL,'<div style=\"text-align: justify; \">Singapore is an amazing city, it has an extraordinary area, it brings a great deal to the table, and it is one of the most enchanting places to visit. Even flying there is a remarkable encounter since Singapore Changi Airport is the best airport in the world. Singapore is a cultural mixture country; in this way, you\'ll fit in completely no matter what your cultural background is. Everybody is gladly welcomed and the economy of Singapore gives you rich grounds to begin your own profession. Thus, to move out and start another life, this is the best city for you. It is continually changing its appearance, so the landscape won\'t ever get dull.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">When you move here, you won\'t ever want to leave. The spot has one of the freest economies on the planet, so your example of overcoming adversity is simply already in the works. Let’s find out the reasons to visit Singapore and why it is worth visiting the place. Singapore tour to know more about this ethnically rich place!</div><div style=\"text-align: justify;\"><b><br></b></div><div style=\"text-align: justify;\"><b>Places to visit in Singapore</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">With the splendidly lit lights that influence evening time featuring its modern architecture, it nearly feels like the stars have arrived on the planet. Singapore is known for its high-speed development, noteworthy and new shopping malls, stunning eating settings, and luxury hotels with fantastic perspectives being initiated in the country.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">It makes them energize discotheques to groove your hips and happening nightlife to be savored with your carefree mates. Aside from the whole electro-modern world, Singapore additionally has a few traditional touches amidst innovation to preserve its past. One can investigate the emerald part of Singapore in their Botanical gardens and Pulau Ubin. Singapore tour package for an exciting experience waits for you!</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Top tourist places to visit:</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">Gardens by the Bay, Universal Studios, Botanic Gardens, Singapore Flyer, Changi Museum, S.E.A Aquarium, Little India and Arab Street, Chinatown, Singapore Zoo, Changi Beach, Sentosa Island, Punggol Waterway Park, Pulau Ubin, Clarke Quay, Orchard Road</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Things to do in Singapore</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">Picking the best things to do in Singapore was no simple errand. This is a city blasting to the creases with noteworthy attractions, invigorating activities, and a lot of road trips for all the family. Nearly everybody will have seen a picture of the city\'s symbol, the Merlion, and this makes our rundown close by the Marina Bay Sands and Singapore Flyer, the two of which offer amazing outlooks across the famous Singapore skyline. Singapore packages from India for an action-packed experience!</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">This minuscule island state is a place where there are contrasts; Chinatown and Little India, and shopping centers by their own doing, address the amazing ethnic variety of the country. For nightlife, we take care of you as well. Taste on a Singapore Sling at the sumptuous Raffles Hotel, or make a beeline for Clarke Quay for a portion of the urban areas\' most beautiful eating and drinking spots. Find the best things to do in our rundown of Singapore\'s best activities.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Things to do:</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">Visit Marina Bay, visit Gardens by the Bay, trip to Sentosa, Explore Chinatown, Orchard Road for shopping, Clarke Quay’s for boating, treetop walk at MacRitchie Reservoir, visit Singapore Flyer- the world’s largest observation wheel,  go to the Marina Bay Sands casino resort, G-Max Reverse Bungy, Sungei Buloh Nature Park, enjoy cruises and boat rides, enjoy Singapore night safari,</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Places to go shopping in Singapore</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">Singapore is well known for being a shopper\'s paradise. It would be intriguing to take note that the minuscule city packs in more malls per square mile than in other countries in the world, and that implies you have enough of a chance to go a little overboard on a solitary day during your outing here. What\'s more, if indoor shopping with big brands and flagship stores isn\'t your favorite thing in the world, you can definitely relax. For those newly married couples, choose for Singapore honeymoon package for more romance & fun.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">You can shop from the local markets, the best places to shop in Singapore is best in open street markets and ethnic areas. Searching for definite knowledge? Here is the Singapore shopping guide that will take you to the country\'s best shopping arcades and popular malls, other than encouraging you on things to purchase and the best gifts to pick.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Best places to shop:</b></div><div style=\"text-align: justify;\"><div>* Orchard road</div><div>* The Shoppes at Marina Bay Sands</div><div>* Lucky plaza</div><div>* Suntec City Complex</div><div>* Little India Arcade</div><div>* Chinatown Street Market</div><div>* Mustafa Centre</div><div>* Haji Lane</div><div>* Holland village</div><div>* Bugis Street Market</div><div>* Clarke Quay</div></div><div style=\"text-align: justify;\"><b><br></b></div><div style=\"text-align: justify;\"><b>Amazing places to eat</b><br></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">For the individuals who love to have special meals, and who love to try a wide range of cuisines, Singapore will satisfy your desires. For the people who lean toward Asian food, Lime is the café you need to visit, and in the occasion you need Japanese cuisine, visit a restaurant called Ikoi. Lion City lets you enjoy an authentic gastronomic experience. For an extensive Italian food buffet, visit Basilico. Obviously, if you don\'t know what you need precisely, Carousel is the spot for you. It has French, Japanese, Asian and any remaining sorts of dinners, so pick the one you see as the most charming. Opt for Singapore holiday packages for an exceptional vacation experience!</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Best time to visit Singapore</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">In spite of the fact that you can visit Singapore all year round, the best months to visit Singapore is from December to June. The long periods of February to April fall in Singapore’s dry season and the nation has a minimal measure of downpour, the least moistness, and the most daylight. Singapore has a genuinely steady climate and inviting enough for voyagers throughout the entire year for touring. But, in case you wish to keep away from any groups rushing the spots, the best months to visit Singapore are from July to November. Choose <a href=\"https://www.tripsgateway.com/holidays/singapore/singapore-tour-packages\">Singapore honeymoon packages</a> from Delhi for the best romantic vacation!</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">In case you are simply hoping to visit Sentosa Island to take it easy, with a beach and outdoor activities right under sight then the mid-year-long stretches ofJune to August are the best opportunity to visit Singapore.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">If you are a shopaholic and need to visit Singapore just for your adoration of shopping, it is best to visit the country in between June to August. That is the best season to visit Singapore for shopping as The Great Singapore Sale is coordinated during this period.</div><div style=\"text-align: justify; \"><br></div><div style=\"text-align: justify; \">The Chinese New Year is one of the vainglorious celebrations of Singapore that is either in January or February. It relies upon the primary full moon of the year. Other essential occasions when you can visit are the Hari Raja which occurs in June, Singapore\'s National Day in August, and the mid-fall celebrations that happen in October.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">The term from July and August is certifiably not an exceptionally ideal to visit Singapore, however offering you a chance to break the absolute best flight and hotel deals. In case you are an independent explorer, you really should not stress over the best months to visit Singapore, as it has a great deal in the store consistently.</div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><b>Do you really want a visa to visit Singapore?</b></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\">Visa applications are expected for Indian citizen passport holders. If you are an Indian, you will require a visa to enter Singapore. The visa for Singapore is substantial for 30 days and has a single entry grant. In view of your motivation of visit, you can apply for a Singapore traveler visa or a Singapore business visa. The 3-venture visa application process is simple. You just need to pay online, share your passport and required documents and we will get your visa handled. Choose the Singapore tour package from India for a hassle-free holiday experience!</div><div style=\"text-align: justify; \"><br></div>          ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Singapore Tour package, Holiday and Honeymoon Package from India','Book Singapore Tour Package, Singapore Tour from Delhi, Singapore Travel Packages, Singapore Itinerary, Singapore Holiday Package from Delhi, Singapore Travel Package, Singapore Economy Tours, Economy Tours of Singapore, Economy Tour Singapore, Cheap Singapore Tours, Tours of Singapore, Tours to Singapore, Cheap Packages to Singapore, Tour from Mumbai To Singapore, Holiday Package to Singapore from Delhi, Singapore Package from kolkatta, Singapore Tours from Bangalore, Holiday Package to Singapore.','Singapore Package - Book Singapore holiday and honeymoon tour packages fron Delhi India with luxury beach resorts, sightseeing and airfare at Ineedtrip. Get offers on Singapore Travel Packages.','','','190_1691495524.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,'Thailand','thailand','Thailand',215,'215_1690005033.jpg',0,'2022-03-16 16:32:52','2022-03-16 16:32:52','1','0',NULL,'<p style=\"text-align: left; \"><span style=\"text-align: justify;\">Thailand has arisen as one of the most visited tourist destinations. What could be the reasons that individuals very much want to go to this colorful country? It may be the quiet beaches, exotic cooking, great temples and landscape, rich history, or a social and archeological destination, the list goes on. Thailand is loaded with Buddha statues. Some are standing, some are sleeping, and others are simply meditating. They come in all sizes and are made of stone, metal, or emeralds. There are in excess of 40,000 Buddhist temples in the nation, and each has its novel person. You can get glimpses of the best temples in Thailand, as well as encompassing nations. </span></p><p style=\"text-align: justify;\">Thailand is one of the most visited countries in the world. Individuals go there for a wide range of reasons from family holidays to encountering a full moon party. Thailand gives you a ton, from a feeling of energy, of experience to furious urban areas to look into. It gives a feeling of marvel and realizing that anything can occur. Check out the best Thailand packages from Delhi.<br></p><p style=\"text-align: justify;\"><b>Places to visit in Thailand</b><br></p><p style=\"text-align: justify;\">A list of must-dos vacation spots for countless individuals, Thailand really has it all-the tumultuous appeal of Bangkok, the epic tropical jungles, the absolute best road food on the planet, and palm-lined beaches that appear to continue until the end of time. Whatever your justification behind getting away to the Land of Smiles, Thailand will not bore you. Thailand is home to a well-connected network of trains and budget airlines that can take you starting with one focal point and then onto the next fast. If you\'re exploring locations and what should be done on your next tropical vacation, look at our rundown of the best places to visit in Thailand. Go for Thailand packages from Delhi, India for a stress-free vacation.<br></p><p style=\"text-align: justify;\"><b>Places to visit:</b><br></p><p style=\"text-align: justify;\">Bangkok, The Grand Palace, Ayutthaya, Chiang Mai, Phuket, Pattaya, Krabi, Koh Samui, Chiang Rai, Floating markets  &  more<br></p><p style=\"text-align: justify;\"><b>Things to do in Thailand</b><br></p><p style=\"text-align: justify;\">Quiet Shrines, stupendous skyscrapers, and the best road food on earth are generally hanging tight for you in Bangkok. In any case, outside the capital, there\'s island fun on Phuket or travel north for slope clans and superb climbs. Go for Thailand honeymoon packages from Delhi for fun & thrilling experience!<br></p><p style=\"text-align: justify;\">Carrying on with the Thai daily routine consequently rises to experience the lap of luxury in this Southeast Asian place where there is bounty. There\'s simply such a lot of impressiveness to stick on your must-do list. For greater spenders, Bangkok has the absolute most exhilaratingly vertiginous roof bars you will love drinking there, while Patong is the spot to party.<br></p><p style=\"text-align: justify;\">Any place you head, have confidence, temples and Buddha statues come as standard. Fourteen days will not do justice and you will feel like extending your holiday. Here is our pick of the most thrilling activities to do in Thailand. <br></p><p style=\"text-align: justify;\"><b>Things to do:</b><br></p><p style=\"text-align: justify;\">Go island hopping in Thailand, get a sak yant tattoo, ride a tuk tuk, watch a muay Thai fight, take a street food tour, visit a floating market, visit the white temple in Chiang Rai, visit the grand palace, eat pad Thai, get a Thai massage, watch the sunset at a sky bar in Bangkok, take a Thai cooking class, Chiang Mai ladyboy show, party on Khaosan road, visit the beach, go diving, visit elephant nature park, try durian fruit, stay in an overwater bungalow, visit the temples in Chiang Mai, explore a night market, hike koh Phi Phi viewpoint, Khao Sok Lake national park, visit Thailand’s crazy market, the train market, visit big Buddha<br></p><p style=\"text-align: justify;\"><b>Eat Delicious Food</b><br></p><p style=\"text-align: justify;\">Thai food is known all over the planet to be delectable, and you can wager it\'s significantly more delicious in Thailand itself. The best food comes from the street food, which presents the most delicious, spiciest food you are probably going to find in the entire country. Simply track down where the locals are jamming around to find the most elite spots to get your dinner or lunch.<br></p><p style=\"text-align: justify;\">Thailand without food is like France without wine or England without fried fish and French fries. If there is one thing you should try is the local pork noodle soup. It is one of only a handful of exceptional dishes you can\'t view as somewhere else on the planet. Also, for all the vegetarians, there are also many local vegan dishes that are mouth relishing. Opt for Thailand holiday packages for an exciting vacation!<br></p><p style=\"text-align: justify;\"><b>Shopping in Thailand</b><br></p><p style=\"text-align: justify;\">Bangkok is one of the best shopping cities! Bangkok has an awesome gigantic present-day shopping center with hip international and Asian style design brands. Also, when you venture out in the city, you can keep on shopping a wide range of cool and modest stuff at business sectors and night markets.<br></p><p style=\"text-align: justify;\">You will not find any other city on the planet with this sort of awesome blend of markets and malls. You can shop local designs at one of the markets in Bangkok at an affordable price, and also extravagance brands like Louis Vuitton and Chanel in a shopping center close by. The entrancing differentiation and assortment are what you like the most about shopping in Bangkok. You can track down everything here! Enjoy a romantic vacation with Thailand honeymoon packages!<br></p><p style=\"text-align: justify;\">It can somewhat be troublesome and overpowering to find the best shopping in Bangkok since the city has so many shopping malls and markets.<br></p><p style=\"text-align: justify;\"><b>Best time to visit Thailand</b><br></p><p style=\"text-align: justify;\">Though, the environment shifts all through Thailand, you can visit throughout the entire year. The best season to visit Thailand is from November till early April. This is the point at which the sky is done pouring and the sky clears up. The days are warm and ideal for an excursion at the beach or for looking at the various legacy locales. April onwards the hotness gets abusive and June is the beginning of the blustery season once more.<br></p><p style=\"text-align: justify;\">Thailand, the gem of Southeast Asia, is otherwise called the Land of Smiles and you will see its kin welcoming you energetically like you are missing a companion getting back. The nation is grown to the point of offering you a luxurious holiday in a portion of its ultra-modern cities, similar to Bangkok and Chaing Mai. But then it holds enough of its natural wildness to offer you circumstances that give you an unexpected direction and give you a unique experience.<br></p><p style=\"text-align: justify;\">Beaches, mountains, islands, and everything in the middle, Thailand is an exotic, ceaseless blend of surprising encounters that will leave you requesting more. Whether you are planning a trip with your family, or have chosen to head there with companions, Thailand offers you much to see and appreciate. Thailand packages from India lets you explore the best of Thailand and know more about this gorgeous kingdom.<br></p><p style=\"text-align: justify;\"><b>Do you need a visa to visit Thailand?</b><br></p><p style=\"text-align: justify;\">Indeed, all Indians need visa to visit Thailand. Depending upon the reason for your visit, if you\'re exclusively going for tourism, for not more than two weeks you can get a visa on arrival. In case you\'re going there for a longer time period, like more than two weeks, or are going there for a business visitor to visit your loved ones, you might have to apply for a Thailand visa earlier before your departure.<br></p><p style=\"text-align: justify;\"><b><i>Check out the Thailand trip cost from India today for an astonishing vacation!</i></b><br></p><p style=\"text-align: justify;\">·         Siam Paragon – Siam Area<br></p><p style=\"text-align: justify;\">·         Siam Center – Siam Area<br></p><p style=\"text-align: justify;\">·         Icon Siam – Riverside Area<br></p><p style=\"text-align: justify;\">·         Central World – Siam Area<br></p><p style=\"text-align: justify;\">·         Siam Discovery – Siam Area<br></p><p style=\"text-align: justify;\">·         MBK – Siam Area<br></p><p style=\"text-align: justify;\">·         Emporium – Sukhumvit Area<br></p><p style=\"text-align: justify;\">·         EmQuartier – Sukhumvit Area<br></p><p style=\"text-align: justify;\">·         Central Chitlom – Sukhumvit Area<br></p><p style=\"text-align: justify;\">·         Terminal 21 – Sukhumvit Area<br></p><p style=\"text-align: justify;\">·         Pantip Plaza – Pratunam Area<br></p><p style=\"text-align: justify;\">·         Chatuchak Weekend Market<br></p><p style=\"text-align: justify;\">·         Asiatique – Riverside Area<br></p><p style=\"text-align: justify;\"><b>Best time to visit Thailand</b><br></p><p style=\"text-align: justify;\">Though, the environment shifts all through Thailand, you can visit throughout the entire year. The best season to visit Thailand is from November till early April. This is the point at which the sky is done pouring and the sky clears up. The days are warm and ideal for an excursion at the beach or for looking at the various legacy locales. April onwards the hotness gets abusive and June is the beginning of the blustery season once more.<br></p><p style=\"text-align: justify;\">Thailand, the gem of Southeast Asia, is otherwise called the Land of Smiles and you will see its kin welcoming you energetically like you are missing a companion getting back. The nation is grown to the point of offering you a luxurious holiday in a portion of its ultra-modern cities, similar to Bangkok and Chaing Mai. But then it holds enough of its natural wildness to offer you circumstances that give you an unexpected direction and give you a unique experience.<br></p><p style=\"text-align: justify;\">Beaches, mountains, islands, and everything in the middle, Thailand is an exotic, ceaseless blend of surprising encounters that will leave you requesting more. Whether you are planning a trip with your family, or have chosen to head there with companions, Thailand offers you much to see and appreciate. <a href=\"https://www.tripsgateway.com/holidays/thailand/thailand-tour-packages\">Thailand packages</a> from India lets you explore the best of Thailand and know more about this gorgeous kingdom.<br></p><p style=\"text-align: justify;\"><b>Do you need a visa to visit Thailand?</b><br></p><p style=\"text-align: justify;\">Indeed, all Indians need visa to visit Thailand. Depending upon the reason for your visit, if you\'re exclusively going for tourism, for not more than two weeks you can get a visa on arrival. In case you\'re going there for a longer time period, like more than two weeks, or are going there for a business visitor to visit your loved ones, you might have to apply for a Thailand visa earlier before your departure.<br></p><p style=\"text-align: justify;\"><b><i>Check out the Thailand trip cost from India today for an astonishing vacation.</i></b></p>              <p></p>      ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Thailand Tour Package, Holiday and Honeymoon Package from Delhi, India','Thailand Package, Package to Thailand, Book Thailand Tour, Thailand Holidays, Holiday Package Thailand, Thailand Honeymoon Package, Honeymoon Package.','Thailand is one of the most visited countries in the world. Check out the best Thailand holiday and honeymoon packages from Delhi, India.','','','215_1691496042.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,'Switzerland','switzerland','Switzerland',210,'210_1690005003.jpg',0,'2022-05-25 13:36:17','2022-05-25 13:36:17','1','0',NULL,'<div>Switzerland, a picturesque country nestled in the heart of Europe, invites travelers to explore its breathtaking landscapes, pristine cities, and rich cultural heritage. Whether you\'re a nature enthusiast, a history buff, an urban explorer, or a culinary connoisseur, Switzerland offers a treasure trove of experiences to captivate your senses.</div><div><b>Switzerland: A Land of Natural Splendor and Cultural Riches</b></div><div>As you embark on your Swiss journey, prepare to be enchanted by the country\'s natural beauty and cultural diversity.</div><div><b>Majestic Alpine Landscapes</b></div><div>Switzerland is renowned for its majestic Alps, featuring iconic peaks like the Matterhorn and the Eiger. Explore the stunning beauty of Swiss national parks, pristine lakes, and charming alpine villages.</div><div><b>Unique Cultural Encounters</b></div><div>Immerse yourself in Switzerland\'s rich cultural tapestry. Experience the traditions of different regions, from German-speaking Zurich to French-speaking Geneva and Italian-speaking Ticino. Discover Swiss folklore, music, and festivals.</div><div><b>Vibrant Cities and Urban Explorations</b></div><div>Uncover the allure of Swiss cities like Zurich, Geneva, Lucerne, and Bern. Delve into their vibrant arts scenes, historical landmarks, and culinary delights. Stroll through picturesque Old Towns and enjoy Swiss chocolates and cheeses.</div><div><b>Lakes and Scenic Beauty</b></div><div>Switzerland\'s pristine lakes, including Lake Geneva, Lake Lucerne, and Lake Zurich, offer tranquility and stunning vistas. Enjoy boat rides, lakeside promenades, and watersports.</div><div><b>The Best Time to Visit Switzerland</b></div><div>Choosing the ideal time for your Swiss adventure depends on your interests and the experiences you seek.</div><div><b>Seasonal Variety and Weather</b></div><div>Switzerland experiences distinct seasons. Ski in the Alps during winter (December to February), witness blossoming landscapes in spring (March to May), enjoy outdoor activities and festivals in summer (June to August), and savor vibrant autumn colors (September to November).</div><div><b>Festivals and Cultural Events</b></div><div>Switzerland hosts a myriad of festivals year-round, such as the Montreux Jazz Festival, Basel Carnival, and Fête de l\'Escalade in Geneva. Plan your visit to coincide with these cultural celebrations for an enriched experience.</div><div><b>Top Destinations to Include in Your Swiss Tour Package</b></div><div>Switzerland offers a wealth of captivating destinations to include in your travel itinerary:</div><div><b>Zurich: Modern Elegance</b></div><div>Explore Zurich, Switzerland\'s largest city, known for its contemporary art, luxury shopping, and a dynamic culinary scene. Discover Old Town (Altstadt) and the vibrant Bahnhofstrasse.</div><div><b>Lucerne: Charm by the Lake</b></div><div>Visit Lucerne, a picturesque city nestled on the shores of Lake Lucerne. Explore the medieval architecture of Chapel Bridge (Kapellbrücke) and the Lion Monument.</div><div><b>Geneva: Lakeside Sophistication</b></div><div>Discover cosmopolitan Geneva, with its international organizations, beautiful Lake Geneva, and the iconic Jet d\'Eau fountain. Explore museums, parks, and the Old Town.</div><div><b>Interlaken: Adventure Hub</b></div><div>For outdoor enthusiasts, Interlaken is a gateway to thrilling activities in the Jungfrau region. Experience hiking, paragliding, and breathtaking train rides to Jungfraujoch.</div><div><b>Zermatt: Alpine Wonderland</b></div><div>Explore the car-free village of Zermatt at the foot of the Matterhorn. Enjoy skiing, hiking, and the mesmerizing views of this iconic peak.</div><div><b>Bern: Historic Capital</b></div><div>Discover Bern, Switzerland\'s charming capital city. Wander through UNESCO-listed Old Town with its medieval architecture and clock tower, Zytglogge.</div><div><b>Lausanne: Olympic Heritage</b></div><div>Visit Lausanne, home to the Olympic Museum and beautiful Lake Geneva. Explore the city\'s parks, vineyards, and lively cultural scene.</div><div><b>Lugano: Italian Flair</b></div><div>Experience a touch of Italy in Lugano, located in the Italian-speaking region of Ticino. Stroll along Lake Lugano, visit Swiss-Italian markets, and enjoy Mediterranean cuisine.</div><div><b>Swiss Culture and Lifestyle</b></div><div>Switzerland\'s culture reflects its multicultural heritage and appreciation for the arts, cuisine, and outdoor activities.</div><div><b>Multilingual Diversity</b></div><div>Switzerland\'s linguistic diversity is a testament to its multiculturalism, with German, French, Italian, and Romansh spoken across the country.</div><div><b>Culinary Delights</b></div><div>Indulge in Swiss cuisine, featuring fondue, raclette, Rösti, and delectable chocolates. Explore local markets and cozy mountain restaurants.</div><div><b>Outdoor Pursuits</b></div><div>Engage in outdoor adventures like hiking, skiing, snowboarding, and cycling amid Switzerland\'s stunning landscapes. Join locals in their love for nature and active lifestyles.</div><div><b>Swiss Tour Packages for Adventure Seekers</b></div><div>Switzerland offers exhilarating adventures for thrill-seekers.</div><div><b>Alpine Hiking and Trekking</b></div><div>Embark on alpine hikes and treks through Switzerland\'s pristine landscapes and national parks.</div><div><b>Winter Sports</b></div><div>Ski, snowboard, and ice skate in world-renowned Swiss ski resorts amid the majestic Alps.</div><div><b>Water Sports and Lakeside Fun</b></div><div>Enjoy kayaking, paddleboarding, and swimming in Switzerland\'s crystal-clear lakes during the summer.</div><div><b>Scenic Train Journeys</b></div><div>Experience scenic train rides, including the Glacier Express and Bernina Express, offering breathtaking vistas of Swiss landscapes.</div><div><b>Switzerland for Solo Travelers</b></div><div>Switzerland is a solo traveler\'s paradise, known for its safety and welcoming atmosphere.</div><div><b>Safe and Welcoming</b></div><div>Enjoy the safety and hospitality of Switzerland, making it an ideal destination for solo adventurers.</div><div><b>Meet Fellow Travelers</b></div><div>Engage with fellow travelers and locals at hostels, social events, and guided tours, fostering new friendships along the way.</div><div><b>Conclusion: Embrace Switzerland\'s Allure</b></div><div>A journey through Switzerland promises an unforgettable fusion of natural beauty, cultural richness, and thrilling adventures. Whether you explore vibrant cities or relish the serenity of the Swiss Alps, Switzerland\'s charm will leave an indelible mark on your heart.</div><div>Pack your bags and embark on an extraordinary adventure to discover the captivating allure of Switzerland. Let its landscapes, cultural encounters, and outdoor pursuits immerse you in the magic of this European gem!\"</div><div>Discover the captivating beauty of Switzerland. Explore alpine landscapes, vibrant cities, and rich culture. Plan your Swiss adventure with our guide.</div><div><br></div>   ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'\"Discover the Charms of Switzerland','Switzerland travel Swiss destinations Alpine landscapes Swiss cities Swiss culture Swiss cuisine Outdoor adventures in Switzerland Swiss tour packages Solo travel in Switzerland Swiss train journeys Switzerland safety Swiss Alps Swiss festivals Swiss lakes Swiss wildlife Swiss heritage Switzerland tourism Swiss traditions Multicultural Switzerland Switzerland experiences','Discover the captivating beauty of Switzerland. Explore alpine landscapes, vibrant cities, and rich culture. Plan your Swiss adventure with our guide.','','','210_1691495663.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(19,'Vietnam','vietnam','Vietnam',236,'236_1690005493.jpg',0,'2023-02-08 16:22:27','2023-02-08 16:22:27','1','0',NULL,'<div>When it comes to breathtaking landscapes, rich history, and vibrant culture, Vietnam stands out as a must-visit destination. With a diverse range of attractions and activities, Vietnam tour packages have become increasingly popular among travelers worldwide. In this article, we will take you on a virtual journey to Vietnam, exploring its alluring beauty, holiday packages, trip cost from India, and the best tour options from India to Vietnam. Vietnam is a country that truly captures the hearts of travelers with its enchanting landscapes, rich history, and vibrant culture.<br></div><div><br></div><div>Vietnam Holiday Packages: A Dream Vacation:</div><div>A Vietnam holiday package promises an unforgettable vacation filled with a myriad of experiences that cater to all preferences and interests.</div><div><br></div><div>1 Exploring Hanoi and Its Timeless Charm</div><div>As the capital city of Vietnam, Hanoi is a captivating blend of old-world charm and modernity. Travelers can explore the historical Old Quarter, visit the Ho Chi Minh Mausoleum, or take a cycle ride around Hoan Kiem Lake.</div><div><br></div><div>2 Cruising the Magnificent Halong Bay</div><div>Halong Bay\'s surreal beauty with its limestone karsts and emerald waters is best experienced through a cruise. Travelers can relax on a traditional junk boat, go kayaking, and witness breathtaking sunsets over the bay.</div><div><br></div><div>3 Immersing in the Culture of Hoi An</div><div>Hoi An\'s ancient town is a UNESCO World Heritage site, preserving its centuries-old architecture and cultural heritage. Travelers can explore lantern-lit streets, visit historic temples, and enjoy tailor-made clothing services.</div><div><br></div><div>4 Navigating the Bustling Ho Chi Minh City</div><div>Formerly known as Saigon, Ho Chi Minh City is a bustling metropolis that offers a glimpse into Vietnam\'s modern lifestyle. Must-visit attractions include the Notre-Dame Cathedral Basilica of Saigon, the War Remnants Museum, and the Ben Thanh Market.</div><div><br></div><div>Vietnam Trip Cost from India: Budgeting for an Unforgettable Experience:</div><div>While Vietnam offers incredible value for money, budgeting for a trip is essential to ensure a seamless and memorable vacation.</div><div><br></div><div>1 Factors Affecting the Trip Cost</div><div>The trip cost to Vietnam from India can vary based on several factors, including the duration of the trip, accommodation preferences, activities, and transportation choices.</div><div><br></div><div>2 Best Time to Visit Vietnam for Affordability</div><div>Traveling during the shoulder seasons (spring and autumn) can result in more budget-friendly options for accommodation and flights compared to the peak tourist seasons.</div><div><br></div><div>Vietnam Travel Package: Your Ticket to a Memorable Journey:</div><div>A well-rounded Vietnam travel package includes a mix of sightseeing, adventure, cultural experiences, and shopping opportunities.</div><div><br></div><div>1 Sightseeing and Landmarks</div><div>Travelers will be captivated by the picturesque landscapes, ancient temples, and bustling cities that Vietnam has to offer.</div><div><br></div><div>2 Water-Based Activities</div><div>From cruising along Halong Bay to exploring the Mekong Delta by boat, water-based activities are a highlight of any Vietnam tour.</div><div><br></div><div>3 Unique Experiences in Vietnam</div><div>Travelers can participate in traditional cooking classes, attend water puppetry shows, and witness local craftsmen at work.</div><div><br></div><div>4 Shopping in Vibrant Markets</div><div>Vietnam\'s vibrant markets offer a plethora of souvenirs, handicrafts, clothing, and delicious treats to take home.</div><div><br></div><div>The Unforgettable Attractions of Vietnam:</div><div>Vietnam is home to numerous attractions that leave travelers awe-struck with their natural beauty and historical significance.</div><div><br></div><div>1 Majestic Landscapes: Ha Long Bay and Sapa</div><div>The stunning Ha Long Bay and the picturesque rice terraces of Sapa are two of Vietnam\'s most iconic landscapes.</div><div><br></div><div>2 Ancient Temples and Pagodas: Hoi An and My Son</div><div>Hoi An\'s well-preserved ancient town and the sacred ruins of My Son are a testament to Vietnam\'s historical past.</div><div><br></div><div>3 The Timeless Charm of Hue</div><div>The former imperial city of Hue captivates visitors with its historic citadel, royal tombs, and serene Perfume River.</div><div><br></div><div>4 Bustling Metropolises: Hanoi and Ho Chi Minh City</div><div>The vibrant cities of Hanoi and Ho Chi Minh City offer a dynamic blend of history, culture, and modernity.</div><div><br></div><div>Vietnam\'s Rich Culture and Traditions:</div><div>Vietnam\'s cultural heritage is deeply rooted in its traditions, which continue to thrive to this day.</div><div><br></div><div>1 The Influence of Confucianism, Taoism, and Buddhism</div><div>These three philosophical systems have significantly shaped Vietnamese culture, values, and way of life.</div><div><br></div><div>2 Traditional Vietnamese Festivals</div><div>Festivals like Tet (Lunar New Year) and Mid-Autumn Festival showcase the Vietnamese spirit and sense of community.</div><div><br></div><div>3 The Art of Water Puppetry</div><div>Water puppetry is a unique and traditional form of entertainment that narrates Vietnamese folklore and legends.</div><div><br></div><div>4 The Legacy of French Colonialism</div><div>French colonial architecture and culinary influences can still be found in various aspects of Vietnamese life.</div><div><br></div><div>The Vietnamese Cuisine:</div><div>Vietnamese cuisine is celebrated worldwide for its flavors, freshness, and variety.</div><div><br></div><div>1 Must-Try Dishes</div><div>Pho, banh mi, goi cuon, and bun cha are just a few of the delectable dishes that must be savored during a trip to Vietnam.</div><div><br></div><div>2 Regional Varieties of Vietnamese Cuisine</div><div>Each region of Vietnam offers its own unique culinary delights, adding to the diverse gastronomic experience.</div><div><br></div><div>3 Street Food Adventures</div><div>Sampling street food is a culinary adventure that allows travelers to discover the authentic flavors of Vietnam.</div><div><br></div><div>Conclusion:</div><div>Vietnam is a land of captivating beauty and cultural richness, making it an ideal destination for travelers seeking a truly immersive experience. From the majestic landscapes of Ha Long Bay to the ancient charm of Hoi An, Vietnam tour packages offer a diverse range of experiences that cater to every traveler\'s interests. Whether you are an adventure seeker, history enthusiast, food lover, or seeking a romantic escape, Vietnam has something magical to offer.</div><div><br></div><div>FAQs:</div><div>1. Is Vietnam a safe destination for tourists?</div><div>Vietnam is generally considered a safe destination for tourists. However, like any other country, it is essential to exercise caution and stay vigilant, especially in crowded tourist areas.</div><div><br></div><div>2. What is the best time to visit Vietnam?</div><div>The best time to visit Vietnam depends on the region. The northern part is best visited in the spring (March to April) and autumn (September to November), while the south is more pleasant from November to April.</div><div><br></div><div>3. Do I need a visa to travel to Vietnam from India?</div><div>Yes, Indian citizens need a visa to enter Vietnam. Tourists can apply for a visa online or at the Vietnamese embassy or consulate in India.</div><div><br></div><div>4. What are some of the unique souvenirs to buy in Vietnam?</div><div>Vietnam offers a wide range of unique souvenirs, including handcrafted ceramics, silk products, traditional conical hats (non la), and lacquerware.</div><div><br></div><div>5. Can I customize my Vietnam tour package according to my preferences?</div><div>Yes, many tour operators offer tailor-made packages that allow travelers to customize their itineraries according to their preferences and interests.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discover Vietnam Tour Packages','vietnam tour, vietnam holiday packages, vietnam trip cost from india, vietnam packages, vietnam travel package, vietnam tour packages from india','Unveil the Enchanting Charms of Vietnam! Affordable Vietnam Tour Packages from India - Book Now and Embark on an Unforgettable Adventure. ','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(20,'Indonesia','indonesia','Indonesia',102,'102_1690004915.jpg',0,'2023-02-08 16:22:27','2023-02-08 16:22:27','1','0',NULL,'<p style=\"border: 0px solid rgb(217, 217, 227); box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(69,89,164,.5); --tw-ring-offset-shadow: 0 0 transparent; --tw-ring-shadow: 0 0 transparent; --tw-shadow: 0 0 transparent; --tw-shadow-colored: 0 0 transparent; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; margin-bottom: 1.25em;\" segoe=\"\" ui\",=\"\" roboto,=\"\" ubuntu,=\"\" cantarell,=\"\" \"noto=\"\" sans\",=\"\" sans-serif,=\"\" \"helvetica=\"\" neue\",=\"\" arial,=\"\" \"apple=\"\" color=\"\" emoji\",=\"\" \"segoe=\"\" ui=\"\" symbol\",=\"\" emoji\";=\"\" font-size:=\"\" 16px;=\"\" white-space-collapse:=\"\" preserve;=\"\" background-color:=\"\" rgb(247,=\"\" 247,=\"\" 248);\"=\"\">Explore the captivating allure of Bali, a tropical paradise nestled in the heart of Indonesia, with our exclusive Bali tour packages. Immerse yourself in Bali\'s rich artistic heritage, mesmerizing landscapes, and warm hospitality, making it a sought-after destination for travelers from around the world. This enchanting island is renowned for its vibrant culture, offering a unique atmosphere that enthralls the soul from the moment you set foot on its shores.</p><p style=\"border: 0px solid rgb(217, 217, 227); box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(69,89,164,.5); --tw-ring-offset-shadow: 0 0 transparent; --tw-ring-shadow: 0 0 transparent; --tw-shadow: 0 0 transparent; --tw-shadow-colored: 0 0 transparent; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; margin-top: 1.25em; margin-bottom: 1.25em;\" segoe=\"\" ui\",=\"\" roboto,=\"\" ubuntu,=\"\" cantarell,=\"\" \"noto=\"\" sans\",=\"\" sans-serif,=\"\" \"helvetica=\"\" neue\",=\"\" arial,=\"\" \"apple=\"\" color=\"\" emoji\",=\"\" \"segoe=\"\" ui=\"\" symbol\",=\"\" emoji\";=\"\" font-size:=\"\" 16px;=\"\" white-space-collapse:=\"\" preserve;=\"\" background-color:=\"\" rgb(247,=\"\" 247,=\"\" 248);\"=\"\">Bali embraces you with a sense of serenity and spirituality that permeates every aspect of Balinese life. Delve into its deeply embedded culture, with traditional rituals, customs, and art forms displayed in intricate sculptures and vibrant ceremonies at local temples, showcasing the locals\' devotion and reverence for their beliefs. Beyond its spiritual aspects, Bali boasts a dynamic arts scene, with dance, music, and crafts playing integral roles in daily life. Witnessing a traditional Balinese dance performance or exploring bustling art markets offers an opportunity to experience the island\'s artistic vibrancy firsthand.</p><p style=\"border: 0px solid rgb(217, 217, 227); box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(69,89,164,.5); --tw-ring-offset-shadow: 0 0 transparent; --tw-ring-shadow: 0 0 transparent; --tw-shadow: 0 0 transparent; --tw-shadow-colored: 0 0 transparent; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; margin-top: 1.25em; margin-bottom: 0px;\" segoe=\"\" ui\",=\"\" roboto,=\"\" ubuntu,=\"\" cantarell,=\"\" \"noto=\"\" sans\",=\"\" sans-serif,=\"\" \"helvetica=\"\" neue\",=\"\" arial,=\"\" \"apple=\"\" color=\"\" emoji\",=\"\" \"segoe=\"\" ui=\"\" symbol\",=\"\" emoji\";=\"\" font-size:=\"\" 16px;=\"\" white-space-collapse:=\"\" preserve;=\"\" background-color:=\"\" rgb(247,=\"\" 247,=\"\" 248);\"=\"\">Prepare to be enchanted by this magical destination as you board your flight to Bali. The genuine warmth of the Balinese people, their commitment to preserving their unique heritage, and the awe-inspiring beauty of the island\'s natural landscapes combine to create an experience that goes beyond ordinary tourism. A trip to Bali is an opportunity to immerse yourself in an artistic ambiance unlike any other, where every moment becomes a chance to connect with the essence of this extraordinary island. So, leave behind the hustle and bustle of everyday life and let Bali embrace you with its enchanting appeal. Book your Bali tour now and leave with lasting memories of this remarkable journey.</p><h6 style=\"border: 0px solid rgb(217, 217, 227); box-sizing: border-box; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgba(69,89,164,.5); --tw-ring-offset-shadow: 0 0 transparent; --tw-ring-shadow: 0 0 transparent; --tw-shadow: 0 0 transparent; --tw-shadow-colored: 0 0 transparent; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; margin-top: 1.25em; margin-bottom: 0px;\"></h6><h6>Top Tourist\r\nDestinations in Bali</h6><span style=\"font-weight: normal;\">Ubud: Immerse\r\nyourself in the cultural heart of Bali, where art, traditional craft markets,\r\nand serene yoga retreats await.<br>Kuta:\r\nExperience the vibrant nightlife and popular surf spots that have made Kuta\r\nfamous.<br>Seminyak:\r\nIndulge in luxury with high-end resorts, trendy boutiques, and world-class\r\ndining options.<br>Tanah Lot:\r\nWitness the breathtaking sunset views from this iconic sea temple.</span>',NULL,NULL,NULL,NULL,NULL,'Bali Tour Packages: Your Gateway to Paradise','Bali tour packages, Bali holiday packages, bali travel packages, bali tour','Unforgettable Bali Tour Packages: Explore Paradise on Earth! Book Now and Embark on Your Dream Vacation. Limited Offer!','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(21,'France','france','France',76,'76_1694177236.png',0,'2023-02-08 16:22:27','2023-02-08 16:22:27','1','0',NULL,'<div>France, a country of timeless elegance and breathtaking beauty, beckons travelers with its rich history, artistry, and culinary excellence. From the romantic streets of Paris to the sun-soaked vineyards of Bordeaux, France offers an enchanting voyage filled with cultural treasures, charming landscapes, and unforgettable experiences.<br></div><div>France: A Land of Cultural Splendor</div><div>As you embark on your journey through France, prepare to be captivated by the country\'s cultural riches and natural wonders.</div><div>1. Enchanting Landscapes</div><div>France\'s landscapes are diverse and captivating. Explore the rolling vineyards of the Bordeaux wine region, bask in the lavender fields of Provence, and gaze at the stunning cliffs along the Normandy coast. Discover the alpine wonders of the French Alps and the picturesque villages of the Loire Valley.</div><div>2. Artistic and Architectural Marvels</div><div>France is home to some of the world\'s most renowned artistic and architectural treasures. Visit the Louvre Museum in Paris to admire the Mona Lisa, explore the iconic Eiffel Tower, and wander through the historic streets of Mont Saint-Michel. Discover the grandeur of French Gothic cathedrals like Notre-Dame and Chartres.</div><div>3. Culinary Delights</div><div>France is a culinary paradise. Savor exquisite pastries in a Parisian café, indulge in a traditional coq au vin, and delight in the world-famous cheeses and wines. French cuisine is a celebration of flavor and craftsmanship.</div><div>4. Romantic Retreats</div><div>France is synonymous with romance. Stroll along the Seine River in Paris, take a wine tour in Bordeaux, or enjoy a sunset picnic in the lavender fields of Provence. France offers countless opportunities for couples to create cherished memories.</div><div>5. Cultural Celebrations</div><div>France hosts numerous cultural events and festivals throughout the year. Witness the colorful spectacle of Carnival in Nice, experience the magic of the Cannes Film Festival, and celebrate Bastille Day with fireworks and parades.</div><div>The Best Time to Visit France</div><div>The ideal time to visit France depends on your preferences and the regions you plan to explore. France experiences a temperate climate, with distinct seasons. Spring (April to June) and autumn (September to November) are generally considered the best times for pleasant weather and fewer crowds.</div><div>Top Destinations to Include in Your France Tour</div><div>France is a land of diverse regions, each offering its own unique attractions:</div><div>1. Paris: The City of Light</div><div>Explore the iconic landmarks of Paris, from the historic Louvre Museum to the magnificent Palace of Versailles. Wander through charming neighborhoods like Montmartre and Le Marais, and savor French pastries in local cafés.</div><div>2. Bordeaux: Wine and Vineyards</div><div>Discover the world of wine in Bordeaux, home to some of the finest vineyards in France. Take wine tours, sample exquisite Bordeaux wines, and explore the charming villages of the region.</div><div>3. Provence: Lavender Fields and Sunshine</div><div>Experience the romance of Provence with its lavender fields, picturesque villages, and vibrant markets. Visit the historic city of Avignon and savor Provençal cuisine.</div><div>4. Normandy: Historic Charm</div><div>Explore the historic D-Day landing beaches in Normandy, visit the stunning Mont Saint-Michel abbey, and enjoy fresh seafood along the coast.</div><div>5. French Riviera: Sun and Glamour</div><div>Relax on the glamorous beaches of the French Riviera in cities like Nice and Cannes. Experience the glitz and glamour of the Côte d\'Azur.</div><div>6. Loire Valley: Castles and Gardens</div><div>Discover the fairytale châteaux of the Loire Valley, including Château de Chambord and Château de Chenonceau. Explore beautifully landscaped gardens and vineyards.</div><div>7. French Alps: Alpine Adventures</div><div>Embark on outdoor adventures in the French Alps. Ski in Chamonix, hike in the stunning Vanoise National Park, and enjoy the alpine scenery.</div><div>8. Lyon: Gastronomic Delights</div><div>Satisfy your culinary cravings in Lyon, often referred to as the gastronomic capital of France. Sample traditional Lyonnaise dishes in local bouchons.</div><div>Conclusion: Embrace France\'s Timeless Charms</div><div>France invites you to immerse yourself in its rich culture, artistry, and culinary delights. Whether you\'re wandering through iconic cities, savoring exquisite wines, or exploring breathtaking landscapes, France promises a journey filled with beauty and sophistication.</div><div>FAQs about Traveling to France</div><div>1.<span style=\"white-space:pre\">	</span>Do I need a visa to visit France?</div><div>&nbsp;Travelers from many countries, including the United States, Canada, and European Union nations, can visit France for up to 90 days without a visa for tourism purposes. However, specific visa requirements may apply based on your nationality and the purpose of your visit.</div><div>2.<span style=\"white-space:pre\">	</span>What is the currency in France?</div><div>&nbsp;The official currency of France is the Euro (EUR). Credit cards are widely accepted, but it\'s advisable to carry some cash for small purchases, especially in rural areas.</div><div>3.<span style=\"white-space:pre\">	</span>Is it necessary to speak French to travel in France?</div><div>&nbsp;While French is the official language, many tourist areas and major cities have English-speaking residents and businesses. Learning a few basic French phrases can enhance your travel experience and interactions with locals.</div><div>4.<span style=\"white-space:pre\">	</span>Is France safe for travelers?</div><div>&nbsp;France is generally a safe destination for travelers. Like any other country, it\'s essential to exercise common sense and be aware of your surroundings, especially in crowded tourist areas</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Embark on a Journey Through France','Travel to France France tour French culture France landmarks Paris attractions French cuisine Wine tours in Bordeaux Provence lavender fields Normandy D-Day beaches French Riviera beaches Loire Valley châteaux French Alps adventures Lyon gastronomy Visa for France Currency in France Language in France Safety in France Travel tips for France France tourist destinations French festivals and events','\"Explore France\'s beauty and culture. Plan your dream trip with our travel guide.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(22,'Azerbaijan','azerbaijan','Azerbaijan',15,'',0,'2023-02-08 16:22:27','2023-02-08 16:22:27','1','0',NULL,'<p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Azerbaijan, a mesmerizing country located at the crossroads of Europe and Asia, offers a delightful blend of history, culture, and natural beauty. With its rich heritage, vibrant cities, and picturesque landscapes, Azerbaijan has become a popular destination for travelers seeking unique experiences. In this article, we will take you on a virtual journey through the wonders of Azerbaijan and explore the top tour packages that will make your visit truly unforgettable.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">1. The Land of Fire: An Overview</span></h2><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Azerbaijan, often referred to as the \"Land of Fire,\" is renowned for its natural gas-fueled flames that have been burning for centuries. This captivating phenomenon is just a glimpse of the country\'s fascinating geology and abundant energy resources. From the Caspian Sea coastline to the rugged Caucasus Mountains, Azerbaijan\'s diverse landscapes leave visitors in awe.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">2. Azerbaijan Tour: Unraveling Baku\'s Charms</span></h2><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">2.1 Exploring the Modern Marvels</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">The capital city of Baku beckons travelers with its modern architecture, futuristic skyline, and iconic landmarks. Visit the Flame Towers, a trio of skyscrapers that illuminate the night with mesmerizing light shows. Discover the awe-inspiring Heydar Aliyev Center, a masterpiece of contemporary design.</span></p><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">2.2 The Old City: A Step Back in Time</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Step into history as you wander through Baku\'s Old City, a UNESCO-listed site and a captivating maze of narrow alleys, ancient mosques, and historical buildings. Don\'t miss the iconic Maiden Tower and the Palace of the Shirvanshahs, which offer glimpses into Azerbaijan\'s royal past.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">3. Azerbaijan Holiday Packages: Exploring Beyond Baku</span></h2><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">3.1 Gobustan National Park: A Prehistoric Treasure</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Embark on a journey to Gobustan National Park, a UNESCO World Heritage site, where ancient rock carvings reveal human civilizations dating back thousands of years. This archaeological wonder takes you on a captivating trip through time.</span></p><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">3.2 Sheki: Where Royalty Resides</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Nestled in the foothills of the Greater Caucasus Mountains, Sheki is a city brimming with charm and history. Explore the exquisite Sheki Khan\'s Palace, renowned for its stunning stained glass windows and intricate frescoes.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">4. Baku Holiday Packages: Embracing Nature\'s Beauty</span></h2><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">4.1 Absheron Peninsula: A Serene Escape</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">The Absheron Peninsula is a picturesque paradise just a stone\'s throw away from Baku. Relax on the sandy shores of the Caspian Sea or unwind in the therapeutic mud volcanoes found here.</span></p><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">4.2 Guba: Nature\'s Bounty</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Venture into the enchanting region of Guba, where you\'ll be surrounded by lush forests and cascading waterfalls. The captivating landscapes make it an ideal destination for nature enthusiasts and hikers.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">5. Azerbaijan Trip: Tailoring Your Itinerary</span></h2><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">5.1 Customizing Your Adventure</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Azerbaijan offers a diverse range of experiences, and customizing your trip is a breeze. Whether you\'re interested in history, culture, adventure, or relaxation, there\'s a perfect itinerary waiting for you.</span></p><h3 dir=\"ltr\" style=\"margin-top: 14pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.92; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">5.2 A Taste of Azerbaijan: Culinary Delights</span></h3><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Indulge in Azerbaijani cuisine, a delightful fusion of flavors influenced by Persian, Turkish, and Russian cooking. From succulent kebabs to aromatic pilafs, the country\'s culinary offerings will leave your taste buds wanting more.</span></p><h2 dir=\"ltr\" style=\"margin-top: 18pt; margin-bottom: 4pt; font-family: verdana, helvetica, arial, sans-serif; line-height: 1.6; color: rgb(0, 0, 0);\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Conclusion</span></h2><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 15pt; line-height: 2.1;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; vertical-align: baseline;\">Azerbaijan is a hidden gem that awaits discovery. From the cosmopolitan allure of Baku to the ancient wonders of Gobustan and Sheki, every corner of this enchanting land has something unique to offer. Embrace the spirit of adventure, immerse yourself in the local culture, and create memories that will last a lifetime.</span></p>',NULL,NULL,'[{\"question\":\"Is Azerbaijan a Safe country to visit?\",\"answer\":\"Yes, Azerbaijan is generally considered safe for travelers. The country has a low crime rate and a welcoming atmosphere for tourists.\\r\\n\"},{\"question\":\"What is the best month to visit Azerbaijan?\",\"answer\":\"The best time to visit Azerbaijan is during the spring (April to June) and autumn (September to November) when the weather is mild and pleasant.\"},{\"question\":\"Are English speakers easily understood in Azerbaijan?\",\"answer\":\"While Azerbaijani is the official language, English is widely spoken, especially in tourist areas and major cities.\"},{\"question\":\" Do I need a visa to visit Azerbaijan?\",\"answer\":\"Citizens of many countries can obtain a visa upon arrival or through an electronic visa system. It\'s necessary to check the visa requirements based on your nationality before traveling.\"},{\"question\":\"Are credit cards widely accepted in Azerbaijan?\\r\\n\",\"answer\":\"Credit cards are accepted in major hotels, restaurants, and shops in urban areas. However, it\'s advisable to carry some cash, especially when visiting rural regions.\"}]',NULL,NULL,'Azerbaijan Trip | Azerbaijan tour packages','Azerbaijan tour packages, azerbaijan tour, azerbaijan holiday packages,  azerbaijan trip, baku holiday packages,  azerbaijan package,  azerbaijan trip cost from india, azerbaijan tour packages from india','I Need Trip can help you choose the best Azerbaijan tour package. Discover Azerbaijan\'s magnificent scenery and make great memories during your trip.','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(23,'UNITED KINGDOM','united-kingdom','UNITED KINGDOM',469,'469_1690005054.jpg',0,'2023-03-24 18:12:10','2023-03-24 18:12:10','1','0',NULL,'<div>The United Kingdom, often referred to as the UK, is a captivating blend of rich history, diverse landscapes, and innovative urban experiences. Each traveler embarking on a journey to the UK is in for a delightful adventure, from the iconic landmarks of London to the serene Scottish Highlands. The UK offers a treasure trove of exploration for adventurers, families, couples, and solo travelers, weaving together centuries of tradition with cutting-edge creativity.</div><div><b>The UK: Where Tradition Meets Innovation</b></div><div>Prepare to be enchanted by the United Kingdom\'s seamless fusion of tradition and innovation as you embark on your journey.</div><div>1.1.<span style=\"white-space:pre\">	</span>Storied Landscapes&nbsp;</div><div>The UK\'s landscapes are a tapestry of history and natural beauty. Explore the rolling hills of the English countryside, the rugged terrain of the Scottish Highlands, and the enchanting lakes of Wales.</div><div>1.2.<span style=\"white-space:pre\">	</span>Timeless Heritage</div><div>&nbsp;Discover the UK\'s rich heritage through its historic landmarks, such as the Tower of London, Stonehenge, and Edinburgh Castle. Immerse yourself in tales of royalty, legends, and ancient mysteries.</div><div>1.3.<span style=\"white-space:pre\">	</span>Dynamic Cities and Cultural Marvels&nbsp;</div><div>London, Edinburgh, Belfast, and Cardiff beckon with their vibrant energy and cultural richness. Explore world-class museums, theaters, and contemporary art scenes.</div><div>1.4.<span style=\"white-space:pre\">	</span>Coastal Retreats&nbsp;</div><div>The UK\'s coastline offers a diverse array of experiences, from the dramatic cliffs of Dover to the charming fishing villages of Cornwall. Enjoy beachcombing, coastal walks, and fresh seafood delights.</div><div><b>The Best Time to Explore the United Kingdom</b></div><div>When to visit the UK depends on your preferences and the experiences you seek.</div><div>2.1. Seasonal Magic and Weather</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Experience the UK\'s seasons, from the lush greenery of spring to the cozy winters. Each season&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;casts a unique spell, whether you\'re admiring spring blooms or enjoying a crisp autumn day.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>2.2. Festivals and Celebrations&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; The UK hosts a plethora of festivals and events year-round, including the Edinburgh Festival Fringe, Notting Hill Carnival, and Hogmanay in Scotland. Plan your visit to coincide with these vibrant celebrations.</div><div>Top Destinations to Include in Your UK Tour</div><div>The United Kingdom offers an array of captivating destinations to weave into your tour package:</div><div>3.1. London: The Royal Capital&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Explore the heart of the UK in London, home to Buckingham Palace, the British Museum, and the West End\'s theater district. Stroll along the Thames River and savor multicultural cuisine.</div><div>3.2. Edinburgh: A Tale of Two Cities&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Discover Edinburgh\'s historic and modern facets, from the medieval Old Town to the sleek buildings of the New Town. Don\'t miss the annual Edinburgh Festival.</div><div>3.3. Belfast: History and Culture Delve into Belfast\'s complex history, visit the Titanic Belfast museum, and explore the Causeway Coastal Route\'s natural wonders.</div><div>3.4. Cardiff: Wales\' Vibrant Capital&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Cardiff offers a vibrant arts scene, the historic Cardiff Castle, and access to the stunning landscapes of Wales, including Brecon Beacons National Park.</div><div>3.5. Scottish Highlands: Nature\'s Majesty&nbsp;&nbsp;</div><div>&nbsp; &nbsp; &nbsp; Experience the untamed beauty of the Scottish Highlands, where you can hike, spot wildlife, and marvel at serene lochs.</div><div>3.6. Lake District: Poetry and Scenery&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Embrace the poetic landscapes of the Lake District, a haven for hiking and watersports enthusiasts.</div><div>3.7. Oxford and Cambridge: Academic Gems&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Visit the prestigious university towns of Oxford and Cambridge, known for their historic campuses and picturesque settings.</div><div>3.8. Cornwall: Coastal Charms&nbsp;</div><div>Relax in Cornwall\'s idyllic coastal towns, explore Tintagel Castle, and savor Cornish pasties by the sea.</div><div>3.9. Giant\'s Causeway: Natural Wonder&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Witness the unique basalt columns of Giant\'s Causeway on the Northern Ireland coast.</div><div>3.10. Stratford-upon-Avon: Shakespearean Legacy&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pay homage to Shakespeare in his birthplace, Stratford-upon-Avon, and explore Tudor-style architecture.</div><div><b>Experiencing UK Culture and Creativity</b></div><div>The UK\'s culture is a captivating blend of tradition and innovation, where historic customs coexist with modern creativity.</div><div>4.1. Literary Heritage&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Explore the literary legacies of authors like Shakespeare, Dickens, and Austen through museums, historic sites, and literary tours.</div><div>4.2. Culinary Delights&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Indulge in classic British cuisine, including fish and chips, afternoon tea, and traditional pies, alongside international gastronomic experiences.</div><div>4.3. Arts and Innovation&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Engage with contemporary art at Tate Modern, visit cutting-edge design studios, and witness the UK\'s contributions to music and fashion.</div><div><b>UK Tour Packages for Adventure Seekers</b></div><div>Adventure awaits in the United Kingdom for those seeking adrenaline-pumping experiences:</div><div>5.1. Outdoor Escapades</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Hike the rugged trails of Snowdonia, go mountain biking in the Lake District, or try coasteering along the Cornish coast.</div><div>5.2. Water Adventures</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Kayak in Scottish lochs, surf on Cornwall\'s waves, or explore sea caves and arches in Northern Ireland.</div><div>5.3. Wildlife Encounters&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Join wildlife safaris in Scotland to spot red deer, eagles, and seals in their natural habitats.</div><div>5.4. Ghost Tours and Mysteries&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Delve into the UK\'s haunted history with ghost tours and explore ancient mysteries like Stonehenge.</div><div><b>UK Tour Packages for Solo Travelers</b></div><div>The UK welcomes solo travelers with open arms and offers opportunities for unique solo adventures:</div><div>6.1. Solo Exploration&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Embark on a journey of self-discovery as you explore the UK\'s cities, countryside, and cultural sites independently.</div><div>6.2. Connecting with Locals&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Engage with locals through pub visits, local events, and communal activities to make new friends along the way.</div><div><b>Conclusion: Embrace the Magic of the United Kingdom</b></div><div>A UK travel package promises an unforgettable adventure through a land of timeless traditions, contemporary creativity, and natural wonders. Whether you\'re captivated by historic landmarks or drawn to modern innovations, the United Kingdom\'s magic will leave an indelible mark on your journey.</div><div>Pack your bags and embark on a remarkable voyage to discover the majesty of the United Kingdom. Let tradition and innovation intertwine to create lasting memories.</div><div><br></div>   ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Majesty of the United Kingdom','United Kingdom travel UK tour packages Explore UK destinations UK culture and heritage Best time to visit the UK British landmarks and attractions Adventure in the UK Solo travel in the United Kingdom UK festivals and events UK culinary experiences',' \"Explore the UK\'s culture, landmarks & landscapes. Unforgettable journeys with our UK tour packages.','','','469_1691496494.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(24,'Australia','australia','Australia',13,'13_1690004204.jpg',0,'2023-03-24 18:12:10','2023-03-24 18:12:10','1','0',NULL,'<div><div>Discovering the Land Down Under Australia, sometimes known as the Land Down Under, is a country with an unmatched combination of natural splendors, varied landscapes, and exciting metropolitan experiences. Every traveler will find something to enjoy in Australia, from the recognizable Sydney Opera House to the stunning Great Barrier Reef. Australia offers travelers—adventurers, families, couples, and solitary travelers—an exciting voyage with its distinctive wildlife, old Aboriginal culture, and vibrant towns.</div><div><br></div><div>Australia: A Land of Diversity and Natural Wonders</div><div>As you embark on your Australia tour, get ready to be mesmerized by the country\'s astounding diversity and natural beauty.</div><div><br></div><div>2.1. The Enchanting Landscapes</div><div>The landscapes of Australia are nothing short of breathtaking, ranging from the untamed Outback to the lush rainforests. Witness the magnificent Uluru, the mysterious Blue Mountains, and the miles of immaculate beaches.</div><div><br></div><div>2.2. Unique Wildlife Encounters</div><div>The world\'s most distinctive animals, such as kangaroos, koalas, wombats, and platypuses, may be found in Australia. Visit national parks and wildlife refuges to get a closer look at these interesting species.</div><div><br></div><div>2.3. Captivating Cities and Urban Adventures</div><div>Learn about the exciting city life in Brisbane, Melbourne, Sydney, and other big cities. Discover a variety of entertainment alternatives, gastronomic pleasures, shopping, and cultural events.</div><div><br></div><div>2.4. Unforgettable Beach Escapes</div><div>Australia has an extensive coastline that covers thousands of kilometers, and it is home to numerous beautiful beaches. Everybody can find something to enjoy on Australia\'s beaches, whether they\'re looking for tranquility or exhilarating water activities.</div><div><br></div><div>The Best Time to Visit Australia</div><div>The ideal time to visit Australia depends on your preferences and the experiences you want to indulge in.</div><div><br></div><div>3.1. Seasonal Variation and Weather</div><div>The seasons in Australia are the polar opposite of those in the North Hemisphere. Winter runs from June to August, summer from December to February, autumn from March to May, and spring from September to November. Every season has a certain appeal and a range of activities.</div><div><br></div><div>3.2. Popular Festivals and Events</div><div>Australia has a variety of festivals and events all year long, including the Vivid Sydney light festival, the Melbourne International Comedy Festival, and the Sydney New Year\'s Eve fireworks. For a better experience, think about timing your trip to coincide with these occasions.</div><div><br></div><div>Top Destinations to Include in Your Australia Tour Package</div><div>Australia is vast and offers an array of incredible destinations to explore. Here are some must-visit places to include in your tour package:</div><div>4.1. Sydney: The Iconic Harbor City</div><div>The Sydney Opera House and Sydney Harbour Bridge, two well-known Sydney icons, draw millions of tourists each year. Discover the city\'s thriving neighborhoods, stunning beaches, and top-notch restaurants.</div><div><br></div><div>4.2. Melbourne: Arts, Culture, and Culinary Delights</div><div>Melbourne is renowned for its vibrant arts community, rich cultural diversity, and world-class dining options. Explore its laneways, go to cultural events, and savor the local cuisine.</div><div><br></div><div>4.3. The Great Barrier Reef: An Underwater Paradise</div><div>Divers and snorkelers can find refuge on the Great Barrier Reef, which is a UNESCO World Heritage site. Discover the vibrant coral reefs and get a glimpse of marine life in its natural setting.</div><div><br></div><div>4.4. Cairns: Gateway to Tropical Adventures</div><div>Cairns is the perfect base for exploring the Great Barrier Reef and the ancient Daintree Rainforest. Dive into adventure with water sports and rainforest excursions.</div><div><br></div><div>4.5. Brisbane: A Perfect Blend of Nature and Urban Life</div><div>Brisbane offers a relaxed and outdoor-centric lifestyle. Enjoy the city\'s riverside attractions, vibrant cultural scene, and nearby national parks.</div><div><br></div><div>4.6. Perth: Where Nature and Modernity Converge</div><div>Perth boasts beautiful parks, pristine beaches, and a burgeoning food scene. Discover the beauty of Western Australia\'s capital.</div><div><br></div><div>4.7. Adelaide: Wine, Food, and Festivals</div><div>Adelaide is renowned for its wine regions, gourmet food, and numerous festivals. Explore the nearby wine valleys and indulge in culinary delights.</div><div><br></div><div>4.8. Tasmania: Untouched Wilderness</div><div>Tasmania\'s rugged landscapes and abundant wildlife make it a nature lover\'s paradise. Immerse yourself in the untouched wilderness and witness unique natural wonders.</div><div><br></div><div>4.9. Darwin: Exploring the Northern Territory</div><div>Darwin offers a taste of Australia\'s rugged Outback and Aboriginal culture. Discover its fascinating history and natural beauty.</div><div><br></div><div>Experiencing the Australian Culture and Lifestyle</div><div>Australia\'s culture is a captivating mix of ancient Indigenous traditions and modern influences.</div><div><br></div><div>5.1. Indigenous Australian Heritage</div><div>Learn about the rich Indigenous history and traditions of Australia\'s First Nations people. Engage in cultural tours and experiences to gain a deeper understanding of the land\'s heritage.</div><div><br></div><div>5.2. Australian Cuisine and Dining Experiences</div><div>Sample Australian delicacies, such as Vegemite, pavlova, and meat pies, and explore diverse dining scenes that reflect the country\'s multiculturalism.</div><div><br></div><div>5.3. Outdoor Activities and Sports</div><div>Embrace the Aussie spirit by engaging in outdoor activities like surfing, hiking, and cricket. Join locals in their love for sports and adventure.</div><div><br></div><div>Australia Tour Packages for Adventure Enthusiasts</div><div>Australia offers a plethora of thrilling experiences for adventure seekers.</div><div><br></div><div>6.1. Trekking and Hiking Adventures</div><div>Embark on scenic hikes and treks in Australia\'s national parks and explore the diverse landscapes on foot.</div><div><br></div><div>6.2. Water Sports and Ocean Thrills</div><div>Dive, snorkel, surf, or kayak your way through Australia\'s pristine waters for an adrenaline-pumping experience.</div><div><br></div><div>6.3. Wildlife Safaris and Conservation Programs</div><div>Participate in wildlife safaris and contribute to conservation efforts to protect Australia\'s unique flora and fauna.</div><div><br></div><div>6.4. Desert Exploration</div><div>Uncover the beauty of Australia\'s deserts, like the Simpson Desert and the Pinnacles Desert, and marvel at their otherworldly landscapes.</div><div><br></div><div>Australia Tour Packages for Solo Travelers</div><div>Australia welcomes solo travelers with open arms and provides unique experiences for those exploring alone.</div><div><br></div><div>7.1. Embracing Solo Adventures</div><div>Experience the freedom and self-discovery that come with solo travel in a safe and welcoming country.</div><div>7.2. Meeting Fellow Travelers</div><div>Engage with fellow travelers and locals in hostels, social events, and group tours to&nbsp;</div><div><br></div><div>Conclusion: Embrace the Magic of Australia</div><div>An Australia travel package offers a one-of-a-kind fusion of breathtaking natural beauties, enthralling culture, and exhilarating activities, promising a trip of a lifetime. Every experience in Australia will leave you with priceless memories, whether you\'re touring the crowded metropolis or interacting with animals in its natural setting.</div><div><br></div><div>Pack your things, and set out on an incredible journey to Australia. Let Australia\'s magic leave you breathless!</div><div><br></div><div>FAQs about Australia Tour Packages</div><div>1. Are Australia tour packages suitable for all age groups?</div><div>Yes, Australia tour packages are designed to cater to travelers of all age groups, from families with kids to senior travelers seeking leisure or adventure.</div><div><br></div><div>2. Can I customize my Australia tour package?</div><div>Absolutely! Many travel agencies offer customizable tour packages that allow you to tailor your itinerary based on your preferences and interests.</div><div><br></div><div>3. What are the best activities to experience in the Great Barrier Reef?</div><div>Snorkeling, scuba diving, and taking a scenic helicopter ride over the reef are among the top activities to experience the magnificence of the Great Barrier Reef.</div><div><br></div><div>4. Is travel insurance necessary for an Australia tour?</div><div>While not mandatory, travel insurance is highly recommended for any international trip, including an Australia tour. It provides financial protection against unexpected events such as trip cancellations, medical emergencies, and lost baggage.</div><div><br></div><div>5. How can I find the best deals on Australia tour packages?</div><div>To find the best deals on Australia tour packages, compare offerings from multiple travel agencies, and consider booking during off-peak seasons or taking advantage of special promotions. Additionally, following travel deal websites and subscribing to newsletters can help you stay informed about discounts and offers.</div></div>    ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Experience the Best: Australia Tour Package','australia tour package, australia tour package price, australia holiday packages, australia trip cost from india, australia travel packages, australia packages, australia trip packages','Discover the Land Down Under! Unmissable Australia Tour Package - Explore Breathtaking Landscapes and Thrilling Adventures. Book Now! ','','','13_1691494915.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(25,'USA','usa','USA',231,'231_1690005068.jpg',0,'2023-07-17 14:21:06','2023-07-17 14:21:06','1','0',NULL,'<div>The United States of America, a land of boundless possibilities and diverse experiences, welcomes travelers with open arms. From iconic cities to breathtaking natural wonders, the USA offers a kaleidoscope of adventures for every type of traveler.</div><div><b>USA: A Land of Diversity and Discovery</b></div><div>As you embark on your journey through the USA, prepare to be amazed by its incredible diversity and opportunities for exploration.</div><div>1.1.<span style=\"white-space:pre\">	</span>Iconic Landscapes&nbsp;</div><div>The USA boasts a stunning variety of landscapes, from the grandeur of the Grand Canyon to the serene beauty of the Great Smoky Mountains. Witness the mesmerizing sights of Yosemite, Yellowstone, and more.</div><div>1.2.<span style=\"white-space:pre\">	</span>Vibrant Cities and Urban Adventures</div><div>&nbsp;Explore the vibrant cities of the USA, including New York, Los Angeles, Chicago, and San Francisco. Immerse yourself in culture, arts, dining, and entertainment in these dynamic urban centers.</div><div>1.3.<span style=\"white-space:pre\">	</span>Cultural Experiences&nbsp;</div><div>Discover the rich cultural tapestry of the USA through its museums, historic landmarks, and diverse communities. Dive into the heritage of Native American tribes, the Civil Rights Movement, and the immigrant story.</div><div>1.4.<span style=\"white-space:pre\">	</span>Coastal Marvels</div><div>&nbsp;With coastlines along the Atlantic, Pacific, and Gulf of Mexico, the USA offers picturesque coastal towns, scenic drives, and opportunities for beachside relaxation and marine adventures.</div><div><b>The Best Time to Visit the USA</b></div><div>The ideal time to explore the USA depends on your interests and the regions you plan to visit.</div><div>2.1. Seasonal Variation and Weather&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; The USA experiences a wide range of climates, from the snowy winters of the northern states to the sunny beaches of the south. Plan your trip according to the weather conditions that suit your activities.</div><div>2.2. Special Events and Festivals&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;The USA hosts a multitude of festivals and events throughout the year, such as Mardi Gras in New Orleans, Independence Day celebrations, and cultural festivals. Consider timing your visit to coincide with these lively gatherings.</div><div><b>Top Destinations to Include in Your USA Tour Package</b></div><div>The USA offers an abundance of destinations to explore. Here are some must-visit places to include in your tour package:</div><div>3.1. New York City:&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;The Big Apple Experience the energy of New York City with its iconic landmarks like Times Square, Central Park, and the Statue of Liberty. Explore world-class museums, theaters, and diverse neighborhoods.</div><div>3.2. Los Angeles:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Entertainment Capital Discover the glamour of Hollywood, stroll along Venice Beach, and visit cultural attractions like the Getty Center. Don\'t forget to explore nearby destinations like Malibu and Santa Monica.</div><div>3.3. San Francisco:&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The Bay Area Gem Explore San Francisco\'s unique neighborhoods, ride the historic cable cars, and take in the breathtaking views of the Golden Gate Bridge. Alcatraz Island and Muir Woods are nearby attractions.</div><div>3.4. Las Vegas:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; The Entertainment Oasis Experience the dazzling lights and entertainment options in Las Vegas. Try your luck at casinos, watch world-class shows, and explore the nearby natural wonders like the Grand Canyon.</div><div>3.5. Chicago:&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; The Windy City Enjoy the architecture, dining, and cultural scene in Chicago. Visit Millennium Park, Navy Pier, and the Art Institute of Chicago. Don\'t miss the views from the Willis Tower Skydeck.</div><div>3.6. Miami:</div><div>&nbsp; &nbsp; The Magic City Relax on the beautiful beaches of Miami, explore the vibrant neighborhoods of Little Havana and Wynwood, and enjoy water sports and nightlife.</div><div>3.7. Washington, D.C.:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;The Nation\'s Capital Discover the history and politics of the USA in the nation\'s capital. Visit iconic landmarks like the White House, Lincoln Memorial, and Smithsonian museums.</div><div>3.8. Grand Canyon National Park:&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Natural Wonder Marvel at the awe-inspiring Grand Canyon, hike its trails, and take in panoramic views of the Colorado River from the rim.</div><div>3.9. Yellowstone National Park:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Geothermal Wonders Explore the geysers, hot springs, and diverse wildlife of Yellowstone, the first national park in the world.</div><div><b>Experiencing American Culture and Lifestyle</b></div><div>The USA\'s culture is a melting pot of influences from around the world, reflected in its music, cuisine, and traditions.</div><div>4.1. Music and Entertainment</div><div>&nbsp;Immerse yourself in American music genres like jazz, blues, rock \'n\' roll, and country. Attend live music performances, festivals, and Broadway shows.</div><div>4.2. American Cuisine&nbsp;</div><div>Savor regional American specialties, from Southern barbecue to New England seafood. Explore food trucks, farmers\' markets, and iconic diners.</div><div>4.3. Outdoor Adventures</div><div>&nbsp;Embrace the American spirit of adventure through activities like hiking, camping, kayaking, and skiing in the country\'s stunning national parks and wilderness areas.</div><div>USA Tour Packages for Adventure Enthusiasts</div><div>The USA offers a wide range of thrilling adventures for adrenaline junkies.</div><div>5.1. National Park Expeditions</div><div>&nbsp;Embark on wilderness expeditions, from backpacking in the rugged Rocky Mountains to exploring the backcountry of Yosemite.</div><div>5.2. Water Sports Experience&nbsp;</div><div>the rush of water sports like whitewater rafting, kayaking, and paddleboarding in scenic rivers and lakes.</div><div>5.3. Road Trips&nbsp;</div><div>Hit the open road on epic road trips along iconic routes like Route 66, the Pacific Coast Highway, and the Blue Ridge Parkway.</div><div>5.4. Winter Sports</div><div>&nbsp;Enjoy skiing, snowboarding, snowmobiling, and ice skating in the USA\'s top winter destinations.</div><div><b>Conclusion: Embrace the USA\'s Diversity</b></div><div>A USA travel package promises an unforgettable journey through a land of diverse landscapes, rich culture, and endless adventures. Whether you\'re exploring iconic cities or connecting with nature in national parks, the USA\'s beauty and hospitality will leave a lasting impression.</div><div>Pack your bags and embark on an extraordinary adventure to discover the wonders of the USA. Let the diversity of landscapes, cultures, and experiences enrich your travel memories!</div><div><b>FAQs about USA Tour Packages</b></div><div>1.<span style=\"white-space:pre\">	</span>Are USA tour packages suitable for families? Yes, USA tour packages can be tailored to accommodate families, offering a wide range of family-friendly activities and accommodations.</div><div>2.<span style=\"white-space:pre\">	</span>Can I customize my USA tour package? Many travel agencies offer customizable USA tour packages, allowing you to personalize your itinerary based on your interests and preferences.</div><div>3.<span style=\"white-space:pre\">	</span>What are the best national parks to visit in the USA? The USA is home to numerous stunning national parks, including Yellowstone, Yosemite, Grand Canyon, Zion, and Acadia, among others.</div><div>4.<span style=\"white-space:pre\">	</span>Is travel insurance necessary for a USA tour? While not mandatory, travel insurance is recommended for any international trip, including a USA tour. It provides financial protection in case of unexpected events such as trip cancellations, medical emergencies, and lost baggage.</div><div>5.<span style=\"white-space:pre\">	</span>How can I find the best deals on USA tour packages? To find the best deals on USA tour packages, compare offerings from multiple travel agencies, and consider booking during off-peak seasons or taking advantage of special promotions. Subscribing to newsletters and following travel deal websites can also help you stay informed about discounts and offers.</div><div><br></div>   ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Wonders of the USA','Discover USA USA travel USA tour packages USA destinations USA diversity American culture American lifestyle Iconic landscapes Vibrant cities Cultural experiences Coastal marvels Best time to visit USA USA weather Special events USA Top USA destinations New York City Los Angeles San Francisco Las Vegas Chicago Miami Washington, D.C. Grand Canyon National Park',' \"Explore the USA\'s iconic cities, stunning landscapes, and rich culture with our tour packages. Start your adventure today','','','231_1691496626.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(26,'Spain','spain','Spain',199,'199_1694175399.jpg',0,'2023-07-19 14:07:13','2023-07-19 14:07:13','1','0',NULL,'<div>Spain, a country of diverse landscapes, rich culture, and vibrant cities, is a captivating destination that beckons travelers from around the world. Whether you\'re exploring the historic streets of Barcelona, indulging in the culinary delights of Madrid, or basking in the Mediterranean sunshine on the beaches of Costa del Sol, Spain offers an array of experiences for every type of traveler.</div><div><br></div><div>Spain: A Tapestry of Culture and Heritage</div><div>As you embark on your journey through Spain, you\'ll be immersed in a tapestry of culture and heritage.</div><div>1. Enchanting Landscapes</div><div>Spain boasts a remarkable variety of landscapes, from the snow-capped peaks of the Pyrenees to the sun-drenched coastlines of the Mediterranean and the Atlantic. Explore the rugged beauty of Andalusia\'s Alhambra, the lush vineyards of La Rioja, and the picturesque villages of the Basque Country.</div><div>2. Rich History and Architecture</div><div>Delve into Spain\'s rich history as you visit historic cities like Toledo, Segovia, and Salamanca, each offering stunning architectural marvels, ancient castles, and centuries-old cathedrals. The Alhambra Palace in Granada and the Sagrada Familia in Barcelona are must-see landmarks.</div><div>3. Culinary Delights</div><div>Spain is a gastronomic paradise. Indulge in tapas, paella, and churros dipped in rich chocolate. Explore local markets, sip on fine Spanish wines, and savor the flavors of regional cuisines.</div><div>4. Vibrant Cities and Cultural Festivals</div><div>Spain\'s cities come alive with vibrant street life and cultural festivals. Experience the energy of Flamenco in Seville, revel in the Fallas festival in Valencia, and witness the Running of the Bulls in Pamplona.</div><div>5. Stunning Beaches</div><div>Spain\'s coastline stretches for thousands of kilometers, offering pristine beaches along the Mediterranean and Atlantic. Relax on the golden sands of Costa Brava, Ibiza, or the Canary Islands, or engage in water sports in Tarifa.</div><div>Best Time to Visit Spain</div><div>The ideal time to visit Spain depends on your preferences and the experiences you seek.</div><div>1. Seasonal Variation and Weather</div><div>Spain experiences a Mediterranean climate in the coastal regions and a continental climate in the interior. Summers (June to August) are perfect for beach vacations, while spring (March to May) and autumn (September to November) are ideal for city exploration and outdoor activities. Winters (December to February) offers skiing opportunities in the Pyrenees.</div><div>2. Festivals and Events</div><div>Spain hosts a multitude of festivals throughout the year. The famous La Tomatina festival in Buñol, the Running of the Bulls in Pamplona, and the lively Feria de Abril in Seville are just a few of the unique events to consider when planning your visit.</div><div>Top Destinations to Include in Your Spain Tour Package</div><div>Spain offers an abundance of captivating destinations for travelers to explore:</div><div>1. Barcelona: The Artistic Gem</div><div>Discover the architectural wonders of Antoni Gaudí, including the Sagrada Familia and Park Güell. Stroll along the bustling La Rambla and savor the city\'s culinary delights.</div><div>2. Madrid: The Capital of Culture</div><div>Explore Spain\'s vibrant capital with its world-class museums, historic neighborhoods like La Latina and Malasaña, and the Royal Palace.</div><div>3. Seville: Andalusian Elegance</div><div>Immerse yourself in the enchanting ambiance of Seville, where you can visit the Alcázar, and Plaza de España, and enjoy traditional Flamenco performances.</div><div>4. Granada: The Alhambra Palace</div><div>Wander through the breathtaking Alhambra Palace, set against the backdrop of the Sierra Nevada mountains.</div><div>5. Valencia: Modernity and Tradition</div><div>Experience the fusion of modernity and tradition in Valencia, from the futuristic City of Arts and Sciences to the historic Old Town.</div><div>6. Bilbao: Art and Innovation</div><div>Visit the Guggenheim Museum and explore the Basque culture in this dynamic city.</div><div>7. Mallorca: Island Paradise</div><div>Relax on the beautiful beaches of Mallorca and explore charming villages like Valldemossa and Sóller.</div><div>8. Santiago de Compostela: The Pilgrim\'s Path</div><div>Embark on the Camino de Santiago pilgrimage and discover the historic and spiritual treasures of Santiago de Compostela.</div><div>9. Andalusia: Flamenco Heartland</div><div>Experience the heart of Flamenco in Andalusia, with visits to Seville, Cordoba, and Granada.</div><div>10. Canary Islands: Tropical Paradise</div><div>Escape to the Canary Islands for a tropical getaway with stunning beaches and volcanic landscapes.</div><div>Experiencing Spanish Culture and Lifestyle</div><div>Spain\'s culture is a vibrant tapestry of traditions, from Flamenco music and dance to the lively fiestas and siestas.</div><div>1. Flamenco and Music</div><div>Witness the passion of Flamenco in intimate venues across Spain. Enjoy live music performances and traditional dance.</div><div>2. Culinary Adventures</div><div>Taste Spain\'s culinary delights, from tapas and paella to churros and regional wines. Explore local markets and indulge in the art of Spanish cuisine.</div><div>3. Festivals and Celebrations</div><div>Participate in local festivals like La Tomatina, Semana Santa, and Feria de Abril, and join in the spirit of celebration with locals.</div><div>4. Siesta Culture</div><div>Experience the relaxed pace of life in Spain, where the siesta, an afternoon nap, is a cherished tradition.</div><div>Spain Tour Packages for Adventure Enthusiasts</div><div>Spain offers a host of adventures for thrill-seekers:</div><div>1. Hiking and Trekking</div><div>Explore Spain\'s diverse landscapes on hiking trails such as the Camino de Santiago, the Pyrenees, and the Sierra Nevada.</div><div>2. Water Sports</div><div>Engage in water sports like surfing in Tarifa, windsurfing in Fuerteventura, or kayaking in Costa Brava.</div><div>3. Skiing and Snowboarding</div><div>Hit the slopes in the Pyrenees, Sierra Nevada, or the Catalan Pyrenees during the winter months.</div><div>4. Rock Climbing</div><div>Climb the rocky cliffs of Costa Blanca or Montserrat for a challenging adventure.</div><div>Spain Tour Packages for Solo Travelers</div><div>Spain is a welcoming destination for solo travelers, offering unique experiences:</div><div>1. Cultural Immersion</div><div>Immerse yourself in Spanish culture and engage with locals through language classes, cooking workshops, and cultural exchanges.</div><div>2. City Exploration</div><div>Discover Spain\'s cities independently, exploring historic neighborhoods, museums, and local eateries.</div><div>3. Pilgrimages</div><div>Embark on a spiritual journey along the Camino de Santiago, meeting fellow pilgrims along the way.</div><div>Conclusion: Embrace the Magic of Spain</div><div>A journey to Spain promises an enchanting blend of culture, history, natural beauty, and culinary delights. Whether you seek the vibrant energy of its cities, the tranquility of its beaches, or the thrill of outdoor adventures, Spain welcomes you with open arms. Let the magic of Spain captivate your heart and create lasting memories.</div><div>FAQs about Spain Tour Packages</div><div>1.<span style=\"white-space:pre\">	</span>Are Spain tour packages suitable for travelers with dietary restrictions?</div><div> Yes, Spain offers a wide range of dietary options, including vegetarian and vegan cuisine. Travel agencies can accommodate dietary preferences when arranging meals.</div><div>2. Can I explore Spain on a budget? </div><div>Spain caters to all budgets, with options for affordable accommodations, transportation, and dining. Travelers can choose budget-friendly tour packages and still enjoy a memorable experience.</div><div>3.Is Spain safe for solo female travelers? </div><div>Spain is considered a safe destination for solo female travelers. Exercise standard safety precautions and be aware of your surroundings.</div><div>4.<span style=\"white-space:pre\">	</span>What are the must-try dishes in Spain?</div><div> Don\'t miss trying paella, gazpacho, churros with chocolate, and a selection of tapas. Spain is also known for its world-class wines.</div><div>5.<span style=\"white-space:pre\">	</span>How can I experience the vibrant nightlife in Spain?</div><div> Spain offers a lively nightlife scene, particularly in cities like Barcelona and Madrid. Explore local bars, clubs, and music venues for an authentic nightlife experience.</div><div><br></div>    ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Beauty of Spain','Spain travel Spain tour packages Spanish culture Spain landmarks Spanish cuisine Spain beaches Spain festivals Spanish cities Spain attractions Adventure in Spain Spain solo travel Spain hiking Spanish traditions Spain vacation Spain experiences Spain destinations Spain adventure sports Spanish music and dance Spain history Spain budget travel','','','','199_1694175399.png',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(27,'Malaysia','malaysia','Malaysia',132,'132_1690004935.jpg',0,'2023-07-19 14:07:13','2023-07-19 14:07:13','1','0',NULL,'<div>Malaysia, a land of vibrant diversity and cultural richness, invites travelers to embark on an enchanting journey. Beyond its world-renowned beaches, Malaysia boasts an array of captivating experiences that will leave you spellbound from the moment you arrive.</div><div>Paradise Found: Malaysia\'s Beaches</div><div>While many envision pristine beaches when they think of Malaysia, this enchanting country offers much more. Nestled in Southeast Asia, it showcases a tapestry of experiences that will ignite your wanderlust. From the sparkling waters of Langkawi to the bustling streets of Kuala Lumpur, a Malaysia tour package promises a breathtaking adventure.</div><div><b>Top Places to Explore in Malaysia</b></div><div>Malaysia beckons explorers of all interests, promising unforgettable moments. Whether you\'re an outdoor enthusiast, a foodie, or a culture enthusiast, Malaysia has something to offer. With lush rainforests, vibrant cities, and idyllic islands, your Malaysia holiday package will be brimming with excitement.</div><div><b>If you\'re planning to explore the cities:</b></div><div>•<span style=\"white-space:pre\">	</span>Kuala Lumpur: Immerse yourself in the iconic Petronas Towers, the Batu Caves, and the vibrant street food scene.</div><div>•<span style=\"white-space:pre\">	</span>Penang: Discover the rich heritage of Georgetown, a UNESCO World Heritage Site, and indulge in delectable street food.</div><div>If you\'re a nature enthusiast:</div><div>•<span style=\"white-space:pre\">	</span>Borneo: Encounter orangutans in their natural habitat at the Sepilok Orangutan Rehabilitation Centre and explore pristine rainforests.</div><div>•<span style=\"white-space:pre\">	</span>Cameron Highlands: Traverse lush tea plantations and cool off amid the rolling hills.</div><div>For cultural aficionados:</div><div>•<span style=\"white-space:pre\">	</span>Malacca: Stroll through historic Malacca\'s colonial streets and visit its cultural landmarks.</div><div>•<span style=\"white-space:pre\">	</span>Kuching: Experience Sarawak\'s unique culture and visit the Sarawak Cultural Village.</div><div>Exciting Things to Do in Malaysia</div><div>Malaysia is a land of endless adventures and cultural delights. From the bustling markets to the serene rainforests, you\'ll find an array of exciting activities that cater to all interests.</div><div><b>If you\'re staying in Kuala Lumpur:</b></div><div>•<span style=\"white-space:pre\">	</span>Batu Caves Exploration: Climb the colorful steps to the Batu Caves and marvel at the stunning limestone caves.</div><div>•<span style=\"white-space:pre\">	</span>Gourmet Adventure: Embark on a culinary journey through Jalan Alor\'s street food stalls.</div><div><b>If you\'re exploring the countryside:</b></div><div>•<span style=\"white-space:pre\">	</span>Taman Negara Jungle Trek: Discover the world\'s oldest rainforest with guided jungle treks.</div><div>•<span style=\"white-space:pre\">	</span>Mangrove Kayaking: Paddle through the mangroves of Langkawi and witness unique wildlife.</div><div><b>For island enthusiasts:</b></div><div>•<span style=\"white-space:pre\">	</span>Snorkeling and Diving: Dive into the crystal-clear waters of Perhentian Islands and Redang Island.</div><div>•<span style=\"white-space:pre\">	</span>Beach Bliss: Relax on the pristine beaches of Langkawi and Tioman Island.</div><div><b>Adventurous Escapes:</b></div><div>•<span style=\"white-space:pre\">	</span>White Water Rafting: Conquer the rapids in Sungai Selangor for an adrenaline rush.</div><div>•<span style=\"white-space:pre\">	</span>Trekking in Cameron Highlands: Hike amid lush tea plantations and cool forests.</div><div><b>Malaysian Gastronomy</b></div><div>Indulge your taste buds in the rich and diverse cuisine of Malaysia. From savory street food to sumptuous seafood, Malaysian food is a culinary adventure in itself.</div><div>Must-Try Dishes:</div><div>•<span style=\"white-space:pre\">	</span>Nasi Lemak: Savor the national dish, fragrant rice cooked in coconut milk with a spicy sambal.</div><div>•<span style=\"white-space:pre\">	</span>Roti Canai: Relish flaky, crispy flatbreads with dhal or curry.</div><div>•<span style=\"white-space:pre\">	</span>Hainanese Chicken Rice: Delight in succulent chicken served with fragrant rice and chili sauce.</div><div><b>Shopping Delights in Malaysia</b></div><div>Shopping in Malaysia is a delightful experience with a blend of modern malls and bustling markets. Discover unique handicrafts, textiles, electronics, and more.</div><div><b>Top Shopping Destinations:</b></div><div>•<span style=\"white-space:pre\">	</span>Kuala Lumpur: Explore Suria KLCC, Pavilion Kuala Lumpur, and Bukit Bintang for luxury shopping.</div><div>•<span style=\"white-space:pre\">	</span>Georgetown, Penang: Stroll through Armenian Street and visit local markets for unique finds.</div><div>•<span style=\"white-space:pre\">	</span>Langkawi: Find duty-free shopping deals on this island paradise.</div><div><b>How to Get to Malaysia</b></div><div>Traveling to Malaysia is convenient, with international flights arriving at major airports like Kuala Lumpur International Airport (KLIA) and Penang International Airport.</div><div><b>Best Time to Visit Malaysia</b></div><div>The best time to explore Malaysia is during the dry season from May to September, when the weather is pleasant. Avoid the monsoon season from November to March for beach destinations.</div><div><b>Conclusion: Malaysia, Truly Asia</b></div><div>A Malaysia tour package promises an enchanting journey through a land of diverse landscapes, rich cultures, and thrilling adventures. Whether you\'re exploring vibrant cities or savoring local delicacies, Malaysia\'s beauty and hospitality will create lasting memories.</div><div>Pack your bags and immerse yourself in the magic of Malaysia. Let the vibrant culture, stunning landscapes, and warm hospitality make your next vacation unforgettable!</div><div>With its captivating mix of culture, nature, and cuisine, Malaysia is a destination that promises an unforgettable adventure. Explore its diverse landscapes, from lush rainforests to vibrant cities, and let the warmth of its people enrich your travel memories. Choose a Malaysia tour package and embark on a journey that will leave you enchanted and inspired.</div><div><br></div>  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Exploring the Magic of Malaysia','Malaysia travel Malaysia tour package Explore Malaysia Malaysia attractions Malaysian culture Malaysia cuisine Malaysia beaches Kuala Lumpur Penang Borneo adventures Cameron Highlands Malaysian food Malaysia shopping Malaysia weather Malaysian hospitality Malaysia vacation Malaysia travel tips Malaysia tourist destinations Malaysia tourist activities Malaysia adventure','\"Discover the enchanting magic of Malaysia with its diverse landscapes, rich culture, and thrilling adventures. Explore Kuala Lumpur\'s iconic skyline, savor Malaysian cuisine, and relax on pristine beaches. Let Malaysia captivate your senses on an unforgettable journey!\"','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(28,'Liechtenstein','liechtenstein','Liechtenstein',124,'',0,'2023-07-19 14:07:13','2023-07-19 14:07:13','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(29,'Germany','germany','Germany',83,'83_1694176517.png',0,'2023-07-19 14:07:13','2023-07-19 14:07:13','1','0',NULL,'<div>Germany, a country known for its rich history, stunning landscapes, and vibrant cities, offers travelers a diverse and captivating experience. Whether you\'re exploring its historic castles, savoring traditional cuisine, or immersing yourself in its cultural heritage, Germany has something for everyone.</div><div>Germany: Where Tradition Meets Modernity</div><div>As you embark on your journey through Germany, prepare to be enchanted by its unique blend of old-world charm and contemporary sophistication.</div><div>1.<span style=\"white-space:pre\">	</span>Historic Treasures:</div><div>&nbsp;Germany boasts a wealth of historic landmarks, from fairytale castles like Neuschwanstein to the remnants of the Berlin Wall. Explore centuries-old towns with charming cobblestone streets and timber-framed houses.</div><div>2.<span style=\"white-space:pre\">	</span>Cultural Riches:&nbsp;</div><div>Dive into Germany\'s cultural scene, with renowned classical music, world-class museums, and lively festivals. Experience the grandeur of the Berlin Philharmonic or the elegance of the Dresden Opera.</div><div>3.<span style=\"white-space:pre\">	</span>Culinary Delights:</div><div>&nbsp;Treat your taste buds to a smorgasbord of flavors. Savor hearty sausages, delectable pastries, and world-famous beers. Don\'t miss out on the lively beer gardens and local markets.</div><div>4.<span style=\"white-space:pre\">	</span>Natural Beauty:&nbsp;</div><div>Germany\'s landscapes are a paradise for nature enthusiasts. Hike in the Bavarian Alps, cruise along the Rhine River\'s romantic vineyards, or bike through the Black Forest\'s enchanting woods.</div><div>The Best Time to Visit Germany</div><div>The ideal time to visit Germany depends on your interests and the experiences you seek.</div><div>•<span style=\"white-space:pre\">	</span>Spring:</div><div>&nbsp;Witness blooming flowers and pleasant weather. Ideal for outdoor activities and exploring gardens.</div><div>•<span style=\"white-space:pre\">	</span>Summer:</div><div>&nbsp;Enjoy warm weather for sightseeing, festivals, and outdoor dining. Perfect for exploring cities and countryside.</div><div>•<span style=\"white-space:pre\">	</span>Autumn:</div><div>&nbsp;Experience colorful foliage and wine harvest festivals. Great for wine tasting and hiking.</div><div>•<span style=\"white-space:pre\">	</span>Winter:&nbsp;</div><div>Embrace the magic of German Christmas markets and winter sports in the Bavarian Alps.</div><div>Top Destinations to Include in Your Germany Tour Package</div><div>Germany offers a multitude of captivating destinations. Here are some must-visit places for your tour package:</div><div>1.<span style=\"white-space:pre\">	</span>Berlin:&nbsp;</div><div>The vibrant capital city with a rich history, modern art scene, and iconic landmarks like the Brandenburg Gate.</div><div>2.<span style=\"white-space:pre\">	</span>Munich:</div><div>&nbsp;Famous for Oktoberfest, Munich offers a blend of culture, history, and Bavarian traditions.</div><div>3.<span style=\"white-space:pre\">	</span>Hamburg:&nbsp;</div><div>A port city known for its maritime heritage, vibrant nightlife, and stunning waterfront.</div><div>4.<span style=\"white-space:pre\">	</span>Cologne:</div><div>&nbsp;Home to the magnificent Cologne Cathedral and a lively arts and music scene.</div><div>5.<span style=\"white-space:pre\">	</span>Heidelberg:</div><div>&nbsp;A romantic town with a historic castle and picturesque old town.</div><div>6.<span style=\"white-space:pre\">	</span>Dresden:</div><div>&nbsp;Known as the \"Florence on the Elbe\" for its baroque architecture and art collections.</div><div>7.<span style=\"white-space:pre\">	</span>Bavarian Alps:</div><div>&nbsp;A paradise for outdoor enthusiasts, offering hiking, skiing, and breathtaking views.</div><div>8.<span style=\"white-space:pre\">	</span>The Romantic Road:</div><div>&nbsp;A scenic route through medieval towns and fairy-tale castles.</div><div>Experiencing German Culture and Lifestyle</div><div>Immerse yourself in the heart of German culture and traditions.</div><div>•<span style=\"white-space:pre\">	</span>Language:</div><div>&nbsp;Learn a few basic German phrases to enhance your travel experience.</div><div>•<span style=\"white-space:pre\">	</span>Festivals:&nbsp;</div><div>Join local festivals like Oktoberfest, Karneval, and Christmas markets for an authentic cultural experience.</div><div>•<span style=\"white-space:pre\">	</span>Music and Arts:</div><div>&nbsp;Attend classical concerts, opera performances, and explore contemporary art galleries.</div><div>•<span style=\"white-space:pre\">	</span>Cuisine:&nbsp;</div><div>Try traditional dishes like bratwurst, schnitzel, sauerkraut, and indulge in delicious pastries and cakes.</div><div>Germany Tour Packages for Adventure Enthusiasts</div><div>Germany offers various adventurous activities for thrill-seekers:</div><div>•<span style=\"white-space:pre\">	</span>Hiking:&nbsp;</div><div>Explore scenic trails in the Bavarian Alps, Harz Mountains, and Black Forest.</div><div>•<span style=\"white-space:pre\">	</span>Cycling:</div><div>&nbsp;Ride along well-maintained cycling routes through picturesque landscapes.</div><div>•<span style=\"white-space:pre\">	</span>Skiing:</div><div>&nbsp;Hit the slopes in winter resorts like Garmisch-Partenkirchen and Oberstdorf.</div><div>•<span style=\"white-space:pre\">	</span>River Cruises:&nbsp;</div><div>Enjoy a leisurely cruise along the Rhine River with stunning castle views.</div><div>•<span style=\"white-space:pre\">	</span>Castle Tours:&nbsp;</div><div>Discover the secrets of Germany\'s castles, from fairytales to medieval history.</div><div>Germany Tour Packages for Solo Travelers</div><div>Germany is a solo traveler-friendly destination with a welcoming atmosphere:</div><div>•<span style=\"white-space:pre\">	</span>Hostels:&nbsp;</div><div>Stay in budget-friendly hostels with opportunities to meet fellow travelers.</div><div>•<span style=\"white-space:pre\">	</span>Walking Tours:&nbsp;</div><div>Explore cities on guided walking tours and join group activities.</div><div>•<span style=\"white-space:pre\">	</span>Language Courses:</div><div>&nbsp;Enroll in short German language courses to connect with locals.</div><div>Conclusion: Discover the Magic of Germany</div><div>A journey through Germany promises an enchanting blend of history, culture, and natural beauty. Whether you\'re exploring vibrant cities or tranquil landscapes, Germany\'s allure is bound to leave you with unforgettable memories.</div><div>Pack your bags and embark on a remarkable adventure to discover the magic of Germany!</div><div>FAQs about Germany Tour Packages</div><div>1.<span style=\"white-space:pre\">	</span>Is Germany suitable for budget travelers?&nbsp;</div><div>Yes, Germany offers a range of budget-friendly accommodation, dining, and transportation options, making it suitable for travelers on a budget.</div><div>2.<span style=\"white-space:pre\">	</span>What are the must-try German dishes?&nbsp;</div><div>Don\'t miss traditional dishes like bratwurst, schnitzel, sauerkraut, pretzels, and a variety of delicious cakes and pastries.</div><div>3.<span style=\"white-space:pre\">	</span>Are there any famous music festivals in Germany?&nbsp;</div><div>Germany hosts renowned music festivals like Bachfest Leipzig, Beethovenfest Bonn, and Wagner Festival in Bayreuth.</div><div>4.<span style=\"white-space:pre\">	</span>Can I use English for communication in Germany?&nbsp;</div><div>While many Germans speak English, it\'s helpful to learn a few basic German phrases to enhance your travel experience and interact with locals.</div><div>5.<span style=\"white-space:pre\">	</span>When is the best time to visit German Christmas markets?</div><div>German Christmas markets are typically open from late November to December. Visiting during this time allows you to experience the festive spirit and shop for unique gifts.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discover the Beauty of Germany','Germany travel Germany tour packages German culture German cuisine Germany landmarks German festivals Bavarian Alps German castles Germany solo travel Adventure in Germany German language Rhine River cruise Oktoberfest Germany budget travel','\"Explore Germany\'s diverse landscapes, rich culture, and vibrant cities. Discover travel tips, top destinations, and German tour packages for an unforgettable journey.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(30,'Austria','austria','Austria',14,'14_1694253652.jpg',0,'2023-07-19 14:07:13','2023-07-19 14:07:13','1','0',NULL,'<div>Exploring the Heart of Europe, Austria, often referred to as the Heart of Europe, is a country that boasts a harmonious blend of natural beauty, rich cultural heritage, and captivating historic cities. Every traveler will discover something to cherish in Austria, from the iconic Vienna Opera House to the majestic Austrian Alps. Austria offers a diverse array of experiences to travelers—whether they are history buffs, nature enthusiasts, couples seeking romance, or solo adventurers—promising a captivating journey filled with its classical music, stunning landscapes, and charming towns.</div><div><b>Austria: A Land of Culture and Natural Splendors&nbsp;</b></div><div>Prepare to be enchanted as you embark on your Austrian adventure, where culture and nature intertwine seamlessly.</div><div>2.1. Enchanting Alpine Landscapes&nbsp;</div><div>Austria\'s landscapes are a symphony of natural beauty, from the soaring Austrian Alps to the serene lakes and rolling green hills. Witness the majestic peaks, pristine lakes, and charming villages that dot the countryside.</div><div>2.2. Cultural Heritage and Historic Cities</div><div>&nbsp;Austria is a treasure trove of history and culture. Explore the grandeur of Vienna, the charm of Salzburg, and the architectural wonders of Innsbruck. Immerse yourself in the birthplace of classical music and renowned figures like Mozart and Beethoven.</div><div>2.3. Unique Culinary Experiences&nbsp;</div><div>Indulge in Austrian culinary delights, from delectable schnitzels to exquisite pastries like Sachertorte. Savor local wines in picturesque vineyards and experience the rich flavors of Austrian cuisine.</div><div>2.4. Romantic Getaways and Alpine Retreats</div><div>&nbsp;Austria is a haven for romantic getaways, with cozy chalets in the Alps and idyllic lakeside retreats. Whether you seek adventure or tranquility, Austria offers the perfect setting for couples.</div><div><b>The Best Time to Visit Austria </b></div><div>The ideal time to visit Austria depends on your preferences and the experiences you wish to embrace.</div><div>3.1. Seasonal Beauty and Weather&nbsp;</div><div>Austria experiences distinct seasons, with spring (March to May) and summer (June to August) ideal for outdoor activities, while winter (December to February) offers a snowy wonderland for skiing enthusiasts. Autumn (September to November) boasts stunning foliage.</div><div>3.2. Festivals and Cultural Events&nbsp;</div><div>Austria hosts a plethora of festivals and events year-round, including the Vienna Opera Ball, Salzburg Festival, and Vienna Christmas Markets. Plan your visit to coincide with these cultural celebrations for an enhanced experience.</div><div><b>Top Destinations to Include in Your Austrian Journey </b></div><div>Austria is a land of diverse attractions, each offering its own unique charm. Here are some must-visit places to include in your travel itinerary:</div><div>4.1. Vienna: The Imperial Capital Vienna</div><div>, Austria\'s capital, is a city of grandeur, with historic palaces, museums, and a vibrant arts scene. Explore the imperial legacy and indulge in classical concerts.</div><div>4.2. Salzburg: The City of Mozart</div><div>&nbsp;Salzburg is the birthplace of Wolfgang Amadeus Mozart and is known for its baroque architecture, picturesque old town, and musical heritage.</div><div>4.3. Innsbruck: Alpine Elegance</div><div>&nbsp;Innsbruck is a gateway to the Austrian Alps, offering winter sports and outdoor adventures alongside its charming old town.</div><div>4.4. Hallstatt: A Fairytale Village&nbsp;</div><div>Hallstatt is a picturesque village nestled by a serene lake, known for its postcard-perfect beauty and historic salt mines.</div><div>4.5. Salzkammergut: Lakes and Mountains</div><div>&nbsp;The Salzkammergut region boasts stunning lakes like Wolfgangsee and Mondsee, surrounded by rolling hills and alpine scenery.</div><div>4.6. Graz: Cultural Gem</div><div>&nbsp;Graz is a UNESCO World Heritage city with a vibrant arts scene, historic architecture, and a relaxed ambiance.</div><div>4.7. Bregenz: Lake Constance Magic</div><div>&nbsp;Bregenz offers beautiful lakeside views, the famous Bregenz Festival, and a floating stage on Lake Constance.</div><div>4.8. Tyrol: Alpine Adventures&nbsp;</div><div>Explore Tyrol\'s alpine landscapes, charming villages, and outdoor activities like hiking, skiing, and mountaineering.</div><div>Experiencing Austrian Culture and Lifestyle Austria\'s culture is steeped in history and tradition, with a strong focus on arts, music, and culinary excellence.</div><div>5.1. Classical Music Heritage</div><div>&nbsp;Immerse yourself in Austria\'s classical music heritage by attending concerts, operas, and music festivals.</div><div>5.2. Austrian Cuisine and Coffee Culture&nbsp;</div><div>Savor Austrian specialties like Wiener Schnitzel, Apfelstrudel, and Sachertorte in cozy coffeehouses and traditional restaurants.</div><div>5.3. Alpine Sports and Outdoor Pursuits</div><div>&nbsp;Embrace the Austrian way of life by participating in outdoor activities like skiing, hiking, and cycling.</div><div>Austrian Tour Packages for Adventure Enthusiasts Austria offers thrilling adventures for those seeking an adrenaline rush amid its stunning landscapes.</div><div>6.1. Skiing and Snowboarding</div><div>&nbsp;Hit the slopes in the Austrian Alps, known for world-class skiing and snowboarding opportunities.</div><div>6.2. Hiking and Mountain Trekking&nbsp;</div><div>Embark on hiking and trekking adventures through Austria\'s mountainous terrain, with trails for all levels.</div><div>6.3. Cycling and Mountain Biking&nbsp;</div><div>Explore Austria on two wheels, cycling through picturesque valleys and challenging mountain trails.</div><div>6.4. Paragliding and Watersports</div><div>&nbsp;Take to the skies with paragliding or enjoy watersports on Austrian lakes, including sailing and windsurfing.</div><div>Austrian Tour Packages for Solo Travelers&nbsp;</div><div>Austria is a solo traveler\'s paradise, offering a warm and welcoming atmosphere for those exploring on their own.</div><div>7.1. Solo Explorations&nbsp;</div><div>Enjoy the freedom of solo travel in Austria, exploring charming towns, cultural sites, and natural wonders at your own pace.</div><div>7.2. Cultural Immersion and Local Connections</div><div>&nbsp;Connect with locals through cultural activities, language classes, and authentic experiences.</div><div>Conclusion: Embrace the Charm of Austria</div><div>&nbsp;An Austrian journey promises a delightful fusion of cultural riches, natural wonders, and unforgettable experiences. Whether you\'re strolling through historic cities, conquering alpine peaks, or savoring Austrian cuisine, every moment in Austria will be filled with lasting memories.</div><div>Pack your bags and embark on a captivating journey to Austria. Let Austria\'s charm envelop you in its timeless embrace!</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Exploring the Heart of Europe, Austria','Austria travel Austrian tourism Austria destinations Austrian culture Alpine landscapes Vienna attractions Salzburg history Austrian cuisine Solo travel Austria Adventure in the Alps Mozart and classical music Austrian festivals','\"Discover Austria\'s rich cultural heritage, stunning Alpine landscapes, and historic cities. Explore Vienna, Salzburg, and more on your Austrian adventure.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(31,'Netherlands','netherlands','Netherlands',154,'154_1694418561.jpg',0,'2023-07-21 12:13:25','2023-07-21 12:13:25','1','0',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The Netherlands is a country known\r\nfor its picturesque landscapes, rich history, and vibrant culture. Beyond its\r\niconic windmills and tulip fields, the Netherlands offers a diverse range of\r\nexperiences for travelers.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Best Places to Visit in the\r\nNetherlands:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Amsterdam: The capital city is\r\nfamous for its historic canals, world-class museums like the Rijksmuseum and\r\nVan Gogh Museum, and vibrant nightlife.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Keukenhof Gardens: Known as the\r\n\"Garden of Europe,\" it\'s a floral paradise with millions of tulips\r\nand other flowers in full bloom during the spring.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Zaanse Schans: A living open-air\r\nmuseum with historic windmills, traditional Dutch houses, and artisan\r\nworkshops.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Giethoorn: Often called the\r\n\"Venice of the North\" due to its charming canals and thatched-roof\r\ncottages.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Kinderdijk: A UNESCO World\r\nHeritage site featuring a network of iconic windmills and pumping stations.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Utrecht: A picturesque city with a\r\nhistoric center, lively cafés, and the iconic Dom Tower.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Things to Do in the Netherlands:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Explore Amsterdam\'s Canals: Take a\r\ncanal cruise or a leisurely walk along Amsterdam\'s waterways to admire its\r\nunique architecture.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Visit Museums: Discover art and\r\nhistory at renowned museums like the Rijksmuseum, Van Gogh Museum, and Anne\r\nFrank House.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Cycling: Experience Dutch culture\r\nby renting a bike and exploring cities and countryside on dedicated cycling\r\nroutes.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Taste Dutch Delicacies: Try Dutch\r\ntreats like bitterballen, stroopwafels, herring, and poffertjes.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Windmill Tours: Explore iconic\r\nwindmills at locations like Kinderdijk and Zaanse Schans.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Cuisine to Try in the Netherlands:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Bitterballen: Deep-fried balls\r\nfilled with a mixture of beef or veal ragout.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Stroopwafels: Thin waffle cookies\r\nfilled with caramel syrup.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Haring: Raw herring fish\r\ntraditionally served with onions and pickles.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Poffertjes: Mini Dutch pancakes\r\ntopped with powdered sugar and butter.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Erwtensoep: A hearty split pea\r\nsoup often enjoyed in winter.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Dutch Cheese: Sample world-famous\r\ncheeses like Gouda, Edam, and Leyden.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Rijsttafel: An Indonesian-inspired\r\nfeast featuring various dishes and flavors.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Shopping in the Netherlands:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">From high-end boutiques to lively\r\nmarkets, the Netherlands offers diverse shopping experiences:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Amsterdam: Explore Kalverstraat\r\nfor fashion and De Negen Straatjes (The Nine Streets) for boutique shopping.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The Hague: Discover antiques on\r\nDenneweg and upscale shops on Noordeinde.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Delft: Known for its iconic\r\nblue-and-white Delftware pottery.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Markets: Enjoy street markets like\r\nAlbert Cuypmarkt in Amsterdam and Dappermarkt for a variety of shopping\r\noptions.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Travel Information for the\r\nNetherlands:<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">By Air: Amsterdam Airport Schiphol\r\nserves as a major international gateway to the Netherlands.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">By Train: The country has an\r\nextensive and efficient railway network, making it easy to travel by train.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Getting Around: Public\r\ntransportation includes trains, trams, buses, and ferries, and cycling is a\r\npopular way to explore.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Best Time to Visit: Spring (April\r\nto May) offers vibrant tulip blooms, while summer (June to August) provides\r\npleasant weather. Fall (September to November) is also a good time with milder\r\ntemperatures.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">The Netherlands offers a unique\r\nblend of history, art, natural beauty, and culinary delights. Consider a\r\nNetherlands tour package for a memorable European adventure.<o:p></o:p></p>  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'The Netherlands is a country known for its picturesque landscapes, ','Netherlands, Netherlands attractions, Netherlands activities, Netherlands cuisine, Netherlands shopping, Netherlands travel, Best places to visit in the Netherlands, Things to do in the Netherlands, Netherlands tour package, Amsterdam, Keukenhof Gardens, Zaanse Schans, Giethoorn, Kinderdijk, Utrecht, Dutch cuisine, Shopping in the Netherlands, Amsterdam Airport Schiphol, Netherlands transportation, Best time to visit the Netherlands.','The Netherlands is a country known for its picturesque landscapes, rich history, and vibrant culture. Beyond its iconic windmills and tulip fields, the Netherlands offers a diverse range of experiences for travelers.','','','154_1691495455.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(32,'Canada','canada','Canada',39,'39_1694176256.png',0,'2023-08-16 11:43:57','2023-08-16 11:43:57','1','0',NULL,'<div>Canada, often referred to as the Great White North, is a vast and diverse country that offers travelers a blend of stunning natural landscapes, vibrant cities, and rich cultural experiences. Whether you\'re an outdoor enthusiast, a city explorer, a history buff, or a foodie, Canada has something to captivate every traveler\'s heart.</div><div>Canada: A Land of Natural Beauty and Diversity</div><div><br></div><div>As you embark on your journey through Canada, prepare to be awed by its incredible natural beauty and diverse landscapes.</div><div><b>Majestic Landscapes&nbsp;</b></div><div>Canada boasts a diverse range of landscapes, from the rugged Rocky Mountains in the west to the pristine lakes and forests of Ontario and Quebec in the east. Witness the breathtaking beauty of places like Banff National Park, Jasper National Park, and Algonquin Provincial Park.</div><div><b>Unique Wildlife Encounters</b></div><div>&nbsp;Canada is home to a wide variety of wildlife, including bears, moose, whales, and bald eagles. Explore national parks and wildlife reserves for a chance to spot these magnificent creatures in their natural habitats.</div><div><b>Vibrant Cities and Cultural Experience</b>s</div><div>&nbsp;Discover the multicultural cities of Canada, including Toronto, Vancouver, Montreal, and Quebec City. Immerse yourself in the arts, culture, dining, and entertainment scenes of these dynamic urban centers.</div><div><b>Coastal Beauty&nbsp;</b></div><div>Canada boasts a stunning coastline along the Atlantic and Pacific Oceans, offering picturesque coastal towns, lighthouses, and opportunities for whale watching and maritime adventures.</div><div><b>The Best Time to Visit Canada</b></div><div>The ideal time to visit Canada depends on your interests and the regions you plan to explore.</div><div><b>Seasonal Variation and Weather&nbsp;</b></div><div>Canada experiences distinct seasons, with winter from December to February, spring from March to May, summer from June to August, and autumn from September to November. Each season offers unique experiences, from skiing in the winter to hiking and festivals in the summer.</div><div><b>Special Events and Festivals&nbsp;</b></div><div>Canada hosts numerous festivals and events throughout the year, such as the Calgary Stampede, Quebec Winter Carnival, and Canada Day celebrations. Consider timing your visit to coincide with these cultural festivities.</div><div><b>Top Destinations to Include in Your Canada Tour Package</b></div><div>Canada is a vast country with a wealth of destinations to explore. Here are some must-visit places to include in your tour package:</div><div><b>Vancouver: The Pacific Gem&nbsp;</b></div><div>Explore the stunning city of Vancouver, surrounded by mountains and the Pacific Ocean. Visit Stanley Park, Granville Island, and enjoy outdoor activities.</div><div>Banff National Park: Nature\'s Wonderland&nbsp;</div><div>Experience the natural beauty of Banff National Park in the Canadian Rockies. Hike among pristine lakes, towering peaks, and witness the beauty of Lake Louise and Moraine Lake.</div><div><b>Toronto: Canada\'s Cultural Hub&nbsp;</b></div><div>Discover Toronto, Canada\'s largest city, known for its diverse neighborhoods, iconic CN Tower, and world-class museums like the Royal Ontario Museum.</div><div><b>Quebec City: A Taste of Europe</b></div><div>&nbsp;Step back in time in Quebec City\'s Old Town, a UNESCO World Heritage site with charming cobblestone streets, historic architecture, and French-inspired cuisine.</div><div><b>Niagara Falls: Nature\'s Spectacle</b></div><div>&nbsp;Witness the awe-inspiring power of Niagara Falls and enjoy boat tours, scenic viewpoints, and nearby wineries.</div><div><b>Montreal: Arts and Gastronomy&nbsp;</b></div><div>Explore Montreal\'s vibrant arts scene, indulge in gourmet dining, and experience the city\'s unique blend of French and Canadian cultures.</div><div><b>Ottawa: Canada\'s Capital</b></div><div>&nbsp;Visit Ottawa, the capital city, and explore landmarks like Parliament Hill, the National Gallery of Canada, and the Canadian Museum of History.</div><div><b>Prince Edward Island: Anne of Green Gables Country</b>&nbsp;</div><div>Discover the picturesque landscapes and literary heritage of Prince Edward Island, home to the beloved character Anne of Green Gables.</div><div><b>Nova Scotia: Coastal Charms&nbsp;</b></div><div>Explore the coastal beauty of Nova Scotia, known for its historic sites, lighthouses, and the scenic Cabot Trail.</div><div><b>Experiencing Canadian Culture and Lifestyle</b></div><div>Canada\'s culture is a mosaic of diverse influences, shaped by Indigenous traditions and immigrant communities.</div><div><b>Indigenous Heritage</b></div><div>&nbsp;Learn about the rich Indigenous cultures and history of Canada\'s First Nations people through cultural experiences, art, and storytelling.</div><div><b>Canadian Cuisine</b></div><div>&nbsp;Sample Canadian culinary delights, such as poutine, butter tarts, and Nanaimo bars. Explore local farmers\' markets and dine at restaurants offering regional specialties.</div><div><b>Outdoor Adventures&nbsp;</b></div><div>Embrace Canada\'s love for outdoor activities like hiking, kayaking, skiing, and snowboarding. Join in the spirit of adventure and explore the country\'s natural wonders.</div><div><b>Canada Tour Packages for Adventure Enthusiasts</b></div><div>Canada offers an abundance of thrilling adventures for adrenaline junkies.</div><div><b>Outdoor Expeditions</b></div><div>&nbsp;Embark on wilderness expeditions, including canoeing, camping, and multi-day hikes in Canada\'s national parks and remote regions.</div><div><b>Wildlife Encounters</b></div><div> Join wildlife safaris and conservation programs to observe bears, whales, and other wildlife in their natural habitats.</div><div><b>Winter Sports </b></div><div>Experience the thrill of winter sports like skiing, snowboarding, ice skating, and dog sledding in Canada\'s snowy landscapes.</div><div><b>Northern Lights</b></div><div> Witness the mesmerizing Northern Lights (Aurora Borealis) in the northern regions of Canada, such as the Yukon and Northwest Territories.</div><div><b>Canada Tour Packages for Solo Travelers</b></div><div>Canada welcomes solo travelers with open arms and provides unique opportunities for solo adventures.</div><div><b>Safe and Friendly</b></div><div>&nbsp;Enjoy the safety and friendliness of Canadian cities, making it an ideal destination for solo travel.</div><div><b>Meet Fellow Travelers&nbsp;</b></div><div>Engage with fellow travelers and locals through social events, guided tours, and hostel stays, fostering new friendships along the way.</div><div><b>Conclusion: Embrace the Beauty of Canada</b></div><div>A Canada travel package promises an unforgettable journey through a land of natural wonders, cultural richness, and exhilarating adventures. Whether you\'re exploring the vibrant cities or connecting with nature in the great outdoors, Canada\'s beauty and hospitality will leave an indelible mark on your heart.</div><div>Pack your bags and embark on an extraordinary adventure to discover the enchanting beauty of Canada. Let the diverse landscapes, wildlife encounters, and cultural experiences immerse you in the magic of the Great White North!</div><div><b>FAQs about Canada Tour Packages</b></div><div><b>1.<span style=\"white-space:pre\">	</span>Are Canada tour packages suitable for families?&nbsp;</b></div><div>Yes, Canada tour packages can be tailored to accommodate families, offering a range of family-friendly activities and accommodations.</div><div><b>2.<span style=\"white-space:pre\">	</span>Can I customize my Canada tour package?\\</b></div><div>&nbsp;Many travel agencies offer customizable Canada tour packages, allowing you to personalize your itinerary based on your interests and preferences.</div><div><b>3.<span style=\"white-space:pre\">	</span>What are the best places to see the Northern Lights in Canada?</b></div><div>&nbsp;The Northern Lights can be observed in northern regions like the Yukon, Northwest Territories, and Nunavut. Popular destinations include Yellowknife and Whitehorse.</div><div><b>4.<span style=\"white-space:pre\">	</span>Is travel insurance necessary for a Canada tour?&nbsp;</b></div><div>While not mandatory, travel insurance is recommended for any international trip, including a Canada tour. It provides financial protection in case of unexpected events such as trip cancellations, medical emergencies, and lost luggage.</div><div><b>5.<span style=\"white-space:pre\">	</span>How can I find the best deals on Canada tour packages?&nbsp;</b></div><div>To find the best deals, compare offerings from different travel agencies, consider traveling during shoulder seasons, and watch for special promotions and discounts. Subscribing to travel deal newsletters can also help you stay informed about offers and deals.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Beauty of Canada','Canada travel Canadian destinations Canada tourism Canadian culture Canada landscapes Wildlife encounters Canada cities Canada tour packages Canadian cuisine Outdoor adventures in Canada Northern Lights in Canada Canada for solo travelers Family-friendly Canada trips Canadian festivals Indigenous heritage Canadian wildlife Canada winter sports Canadian national parks Canada outdoor expeditions Canada travel tips Best time to visit Canada Canada travel experiences Canada travel recommendations Canada vacation Canada adventure travel','\"Discover Canada\'s beauty, from stunning landscapes to vibrant cities. Explore wildlife, culture, and adventures with Canada tour packages.','','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(33,'Serbia','serbia','Serbia',468,'468_1694418058.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>\"Embark on a Serene Escape to Serbia: A Hidden Gem in Europe\"</div><div>Nestled in the heart of Europe, Serbia stands as a hidden gem waiting to be discovered by travelers seeking a unique and enriching experience. With its rich history, stunning landscapes, and warm hospitality, Serbia is the perfect destination for those looking to explore a destination off the beaten path.</div><div>**Exploring Serbia\'s Cultural Heritage**</div><div>Serbia boasts a captivating cultural heritage that reflects its diverse history. Belgrade, the capital city, is a vibrant hub where the old meets the new. Stroll through the historic streets of Belgrade and marvel at the blend of architectural styles, from Ottoman and Austro-Hungarian influences to contemporary designs.</div><div>One of the most iconic landmarks in Serbia is the Belgrade Fortress, which offers panoramic views of the confluence of the Sava and Danube rivers. Dive into Serbia\'s rich history by visiting museums like the National Museum and the Nikola Tesla Museum, dedicated to the renowned inventor.</div><div>**Natural Beauty and Adventure**</div><div>Serbia\'s natural beauty is awe-inspiring. The country is home to several national parks, such as Tara National Park, where you can explore pristine forests, crystal-clear rivers, and breathtaking canyons. The Drina River, with its emerald-green waters, offers opportunities for rafting and kayaking adventures.</div><div>For outdoor enthusiasts, hiking in the Kopaonik and Zlatibor mountain ranges promises breathtaking vistas and an escape into nature. Serbia\'s diverse landscapes provide endless opportunities for exploration, from the lush plains of Vojvodina to the rugged terrain of the Balkan Mountains.</div><div>**Delightful Serbian Cuisine**</div><div>Serbian cuisine is a treat for food lovers. Indulge in hearty dishes like &amp;#263;evapi (grilled minced meat), sarma (cabbage rolls), and pljeskavica (a savory burger). Don\'t miss the chance to try ajvar, a delicious pepper-based condiment, and rakija, a traditional fruit brandy.</div><div>Experience the warmth of Serbian hospitality in local kafanas (taverns) while enjoying live music performances and savoring traditional delicacies. Serbian cuisine is a delightful journey for your taste buds.</div><div>**Serbia: A Year-Round Destination**</div><div>Serbia offers something special in every season. Visit in the summer to enjoy festivals, open-air concerts, and vibrant street life. Autumn is perfect for wine enthusiasts, as you can explore the vineyards in the Fruska Gora region. Winter brings opportunities for skiing and cozying up by the fire in mountain lodges.</div><div>**Getting to Serbia**</div><div>Belgrade Nikola Tesla Airport is the main international gateway to Serbia, with connections to major European cities. Additionally, Serbia\'s strategic location makes it accessible by road and rail from neighboring countries, allowing you to explore the Balkans.</div><div>**Why Choose a Serbia Tour Package?**</div><div>Opting for a Serbia tour package is the ideal way to make the most of your journey. These packages offer a seamless travel experience, including accommodation, guided tours, and activities. Explore Serbia with the expertise of local guides who can introduce you to hidden gems and ensure you have a memorable trip.</div><div>Whether you\'re a history buff, a nature enthusiast, or a food lover, Serbia has something to offer every traveler. Plan your journey to Serbia, and uncover the beauty and charm of this captivating European destination. Choose a Serbia tour package, and let the adventure begin!\"</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Experience Serbia\'s Rich Culture and Scenic Beauty','Serbia travel Belgrade attractions Novi Sad festivals Tara National Park Nis historical sites Serbian cuisine Serbia culture Balkan travel Serbian landmarks Balkan festivals Serbia natural beauty Serbian language Serbian history Serbia transportation Serbian culture events','\"Discover Serbia\'s culture and natural beauty. Explore Belgrade, Novi Sad, Tara National Park, and more. Plan your Serbian adventure with us.','','','468_1694418058.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(34,'MONTENEGRO','montenegro','MONTENEGRO',466,'466_1694416362.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Discovering the Jewel of the Adriatic: Montenegro</div><div>Montenegro, often referred to as the \"Jewel of the Adriatic,\" is a hidden gem in southeastern Europe that offers a blend of natural beauty, rich history, and Mediterranean charm. Whether you\'re a nature enthusiast, a history buff, or simply seeking relaxation, Montenegro has something to offer every traveler.</div><div>Montenegro: A Land of Natural Beauty</div><div>As you embark on your Montenegro journey, prepare to be captivated by the country\'s stunning natural landscapes.</div><div>1.1. Breathtaking Landscapes</div><div>Montenegro boasts diverse landscapes, from the dramatic Bay of Kotor, a UNESCO World Heritage Site, to the pristine beaches along the Adriatic coast. Explore the rugged Durmitor National Park with its picturesque Tara Canyon, one of the deepest canyons in Europe.</div><div>1.2. Adriatic Coastline</div><div>With a coastline along the Adriatic Sea, Montenegro offers numerous opportunities for beach lovers. Enjoy the crystal-clear waters, sandy shores, and charming coastal towns such as Budva and Kotor.</div><div>1.3. Majestic Mountains</div><div>Montenegro is home to the Dinaric Alps, providing ample opportunities for hiking, trekking, and winter sports. Discover the scenic beauty of Biogradska Gora National Park and Prokletije National Park.</div><div>1.4. Enchanting Lakes</div><div>Visit Lake Skadar, one of Europe\'s largest freshwater lakes, and take a boat tour to explore its abundant birdlife and historic monasteries.</div><div>The Best Time to Visit Montenegro</div><div>The ideal time to visit Montenegro depends on your interests and the activities you wish to enjoy.</div><div>2.1. Seasonal Variation</div><div>Montenegro experiences a Mediterranean climate with hot, dry summers and mild, wet winters. The summer months (June to September) are perfect for beach vacations, while spring and fall offer pleasant weather for outdoor activities.</div><div>2.2. Festivals and Events</div><div>Montenegro hosts various cultural festivals and events throughout the year. Consider timing your visit to coincide with events like the Kotor Carnival or the International Theatre Festival in Budva.</div><div>Top Destinations in Montenegro</div><div>Montenegro may be small, but it\'s packed with intriguing destinations to explore.</div><div>3.1. Kotor: A Medieval Marvel</div><div>The historic town of Kotor, nestled within the Bay of Kotor, is famous for its well-preserved medieval architecture and ancient city walls.</div><div>3.2. Budva: Riviera of Montenegro</div><div>Budva is known for its vibrant nightlife, sandy beaches, and charming Old Town, making it a popular destination for sun-seekers.</div><div>3.3. Durmitor National Park: Nature\'s Playground</div><div>Discover the natural wonders of Durmitor National Park, a paradise for hikers, skiers, and adventure seekers.</div><div>3.4. Sveti Stefan: A Seaside Oasis</div><div>Visit the exclusive island of Sveti Stefan, once a fishing village, now a luxury resort offering stunning views and pristine beaches.</div><div>3.5. Lake Skadar: A Natural Haven</div><div>Explore the beauty of Lake Skadar, a haven for birdwatching, fishing, and boat trips.</div><div>3.6. Tara Canyon: Europe\'s Grand Canyon</div><div>Experience the thrill of Tara Canyon, one of Europe\'s deepest canyons, with opportunities for rafting and zip-lining.</div><div>Immerse Yourself in Montenegrin Culture</div><div>Montenegro\'s culture is a blend of Mediterranean, Slavic, and Balkan influences.</div><div>4.1. Rich Heritage</div><div>Explore Montenegro\'s historical heritage by visiting ancient churches, monasteries, and well-preserved medieval towns.</div><div>4.2. Local Cuisine</div><div>Indulge in Montenegrin cuisine, known for its hearty dishes like grilled meats, seafood, and traditional sweets.</div><div>4.3. Festive Traditions</div><div>Participate in local celebrations and festivals to experience Montenegro\'s vibrant cultural traditions.</div><div>Montenegro Tour Packages for Adventure Enthusiasts</div><div>Montenegro offers a wealth of adventure activities for thrill-seekers.</div><div>5.1. Hiking and Trekking</div><div>Embark on scenic hikes in Montenegro\'s national parks, with trails suitable for all levels of hikers.</div><div>5.2. Water Sports</div><div>Enjoy water activities such as kayaking, rafting, and stand-up paddleboarding on the country\'s rivers and lakes.</div><div>5.3. Rock Climbing</div><div>Discover Montenegro\'s rock-climbing hotspots, including the towering peaks of the Dinaric Alps.</div><div>5.4. Off-Roading</div><div>Experience off-road adventures through Montenegro\'s rugged terrain and scenic landscapes.</div><div>Montenegro Tour Packages for Solo Travelers</div><div>Montenegro welcomes solo travelers and offers opportunities for meaningful solo adventures.</div><div>6.1. Cultural Exploration</div><div>Engage with locals and immerse yourself in the culture by joining guided tours and cultural experiences.</div><div>6.2. Outdoor Adventures</div><div>Solo travelers can explore Montenegro\'s natural beauty through hiking, biking, and exploring the coast.</div><div>Conclusion: Explore Montenegro\'s Charms</div><div>A journey through Montenegro promises a blend of natural wonders, rich history, and cultural delights. Whether you seek adventure, relaxation, or cultural immersion, Montenegro offers an unforgettable experience.</div><div>Pack your bags and embark on a remarkable journey to Montenegro. Let this hidden gem in the Adriatic captivate your senses!</div><div>FAQs about Montenegro Tour Packages</div><div>Are Montenegro tour packages suitable for all types of travelers?</div><div>Yes, Montenegro tour packages can be customized to cater to families, couples, solo travelers, and adventure enthusiasts.</div><div>Can I customize my Montenegro tour package?</div><div>Many tour agencies offer customizable packages, allowing you to tailor your itinerary to your preferences.</div><div>What are the must-visit destinations for adventure seekers in Montenegro?</div><div>Adventure seekers should explore destinations like Durmitor National Park for hiking and Tara Canyon for rafting.</div><div>Is travel insurance necessary for a trip to Montenegro?</div><div>While not mandatory, travel insurance is recommended to provide financial protection in case of unforeseen events.</div><div>What is the best way to experience Montenegro\'s local culture?</div><div>Engaging in cultural tours, visiting historic sites, and trying local cuisine are great ways to immerse yourself in Montenegro\'s culture.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Montenegro, a stunning Balkan country on the Adriatic Sea','Montenegro attractions Montenegro coast Montenegro activities Montenegro cuisine Montenegro shopping Best time to visit Montenegro Montenegro tour Montenegro hiking Kotor old town Budva beaches Montenegrin prosciutto Montenegro wine Durmitor National Park Skadar Lake Montenegro culture Montenegro historical sites Montenegro outdoor adventure Montenegro nightlife','\"Explore Montenegro\'s beauty! Discover historic towns, pristine beaches, national parks, and diverse cuisine. Plan your Montenegro adventure today.\"','','','466_1694416362.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(35,'Yugoslavia','yugoslavia','Yugoslavia',241,'241_1694757618.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Yugoslavia was a complex and diverse country that existed in various forms from 1918 to 2003. Situated in the Balkans, it was a federation of several distinct nations, each with its own culture, language, and history. This historical overview delves into the rise, challenges, and ultimate dissolution of Yugoslavia, shedding light on its complex journey.</div><div>1. Formation of Yugoslavia:</div><div>Yugoslavia\'s origins can be traced back to the aftermath of World War I when several South Slavic nations united to form a single state. Led by charismatic leader Josip Broz Tito, the country was officially established in 1945 as the Federal People\'s Republic of Yugoslavia.</div><div>2. Tito\'s Yugoslavia:</div><div>Under Tito\'s leadership, Yugoslavia embarked on a unique path of socialism, emphasizing self-management, non-alignment during the Cold War, and fostering a sense of unity among its diverse ethnic groups.</div><div>3. Multinational Composition:</div><div>Yugoslavia was a multi-ethnic state, comprising six constituent republics: Serbia, Croatia, Slovenia, Bosnia and Herzegovina, Montenegro, and Macedonia. It also had two autonomous provinces within Serbia: Vojvodina and Kosovo.</div><div>4. Economic and Social Challenges:</div><div>While Yugoslavia achieved economic growth and relative stability during Tito\'s rule, it faced persistent economic challenges, including inflation and an outdated industrial base. Additionally, nationalist sentiments began to resurface among various ethnic groups.</div><div>5. Dissolution of Yugoslavia:</div><div>The 1980s and early 1990s witnessed the unraveling of Yugoslavia. Nationalist and ethnic tensions escalated, leading to a series of conflicts and the eventual dissolution of the federation. The Yugoslav Wars, characterized by ethnic strife and violence, resulted in the creation of several independent states.</div><div>6. Legacy and Impact:</div><div>The dissolution of Yugoslavia left a profound impact on the Balkans, with the emergence of independent nations such as Croatia, Bosnia and Herzegovina, Slovenia, Montenegro, North Macedonia, and Serbia. The wars that accompanied the breakup had devastating consequences, leading to loss of life and displacement.</div><div>7. Today\'s Landscape:</div><div>Today, the former Yugoslav republics have charted their own paths, with varying degrees of success in rebuilding their nations and fostering regional cooperation. The legacy of Yugoslavia, both positive and negative, continues to shape the political, social, and economic dynamics of the Balkans.</div><div>Conclusion:</div><div>Yugoslavia\'s history is a complex tapestry of unity and division, socialism and nationalism. While the country no longer exists, its impact on the Balkans and its historical significance remain topics of interest and debate. Understanding Yugoslavia\'s history provides insights into the challenges of managing diversity within a nation and the complexities of international relations in a volatile region.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Yugoslavia: A Historical Overview of the Former Socialist Federation','Yugoslavia Socialist Federation Balkan Nations History of Yugoslavia Dissolution of Yugoslavia Yugoslav Wars Tito\'s Yugoslavia Balkan Conflict Multiethnic State Yugoslav Heritage','Explore the complex history and diverse cultural tapestry of Yugoslavia, the once-unified socialist federation that encompassed several Balkan nations. Learn about its rise, challenges, and ultimate dissolution, leaving a lasting impact on the region.','','','241_1694757618.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(36,'New Zealand','new-zealand','New Zealand',157,'157_1694418391.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Certainly! Here are some things to do and places to visit in New Zealand:</div><div>Places to Visit in New Zealand:</div><div>Auckland: New Zealand\'s largest city offers a mix of urban attractions and natural beauty. Visit the Auckland Sky Tower, Auckland Museum, and enjoy the waterfront.</div><div>Rotorua: Known for its geothermal wonders, Rotorua features geysers, hot springs, and mud pools. Explore Te Puia, Wai-O-Tapu Thermal Wonderland, and enjoy Maori cultural experiences.</div><div>Queenstown: The adventure capital of the world, Queenstown offers activities like bungee jumping, skydiving, and jet boating. It\'s also a gateway to the stunning Fiordland National Park.</div><div>Milford Sound: Explore the breathtaking fjords, waterfalls, and dramatic landscapes of Milford Sound by boat or kayak.</div><div>Christchurch: Known as the \"Garden City,\" Christchurch boasts beautiful parks, the Canterbury Museum, and a unique mix of contemporary and heritage architecture.</div><div>Wellington: New Zealand\'s capital city offers a vibrant arts and culture scene, including Te Papa Museum and the Wellington Cable Car.</div><div>Rotorua: Explore the geothermal wonders, Maori culture, and outdoor adventures in this North Island city.</div><div>Fiordland National Park: Discover the pristine wilderness, hiking trails, and the iconic Milford Sound within this UNESCO World Heritage site.</div><div>Tongariro National Park: Home to the Tongariro Alpine Crossing, one of New Zealand\'s best day hikes, offering stunning volcanic landscapes.</div><div>Abel Tasman National Park: Enjoy coastal hikes, kayaking, and sunbathing on golden sand beaches in this South Island gem.</div><div>Things to Do in New Zealand:</div><div>Adventure Sports: Try bungee jumping, skydiving, jet boating, and white-water rafting in Queenstown.</div><div>Hiking: Explore the country\'s numerous hiking trails, including the famous Routeburn Track, Kepler Track, and the Tongariro Alpine Crossing.</div><div>Maori Cultural Experiences: Learn about New Zealand\'s indigenous culture through cultural performances, hangi feasts, and guided tours.</div><div>Wine Tasting: Visit the Marlborough region for wine tasting, especially the world-renowned Sauvignon Blanc.</div><div>Wildlife Viewing: Observe unique wildlife, such as kiwi birds, dolphins, seals, and penguins, in their natural habitats.</div><div>Scenic Drives: Enjoy picturesque drives along the Great Ocean Road, Milford Road, and other scenic routes.</div><div>Stargazing: Experience the stunning night sky by stargazing at designated dark sky reserves.</div><div>Thermal Springs: Relax in natural thermal springs and hot pools found throughout the country.</div><div>Cruise on the Doubtful Sound: Explore the remote and tranquil Doubtful Sound on a boat cruise.</div><div>Lord of the Rings Tour: Visit film locations from the famous movie trilogy in Wellington and the South Island.</div><div>New Zealand offers a diverse range of experiences for nature enthusiasts, adventure seekers, and those looking to immerse themselves in Maori culture. Whether you\'re exploring the North Island or the South Island, you\'ll find plenty of captivating destinations and activities to enjoy.</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'New Zealand\'s largest city offers a mix of urban attractions and natural beauty. ','New Zealand adventures North Island travel South Island travel Auckland vacations Queenstown activities Wellington city guide Kiwi culture New Zealand landscapes Maori heritage Lord of the Rings locations Milford Sound cruise Abel Tasman hiking Rotorua geothermal New Zealand beaches Kiwi wildlife New Zealand road trips New Zealand travel tips','\"Discover the beauty and adventure of New Zealand with our travel guide. Explore stunning landscapes, vibrant cities, and unique Maori culture. Plan your dream vacation to the Land of the Long White Cloud today!\"','','','157_1694418391.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(37,'Greenland','greenland','Greenland',87,'87_1694410017.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Greenland, a vast and remote land in the North Atlantic, is a place of awe-inspiring natural wonders and unique cultural experiences. As the world\'s largest island, Greenland offers travelers a chance to explore its stunning landscapes, rich Inuit heritage, and a world of adventure. Whether you\'re a nature enthusiast, a history buff, or simply seeking solitude in the great outdoors, Greenland has something special to offer.</div><div><b>Greenland\'s Natural Wonders</b></div><div>1.1. Glacial Marvels</div><div>Greenland is renowned for its colossal glaciers, including the impressive Ilulissat Icefjord, a UNESCO World Heritage site. Witness the breathtaking spectacle of massive icebergs breaking off from glaciers and floating out to sea.</div><div>1.2. Arctic Wilderness</div><div>Explore the untamed Arctic wilderness with its rugged mountains, deep fjords, and pristine wilderness areas. Hike through national parks like Northeast Greenland National Park and experience the remote beauty of the Arctic landscape.</div><div>1.3. Unique Wildlife Encounters</div><div>Greenland\'s wildlife includes Arctic foxes, reindeer, seals, and various bird species. Embark on wildlife safaris to catch a glimpse of these remarkable creatures in their natural habitat.</div><div>1.4. The Northern Lights</div><div>Experience the enchanting display of the Northern Lights in Greenland\'s dark winter skies. Witnessing this natural phenomenon is a truly mesmerizing and unforgettable experience.</div><div><b>Best Time to Visit Greenland</b></div><div>2.1. Seasonal Variation</div><div>Greenland experiences a polar climate with distinct seasons. Summer, from June to August, offers milder temperatures and the opportunity for hiking and exploration. Winter, from November to February, is ideal for experiencing the Northern Lights and winter sports.</div><div>2.2. Midnight Sun</div><div>During the summer months, parts of Greenland experience the Midnight Sun, where the sun never sets. This phenomenon provides extended daylight hours for exploration and outdoor activities.</div><div><b>Top Destinations in Greenland</b></div><div>3.1. Nuuk: The Capital City</div><div>Explore Nuuk, Greenland\'s capital, where you can learn about Inuit culture at the National Museum and visit the colorful Nuuk Cathedral. Don\'t miss the chance to try traditional Greenlandic cuisine.</div><div>3.2. Ilulissat: Iceberg Paradise</div><div>Ilulissat is a picturesque town known for its proximity to the massive Ilulissat Icefjord. Take a boat tour to witness the grandeur of icebergs up close.</div><div>3.3. Sisimiut: Adventure Hub</div><div>Sisimiut offers a range of outdoor activities, from hiking and dog sledding in winter to kayaking and fishing in summer. Explore the town\'s history at the Sisimiut Museum.</div><div>3.4. Disko Island: Nature Retreat</div><div>Disko Island is a natural wonderland with hiking trails, hot springs, and breathtaking landscapes. It\'s a perfect destination for those seeking tranquility and outdoor adventures.</div><div>3.5. East Greenland: Remote Beauty</div><div>Explore the remote and rugged landscapes of East Greenland, known for its dramatic fjords, towering peaks, and opportunities for wilderness trekking.</div><div><b>Greenlandic Culture and Traditions</b></div><div>4.1. Inuit Heritage</div><div>Discover the rich Inuit culture and traditions that have been preserved for generations. Visit local communities to learn about their way of life, art, and storytelling.</div><div>4.2. Greenlandic Cuisine</div><div>Sample traditional Greenlandic dishes such as kiviak (fermented birds), raw seal meat, and freshly caught fish. Local restaurants offer a unique culinary experience.</div><div>4.3. Dog Sledding</div><div>Experience the traditional mode of transportation in Greenland by embarking on a dog sledding adventure. It\'s an opportunity to connect with the land and the local way of life.</div><div><b>Greenland Adventure Packages</b></div><div>5.1. Trekking and Hiking</div><div>Greenland offers incredible trekking and hiking opportunities, including the Arctic Circle Trail, which traverses the wilderness of western Greenland. Explore pristine landscapes on foot.</div><div>5.2. Kayaking and Boat Tours</div><div>Take to the water and explore Greenland\'s coastlines and fjords by kayak or on boat tours. Witness marine life, glaciers, and remote settlements from the sea.</div><div>5.3. Arctic Expeditions</div><div>Join Arctic expeditions that provide a chance to explore the far reaches of Greenland\'s wilderness, including its ice cap and remote villages.</div><div>Traveling Solo in Greenland</div><div>6.1. Solo Adventure</div><div>Greenland is a safe destination for solo travelers. Embrace the solitude and self-discovery that come with exploring this vast land on your own.</div><div>6.2. Meeting Locals</div><div>Interact with friendly locals in towns and villages, where you can learn about their daily lives and traditions.</div><div>Conclusion: Embrace the Beauty of Greenland</div><div>A journey to Greenland promises a unique blend of natural beauty, cultural richness, and adventure. Whether you\'re captivated by the majesty of glaciers, the allure of the Northern Lights, or the warmth of Inuit hospitality, Greenland will leave you with cherished memories of a remarkable Arctic experience.</div><div>Prepare for an unforgettable adventure and immerse yourself in the unparalleled beauty of Greenland. Let the Arctic magic leave you in awe!</div><div><b>FAQs about Greenland Travel</b></div><div>Is Greenland a suitable destination for travelers of all ages?</div><div>Greenland can be enjoyed by travelers of all ages, but it\'s particularly appealing to those who appreciate outdoor adventures, nature, and Arctic experiences.</div><div>Can I customize my Greenland travel itinerary?</div><div>Many tour operators offer customizable travel packages to Greenland, allowing you to tailor your trip to your interests and preferences.</div><div>What is the best time to see the Northern Lights in Greenland?</div><div>The best time to witness the Northern Lights in Greenland is during the dark winter months, typically from November to February, when the skies are clear and the auroras are most active.</div><div><b>Are there any safety precautions to consider when traveling in Greenland?</b></div><div>Travelers should be prepared for the remote and challenging conditions in Greenland, especially if venturing into the wilderness. It\'s essential to follow safety guidelines, have the right gear, and be aware of weather changes.</div><div><b>How can I find the best deals on Greenland travel packages?</b></div><div>To find the best deals on Greenland travel packages, compare offerings from various travel agencies, look for promotions during shoulder seasons, and consider group tours or last-minute deals. Additionally, subscribing to travel newsletters and staying updated on travel deal websites can help you find discounts and special offers.</div><div><br></div><div><br></div><div><br></div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Natural Beauty of Greenland','Greenland tourism Greenland natural wonders Ilulissat Icefjord Arctic wilderness Inuit culture Northern Lights in Greenland Top Greenland destinations Greenlandic cuisine Arctic adventures Solo travel in Greenland','\"Explore Greenland\'s glaciers, Arctic wilderness, and Inuit heritage. Experience the Northern Lights and embark on Arctic adventures in this remote and stunning destination.\"','','','87_1694410017.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(38,'Croatia','croatia','Croatia',55,'55_1694258410.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Discovering the Beauty of Croatia</div><div>Croatia, a country nestled in the heart of Europe, boasts an enchanting blend of natural wonders, rich history, and vibrant culture. From the stunning Adriatic coastline to the historic cities steeped in tradition, Croatia offers a diverse array of experiences for every traveler.</div><div><b>Croatia: Nature\'s Masterpiece</b></div><div>As you embark on your journey through Croatia, prepare to be captivated by the country\'s natural beauty.</div><div>2.1. The Coastal Marvels</div><div>Croatia\'s coastline along the Adriatic Sea is a mesmerizing tapestry of rugged cliffs, crystal-clear waters, and charming islands. Explore the idyllic beaches, hidden coves, and historic coastal towns like Dubrovnik and Split.</div><div>2.2. National Parks and Outdoor Adventures</div><div>Croatia is home to several stunning national parks, including Plitvice Lakes and Krka, where you can immerse yourself in pristine landscapes, waterfalls, and lush forests. Hiking, kayaking, and cycling enthusiasts will find plenty of opportunities to embrace the outdoors.</div><div>2.3. Diverse Wildlife</div><div>Discover Croatia\'s diverse wildlife, from dolphins and sea turtles in the Adriatic Sea to bears and lynx in the country\'s forests. Birdwatchers will be delighted by the abundance of avian species.</div><div>2.4. Picturesque Lakes and Rivers</div><div>Explore the serene beauty of Croatia\'s lakes and rivers, such as Lake Bled, Lake Bohinj, and the emerald-green Tara River. These natural wonders are perfect for relaxation and water-based activities.</div><div><b>The Ideal Time to Visit Croatia</b></div><div>The best time to visit Croatia depends on your preferences and the experiences you seek.</div><div>3.1. Mediterranean Climate</div><div>Croatia enjoys a Mediterranean climate, with hot summers and mild winters. The peak tourist season is during the summer months of June to August, while spring and autumn offer pleasant weather and fewer crowds.</div><div>3.2. Festivals and Cultural Events</div><div>Croatia hosts a variety of festivals and cultural events throughout the year, such as the Dubrovnik Summer Festival and the Zagreb Advent. Consider planning your visit to coincide with these celebrations for an enriching cultural experience.</div><div><b>Must-Visit Destinations in Croatia</b></div><div>Croatia\'s diverse landscapes and historical treasures beckon exploration. Here are some top destinations to include in your Croatia tour package:</div><div>4.1. Dubrovnik: The Pearl of the AdriaticDubrovnik\'s well-preserved medieval walls, historic Old Town, and stunning coastal views make it a must-visit destination for history and architecture enthusiasts.</div><div>4.2. Split: Ancient History and Modern Charm</div><div>Explore the ancient Diocletian\'s Palace, stroll along the lively Riva promenade, and experience the dynamic blend of history and modernity in Split.</div><div>4.3. Plitvice Lakes National Park: Nature\'s Wonderland</div><div>Marvel at the cascading waterfalls and crystal-clear lakes in this UNESCO World Heritage site. It\'s a paradise for nature lovers and photographers.</div><div>4.4. Zagreb: The Capital\'s Cultural Delights</div><div>Discover Zagreb\'s vibrant arts scene, historic Upper Town, and lively street markets. The city offers a rich tapestry of culture and tradition.</div><div>4.5. Hvar: Island Paradise</div><div>Hvar Island boasts charming villages, lavender fields, and vibrant nightlife. Relax on picturesque beaches or explore the island\'s historical sites.</div><div>4.6. Istria: Culinary and Cultural Gem</div><div>Explore the picturesque Istrian peninsula, known for its truffles, olive oil, and charming hilltop towns like Rovinj and Motovun.</div><div>4.7. Zadar: Coastal Beauty and Musical Magic</div><div>Zadar offers stunning sunsets, Roman ruins, and the unique Sea Organ and Greeting to the Sun installations, creating a captivating coastal experience.</div><div>4.8. Plitvice Lakes: Nature\'s Masterpiece</div><div>Plitvice Lakes National Park is a stunning display of waterfalls, lakes, and lush forests, providing an enchanting escape into nature.</div><div>4.9. Pula: Roman Heritage</div><div>Discover Pula\'s well-preserved Roman amphitheater, historical sites, and beautiful beaches along the Istrian Peninsula.</div><div><b>Embracing Croatian Culture and Gastronomy</b></div><div>Croatia\'s culture is a tapestry of history, tradition, and warm hospitality.</div><div>5.1. Historical Heritage</div><div>Delve into Croatia\'s rich historical heritage by visiting museums, archaeological sites, and ancient towns.</div><div>5.2. Culinary Adventures</div><div>Savor Croatia\'s culinary delights, including fresh seafood, truffle-infused dishes, and local wines. Don\'t miss the opportunity to dine in traditional konobas (taverns).</div><div>5.3. Festivals and Celebrations</div><div>Participate in Croatia\'s vibrant festivals and celebrations, from traditional folk festivals to modern music and arts events.</div><div><b>Croatia Tour Packages for Adventure Enthusiasts</b></div><div>Croatia offers numerous opportunities for adventure seekers to explore its natural wonders.</div><div>6.1. Island Hopping</div><div>Embark on an island-hopping adventure to explore Croatia\'s stunning coastal islands, each with its unique charm and natural beauty.</div><div>6.2. Sea Kayaking and Snorkeling</div><div>Discover the Adriatic Sea\'s crystal-clear waters by sea kayaking and snorkeling, exploring hidden caves and marine life.</div><div>6.3. Hiking and Cycling</div><div>Explore Croatia\'s diverse landscapes by hiking or cycling through its national parks, mountains, and coastal trails.</div><div>6.4. Sailing and Yachting</div><div>Experience the Adriatic coastline from a different perspective by sailing or yachting along its pristine waters.</div><div><b>Croatia Tour Packages for Solo Travelers</b></div><div>Croatia welcomes solo travelers with open arms, providing a safe and enriching experience.</div><div>7.1. Solo Exploration</div><div>Enjoy the freedom of solo travel as you immerse yourself in Croatia\'s diverse landscapes and cultural heritage.</div><div>7.2. Social Encounters</div><div>Engage with fellow travelers and locals through shared accommodations, guided tours, and cultural experiences.</div><div><b>Conclusion: Discover Croatia\'s Charms</b></div><div>A journey to Croatia promises a tapestry of natural wonders, rich history, and vibrant culture that will leave you with cherished memories. Whether you\'re exploring ancient cities, basking on pristine beaches, or hiking through national parks, Croatia\'s charms are sure to captivate your heart.</div><div>Pack your bags and embark on an unforgettable adventure in Croatia. Let the beauty of this European gem enchant you!</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Embark on a Luxurious Escape in Croatia','Croatia travel Adriatic coastline Dubrovnik history Plitvice Lakes National Park Croatian cuisine Island hopping in Croatia Croatian culture Zagreb attractions Hiking in Croatia Croatia solo travel','\"Embark on a journey through Croatia\'s beauty. From the historic cities of Dubrovnik and Split to the natural wonders of Plitvice Lakes and the Adriatic coastline, uncover rich culture, outdoor adventures, and culinary delights.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(39,'Chile','chile','Chile',45,'45_1694255096.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Chile, often referred to as the \"Gem of South America,\" is a captivating country that offers a unique blend of natural beauty, rich history, and warm hospitality. Whether you\'re an intrepid adventurer, a history enthusiast, a nature lover, or a solo traveler seeking solitude, Chile provides an array of experiences to satisfy every wanderlust.</div><div><b>Chile: A Land of Diversity and Natural Wonders</b></div><div>1.1. Breathtaking Scenic Beauty</div><div>Prepare to be mesmerized by Chile\'s diverse landscapes, from the soaring Andes Mountains to the pristine Patagonian wilderness. Marvel at the stunning beauty of the Atacama Desert, the mystique of Easter Island, and the pristine lakes of the Chilean Lake District.</div><div>1.2. Unique Wildlife Encounters</div><div>Chile is home to a remarkable array of wildlife, including guanacos, penguins, and the elusive puma. Explore national parks and wildlife reserves for an up-close experience with these fascinating species.</div><div>1.3. Captivating Cities and Cultural Adventures</div><div>Discover the vibrant city life in Santiago, Valparaíso, and other urban centers. Immerse yourself in Chile\'s cultural scene, from art exhibitions to traditional folk festivals.</div><div>1.4. Coastal Retreats</div><div>Chile boasts a lengthy coastline dotted with charming seaside towns. Whether you seek relaxation or water sports, Chile\'s beaches offer a variety of options.</div><div><b>The Best Time to Explore Chile</b></div><div>The ideal time to visit Chile depends on your preferences and the experiences you seek.</div><div>2.1. Seasonal Variation and Weather</div><div>Chile experiences a range of climates due to its vast geographical diversity. Coastal regions offer temperate climates year-round, while the Andes can be explored during the summer months for hiking and skiing.</div><div>2.2. Cultural Festivals and Events</div><div>Chile hosts numerous festivals and events throughout the year, including Fiestas Patrias and the Valparaíso Carnival. Consider timing your visit to coincide with these vibrant celebrations.</div><div><b>Top Destinations to Include in Your Chilean Adventure</b></div><div>Chile is a country of immense beauty and variety, offering a multitude of must-visit destinations:</div><div>3.1. Santiago: The Dynamic Capital</div><div>Santiago, Chile\'s capital, boasts a mix of modernity and tradition. Explore its museums, historic neighborhoods, and bustling markets.</div><div>3.2. Valparaíso: The Bohemian Port CityValparaíso is renowned for its colorful hillsides, street art, and vibrant culture. Ride its funiculars and soak in the artistic atmosphere.</div><div>3.3. Torres del Paine National Park: Patagonia\'s Crown Jewel</div><div>For nature lovers and hikers, Torres del Paine is a paradise. Explore its dramatic landscapes, glaciers, and pristine wilderness.</div><div>3.4. Easter Island: The Enigmatic Moai Statues</div><div>Easter Island offers a unique cultural and historical experience. Visit the iconic moai statues and uncover the island\'s mysteries.</div><div>3.5. San Pedro de Atacama: Desert Oasis</div><div>Explore the Atacama Desert, the driest in the world, and be captivated by its lunar landscapes, geysers, and stargazing opportunities.</div><div><b>Experiencing Chilean Culture and Lifestyle</b></div><div>Chile\'s culture is a captivating fusion of indigenous heritage and Spanish influences, with a deep appreciation for arts, cuisine, and festivals.</div><div>4.1. Chilean Cuisine</div><div>Indulge in traditional Chilean dishes like empanadas, seafood, and the delectable pastel de choclo. Pair your meal with Chilean wine, famous worldwide for its quality.</div><div>4.2. Arts and Handicrafts</div><div>Discover Chile\'s vibrant arts scene, from traditional crafts to contemporary exhibitions. Explore local markets for unique souvenirs.</div><div>4.3. Folk Music and Dance</div><div>Experience the lively rhythms of Chilean folk music and witness traditional dances, such as the cueca, which celebrate the nation\'s heritage.</div><div><b>Chilean Adventure Packages for Nature Enthusiasts</b></div><div>Chile offers a wealth of outdoor experiences for nature enthusiasts and adventure seekers.</div><div>5.1. Hiking and Trekking</div><div>Chile\'s diverse landscapes provide exceptional opportunities for hiking and trekking. Explore the Andes, Patagonia, and more on foot.</div><div>5.2. Wildlife Safaris and Eco-Tours</div><div>Embark on wildlife safaris and eco-tours to encounter Chile\'s diverse fauna and contribute to conservation efforts.</div><div>5.3. Stargazing and Astronomy</div><div>Chile\'s clear skies make it one of the best places in the world for stargazing. Visit observatories and witness the splendor of the night sky.</div><div><b>Chilean Adventure Packages for Solo Travelers</b></div><div>Chile welcomes solo travelers with open arms, offering a sense of adventure and exploration.</div><div>6.1. Embracing Solo Adventures</div><div>Experience the freedom and self-discovery that come with solo travel in a safe and welcoming country.</div><div>6.2. Meeting Fellow Travelers</div><div>Engage with fellow travelers and locals in hostels, social events, and group tours to share experiences and create lasting memories.</div><div>Conclusion: Embrace the Magic of Chile</div><div>A journey through Chile promises a remarkable fusion of natural wonders, cultural richness, and thrilling adventures, offering an experience of a lifetime. Whether you\'re exploring vibrant cities, savoring traditional cuisine, or embarking on outdoor escapades, Chile\'s enchantment will leave you spellbound.</div><div><br></div><div><b>Prepare for an extraordinary adventure in Chile, where every moment reveals the magic of this captivating nation!</b></div><div><br></div><div><br></div><div><br></div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Wonders of Chile','Chile South America Natural Beauty Rich History Hospitality Adventure Travel Cultural Festivals Santiago Valparaíso Torres del Paine Easter Island Atacama Desert Chilean Cuisine Arts and Crafts Folk Music Hiking and Trekking Wildlife Safaris Stargazing Solo Travel Patagonia Andes Mountains Chilean Wine Local Markets Eco-Tours Outdoor Adventures',' \"Discover Chile\'s diverse landscapes, rich culture, and thrilling adventures. From Santiago to Patagonia, explore the magic of this South American gem.\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(40,'Bosnia and Herzegowina','bosnia-and-herzegowina','Bosnia and Herzegowina',27,'27_1694254461.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div>Herzegovina, often referred to as the \"Hidden Gem of Europe,\" is a captivating country that boasts a unique blend of natural beauty, rich history, and warm hospitality. Whether you\'re an intrepid adventurer, a history enthusiast, a nature lover, or a solo traveler seeking solitude, Herzegovina offers an array of experiences to satisfy every wanderlust.</div><div><b>Herzegovina: A Land of Diverse Landscapes and Natural Wonders</b></div><div>1.1.<span style=\"white-space:pre\">	</span>Breathtaking Scenic Beauty</div><div>&nbsp;Prepare to be spellbound by Herzegovina\'s diverse landscapes, ranging from rugged mountains to serene rivers. Marvel at the stunning beauty of the Neretva River, the towering peaks of the Dinaric Alps, and the picturesque waterfalls of Kravica.</div><div>1.2.<span style=\"white-space:pre\">	</span>Rich History and Culture</div><div>&nbsp;Herzegovina is steeped in history, with influences from various civilizations evident in its architecture, cuisine, and traditions. Explore ancient towns like Mostar, with its iconic Ottoman-era bridge, and discover the cultural tapestry of the region.</div><div>1.3.<span style=\"white-space:pre\">	</span>Warm and Welcoming Locals</div><div>&nbsp;One of the most enchanting aspects of Herzegovina is the warmth and hospitality of its people. Engage with friendly locals, share stories, and savor traditional Bosnian coffee and delicacies.</div><div><b>The Best Time to Explore Herzegovina</b></div><div>The ideal time to visit Herzegovina depends on your preferences and the experiences you seek.</div><div>2.1. Seasonal Variation and Weather</div><div>&nbsp;Herzegovina experiences four distinct seasons, with warm summers, colorful autumns, snowy winters, and mild springs. Each season offers a unique charm and a variety of activities.</div><div>2.2. Cultural Festivals and Events&nbsp;</div><div>Herzegovina hosts a range of cultural festivals and events throughout the year, such as the Mostar Summer Festival and the Medjugorje Pilgrimage. Plan your visit to coincide with these celebrations for a richer experience.</div><div>Top Destinations to Include in Your Herzegovina Tour Package</div><div>Herzegovina may be a small country, but it packs a punch when it comes to must-visit destinations:</div><div>3.1. Mostar: The Iconic Bridge</div><div>&nbsp;City Mostar\'s famous Stari Most (Old Bridge) is a UNESCO World Heritage site and a symbol of unity. Explore the cobblestone streets, savor traditional Bosnian cuisine, and witness the mesmerizing divers who leap from the bridge.</div><div>3.2. Medjugorje: A Spiritual Pilgrimage</div><div>&nbsp;Medjugorje attracts pilgrims from around the world due to reported apparitions of the Virgin Mary. Visit the shrine and experience the spiritual ambiance of this sacred place.</div><div>3.3. Blagaj: Hidden Oasis of Herzegovina</div><div>&nbsp;Blagaj is home to the stunning Blagaj Tekija, a 16th-century Dervish monastery, perched beside the Buna River spring. Discover this hidden gem and enjoy a boat ride to the source of the river.</div><div>3.4. Kravica Waterfalls: Nature\'s Playground</div><div>&nbsp;Kravica Waterfalls, often referred to as the \"mini Niagara Falls,\" offer a refreshing escape. Swim in the emerald pools, picnic by the falls, and immerse yourself in the natural beauty.</div><div>3.5. Pocitelj: A Timeless Beauty&nbsp;</div><div>Explore the medieval town of Pocitelj, with its ancient fortress and well-preserved architecture. This historical gem offers a journey back in time.</div><div>Experiencing Herzegovinian Culture and Lifestyle</div><div>Herzegovina\'s culture is a captivating fusion of Eastern and Western influences, shaped by centuries of history.</div><div>4.1. Traditional Bosnian Cuisine</div><div>&nbsp;Indulge in authentic Bosnian dishes like cevapi (grilled minced meat), burek (pastry filled with meat or cheese), and baklava (sweet pastry). Pair your meal with locally brewed rakija (fruit brandy) for a true taste of Herzegovina.</div><div>4.2. Arts and Handicrafts&nbsp;</div><div>Discover the intricate craftsmanship of Herzegovinian artisans, known for their pottery, carpets, and metalwork. Take home a piece of Herzegovinian artistry as a souvenir.</div><div>4.3. Folk Music and Dance</div><div>&nbsp;Experience the lively rhythms of Herzegovinian folk music and witness traditional dances that celebrate the region\'s cultural heritage.</div><div>Herzegovina Tour Packages for Nature Enthusiasts</div><div>Herzegovina offers a wealth of outdoor experiences for nature enthusiasts and adventure seekers.</div><div>5.1. Hiking and Trekking&nbsp;</div><div>Explore Herzegovina\'s stunning landscapes on foot, with hiking trails in the Dinaric Alps and Herzegovina\'s karst region.</div><div>5.2. Rafting and Kayaking</div><div>&nbsp;Embark on thrilling river adventures, with white-water rafting and kayaking opportunities on the Neretva River.</div><div>5.3. Cave Exploration&nbsp;</div><div>Delve into the underground wonders of Herzegovina by exploring its limestone caves, such as the Vjetrenica Cave.</div><div><b>Herzegovina Tour Packages for Solo Travelers</b></div><div>Herzegovina welcomes solo travelers with open arms and provides a sense of serenity and exploration.</div><div>6.1. Embracing Solitude&nbsp;</div><div>Experience the tranquility of Herzegovina\'s natural beauty and historical sites at your own pace, gaining a deeper connection with the country.</div><div>6.2. Connecting with Locals&nbsp;</div><div>Interact with friendly locals, join guided tours, and immerse yourself in Herzegovinian culture while traveling solo.</div><div><b>Conclusion: Embrace the Beauty of Herzegovina</b></div><div>A Herzegovina travel package promises an unforgettable journey filled with natural wonders, cultural richness, and warm encounters. Whether you\'re wandering through ancient towns, savoring traditional cuisine, or embarking on outdoor adventures, Herzegovina\'s charm will leave you enchanted.</div><div>Prepare for an extraordinary adventure in Herzegovina, where every moment unveils the magic of this hidden gem!</div><div><br></div> ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Discovering the Enchanting Land of Herzegovina','Herzegovina Hidden Gem of Europe Natural Beauty Rich History Warm Hospitality Adventurer\'s Paradise Cultural Festivals Mostar Medjugorje Blagaj Kravica Waterfalls Pocitelj Traditional Bosnian Cuisine Arts and Handicrafts Folk Music and Dance Hiking and Trekking Rafting and Kayaking Cave Exploration Solo Travel Dinaric Alps Neretva River Bosnian Coffee Herzegovinian Culture',' \"Explore Herzegovina, Europe\'s hidden gem, with diverse landscapes, rich history, and warm hospitality. Discover Mostar, traditional cuisine, and thrilling adventures.','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(41,'Antarctica','antarctica','Antarctica',8,'8_1694247137.jpg',0,'2023-08-25 17:34:18','2023-08-25 17:34:18','1','0',NULL,'<div><div>Exploring the Enigmatic Antarctica, sometimes referred to as the Frozen Continent, is a destination unlike any other, offering a unique combination of pristine wilderness, extreme environments, and scientific exploration. Every adventurer will find something extraordinary in Antarctica, from its awe-inspiring ice formations to its diverse wildlife. Antarctica beckons travelers—explorers, scientists, thrill-seekers, and solitude-seekers—on an unforgettable expedition, showcasing its untouched landscapes, abundant wildlife, and unparalleled research opportunities.</div><div><b>Antarctica: A Land of Mystique and Natural Marvels Prepare to be captivated as you embark on your Antarctic journey, where the landscape is as enchanting as it is formidable.</b></div><div>2.1. The Mesmerizing Icescapes</div><div>&nbsp;Antarctica\'s landscapes are nothing short of mesmerizing, dominated by vast ice sheets, towering glaciers, and colossal icebergs. Witness the sublime beauty of ice in its myriad forms, from shimmering blue icebergs to the endless expanses of white.</div><div>2.2. Exceptional Wildlife Encounters&nbsp;</div><div>Antarctica is home to some of the world\'s most remarkable wildlife, including penguins, seals, whales, and a variety of seabirds. Explore research stations and embark on wildlife cruises to get up close and personal with these resilient creatures.</div><div>2.3. Scientific Exploration and Research&nbsp;</div><div>Antarctica serves as a global hub for scientific research, offering unparalleled opportunities for scientists from around the world. Learn about the vital research being conducted on climate change, marine biology, and more in this remote and vital region.</div><div>2.4. Extreme Adventure and Unforgiving Conditions</div><div>&nbsp;Experience the thrill of exploring one of the harshest environments on Earth, from camping on ice to braving sub-zero temperatures. Antarctica presents a unique challenge for intrepid adventurers.</div><div><b>The Best Time to Visit Antarctica&nbsp;</b></div><div>The ideal time to visit Antarctica is during its brief summer season, which runs from November to March. During this time, the weather is relatively milder, and wildlife is most active.</div><div>3.1. Summer Expeditions and Cruises</div><div>&nbsp;Plan your visit to coincide with the summer months, when expedition cruises are available, and you can explore the continent\'s wonders with relative ease.</div><div>Top Destinations to Include in Your Antarctica Expedition</div><div>&nbsp;Antarctica may be a vast and icy continent, but it offers a range of incredible destinations to explore. Here are some must-visit places to include in your expedition:</div><div>4.1. The Antarctic Peninsula: A Window into Antarctica The Antarctic Peninsula is the most accessible region of Antarctica and offers stunning landscapes, wildlife encounters, and research stations.</div><div>4.2. South Georgia Island: A Wildlife Paradise South Georgia Island is a haven for wildlife enthusiasts, with abundant penguin colonies, seals, and albatross populations.</div><div>4.3. The Ross Sea Region: History and Discovery Explore the historic sites and research stations in the Ross Sea region, where early explorers like Shackleton and Scott made their mark.</div><div>4.4. The Weddell Sea: Untouched Wilderness The Weddell Sea is a remote and pristine region known for its dramatic ice formations and incredible wildlife.</div><div>4.5. The East Antarctic Plateau: Rugged Beauty Discover the vast, windswept landscapes of the East Antarctic Plateau, where few travelers venture.</div><div>Experiencing the Antarctic Lifestyle and Research Antarctica\'s lifestyle is a blend of survival in extreme conditions and dedication to scientific inquiry.</div><div>5.1. Life at Research Stations&nbsp;</div><div>Learn about the day-to-day life of scientists and support staff at research stations, where they work to unravel the mysteries of Antarctica.</div><div>5.2. Polar Cuisine and Dining&nbsp;</div><div>Experiences Experience Antarctic cuisine, where hearty and warming meals are essential for survival in the frigid climate.</div><div>5.3. Outdoor Adventures and Extreme Sports&nbsp;</div><div>Engage in outdoor activities like ice climbing, snowboarding, and even polar plunges, embracing the extreme sports that Antarctica has to offer.</div><div>Antarctica Expedition Packages for Adventure Enthusiasts Antarctica is a haven for adventure seekers, offering once-in-a-lifetime experiences in one of the world\'s most remote and extreme environments.</div><div>6.1. Iceberg Kayaking and Polar Diving&nbsp;</div><div>Paddle among icebergs and explore the icy depths through polar diving, immersing yourself in a world few have seen.</div><div>6.2. Glacier Trekking and Mountaineering&nbsp;</div><div>Embark on glacier treks and mountaineering expeditions, conquering some of the world\'s most challenging peaks.</div><div>6.3. Wildlife Research and Conservation&nbsp;</div><div>Participate in wildlife research programs and contribute to the conservation of Antarctica\'s unique ecosystems.</div><div>6.4. Aurora Australis and Night Sky&nbsp;</div><div>Observation Witness the breathtaking Southern Lights, or Aurora Australis, and stargaze in one of the darkest skies on Earth.</div><div>Antarctica Expedition Packages for Solo Adventurers Antarctica warmly welcomes solo adventurers, offering solitude and self-discovery in a land of extremes.</div><div>7.1. Solitary Exploration Experience</div><div>&nbsp;the profound solitude and self-reflection that come with exploring Antarctica\'s vast expanses alone.</div><div>7.2. Camaraderie with Fellow Explorers&nbsp;</div><div>Forge bonds with fellow adventurers and researchers, sharing stories and experiences in this remote wilderness.</div><div>Conclusion: Embrace the Mystique of Antarctica An Antarctic expedition promises a once-in-a-lifetime fusion of awe-inspiring natural wonders, scientific discovery, and unparalleled adventure. Every moment in Antarctica will leave you with indelible memories, whether you\'re standing amidst towering icebergs, witnessing wildlife in its element, or contributing to cutting-edge research in this enigmatic land.</div><div>Prepare for an extraordinary journey to Antarctica, where its mystique will leave you utterly spellbound!</div><div><br></div></div>  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'Exploring the Enigmatic Antarctica','Australia Land Down Under Australia travel Australian tourism Antarctica Frozen Continent Antarctica expedition Antarctic wildlife Antarctic research Adventure travel Solo travel Natural wonders Cultural experiences Outdoor activities Extreme environments Wildlife encounters Climate change research Scientific exploration Icebergs Pristine landscapes',' \"Explore the diverse landscapes, wildlife encounters, and scientific wonders of Australia and Antarctica. Embark on unforgettable adventures today!\"','','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(42,'Japan','japan','Japan',110,'110_1694845514.jpeg',0,'2023-09-14 11:18:09','2023-09-14 11:18:09','1','0',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Japan: A Land of Rich\r\nTradition, Natural Beauty, and Modern Marvels</b><o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Japan, often referred to as the\r\n\"Land of the Rising Sun,\" is a country that seamlessly weaves\r\ntogether a rich tapestry of ancient traditions, awe-inspiring natural beauty,\r\nand cutting-edge technological innovations. From its timeless cultural heritage\r\nto its stunning landscapes and modern marvels, Japan offers travelers a diverse\r\nrange of experiences that leave an indelible mark. Let\'s embark on a journey to\r\ndiscover the essence of Japan, where the past and present converge in harmony.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Cultural Heritage:</b> Japan\'s\r\ncultural heritage is deeply ingrained in its daily life. Explore historic\r\ntreasures like Kyoto\'s ancient temples and shrines, where traditional rituals\r\nand ceremonies continue to be practiced. Witness the elegance of a tea ceremony\r\nor the precision of a traditional ikebana (flower arranging) demonstration.\r\nJapan\'s reverence for its cultural roots is evident in every aspect of its\r\nsociety.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Natural Beauty:</b> Japan\'s\r\nnatural landscapes are a testament to its breathtaking beauty. Cherry blossoms\r\npaint the country in shades of pink and white during spring, while vibrant\r\nautumn foliage adorns its parks and mountains. Discover the serenity of\r\nJapanese gardens, like Kenrokuen in Kanazawa or Korakuen in Okayama,<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Historical Sites (continued):</b>\r\nJapan\'s history is preserved in its well-preserved historical sites. Explore\r\nthe ancient castles of Himeji and Matsumoto, which stand as architectural\r\nmarvels from Japan\'s feudal era. Hiroshima\'s Peace Memorial Park offers a\r\npoignant reminder of the country\'s resilience and commitment to peace. Visiting\r\nNagasaki, you can explore the rich history of Japan\'s connection with the\r\nworld.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Japanese Cuisine:</b> Japanese\r\ncuisine is a feast for the senses, renowned for its precision and artistry.\r\nSavor sushi and sashimi at a traditional sushiya, enjoy hearty ramen at a local\r\nnoodle shop, or indulge in the delicate flavors of kaiseki, a multi-course meal\r\nthat showcases seasonal ingredients. Street food markets like Osaka\'s Dotonbori\r\nand Tokyo\'s Tsukiji Fish Market offer culinary adventures.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Technology and Innovation:</b> Japan\'s\r\ntechnological prowess is world-renowned. Tokyo\'s Akihabara district is a\r\nparadise for tech enthusiasts, while the country continues to lead in robotics\r\nand engineering. The Shinkansen, or bullet train, revolutionized travel with\r\nits speed and efficiency, exemplifying Japan\'s commitment to innovation.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Japanese Traditions:</b> The\r\ncustoms and traditions of Japan are an integral part of its cultural identity.\r\nWitness the art of kimono dressing, experience the exhilarating world of sumo\r\nwrestling, and participate in festivals like the Gion Matsuri in Kyoto or the\r\nNebuta Festival in Aomori. Traditional crafts such as pottery, calligraphy, and\r\nikebana are cherished cultural pursuits.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Travel Experiences:</b> Japan\r\noffers a wide array of travel experiences. Soak in an onsen (hot spring)\r\nsurrounded by stunning natural landscapes in places like Hakone or Beppu. Trek\r\nalong the Kumano Kodo pilgrimage trails or hike through the Japanese Alps.\r\nEngage with locals through homestays and cultural workshops to gain deeper\r\ninsights into Japanese life.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Warm Hospitality:</b> Japan\'s\r\nwarm and courteous hospitality, known as omotenashi, ensures that visitors feel\r\nwelcome and respected throughout their journey. From ryokan (traditional inns)\r\nto modern hotels, Japanese hospitality is an integral part of the travel\r\nexperience.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Japan: A Journey to Remember:</b>\r\nWhether you\'re wandering through ancient temples, marveling at the latest\r\ntechnological wonders, or savoring the flavors of Japanese cuisine, Japan\r\ninvites you to embark on a journey to remember. Immerse yourself in the land of\r\ntradition, natural beauty, and modern marvels, and discover the timeless allure\r\nof the Land of the Rising Sun.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Japan: A Journey to Remember\r\n(continued):</b><o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Arts and Entertainment:</b> Japan\'s\r\ncultural contributions extend to the arts and entertainment. Enjoy traditional\r\nperformances such as Noh and Kabuki theater, where centuries-old stories come\r\nto life through elaborate costumes and captivating storytelling. Anime and\r\nmanga enthusiasts can explore Tokyo\'s Akihabara district, a hub for pop culture\r\nand anime merchandise.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Scenic Landscapes:</b> Japan\'s\r\ndiverse geography encompasses majestic mountains, serene lakes, and lush\r\nforests. Explore the Japanese Alps for hiking and skiing adventures, or relax\r\nin the tranquil surroundings of Lake Kawaguchi or Lake Biwa. Japan\'s national\r\nparks, such as the stunning Nikko National Park, offer pristine natural beauty\r\nand opportunities for outdoor activities.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Seasonal Delights:</b> Japan\'s\r\ndistinct seasons bring a variety of experiences. Cherry blossom season (sakura)\r\npaints the country in hues of pink in spring, while winter brings the magic of\r\nsnow festivals in places like Sapporo. Summer invites you to enjoy fireworks\r\ndisplays and vibrant festivals like the Gion Matsuri in Kyoto. Autumn foliage\r\ncreates a breathtaking spectacle in parks and forests.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Safety and Cleanliness:</b>\r\nJapan is known for its safety and cleanliness. Travelers can explore cities and\r\nrural areas with confidence, and public spaces are well-maintained. Japanese\r\netiquette emphasizes respect and courtesy, contributing to the country\'s\r\nreputation as a safe and welcoming destination.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Transportation Excellence:</b>\r\nJapan\'s transportation system is highly efficient, making it easy to navigate\r\nthe country. The extensive network of trains, buses, and subways ensures that\r\neven remote areas are accessible. The Japan Rail Pass offers convenience and\r\ncost-effective travel for tourists.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Memorable Souvenirs:</b> Japan\r\noffers an array of unique souvenirs. Shop for traditional crafts such as\r\nceramics, lacquerware, and textiles. Kimonos, tea sets, and calligraphy\r\nsupplies make for distinctive gifts and cherished mementos of your journey.<o:p></o:p></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Conclusion:</b> Japan is a\r\ncaptivating blend of ancient traditions and cutting-edge innovation, where\r\nnatural beauty and modern marvels coexist harmoniously. Whether you\'re\r\nexploring centuries-old temples, marveling at technological achievements, or\r\nsavoring exquisite cuisine, Japan invites you to embark on a journey of\r\ndiscovery. Experience the timeless allure of this remarkable country and create\r\nmemories that will last a lifetime.</p>  ',NULL,NULL,'[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,' Discover Japan: A Land of Rich Tradition, Natural Beauty, and Modern Marvels','Japan, Japan travel, Japanese culture, natural beauty, modern Japan, historical sites, Japanese cuisine, technology, Japanese traditions, travel experiences',' Dive into the captivating world of Japan, where ancient traditions thrive alongside breathtaking landscapes and cutting-edge technology. Explore Japan\'s top attractions, cultural heritage, and its dynamic blend of past and present.','','','110_1694845514.jpg',NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(43,'Italy','italy','Italy',107,'',0,'2024-02-15 12:25:05','2024-02-15 12:25:05','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(44,'Bangladesh','bangladesh','Bangladesh',18,'',0,'2024-02-15 12:25:05','2024-02-15 12:25:05','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(45,'Saudi Arabia','saudi-arabia','Saudi Arabia',186,'',0,'2024-03-14 17:56:22','2024-03-14 17:56:22','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(46,'Norway','norway','Norway',164,'',0,'2024-03-14 17:56:22','2024-03-14 17:56:22','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(47,'Ireland','ireland','Ireland',105,'',0,'2024-03-14 17:56:22','2024-03-14 17:56:22','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(48,'Cyprus','cyprus','Cyprus',57,'',0,'2024-03-14 17:56:22','2024-03-14 17:56:22','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tbl_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_currency`
--

DROP TABLE IF EXISTS `tbl_currency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_currency` (
  `id` int NOT NULL AUTO_INCREMENT,
  `CurrencyId` int NOT NULL,
  `Title` varchar(100) NOT NULL,
  `defaultCurrency` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_currency`
--

LOCK TABLES `tbl_currency` WRITE;
/*!40000 ALTER TABLE `tbl_currency` DISABLE KEYS */;
INSERT INTO `tbl_currency` VALUES (1,1,'INR','0','1'),(2,2,'USD','1','1'),(3,3,'AUD','0','1'),(4,8,'CNY','0','1'),(5,11,'GBP','0','1'),(6,17,'JPY','0','1'),(7,28,'SGD','0','1'),(8,29,'THB','0','1'),(9,32,'EUR','0','1'),(10,33,'AED','0','1'),(11,83,'KES','0','1');
/*!40000 ALTER TABLE `tbl_currency` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_currency_rate`
--

DROP TABLE IF EXISTS `tbl_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_currency_rate` (
  `cid` int NOT NULL AUTO_INCREMENT,
  `FCurrencyType` int NOT NULL,
  `TCurrencyType` int NOT NULL,
  `Rate` double NOT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`cid`)
) ENGINE=InnoDB AUTO_INCREMENT=785 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_currency_rate`
--

LOCK TABLES `tbl_currency_rate` WRITE;
/*!40000 ALTER TABLE `tbl_currency_rate` DISABLE KEYS */;
INSERT INTO `tbl_currency_rate` VALUES (1,1,1,1,'1'),(2,1,2,0.012104,'1'),(3,1,3,0.018105,'1'),(4,1,8,0.087407,'1'),(5,1,11,0.009431,'1'),(6,1,17,1.721911,'1'),(7,1,28,0.016301,'1'),(8,1,29,0.42587,'1'),(9,1,32,0.01104,'1'),(10,1,33,0.044459,'1'),(11,2,1,82.615504,'1'),(12,2,2,1,'1'),(13,2,3,1.49576,'1'),(14,2,8,7.221198,'1'),(15,2,11,0.779135,'1'),(16,2,17,142.256509,'1'),(17,2,28,1.346695,'1'),(18,2,29,35.1835,'1'),(19,2,32,0.91208,'1'),(20,2,33,3.67304,'1'),(21,3,1,55.233121,'1'),(22,3,2,0.668556,'1'),(23,3,3,1,'1'),(24,3,8,4.827778,'1'),(25,3,11,0.520896,'1'),(26,3,17,95.106494,'1'),(27,3,28,0.900342,'1'),(28,3,29,23.522153,'1'),(29,3,32,0.609777,'1'),(30,3,33,2.455634,'1'),(31,8,1,11.440693,'1'),(32,8,2,0.138481,'1'),(33,8,3,0.207135,'1'),(34,8,8,1,'1'),(35,8,11,0.107896,'1'),(36,8,17,19.69985,'1'),(37,8,28,0.186492,'1'),(38,8,29,4.872253,'1'),(39,8,32,0.126306,'1'),(40,8,33,0.508647,'1'),(41,11,1,106.034867,'1'),(42,11,2,1.283474,'1'),(43,11,3,1.91977,'1'),(44,11,8,9.268221,'1'),(45,11,11,1,'1'),(46,11,17,182.582559,'1'),(47,11,28,1.728449,'1'),(48,11,29,45.157114,'1'),(49,11,32,1.170631,'1'),(50,11,33,4.714252,'1'),(51,17,1,0.58075,'1'),(52,17,2,0.00703,'1'),(53,17,3,0.010515,'1'),(54,17,8,0.050762,'1'),(55,17,11,0.005477,'1'),(56,17,17,1,'1'),(57,17,28,0.009467,'1'),(58,17,29,0.247324,'1'),(59,17,32,0.006412,'1'),(60,17,33,0.02582,'1'),(61,28,1,61.346842,'1'),(62,28,2,0.742558,'1'),(63,28,3,1.110689,'1'),(64,28,8,5.362161,'1'),(65,28,11,0.578553,'1'),(66,28,17,105.633775,'1'),(67,28,28,1,'1'),(68,28,29,26.125805,'1'),(69,28,32,0.677273,'1'),(70,28,33,2.727447,'1'),(71,29,1,2.348132,'1'),(72,29,2,0.028422,'1'),(73,29,3,0.042513,'1'),(74,29,8,0.205244,'1'),(75,29,11,0.022145,'1'),(76,29,17,4.043273,'1'),(77,29,28,0.038276,'1'),(78,29,29,1,'1'),(79,29,32,0.025924,'1'),(80,29,33,0.104397,'1'),(81,32,1,90.579225,'1'),(82,32,2,1.096395,'1'),(83,32,3,1.639944,'1'),(84,32,8,7.917285,'1'),(85,32,11,0.85424,'1'),(86,32,17,155.969325,'1'),(87,32,28,1.47651,'1'),(88,32,29,38.575013,'1'),(89,32,32,1,'1'),(90,32,33,4.027103,'1'),(91,33,1,22.492403,'1'),(92,33,2,0.272254,'1'),(93,33,3,0.407227,'1'),(94,33,8,1.966,'1'),(95,33,11,0.212123,'1'),(96,33,17,38.729907,'1'),(97,33,28,0.366643,'1'),(98,33,29,9.578849,'1'),(99,33,32,0.248317,'1'),(100,33,33,1,'1'),(101,83,1,0.598148,'1'),(102,1,83,1.671828,'1'),(103,1,6,0.016073,'1'),(104,1,12,0.094743,'1'),(105,1,15,183.521255,'1'),(106,1,20,0.056525,'1'),(107,1,21,0.128587,'1'),(108,1,31,0.228277,'1'),(109,1,41,0.020556,'1'),(110,1,45,0.004527,'1'),(111,1,53,237.24362,'1'),(112,1,85,49.596894,'1'),(113,1,88,0.003715,'1'),(114,1,90,5.353443,'1'),(115,1,91,230.264991,'1'),(116,1,93,3.747443,'1'),(117,1,106,0.186278,'1'),(118,1,139,29.365595,'1'),(119,1,145,286.265899,'1'),(120,2,6,1.32789,'1'),(121,2,12,7.82728,'1'),(122,2,15,15161.700887,'1'),(123,2,20,4.66987,'1'),(124,2,21,10.623251,'1'),(125,2,31,18.8592,'1'),(126,2,41,1.698228,'1'),(127,2,45,0.374038,'1'),(128,2,53,19600.001146,'1'),(129,2,83,138.118888,'1'),(130,2,85,4097.472342,'1'),(131,2,88,0.306889,'1'),(132,2,90,442.277412,'1'),(133,2,91,19023.458183,'1'),(134,2,93,309.596921,'1'),(135,2,106,15.389469,'1'),(136,2,139,2426.053432,'1'),(137,2,145,23650.001383,'1'),(138,3,6,0.887769,'1'),(139,3,12,5.232978,'1'),(140,3,15,10136.451637,'1'),(141,3,20,3.122071,'1'),(142,3,21,7.102242,'1'),(143,3,31,12.608438,'1'),(144,3,41,1.135361,'1'),(145,3,45,0.250065,'1'),(146,3,53,13103.705527,'1'),(147,3,83,92.340262,'1'),(148,3,85,2739.391216,'1'),(149,3,88,0.205173,'1'),(150,3,90,295.687379,'1'),(151,3,91,12718.254059,'1'),(152,3,93,206.982992,'1'),(153,3,106,10.288728,'1'),(154,3,139,1621.953465,'1'),(155,3,145,15811.358965,'1'),(156,6,1,62.215621,'1'),(157,6,2,0.753074,'1'),(158,6,3,1.126419,'1'),(159,6,6,1,'1'),(160,6,8,5.438099,'1'),(161,6,11,0.586747,'1'),(162,6,12,5.894524,'1'),(163,6,15,11417.888857,'1'),(164,6,17,107.129736,'1'),(165,6,20,3.516759,'1'),(166,6,21,8.000098,'1'),(167,6,28,1.014162,'1'),(168,6,29,26.495793,'1'),(169,6,31,14.202381,'1'),(170,6,32,0.686864,'1'),(171,6,33,2.766073,'1'),(172,6,41,1.278892,'1'),(173,6,45,0.281678,'1'),(174,6,53,14760.259179,'1'),(175,6,83,104.013799,'1'),(176,6,85,3085.701541,'1'),(177,6,88,0.231111,'1'),(178,6,90,333.067798,'1'),(179,6,91,14326.079431,'1'),(180,6,93,233.149517,'1'),(181,6,106,11.589415,'1'),(182,6,139,1826.998742,'1'),(183,6,145,17810.210693,'1'),(184,8,6,0.183888,'1'),(185,8,12,1.083931,'1'),(186,8,15,2099.610289,'1'),(187,8,20,0.646689,'1'),(188,8,21,1.47112,'1'),(189,8,31,2.611644,'1'),(190,8,41,0.235173,'1'),(191,8,45,0.051797,'1'),(192,8,53,2714.231363,'1'),(193,8,83,19.126867,'1'),(194,8,85,567.422821,'1'),(195,8,88,0.042498,'1'),(196,8,90,61.2471,'1'),(197,8,91,2634.391011,'1'),(198,8,93,42.873348,'1'),(199,8,106,2.131152,'1'),(200,8,139,335.962751,'1'),(201,8,145,3275.08019,'1'),(202,11,6,1.704313,'1'),(203,11,12,10.046112,'1'),(204,11,15,19459.651906,'1'),(205,11,20,5.993658,'1'),(206,11,21,13.634668,'1'),(207,11,31,24.205297,'1'),(208,11,41,2.179632,'1'),(209,11,45,0.480068,'1'),(210,11,53,25156.095778,'1'),(211,11,83,177.272029,'1'),(212,11,85,5259.000033,'1'),(213,11,88,0.393885,'1'),(214,11,90,567.651647,'1'),(215,11,91,24416.11776,'1'),(216,11,93,397.35966,'1'),(217,11,106,19.751987,'1'),(218,11,139,3113.776987,'1'),(219,11,145,30354.166588,'1'),(220,12,1,10.554816,'1'),(221,12,2,0.127758,'1'),(222,12,3,0.191096,'1'),(223,12,6,0.169649,'1'),(224,12,8,0.922568,'1'),(225,12,11,0.099541,'1'),(226,12,12,1,'1'),(227,12,15,1937.033079,'1'),(228,12,17,18.174449,'1'),(229,12,20,0.596615,'1'),(230,12,21,1.357208,'1'),(231,12,28,0.172051,'1'),(232,12,29,4.494984,'1'),(233,12,31,2.409419,'1'),(234,12,32,0.116526,'1'),(235,12,33,0.469261,'1'),(236,12,41,0.216963,'1'),(237,12,45,0.047786,'1'),(238,12,53,2504.06276,'1'),(239,12,83,17.645834,'1'),(240,12,85,523.486087,'1'),(241,12,88,0.039208,'1'),(242,12,90,56.504609,'1'),(243,12,91,2430.404613,'1'),(244,12,93,39.553575,'1'),(245,12,106,1.966132,'1'),(246,12,139,309.948454,'1'),(247,12,145,3021.483891,'1'),(248,15,1,0.005449,'1'),(249,15,2,0.000066,'1'),(250,15,3,0.000099,'1'),(251,15,6,0.000088,'1'),(252,15,8,0.000476,'1'),(253,15,11,0.000051,'1'),(254,15,12,0.000516,'1'),(255,15,15,1,'1'),(256,15,17,0.009383,'1'),(257,15,20,0.000308,'1'),(258,15,21,0.000701,'1'),(259,15,28,0.000089,'1'),(260,15,29,0.002321,'1'),(261,15,31,0.001244,'1'),(262,15,32,0.00006,'1'),(263,15,33,0.000242,'1'),(264,15,41,0.000112,'1'),(265,15,45,0.000025,'1'),(266,15,53,1.292731,'1'),(267,15,83,0.00911,'1'),(268,15,85,0.270251,'1'),(269,15,88,0.00002,'1'),(270,15,90,0.029171,'1'),(271,15,91,1.254705,'1'),(272,15,93,0.02042,'1'),(273,15,106,0.001015,'1'),(274,15,139,0.160012,'1'),(275,15,145,1.559851,'1'),(276,17,6,0.009334,'1'),(277,17,12,0.055022,'1'),(278,17,15,106.580015,'1'),(279,17,20,0.032827,'1'),(280,17,21,0.074677,'1'),(281,17,31,0.132572,'1'),(282,17,41,0.011938,'1'),(283,17,45,0.002629,'1'),(284,17,53,137.779293,'1'),(285,17,83,0.970914,'1'),(286,17,85,28.803409,'1'),(287,17,88,0.002157,'1'),(288,17,90,3.109014,'1'),(289,17,91,133.726452,'1'),(290,17,93,2.176329,'1'),(291,17,106,0.108181,'1'),(292,17,139,17.054077,'1'),(293,17,145,166.248993,'1'),(294,20,1,17.691179,'1'),(295,20,2,0.214139,'1'),(296,20,3,0.3203,'1'),(297,20,6,0.284353,'1'),(298,20,8,1.546338,'1'),(299,20,11,0.166843,'1'),(300,20,12,1.676124,'1'),(301,20,15,3246.707347,'1'),(302,20,17,30.462628,'1'),(303,20,20,1,'1'),(304,20,21,2.274849,'1'),(305,20,28,0.28838,'1'),(306,20,29,7.53415,'1'),(307,20,31,4.038485,'1'),(308,20,32,0.195312,'1'),(309,20,33,0.78654,'1'),(310,20,41,0.363656,'1'),(311,20,45,0.080096,'1'),(312,20,53,4197.11932,'1'),(313,20,83,29.576603,'1'),(314,20,85,877.427517,'1'),(315,20,88,0.065717,'1'),(316,20,90,94.708723,'1'),(317,20,91,4073.659143,'1'),(318,20,93,66.296691,'1'),(319,20,106,3.295481,'1'),(320,20,139,519.511997,'1'),(321,20,145,5064.381221,'1'),(322,21,1,7.776857,'1'),(323,21,2,0.094133,'1'),(324,21,3,0.140801,'1'),(325,21,6,0.124998,'1'),(326,21,8,0.679754,'1'),(327,21,11,0.073342,'1'),(328,21,12,0.736807,'1'),(329,21,15,1427.218584,'1'),(330,21,17,13.391053,'1'),(331,21,20,0.43959,'1'),(332,21,21,1,'1'),(333,21,28,0.126769,'1'),(334,21,29,3.311933,'1'),(335,21,31,1.775276,'1'),(336,21,32,0.085857,'1'),(337,21,33,0.345755,'1'),(338,21,41,0.15986,'1'),(339,21,45,0.035209,'1'),(340,21,53,1845.009745,'1'),(341,21,83,13.001565,'1'),(342,21,85,385.707957,'1'),(343,21,88,0.028888,'1'),(344,21,90,41.632964,'1'),(345,21,91,1790.737943,'1'),(346,21,93,29.143332,'1'),(347,21,106,1.448659,'1'),(348,21,139,228.372039,'1'),(349,21,145,2226.249003,'1'),(350,28,6,0.986036,'1'),(351,28,12,5.812213,'1'),(352,28,15,11258.449346,'1'),(353,28,20,3.467651,'1'),(354,28,21,7.888385,'1'),(355,28,31,14.004059,'1'),(356,28,41,1.261034,'1'),(357,28,45,0.277745,'1'),(358,28,53,14554.146777,'1'),(359,28,83,102.561349,'1'),(360,28,85,3042.612775,'1'),(361,28,88,0.227883,'1'),(362,28,90,328.416836,'1'),(363,28,91,14126.029919,'1'),(364,28,93,229.893814,'1'),(365,28,106,11.427581,'1'),(366,28,139,1801.486514,'1'),(367,28,145,17561.508737,'1'),(368,29,6,0.037742,'1'),(369,29,12,0.22247,'1'),(370,29,15,430.932144,'1'),(371,29,20,0.132729,'1'),(372,29,21,0.301938,'1'),(373,29,31,0.536024,'1'),(374,29,41,0.048268,'1'),(375,29,45,0.010631,'1'),(376,29,53,557.079352,'1'),(377,29,83,3.925672,'1'),(378,29,85,116.460056,'1'),(379,29,88,0.008723,'1'),(380,29,90,12.570592,'1'),(381,29,91,540.692609,'1'),(382,29,93,8.799492,'1'),(383,29,106,0.437406,'1'),(384,29,139,68.954296,'1'),(385,29,145,672.190137,'1'),(386,31,1,4.380647,'1'),(387,31,2,0.053025,'1'),(388,31,3,0.079312,'1'),(389,31,6,0.070411,'1'),(390,31,8,0.382901,'1'),(391,31,11,0.041313,'1'),(392,31,12,0.415038,'1'),(393,31,15,803.941874,'1'),(394,31,17,7.543083,'1'),(395,31,20,0.247618,'1'),(396,31,21,0.563293,'1'),(397,31,28,0.071408,'1'),(398,31,29,1.865588,'1'),(399,31,31,1,'1'),(400,31,32,0.048363,'1'),(401,31,33,0.194761,'1'),(402,31,41,0.090048,'1'),(403,31,45,0.019833,'1'),(404,31,53,1039.280603,'1'),(405,31,83,7.323687,'1'),(406,31,85,217.266494,'1'),(407,31,88,0.016273,'1'),(408,31,90,23.451546,'1'),(409,31,91,1008.709691,'1'),(410,31,93,16.416227,'1'),(411,31,106,0.816019,'1'),(412,31,139,128.640313,'1'),(413,31,145,1254.029911,'1'),(414,32,6,1.455892,'1'),(415,32,12,8.581791,'1'),(416,32,15,16623.213044,'1'),(417,32,20,5.120022,'1'),(418,32,21,11.647279,'1'),(419,32,31,20.677133,'1'),(420,32,41,1.861929,'1'),(421,32,45,0.410093,'1'),(422,32,53,21489.343257,'1'),(423,32,83,151.432858,'1'),(424,32,85,4492.448188,'1'),(425,32,88,0.336472,'1'),(426,32,90,484.910743,'1'),(427,32,91,20857.224435,'1'),(428,32,93,339.440516,'1'),(429,32,106,16.872937,'1'),(430,32,139,2659.912853,'1'),(431,32,145,25929.743266,'1'),(432,33,6,0.361523,'1'),(433,33,12,2.131009,'1'),(434,33,15,4127.834089,'1'),(435,33,20,1.271391,'1'),(436,33,21,2.892223,'1'),(437,33,31,5.134493,'1'),(438,33,41,0.462349,'1'),(439,33,45,0.101833,'1'),(440,33,53,5336.179198,'1'),(441,33,83,37.603423,'1'),(442,33,85,1115.553336,'1'),(443,33,88,0.083552,'1'),(444,33,90,120.411805,'1'),(445,33,91,5179.213056,'1'),(446,33,93,84.289008,'1'),(447,33,106,4.189845,'1'),(448,33,139,660.502811,'1'),(449,33,145,6438.808063,'1'),(450,41,1,48.648055,'1'),(451,41,2,0.588849,'1'),(452,41,3,0.880777,'1'),(453,41,6,0.781927,'1'),(454,41,8,4.252195,'1'),(455,41,11,0.458793,'1'),(456,41,12,4.609086,'1'),(457,41,15,8927.952164,'1'),(458,41,17,83.767601,'1'),(459,41,20,2.749848,'1'),(460,41,21,6.25549,'1'),(461,41,28,0.793,'1'),(462,41,29,20.717768,'1'),(463,41,31,11.105221,'1'),(464,41,32,0.537077,'1'),(465,41,33,2.162866,'1'),(466,41,41,1,'1'),(467,41,45,0.220252,'1'),(468,41,53,11541.440762,'1'),(469,41,83,81.331167,'1'),(470,41,85,2412.792425,'1'),(471,41,88,0.180712,'1'),(472,41,90,260.434605,'1'),(473,41,91,11201.944024,'1'),(474,41,93,182.305832,'1'),(475,41,106,9.062073,'1'),(476,41,139,1428.579099,'1'),(477,41,145,13926.279287,'1'),(478,45,1,220.874838,'1'),(479,45,2,2.673528,'1'),(480,45,3,3.998956,'1'),(481,45,6,3.550151,'1'),(482,45,8,19.306072,'1'),(483,45,11,2.08304,'1'),(484,45,12,20.926451,'1'),(485,45,15,40535.227483,'1'),(486,45,17,380.326719,'1'),(487,45,20,12.485027,'1'),(488,45,21,28.401555,'1'),(489,45,28,3.600427,'1'),(490,45,29,94.064061,'1'),(491,45,31,50.420595,'1'),(492,45,32,2.438471,'1'),(493,45,33,9.819975,'1'),(494,45,41,4.54026,'1'),(495,45,45,1,'1'),(496,45,53,52401.14622,'1'),(497,45,83,369.264674,'1'),(498,45,85,10954.705855,'1'),(499,45,88,0.820477,'1'),(500,45,90,1182.440917,'1'),(501,45,91,50859.742632,'1'),(502,45,93,827.715947,'1'),(503,45,106,41.144172,'1'),(504,45,139,6486.121082,'1'),(505,45,145,63228.934086,'1'),(506,53,1,0.004215,'1'),(507,53,2,0.000051,'1'),(508,53,3,0.000076,'1'),(509,53,6,0.000068,'1'),(510,53,8,0.000368,'1'),(511,53,11,0.00004,'1'),(512,53,12,0.000399,'1'),(513,53,15,0.773556,'1'),(514,53,17,0.007258,'1'),(515,53,20,0.000238,'1'),(516,53,21,0.000542,'1'),(517,53,28,0.000069,'1'),(518,53,29,0.001795,'1'),(519,53,31,0.000962,'1'),(520,53,32,0.000047,'1'),(521,53,33,0.000187,'1'),(522,53,41,0.000087,'1'),(523,53,45,0.000019,'1'),(524,53,53,1,'1'),(525,53,83,0.007047,'1'),(526,53,85,0.209055,'1'),(527,53,88,0.000016,'1'),(528,53,90,0.022565,'1'),(529,53,91,0.970585,'1'),(530,53,93,0.015796,'1'),(531,53,106,0.000785,'1'),(532,53,139,0.123778,'1'),(533,53,145,1.206633,'1'),(534,83,2,0.00724,'1'),(535,83,3,0.01083,'1'),(536,83,6,0.009614,'1'),(537,83,8,0.052282,'1'),(538,83,11,0.005641,'1'),(539,83,12,0.056671,'1'),(540,83,15,109.772828,'1'),(541,83,17,1.029957,'1'),(542,83,20,0.033811,'1'),(543,83,21,0.076914,'1'),(544,83,28,0.00975,'1'),(545,83,29,0.254733,'1'),(546,83,31,0.136543,'1'),(547,83,32,0.006604,'1'),(548,83,33,0.026593,'1'),(549,83,41,0.012295,'1'),(550,83,45,0.002708,'1'),(551,83,53,141.90674,'1'),(552,83,83,1,'1'),(553,83,85,29.666271,'1'),(554,83,88,0.002222,'1'),(555,83,90,3.20215,'1'),(556,83,91,137.732489,'1'),(557,83,93,2.241525,'1'),(558,83,106,0.111422,'1'),(559,83,139,17.564965,'1'),(560,83,145,171.229307,'1'),(561,85,1,0.020163,'1'),(562,85,2,0.000244,'1'),(563,85,3,0.000365,'1'),(564,85,6,0.000324,'1'),(565,85,8,0.001762,'1'),(566,85,11,0.00019,'1'),(567,85,12,0.00191,'1'),(568,85,15,3.700257,'1'),(569,85,17,0.034718,'1'),(570,85,20,0.00114,'1'),(571,85,21,0.002593,'1'),(572,85,28,0.000329,'1'),(573,85,29,0.008587,'1'),(574,85,31,0.004603,'1'),(575,85,32,0.000223,'1'),(576,85,33,0.000896,'1'),(577,85,41,0.000414,'1'),(578,85,45,0.000091,'1'),(579,85,53,4.783437,'1'),(580,85,83,0.033708,'1'),(581,85,85,1,'1'),(582,85,88,0.000075,'1'),(583,85,90,0.107939,'1'),(584,85,91,4.64273,'1'),(585,85,93,0.075558,'1'),(586,85,106,0.003756,'1'),(587,85,139,0.592085,'1'),(588,85,145,5.771851,'1'),(589,88,1,269.202861,'1'),(590,88,2,3.258503,'1'),(591,88,3,4.873939,'1'),(592,88,6,4.326934,'1'),(593,88,8,23.530294,'1'),(594,88,11,2.538815,'1'),(595,88,12,25.505216,'1'),(596,88,15,49404.44686,'1'),(597,88,17,463.543252,'1'),(598,88,20,15.216785,'1'),(599,88,21,34.615894,'1'),(600,88,28,4.388211,'1'),(601,88,29,114.645537,'1'),(602,88,31,61.45276,'1'),(603,88,32,2.972016,'1'),(604,88,33,11.968613,'1'),(605,88,41,5.533682,'1'),(606,88,45,1.218803,'1'),(607,88,53,63866.661288,'1'),(608,88,83,450.060801,'1'),(609,88,85,13351.625657,'1'),(610,88,88,1,'1'),(611,88,90,1441.162245,'1'),(612,88,91,61987.99435,'1'),(613,88,93,1008.822476,'1'),(614,88,106,50.14663,'1'),(615,88,139,7905.302233,'1'),(616,88,145,77063.59895,'1'),(617,90,1,0.186796,'1'),(618,90,2,0.002261,'1'),(619,90,3,0.003382,'1'),(620,90,6,0.003002,'1'),(621,90,8,0.016327,'1'),(622,90,11,0.001762,'1'),(623,90,12,0.017698,'1'),(624,90,15,34.280975,'1'),(625,90,17,0.321645,'1'),(626,90,20,0.010559,'1'),(627,90,21,0.024019,'1'),(628,90,28,0.003045,'1'),(629,90,29,0.079551,'1'),(630,90,31,0.042641,'1'),(631,90,32,0.002062,'1'),(632,90,33,0.008305,'1'),(633,90,41,0.00384,'1'),(634,90,45,0.000846,'1'),(635,90,53,44.31608,'1'),(636,90,83,0.31229,'1'),(637,90,85,9.264485,'1'),(638,90,88,0.000694,'1'),(639,90,90,1,'1'),(640,90,91,43.012502,'1'),(641,90,93,0.700006,'1'),(642,90,106,0.034796,'1'),(643,90,139,5.485366,'1'),(644,90,145,53.473229,'1'),(645,91,1,0.004343,'1'),(646,91,2,0.000053,'1'),(647,91,3,0.000079,'1'),(648,91,6,0.00007,'1'),(649,91,8,0.00038,'1'),(650,91,11,0.000041,'1'),(651,91,12,0.000411,'1'),(652,91,15,0.797,'1'),(653,91,17,0.007478,'1'),(654,91,20,0.000245,'1'),(655,91,21,0.000558,'1'),(656,91,28,0.000071,'1'),(657,91,29,0.001849,'1'),(658,91,31,0.000991,'1'),(659,91,32,0.000048,'1'),(660,91,33,0.000193,'1'),(661,91,41,0.000089,'1'),(662,91,45,0.00002,'1'),(663,91,53,1.030307,'1'),(664,91,83,0.00726,'1'),(665,91,85,0.215391,'1'),(666,91,88,0.000016,'1'),(667,91,90,0.023249,'1'),(668,91,91,1,'1'),(669,91,93,0.016274,'1'),(670,91,106,0.000809,'1'),(671,91,139,0.12753,'1'),(672,91,145,1.243202,'1'),(673,93,1,0.266849,'1'),(674,93,2,0.00323,'1'),(675,93,3,0.004831,'1'),(676,93,6,0.004289,'1'),(677,93,8,0.023325,'1'),(678,93,11,0.002517,'1'),(679,93,12,0.025282,'1'),(680,93,15,48.972389,'1'),(681,93,17,0.459489,'1'),(682,93,20,0.015084,'1'),(683,93,21,0.034313,'1'),(684,93,28,0.00435,'1'),(685,93,29,0.113643,'1'),(686,93,31,0.060915,'1'),(687,93,32,0.002946,'1'),(688,93,33,0.011864,'1'),(689,93,41,0.005485,'1'),(690,93,45,0.001208,'1'),(691,93,53,63.308127,'1'),(692,93,83,0.446125,'1'),(693,93,85,13.234861,'1'),(694,93,88,0.000991,'1'),(695,93,90,1.428559,'1'),(696,93,91,61.445889,'1'),(697,93,93,1,'1'),(698,93,106,0.049708,'1'),(699,93,139,7.836168,'1'),(700,93,145,76.389653,'1'),(701,106,1,5.368314,'1'),(702,106,2,0.064979,'1'),(703,106,3,0.097194,'1'),(704,106,6,0.086286,'1'),(705,106,8,0.46923,'1'),(706,106,11,0.050628,'1'),(707,106,12,0.508613,'1'),(708,106,15,985.199734,'1'),(709,106,17,9.243757,'1'),(710,106,20,0.303446,'1'),(711,106,21,0.690294,'1'),(712,106,28,0.087508,'1'),(713,106,29,2.286206,'1'),(714,106,31,1.225461,'1'),(715,106,32,0.059267,'1'),(716,106,33,0.238672,'1'),(717,106,41,0.11035,'1'),(718,106,45,0.024305,'1'),(719,106,53,1273.598263,'1'),(720,106,83,8.974896,'1'),(721,106,85,266.251702,'1'),(722,106,88,0.019942,'1'),(723,106,90,28.738965,'1'),(724,106,91,1236.13479,'1'),(725,106,93,20.117453,'1'),(726,106,106,1,'1'),(727,106,139,157.643738,'1'),(728,106,145,1536.765251,'1'),(729,139,1,0.034053,'1'),(730,139,2,0.000412,'1'),(731,139,3,0.000617,'1'),(732,139,6,0.000547,'1'),(733,139,8,0.002977,'1'),(734,139,11,0.000321,'1'),(735,139,12,0.003226,'1'),(736,139,15,6.249533,'1'),(737,139,17,0.058637,'1'),(738,139,20,0.001925,'1'),(739,139,21,0.004379,'1'),(740,139,28,0.000555,'1'),(741,139,29,0.014502,'1'),(742,139,31,0.007774,'1'),(743,139,32,0.000376,'1'),(744,139,33,0.001514,'1'),(745,139,41,0.0007,'1'),(746,139,45,0.000154,'1'),(747,139,53,8.078965,'1'),(748,139,83,0.056932,'1'),(749,139,85,1.688946,'1'),(750,139,88,0.000126,'1'),(751,139,90,0.182303,'1'),(752,139,91,7.841319,'1'),(753,139,93,0.127613,'1'),(754,139,106,0.006343,'1'),(755,139,139,1,'1'),(756,139,145,9.748343,'1'),(757,145,1,0.003493,'1'),(758,145,2,0.000042,'1'),(759,145,3,0.000063,'1'),(760,145,6,0.000056,'1'),(761,145,8,0.000305,'1'),(762,145,11,0.000033,'1'),(763,145,12,0.000331,'1'),(764,145,15,0.641087,'1'),(765,145,17,0.006015,'1'),(766,145,20,0.000197,'1'),(767,145,21,0.000449,'1'),(768,145,28,0.000057,'1'),(769,145,29,0.001488,'1'),(770,145,31,0.000797,'1'),(771,145,32,0.000039,'1'),(772,145,33,0.000155,'1'),(773,145,41,0.000072,'1'),(774,145,45,0.000016,'1'),(775,145,53,0.828753,'1'),(776,145,83,0.00584,'1'),(777,145,85,0.173255,'1'),(778,145,88,0.000013,'1'),(779,145,90,0.018701,'1'),(780,145,91,0.804375,'1'),(781,145,93,0.013091,'1'),(782,145,106,0.000651,'1'),(783,145,139,0.102582,'1'),(784,145,145,1,'1');
/*!40000 ALTER TABLE `tbl_currency_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_customer`
--

DROP TABLE IF EXISTS `tbl_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_customer` (
  `CustomerSysId` int unsigned NOT NULL AUTO_INCREMENT,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` varchar(100) NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) DEFAULT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Address` varchar(200) DEFAULT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryName` varchar(150) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstaddress` varchar(255) DEFAULT NULL,
  `gstcity` varchar(100) DEFAULT NULL,
  `gststate` varchar(100) DEFAULT NULL,
  `gstpincode` varchar(10) DEFAULT NULL,
  `gstemail` varchar(150) DEFAULT NULL,
  `gstphone` varchar(100) DEFAULT NULL,
  `panno` varchar(50) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `apiTraceId` varchar(200) DEFAULT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `fbid` varchar(150) DEFAULT NULL,
  PRIMARY KEY (`CustomerSysId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_customer`
--

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

--
-- Table structure for table `tbl_customer_member`
--

DROP TABLE IF EXISTS `tbl_customer_member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_customer_member` (
  `CustomerMemberSysId` int unsigned NOT NULL AUTO_INCREMENT,
  `CustomerSysId` int NOT NULL COMMENT 'tbl_customer reference primary id',
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` varchar(100) NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `Address` varchar(200) NOT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryName` varchar(150) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `panno` varchar(100) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstemail` varchar(250) DEFAULT NULL,
  `gstphone` varchar(250) DEFAULT NULL,
  `gstaddress` varchar(250) DEFAULT NULL,
  `gststate` varchar(250) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `apiTraceId` varchar(200) DEFAULT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `passengerage` varchar(150) DEFAULT NULL,
  PRIMARY KEY (`CustomerMemberSysId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_customer_member`
--

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

--
-- Table structure for table `tbl_enquiry`
--

DROP TABLE IF EXISTS `tbl_enquiry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_enquiry` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `name` varchar(16) NOT NULL,
  `email` varchar(32) NOT NULL,
  `phone` varchar(15) NOT NULL,
  `date` varchar(64) NOT NULL,
  `message` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_enquiry`
--

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

--
-- Table structure for table `tbl_events`
--

DROP TABLE IF EXISTS `tbl_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_events` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(500) NOT NULL,
  `fromDate` datetime NOT NULL,
  `toDate` datetime NOT NULL,
  `description` text NOT NULL,
  `venue` varchar(256) NOT NULL,
  `city` varchar(256) NOT NULL,
  `state` varchar(256) NOT NULL,
  `country` varchar(256) NOT NULL,
  `images` text NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `mainImage` varchar(256) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_events`
--

LOCK TABLES `tbl_events` WRITE;
/*!40000 ALTER TABLE `tbl_events` DISABLE KEYS */;
INSERT INTO `tbl_events` VALUES (2,'Test By Mangal','2019-08-01 00:00:00','2019-08-31 00:00:00','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum','noida sector 22','noida','up','india','1564548990_2.png,1564549017_0.jpg,1564549040_0.jpg','1','1564554388.jpg'),(3,'Test By Mangal Past Event','2019-07-01 00:00:00','2019-07-03 00:00:00','test','noida international','noida','up','india','1564549476_0.jpg,1564549476_1.jpg,1564549476_2.jpg','1',''),(4,'test 1','2019-07-09 00:00:00','2019-07-17 00:00:00','asdasdsa','n','n','u','i','1564553806_0.jpg,1564553806_1.jpg,1564553806_2.jpg','1','1564553806.'),(5,'test by','2019-07-02 00:00:00','2019-07-05 00:00:00','asasdad','asdasd','asda','asdasd','asdasd','1564554141_0.jpg','1','1564554154.png'),(6,'ADTOI CONVENTION','2019-08-15 00:00:00','2019-08-16 00:00:00','ADTOI CONVENTION','Hotel Hyatt Regency At Ahmedabad','Ahmedabad','Gujarat','India','1565418350_0.png,1565418350_1.png,1565418350_2.png,1565418350_3.png,1565418350_4.png','1','1565418350.jpg');
/*!40000 ALTER TABLE `tbl_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_explore_icon`
--

DROP TABLE IF EXISTS `tbl_explore_icon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_explore_icon` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `Icon` varchar(255) NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `destination` varchar(500) NOT NULL,
  `exploreImage1` varchar(255) NOT NULL,
  `exploreImage2` varchar(255) NOT NULL,
  `exploreImage3` varchar(255) NOT NULL,
  `exploreImage4` varchar(255) NOT NULL,
  `exploreImage5` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_explore_icon`
--

LOCK TABLES `tbl_explore_icon` WRITE;
/*!40000 ALTER TABLE `tbl_explore_icon` DISABLE KEYS */;
INSERT INTO `tbl_explore_icon` VALUES (17,'Adventure','','1582539303.jpg',1,'[\"56\",\"34\",\"31\",\"4\"]','1577959958.jpg','1577958147.jpg','1577964495.jpg','1577965002.jpg','1577965204.jpg'),(18,'Group Tours','','1582549345.jpg',1,'[\"77\",\"76\",\"75\",\"74\",\"73\",\"71\",\"70\",\"44\",\"43\"]','1577183534.jpg','','','1577183598.jpg',''),(19,'Leisure','','1575447286.png',1,'[\"106\",\"97\",\"87\",\"76\"]','1577183781.jpg','','1577183731.jpg','','1577183827.jpg'),(20,'Honeymoon','','1575447160.png',1,'[\"122\",\"85\",\"55\",\"50\"]','1577183476.jpg','','','1577183500.jpg',''),(21,'Family','','1575447106.png',1,'[\"165\",\"72\",\"62\",\"5\"]','','','','','1577183444.jpg'),(22,'Beach','','1582539114.jpg',1,'[\"121\",\"90\",\"67\",\"18\"]','1577183343.jpg','','','',''),(23,'Weekend','','1575447218.png',1,'[\"168\",\"167\",\"166\",\"164\",\"163\",\"162\",\"157\"]','1577183649.jpg','','','','1577183673.jpg');
/*!40000 ALTER TABLE `tbl_explore_icon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_feedback`
--

DROP TABLE IF EXISTS `tbl_feedback`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_feedback` (
  `FeedbackId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `GtxRefId` int NOT NULL,
  `AgentSysId` int DEFAULT NULL,
  `Salutation` int DEFAULT NULL,
  `Name` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `EmailId` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `CountryCode` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `MobileNo` varchar(50) DEFAULT NULL,
  `Destination` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `DestinationId` int DEFAULT NULL,
  `TravelMonth` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `ReviewStarValue` int DEFAULT NULL,
  `ReviewTitle` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `Review` longtext CHARACTER SET utf32 COLLATE utf32_swedish_ci,
  `TripImage` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `displayOnHome` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `isActive` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '1',
  `isMarkForDel` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  PRIMARY KEY (`FeedbackId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_feedback`
--

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

--
-- Table structure for table `tbl_festival`
--

DROP TABLE IF EXISTS `tbl_festival`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_festival` (
  `sid` int unsigned NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `map_destination` varchar(256) NOT NULL,
  `map_destination_id` varchar(256) NOT NULL,
  `selectedPackages` text NOT NULL,
  PRIMARY KEY (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_festival`
--

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

--
-- Table structure for table `tbl_flight`
--

DROP TABLE IF EXISTS `tbl_flight`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight` (
  `aboutId` int NOT NULL AUTO_INCREMENT,
  `label` varchar(255) NOT NULL,
  `city_json` text NOT NULL,
  `order_by` int NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`aboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight`
--

LOCK TABLES `tbl_flight` WRITE;
/*!40000 ALTER TABLE `tbl_flight` DISABLE KEYS */;
INSERT INTO `tbl_flight` VALUES (14,'Kolda(KDA)','{\"CountryCode\":\"\",\"AirportCode\":\"KDA\",\"CityID\":\"14314\",\"ContSysId\":\"187\",\"label\":\"Kolda, Kolda North Airport (KDA)\",\"value\":\"Kolda, Kolda North Airport (KDA)\"}',1,1,1,'1'),(15,'Patna(PAT)','{\"CountryCode\":\"IN\",\"AirportCode\":\"PAT\",\"CityID\":\"20918\",\"ContSysId\":\"101\",\"label\":\"Patna, IN - Patna Airport (PAT)\",\"value\":\"Patna, IN - Patna Airport (PAT)\"}',1,1,1,'1'),(17,'Hyderabad(BPM)','{\"CountryCode\":\"IN\",\"AirportCode\":\"BPM\",\"CityID\":\"12538\",\"ContSysId\":\"101\",\"label\":\"Hyderabad, IN - Begumpet Airport (BPM)\",\"value\":\"Hyderabad, IN - Begumpet Airport (BPM)\"}',2,1,1,'1'),(18,'Hyderabad(HDD)','{\"CountryCode\":\"\",\"AirportCode\":\"HDD\",\"CityID\":\"12538\",\"ContSysId\":\"101\",\"label\":\"Hyderabad, Hyderabad Airport (HDD)\",\"value\":\"Hyderabad, Hyderabad Airport (HDD)\"}',2,1,1,'1'),(19,'Mumbai(BOM)','{\"CountryCode\":\"IN\",\"AirportCode\":\"BOM\",\"CityID\":\"18676\",\"ContSysId\":\"101\",\"label\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"value\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\"}',3,1,1,'1'),(22,'Bengaluru(BLR)','{\"AirportCode\":\"BLR\",\"CityID\":0,\"ContSysId\":0,\"ICAO\":\"BLR\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Bengaluru\",\"label\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\",\"value\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR)\"}',3,1,1,'1'),(23,'Singapore(SIN)','{\"AirportCode\":\"SIN\",\"CityID\":25278,\"ContSysId\":190,\"ICAO\":\"SIN\",\"CountryCode\":\"SG\",\"DO\":0,\"cn\":\"Singapore\",\"label\":\"Singapore, SG - Changi Intl Arpt (SIN)\",\"value\":\"Singapore, SG - Changi Intl Arpt (SIN)\"}',5,1,1,'1'),(24,'Singapore(SIN)','{\"AirportCode\":\"SIN\",\"CityID\":25278,\"ContSysId\":190,\"ICAO\":\"SIN\",\"CountryCode\":\"SG\",\"DO\":0,\"cn\":\"Singapore\",\"label\":\"Singapore, SG - Changi Intl Arpt (SIN)\",\"value\":\"Singapore, SG - Changi Intl Arpt (SIN)\"}',5,1,1,'1'),(25,'Chennai(MAA)','{\"AirportCode\":\"MAA\",\"CityID\":6000,\"ContSysId\":101,\"ICAO\":\"MAA\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Chennai\",\"label\":\"Chennai, IN - Chennai Arpt (MAA)\",\"value\":\"Chennai, IN - Chennai Arpt (MAA)\"}',5,1,1,'1'),(26,'Singapore(SIN)','{\"AirportCode\":\"SIN\",\"CityID\":25278,\"ContSysId\":190,\"ICAO\":\"SIN\",\"CountryCode\":\"SG\",\"DO\":0,\"cn\":\"Singapore\",\"label\":\"Singapore, SG - Changi Intl Arpt (SIN)\",\"value\":\"Singapore, SG - Changi Intl Arpt (SIN)\"}',8,1,1,'1'),(27,'Chennai(MAA)','{\"AirportCode\":\"MAA\",\"CityID\":6000,\"ContSysId\":101,\"ICAO\":\"MAA\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Chennai\",\"label\":\"Chennai, IN - Chennai Arpt (MAA)\",\"value\":\"Chennai, IN - Chennai Arpt (MAA)\"}',4,1,1,'1'),(28,'Delhi(DEL)','{\"AirportCode\":\"DEL\",\"CityID\":7701,\"ContSysId\":101,\"ICAO\":\"DEL\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Delhi\",\"ContName\":\"India\",\"label\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"value\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"}',1,1,1,'1'),(29,'Chennai(MAA)','{\"AirportCode\":\"MAA\",\"CityID\":6000,\"ContSysId\":101,\"ICAO\":\"MAA\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Chennai\",\"ContName\":\"India\",\"label\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"value\":\"Chennai, IN - Chennai Arpt (MAA), India\"}',2,1,1,'1'),(30,'Kolkata(CCU)','{\"AirportCode\":\"CCU\",\"CityID\":14323,\"ContSysId\":101,\"ICAO\":\"CCU\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Kolkata\",\"ContName\":\"India\",\"label\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"value\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\"}',3,1,1,'1'),(31,'Colombo(CMB)','{\"AirportCode\":\"CMB\",\"CityID\":6689,\"ContSysId\":200,\"ICAO\":\"CMB\",\"CountryCode\":\"LK\",\"DO\":0,\"cn\":\"Colombo\",\"ContName\":\"Sri Lanka\",\"label\":\"Colombo, LK - Bandaranaike Intl Arpt (CMB), Sri Lanka\",\"value\":\"Colombo, LK - Bandaranaike Intl Arpt (CMB), Sri Lanka\"}',4,1,1,'1'),(32,'Dubai(DXB)','{\"AirportCode\":\"DXB\",\"CityID\":8219,\"ContSysId\":228,\"ICAO\":\"DXB\",\"CountryCode\":\"AE\",\"DO\":0,\"cn\":\"Dubai\",\"ContName\":\"United Arab Emirates\",\"label\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"value\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"}',5,1,1,'1'),(33,'Patna(PAT)','{\"CountryCode\":\"IN\",\"AirportCode\":\"PAT\",\"CityID\":\"20918\",\"ContSysId\":\"101\",\"label\":\"Patna, IN - Patna Airport (PAT)\",\"value\":\"Patna, IN - Patna Airport (PAT)\"}',7,1,1,'1'),(35,'Delhi(DEL)','{\"AirportCode\":\"DEL\",\"CityID\":7701,\"ContSysId\":101,\"ICAO\":\"DEL\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Delhi\",\"ContName\":\"India\",\"label\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"labelWithSynonyms\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India, DELHI\",\"value\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"}',1,1,0,'1'),(36,'Mumbai(BOM)','{\"AirportCode\":\"BOM\",\"CityID\":18676,\"ContSysId\":101,\"ICAO\":\"BOM\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Mumbai\",\"ContName\":\"India\",\"label\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"labelWithSynonyms\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India, \",\"value\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"}',2,1,0,'1'),(37,'Kolkata(CCU)','{\"AirportCode\":\"CCU\",\"CityID\":14323,\"ContSysId\":101,\"ICAO\":\"CCU\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Kolkata\",\"ContName\":\"India\",\"label\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"labelWithSynonyms\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India, KOLKATA, Calcutta\",\"value\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\"}',3,1,0,'1'),(38,'Bengaluru(BLR)','{\"AirportCode\":\"BLR\",\"CityID\":2262,\"ContSysId\":101,\"ICAO\":\"BLR\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Bengaluru\",\"ContName\":\"India\",\"label\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"labelWithSynonyms\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India, Bangalore, Bengaluru, Bengalore\",\"value\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\"}',4,1,0,'1'),(39,'Chennai(MAA)','{\"AirportCode\":\"MAA\",\"CityID\":6000,\"ContSysId\":101,\"ICAO\":\"MAA\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Chennai\",\"ContName\":\"India\",\"label\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"labelWithSynonyms\":\"Chennai, IN - Chennai Arpt (MAA), India, CHENNAI, Madras\",\"value\":\"Chennai, IN - Chennai Arpt (MAA), India\"}',5,1,0,'1'),(40,'Dubai(DXB)','{\"AirportCode\":\"DXB\",\"CityID\":8219,\"ContSysId\":228,\"ICAO\":\"DXB\",\"CountryCode\":\"AE\",\"DO\":0,\"cn\":\"Dubai\",\"ContName\":\"United Arab Emirates\",\"label\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"labelWithSynonyms\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates, DUBAI\",\"value\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\"}',6,1,1,'1'),(42,'Surat(STV)','{\"AirportCode\":\"STV\",\"CityID\":26438,\"ContSysId\":101,\"ICAO\":\"STV\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Surat\",\"ContName\":\"India\",\"label\":\"Surat, IN - Surat Airport (STV), India\",\"labelWithSynonyms\":\"Surat, IN - Surat Airport (STV), India, SURAT\",\"value\":\"Surat, IN - Surat Airport (STV), India\"}',7,1,0,'1'),(43,'Lucknow(LKO)','{\"AirportCode\":\"LKO\",\"CityID\":16028,\"ContSysId\":101,\"ICAO\":\"LKO\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Lucknow\",\"ContName\":\"India\",\"label\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"labelWithSynonyms\":\"Lucknow, IN - Amausi Arpt (LKO), India, LUCKNOW\",\"value\":\"Lucknow, IN - Amausi Arpt (LKO), India\"}',8,1,0,'1'),(44,'Chandigarh(IXC)','{\"AirportCode\":\"IXC\",\"CityID\":5765,\"ContSysId\":101,\"ICAO\":\"IXC\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Chandigarh\",\"ContName\":\"India\",\"label\":\"Chandigarh, IN - Chandigarh Arpt (IXC), India\",\"labelWithSynonyms\":\"Chandigarh, IN - Chandigarh Arpt (IXC), India, CHANDIGARH\",\"value\":\"Chandigarh, IN - Chandigarh Arpt (IXC), India\"}',10,1,0,'1'),(45,'Srinagar(SXR)','{\"AirportCode\":\"SXR\",\"CityID\":25897,\"ContSysId\":101,\"ICAO\":\"SXR\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Srinagar\",\"ContName\":\"India\",\"label\":\"Srinagar, IN - Srinagar Arpt (SXR), India\",\"labelWithSynonyms\":\"Srinagar, IN - Srinagar Arpt (SXR), India, SRINAGAR\",\"value\":\"Srinagar, IN - Srinagar Arpt (SXR), India\"}',9,1,0,'1'),(46,'Jaipur(JAI)','{\"AirportCode\":\"JAI\",\"CityID\":12995,\"ContSysId\":101,\"ICAO\":\"JAI\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Jaipur\",\"ContName\":\"India\",\"label\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"labelWithSynonyms\":\"Jaipur, IN - Sanganeer Arpt (JAI), India, JAIPUR;Jaipur area\",\"value\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\"}',11,1,0,'1'),(48,'Udaipur(UDR)','{\"AirportCode\":\"UDR\",\"CityID\":28058,\"ContSysId\":101,\"ICAO\":\"UDR\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Udaipur\",\"ContName\":\"India\",\"label\":\"Udaipur, IN - Maharana Pratap Arpt (UDR), India\",\"labelWithSynonyms\":\"Udaipur, IN - Maharana Pratap Arpt (UDR), India, UDAIPUR\",\"value\":\"Udaipur, IN - Maharana Pratap Arpt (UDR), India\"}',13,1,0,'1'),(52,'Bangkok(BKK)','{\"AirportCode\":\"BKK\",\"CityID\":2266,\"ContSysId\":215,\"ICAO\":\"BKK\",\"CountryCode\":\"TH\",\"DO\":0,\"cn\":\"Bangkok\",\"ContName\":\"Thailand\",\"label\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"labelWithSynonyms\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand, bangkok\",\"value\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\"}',17,1,0,'1'),(53,'Phuket(HKT)','{\"AirportCode\":\"HKT\",\"CityID\":21319,\"ContSysId\":215,\"ICAO\":\"HKT\",\"CountryCode\":\"TH\",\"DO\":0,\"cn\":\"Phuket\",\"ContName\":\"Thailand\",\"label\":\"Phuket, TH - Phuket Intl Airport (HKT), Thailand\",\"labelWithSynonyms\":\"Phuket, TH - Phuket Intl Airport (HKT), Thailand, PHUKET\",\"value\":\"Phuket, TH - Phuket Intl Airport (HKT), Thailand\"}',18,1,0,'1'),(55,'Kuala Lumpur(KUL)','{\"AirportCode\":\"KUL\",\"CityID\":30568,\"ContSysId\":132,\"ICAO\":\"KUL\",\"CountryCode\":\"MY\",\"DO\":0,\"cn\":\"Kuala Lumpur\",\"ContName\":\"Malaysia\",\"label\":\"Kuala Lumpur, MY - Kuala Lumpur International Arpt (KUL), Malaysia\",\"labelWithSynonyms\":\"Kuala Lumpur, MY - Kuala Lumpur International Arpt (KUL), Malaysia, Kuala Lumpur;KualaLumpur\",\"value\":\"Kuala Lumpur, MY - Kuala Lumpur International Arpt (KUL), Malaysia\"}',21,1,0,'1'),(57,'Mauritius(MRU)','{\"AirportCode\":\"MRU\",\"CityID\":17162,\"ContSysId\":139,\"ICAO\":\"MRU\",\"CountryCode\":\"MU\",\"DO\":0,\"cn\":\"Mauritius\",\"ContName\":\"Mauritius\",\"label\":\"Mauritius, MU - Plaisance Arptt (MRU), Mauritius\",\"labelWithSynonyms\":\"Mauritius, MU - Plaisance Arptt (MRU), Mauritius, MAURITIUS\",\"value\":\"Mauritius, MU - Plaisance Arptt (MRU), Mauritius\"}',23,1,0,'1'),(59,'Istanbul(IST)','{\"AirportCode\":\"IST\",\"CityID\":12905,\"ContSysId\":222,\"ICAO\":\"IST\",\"CountryCode\":\"TR\",\"DO\":0,\"cn\":\"Istanbul\",\"ContName\":\"Turkey\",\"label\":\"Istanbul, TR - Ataturk Arpt (IST), Turkey\",\"labelWithSynonyms\":\"Istanbul, TR - Ataturk Arpt (IST), Turkey, ISTANBUL\",\"value\":\"Istanbul, TR - Ataturk Arpt (IST), Turkey\"}',25,1,0,'1'),(60,'Ho Chi Minh City(SGN)','{\"AirportCode\":\"SGN\",\"CityID\":31115,\"ContSysId\":236,\"ICAO\":\"SGN\",\"CountryCode\":\"VN\",\"DO\":0,\"cn\":\"Ho Chi Minh City\",\"ContName\":\"Viet Nam\",\"label\":\"Ho Chi Minh City, VN - Tan Son Nhut Arpt (SGN), Viet Nam\",\"labelWithSynonyms\":\"Ho Chi Minh City, VN - Tan Son Nhut Arpt (SGN), Viet Nam, HO CHI MINH CITY\",\"value\":\"Ho Chi Minh City, VN - Tan Son Nhut Arpt (SGN), Viet Nam\"}',26,1,0,'1'),(61,'Hanoi(HAN)','{\"AirportCode\":\"HAN\",\"CityID\":11487,\"ContSysId\":236,\"ICAO\":\"HAN\",\"CountryCode\":\"VN\",\"DO\":0,\"cn\":\"Hanoi\",\"ContName\":\"Viet Nam\",\"label\":\"Hanoi, VN - Noibai Arpt (HAN), Viet Nam\",\"labelWithSynonyms\":\"Hanoi, VN - Noibai Arpt (HAN), Viet Nam, Hanoi and North Hanoi area\",\"value\":\"Hanoi, VN - Noibai Arpt (HAN), Viet Nam\"}',27,1,0,'1');
/*!40000 ALTER TABLE `tbl_flight` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_airport_code`
--

DROP TABLE IF EXISTS `tbl_flight_airport_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_airport_code` (
  `AirId` int NOT NULL AUTO_INCREMENT,
  `CountryCode` varchar(256) NOT NULL,
  `AirportCode` varchar(256) NOT NULL,
  `CityID` int NOT NULL,
  `ContSysId` int NOT NULL,
  `AirportName` varchar(256) NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`AirId`)
) ENGINE=InnoDB AUTO_INCREMENT=4294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_airport_code`
--

LOCK TABLES `tbl_flight_airport_code` WRITE;
/*!40000 ALTER TABLE `tbl_flight_airport_code` DISABLE KEYS */;
INSERT INTO `tbl_flight_airport_code` VALUES (1,'','ZMH',6,39,'108 Mile Ranch, South Cariboo Regional Airport (ZMH)','1','0'),(2,'','AAH',19,83,'Aachen, Merzbrück Airport (AAH)','1','0'),(3,'DK','AAL',21,59,'Aalborg, DK - Aalborg Airport (AAL)','1','0'),(4,'NO','AES',24,164,'Aalesund, NO - Alesund Airport Vigra (AES)','1','0'),(5,'DK','AAR',31,59,'Aarhus, DK - Aarhus Airport (AAR)','1','0'),(6,'','ABF',36,114,'Abaiang, Abaiang Atoll Airport (ABF)','1','0'),(7,'RU','ABA',37,181,'Abakan, RU - Abakan Intl Airport (ABA)','1','0'),(8,'FR','XAB',47,76,'Abbeville, FR - Abbeville - Buigny-Saint-Maclou (XAB)','1','0'),(9,'CA','YXX',54,39,'Abbotsford, CA - Abbotsford Intl Airport (YXX)','1','0'),(10,'','AEA',62,114,'Abemama, Abemama Atoll Airport (AEA)','1','0'),(11,'US','ABR',68,231,'Aberdeen, US - Aberdeen Regional Airport (ABR)','1','0'),(12,'GB','ABZ',69,482,'Aberdeen, GB - Dyce Airport (ABZ)','1','0'),(13,'SA','AHB',86,186,'Abha, SA - Abha Airport (AHB)','1','0'),(14,'US','ABI',87,231,'Abilene, US - Abilene Regional Airport (ABI)','1','0'),(15,'AE','AAN',105,228,'Abu Dhabi, AE - Al Ain Airport (AAN)','1','0'),(16,'AE','AUH',105,228,'Abu Dhabi, AE - Abu Dhabi Intl Airport (AUH)','1','0'),(17,'AE','AZI',105,228,'Abu Dhabi, AE - Bateen Airport (AZI)','1','0'),(18,'AE','DHF',105,228,'Abu Dhabi, AE - Al Dhafra (DHF)','1','0'),(19,'AE','ZVJ',105,228,'Abu Dhabi, AE - Abu Dhabi Bus Station Airport (ZVJ)','1','0'),(20,'EG','ABS',106,65,'Abu Simbel, EG - Abu Simbel Airport (ABS)','1','0'),(21,'NG','ABV',107,160,'Abuja, NG - Abuja Intl Airport (ABV)','1','0'),(22,'','ACD',112,49,'Acandi, Alcides Fernández Airport (ACD)','1','0'),(23,'MX','ACA',113,141,'Acapulco, MX - Gen Juan N. Alvarez Intl Airport (ACA)','1','0'),(24,'','AGV',114,235,'Acarigua, Oswaldo Guevara Mujica Airport (AGV)','1','0'),(25,'GH','ACC',119,84,'Accra, GH - Kotoka Airport (ACC)','1','0'),(26,'','ADT',158,231,'Ada, Ada Municipal Airport (ADT)','1','0'),(27,'US','ADK',161,231,'Adak Island, US - Adak Island Airport (ADK)','1','0'),(28,'TR','ADA',168,222,'Adana, TR - Adana Airport (ADA)','1','0'),(29,'','UAB',168,222,'Adana, Incirlik Air Base (UAB)','1','0'),(30,'ET','ADD',172,70,'Addis Ababa, ET - Bole Intl Airport (ADD)','1','0'),(31,'US','ADS',173,231,'Addison, US - Addison Airport (ADS)','1','0'),(32,'AU','ADL',179,13,'Adelaide, AU - Adelaide Airport (ADL)','1','0'),(33,'YE','ADE',189,240,'Aden, YE - Aden Intl Airport (ADE)','1','0'),(34,'TR','ADF',194,222,'Adiyaman, TR - Adiyaman Airport (ADF)','1','0'),(35,'DZ','AZR',201,3,'Adrar, DZ - Touat Cheikh Sidi Mohamed Belkebir Airport (AZR)','1','0'),(36,'','AFO',221,231,'Afton, Afton Municipal Airport (AFO)','1','0'),(37,'','NRI',221,231,'Afton, Grand Lake Regional Airport (NRI)','1','0'),(38,'TR','AFY',222,222,'Afyon, TR - Afyon (AFY)','1','0'),(39,'MA','AGA',225,148,'Agadir, MA - Al Massira Airport (AGA)','1','0'),(40,'IN','IXA',229,101,'Agartala, IN - Agartala Airport (IXA)','1','0'),(41,'FR','AGF',240,76,'Agen, FR - La Garenne Airport (AGF)','1','0'),(42,'','AGZ',244,195,'Aggeneys, Aggeneys Airport (AGZ)','1','0'),(43,'IN','AGR',266,101,'Agra, IN - Agra Airport (AGR)','1','0'),(44,'TR','AJI',269,222,'Agri, TR - Agri Airport (AJI)','1','0'),(45,'GR','AGQ',272,86,'Agrinio, GR - Agrinion (AGQ)','1','0'),(46,'PR','BQN',279,176,'Aguadilla, PR - Rafael Hernandez Airport (BQN)','1','0'),(47,'MX','AGU',285,141,'Aguascalientes, MX - Lic. Jesus Teran Peredo Intl Airport (AGU)','1','0'),(48,'JP','AGJ',290,110,'Aguni, JP - Aguni Airport (AGJ)','1','0'),(49,'IN','AMD',296,101,'Ahmedabad, IN - Ahmedabad Airport (AMD)','1','0'),(50,'US','AIK',323,231,'Aiken, US - Aiken Municipal (AIK)','1','0'),(51,'','AIM',325,136,'Ailuk, Ailuk Airport (AIM)','1','0'),(52,'','ANW',336,231,'Ainsworth, Ainsworth Regional Airport (ANW)','1','0'),(53,'CK','AIT',354,53,'Aitutaki, CK - Aitutaki Airport (AIT)','1','0'),(54,'FR','QXB',356,76,'Aix-en-provence, FR - Aix-En-Provence Airport (QXB)','1','0'),(55,'IN','AJL',360,101,'Aizawl, IN - Lengpui Airport (AJL)','1','0'),(56,'FR','AJA',363,76,'Ajaccio, FR - Campo Dell Oro Airport (AJA)','1','0'),(57,'US','AKK',382,231,'Akhiok, US - Akhiok Airport (AKK)','1','0'),(58,'US','KKI',385,231,'Akiachak, US - Akiachak Airport (KKI)','1','0'),(59,'US','AKI',386,231,'Akiak, US - Akiak Airport (AKI)','1','0'),(60,'','AKE',387,80,'Akieni, Akieni Airport (AKE)','1','0'),(61,'JP','AXT',390,110,'Akita, JP - Akita Airport (AXT)','1','0'),(62,'CA','LAK',396,39,'Aklavik, CA - Freddie Carmichael Airport (LAK)','1','0'),(63,'','AKD',34309,101,'Akola, Akola Airport (AKD)','1','0'),(64,'','AKC',399,231,'Akron, Akron Fulton International Airport (AKC)','1','0'),(65,'','AKO',399,231,'Akron, Colorado Plains Regional Airport (AKO)','1','0'),(66,'CN','AKU',403,46,'Aksu, CN - Aksu Airport (AKU)','1','0'),(67,'KZ','SCO',404,112,'Aktau, KZ - Aktau Airport (SCO)','1','0'),(68,'KZ','AKX',405,112,'Aktobe, KZ - Aktobe Airport (AKX)','1','0'),(69,'CA','AKV',406,39,'Akulivik, CA - Akulivik Airport (AKV)','1','0'),(70,'IS','AEY',408,100,'Akureyri, IS - Akureyri Airport (AEY)','1','0'),(71,'US','KQA',409,231,'Akutan, US - Akutan Airport (KQA)','1','0'),(72,'JO','AQJ',413,111,'Al Aqaba, JO - Aqaba Airport (AQJ)','1','0'),(73,'EG','AAC',415,65,'Al Arish, EG - Al Arish Airport (AAC)','1','0'),(74,'YE','AAY',416,240,'Al Ghaydah, YE - Al Ghaydah Airport (AAY)','1','0'),(75,'MA','AHU',417,148,'Al Hoceima, MA - Al Hoceima Airport (AHU)','1','0'),(76,'US','AUK',426,231,'Alakanuk, US - Alakanuk Airport (AUK)','1','0'),(77,'US','ALM',429,231,'Alamogordo, US - White Sands Regional Airport (ALM)','1','0'),(78,'','XAL',430,141,'Alamos, Álamos Airport (XAL)','1','0'),(79,'US','ALS',431,231,'Alamosa, US - San Luis Valley Regional Airport/Bergman Field (ALS)','1','0'),(80,'ES','ABC',448,199,'Albacete, ES - Albacete Airport (ABC)','1','0'),(81,'SA','ABT',449,186,'Al-baha, SA - Al-Aqiq Airport (ABT)','1','0'),(82,'US','ABY',453,231,'Albany, US - Southwest Georgia Regional Airport (ABY)','1','0'),(83,'US','ALB',453,231,'Albany, US - Albany Intl Airport (ALB)','1','0'),(84,'AU','ALH',454,13,'Albany, AU - Albany Airport (ALH)','1','0'),(85,'IT','ALL',465,107,'Albenga, IT - Clemente Panero Intl Airport (ALL)','1','0'),(86,'','BYF',473,76,'Albert, Albert – Picardie Airport (BYF)','1','0'),(87,'US','AEL',474,231,'Albert Lea, US - Albert Lea Municipal (AEL)','1','0'),(88,'FR','LBI',484,76,'Albi, FR - Le Sequestre (LBI)','1','0'),(89,'','BUK',501,240,'Albuq, Albuq Airport (BUK)','1','0'),(90,'US','ABQ',502,231,'Albuquerque, US - Albuquerque Intl Sunport Airport (ABQ)','1','0'),(91,'AU','ABX',504,13,'Albury, AU - Albury Airport (ABX)','1','0'),(92,'GB','ACI',540,482,'Alderney, GB - Alderney Airport (ACI)','1','0'),(93,'US','WKK',551,231,'Aleknagik, US - Aleknagik Airport (WKK)','1','0'),(94,'','ALT',556,175,'Alenquer, Alenquer Airport (ALT)','1','0'),(95,'SY','ALP',559,211,'Aleppo, SY - Nejrab Airport (ALP)','1','0'),(96,'','YAL',561,39,'Alert Bay, Alert Bay Airport (YAL)','1','0'),(97,'','ALJ',567,195,'Alexander Bay, Alexander Bay Airport (ALJ)','1','0'),(98,'NZ','ALR',571,157,'Alexandra, NZ - Alexandra (ALR)','1','0'),(99,'US','AEX',572,231,'Alexandria, US - Alexandria Intl Airport (AEX)','1','0'),(100,'US','ESF',572,231,'Alexandria, US - Esler Regional (ESF)','1','0'),(101,'EG','ALY',574,65,'Alexandria, EG - Alexandria Airport (ALY)','1','0'),(102,'EG','HBE',574,65,'Alexandria, EG - Borg El Arab Airport (HBE)','1','0'),(103,'GR','AXD',576,86,'Alexandroupoli, GR - Alexandroupolis Airport (AXD)','1','0'),(104,'AE','FJR',597,228,'Al-fujairah, AE - Fujairah Intl Airport (FJR)','1','0'),(105,'IT','AHO',605,107,'Alghero, IT - Fertilia Airport (AHO)','1','0'),(106,'DZ','ALG',606,3,'Algiers, DZ - Houari Boumediene Airport (ALG)','1','0'),(107,'','AXG',610,231,'Algona, Algona Municipal Airport (AXG)','1','0'),(108,'ES','ALC',622,199,'Alicante, ES - Alicante Airport (ALC)','1','0'),(109,'US','ALI',628,231,'Alice, US - Alice International (ALI)','1','0'),(110,'AU','ASP',630,13,'Alice Springs, AU - Alice Springs Airport (ASP)','1','0'),(111,'','AIV',633,231,'Aliceville, George Downer Airport (AIV)','1','0'),(112,'US','ALZ',647,231,'Alitak, US - Alitak Seaplane Base (ALZ)','1','0'),(113,'IN','IXD',650,101,'Allahabad, IN - Allahabad Airport (IXD)','1','0'),(114,'US','AET',651,231,'Allakaket, US - Allakaket Airport (AET)','1','0'),(115,'','ADY',656,195,'Alldays, Alldays Airport (ADY)','1','0'),(116,'US','ABE',669,231,'Allentown, US - Lehigh Valley Intl Airport (ABE)','1','0'),(117,'US','AIA',681,231,'Alliance, US - Alliance Municipal Airport (AIA)','1','0'),(118,'CA','YTF',691,39,'Alma, CA - Alma Airport (YTF)','1','0'),(119,'KZ','ALA',698,112,'Almaty, KZ - Almaty Airport (ALA)','1','0'),(120,'','BXJ',698,112,'Almaty, Boraldai Airport (BXJ)','1','0'),(121,'ES','LEI',707,199,'Almeria, ES - Almeria Airport (LEI)','1','0'),(122,'','IXV',732,101,'Along, Along Airport (IXV)','1','0'),(123,'ID','ARD',736,102,'Alor, ID - Alor Island Airport (ARD)','1','0'),(124,'PG','GUR',739,170,'Alotau, PG - Gurney Airport (GUR)','1','0'),(125,'','AHZ',746,76,'Alpe D Huez, Alpe d\'Huez Airport (AHZ)','1','0'),(126,'US','APN',749,231,'Alpena, US - Alpena County Regional Airport (APN)','1','0'),(127,'','ABH',752,13,'Alpha, Alpha Airport (ABH)','1','0'),(128,'','ALE',759,231,'Alpine, Alpine–Casparis Municipal Airport (ALE)','1','0'),(129,'NO','ALF',775,164,'Alta, NO - Alta Airport (ALF)','1','0'),(130,'BR','ATM',782,30,'Altamira, BR - Altamira Airport (ATM)','1','0'),(131,'CN','AAT',790,46,'Altay, CN - Altay Airport (AAT)','1','0'),(132,'CH','ACH',801,210,'Altenrhein, CH - St. Gallen-Altenrhein Airport (ACH)','1','0'),(133,'','AWN',821,13,'Alton Downs, Alton Downs Airport (AWN)','1','0'),(134,'US','AXS',830,231,'Altus, US - Altus/Quartz Mountain Regional (AXS)','1','0'),(135,'US','LTS',830,231,'Altus, US - Altus Air Force Base (LTS)','1','0'),(136,'','AHI',868,102,'Amahai, Amahai Airport (AHI)','1','0'),(137,'','AXJ',869,110,'Amakusa, Amakusa Airfield (AXJ)','1','0'),(138,'','AFI',871,107,'Amalfi, Amalfi Airport (AFI)','1','0'),(139,'US','AMA',881,231,'Amarillo, US - Rick Husband Amarillo Intl Airport (AMA)','1','0'),(140,'MG','IVA',888,130,'Ambanja, MG - Ampapamena (IVA)','1','0'),(141,'','AMY',890,130,'Ambatomainty, Ambatomainty Airport (AMY)','1','0'),(142,'','WAM',891,130,'Ambatondrazaka, Ambatondrazaka Airport (WAM)','1','0'),(143,'BZ','SPR',893,22,'Ambergris Caye, BZ - Ambergris Cay Airport (SPR)','1','0'),(144,'US','ABL',900,231,'Ambler, US - Ambler Airport (ABL)','1','0'),(145,'ID','AMQ',904,102,'Ambon, ID - Pattimura Airport (AMQ)','1','0'),(146,'KE','ASV',905,113,'Amboseli National Park, KE - Amboseli Airport (ASV)','1','0'),(147,'RU','AMV',907,181,'Amderma, RU - Amderma Airport (AMV)','1','0'),(148,'','RCN',920,13,'American River, American River Airport (RCN)','1','0'),(149,'','AHH',926,231,'Amery, Amery Municipal Airport (AHH)','1','0'),(150,'US','AMW',927,231,'Ames, US - Ames Municipal (AMW)','1','0'),(151,'JO','ADJ',944,111,'Amman, JO - Amman Civil Airport (ADJ)','1','0'),(152,'JO','AMM',944,111,'Amman, JO - Queen Alia Intl Airport (AMM)','1','0'),(153,'','YEY',958,39,'Amos, Amos/Magny Airport (YEY)','1','0'),(154,'','AMP',964,130,'Ampanihy, Ampanihy Airport (AMP)','1','0'),(155,'IN','ATQ',974,101,'Amritsar, IN - Amritsar Airport (ATQ)','1','0'),(156,'NL','AMS',979,154,'Amsterdam, NL - Schiphol Airport (AMS)','1','0'),(157,'PF','AAA',980,78,'Anaa, PF - Anaa Airport (AAA)','1','0'),(158,'','AAO',982,235,'Anaco, Anaco Airport (AAO)','1','0'),(159,'','OTS',984,231,'Anacortes, Anacortes Airport (OTS)','1','0'),(160,'CA','YAA',991,39,'Anahim Lake, CA - Anahim Lake Airport (YAA)','1','0'),(161,'US','AKP',993,231,'Anaktuvuk Pass, US - Anaktuvuk Pass Airport (AKP)','1','0'),(162,'','HVA',994,130,'Analalava, Analalava Airport (HVA)','1','0'),(163,'RU','AAQ',999,181,'Anapa, RU - Anapa Airport (AAQ)','1','0'),(164,'US','ANC',1012,231,'Anchorage, US - Ted Stevens Anchorage Intl Airport (ANC)','1','0'),(165,'US','FRN',1012,231,'Anchorage, US - Bryant Army Heliport/Bryant AAF (FRN)','1','0'),(166,'US','MRI',1012,231,'Anchorage, US - Merrill Field (MRI)','1','0'),(167,'IT','AOI',1014,107,'Ancona, IT - Falconara Airport (AOI)','1','0'),(168,'CL','ZUD',1015,45,'Ancud, CL - Ancud (ZUD)','1','0'),(169,'','ZWA',1019,130,'Andapa, Andapa Airport (ZWA)','1','0'),(170,'NO','ANX',1021,164,'Andenes, NO - Andenes Andoya Airport (ANX)','1','0'),(171,'US','AID',1025,231,'Anderson, US - Anderson Municipal (Darlington Field) (AID)','1','0'),(172,'','ADR',1039,231,'Andrews, Robert F. Swinnie Airport (ADR)','1','0'),(173,'FR','EBU',1041,76,'Andrezieux-boutheon, FR - Boutheon Airport (EBU)','1','0'),(174,'','WAD',1042,130,'Andriamena, Andriamena Airport (WAD)','1','0'),(175,'BS','ASD',1046,16,'Andros Island, BS - Andros Town Airport (ASD)','1','0'),(176,'','NGD',1049,32,'Anegada Island, Auguste George Airport (NGD)','1','0'),(177,'US','AXX',1052,231,'Angel Fire, US - Angel Fire (AXX)','1','0'),(178,'FR','ANE',1060,76,'Angers, FR - Angers - Loire Airport (ANE)','1','0'),(179,'','AGD',1063,102,'Anggi, Anggi Airport (AGD)','1','0'),(180,'','LJN',1071,231,'Angleton, Texas Gulf Coast Regional Airport (LJN)','1','0'),(181,'US','AGN',1074,231,'Angoon, US - Angoon Seaplane Base (AGN)','1','0'),(182,'FR','ANG',1075,76,'Angouleme, FR - Cognac Intl Airport (ANG)','1','0'),(183,'AI','AXA',1080,7,'Anguilla, AI - Anguilla Airport (AXA)','1','0'),(184,'US','ANI',1085,231,'Aniak, US - Aniak Airport (ANI)','1','0'),(185,'VU','AWD',1088,233,'Aniwa, VU - Aniwa Airport (AWD)','1','0'),(186,'KM','AJN',1094,50,'Anjouan, KM - Ouani Airport (AJN)','1','0'),(187,'CN','AKA',1097,46,'Ankang, CN - Ankang Wulipu Airport (AKA)','1','0'),(188,'TR','ESB',1098,222,'Ankara, TR - Esenboga Airport (ESB)','1','0'),(189,'','JVA',1099,130,'Ankavandra, Ankavandra Airport (JVA)','1','0'),(190,'','WAK',1100,130,'Ankazoabo, Ankazoabo Airport (WAK)','1','0'),(191,'US','IKV',1101,231,'Ankeny, US - Ankeny Regional (IKV)','1','0'),(192,'','ARB',1105,231,'Ann Arbor, Ann Arbor Municipal Airport (ARB)','1','0'),(193,'DZ','AAE',1108,3,'Annaba, DZ - Rabah Bitat Airport (AAE)','1','0'),(194,'FR','NCY',1119,76,'Annecy, FR - Annecy Airport (NCY)','1','0'),(195,'FR','QNJ',1121,76,'Annemasse, FR - Annemasse (QNJ)','1','0'),(196,'US','ANB',1124,231,'Anniston, US - Anniston Metropolitan (ANB)','1','0'),(197,'CN','AQG',1132,46,'Anqing, CN - Anqing Tianzhushan Airport (AQG)','1','0'),(198,'','AOG',1141,46,'Anshan, Anshan Teng\'ao Airport (AOG)','1','0'),(199,'','AVA',1142,46,'Anshun, Anshun Huangguoshu Airport (AVA)','1','0'),(200,'MG','ANM',1150,130,'Antalaha, MG - Antsirabato Airport (ANM)','1','0'),(201,'TR','AYT',1151,222,'Antalya, TR - Antalya Airport (AYT)','1','0'),(202,'MG','TNR',1152,130,'Antananarivo, MG - Ivato Airport (TNR)','1','0'),(203,'','ANY',1157,231,'Anthony, Anthony Municipal Airport (ANY)','1','0'),(204,'AG','ANU',1163,9,'Antigua, AG - V C Bird Intl Airport (ANU)','1','0'),(205,'','ARO',1175,49,'Antioquia, Arboletes Airport (ARO)','1','0'),(206,'','ATE',1177,231,'Antlers, Antlers Municipal Airport (ATE)','1','0'),(207,'CL','ANF',1178,45,'Antofagasta, CL - Cerro Moreno Intl Airport (ANF)','1','0'),(208,'CL','TOQ',1178,45,'Antofagasta, CL - Barriles (TOQ)','1','0'),(209,'','WAQ',1185,130,'Antsalova, Antsalova Airport (WAQ)','1','0'),(210,'','ATJ',1186,130,'Antsirabe, Antsirabe Airport (ATJ)','1','0'),(211,'','AMB',1187,130,'Antsiranana, Ambilobe Airport (AMB)','1','0'),(212,'MG','DIE',1187,130,'Antsiranana, MG - Arrachart Airport (DIE)','1','0'),(213,'','WAI',1188,130,'Antsohihy, Ambalabe Airport (WAI)','1','0'),(214,'BE','ANR',1189,21,'Antwerp, BE - Antwerp Intl Airport (Deurne) (ANR)','1','0'),(215,'US','ACJ',1190,200,'Anuradhapura, US - Anuradhapura (ACJ)','1','0'),(216,'LK','ADP',1190,200,'Anuradhapura, LK - Anuradhapura (ADP)','1','0'),(217,'US','ANV',1191,231,'Anvik, US - Anvik Airport (ANV)','1','0'),(218,'','AYN',1193,46,'Anyang, Anyang Airport (AYN)','1','0'),(219,'JP','AOJ',1201,110,'Aomori, JP - Aomori Airport (AOJ)','1','0'),(220,'IT','AOT',1203,107,'Aosta, IT - Aosta Valley Airport (AOT)','1','0'),(221,'','AAF',1208,231,'Apalachicola, Apalachicola Regional Airport (AAF)','1','0'),(222,'US','AAS',1210,102,'Apalapsili, US - Apalapsili (AAS)','1','0'),(223,'CO','APO',1211,49,'Apartado, CO - Antonio Roldan Betancourt Airport (APO)','1','0'),(224,'PF','APK',1212,78,'Apataki, PF - Apataki Airport (APK)','1','0'),(225,'WS','APW',1219,183,'Apia, WS - Faleolo Airport (APW)','1','0'),(226,'US','APV',1234,231,'Apple Valley, US - Apple Valley (APV)','1','0'),(227,'US','ATW',1238,231,'Appleton, US - Outagamie County Regional Airport (ATW)','1','0'),(228,'BR','APU',1246,30,'Apucarana, BR - Apucarana (APU)','1','0'),(229,'BR','AJU',1255,30,'Aracaju, BR - Santa Maria Airport (AJU)','1','0'),(230,'RO','ARW',1260,179,'Arad, RO - Arad Intl Airport (ARW)','1','0'),(231,'BR','AUX',1262,30,'Araguaina, BR - Araguaina Airport (AUX)','1','0'),(232,'','AXC',1266,13,'Aramac, Aramac Airport (AXC)','1','0'),(233,'','AAK',1275,114,'Aranuka, Aranuka Airport (AAK)','1','0'),(234,'BR','APX',1277,30,'Arapongas, BR - Arapongas (APX)','1','0'),(235,'SA','RAE',1278,186,'Arar, SA - Arar Airport (RAE)','1','0'),(236,'BR','AQA',1279,30,'Araraquara, BR - Bartolomeu de Gusmao State Airport (AQA)','1','0'),(237,'AU','ARY',1280,13,'Ararat, AU - Ararat (ARY)','1','0'),(238,'CO','AUC',1281,49,'Arauca, CO - Santiago Perez Quiroz Airport (AUC)','1','0'),(239,'BR','AAX',1283,30,'Araxa, BR - Araxa Airport (AAX)','1','0'),(240,'ET','AMH',1284,70,'Arba Mintch, ET - Arba Mintch Airport (AMH)','1','0'),(241,'','NLN',1305,231,'Arcata, Kneeland Airport (NLN)','1','0'),(242,'CA','YAB',1325,39,'Arctic Bay, CA - Arctic Bay Airport (YAB)','1','0'),(243,'US','ARC',1326,231,'Arctic Village, US - Arctic Village Airport (ARC)','1','0'),(244,'','AHD',1345,105,'Ardmore, Ardmore Downtown Executive Airport (AHD)','1','0'),(245,'US','ADM',1347,231,'Ardmore, US - Ardmore Municipal (ADM)','1','0'),(246,'','ARE',1357,176,'Arecibo, Antonio (Nery) Juarbe Pol Airport (ARE)','1','0'),(247,'PE','AQP',1368,172,'Arequipa, PE - Rodriguez Ballon Intl Airport (AQP)','1','0'),(248,'','ACM',1401,45,'Arica, Arica Airport (ACM)','1','0'),(249,'CL','ARI',1401,45,'Arica, CL - Chacalluta Airport (ARI)','1','0'),(250,'RU','ARH',1421,181,'Arkhangelsk, RU - Arkhangelsk Airport (ARH)','1','0'),(251,'CO','AXM',1440,49,'Armenia, CO - El Eden Intl Airport (AXM)','1','0'),(252,'AU','ARM',1444,13,'Armidale, AU - Armidale Airport (ARM)','1','0'),(253,'','AON',1475,107,'Arona, Arona Airport (AON)','1','0'),(254,'','AIS',1477,114,'Arorae Island, Arorae Island Airport (AIS)','1','0'),(255,'','AAB',1485,13,'Arrabury, Arrabury Airport (AAB)','1','0'),(256,'','ATS',1513,231,'Artesia, Artesia Municipal Airport (ATS)','1','0'),(257,'BS','ATC',1517,16,'Arthurs Town, BS - Arthur`s Town Airport (ATC)','1','0'),(258,'UY','ATI',1520,230,'Artigas, UY - Artigas International (ATI)','1','0'),(259,'UG','RUA',1526,226,'Arua, UG - Arua Airport (RUA)','1','0'),(260,'AW','AUA',1527,12,'Aruba, AW - Queen Beatrix Intl Airport (AUA)','1','0'),(261,'TZ','ARK',1533,214,'Arusha, TZ - Arusha Airport (ARK)','1','0'),(262,'PF','AXR',1535,78,'Arutua, PF - Arutua Airport (AXR)','1','0'),(263,'CA','YEK',1538,39,'Arviat, CA - Arviat Airport (YEK)','1','0'),(264,'SE','AJR',1539,209,'Arvidsjaur, SE - Arvidsjaur Airport (AJR)','1','0'),(265,'WS','AAU',1554,183,'Asau, WS - Asau Airport (AAU)','1','0'),(266,'','ALK',1571,70,'Asela, Asella Airport (ALK)','1','0'),(267,'','ASG',1582,482,'Ashburton, Ashburton Aerodrome (ASG)','1','0'),(268,'TM','ASB',1595,223,'Ashgabat, TM - Ashgabat Airport (ASB)','1','0'),(269,'','AHM',1602,231,'Ashland, Ashland Municipal Airport (AHM)','1','0'),(270,'','ASX',1602,231,'Ashland, John F. Kennedy Memorial Airport (ASX)','1','0'),(271,'US','HTS',1602,231,'Ashland, US - Tri-State Airport/Milton J. Ferguson Field (HTS)','1','0'),(272,'','JFN',1604,231,'Ashtabula, Northeast Ohio Regional Airport (JFN)','1','0'),(273,'ER','ASM',1616,68,'Asmara, ER - Yohannes IV Intl Airport (ASM)','1','0'),(274,'ET','ASO',1622,70,'Asosa, ET - Asosa Airport (ASO)','1','0'),(275,'US','ASE',1624,231,'Aspen, US - Pitkin County Airport/Sardy Field (ASE)','1','0'),(276,'EG','ATZ',1645,65,'Assiut, EG - Assiut Airport (ATZ)','1','0'),(277,'KZ','TSE',1650,112,'Astana, KZ - Astana Airport (TSE)','1','0'),(278,'RU','ASF',1658,181,'Astrakhan, RU - Astrakhan Airport (ASF)','1','0'),(279,'ES','OVD',1660,199,'Asturias, ES - Asturias Airport (OVD)','1','0'),(280,'GR','JTY',1661,86,'Astypalaia, GR - Astypalea Island Airport (JTY)','1','0'),(281,'PY','ASU',1663,171,'Asuncion, PY - Silvio Pettirossi Intl Airport (ASU)','1','0'),(282,'EG','ASW',1664,65,'Aswan, EG - Aswan Airport (ASW)','1','0'),(283,'','ABU',1665,102,'Atambua, Haliwen Airport (ABU)','1','0'),(284,'YE','AXK',1667,240,'Ataq, YE - Ataq Airport (AXK)','1','0'),(285,'GR','ATH',1680,86,'Athens, GR - Athens Intl Airport (ATH)','1','0'),(286,'','ATO',1680,86,'Athens, Ohio University Airport (ATO)','1','0'),(287,'US','AHN',1681,231,'Athens, US - Athens/Ben Epps Airport (AHN)','1','0'),(288,'','YIB',1696,39,'Atikokan, Atikokan Municipal Airport (YIB)','1','0'),(289,'US','AKB',1700,231,'Atka, US - Atka Airport (AKB)','1','0'),(290,'US','ATL',1704,231,'Atlanta, US - Hartsfield-Jackson Atlanta Intl Airport (ATL)','1','0'),(291,'US','ACY',1706,231,'Atlantic, US - Atlantic City Intl Airport (ACY)','1','0'),(292,'US','AIY',1706,231,'Atlantic, US - Atlantic City Muni Bader Fld (AIY)','1','0'),(293,'US','ATT',1711,231,'Atmautluak, US - Atmautluak Airport (ATT)','1','0'),(294,'US','ATK',1716,231,'Atqasuk, US - Atqasuk Edward Burnell Sr Memorial Airport (ATK)','1','0'),(295,'CA','YAT',1723,39,'Attawapiskat, CA - Attawapiskat Airport (YAT)','1','0'),(296,'PF','AUQ',1732,78,'Atuona, PF - Hiva Oa-Atuona Airport (AUQ)','1','0'),(297,'KZ','GUW',1735,112,'Atyrau, KZ - Atyrau Airport (GUW)','1','0'),(298,'US','LEW',1746,231,'Auburn, US - Auburn/Lewiston Municipal (LEW)','1','0'),(299,'NZ','AKL',1751,157,'Auckland, NZ - Auckland Intl Airport (AKL)','1','0'),(300,'NZ','AMZ',1751,157,'Auckland, NZ - Ardmore (AMZ)','1','0'),(301,'DE','AGB',1764,83,'Augsburg, DE - Augsburg Airport (AGB)','1','0'),(302,'US','AGS',1766,231,'Augusta, US - Augusta Regional Airport at Bush Field (AGS)','1','0'),(303,'US','AUG',1766,231,'Augusta, US - Augusta State Airport (AUG)','1','0'),(304,'US','DNL',1766,231,'Augusta, US - Daniel Field (DNL)','1','0'),(305,'AU','PUG',1768,13,'Augusta, AU - Port Augusta Airport (PUG)','1','0'),(306,'SB','AKS',1772,193,'Auki, SB - Auki Gwaunaru`u Airport (AKS)','1','0'),(307,'FR','CFE',1777,76,'Aulnat, FR - Aulnat Airport (CFE)','1','0'),(308,'CA','YPJ',1786,39,'Aupaluk, CA - Aupaluk Airport (YPJ)','1','0'),(309,'','AUL',1788,136,'Aur, Aur Airport (AUL)','1','0'),(310,'IN','IXU',1790,101,'Aurangabad, IN - Chikkalthana Airport (IXU)','1','0'),(311,'FR','AUR',1795,76,'Aurillac, FR - Tronquieres Airport (AUR)','1','0'),(312,'','AUZ',1801,231,'Aurora, Aurora Municipal Airport (AUZ)','1','0'),(313,'','BFK',1801,231,'Aurora, Buckley Air Force Base (BFK)','1','0'),(314,'US','BKF',1801,231,'Aurora, US - Buckley Air Force Base (BKF)','1','0'),(315,'','LDO',1801,231,'Aurora, Laduani Airstrip (LDO)','1','0'),(316,'US','UAO',1801,231,'Aurora, US - Aurora State (UAO)','1','0'),(317,'AU','AUU',1803,13,'Aurukun Mission, AU - Aurukun Airport (AUU)','1','0'),(318,'','ASQ',1809,231,'Austin, Austin Airport (ASQ)','1','0'),(319,'US','AUM',1809,231,'Austin, US - Austin Municipal (AUM)','1','0'),(320,'US','AUS',1809,231,'Austin, US - Bergstrom Intl Airport (AUS)','1','0'),(321,'FR','AUF',1816,76,'Auxerre, FR - Auxerre - Branches (AUF)','1','0'),(322,'US','AOV',1820,231,'Ava, US - Ava Bill Martin Memorial (AOV)','1','0'),(323,'AU','AVV',1824,13,'Avalon, AU - Avalon Airport (AVV)','1','0'),(324,'IT','AVB',1855,107,'Aviano, IT - Aviano Air Base (AVB)','1','0'),(325,'','AVU',1886,193,'Avu Avu, Avu Avu Airport (AVU)','1','0'),(326,'ET','AWH',1889,70,'Awareh, ET - Awareh Airport (AWH)','1','0'),(327,'ET','AXU',1896,70,'Axum, ET - Axum Airport (AXU)','1','0'),(328,'','AYC',1897,172,'Ayacucho, Ayacucho Airport (AYC)','1','0'),(329,'PE','AYP',1897,172,'Ayacucho, PE - Coronel FAP Alfredo Mendivil Duarte Airport (AYP)','1','0'),(330,'','AYW',1902,102,'Ayawasi, Ayawasi Airport (AYW)','1','0'),(331,'','CII',1903,222,'Aydin, Aydın Airport (CII)','1','0'),(332,'AU','AYR',1919,13,'Ayr, AU - Ayr (AYR)','1','0'),(333,'ID','BXB',1960,102,'Babo, ID - Babo Airport (BXB)','1','0'),(334,'PH','BCD',1974,173,'Bacolod, PH - Bacolod Airport (BCD)','1','0'),(335,'ES','BJZ',1981,199,'Badajoz, ES - Badajoz Airport (BJZ)','1','0'),(336,'','BXD',1988,102,'Bade, Bade Airport (BXD)','1','0'),(337,'DE','ZCC',1992,83,'Baden-baden, DE - Baden Oos (ZCC)','1','0'),(338,'','BDN',1998,166,'Badin, Talhar Airport (BDN)','1','0'),(339,'','BDD',2003,13,'Badu Island, Badu Island Airport (BDD)','1','0'),(340,'','BFX',2007,38,'Bafoussam, Bafoussam Airport (BFX)','1','0'),(341,'','BQI',2009,151,'Bagani, Bagani Airport (BQI)','1','0'),(342,'','BGT',2011,231,'Bagdad, Bagdad Airport (BGT)','1','0'),(343,'IN','IXB',2012,101,'Bagdogra, IN - Bagdogra Airport (IXB)','1','0'),(344,'IQ','BGW',2017,104,'Baghdad, IQ - Baghdad Intl Airport (BGW)','1','0'),(345,'IQ','SDA',2017,104,'Baghdad, IQ - Baghdad International Apt (SDA)','1','0'),(346,'','TQD',2017,104,'Baghdad, Al-Taqaddum Air Base (TQD)','1','0'),(347,'CA','YBG',2035,39,'Bagotville, CA - Bagotville Airport (YBG)','1','0'),(348,'PH','BAG',2037,173,'Baguio, PH - Baguio Airport (BAG)','1','0'),(349,'ET','BJR',2041,70,'Bahar Dar, ET - Bahar Dar Airport (BJR)','1','0'),(350,'PK','BHV',2044,166,'Bahawalpur, PK - Bahawalpur Airport (BHV)','1','0'),(351,'AR','BHI',2045,10,'Bahia Blanca, AR - Comandante Espora/Bahia Blanca Airport (BHI)','1','0'),(352,'EC','BHA',2047,64,'Bahia De Caraquez, EC - Los Perales (BHA)','1','0'),(353,'CO','BSC',2050,49,'Bahia Solano, CO - Jose Celestino Mutis Airport (BSC)','1','0'),(354,'RO','BAY',2056,179,'Baia Mare, RO - Baia Mare Airport (BAY)','1','0'),(355,'CA','YBC',2059,39,'Baie Comeau, CA - Baie-Comeau Airport (YBC)','1','0'),(356,'CA','YBJ',34656,39,'Baie Johan Beetz, CA - Baie-Johan-Beetz Seaplane Base (YBJ)','1','0'),(357,'AU','BSJ',2079,13,'Bairnsdale, AU - Bairnsdale (BSJ)','1','0'),(358,'','NBS',2081,46,'Baishan, Changbaishan Airport (NBS)','1','0'),(359,'','BJW',2090,102,'Bajawa, Bajawa Soa Airport (BJW)','1','0'),(360,'','BXE',2093,187,'Bakel, Bakel Airport (BXE)','1','0'),(361,'US','BKE',2094,231,'Baker, US - Baker City Municipal (BKE)','1','0'),(362,'CA','YBK',2095,39,'Baker Lake, CA - Baker Lake Airport (YBK)','1','0'),(363,'US','BFL',2096,231,'Bakersfield, US - Meadows Field Airport (BFL)','1','0'),(364,'IS','BJD',2098,100,'Bakkafjordur, IS - Bakkafjörður Airport (BJD)','1','0'),(365,'AZ','GYD',2099,15,'Baku, AZ - Heydar Aliyev Intl Airport (GYD)','1','0'),(366,'','ZXT',2099,15,'Baku, Zabrat Airport (ZXT)','1','0'),(367,'','BWO',2103,181,'Balakovo, Balakovo Airport (BWO)','1','0'),(368,'US','MLJ',2129,231,'Baldwin, US - Baldwin County (MLJ)','1','0'),(369,'','BAJ',2136,102,'Bali, Bali Airport (BAJ)','1','0'),(370,'','BLC',2136,102,'Bali, Bali Airport (BLC)','1','0'),(371,'ID','BPN',2141,102,'Balikpapan, ID - Sepinggan Airport (BPN)','1','0'),(372,'','BKN',2146,223,'Balkanabat, Balkanabat Airport (BKN)','1','0'),(373,'AU','BNK',2162,13,'Ballina, AU - Ballina Airport (BNK)','1','0'),(374,'','BZD',2202,13,'Balranald, Balranald Airport (BZD)','1','0'),(375,'','BZY',2207,144,'Balti City, Bălți International Airport (BZY)','1','0'),(376,'US','BWI',2211,231,'Baltimore, US - Baltimore/Washington Intl Thurgood Marshall Apt (BWI)','1','0'),(377,'DE','BMR',2212,83,'Baltrum, DE - Baltrum (BMR)','1','0'),(378,'','RGH',2213,101,'Balurghat, Balurghat Airport (RGH)','1','0'),(379,'AU','ABM',2217,13,'Bamaga, AU - Northern Peninsula Airport (ABM)','1','0'),(380,'ML','BKO',2218,134,'Bamako, ML - Bamako Airport (BKO)','1','0'),(381,'US','BMQ',2226,113,'Bamburi, US - Bamburi (BMQ)','1','0'),(382,'','BPC',2227,38,'Bamenda, Bamenda Airport (BPC)','1','0'),(383,'','NAF',2232,102,'Banaina, Banaina Airport (NAF)','1','0'),(384,'ID','BTJ',2242,102,'Banda Aceh, ID - Sultan Iskandar Muda Airport (BTJ)','1','0'),(385,'ID','TKG',2245,102,'Bandar Lampung, ID - Radin Inten II Airport (TKG)','1','0'),(386,'','BDY',2255,231,'Bandon, Bandon State Airport (BDY)','1','0'),(387,'','FDU',2256,74,'Bandundu, Bandundu Airport (FDU)','1','0'),(388,'ID','BDO',2257,102,'Bandung, ID - Husein Sastranegara Intl Airport (BDO)','1','0'),(389,'','YBA',2258,482,'Banff, Banff Airport (YBA)','1','0'),(390,'IN','BLR',2262,101,'Bangalore, IN - Bangalore Airport (BLR)','1','0'),(391,'TH','BKK',2266,215,'Bangkok, TH - Bangkok Intl Airport (BKK)','1','0'),(392,'TH','DMK',2266,215,'Bangkok, TH - Don Mueang Intl Airport (DMK)','1','0'),(393,'US','BGR',2268,231,'Bangor, US - Bangor Intl Airport (BGR)','1','0'),(394,'BA','BNX',2271,27,'Banja Luka, BA - Banja Luka Intl Airport (BNX)','1','0'),(395,'ID','BDJ',2272,102,'Banjarmasin, ID - Syamsudin Noor Airport (BDJ)','1','0'),(396,'GM','BJL',2273,81,'Banjul, GM - Yundum Intl Airport (BJL)','1','0'),(397,'AU','BWU',2275,13,'Bankstown, AU - Bankstown (BWU)','1','0'),(398,'US','BNG',2279,231,'Banning, US - Banning Municipal (BNG)','1','0'),(399,'','BNP',2281,166,'Bannu, Bannu Airport (BNP)','1','0'),(400,'IE','BYT',2290,105,'Bantry, IE - Bantry (BYT)','1','0'),(401,'','BWX',2296,102,'Banyuwangi, Blimbingsari Airport (BWX)','1','0'),(402,'CN','BSD',2303,46,'Baoshan, CN - Baoshan Airport (BSD)','1','0'),(403,'CN','BAV',2305,46,'Baotou, CN - Batou Erliban Airport (BAV)','1','0'),(404,'','BCA',2313,56,'Baracoa, Gustavo Rizo Airport (BCA)','1','0'),(405,'','VEV',2318,193,'Barakoma, Barakoma Airport (VEV)','1','0'),(406,'FR','QYR',2339,76,'Barberey-saint-sulpice, FR - Barberey (QYR)','1','0'),(407,'','BBQ',2350,9,'Barbuda, Barbuda Codrington Airport (BBQ)','1','0'),(408,'AU','BCI',2351,13,'Barcaldine, AU - Barcaldine Airport (BCI)','1','0'),(409,'ES','BCN',2352,199,'Barcelona, ES - Barcelona El Prat Airport (BCN)','1','0'),(410,'VE','BLA',2353,235,'Barcelona, VE - Anzoategui Airport (BLA)','1','0'),(411,'FR','BAE',2354,76,'Barcelonnette, FR - Barcelonnette - Saint-Pons (BAE)','1','0'),(412,'NO','BDU',2367,164,'Bardufoss, NO - Bardufoss Airport (BDU)','1','0'),(413,'','BEK',2370,101,'Bareilly, Bareilly Airport (BEK)','1','0'),(414,'IT','BRI',2379,107,'Bari, IT - Karol Wojtyla Airport (BRI)','1','0'),(415,'AR','BRC',2381,10,'Bariloche, AR - Teniente Luis Candelaria Intl Airport (BRC)','1','0'),(416,'VE','BNS',2382,235,'Barinas, VE - Barinas Airport (BNS)','1','0'),(417,'MY','BBN',2384,132,'Bario, MY - Bario Airport (BBN)','1','0'),(418,'RU','BAX',2405,181,'Barnaul, RU - Barnaul Airport (BAX)','1','0'),(419,'US','BNL',2421,231,'Barnwell, US - Barnwell Regional (BNL)','1','0'),(420,'','RRI',2426,193,'Barora Island, Barora Airport (RRI)','1','0'),(421,'VE','BRM',2429,235,'Barquisimeto, VE - Barquisimeto Airport (BRM)','1','0'),(422,'','BQQ',2430,175,'Barra, Barra Airport (BQQ)','1','0'),(423,'GB','BRR',2431,482,'Barra, GB - Barra Airport (BRR)','1','0'),(424,'CO','EJA',2436,49,'Barrancabermeja, CO - Yariguies Airport (EJA)','1','0'),(425,'CO','BAQ',2440,49,'Barranquilla, CO - Cortissoz Airport (BAQ)','1','0'),(426,'BR','BRA',2442,30,'Barreiras, BR - Barreiras Airport (BRA)','1','0'),(427,'','BRB',2443,30,'Barreirinhas, Barreirinhas Airport (BRB)','1','0'),(428,'','YLK',2446,39,'Barrie, Lake Simcoe Regional Airport (YLK)','1','0'),(429,'US','BRW',2453,231,'Barrow, US - Wiley Post-Will Rogers Memoria Airport (BRW)','1','0'),(430,'','BWB',2454,13,'Barrow Island, Barrow Island Airport (BWB)','1','0'),(431,'','BYS',2460,231,'Barstow, Bicycle Lake Army Airfield (BYS)','1','0'),(432,'DE','BBH',2463,83,'Barth, DE - Barth (BBH)','1','0'),(433,'US','BVO',2466,231,'Bartlesville, US - Bartlesville Municipal (BVO)','1','0'),(434,'US','BOW',2474,231,'Bartow, US - Bartow Municipal (BOW)','1','0'),(435,'','BSU',2482,74,'Basankusu, Basankusu Airport (BSU)','1','0'),(436,'PH','BSO',2485,173,'Basco, PH - Basco Airport (BSO)','1','0'),(437,'','BBR',2506,89,'Basse-terre, Baillif Airport (BBR)','1','0'),(438,'FR','BIA',2513,76,'Bastia, FR - Poretta Airport (BIA)','1','0'),(439,'US','BVX',2530,231,'Batesville, US - Batesville Regional (BVX)','1','0'),(440,'AU','BHS',2534,13,'Bathurst, AU - Bathurst Airport (BHS)','1','0'),(441,'CA','ZBF',2535,39,'Bathurst, CA - Bathurst Airport (ZBF)','1','0'),(442,'TR','BAL',2537,222,'Batman, TR - Batman Airport (BAL)','1','0'),(443,'US','BTR',2538,231,'Baton Rouge, US - Baton Rouge Metropolitan Airport / Ryan Field (BTR)','1','0'),(444,'','OUR',2539,38,'Batouri, Batouri Airport (OUR)','1','0'),(445,'NO','BJF',2541,164,'Batsfjord, NO - Batsfjord Airport (BJF)','1','0'),(446,'KH','BBM',2543,37,'Battambang, KH - Battambang (BBM)','1','0'),(447,'US','BTL',2549,231,'Battle Creek, US - W K Kellogg (BTL)','1','0'),(448,'GE','BUS',2556,82,'Batumi, GE - Batumi Airport (BUS)','1','0'),(449,'','BDE',2559,231,'Baudette, Baudette International Airport (BDE)','1','0'),(450,'BR','BAU',2564,30,'Bauru, BR - Bauru Airport (BAU)','1','0'),(451,'BR','JTC',2564,30,'Bauru, BR - Bauru-Arealva Airport (JTC)','1','0'),(452,'','BBC',30577,231,'Bay City, Bay City Municipal Airport (BBC)','1','0'),(453,'US','HPY',2597,231,'Baytown, US - Baytown (HPY)','1','0'),(454,'','BZB',2602,149,'Bazaruto, Bazaruto Island Airport (BZB)','1','0'),(455,'','WBE',2615,130,'Bealanana, Ankaizina Airport (WBE)','1','0'),(456,'CA','XBE',2623,39,'Bearskin Lake, CA - Bearskin Lake Airport (XBE)','1','0'),(457,'US','BIE',2625,231,'Beatrice, US - Beatrice Municipal (BIE)','1','0'),(458,'US','BTY',2627,231,'Beatty, US - Beatty (BTY)','1','0'),(459,'','BFT',2632,231,'Beaufort, Beaufort County Airport (BFT)','1','0'),(460,'US','BMT',2646,231,'Beaumont, US - Beaumont Municipal (BMT)','1','0'),(461,'US','BPT',2646,231,'Beaumont, US - Southeast Texas Regional Airport (BPT)','1','0'),(462,'FR','BVA',2657,76,'Beauvais, FR - Beauvais-Tille Airport (BVA)','1','0'),(463,'US','WBQ',2660,231,'Beaver, US - Beaver Airport (WBQ)','1','0'),(464,'CA','YXQ',2661,39,'Beaver Creek, CA - Beaver Creek (YXQ)','1','0'),(465,'DZ','CBH',2672,3,'Bechar, DZ - Boudghene Ben Ali Lotfi Airport (CBH)','1','0'),(466,'US','BKW',2677,231,'Beckley, US - Raleigh County Memorial Airport (BKW)','1','0'),(467,'US','HMZ',2683,231,'Bedford, US - Bedford County (HMZ)','1','0'),(468,'AU','BEU',2691,13,'Bedourie, AU - Bedourie Airport (BEU)','1','0'),(469,'VG','EIS',2698,32,'Beef Island, VG - Beef Island Airport (EIS)','1','0'),(470,'','BEV',2704,106,'Beersheba, Beersheba Airport (BEV)','1','0'),(471,'','NIR',2710,231,'Beeville, Chase Field Industrial Complex (NIR)','1','0'),(472,'ET','BEI',2720,70,'Beica, ET - Beica Airport (BEI)','1','0'),(473,'LY','LAQ',2721,123,'Beida, LY - Al Abraq Intl Airport (LAQ)','1','0'),(474,'CN','BHY',2724,46,'Beihai, CN - Beihai Fucheng Airport (BHY)','1','0'),(475,'','BHN',2725,240,'Beihan, Beihan Airport (BHN)','1','0'),(476,'CN','NAY',2726,46,'Beijing, CN - Beijing Nanyuan Airport (NAY)','1','0'),(477,'CN','PEK',2726,46,'Beijing, CN - Beijing Capital Intl Airport (PEK)','1','0'),(478,'MZ','BEW',2730,149,'Beira, MZ - Beira Airport (BEW)','1','0'),(479,'LB','BEY',2732,120,'Beirut, LB - Beirut Intl Airport (BEY)','1','0'),(480,'PT','BYJ',2741,175,'Beja, PT - Beja Airport (BYJ)','1','0'),(481,'DZ','BJA',2742,3,'Bejaia, DZ - Soummam - Abane Ramdane Airport (BJA)','1','0'),(482,'','OVA',2749,130,'Bekily, Bekily Airport (OVA)','1','0'),(483,'MY','BLG',2753,132,'Belaga, MY - Belaga Airport (BLG)','1','0'),(484,'BR','BEL',2762,30,'Belem, BR - Val De Caes Intl Airport (BEL)','1','0'),(485,'FR','BOR',2772,76,'Belfort, FR - Fontaine Airport (BOR)','1','0'),(486,'IN','IXG',2774,101,'Belgaum, IN - Belgaum Airport (IXG)','1','0'),(487,'RU','EGO',2780,181,'Belgorod, RU - Belgorod Airport (EGO)','1','0'),(488,'YU','BEG',2782,241,'Belgrade, YU - Nikola Tesla Airport (BEG)','1','0'),(489,'BZ','TZA',2791,22,'Belize, BZ - Belize City Municipal Airport (TZA)','1','0'),(490,'','YSX',2793,39,'Bella Bella, Bella Bella/Shearwater Water Aerodrome (YSX)','1','0'),(491,'US','ACB',2799,231,'Bellaire, US - Antrim County (ACB)','1','0'),(492,'','BEP',2802,101,'Bellary, Bellary Airport (BEP)','1','0'),(493,'','BLP',2804,172,'Bellavista, Huallaga Airport (BLP)','1','0'),(494,'','BCS',2806,231,'Belle Chasse, Southern Seaplane Airport (BCS)','1','0'),(495,'US','RPB',2825,231,'Belleville, US - Belleville Municipal (RPB)','1','0'),(496,'US','BLI',2837,231,'Bellingham, US - Bellingham Intl Airport (BLI)','1','0'),(497,'SB','BNY',2843,193,'Bellona Island, SB - Anua Airport (BNY)','1','0'),(498,'IT','BLX',2851,107,'Belluno, IT - Belluno (BLX)','1','0'),(499,'BR','CNF',2859,30,'Belo Horizonte, BR - Tancredo Neves/Confins Intl Airport (CNF)','1','0'),(500,'BR','PLU',2859,30,'Belo Horizonte, BR - Belohorizonte - Pamphula Airport (PLU)','1','0'),(501,'','BBP',2880,482,'Bembridge, Bembridge Airport (BBP)','1','0'),(502,'US','BJI',2881,231,'Bemidji, US - Bemidji Regional Airport (BJI)','1','0'),(503,'AU','BLN',2887,13,'Benalla, AU - Benalla (BLN)','1','0'),(504,'GB','BEB',2894,482,'Benbecula, GB - Benbecula Airport (BEB)','1','0'),(505,'US','BXG',2898,13,'Bendigo, US - Bendigo (BXG)','1','0'),(506,'','BFU',2907,46,'Bengbu, Bengbu Airport (BFU)','1','0'),(507,'LY','BEN',2908,123,'Benghazi, LY - Benina Intl Airport (BEN)','1','0'),(508,'ID','BKS',2909,102,'Bengkulu, ID - Fatmawati Soekarno Airport (BKS)','1','0'),(509,'','BUG',2911,6,'Benguela, Benguela Airport (BUG)','1','0'),(510,'','BNC',2913,74,'Beni, Beni Airport (BNC)','1','0'),(511,'','BEM',2914,148,'Beni Mellal, Beni Mellal Airport (BEM)','1','0'),(512,'','BTN',2928,231,'Bennettsville, Marlboro County Jetport (BTN)','1','0'),(513,'','BBB',2939,231,'Benson, Benson Municipal Airport (BBB)','1','0'),(514,'','BGV',2944,30,'Bento Goncalves, Bento Gonçalves Airport (BGV)','1','0'),(515,'LK','BJT',2949,200,'Bentota, LK - Bentota River Waterdrome (BJT)','1','0'),(516,'ID','BEJ',2957,102,'Berau, ID - Kalimaru-Hero (Berau) Airport (BEJ)','1','0'),(517,'CA','YBV',2968,39,'Berens River, CA - Berens River Airport (YBV)','1','0'),(518,'IT','BGY',2976,107,'Bergamo, IT - Bergamo-Orio al Serio Airport (BGY)','1','0'),(519,'NO','BGO',2980,164,'Bergen, NO - Bergen Airport Flesland (BGO)','1','0'),(520,'FR','EGC',2983,76,'Bergerac, FR - Bergerac Airport (EGC)','1','0'),(521,'NO','BVG',3003,164,'Berlevag, NO - Berlevag Airport (BVG)','1','0'),(522,'DE','BER',3005,83,'Berlin, DE - Berlin Brandenburg Airport (BER)','1','0'),(523,'DE','SXF',3005,83,'Berlin, DE - Schoenefeld Airport (SXF)','1','0'),(524,'DE','THF',3005,83,'Berlin, DE - Berlin-Tempelhof (THF)','1','0'),(525,'DE','TXL',3005,83,'Berlin, DE - Tegel Airport (TXL)','1','0'),(526,'BM','BDA',3009,24,'Bermuda, BM - Kindley Field Airport (BDA)','1','0'),(527,'US','UDD',3010,231,'Bermuda Dunes, US - Bermuda Dunes (UDD)','1','0'),(528,'CH','BRN',3012,210,'Bern, CH - Belp Airport (BRN)','1','0'),(529,'','WBO',3028,130,'Beroroha, Antsoa Airport (WBO)','1','0'),(530,'','BTA',3045,38,'Bertoua, Bertoua Airport (BTA)','1','0'),(531,'KI','BEZ',3048,114,'Beru, KI - Beru Island Airport (BEZ)','1','0'),(532,'','BPY',3056,130,'Besalampy, Besalampy Airport (BPY)','1','0'),(533,'US','EKY',3063,231,'Bessemer, US - Bessemer (EKY)','1','0'),(534,'US','BET',3077,231,'Bethel, US - Bethel Airport (BET)','1','0'),(535,'','JBT',3077,231,'Bethel, Bethel Seaplane Base (JBT)','1','0'),(536,'','BKU',3083,130,'Betioky, Betioky Airport (BKU)','1','0'),(537,'US','BTT',3088,231,'Bettles, US - Bettles Airport (BTT)','1','0'),(538,'US','BVY',3104,231,'Beverly, US - Beverly Municipal (BVY)','1','0'),(539,'FR','BZR',3122,76,'Beziers, FR - Cap d`Agde Airport (BZR)','1','0'),(540,'NP','BDP',3124,153,'Bhadrapur, NP - Bhadrapur Airport (BDP)','1','0'),(541,'MM','BMO',3128,150,'Bhamo, MM - Bhamo (Banmaw) Airport (BMO)','1','0'),(542,'NP','BHR',3129,153,'Bharatpur, NP - Bharatpur Airport (BHR)','1','0'),(543,'','BUP',3132,101,'Bhatinda, Bathinda Airport (BUP)','1','0'),(544,'IN','BHU',3133,101,'Bhavnagar, IN - Bhavnagar Airport (BHU)','1','0'),(545,'','BHP',34421,101,'Bhojpur, Bhojpur Airport (BHP)','1','0'),(546,'IN','BHO',3139,101,'Bhopal, IN - Bhopal Airport (BHO)','1','0'),(547,'IN','BBI',3141,101,'Bhubaneswar, IN - Bhubaneswar Airport (BBI)','1','0'),(548,'IN','BHJ',3142,101,'Bhuj, IN - Bhuj Airport (BHJ)','1','0'),(549,'PK','BHC',3143,166,'Bhurban, PK - Bhurban Heliport (BHC)','1','0'),(550,'ID','BIK',3145,102,'Biak, ID - Mokmer Airport (BIK)','1','0'),(551,'FR','BIQ',3153,76,'Biarritz, FR - Biarritz-Anglet-Bayonne Airport (BIQ)','1','0'),(552,'','BCZ',3168,13,'Bickerton Island, Bickerton Island Airport (BCZ)','1','0'),(553,'','BFE',3182,83,'Bielefeld, Bielefeld Airport (BFE)','1','0'),(554,'CA','YAX',3196,39,'Big Trout Lake, CA - Angling Lake Airport (YAX)','1','0'),(555,'IN','BKB',3209,101,'Bikaner, IN - Bikaner (BKB)','1','0'),(556,'','BII',3210,136,'Bikini Atoll, Bikini Atoll Airport (BII)','1','0'),(557,'IN','PAB',3212,101,'Bilaspur, IN - Bilaspur (PAB)','1','0'),(558,'ES','BIO',3213,199,'Bilbao, ES - Bilbao Airport (BIO)','1','0'),(559,'','BIU',3217,100,'Bildudalur, Bíldudalur Airport (BIU)','1','0'),(560,'US','BIL',3223,231,'Billings, US - Billings Logan Intl Airport (BIL)','1','0'),(561,'DK','BLL',3228,59,'Billund, DK - Billund Airport (BLL)','1','0'),(562,'ID','BMU',3232,102,'Bima, ID - Muhammad Salahuddin Airport (BMU)','1','0'),(563,'BS','BIM',3233,16,'Bimini, BS - South Bimini Airport (BIM)','1','0'),(564,'BS','NSB',3233,16,'Bimini, BS - Bimini North Seaplane Base Airport (NSB)','1','0'),(565,'DE','BYU',3236,83,'Bindlach, DE - Bindlacher Berg (BYU)','1','0'),(566,'US','BGM',3243,231,'Binghamton, US - Greater Binghamton Airport/Edwin A Link Field (BGM)','1','0'),(567,'MY','BTU',3253,132,'Bintulu, MY - Bintulu Airport (BTU)','1','0'),(568,'NP','BIR',3261,153,'Biratnagar, NP - Biratnagar Airport (BIR)','1','0'),(569,'US','KBC',3263,231,'Birch Creek, US - Birch Creek Airport (KBC)','1','0'),(570,'SC','BDI',3266,188,'Bird Island, SC - Bird Island Airport (BDI)','1','0'),(571,'','BTX',3270,13,'Birdsville, Betoota Airport (BTX)','1','0'),(572,'AU','BVI',3270,13,'Birdsville, AU - Birdsville Airport (BVI)','1','0'),(573,'GB','BHX',3279,482,'Birmingham, GB - Birmingham Airport (BHX)','1','0'),(574,'US','BHM',3280,231,'Birmingham, US - Shuttlesworth Intl Airport (BHM)','1','0'),(575,'','BSQ',3287,231,'Bisbee, Bisbee Municipal Airport (BSQ)','1','0'),(576,'US','DUG',3287,231,'Bisbee, US - Bisbee-Douglas International (DUG)','1','0'),(577,'SA','BHH',3293,186,'Bisha, SA - Bisha Airport (BHH)','1','0'),(578,'KG','FRU',3294,117,'Bishkek, KG - Bishkek Airport (FRU)','1','0'),(579,'','BIY',3295,195,'Bisho, Bhisho Airport (BIY)','1','0'),(580,'US','BIH',3296,231,'Bishop, US - Eastern Sierra Regional (BIH)','1','0'),(581,'DZ','BSK',3307,3,'Biskra, DZ - Biskra Ouakda Airport (BSK)','1','0'),(582,'','BPH',3308,173,'Bislig, Bislig Airport (BPH)','1','0'),(583,'US','BIS',3309,231,'Bismarck, US - Bismarck Municipal Airport (BIS)','1','0'),(584,'GW','OXB',3311,93,'Bissau, GW - Bissau Airport (OXB)','1','0'),(585,'','BMM',3315,80,'Bitam, Bitam Airport (BMM)','1','0'),(586,'','BBJ',3316,83,'Bitburg, Bitburg Airport (BBJ)','1','0'),(587,'CA','YBI',34664,39,'Black Tickle, CA - Black Tickle Airport (YBI)','1','0'),(588,'AU','BKQ',3342,13,'Blackall, AU - Blackall Airport (BKQ)','1','0'),(589,'GB','BLK',3354,482,'Blackpool, GB - Blackpool Airport (BLK)','1','0'),(590,'','BKT',3359,231,'Blackstone, Blackstone Army Airfield (BKT)','1','0'),(591,'AU','BLT',3362,13,'Blackwater, AU - Blackwater Airport (BLT)','1','0'),(592,'','BWL',3364,231,'Blackwell, Blackwell–Tonkawa Municipal Airport (BWL)','1','0'),(593,'CA','YBX',3392,39,'Blanc Sablon, CA - Lourdes-de-Blanc-Sablon Airport (YBX)','1','0'),(594,'US','BDG',3401,231,'Blanding, US - Blanding Municipal (BDG)','1','0'),(595,'MW','BLZ',3408,131,'Blantyre, MW - Chileka Airport (BLZ)','1','0'),(596,'NZ','BHE',3422,157,'Blenheim, NZ - Woodbourne Airport (BHE)','1','0'),(597,'US','BID',3429,231,'Block Island, US - Block Island State (BID)','1','0'),(598,'ZA','BFN',3431,195,'Bloemfontein, ZA - Bloemfontein Intl Airport (BFN)','1','0'),(599,'','YDV',3438,39,'Bloodvein, Bloodvein River Airport (YDV)','1','0'),(600,'','BFC',3440,13,'Bloomfield, Bloomfield Airport (BFC)','1','0'),(601,'US','BMG',3444,231,'Bloomington, US - Monroe County Airport (BMG)','1','0'),(602,'US','ISZ',3456,231,'Blue Ash, US - Blue Ash (ISZ)','1','0'),(603,'US','BLF',3461,231,'Bluefield, US - Mercer County Airport (BLF)','1','0'),(604,'BR','BNU',3467,30,'Blumenau, BR - Blumenau (BNU)','1','0'),(605,'US','BLH',3470,231,'Blythe, US - Blythe (BLH)','1','0'),(606,'US','BYH',3471,231,'Blytheville, US - Arkansas International (BYH)','1','0'),(607,'US','HKA',3471,231,'Blytheville, US - Blytheville Municipal (HKA)','1','0'),(608,'BR','BVB',3476,30,'Boa Vista, BR - Boa Vista Airport (BVB)','1','0'),(609,'CV','BVC',3477,41,'Boa Vista, CV - Boa Vista Airport (BVC)','1','0'),(610,'BF','BOY',3491,35,'Bobo Dioulasso, BF - Bobo Dioulasso Airport (BOY)','1','0'),(611,'PA','BOC',3501,169,'Bocas Del Toro, PA - Bocas del Toro (Isla Colon) Intl Airport (BOC)','1','0'),(612,'NO','BOO',3520,164,'Bodo, NO - Bodo Airport (BOO)','1','0'),(613,'TR','BJV',3521,222,'Bodrum, TR - Milas Airport (BJV)','1','0'),(614,'','BNB',3534,74,'Boende, Boende Airport (BNB)','1','0'),(615,'CO','BOG',3547,49,'Bogota, CO - Eldorado Intl Airport (BOG)','1','0'),(616,'','GIC',3559,13,'Boigu Island, Boigu Island Airport (GIC)','1','0'),(617,'US','BOI',3566,231,'Boise, US - Boise Air Terminal/Gowen Field (BOI)','1','0'),(618,'','BUI',3575,102,'Bokondini, Bokondini Airport (BUI)','1','0'),(619,'','OTC',3578,55,'Bol, Bol-Bérim Airport (OTC)','1','0'),(620,'','BPL',3582,75,'Bole, Bole Alashankou Airport (BPL)','1','0'),(621,'IT','BLQ',3600,107,'Bologna, IT - Guglielmo Marconi Airport (BLQ)','1','0'),(622,'IT','BZO',3615,107,'Bolzano, IT - Bolzano Dolomiti Airport (BZO)','1','0'),(623,'','BOA',3617,74,'Boma, Boma Airport (BOA)','1','0'),(624,'AN','BON',3625,155,'Bonaire, AN - Flamingo Intl Airport (BON)','1','0'),(625,'CA','YVB',3630,39,'Bonaventure, CA - Bonaventure Airport (YVB)','1','0'),(626,'BR','BYO',3647,30,'Bonito, BR - Bonito Airport (BYO)','1','0'),(627,'','YBY',3663,39,'Bonnyville, Bonnyville Airport (YBY)','1','0'),(628,'','BXT',3669,102,'Bontang, PT Badak Bontang Airport (BXT)','1','0'),(629,'US','BNW',3676,231,'Boone, US - Boone Municipal (BNW)','1','0'),(630,'PF','BOB',3686,78,'Bora Bora, PF - Motu Mute Airport (BOB)','1','0'),(631,'','RBB',3689,30,'Borba, Borba Airport (RBB)','1','0'),(632,'FR','BOD',30598,76,'Bordeaux, FR - Merignac Airport (BOD)','1','0'),(633,'DZ','BMW',3694,3,'Bordj Badji Mokhtar, DZ - Bordj Mokhtar Airport (BMW)','1','0'),(634,'IS','BGJ',3698,100,'Borgarfjordur Eystri, IS - Borgarfjörður Airport (BGJ)','1','0'),(635,'DE','BMK',3713,83,'Borkum, DE - Borkum (BMK)','1','0'),(636,'SE','BLE',3714,209,'Borlange, SE - Dala Airport (BLE)','1','0'),(637,'','BXS',3728,231,'Borrego Springs, Borrego Valley Airport (BXS)','1','0'),(638,'','BOX',3731,13,'Borroloola, Borroloola Airport (BOX)','1','0'),(639,'US','BOS',3759,231,'Boston, US - Gen Edward Logan Intl Airport (BOS)','1','0'),(640,'BR','QCJ',3774,30,'Botucatu, BR - Botucatu (QCJ)','1','0'),(641,'','BUJ',3775,3,'Bou Saada, Bou Saada Airport (BUJ)','1','0'),(642,'US','BLD',3794,231,'Boulder, US - Boulder City Municipal Airport (BLD)','1','0'),(643,'','WBU',3794,231,'Boulder, Boulder Municipal Airport (WBU)','1','0'),(644,'AU','BQL',3797,13,'Boulia, AU - Boulia Airport (BQL)','1','0'),(645,'','BYA',3804,231,'Boundary, Boundary Airport (BYA)','1','0'),(646,'','BOE',3805,51,'Boundji, Boundji Airport (BOE)','1','0'),(647,'FR','BOU',3821,76,'Bourges, FR - Bourges (BOU)','1','0'),(648,'AU','BRK',3831,13,'Bourke, AU - Bourke (BRK)','1','0'),(649,'GB','BOH',3834,482,'Bournemouth, GB - Bournemouth Airport (BOH)','1','0'),(650,'AU','ZBO',3858,13,'Bowen, AU - Bowen (ZBO)','1','0'),(651,'US','APH',3861,231,'Bowling Green, US - A.P. Hill Army Airfield (APH)','1','0'),(652,'US','BWG',3861,231,'Bowling Green, US - Bowling Green-Warren County Regional (BWG)','1','0'),(653,'','BWM',3862,231,'Bowman, Bowman Municipal Airport (BWM)','1','0'),(654,'US','BXC',3872,231,'Boxborough, US - Boxborough Airport (BXC)','1','0'),(655,'US','BZN',3880,231,'Bozeman, US - Gallatin Field (BZN)','1','0'),(656,'HR','BWK',3887,55,'Brac, HR - Bol Airport (BWK)','1','0'),(657,'','BDF',3902,231,'Bradford, Rinkenberger RLA Airport (BDF)','1','0'),(658,'US','BFD',3902,231,'Bradford, US - Bradford Regional Airport (BFD)','1','0'),(659,'PT','BGZ',3912,175,'Braga, PT - Braga (BGZ)','1','0'),(660,'PT','BGC',3913,175,'Braganca, PT - Braganca (BGC)','1','0'),(661,'US','BRD',3917,231,'Brainerd, US - Brainerd Lakes Regional Airport (BRD)','1','0'),(662,'CA','YBR',3945,39,'Brandon, CA - Brandon Municipal Airport (YBR)','1','0'),(663,'US','BKG',3952,231,'Branson, US - Branson Airport (BKG)','1','0'),(664,'CA','YFD',3953,39,'Brantford, CA - Brantford (YFD)','1','0'),(665,'BR','BSB',3961,30,'Brasilia, BR - Brasilia Intl Airport (BSB)','1','0'),(666,'SK','BTS',3968,191,'Bratislava, SK - Ivanka Airport (BTS)','1','0'),(667,'RU','BTK',3969,181,'Bratsk, RU - Bratsk Airport (BTK)','1','0'),(668,'DE','BWE',3975,83,'Braunschweig, DE - Braunschweig Wolfsburg Airport (BWE)','1','0'),(669,'US','BWC',3980,231,'Brawley, US - Brawley Municipal (BWC)','1','0'),(670,'CG','BZV',3986,51,'Brazzaville, CG - Maya Maya Airport (BZV)','1','0'),(671,'IS','BXV',4006,100,'Breiddalsvik, IS - Breiddalsvik (BXV)','1','0'),(672,'DE','BRE',4018,83,'Bremen, DE - Bremen Airport (BRE)','1','0'),(673,'DE','BRV',4021,83,'Bremerhaven, DE - Bremerhaven Airport (BRV)','1','0'),(674,'US','PWT',4022,231,'Bremerton, US - Bremerton National (PWT)','1','0'),(675,'FR','BES',4039,76,'Brest, FR - Guipavas Airport (BES)','1','0'),(676,'BY','BQT',4040,20,'Brest, BY - Brest Airport (BQT)','1','0'),(677,'US','KTS',4055,231,'Brevig Mission, US - Brevig Mission Airport (KTS)','1','0'),(678,'','BWQ',4059,13,'Brewarrina, Brewarrina Airport (BWQ)','1','0'),(679,'US','BDR',4080,231,'Bridgeport, US - Igor I. Sikorsky Memorial Airport (BDR)','1','0'),(680,'US','XBP',4080,231,'Bridgeport, US - Bridgeport Municipal (XBP)','1','0'),(681,'BB','BGI',4085,19,'Bridgetown, BB - Grantley Adams Intl Airport (BGI)','1','0'),(682,'US','BMC',4108,231,'Brigham City, US - Brigham City (BMC)','1','0'),(683,'','BRJ',4110,13,'Bright, Bright Airport (BRJ)','1','0'),(684,'IT','BDS',4122,107,'Brindisi, IT - Casale Airport (BDS)','1','0'),(685,'AU','BNE',4135,13,'Brisbane, AU - Brisbane Airport (BNE)','1','0'),(686,'AU','HLT',4139,13,'Brisbane-hamilton, AU - Hamilton Airport (HLT)','1','0'),(687,'AU','HTI',4139,13,'Brisbane-hamilton, AU - Hamilton Island Airport (HTI)','1','0'),(688,'GB','BRS',4147,482,'Bristol, GB - Lulsgate Airport (BRS)','1','0'),(689,'CA','QBC',4148,39,'British Columbia, CA - Bella Coola Airport (QBC)','1','0'),(690,'','XBB',4148,39,'British Columbia, Blubber Bay Seaplane Base (XBB)','1','0'),(691,'','YBH',4148,39,'British Columbia, Bull Harbour Waterdrome (YBH)','1','0'),(692,'','YBO',4148,39,'British Columbia, Bob Quinn Lake Airport (YBO)','1','0'),(693,'CA','YBW',4148,39,'British Columbia, CA - Bedwell Harbour Water Aerodrome (YBW)','1','0'),(694,'','ZAA',4148,39,'British Columbia, Alice Arm/Silver City Water Aerodrome (ZAA)','1','0'),(695,'FR','BVE',4151,76,'Brive-la-gaillarde, FR - Brive - Dordogne Valley Airport (BVE)','1','0'),(696,'CZ','BRQ',4157,58,'Brno, CZ - Turany Airport (BRQ)','1','0'),(697,'','BDX',4164,231,'Broadus, Broadus Airport (BDX)','1','0'),(698,'CA','YBT',4172,39,'Brochet, CA - Brochet Airport (YBT)','1','0'),(699,'','XBR',4176,39,'Brockville, Brockville Regional Tackaberry Airport (XBR)','1','0'),(700,'AU','BHQ',4185,13,'Broken Hill, AU - Broken Hill Airport (BHQ)','1','0'),(701,'CA','ZBM',4191,39,'Bromont, CA - Bromont (ZBM)','1','0'),(702,'FR','LYN',4195,76,'Bron, FR - Bron (LYN)','1','0'),(703,'NO','BNN',4201,164,'Bronnoysund, NO - Bronnoysund Airport Bronnoy (BNN)','1','0'),(704,'US','BKX',4211,231,'Brookings, US - Brookings Regional Airport (BKX)','1','0'),(705,'US','BOK',4211,231,'Brookings, US - Brookings (BOK)','1','0'),(706,'AU','BME',4230,13,'Broome, AU - Broome Airport (BME)','1','0'),(707,'CA','YVM',4243,39,'Broughton Island, CA - Broughton Island / Qikiqtarjuaq Airport (YVM)','1','0'),(708,'US','BWD',4253,231,'Brownwood, US - Brownwood Regional Airport (BWD)','1','0'),(709,'BN','BWN',4283,33,'Brunei, BN - Brunei Intl Airport (BWN)','1','0'),(710,'US','BQK',4295,231,'Brunswick, US - Brunswick Golden Isles Airport (BQK)','1','0'),(711,'BE','BRU',4304,21,'Brussels, BE - Brussels National Airport (BRU)','1','0'),(712,'US','BCE',4311,231,'Bryce Canyon, US - Bryce Canyon (BCE)','1','0'),(713,'CL','BQE',4319,93,'Bubaque, CL - Bubaque (BQE)','1','0'),(714,'CO','BGA',4324,49,'Bucaramanga, CO - Palo Negro Airport (BGA)','1','0'),(715,'','UCN',4328,231,'Buchanan, Buchanan Airport (UCN)','1','0'),(716,'RO','BBU',4329,179,'Bucharest, RO - Aurel Vlaicu (Baneasa) Intl Airport (BBU)','1','0'),(717,'RO','OTP',4329,179,'Bucharest, RO - Henri Coanda (Otopeni) Intl Airport (OTP)','1','0'),(718,'US','BXK',4338,231,'Buckeye, US - Buckeye Municipal (BXK)','1','0'),(719,'US','BKC',4351,231,'Buckland, US - Buckland Airport (BKC)','1','0'),(720,'HU','BUD',4361,99,'Budapest, HU - Ferenc Liszt Intl Airport (BUD)','1','0'),(721,'CO','BUN',4383,49,'Buenaventura, CO - Gerardo Tobar Lopez Airport (BUN)','1','0'),(722,'AR','AEP',4386,10,'Buenos Aires, AR - Jorge Newbery Airport (AEP)','1','0'),(723,'','BAI',4386,10,'Buenos Aires, Buenos Aires Airport (BAI)','1','0'),(724,'AR','EZE',4386,10,'Buenos Aires, AR - Ministro Pistarini (Ezeiza) Intl Airport (EZE)','1','0'),(725,'','YVT',4391,39,'Buffalo Narrows, Buffalo Narrows Airport (YVT)','1','0'),(726,'RU','UUA',4397,181,'Bugulma, RU - Bulgulma Airport (UUA)','1','0'),(727,'BI','BJM',4405,36,'Bujumbura, BI - Bujumbura Airport (BJM)','1','0'),(728,'UZ','BHK',4410,232,'Bukhara, UZ - Bukhara Airport (BHK)','1','0'),(729,'TZ','BKZ',4414,214,'Bukoba, TZ - Bukoba Airport (BKZ)','1','0'),(730,'ZW','BUQ',4418,243,'Bulawayo, ZW - Joshua Mqabuko Nkomo Intl Airport (BUQ)','1','0'),(731,'','BMB',4426,74,'Bumba, Bumba Airport (BMB)','1','0'),(732,'','BUY',4428,13,'Bunbury, Bunbury Airport (BUY)','1','0'),(733,'AU','BDB',4431,13,'Bundaberg, AU - Bundaberg Airport (BDB)','1','0'),(734,'','BNT',4434,101,'Bundi, Bundi Airport (BNT)','1','0'),(735,'CH','BXO',4448,210,'Buochs, CH - Buochs (BXO)','1','0'),(736,'','UOL',4449,102,'Buol, Pogogul Airport (UOL)','1','0'),(737,'VN','BMV',4450,236,'Buon Ma Thuot, VN - Ban Me Thuot Airport (BMV)','1','0'),(738,'','RMB',4455,165,'Buraimi, Buraimi Airport (RMB)','1','0'),(739,'US','BUR',4460,231,'Burbank, US - Bob Hope Airport (BUR)','1','0'),(740,'FJ','LEV',4466,74,'Bureta, FJ - Levuka Airfield (LEV)','1','0'),(741,'BG','BOJ',4468,34,'Burgas, BG - Burgas Airport (BOJ)','1','0'),(742,'ES','RGS',4481,199,'Burgos, ES - Burgos (Villafria) Airport (RGS)','1','0'),(743,'AU','BUC',4496,13,'Burketown, AU - Burketown Airport (BUC)','1','0'),(744,'US','BYI',4503,231,'Burley, US - Burley Municipal (BYI)','1','0'),(745,'US','BBF',4505,231,'Burlington, US - Burlington Airport (BBF)','1','0'),(746,'US','BRL',4505,231,'Burlington, US - Southwest Iowa Regional Airport (BRL)','1','0'),(747,'','MVW',4505,231,'Burlington, Skagit Regional Airport (MVW)','1','0'),(748,'AU','BWT',4512,13,'Burnie, AU - Burnie Airport (BWT)','1','0'),(749,'','BNO',4514,231,'Burns, Burns Municipal Airport (BNO)','1','0'),(750,'','YPZ',4515,39,'Burns Lake, Burns Lake Airport (YPZ)','1','0'),(751,'TR','BTZ',4527,222,'Bursa, TR - BURSA Airport (BTZ)','1','0'),(752,'','YDB',4535,39,'Burwash Landing, Burwash Airport (YDB)','1','0'),(753,'','BUB',4536,231,'Burwell, Cram Field (BUB)','1','0'),(754,'','BEQ',30611,482,'Bury St Edmunds, RAF Honington (BEQ)','1','0'),(755,'AU','BQB',4552,13,'Busselton, AU - Busselton Regional Airport (BQB)','1','0'),(756,'','BZU',4566,74,'Buta, Buta Zega Airport (BZU)','1','0'),(757,'','BBG',4567,114,'Butaritari, Butaritari Atoll Airport (BBG)','1','0'),(758,'US','BTP',4570,231,'Butler, US - Butler County (K.W. Scholter Field) (BTP)','1','0'),(759,'','BUM',4570,231,'Butler, Butler Memorial Airport (BUM)','1','0'),(760,'PH','BXU',4573,173,'Butuan, PH - Butuan Airport (BXU)','1','0'),(761,'PL','BZG',4587,174,'Bydgoszcz, PL - Bydgoszcz Airport (BZG)','1','0'),(762,'','CBS',4610,235,'Cabimas, Oro Negro Airport (CBS)','1','0'),(763,'AO','CAB',4611,6,'Cabinda, AO - Cabinda Airport (CAB)','1','0'),(764,'MX','CSL',4619,141,'Cabo San Lucas, MX - Cabo San Lucas Intl Airport (CSL)','1','0'),(765,'US','TVB',4620,231,'Cabool, US - Cabool Memorial (TVB)','1','0'),(766,'','YZA',4637,39,'Cache Creek, Cache Creek Airport (YZA)','1','0'),(767,'FR','CFR',4661,76,'Caen, FR - Carpiquet Airport (CFR)','1','0'),(768,'PH','CGY',4667,173,'Cagayan De Oro, PH - Laguindingan Airport (CGY)','1','0'),(769,'IT','CAG',4669,107,'Cagliari, IT - Elmas Airport (CAG)','1','0'),(770,'AU','CNS',4693,13,'Cairns, AU - Cairns Intl Airport (CNS)','1','0'),(771,'US','CIR',4700,231,'Cairo, US - Cairo Regional (CIR)','1','0'),(772,'EG','CAI',4701,65,'Cairo, EG - Cairo Intl Airport (CAI)','1','0'),(773,'PE','CJA',4704,172,'Cajamarca, PE - Cajamarca Airport (CJA)','1','0'),(774,'NG','CBQ',4708,160,'Calabar, NG - Margaret Ekpo Intl Airport (CBQ)','1','0'),(775,'','CLZ',4713,235,'Calabozo, Calabozo Airport (CLZ)','1','0'),(776,'FR','CQF',4722,76,'Calais, FR - Calais - Dunkerque (CQF)','1','0'),(777,'CL','CJC',4724,45,'Calama, CL - El Loa Airport (CJC)','1','0'),(778,'PH','CYP',4743,173,'Calbayog, PH - Calbayog Airport (CYP)','1','0'),(779,'US','EUL',4763,231,'Caldwell, US - Caldwell Industrial (EUL)','1','0'),(780,'US','CXL',4774,231,'Calexico, US - Calexico International (CXL)','1','0'),(781,'CA','YYC',4775,39,'Calgary, CA - Calgary Intl Airport (YYC)','1','0'),(782,'IN','CCJ',4782,101,'Calicut, IN - Calicut Airport (CCJ)','1','0'),(783,'','AHC',4783,231,'California, Amedee Army Airfield (AHC)','1','0'),(784,'US','AUN',4783,231,'California, US - Auburn Municipal (AUN)','1','0'),(785,'AU','CUD',4804,13,'Caloundra, AU - Caloundra (CUD)','1','0'),(786,'','CTO',4817,231,'Calverton, Calverton Executive Airpark (CTO)','1','0'),(787,'FR','CLY',4818,76,'Calvi, FR - Calvi Airport (CLY)','1','0'),(788,'CU','CMW',4826,56,'Camaguey, CU - Ignacio Agramonte Intl Airport (CMW)','1','0'),(789,'US','CGE',4850,231,'Cambridge, US - Cambridge-Dorchester (CGE)','1','0'),(790,'CA','YCB',4851,39,'Cambridge, CA - Cambridge Bay Airport (YCB)','1','0'),(791,'GB','CBG',4852,482,'Cambridge, GB - Cambridge Airport (CBG)','1','0'),(792,'','CDH',4857,231,'Camden, Harrell Field (CDH)','1','0'),(793,'AU','CDU',4859,13,'Camden Park, AU - Camden (CDU)','1','0'),(794,'US','BRO',4864,231,'Cameron, US - Brownsville/South Padre Island Intl Airport (BRO)','1','0'),(795,'US','EZZ',4864,231,'Cameron, US - Cameron Memorial (EZZ)','1','0'),(796,'PH','CGM',4870,173,'Camiguin, PH - Camiguin Airport (CGM)','1','0'),(797,'US','CXU',4871,231,'Camilla, US - Camilla-Mitchell County (CXU)','1','0'),(798,'','CAM',4875,26,'Camiri, Camiri Airport (CAM)','1','0'),(799,'','CMC',4878,30,'Camocim, Camocim Airport (CMC)','1','0'),(800,'US','VOK',30650,231,'Camp Douglas, US - Volk Field (VOK)','1','0'),(801,'US','ADW',30654,231,'Camp Springs, US - Andrews Air Force Base (ADW)','1','0'),(802,'CA','YBL',4889,39,'Campbell River, CA - Campbell River Airport (YBL)','1','0'),(803,'CA','YHH',4889,39,'Campbell River, CA - Campbell River Harbor Airport (YHH)','1','0'),(804,'GB','CAL',4898,482,'Campbeltown, GB - Campbeltown Airport (CAL)','1','0'),(805,'MX','CPE',4899,141,'Campeche, MX - Ing. Alberto Acuna Ongay Intl Airport (CPE)','1','0'),(806,'BR','CPV',4909,30,'Campina Grande, BR - Campina Grande Airport (CPV)','1','0'),(807,'BR','CPQ',4910,30,'Campinas, BR - Campinas Airport (CPQ)','1','0'),(808,'VN','VCA',4938,236,'Can Tho, VN - Can Tho (Tra Noc) Intl Airport (VCA)','1','0'),(809,'TR','CKZ',4948,222,'Canakkale, TR - Canakkale Airport (CKZ)','1','0'),(810,'AU','CBR',4959,13,'Canberra, AU - Canberra Intl Airport (CBR)','1','0'),(811,'MX','CUN',4963,141,'Cancun, MX - Cancun Intl Airport (CUN)','1','0'),(812,'','CDL',4977,231,'Candle, Candle 2 Airport (CDL)','1','0'),(813,'VC','CIW',5025,204,'Canouan Island, VC - Canouan Island Airport (CIW)','1','0'),(814,'','CTK',5038,231,'Canton, Canton Municipal Airport (CTK)','1','0'),(815,'CA','YTE',5065,39,'Cape Dorset, CA - Cape Dorset Airport (YTE)','1','0'),(816,'ZA','CPT',5069,195,'Cape Town, ZA - Cape Town Intl Airport (CPT)','1','0'),(817,'','CBD',5108,101,'Car Nicobar, Car Nicobar Air Force Base (CBD)','1','0'),(818,'VE','CCS',5115,235,'Caracas, VE - Simon Bolivar Intl Airport (CCS)','1','0'),(819,'BR','CKS',5117,30,'Carajas, BR - Carajas Airport (CKS)','1','0'),(820,'RO','CSB',5122,179,'Caransebes, RO - Caransebeș Airport (CSB)','1','0'),(821,'','CAF',5127,30,'Carauari, Carauari Airport (CAF)','1','0'),(822,'','CRQ',5129,30,'Caravelas, Caravelas Airport (CRQ)','1','0'),(823,'FR','CCF',5136,76,'Carcassonne, FR - Carcassonne Airport (CCF)','1','0'),(824,'GB','CWL',5145,482,'Cardiff, GB - Cardiff Airport (CWL)','1','0'),(825,'GB','CAX',5175,482,'Carlisle, GB - Carlisle (CAX)','1','0'),(826,'US','CLD',5180,231,'Carlsbad, US - McClellan-Palomar Airport (CLD)','1','0'),(827,'US','CNM',5180,231,'Carlsbad, US - Carlsbad City Air Terminal (CNM)','1','0'),(828,'AU','CVQ',5199,13,'Carnarvon, AU - Carnarvon Airport (CVQ)','1','0'),(829,'','TZC',5213,231,'Caro, Tuscola Area Airport (TZC)','1','0'),(830,'GD','CRU',5239,88,'Carriacou Island, GD - Carriacou Airport (CRU)','1','0'),(831,'','CZT',5251,231,'Carrizo Springs, Dimmit County Airport (CZT)','1','0'),(832,'','CIN',5254,231,'Carroll, Arthur N. Neu Airport (CIN)','1','0'),(833,'CO','CTG',5265,49,'Cartagena, CO - Rafael Nunez Intl Airport (CTG)','1','0'),(834,'','YRF',5274,39,'Cartwright, Cartwright Airport (YRF)','1','0'),(835,'VE','CUP',5276,235,'Carupano, VE - General José Francisco Bermúdez Airport (CUP)','1','0'),(836,'MA','CAS',5285,148,'Casablanca, MA - Anfa (CAS)','1','0'),(837,'MA','CMN',5285,148,'Casablanca, MA - Mohamed V Airport (CMN)','1','0'),(838,'','GMD',5285,148,'Casablanca, Ben Slimane Airport (GMD)','1','0'),(839,'','ICS',5303,231,'Cascade, Cascade Airport (ICS)','1','0'),(840,'BR','CAC',5306,30,'Cascavel, BR - Cascavel Airport (CAC)','1','0'),(841,'AU','CSI',5325,13,'Casino, AU - Casino (CSI)','1','0'),(842,'US','CPR',5333,231,'Casper, US - Natrona County Intl Airport (CPR)','1','0'),(843,'US','AIO',5335,231,'Cass City, US - Atlantic Municipal (AIO)','1','0'),(844,'','CST',5356,74,'Castaway Island, Castaway Island Seaplane Base (CST)','1','0'),(845,'CA','YCG',5425,39,'Castlegar, CA - West Kootenay Regional Airport (YCG)','1','0'),(846,'CA','YAC',30695,39,'Cat Lake, CA - Cat Lake Airport (YAC)','1','0'),(847,'AR','CTC',5450,10,'Catamarca, AR - Coronel Felipe Varela Intl Airport (CTC)','1','0'),(848,'IT','CTA',5451,107,'Catania, IT - Fontanarossa Airport (CTA)','1','0'),(849,'','CAQ',5472,49,'Caucasia, Juan H. White Airport (CAQ)','1','0'),(850,'BR','CXJ',5513,30,'Caxias Do Sul, BR - Caxias Do Sul Airport (CXJ)','1','0'),(851,'GF','CAY',5516,77,'Cayenne, GF - Felix Eboue Airport (CAY)','1','0'),(852,'PH','CEB',5538,173,'Cebu, PH - Cebu Airport (CEB)','1','0'),(853,'AU','CED',5553,13,'Ceduna, AU - Ceduna Airport (CED)','1','0'),(854,'','NRR',5559,176,'Ceiba, José Aponte de la Torre Airport (NRR)','1','0'),(855,'','YCE',5604,231,'Centralia, Centralia/James T. Field Memorial Aerodrome (YCE)','1','0'),(856,'','CRR',5618,231,'Ceres, Ceres Airport (CRR)','1','0'),(857,'AU','CES',5661,13,'Cessnock, AU - Cessnock (CES)','1','0'),(858,'US','CDR',5685,231,'Chadron, US - Chadron Municipal Airport (CDR)','1','0'),(859,'US','CIK',5705,231,'Chalkyitsik, US - Chalkyitsik Airport (CIK)','1','0'),(860,'','CHL',5709,231,'Challis, Challis Airport (CHL)','1','0'),(861,'FR','CMF',5725,76,'Chambery, FR - Chambery Airport (CMF)','1','0'),(862,'US','CMI',5743,231,'Champaign, US - University of Illinois-Willard Airport (CMI)','1','0'),(863,'IN','IXC',5765,101,'Chandigarh, IN - Chandigarh Airport (IXC)','1','0'),(864,'US','SLJ',5767,231,'Chandler, US - Hagler Army Airfield (SLJ)','1','0'),(865,'CN','CGQ',5771,46,'Changchun, CN - Changchun Longjia Intl Airport (CGQ)','1','0'),(866,'CN','CSX',5781,46,'Changsha, CN - Changsha Huanghua Intl Airport (CSX)','1','0'),(867,'CN','CIH',5786,46,'Changzhi, CN - Changzhi Wangcun Airport (CIH)','1','0'),(868,'CN','CZX',5787,46,'Changzhou, CN - Changzhou Benniu Airport (CZX)','1','0'),(869,'GR','CHQ',5790,86,'Chania, GR - Chania Airport (CHQ)','1','0'),(870,'BR','XAP',5815,30,'Chapeco, BR - Chapeco Airport (XAP)','1','0'),(871,'','YLD',5821,39,'Chapleau, Chapleau Airport (YLD)','1','0'),(872,'BE','CRL',5844,21,'Charleroi, BE - Brussels South Charleroi Airport (CRL)','1','0'),(873,'US','CRW',5846,231,'Charleston, US - Yeager Airport (CRW)','1','0'),(874,'AU','CTL',5854,13,'Charleville, AU - Charleville Airport (CTL)','1','0'),(875,'CA','YCL',5858,39,'Charlo, CA - Charlo Airport (YCL)','1','0'),(876,'US','CLT',5859,231,'Charlotte, US - Charlotte Douglas Intl Airport (CLT)','1','0'),(877,'','QWG',5859,231,'Charlotte, Wilgrove Air Park (QWG)','1','0'),(878,'US','CHO',5863,231,'Charlottesville, US - Albemarle Airport (CHO)','1','0'),(879,'','YHG',5864,39,'Charlottetown, Charlottetown Airport (YHG)','1','0'),(880,'CA','YYG',5864,39,'Charlottetown, CA - Charlottetown Airport (YYG)','1','0'),(881,'FR','CHR',5913,76,'Chateauroux, FR - Deols (CHR)','1','0'),(882,'','CYM',5925,231,'Chatham, Chatham Seaplane Base (CYM)','1','0'),(883,'US','CHA',5936,231,'Chattanooga, US - Lovell Field / Chattanooga Metropolitan Airport (CHA)','1','0'),(884,'','TIL',5961,482,'Cheadle, Cheadle Airport (TIL)','1','0'),(885,'US','BUF',5969,231,'Cheektowaga, US - Buffalo Niagara Intl Airport (BUF)','1','0'),(886,'RU','CEK',5986,181,'Chelyabinsk, RU - Chelyabinsk Airport (CEK)','1','0'),(887,'CN','CTU',5998,46,'Chengdu, CN - Chengdu Shuangliu Intl Airport (CTU)','1','0'),(888,'IN','MAA',6000,101,'Chennai, IN - Chennai (Madras) - Meenambakkam Airport (MAA)','1','0'),(889,'','HCW',6013,231,'Cheraw, Cheraw Municipal Airport (HCW)','1','0'),(890,'FR','CER',6014,76,'Cherbourg, FR - Cherbourg - Maupertus (CER)','1','0'),(891,'','CKC',6019,227,'Cherkasy, Cherkasy International Airport (CKC)','1','0'),(892,'','CKA',6023,231,'Cherokee, Kegelman Air Force Auxiliary Field (CKA)','1','0'),(893,'US','CKK',6023,231,'Cherokee, US - Sharp County Regional Airport (CKK)','1','0'),(894,'MX','CTM',6054,141,'Chetumal, MX - Chetumal Intl Airport (CTM)','1','0'),(895,'','YCQ',6055,39,'Chetwynd, Chetwynd Airport (YCQ)','1','0'),(896,'US','VAK',6057,231,'Chevak, US - Chevak Airport (VAK)','1','0'),(897,'US','CYS',6067,231,'Cheyenne, US - Cheyenne Regional Airport / Jerry Olsen Field (CYS)','1','0'),(898,'TH','CNX',30567,215,'Chiang Mai, TH - Chiang Mai Intl Airport (CNX)','1','0'),(899,'TH','CEI',34239,215,'Chiang Rai, TH - Chiang Rai Airport (CEI)','1','0'),(900,'MX','TGZ',6077,141,'Chiapa De Corzo, MX - Angel Albino Corzo Intl Airport (TGZ)','1','0'),(901,'CA','YMT',6086,39,'Chibougamau, CA - Chibougamau/Chapais Airport (YMT)','1','0'),(902,'US','MDW',6087,231,'Chicago, US - Midway Intl Airport (MDW)','1','0'),(903,'US','ORD',6087,231,'Chicago, US - O`Hare Intl Airport (ORD)','1','0'),(904,'','CKX',6095,231,'Chicken, Chicken Airport (CKX)','1','0'),(905,'PE','CIX',6097,172,'Chiclayo, PE - Capitan FAP Jose A. Quinones Gonzalez Airport (CIX)','1','0'),(906,'US','CEF',6100,231,'Chicopee, US - Westover ARB/Westover Metropolitan (CEF)','1','0'),(907,'CN','CIF',6109,46,'Chifeng, CN - Chifeng Airport (CIF)','1','0'),(908,'CO','IGO',6111,49,'Chigorodo, CO - Jaime Ortíz Betancur Airport (IGO)','1','0'),(909,'MX','CJS',6112,141,'Chihuahua, MX - Abraham Gonzalez Intl Airport (CJS)','1','0'),(910,'MX','CUU',6112,141,'Chihuahua, MX - Gen Roberto Fierro Villalobos Intl Airport (CUU)','1','0'),(911,'','CHB',6114,166,'Chilas, Chilas Airport (CHB)','1','0'),(912,'','LLG',6121,13,'Chillagoe, Chillagoe Airport (LLG)','1','0'),(913,'','CHZ',6130,231,'Chiloquin, Chiloquin State Airport (CHZ)','1','0'),(914,'KZ','CIT',6134,112,'Chimkent, KZ - Shymkent Airport (CIT)','1','0'),(915,'','CGJ',6147,242,'Chingola, Kasompe Airport (CGJ)','1','0'),(916,'US','CNO',6151,231,'Chino, US - Chino (CNO)','1','0'),(917,'GR','JKH',6156,86,'Chios, GR - Chios Airport (JKH)','1','0'),(918,'ZM','CIP',6157,242,'Chipata, ZM - Chipata Airport (CIP)','1','0'),(919,'','BFO',6168,243,'Chiredzi, Buffalo Range Airport (BFO)','1','0'),(920,'','CZN',6175,231,'Chisana, Chisana Airport (CZN)','1','0'),(921,'CA','YKU',6176,39,'Chisasibi, CA - Chisasibi Airport (YKU)','1','0'),(922,'MD','KIV',6178,144,'Chisinau, MD - Chisinau Airport (KIV)','1','0'),(923,'RU','HTA',6182,181,'Chita, RU - Chita Kadala Airport (HTA)','1','0'),(924,'BD','CGP',6188,18,'Chittagong, BD - Shah Amanat Intl Airport (CGP)','1','0'),(925,'','JUH',6202,46,'Chizhou, Chizhou Jiuhuashan Airport (JUH)','1','0'),(926,'','CFK',6203,3,'Chlef, Chlef International Airport (CFK)','1','0'),(927,'SB','CHY',6209,193,'Choiseul Bay, SB - Choiseul Bay Airport (CHY)','1','0'),(928,'CN','CKG',6225,46,'Chongqing, CN - Chongqing Jiangbei Intl Airport (CKG)','1','0'),(929,'','HOS',6234,10,'Chos Malal, Chos Malal Airport (HOS)','1','0'),(930,'NZ','CHC',6244,157,'Christchurch, NZ - Christchurch Intl Airport (CHC)','1','0'),(931,'GL','JCH',6250,87,'Christianshaab, GL - Qasigiannguit Heliport (JCH)','1','0'),(932,'US','CHU',6255,231,'Chuathbaluk, US - Chuathbaluk Airport (CHU)','1','0'),(933,'BS','CCZ',6256,16,'Chub Cay, BS - Chub Cay Intl Airport (CCZ)','1','0'),(934,'','ARR',6259,10,'Chubut, Alto Río Senguer Airport (ARR)','1','0'),(935,'AR','REL',6259,10,'Chubut, AR - Almirante Marcos Zar Airport (REL)','1','0'),(936,'TH','CJM',6268,215,'Chumphon, TH - Chumphon Airport (CJM)','1','0'),(937,'','JWO',6275,197,'Chungju, Jungwon Air Base (JWO)','1','0'),(938,'CA','YYQ',6284,39,'Churchill, CA - Churchill Airport (YYQ)','1','0'),(939,'FJ','ICI',6295,74,'Cicia, FJ - Cicia Airport (ICI)','1','0'),(940,'CU','AVI',6300,56,'Ciego De Avila, CU - Máximo Gómez Airport (AVI)','1','0'),(941,'ID','CXP',6310,102,'Cilacap, ID - Tunggul Wulung Airport (CXP)','1','0'),(942,'US','CVG',6318,231,'Cincinnati, US - Cincinnati/Northern Kentucky Intl Airport (CVG)','1','0'),(943,'US','IRC',6333,231,'Circle, US - Circle Airport (IRC)','1','0'),(944,'ID','CBN',6335,102,'Cirebon, ID - Penggung Airport (CBN)','1','0'),(945,'VE','CBL',6354,235,'Ciudad Bolivar, VE - Ciudad Bolivar (CBL)','1','0'),(946,'US','CKB',6410,231,'Clarksburg, US - North Central West Virginia Airport (CKB)','1','0'),(947,'','CMQ',6460,13,'Clermont, Clermont Airport (CMQ)','1','0'),(948,'','CVC',6468,13,'Cleve, Cleve Airport (CVC)','1','0'),(949,'US','BKL',6470,231,'Cleveland, US - Burke Lakefront (BKL)','1','0'),(950,'US','CGF',6470,231,'Cleveland, US - Cuyahoga County (CGF)','1','0'),(951,'US','CLE',6470,231,'Cleveland, US - Hopkins Intl Airport (CLE)','1','0'),(952,'','CFT',6479,231,'Clifton, Greenlee County Airport (CFT)','1','0'),(953,'','CTZ',6484,231,'Clinton, Clinton–Sampson County Airport (CTZ)','1','0'),(954,'AU','CNJ',6495,13,'Cloncurry, AU - Cloncurry Airport (CNJ)','1','0'),(955,'US','CVN',6508,231,'Clovis, US - Clovis Municipal Airport (CVN)','1','0'),(956,'RO','CLJ',6511,179,'Cluj, RO - Napoca Intl Airport (CLJ)','1','0'),(957,'','CZY',6515,76,'Cluny, Cluny Airport (CZY)','1','0'),(958,'CA','YCY',6521,39,'Clyde River, CA - Clyde River Airport (YCY)','1','0'),(959,'','CLG',6526,231,'Coalinga, New Coalinga Municipal Airport (CLG)','1','0'),(960,'','CTH',6533,231,'Coatesville, Chester County G. O. Carlson Airport (CTH)','1','0'),(961,'AU','CAZ',6538,13,'Cobar, AU - Cobar Airport (CAZ)','1','0'),(962,'BO','CIJ',6545,26,'Cobija, BO - Captain Anibal Arab Airport (CIJ)','1','0'),(963,'EC','OCC',6553,64,'Coca, EC - Francisco de Orellana Airport (OCC)','1','0'),(964,'BO','CBB',6556,26,'Cochabamba, BO - Jorge Wilstermann Intl Airport (CBB)','1','0'),(965,'','ICC',6558,235,'Coche Island, Andrés Miguel Salazar Marcano Airport (ICC)','1','0'),(966,'','LGR',6564,45,'Cochrane, Cochrane Airfield (LGR)','1','0'),(967,'CA','YCN',6565,39,'Cochrane, CA - Cochrane (YCN)','1','0'),(968,'US','COD',6585,231,'Cody, US - Yellowstone Regional Airport (COD)','1','0'),(969,'AU','CUQ',6587,13,'Coen, AU - Coen Airport (CUQ)','1','0'),(970,'US','COE',6588,231,'Coeur D\'alene, US - Coeur d`Alene Air Terminal (COE)','1','0'),(971,'AU','CFS',6592,13,'Coffs Harbour, AU - Coffs Harbour Airport (CFS)','1','0'),(972,'IN','CJB',6609,101,'Coimbatore, IN - Peelamedu Airport (CJB)','1','0'),(973,'','XCO',6615,13,'Colac, Colac Airport (XCO)','1','0'),(974,'US','CDB',6626,231,'Cold Bay, US - Cold Bay Airport (CDB)','1','0'),(975,'US','OEB',6631,231,'Coldwater, US - Branch County Memorial (OEB)','1','0'),(976,'MX','CLQ',6643,141,'Colima, MX - Lic Miguel de la Madrid Airport (CLQ)','1','0'),(977,'','KCE',6669,13,'Collinsville, Collinsville Airport (KCE)','1','0'),(978,'FR','CMR',6675,76,'Colmar, FR - Houssen Airport (CMR)','1','0'),(979,'DE','CGN',6679,83,'Cologne, DE - Cologne Bonn Airport (CGN)','1','0'),(980,'','BYV',6689,200,'Colombo, Beira Lake Seaplane Base (BYV)','1','0'),(981,'','DGM',6689,200,'Colombo, Dandugama Seaplane Base (DGM)','1','0'),(982,'','KEZ',6689,200,'Colombo, Kelani River-Peliyagoda Waterdrome (KEZ)','1','0'),(983,'PA','ONX',6692,169,'Colon, PA - Enrique Adolfo Jimenez Airport (ONX)','1','0'),(984,'UY','CYR',6695,230,'Colonia, UY - Laguna de Los Patos International (CYR)','1','0'),(985,'US','CAE',6707,231,'Columbia, US - Columbia Metropolitan Airport (CAE)','1','0'),(986,'','COA',6707,231,'Columbia, Columbia Airport (COA)','1','0'),(987,'US','COU',6707,231,'Columbia, US - Columbia Regional Airport (COU)','1','0'),(988,'US','CMH',6709,231,'Columbus, US - Port Columbus Intl Airport (CMH)','1','0'),(989,'US','CSG',6709,231,'Columbus, US - Columbus Metropolitan Airport (CSG)','1','0'),(990,'','CUS',6709,231,'Columbus, Columbus Municipal Airport (CUS)','1','0'),(991,'US','GTR',6709,231,'Columbus, US - Golden Triangle Regional Airport (GTR)','1','0'),(992,'US','LCK',6709,231,'Columbus, US - Rickenbacker Intl Airport (LCK)','1','0'),(993,'US','OSU',6709,231,'Columbus, US - Ohio State University (OSU)','1','0'),(994,'CA','YCK',6713,39,'Colville Lake, CA - Tommy Cochon Aerodrome (YCK)','1','0'),(995,'','XPL',6725,97,'Comayagua, Soto Cano Air Base (XPL)','1','0'),(996,'','CIY',6738,107,'Comiso, Comiso Airport (CIY)','1','0'),(997,'CA','YQQ',6747,39,'Comox, CA - Comox Airport (YQQ)','1','0'),(998,'US','CPM',6754,231,'Compton, US - Compton/Woodley (CPM)','1','0'),(999,'GN','CKY',6759,92,'Conakry, GN - Conakry Airport (CKY)','1','0'),(1000,'CL','CCP',6764,45,'Concepcion, CL - Carriel Sur Airport (CCP)','1','0'),(1001,'US','CCR',6771,231,'Concord, US - Buchanan Field (CCR)','1','0'),(1002,'US','CON',6771,231,'Concord, US - Concord Municipal (CON)','1','0'),(1003,'','USA',6771,231,'Concord, Concord Regional Airport (USA)','1','0'),(1004,'US','CNK',6774,231,'Concordia, US - Blosser Municipal (CNK)','1','0'),(1005,'AR','COC',6775,10,'Concordia, AR - Concordia (Comodoro Pierrestegui) (COC)','1','0'),(1006,'','CBX',6787,13,'Condobolin, Condobolin Airport (CBX)','1','0'),(1007,'','COG',6790,49,'Condoto, Mandinga Airport (COG)','1','0'),(1008,'RO','CND',6828,179,'Constanta, RO - Mihail Kogalniceanu Intl Airport (CND)','1','0'),(1009,'DZ','CZL',6832,3,'Constantine, DZ - Mohamed Boudiaf Intl Airport (CZL)','1','0'),(1010,'PA','OTD',6836,169,'Contadora, PA - Contadora Airport (OTD)','1','0'),(1011,'AU','CPD',6851,13,'Coober Pedy, AU - Coober Pedy Airport (CPD)','1','0'),(1012,'IN','COH',34349,101,'Cooch Behar, IN - Cooch Behar Airport (COH)','1','0'),(1013,'AU','CDA',6854,13,'Cooinda, AU - Cooinda (CDA)','1','0'),(1014,'AU','CTN',6860,13,'Cooktown, AU - Cooktown Airport (CTN)','1','0'),(1015,'AU','COJ',6868,13,'Coonabarabran, AU - Coonabarabran (COJ)','1','0'),(1016,'','CNB',6869,13,'Coonamble, Coonamble Airport (CNB)','1','0'),(1017,'','JLA',6873,231,'Cooper Landing, Quartz Creek Airport (JLA)','1','0'),(1018,'','COP',6876,231,'Cooperstown, Cooperstown-Westville Airport (COP)','1','0'),(1019,'','CMD',6883,13,'Cootamundra, Cootamundra Airport (CMD)','1','0'),(1020,'DK','CPH',6889,59,'Copenhagen, DK - Copenhagen Airport Kastrup (CPH)','1','0'),(1021,'DK','RKE',6889,59,'Copenhagen, DK - Copenhagen Airport Roskilde (RKE)','1','0'),(1022,'CL','CPO',6891,45,'Copiapo, CL - Desierto de Atacama Airport (CPO)','1','0'),(1023,'','CZC',6896,231,'Copper Center, Copper Center 2 Airport (CZC)','1','0'),(1024,'CA','YCO',6898,39,'Coppermine, CA - Kugluktuk Coppermine Airport (YCO)','1','0'),(1025,'','COW',6904,45,'Coquimbo, Coquimbo Airport (COW)','1','0'),(1026,'CA','YZS',6909,39,'Coral Harbour, CA - Coral Harbour Airport (YZS)','1','0'),(1027,'AR','COR',6932,10,'Cordoba, AR - Ing. Aer. Ambrosio L. V. Taravella Intl Airport (COR)','1','0'),(1028,'','BSW',6935,231,'Cordova, Boswell Bay Airport (BSW)','1','0'),(1029,'US','CDV',6935,231,'Cordova, US - Merle K (Mudhole) Smith Airport (CDV)','1','0'),(1030,'','CKU',6935,231,'Cordova, Cordova Municipal Airport (CKU)','1','0'),(1031,'','CRX',6958,231,'Corinth, Roscoe Turner Airport (CRX)','1','0'),(1032,'IE','ORK',6960,105,'Cork, IE - Cork Airport (ORK)','1','0'),(1033,'VE','CZE',6985,235,'Coro, VE - Coro Airport (CZE)','1','0'),(1034,'','DUF',6987,231,'Corolla, Pine Island Airport (DUF)','1','0'),(1035,'','CMV',6988,157,'Coromandel, Coromandel Aerodrome (CMV)','1','0'),(1036,'','XCN',6989,173,'Coron, Coron Airport (XCN)','1','0'),(1037,'AU','CWW',6992,13,'Corowa, AU - Corowa (CWW)','1','0'),(1038,'BZ','CZH',6993,22,'Corozal, BZ - Corozal Airport (CZH)','1','0'),(1039,'US','CRP',6995,231,'Corpus Christi, US - Corpus Christi Intl Airport (CRP)','1','0'),(1040,'','CUX',6995,231,'Corpus Christi, Cuddihy Field (CUX)','1','0'),(1041,'AR','CNQ',7004,10,'Corrientes, AR - Dr Fernando Piragine Niveyro Intl Airport (CNQ)','1','0'),(1042,'','CYG',7006,13,'Corryong, Corryong Airport (CYG)','1','0'),(1043,'US','CEZ',7020,231,'Cortez, US - Cortez Municipal Airport (CEZ)','1','0'),(1044,'','CTX',7023,231,'Cortland, Cortland County Airport (CTX)','1','0'),(1045,'BR','CMG',7028,30,'Corumba, BR - Corumba Intl Airport (CMG)','1','0'),(1046,'PH','CBO',7053,173,'Cotabato, PH - Cotabato Airport (CBO)','1','0'),(1047,'BJ','COO',7059,23,'Cotonou, BJ - Cotonou Airport (COO)','1','0'),(1048,'','CTW',7070,231,'Cottonwood, Cottonwood Airport (CTW)','1','0'),(1049,'','COT',7071,231,'Cotulla, Cotulla–La Salle County Airport (COT)','1','0'),(1050,'','CIL',7081,231,'Council, Council Airport (CIL)','1','0'),(1051,'FR','CVF',7094,76,'Courchevel, FR - Courchevel (CVF)','1','0'),(1052,'AU','CWT',7127,13,'Cowra, AU - Cowra (CWT)','1','0'),(1053,'BD','CXB',7129,18,'Cox\'s Bazar, BD - Cox`s Bazar Airport (CXB)','1','0'),(1054,'CL','GXQ',7131,45,'Coyhaique, CL - Teniente Vidal (GXQ)','1','0'),(1055,'MX','CZM',7134,141,'Cozumel, MX - Cozumel Intl Airport (CZM)','1','0'),(1056,'','CDO',7137,195,'Cradock, Cradock Airport (CDO)','1','0'),(1057,'','CIG',7140,231,'Craig, Craig–Moffat Airport (CIG)','1','0'),(1058,'VU','CCV',7141,233,'Craig Cove, VU - Craig Cove Airport (CCV)','1','0'),(1059,'CA','YXC',7157,39,'Cranbrook, CA - Canadian Rockies Intl Airport (YXC)','1','0'),(1060,'','CCG',7161,231,'Crane, Crane County Airport (CCG)','1','0'),(1061,'','CSE',7209,231,'Crested Butte, Buckhorn Ranch Airport (CSE)','1','0'),(1062,'','CFQ',7211,231,'Creston, Creston Aerodrome (CFQ)','1','0'),(1063,'US','CEW',7213,231,'Crestview, US - Bob Sikes (CEW)','1','0'),(1064,'US','CKD',7273,231,'Crooked Creek, US - Crooked Creek Airport (CKD)','1','0'),(1065,'','CKN',7276,231,'Crookston, Crookston Municipal Airport (CKN)','1','0'),(1066,'CA','YCR',34675,39,'Cross Lake, CA - Charlie Sinclair Memorial Airport (YCR)','1','0'),(1067,'','CRT',7282,231,'Crossett, Z. M. Jack Stell Field (CRT)','1','0'),(1068,'IT','CRV',7289,107,'Crotone, IT - Sant`Anna Airport (CRV)','1','0'),(1069,'','CDQ',7301,482,'Croydon, Croydon Airport (CDQ)','1','0'),(1070,'BR','CZS',7313,30,'Cruzeiro Do Sul, BR - Campo Intl Airport (CZS)','1','0'),(1071,'CO','CUC',7333,49,'Cucuta, CO - Camilo Daza Airport (CUC)','1','0'),(1072,'IN','CDP',7335,101,'Cuddapah, IN - Kadapa Airport (CDP)','1','0'),(1073,'','CUY',7339,13,'Cue, Cue Airport (CUY)','1','0'),(1074,'EC','CUE',7340,64,'Cuenca, EC - Mariscal Lamar Airport (CUE)','1','0'),(1075,'BR','CGB',7344,30,'Cuiaba, BR - Marechal Rondon Airport (CGB)','1','0'),(1076,'US','CPX',7351,176,'Culebra, US - Benjamin Rivera Noriega Airport (CPX)','1','0'),(1077,'MX','CUL',7352,141,'Culiacan, MX - Federal de Bachigualato Intl Airport (CUL)','1','0'),(1078,'VE','CUM',7369,235,'Cumana, VE - Antonio Jose de Sucre Airport (CUM)','1','0'),(1079,'US','CBE',7370,231,'Cumberland, US - Greater Cumberland Regional (CBE)','1','0'),(1080,'IT','CUF',7375,107,'Cuneo, IT - Levaldigi Airport (CUF)','1','0'),(1081,'AU','CMA',7378,13,'Cunnamulla, AU - Cunnamulla Airport (CMA)','1','0'),(1082,'AN','CUR',7386,155,'Curacao, AN - Hato Airport (CUR)','1','0'),(1083,'','BFH',7391,30,'Curitiba, Bacacheri Airport (BFH)','1','0'),(1084,'','CUH',7405,231,'Cushing, Cushing Municipal Airport (CUH)','1','0'),(1085,'','BBW',7406,231,'Custer, Broken Bow Municipal Airport (BBW)','1','0'),(1086,'','CTB',30739,231,'Cut Bank, Cut Bank Municipal Airport (CTB)','1','0'),(1087,'AR','CUT',7412,10,'Cutral, AR - Cutral Có Airport (CUT)','1','0'),(1088,'','FCN',7416,83,'Cuxhaven, Nordholz Naval Airbase (FCN)','1','0'),(1089,'','CYU',7418,173,'Cuyo, Cuyo Airport (CYU)','1','0'),(1090,'PE','CUZ',7420,172,'Cuzco, PE - Velazco Astete Airport (CUZ)','1','0'),(1091,'VN','DAD',30741,236,'Da Nang, VN - Da Nang Airport (DAD)','1','0'),(1092,'','DTE',7440,173,'Daet, Bagasbas Airport (DTE)','1','0'),(1093,'','DGN',7448,231,'Dahlgren, Naval Surface Warfare Center Dahlgren Division (DGN)','1','0'),(1094,'SN','DKR',7460,187,'Dakar, SN - Yoff Airport (DKR)','1','0'),(1095,'MA','VIL',7461,148,'Dakhla, MA - Dakhla Airport (VIL)','1','0'),(1096,'','DAK',7462,65,'Dakhla Oasis, Dakhla Oasis Airport (DAK)','1','0'),(1097,'TR','DLM',7464,222,'Dalaman, TR - Dalaman Airport (DLM)','1','0'),(1098,'VN','DLI',7467,236,'Dalat, VN - Dalat Airport (DLI)','1','0'),(1099,'','DBY',7470,13,'Dalby, Dalby Airport (DBY)','1','0'),(1100,'US','OZR',7474,231,'Daleville, US - Cairns Army Airfield (Fort Rucker) (OZR)','1','0'),(1101,'US','DHT',7476,231,'Dalhart, US - Dalhart Municipal (DHT)','1','0'),(1102,'CN','DLC',7480,46,'Dalian, CN - Dalian Zhoushuizi Intl Airport (DLC)','1','0'),(1103,'US','DAL',7485,231,'Dallas, US - Dallas Love Field (DAL)','1','0'),(1104,'US','DFW',7485,231,'Dallas, US - Dallas/Fort Worth Intl Airport (DFW)','1','0'),(1105,'IN','NMB',7500,101,'Daman, IN - Daman (NMB)','1','0'),(1106,'SY','DAM',7504,211,'Damascus, SY - Damascus Intl Airport (DAM)','1','0'),(1107,'','DBU',7506,200,'Dambulla, Dambulu Oya Tank Seaplane Base (DBU)','1','0'),(1108,'','GIU',7506,200,'Dambulla, Sigiriya Airport (GIU)','1','0'),(1109,'SA','DMM',7508,186,'Dammam, SA - Damman King Fahad Airport (DMM)','1','0'),(1110,'SA','DMS',7508,186,'Dammam, SA - DAMMAM Airport (DMS)','1','0'),(1111,'BZ','DGA',7529,22,'Dangriga, BZ - Dangriga Airport (DGA)','1','0'),(1112,'US','DAN',7539,231,'Danville, US - Danville Regional (DAN)','1','0'),(1113,'','DQA',7544,46,'Daqing, Daqing Sartu Airport (DQA)','1','0'),(1114,'TZ','DAR',7545,214,'Dar Es Salaam, TZ - Dar Es Salaam Airport (DAR)','1','0'),(1115,'','DGR',7553,157,'Dargaville, Dargaville Aerodrome (DGR)','1','0'),(1116,'','NLF',7564,13,'Darnley Island, Darnley Island Airport (NLF)','1','0'),(1117,'AU','DRW',7574,13,'Darwin, AU - Darwin Intl Airport (DRW)','1','0'),(1118,'ID','DTD',7583,102,'Datadawai, ID - Datadawai Airport (DTD)','1','0'),(1119,'','DAH',7588,240,'Dathina, Dathina Airport (DAH)','1','0'),(1120,'','DGP',7591,119,'Daugavpils, Daugavpils International Airport (DGP)','1','0'),(1121,'CA','YDN',7594,39,'Dauphin, CA - Lt Col W G Barker VC Airport (YDN)','1','0'),(1122,'PH','DVO',7597,173,'Davao, PH - Francisco Bangoy Intl Airport (DVO)','1','0'),(1123,'PA','DAV',7603,169,'David, PA - Enrique Malek Intl Airport (DAV)','1','0'),(1124,'CA','YDA',7617,39,'Dawson City, CA - Dawson City Airport (YDA)','1','0'),(1125,'CA','YDQ',34676,39,'Dawson Creek, CA - Dawson Creek Airport (YDQ)','1','0'),(1126,'US','DAY',7627,231,'Dayton, US - James M Cox Dayton Intl Airport (DAY)','1','0'),(1127,'US','MGY',7627,231,'Dayton, US - Wright Brothers Airport (MGY)','1','0'),(1128,'','DZU',7632,46,'Dazu, Dazu Air Base (DZU)','1','0'),(1129,'BS','LGI',7637,16,'Deadmans Cay, BS - Deadmans Cay Airport (LGI)','1','0'),(1130,'','YDL',7643,39,'Dease Lake, Dease Lake Airport (YDL)','1','0'),(1131,'','DTH',7644,231,'Death Valley, Furnace Creek Airport (DTH)','1','0'),(1132,'FR','DOL',7645,76,'Deauville, FR - Deauville Airport (DOL)','1','0'),(1133,'ET','DBM',7650,70,'Debra Marcos, ET - Debre Marcos Airport (DBM)','1','0'),(1134,'HU','DEB',7651,99,'Debrecen, HU - Debrechen Intl Airport (DEB)','1','0'),(1135,'US','DEC',7653,231,'Decatur, US - Decatur Airport (DEC)','1','0'),(1136,'','DEH',7658,231,'Decorah, Decorah Municipal Airport (DEH)','1','0'),(1137,'CA','YDF',7664,39,'Deer Lake, CA - Deer Lake Regional Airport (YDF)','1','0'),(1138,'CA','YVZ',7664,39,'Deer Lake, CA - Deer Lake Airport (YVZ)','1','0'),(1139,'US','DRG',7667,231,'Deering, US - Deering Airport (DRG)','1','0'),(1140,'IN','DED',7680,101,'Dehradun, IN - Jolly Grant Airport (DED)','1','0'),(1141,'SY','DEZ',7685,211,'Deirezzor, SY - Deir ez-Zor Airport (DEZ)','1','0'),(1142,'IN','DEL',7701,101,'Delhi, IN - Indira Gandhi Intl Airport (DEL)','1','0'),(1143,'','DTA',7716,39,'Delta, Delta Municipal Airport (DTA)','1','0'),(1144,'','DDN',7718,13,'Delta Downs, Delta Downs Airport (DDN)','1','0'),(1145,'ET','DEM',7722,70,'Dembidollo, ET - Dembidollo Airport (DEM)','1','0'),(1146,'','DNM',7732,482,'Denham, Denham Airport (DNM)','1','0'),(1147,'AU','DNQ',7736,13,'Deniliquin, AU - Deniliquin (DNQ)','1','0'),(1148,'','DEI',7737,188,'Denis Island, Denis Island Airport (DEI)','1','0'),(1149,'','DNS',7738,231,'Denison, Denison Municipal Airport (DNS)','1','0'),(1150,'TR','DNZ',7739,222,'Denizli, TR - Denizli Airport (DNZ)','1','0'),(1151,'US','DEN',7748,231,'Denver, US - Denver Intl Airport (DEN)','1','0'),(1152,'','DCN',7759,482,'Derby, RAAF Base Curtin (DCN)','1','0'),(1153,'AU','DRB',7760,13,'Derby, AU - Derby Airport (DRB)','1','0'),(1154,'US','DRI',7764,231,'Deridder, US - Beauregard Regional (DRI)','1','0'),(1155,'','DNF',7766,123,'Derna, Martuba Air Base (DNF)','1','0'),(1156,'US','DSM',7773,231,'Des Moines, US - Des Moines Intl Airport (DSM)','1','0'),(1157,'','DES',7785,188,'Desroches Island, Desroches Airport (DES)','1','0'),(1158,'ET','DSE',7787,70,'Dessie, ET - Dessie Airport (DSE)','1','0'),(1159,'','DSI',7788,231,'Destin, Destin Executive Airport (DSI)','1','0'),(1160,'US','DET',7792,231,'Detroit, US - Coleman A. Young International (DET)','1','0'),(1161,'US','DTW',7792,231,'Detroit, US - Detroit Metropolitan Wayne County Airport (DTW)','1','0'),(1162,'US','YIP',7792,231,'Detroit, US - Willow Run Airport (YIP)','1','0'),(1163,'AU','DPO',7811,13,'Devonport, AU - Devonport Airport (DPO)','1','0'),(1164,'SA','DHA',7819,186,'Dhahran, SA - Dhahran Intl Airport (DHA)','1','0'),(1165,'BD','BZL',7820,18,'Dhaka, BD - Barisal Airport (BZL)','1','0'),(1166,'BD','DAC',7820,18,'Dhaka, BD - Hazrat Shahjalal Intl Airport (DAC)','1','0'),(1167,'','DBD',7821,101,'Dhanbad, Dhanbad Airport (DBD)','1','0'),(1168,'OM','BYB',7848,165,'Dibaa, OM - Dibba Airport (BYB)','1','0'),(1169,'IN','DIB',7852,101,'Dibrugarh, IN - Dibrugarh Airport (DIB)','1','0'),(1170,'','YDG',7887,39,'Digby, Digby/Annapolis Regional Airport (YDG)','1','0'),(1171,'FR','DIJ',7892,76,'Dijon, FR - Longvic Airport (DIJ)','1','0'),(1172,'ID','DIL',7901,102,'Dili, ID - Presidente Nicolau Lobato Intl Airport (DIL)','1','0'),(1173,'US','DLG',7905,231,'Dillingham, US - Dillingham Airport (DLG)','1','0'),(1174,'VU','DLY',7907,233,'Dillons Bay, VU - Dillon`s Bay Airport (DLY)','1','0'),(1175,'IN','DMU',7912,101,'Dimapur, IN - Dimapur Airport (DMU)','1','0'),(1176,'FR','DNR',7918,76,'Dinard, FR - Dinard - Saint Malo Airport (DNR)','1','0'),(1177,'ET','DIR',7936,70,'Dire Dawa, ET - Dire Dawa Airport (DIR)','1','0'),(1178,'IN','DIU',7951,101,'Diu, IN - Diu Airport (DIU)','1','0'),(1179,'TR','DIY',7961,222,'Diyarbakir, TR - Diyarbakir Airport (DIY)','1','0'),(1180,'DZ','DJG',7963,3,'Djanet, DZ - Djanet Tiska (DJG)','1','0'),(1181,'TN','DJE',7965,220,'Djerba, TN - Melita Airport (DJE)','1','0'),(1182,'DJ','JIB',7966,60,'Djibouti, DJ - Ambouli Intl Airport (JIB)','1','0'),(1183,'UA','DNK',7970,227,'Dnepropetrovsk, UA - Dnepropetrovsk Airport (DNK)','1','0'),(1184,'US','DDC',7983,231,'Dodge City, US - Dodge City Regional Airport (DDC)','1','0'),(1185,'TZ','DOD',7985,214,'Dodoma, TZ - Dodoma Airport (DOD)','1','0'),(1186,'QA','DOH',7993,177,'Doha, QA - Doha Intl Airport (DOH)','1','0'),(1187,'','XJD',7993,177,'Doha, Al Udeid Air Base (XJD)','1','0'),(1188,'CA','YDO',7996,39,'Dolbeau, CA - Dolbeau-St-Felicien (YDO)','1','0'),(1189,'FR','DLE',7999,76,'Dole, FR - Dole - Jura Airport (DLE)','1','0'),(1190,'US','DLO',8010,231,'Dolomi, US - Delano Municipal (DLO)','1','0'),(1191,'','DOP',8013,153,'Dolpa, Dolpa Airport (DOP)','1','0'),(1192,'','CBJ',8027,61,'Dominican Republic, Cabo Rojo Airport (CBJ)','1','0'),(1193,'IE','CFN',8047,105,'Donegal, IE - Donegal Airport (CFN)','1','0'),(1194,'UA','DOK',8048,227,'Donetsk, UA - Donetsk Airport (DOK)','1','0'),(1195,'','YOE',8064,231,'Donnelly, Donnelly Airport (YOE)','1','0'),(1196,'AU','DMD',8074,13,'Doomadgee Mission, AU - Doomadgee Airport (DMD)','1','0'),(1197,'US','DOF',8080,231,'Dora Bay, US - Dora Bay Airport (DOF)','1','0'),(1198,'','DOC',8097,482,'Dornoch, Dornoch Airport (DOC)','1','0'),(1199,'DE','DTM',8105,83,'Dortmund, DE - Wickede Airport (DTM)','1','0'),(1200,'US','DHN',8112,231,'Dothan, US - Dothan Regional Airport (DHN)','1','0'),(1201,'CM','DLA',8114,38,'Douala, CM - Douala Airport (DLA)','1','0'),(1202,'','DGL',8119,105,'Douglas, Douglas Municipal Airport (DGL)','1','0'),(1203,'','YDC',8169,39,'Drayton Valley, Drayton Valley Industrial Airport (YDC)','1','0'),(1204,'DE','DRS',8178,83,'Dresden, DE - Dresden Airport (DRS)','1','0'),(1205,'','DRE',8202,231,'Drummond Island, Drummond Island Airport (DRE)','1','0'),(1206,'CA','YHD',8214,39,'Dryden, CA - Dryden Regional Airport (YHD)','1','0'),(1207,'','DSC',8217,38,'Dschang, Dschang Airport (DSC)','1','0'),(1208,'','DCG',8219,228,'Dubai, Dubai Creek Seaplane Base (DCG)','1','0'),(1209,'','DJH',8219,228,'Dubai, Jebel Ali Seaplane Base (DJH)','1','0'),(1210,'AE','DXB',8219,228,'Dubai, AE - Dubai Intl Airport (DXB)','1','0'),(1211,'','NHD',8219,228,'Dubai, Al Minhad Air Base (NHD)','1','0'),(1212,'AE','XNB',8219,228,'Dubai, AE - Dubai Bus Station Airport (XNB)','1','0'),(1213,'AE','ZXZ',8219,228,'Dubai, AE - Jumeirah Beach Airport (ZXZ)','1','0'),(1214,'AU','DBO',8220,13,'Dubbo, AU - Dubbo Airport (DBO)','1','0'),(1215,'IE','DUB',8222,105,'Dublin, IE - Dublin Airport (DUB)','1','0'),(1216,'','DBS',8230,231,'Dubois, Dubois Municipal Airport (DBS)','1','0'),(1217,'US','DUJ',8230,231,'Dubois, US - DuBois Regional Airport (DUJ)','1','0'),(1218,'HR','DBV',8231,55,'Dubrovnik, HR - Dubrovnik Airport (DBV)','1','0'),(1219,'US','DBQ',8232,231,'Dubuque, US - Dubuque Regional Airport (DBQ)','1','0'),(1220,'US','DLH',8266,231,'Duluth, US - Duluth Intl Airport (DLH)','1','0'),(1221,'PH','DGT',8270,173,'Dumaguete, PH - Dumaguete Airport (DGT)','1','0'),(1222,'','DUM',8271,102,'Dumai, Pinang Kampai Airport (DUM)','1','0'),(1223,'','DNB',8283,231,'Dunbar, Dunbar Airport (DNB)','1','0'),(1224,'','DUQ',8289,39,'Duncan, Duncan Airport (DUQ)','1','0'),(1225,'GB','DND',8300,482,'Dundee, GB - Dundee Airport (DND)','1','0'),(1226,'','DUE',8301,6,'Dundo, Dundo Airport (DUE)','1','0'),(1227,'NZ','DUD',8306,157,'Dunedin, NZ - Dunedin Airport (DUD)','1','0'),(1228,'CN','DNH',8315,46,'Dunhuang, CN - Dunhuang Airport (DNH)','1','0'),(1229,'AU','DKI',8317,13,'Dunk Island, AU - Dunk Island Airport (DKI)','1','0'),(1230,'BR','CGR',8346,30,'Duque De Caxias, BR - Campo Grande Airport (CGR)','1','0'),(1231,'','AMK',8348,199,'Durango, Animas Air Park (AMK)','1','0'),(1232,'MX','DGO',8349,141,'Durango, MX - Gen Guadalupe Victoria Intl Airport (DGO)','1','0'),(1233,'US','DRO',8350,231,'Durango, US - La Plata County Airport (DRO)','1','0'),(1234,'ZA','DUR',8355,195,'Durban, ZA - King Shaka Intl (La Mercy) Airport (DUR)','1','0'),(1235,'ZA','VIR',8355,195,'Durban, ZA - Virginia Airport (VIR)','1','0'),(1236,'','RDP',8361,101,'Durgapur, Kazi Nazrul Islam Airport (RDP)','1','0'),(1237,'','DHD',8364,13,'Durham Downs, Durham Downs Airport (DHD)','1','0'),(1238,'','DRR',8368,13,'Durrie, Durrie Airport (DRR)','1','0'),(1239,'TJ','DYU',8370,213,'Dushanbe, TJ - Dushanbe Airport (DYU)','1','0'),(1240,'DE','DUS',8372,83,'Dusseldorf, DE - Dusseldorf Intl Airport (DUS)','1','0'),(1241,'DE','NRN',8372,83,'Dusseldorf, DE - Weeze Niederrhein Airport (NRN)','1','0'),(1242,'','DYA',8389,13,'Dysart, Dysart Airport (DYA)','1','0'),(1243,'YT','DZA',8390,140,'Dzaoudzi, YT - Dzaoudzi Pamandzi Intl Airport (DZA)','1','0'),(1244,'CA','YXR',8409,39,'Earlton, CA - Earlton (YXR)','1','0'),(1245,'US','HTO',30817,231,'East Hampton, US - East Hampton (HTO)','1','0'),(1246,'','ESP',30850,231,'East Stroudsburg, Stroudsburg–Pocono Airport (ESP)','1','0'),(1247,'CL','IPC',8428,45,'Easter Island, CL - Easter Island Airport (IPC)','1','0'),(1248,'US','ESD',8449,231,'Eastsound, US - Orcas Island Airport (ESD)','1','0'),(1249,'US','EAU',30861,231,'Eau Claire, US - Chippewa Valley Regional Airport (EAU)','1','0'),(1250,'AU','ECH',8482,13,'Echuca, AU - Echuca (ECH)','1','0'),(1251,'GB','EOI',8493,482,'Eday, GB - Eday Airport (EOI)','1','0'),(1252,'GB','EDI',8520,482,'Edinburgh, GB - Edinburgh International Airport (EDI)','1','0'),(1253,'CA','YEG',8528,39,'Edmonton, CA - Edmonton Intl Airport (YEG)','1','0'),(1254,'CA','YXD',8528,39,'Edmonton, CA - Edmonton City Centre Airport (Blatchford Field) Airport (YXD)','1','0'),(1255,'AU','EDR',8537,13,'Edward River, AU - Edward River Airport (EDR)','1','0'),(1256,'US','EEK',30863,231,'Eek, US - Eek Airport (EEK)','1','0'),(1257,'US','EGX',8547,231,'Egegik, US - Egegik Airport (EGX)','1','0'),(1258,'IS','EGS',8555,100,'Egilsstadir, IS - Egilsstadir Airport (EGS)','1','0'),(1259,'NL','EIN',8590,154,'Eindhoven, NL - Eindhoven Airport (EIN)','1','0'),(1260,'US','KKU',8608,231,'Ekuk, US - Ekuk Airport (KKU)','1','0'),(1261,'US','KEK',8609,231,'Ekwok, US - Ekwok Airport (KEK)','1','0'),(1262,'','DBB',30866,65,'El \'Alamein, Al Alamain International Airport (DBB)','1','0'),(1263,'','EBG',8610,49,'El Bagre, El Bagre Airport (EBG)','1','0'),(1264,'AR','EHL',30871,10,'El Bolson, AR - El Bolson (EHL)','1','0'),(1265,'US','IPL',30880,231,'El Centro, US - Imperial County Airport (IPL)','1','0'),(1266,'','EDK',30887,231,'El Dorado, Captain Jack Thomas/El Dorado Airport (EDK)','1','0'),(1267,'','EOR',30887,231,'El Dorado, El Dorado Airport (EOR)','1','0'),(1268,'DZ','ELG',8611,3,'El Golea, DZ - El Golea Airport (ELG)','1','0'),(1269,'','EMY',30903,65,'El Minya, El Minya Airport (EMY)','1','0'),(1270,'','ENI',30908,173,'El Nido, El Nido Airport (ENI)','1','0'),(1271,'US','BIF',30910,231,'El Paso, US - Biggs Army Airfield (BIF)','1','0'),(1272,'US','ELP',30910,231,'El Paso, US - El Paso Intl Airport (ELP)','1','0'),(1273,'TR','EZS',8617,222,'Elazig, TR - Elazig Airport (EZS)','1','0'),(1274,'AU','ELC',8623,13,'Elcho Island, AU - Elcho Island Airport (ELC)','1','0'),(1275,'','GCD',8631,231,'Electric City, Grand Coulee Dam Airport (GCD)','1','0'),(1276,'US','ELI',8646,231,'Elim, US - Elim Airport (ELI)','1','0'),(1277,'','MOS',8646,231,'Elim, Moses Point Airport (MOS)','1','0'),(1278,'GR','PYR',8651,86,'Elis, GR - Andravida (PYR)','1','0'),(1279,'US','EKX',8656,231,'Elizabethtown, US - Addington Field/Elizabethtown Regional (EKX)','1','0'),(1280,'','EKI',8661,231,'Elkhart, Elkhart Municipal Airport (EKI)','1','0'),(1281,'US','EKN',8664,231,'Elkins, US - Elkins-Randolph Co.-Jennings Randolph Field (EKN)','1','0'),(1282,'US','EKO',8666,231,'Elko, US - Elko Regional Airport (EKO)','1','0'),(1283,'US','ELN',8673,231,'Ellensburg, US - Bowers Field (ELN)','1','0'),(1284,'','YEL',8683,39,'Elliot Lake, Elliot Lake Municipal Airport (YEL)','1','0'),(1285,'','ELL',8685,195,'Ellisras, Ellisras Airport (ELL)','1','0'),(1286,'US','ELM',8696,231,'Elmira, US - Corning Regional Airport (ELM)','1','0'),(1287,'VU','EAE',8723,233,'Emae, VU - Siwo Airport (EAE)','1','0'),(1288,'DE','EME',8728,83,'Emden, DE - Emden (EME)','1','0'),(1289,'AU','EMD',8733,13,'Emerald, AU - Emerald Airport (EMD)','1','0'),(1290,'','EML',8740,154,'Emmen, Emmen Air Base (EML)','1','0'),(1291,'US','EMK',8747,231,'Emmonak, US - Emmonak Airport (EMK)','1','0'),(1292,'','EWI',8757,102,'Enarotali, Enarotali Airport (EWI)','1','0'),(1293,'','ENO',8761,171,'Encarnacion, Teniente Amin Ayub Gonzalez Airport (ENO)','1','0'),(1294,'ID','ENE',8764,102,'Ende, ID - H. Hasan Aroeboesman Airport (ENE)','1','0'),(1295,'TN','NBE',8769,220,'Enfidha, TN - Hammamet  Intl Airport (NBE)','1','0'),(1296,'US','WDG',8789,231,'Enid, US - Enid Woodring Regional Airport (WDG)','1','0'),(1297,'FI','ENF',8809,75,'Enontekio, FI - Enontekio Airport (ENF)','1','0'),(1298,'NL','ENS',8810,154,'Enschede, NL - Twente-Enschede (ENS)','1','0'),(1299,'UG','EBB',8817,226,'Entebbe, UG - Entebbe/Kampala Intl Airport (EBB)','1','0'),(1300,'','ETS',8818,231,'Enterprise, Enterprise Municipal Airport (ETS)','1','0'),(1301,'FR','EPL',8836,76,'Epinal, FR - Mirecourt Airport (EPL)','1','0'),(1302,'IQ','EBL',8855,104,'Erbil, IQ - Erbil Intl Airport (EBL)','1','0'),(1303,'DE','ERF',8871,83,'Erfurt, DE - Erfurt-Weimar Airport (ERF)','1','0'),(1304,'US','ERI',8878,231,'Erie, US - Erie Intl Airport/Tom Ridge Field (ERI)','1','0'),(1305,'','EDD',8884,13,'Erldunda, Erldunda Airport (EDD)','1','0'),(1306,'MA','ERH',8896,148,'Errachidia, MA - Moulay Ali Cherif Airport (ERH)','1','0'),(1307,'TR','ERZ',8906,222,'Erzurum, TR - Erzurum Airport (ERZ)','1','0'),(1308,'DK','EBJ',8907,59,'Esbjerg, DK - Esbjerg Airport (EBJ)','1','0'),(1309,'US','ESC',8912,231,'Escanaba, US - Delta County Airport (ESC)','1','0'),(1310,'EC','ESM',8938,64,'Esmeraldas, EC - General Rivadeneira Airport (ESM)','1','0'),(1311,'AU','EPR',8946,13,'Esperance, AU - Esperance Airport (EPR)','1','0'),(1312,'VU','SON',8951,233,'Espiritu Santo, VU - Pekoa Airport (SON)','1','0'),(1313,'AR','EQS',8957,10,'Esquel, AR - Esquel Airport (EQS)','1','0'),(1314,'DE','ESS',8964,83,'Essen, DE - Essen Airport (ESS)','1','0'),(1315,'US','EUG',9034,231,'Eugene, US - Eugene Airport/Mahlon Sweet Field (EUG)','1','0'),(1316,'','UCE',9039,231,'Eunice, Eunice Airport (UCE)','1','0'),(1317,'','EUE',9043,231,'Eureka, Eureka Airport (EUE)','1','0'),(1318,'','YEU',9043,231,'Eureka, Eureka Aerodrome (YEU)','1','0'),(1319,'US','EVV',9054,231,'Evansville, US - Evansville Regional Airport (EVV)','1','0'),(1320,'US','PAE',9060,231,'Everett, US - Paine Field / Snohomish County Airport (PAE)','1','0'),(1321,'','EWO',9078,51,'Ewo, Ewo Airport (EWO)','1','0'),(1322,'GB','EXT',9081,482,'Exeter, GB - Exeter Airport (EXT)','1','0'),(1323,'','EXM',9087,482,'Exmouth, Exmouth Airport (EXM)','1','0'),(1324,'NO','VDB',9125,164,'Fagernes, NO - Fagernes Airport Leirin (VDB)','1','0'),(1325,'','FIE',9134,482,'Fair Isle, Fair Isle Airport (FIE)','1','0'),(1326,'','BIG',9135,231,'Fairbanks, Allen Army Airfield (BIG)','1','0'),(1327,'US','FAI',9135,231,'Fairbanks, US - Fairbanks Intl Airport (FAI)','1','0'),(1328,'','FBK',9135,231,'Fairbanks, Ladd Army Airfield (FBK)','1','0'),(1329,'','FBY',9138,231,'Fairbury, Fairbury Municipal Airport (FBY)','1','0'),(1330,'','FFL',9140,231,'Fairfield, Fairfield Municipal Airport (FFL)','1','0'),(1331,'US','FRM',9150,231,'Fairmont, US - Fairmont Municipal (FRM)','1','0'),(1332,'','ZFW',9154,231,'Fairview, Fairview Airport (ZFW)','1','0'),(1333,'PK','LYP',9156,166,'Faisalabad, PK - Faisalabad Airport (LYP)','1','0'),(1334,'PR','FAJ',9161,176,'Fajardo, PR - Diego Jimenez Torres Airport (FAJ)','1','0'),(1335,'','FHZ',9162,78,'Fakahina, Fakahina Airport (FHZ)','1','0'),(1336,'PF','FAV',9163,78,'Fakarava, PF - Fakarava Airport (FAV)','1','0'),(1337,'','FAK',9197,231,'False Island, False Island Seaplane Base (FAK)','1','0'),(1338,'','FGU',9206,78,'Fangatau, Fangatau Airport (FGU)','1','0'),(1339,'','RVA',9217,130,'Farafangana, Farafangana Airport (RVA)','1','0'),(1340,'US','FAR',9226,231,'Fargo, US - Hector Intl Airport (FAR)','1','0'),(1341,'US','FRG',9233,231,'Farmingdale, US - Republic (FRG)','1','0'),(1342,'US','FMN',9234,231,'Farmington, US - Four Corners Regional Airport (FMN)','1','0'),(1343,'PT','FAO',9241,175,'Faro, PT - Faro Airport (FAO)','1','0'),(1344,'','ZFA',9241,175,'Faro, Faro Airport (ZFA)','1','0'),(1345,'','FEC',9298,30,'Feira De Santana, Feira de Santana Airport (FEC)','1','0'),(1346,'SB','FRE',9333,193,'Fera Island, SB - Fera Airport (FRE)','1','0'),(1347,'UZ','FEG',9339,232,'Fergana, UZ - Fergana Airport (FEG)','1','0'),(1348,'','FEA',9382,482,'Fetlar, Fetlar Airport (FEA)','1','0'),(1349,'MA','FEZ',9389,148,'Fez, MA - Fez Airport (FEZ)','1','0'),(1350,'','WFI',9390,130,'Fianarantsoa, Fianarantsoa Airport (WFI)','1','0'),(1351,'','FCB',9392,195,'Ficksburg, Ficksburg Airport (FCB)','1','0'),(1352,'FR','FSC',9405,76,'Figari, FR - Figari Airport (FSC)','1','0'),(1353,'','FNH',9425,70,'Fincha, Fincha Airport (FNH)','1','0'),(1354,'US','FLG',9498,231,'Flagstaff, US - Flagstaff Pulliam Airport (FLG)','1','0'),(1355,'','FLT',9504,231,'Flat, Flat Airport (FLT)','1','0'),(1356,'','FLI',9506,100,'Flateyri, Holt Airport (FLI)','1','0'),(1357,'US','AVL',9517,231,'Fletcher, US - Asheville Regional Airport (AVL)','1','0'),(1358,'CA','YFO',9529,39,'Flin Flon, CA - Flin Flon Airport (YFO)','1','0'),(1359,'AU','FLS',9530,13,'Flinders, AU - Flinders Island Airport (FLS)','1','0'),(1360,'US','FNT',9531,231,'Flint, US - Bishop Intl Airport (FNT)','1','0'),(1361,'US','FLO',9543,231,'Florence, US - Florence Regional Airport (FLO)','1','0'),(1362,'','FMU',9543,231,'Florence, Florence Municipal Airport (FMU)','1','0'),(1363,'IT','FLR',9544,107,'Florence, IT - Amerigo Vespucci Airport (FLR)','1','0'),(1364,'GT','FRS',9552,91,'Flores, GT - Mundo Maya Intl Airport (FRS)','1','0'),(1365,'BR','FLN',9556,30,'Florianopolis, BR - Hercilio Luz Airport (FLN)','1','0'),(1366,'NO','FRO',9564,164,'Floro, NO - Floro Airport (FRO)','1','0'),(1367,'','NHX',9595,231,'Foley, NOLF Barin (NHX)','1','0'),(1368,'CA','ZFD',9609,39,'Fond Du Lac, CA - Fond-du-Lac Airport (ZFD)','1','0'),(1369,'','YFG',9617,76,'Fontanges, Fontanges Airport (YFG)','1','0'),(1370,'','FRB',9640,13,'Forbes, Forbes Airport (FRB)','1','0'),(1371,'NO','FDE',9647,164,'Forde, NO - Forde Airport Bringeland (FDE)','1','0'),(1372,'','YFE',9657,39,'Forestville, Forestville Airport (YFE)','1','0'),(1373,'','UIL',9667,231,'Forks, Quillayute Airport (UIL)','1','0'),(1374,'IT','FRL',9668,107,'Forli, IT - Luigi Ridolfi Airport (FRL)','1','0'),(1375,'AR','FMA',9676,10,'Formosa, AR - El Pucu / Formosa Intl Airport (FMA)','1','0'),(1376,'','LLS',9676,10,'Formosa, Alférez Armando Rodríguez Airport (LLS)','1','0'),(1377,'','FOS',9683,13,'Forrest, Forrest Airport (FOS)','1','0'),(1378,'CA','YFA',9691,39,'Fort Albany, CA - Fort Albany Airport (YFA)','1','0'),(1379,'','FOB',30979,231,'Fort Bragg, Fort Bragg Airport (FOB)','1','0'),(1380,'','FBR',30980,231,'Fort Bridger, Fort Bridger Airport (FBR)','1','0'),(1381,'CA','YPY',34681,39,'Fort Chipewyan, CA - Fort Chipewyan Airport (YPY)','1','0'),(1382,'US','FOD',30987,231,'Fort Dodge, US - Fort Dodge Regional Airport (FOD)','1','0'),(1383,'CA','YAG',34683,39,'Fort Frances, CA - Fort Frances Municipal Airport (YAG)','1','0'),(1384,'CA','YGH',34684,39,'Fort Good Hope, CA - Fort Good Hope Airport (YGH)','1','0'),(1385,'CA','YFH',34685,39,'Fort Hope, CA - Fort Hope Airport (YFH)','1','0'),(1386,'US','FHU',30991,231,'Fort Huachuca, US - Sierra Vista Municipal Airport (FHU)','1','0'),(1387,'US','FLL',30993,231,'Fort Lauderdale, US - Hollywood Intl Airport (FLL)','1','0'),(1388,'','FMS',31001,231,'Fort Madison, Fort Madison Municipal Airport (FMS)','1','0'),(1389,'CA','YMM',34688,39,'Fort Mcmurray, CA - Fort McMurray Airport (YMM)','1','0'),(1390,'US','FMY',31009,231,'Fort Myers, US - Page Field (FMY)','1','0'),(1391,'US','RSW',31009,231,'Fort Myers, US - Southwest Florida Intl Airport (RSW)','1','0'),(1392,'CA','ZFN',34690,39,'Fort Norman, CA - Tulita Airport (ZFN)','1','0'),(1393,'US','FPR',31015,231,'Fort Pierce, US - St Lucie County Intl Airport (FPR)','1','0'),(1394,'CA','YFR',34692,39,'Fort Resolution, CA - Fort Resolution Airport (YFR)','1','0'),(1395,'US','FSM',31021,231,'Fort Smith, US - Ft. Smith Regional Airport (FSM)','1','0'),(1396,'CA','YSM',34695,39,'Fort Smith, CA - Fort Smith (YSM)','1','0'),(1397,'','FSU',31024,231,'Fort Sumner, Fort Sumner Municipal Airport (FSU)','1','0'),(1398,'US','FWA',31029,231,'Fort Wayne, US - Fort Wayne Intl Airport (FWA)','1','0'),(1399,'','FWH',31031,231,'Fort Worth, NAS Fort Worth JRB (FWH)','1','0'),(1400,'BR','FOR',9694,30,'Fortaleza, BR - Pinto Martins Airport (FOR)','1','0'),(1401,'','FOU',9718,80,'Fougamou, Fougamou Airport (FOU)','1','0'),(1402,'BR','FRC',9750,30,'Franca, BR - Franca (FRC)','1','0'),(1403,'','MVB',9753,80,'Franceville, M\'Vengue El Hadj Omar Bongo Ondimba International Airport (MVB)','1','0'),(1404,'BW','FRW',9754,28,'Francistown, BW - Francistown Airport (FRW)','1','0'),(1405,'DE','FRA',9764,83,'Frankfurt, DE - Frankfurt am Main Airport (FRA)','1','0'),(1406,'DE','HHN',9764,83,'Frankfurt, DE - Frankfurt-Hahn Airport (HHN)','1','0'),(1407,'US','FKL',9765,231,'Franklin, US - Venango Regional Airport (FKL)','1','0'),(1408,'CA','YFC',9796,39,'Fredericton, CA - Fredericton Intl Airport (YFC)','1','0'),(1409,'GL','JFR',9799,87,'Frederikshaab, GL - Paamiut Airport (JFR)','1','0'),(1410,'US','FEP',9813,231,'Freeport, US - Albertus (FEP)','1','0'),(1411,'BS','FPO',9814,16,'Freeport, BS - Freeport Intl Airport (FPO)','1','0'),(1412,'SL','FNA',9816,189,'Freetown, SL - Lungi Intl Airport (FNA)','1','0'),(1413,'SL','HGS',9816,189,'Freetown, SL - Hastings Airport (HGS)','1','0'),(1414,'US','FAT',9848,231,'Fresno, US - Fresno Yosemite Intl Airport (FAT)','1','0'),(1415,'US','FRD',9855,231,'Friday Harbor, US - Friday Harbor Airport (FRD)','1','0'),(1416,'DE','FDH',9865,83,'Friedrichshafen, DE - Bodensee Airport (FDH)','1','0'),(1417,'','HNC',9878,231,'Frisco, Billy Mitchell Airport (HNC)','1','0'),(1418,'','FRT',9898,45,'Frutillar, Frutillar Airport (FRT)','1','0'),(1419,'','FRY',9901,231,'Fryeburg, Eastern Slopes Regional Airport (FRY)','1','0'),(1420,'ES','FUE',9929,199,'Fuerteventura, ES - Fuerteventura Airport (FUE)','1','0'),(1421,'JP','FUJ',9944,110,'Fukue, JP - Goto-Fukue Airport (FUJ)','1','0'),(1422,'JP','FUK',9946,110,'Fukuoka, JP - Fukuoka Airport (FUK)','1','0'),(1423,'US','FUL',9953,231,'Fullerton, US - Fullerton Municipal (FUL)','1','0'),(1424,'PT','FNC',9963,175,'Funchal, PT - Madeira Funchal Airport (FNC)','1','0'),(1425,'VU','FTA',9988,233,'Futuna Island, VU - Futuna Airport (FTA)','1','0'),(1426,'','FYN',9992,46,'Fuyun, Fuyun Koktokay Airport (FYN)','1','0'),(1427,'CN','FOC',9994,46,'Fuzhou, CN - Fuzhou Changle Intl Airport (FOC)','1','0'),(1428,'BW','GBE',10001,28,'Gaborone, BW - Sir Seretse Khama Intl Airport (GBE)','1','0'),(1429,'','SYF',10002,39,'Gabriola Island, Silva Bay Seaplane Base (SYF)','1','0'),(1430,'US','GAD',10006,231,'Gadsden, US - Northeast Alabama Regional (GAD)','1','0'),(1431,'','GAG',10010,231,'Gage, Gage Airport (GAG)','1','0'),(1432,'US','GNV',10020,231,'Gainesville, US - Gainesville Regional Airport (GNV)','1','0'),(1433,'US','GAL',10046,231,'Galena, US - Edward G Pitka Sr Airport (GAL)','1','0'),(1434,'','YMF',10052,39,'Galiano Island, Montague Harbour Water Aerodrome (YMF)','1','0'),(1435,'SE','GEV',10066,209,'Gallivare, SE - Gallivare Airport (GEV)','1','0'),(1436,'US','GUP',10069,231,'Gallup, US - Gallup Municipal (GUP)','1','0'),(1437,'US','GLS',10074,231,'Galveston, US - Scholes International at Galveston (GLS)','1','0'),(1438,'','GAX',10079,80,'Gamba, Gamba Airport (GAX)','1','0'),(1439,'ET','GMB',10084,70,'Gambela, ET - Gambela Airport (GMB)','1','0'),(1440,'US','GAM',10085,231,'Gambell, US - Gambell Airport (GAM)','1','0'),(1441,'CA','YQX',10097,39,'Gander, CA - Gander Intl Airport (YQX)','1','0'),(1442,'CN','KOW',10111,46,'Ganzhou, CN - Ganzhou Huangjin Airport (KOW)','1','0'),(1443,'','XGA',10114,35,'Gaoua, Gaoua Airport (XGA)','1','0'),(1444,'US','GCK',31039,231,'Garden City, US - Garden City Regional Airport (GCK)','1','0'),(1445,'CM','GOU',10165,38,'Garoua, CM - Garoua Intl Airport (GOU)','1','0'),(1446,'CA','YGP',10185,39,'Gaspe, CA - Michel Pouliot Gaspe Airport (YGP)','1','0'),(1447,'SA','ELQ',10188,186,'Gassim, SA - Gassim Airport (ELQ)','1','0'),(1448,'CA','YND',10198,39,'Gatineau, CA - Gatineau Ottawa Executive Airport (YND)','1','0'),(1449,'','GAH',10227,13,'Gayndah, Gayndah Airport (GAH)','1','0'),(1450,'TR','GZT',10229,222,'Gaziantep, TR - Sazgin Airport (GZT)','1','0'),(1451,'','BDT',10232,74,'Gbadolite, Gbadolite Airport (BDT)','1','0'),(1452,'PL','GDN',10233,174,'Gdansk, PL - Rebiechowo Airport (GDN)','1','0'),(1453,'','GEB',10236,102,'Gebe, Gebe Airport (GEB)','1','0'),(1454,'','GLC',10253,70,'Geladi, Geladi Airport (GLC)','1','0'),(1455,'ET','ETE',10269,70,'Genda Wuha, ET - Genda Wuha Airport (ETE)','1','0'),(1456,'AR','GNR',10271,10,'General Roca, AR - Dr. Arturo Umberto Illia (GNR)','1','0'),(1457,'CH','GVA',10276,210,'Geneva, CH - Geneva (Cointrin) Intl Airport (GVA)','1','0'),(1458,'IT','GOA',10282,107,'Genoa, IT - Cristoforo Colombo Airport (GOA)','1','0'),(1459,'ZA','GRJ',10294,195,'George, ZA - George Airport (GRJ)','1','0'),(1460,'','GEE',10295,132,'George Town, George Town Aerodrome (GEE)','1','0'),(1461,'BS','GGT',10297,16,'George Town, BS - George Town - Exuma Island Airport (GGT)','1','0'),(1462,'','GTT',10300,39,'Georgetown, Georgetown Airport (GTT)','1','0'),(1463,'GY','GEO',10304,94,'Georgetown, GY - Timehri Airport (GEO)','1','0'),(1464,'CA','YGQ',10313,39,'Geraldton, CA - Greenstone Regional Airport (YGQ)','1','0'),(1465,'AU','GET',10314,13,'Geraldton, AU - Geraldton Airport (GET)','1','0'),(1466,'AU','GEX',10314,13,'Geraldton, AU - Geelong Airport (closed) (GEX)','1','0'),(1467,'ES','GRO',10344,199,'Gerona, ES - Girona-Costa Brava Airport (GRO)','1','0'),(1468,'CA','ZGS',10357,39,'Gethsemani, CA - La Romaine Airport (ZGS)','1','0'),(1469,'','GTY',10358,231,'Gettysburg, Gettysburg Regional Airport (GTY)','1','0'),(1470,'LY','LTD',10365,123,'Ghadames, LY - Ghadames Airport (LTD)','1','0'),(1471,'','GNZ',10369,28,'Ghanzi, Ghanzi Airport (GNZ)','1','0'),(1472,'DZ','GHA',10370,3,'Ghardaia, DZ - Noumerat-Moufdi Zakaria Airport (GHA)','1','0'),(1473,'LY','GHT',10371,123,'Ghat, LY - Ghat Airport (GHT)','1','0'),(1474,'GI','GIB',10389,85,'Gibraltar, GI - North Front Airport (GIB)','1','0'),(1475,'CA','YGX',10419,39,'Gillam, CA - Gillam Airport (YGX)','1','0'),(1476,'US','GCC',10423,231,'Gillette, US - Campbell County Airport (GCC)','1','0'),(1477,'','AQY',10452,231,'Girdwood, Girdwood Airport (AQY)','1','0'),(1478,'NZ','GIS',10457,157,'Gisborne, NZ - Gisborne Airport (GIS)','1','0'),(1479,'','GYI',10459,508,'Gisenyi, Gisenyi Airport (GYI)','1','0'),(1480,'','GIY',10472,195,'Giyani, Giyani Airport (GIY)','1','0'),(1481,'SA','GIZ',10474,186,'Gizan, SA - Gizan Airport (GIZ)','1','0'),(1482,'SB','GZO',10475,193,'Gizo, SB - Nusatupe Airport (GZO)','1','0'),(1483,'CA','YHK',10480,39,'Gjoa Haven, CA - Gjoa Haven Airport (YHK)','1','0'),(1484,'AU','GLT',10488,13,'Gladstone, AU - Gladstone Airport (GLT)','1','0'),(1485,'US','GDV',10515,231,'Glendive, US - Dawson Community Airport (GDV)','1','0'),(1486,'','GLG',10525,13,'Glengyle, Glengyle Airport (GLG)','1','0'),(1487,'','GLB',10551,231,'Globe, San Carlos Apache Airport (GLB)','1','0'),(1488,'GB','GLO',10561,482,'Gloucester, GB - Gloucestershire Airport (GLO)','1','0'),(1489,'IN','GOI',10576,101,'Goa, IN - Dabolim Airport (GOI)','1','0'),(1490,'ET','GOB',10578,70,'Goba, ET - Goba Airport (GOB)','1','0'),(1491,'','GGS',10579,10,'Gobernador Gregores, Gobernador Gregores Airport (GGS)','1','0'),(1492,'GL','JGO',10592,87,'Godhavn, GL - Qeqertarsuaq Heliport (JGO)','1','0'),(1493,'CA','YGO',10594,39,'Gods Narrows, CA - Gods Lake Narrows Airport (YGO)','1','0'),(1494,'CA','ZGI',34706,39,'Gods River, CA - Gods River Airport (ZGI)','1','0'),(1495,'BR','GYN',10607,30,'Goiania, BR - Santa Genoveva Airport (GYN)','1','0'),(1496,'','GLL',10610,164,'Gol, Gol Airport, Klanten (GLL)','1','0'),(1497,'CR','GLF',10635,54,'Golfito, CR - Golfito Airport (GLF)','1','0'),(1498,'US','GLV',10640,231,'Golovin, US - Golovin Airport (GLV)','1','0'),(1499,'BY','GME',10645,20,'Gomel, BY - Gomel Airport (GME)','1','0'),(1500,'ET','GDQ',10650,70,'Gondar, ET - Gondar Airport (GDQ)','1','0'),(1501,'','GNG',10666,231,'Gooding, Gooding Municipal Airport (GNG)','1','0'),(1502,'US','GLD',10667,231,'Goodland, US - Goodland Municipal (Renner Field) (GLD)','1','0'),(1503,'US','GYR',10673,231,'Goodyear, US - Phoenix Goodyear (GYR)','1','0'),(1504,'','GOO',10677,13,'Goondiwindi, Goondiwindi Airport (GOO)','1','0'),(1505,'','GOC',10684,110,'Gora, Gora Airport (GOC)','1','0'),(1506,'IN','GOP',10685,101,'Gorakhpur, IN - Gorakhpur Airport (GOP)','1','0'),(1507,'','GRN',10688,231,'Gordon, Gordon Municipal Airport (GRN)','1','0'),(1508,'ET','GOR',10693,70,'Gore, ET - Gore Airport (GOR)','1','0'),(1509,'','YZE',10694,39,'Gore Bay, Gore Bay-Manitoulin Airport (YZE)','1','0'),(1510,'BG','GOZ',10711,34,'Gorna Orechovitsa, BG - Gorna Oryahovitsa Airport (GOZ)','1','0'),(1511,'PG','GKA',10713,170,'Goroka, PG - Goroka Airport (GKA)','1','0'),(1512,'','XGG',10715,35,'Gorom-gorom, Gorom Gorom Airport (XGG)','1','0'),(1513,'ID','GTO',10716,102,'Gorontalo, ID - Jalaluddin Airport (GTO)','1','0'),(1514,'','GOS',10721,13,'Gosford, Gosford Airport (GOS)','1','0'),(1515,'SE','GOT',10734,209,'Gothenburg, SE - Landvetter Airport (GOT)','1','0'),(1516,'SE','GSE',10734,209,'Gothenburg, SE - Gothenburg City Airport (GSE)','1','0'),(1517,'AU','GUL',10744,13,'Goulburn, AU - Goulburn (GUL)','1','0'),(1518,'BS','GHB',10763,16,'Governors Harbour, BS - Governors Harbour - Eleuthera Airport (GHB)','1','0'),(1519,'','OYA',10764,10,'Goya, Goya Airport (OYA)','1','0'),(1520,'','AHS',10780,97,'Gracias, Ahuas Airport (AHS)','1','0'),(1521,'','GAC',10780,97,'Gracias, Gracias Airport (GAC)','1','0'),(1522,'PT','GRW',10781,175,'Graciosa Island, PT - Graciosa Airport (GRW)','1','0'),(1523,'AU','GFN',10794,13,'Grafton, AU - Grafton Airport (GFN)','1','0'),(1524,'ES','GRX',10810,199,'Granada, ES - Federico Garcia Lorca Granada-Jaen Airport (GRX)','1','0'),(1525,'US','GCN',31054,231,'Grand Canyon, US - Grand Canyon National Park Airport (GCN)','1','0'),(1526,'','VLE',31054,231,'Grand Canyon, Valle Airport (VLE)','1','0'),(1527,'US','GFK',31060,231,'Grand Forks, US - Grand Forks Intl Airport (GFK)','1','0'),(1528,'US','GRI',31062,231,'Grand Island, US - Central Nebraska Regional Airport (GRI)','1','0'),(1529,'US','GJT',31064,231,'Grand Junction, US - Grand Junction Regional Airport (GJT)','1','0'),(1530,'','GRM',31067,231,'Grand Marais, Grand Marais/Cook County Airport (GRM)','1','0'),(1531,'US','GPZ',31072,231,'Grand Rapids, US - Grand Rapids-Itasca County Airport (GPZ)','1','0'),(1532,'US','GRR',31072,231,'Grand Rapids, US - Gerald R. Ford Intl Airport (GRR)','1','0'),(1533,'','GBJ',10828,89,'Grand-bourg, Marie-Galante Airport (GBJ)','1','0'),(1534,'','YGC',10832,39,'Grande Cache, Grande Cache Airport (YGC)','1','0'),(1535,'CA','YQU',34714,39,'Grande Prairie, CA - Grande Prairie Airport (YQU)','1','0'),(1536,'','IDH',10849,231,'Grangeville, Idaho County Airport (IDH)','1','0'),(1537,'US','KGX',10891,231,'Grayling, US - Grayling Airport (KGX)','1','0'),(1538,'US','GRB',31077,231,'Green Bay, US - Austin Straubel Intl Airport (GRB)','1','0'),(1539,'TW','GNI',10916,212,'Green Island, TW - Lyudao (Green Island) Airport (GNI)','1','0'),(1540,'','GVI',31082,231,'Green River, Green River Airport (GVI)','1','0'),(1541,'','RVR',31082,231,'Green River, Green River Municipal Airport (RVR)','1','0'),(1542,'US','GSO',10935,231,'Greensboro, US - Piedmont Triad Intl Airport (GSO)','1','0'),(1543,'US','INT',10935,231,'Greensboro, US - Smith Reynolds Airport (INT)','1','0'),(1544,'','GDC',10941,231,'Greenville, Donaldson Center Airport (GDC)','1','0'),(1545,'US','GLH',10941,231,'Greenville, US - Mid Delta Regional Airport (GLH)','1','0'),(1546,'US','GSP',10941,231,'Greenville, US - Greenville Spartanburg Intl Airport (GSP)','1','0'),(1547,'US','PGV',10941,231,'Greenville, US - Pitt Greenville Airport (PGV)','1','0'),(1548,'','SNI',10941,231,'Greenville, Greenville/Sinoe Airport (SNI)','1','0'),(1549,'GD','GND',10957,88,'Grenada, GD - Point Saline Intl Airport (GND)','1','0'),(1550,'FR','GNB',10960,76,'Grenoble, FR - St Geoirs Airport (GNB)','1','0'),(1551,'US','GEY',10979,231,'Greybull, US - South Big Horn County (GEY)','1','0'),(1552,'','GMN',10981,157,'Greymouth, Greymouth Airport (GMN)','1','0'),(1553,'AU','GFF',10989,13,'Griffith, AU - Griffith Airport (GFF)','1','0'),(1554,'IS','GRY',10999,100,'Grimsey, IS - Grimsey Airport (GRY)','1','0'),(1555,'CA','YGZ',11009,39,'Grise Fiord, CA - Grise Fiord Airport (YGZ)','1','0'),(1556,'NL','GRQ',11025,154,'Groningen, NL - Groningen Airport Eelde (GRQ)','1','0'),(1557,'AU','GTE',11030,13,'Groote Eylandt, AU - Groote Eylandt Airport (GTE)','1','0'),(1558,'US','GON',11052,231,'Groton, US - Groton - New London Airport (GON)','1','0'),(1559,'RU','GRV',11062,181,'Groznyj, RU - Grozny Airport (GRV)','1','0'),(1560,'','GDP',11083,141,'Guadalupe, Guadalupe Airport (GDP)','1','0'),(1561,'HN','GJA',11103,97,'Guanaja, HN - Guanaja Airport (GJA)','1','0'),(1562,'CN','ZUI',11106,46,'Guangdong, CN - GUANGDONG Airport (ZUI)','1','0'),(1563,'','GHN',11107,46,'Guanghan, Guanghan Airport (GHN)','1','0'),(1564,'CN','CAN',11108,46,'Guangzhou, CN - Guangzhou Baiyun Intl Airport (CAN)','1','0'),(1565,'CO','GPI',11114,49,'Guapi, CO - Juan Casiano Solis Airport (GPI)','1','0'),(1566,'','GUZ',11117,30,'Guarapari, Guarapari Airport (GUZ)','1','0'),(1567,'EC','GYE',11135,64,'Guayaquil, EC - Jose Joaquin de Olmedo Intl Airport (GYE)','1','0'),(1568,'BO','GYA',11136,26,'Guayaramerin, BO - Guayaramerin Airport (GYA)','1','0'),(1569,'MX','GYM',11138,141,'Guaymas, MX - Gen Jose Maria Yanez Intl Airport (GYM)','1','0'),(1570,'GB','GCI',11156,482,'Guernsey, GB - Guernsey Airport (GCI)','1','0'),(1571,'CN','KWL',11177,46,'Guilin, CN - Guilin Liangjiang Intl Airport (KWL)','1','0'),(1572,'CN','KWE',11190,46,'Guiyang, CN - Guiyang Longdongbao Intl Airport (KWE)','1','0'),(1573,'','BFJ',11191,46,'Guizhou, Bijie Feixiong Airport (BFJ)','1','0'),(1574,'','ULU',11200,226,'Gulu, Gulu Airport (ULU)','1','0'),(1575,'','GUX',11209,101,'Guna, Guna Airport (GUX)','1','0'),(1576,'','GUH',11215,13,'Gunnedah, Gunnedah Airport (GUH)','1','0'),(1577,'US','GUC',11216,231,'Gunnison, US - Crested Butte Regional Airport (GUC)','1','0'),(1578,'MY','MZV',11219,132,'Gunung Mulu National Park, MY - Mulu Airport (MZV)','1','0'),(1579,'SA','URY',11223,186,'Gurayat, SA - Gurayat Airport (URY)','1','0'),(1580,'','GRP',11228,30,'Gurupi, Gurupi Airport (GRP)','1','0'),(1581,'','BQV',11233,231,'Gustavus, Bartlett Cove Seaplane Base (BQV)','1','0'),(1582,'IN','GAU',11240,101,'Guwahati, IN - Borjhar Airport (GAU)','1','0'),(1583,'IN','GWL',11248,101,'Gwalior, IN - Gwalior Airport (GWL)','1','0'),(1584,'','GWE',11251,243,'Gweru, Thornhill Air Base (GWE)','1','0'),(1585,'AU','GYP',11259,13,'Gympie, AU - Gympie (GYP)','1','0'),(1586,'US','HGR',11310,231,'Hagerstown, US - Hagerstown Airport (HGR)','1','0'),(1587,'IL','HFA',11328,106,'Haifa, IL - Haifa Airport (HFA)','1','0'),(1588,'CN','HAK',11332,46,'Haikou, CN - Haikou Meilan Intl Airport (HAK)','1','0'),(1589,'SA','HAS',11334,186,'Hail, SA - Hail Airport (HAS)','1','0'),(1590,'CN','HLD',11335,46,'Hailar, CN - Hailar Dongshan Airport (HLD)','1','0'),(1591,'US','SUN',11336,231,'Hailey, US - Friedman Memorial Airport (SUN)','1','0'),(1592,'US','HNS',11346,231,'Haines, US - Haines Airport (HNS)','1','0'),(1593,'','YHT',11347,39,'Haines Junction, Haines Junction Airport (YHT)','1','0'),(1594,'JP','HKD',11357,110,'Hakodate, JP - Hakodate Airport (HKD)','1','0'),(1595,'CA','YAW',11381,39,'Halifax, CA - Halifax/Shearwater (YAW)','1','0'),(1596,'CA','YHZ',11381,39,'Halifax, CA - Robert Stanfield Intl Airport (YHZ)','1','0'),(1597,'CA','YUX',11384,39,'Hall Beach, CA - Hall Beach Airport (YUX)','1','0'),(1598,'AU','HCQ',11398,13,'Halls Creek, AU - Halls Creek (HCQ)','1','0'),(1599,'SE','HAD',11404,209,'Halmstad, SE - Halmstad Airport (HAD)','1','0'),(1600,'DE','HAM',11426,83,'Hamburg, DE - Hamburg-Fuhlsbuttel Airport (HAM)','1','0'),(1601,'DE','LBC',11426,83,'Hamburg, DE - Lubeck Blankensee Airport (LBC)','1','0'),(1602,'NZ','HLZ',11437,157,'Hamilton, NZ - Hamilton (New Zealand) Airport (HLZ)','1','0'),(1603,'US','HAO',11434,231,'Hamilton, US - Butler County Regional (HAO)','1','0'),(1604,'CA','YHM',11435,39,'Hamilton, CA - John Munro Hamilton Intl Airport (YHM)','1','0'),(1605,'NO','HFT',11445,164,'Hammerfest, NO - Hammerfest Airport (HFT)','1','0'),(1606,'','HPT',11454,13,'Hampton, Hampton Municipal Airport (HPT)','1','0'),(1607,'US','CMX',11469,231,'Hancock, US - Hancock County Memorial Airport (CMX)','1','0'),(1608,'VN','HAN',11487,236,'Hanoi, VN - Noi-Bai Airport (HAN)','1','0'),(1609,'ZW','HRE',11507,243,'Harare, ZW - Harare Intl Airport (HRE)','1','0'),(1610,'CN','HRB',11510,46,'Harbin, CN - Harbin Taiping Intl Airport (HRB)','1','0'),(1611,'US','HRL',11543,231,'Harlingen, US - Valley Intl Airport (HRL)','1','0'),(1612,'','CPA',11551,231,'Harper, Cape Palmas Airport (CPA)','1','0'),(1613,'','HAR',11558,231,'Harrisburg, Capital City Airport (HAR)','1','0'),(1614,'','HSB',11558,231,'Harrisburg, Harrisburg-Raleigh Airport (HSB)','1','0'),(1615,'US','MDT',11558,231,'Harrisburg, US - Harrisburg Intl Airport (MDT)','1','0'),(1616,'US','GPT',11561,231,'Harrison, US - Biloxi Intl Airport (GPT)','1','0'),(1617,'US','HRO',11561,231,'Harrison, US - Boone County Airport (HRO)','1','0'),(1618,'US','BDL',11574,231,'Hartford, US - Bradley Intl Airport (BDL)','1','0'),(1619,'US','HFD',11574,231,'Hartford, US - Brainard - Hartford (HFD)','1','0'),(1620,'','YTB',11581,39,'Hartley Bay, Hartley Bay Water Aerodrome (YTB)','1','0'),(1621,'','HKV',11598,34,'Haskovo, Haskovo Malevo Airport (HKV)','1','0'),(1622,'DZ','HME',11605,3,'Hassi Messaoud, DZ - Oued Irara-Krim Belkacem Airport (HME)','1','0'),(1623,'US','HSI',11610,231,'Hastings, US - Hastings Municipal (HSI)','1','0'),(1624,'NO','HAA',11615,164,'Hasvik, NO - Hasvik Airport (HAA)','1','0'),(1625,'TH','HDY',11617,215,'Hat Yai, TH - Hat Yai Airport (HDY)','1','0'),(1626,'JP','HTR',11622,110,'Hateruma, JP - Hateruma (HTR)','1','0'),(1627,'US','HBG',11632,231,'Hattiesburg, US - Bobby L. Chain Municipal (HBG)','1','0'),(1628,'NO','HAU',11637,164,'Haugesund, NO - Haugesund Airport Karmoy (HAU)','1','0'),(1629,'','UPB',11654,231,'Havana, Playa Baracoa Airport (UPB)','1','0'),(1630,'CU','HAV',11655,56,'Havana, CU - Jose Marti Intl Airport (HAV)','1','0'),(1631,'US','HVR',11669,231,'Havre, US - Havre City-County Airport (HVR)','1','0'),(1632,'','HWK',11689,13,'Hawker, Wilpena Pound Airport (HWK)','1','0'),(1633,'US','HHR',11703,231,'Hawthorne, US - Hawthorne Municipal (Jack Northrop Field) (HHR)','1','0'),(1634,'','HTH',11703,231,'Hawthorne, Hawthorne Industrial Airport (HTH)','1','0'),(1635,'AU','HXX',11704,13,'Hay, AU - Hay (HXX)','1','0'),(1636,'US','HDN',11706,231,'Hayden, US - Yampa Valley Regional Airport (HDN)','1','0'),(1637,'US','SBS',11706,231,'Hayden, US - Steamboat Springs (Bob Adams Field) (SBS)','1','0'),(1638,'AU','HIS',11713,13,'Hayman, AU - Hayman Island Airport (HIS)','1','0'),(1639,'US','HYS',11715,231,'Hays, US - Hays Regional Airport (HYS)','1','0'),(1640,'','HZV',11735,195,'Hazyview, Hazyview Airport (HZV)','1','0'),(1641,'','YHF',11745,39,'Hearst, Hearst (René Fontaine) Municipal Airport (YHF)','1','0'),(1642,'CN','HFE',11771,46,'Hefei, CN - Hefei Luogang Intl Airport (HFE)','1','0'),(1643,'','HEI',31109,83,'Heide, Heide–Büsum Airport (HEI)','1','0'),(1644,'US','HLN',11808,231,'Helena, US - Helena Regional Airport (HLN)','1','0'),(1645,'DE','HGL',11812,83,'Helgoland, DE - Heligoland Airport (HGL)','1','0'),(1646,'SE','AGH',11831,209,'Helsingborg, SE - Helsingborg Airport (AGH)','1','0'),(1647,'FI','HEL',11834,75,'Helsinki, FI - Vantaa Airport (HEL)','1','0'),(1648,'US','HMT',11841,231,'Hemet, US - Hemet Ryan (HMT)','1','0'),(1649,'','HNY',11854,46,'Hengyang, Hengyang Nanyue Airport (HNY)','1','0'),(1650,'','HMG',11905,83,'Hermannsburg, Hermannsburg Airport (HMG)','1','0'),(1651,'','HES',11915,482,'Hermiston, Hermiston Municipal Airport (HES)','1','0'),(1652,'MX','HMO',11920,141,'Hermosillo, MX - Gen Ignacio Pesqueira Intl Airport (HMO)','1','0'),(1653,'AU','HVB',11946,13,'Hervey Bay, AU - Hervey Bay Airport (HVB)','1','0'),(1654,'US','HIB',11984,231,'Hibbing, US - Range Regional Airport (HIB)','1','0'),(1655,'US','HKY',11985,231,'Hickory, US - Hickory Regional Airport (HKY)','1','0'),(1656,'CA','YOJ',12005,39,'High Level, CA - High Level (YOJ)','1','0'),(1657,'','HGE',12018,235,'Higuerote, Higuerote Airport (HGE)','1','0'),(1658,'','HLC',31112,231,'Hill City, Hill City Municipal Airport (HLC)','1','0'),(1659,'','HLL',12040,231,'Hillside, Hillside Airport (HLL)','1','0'),(1660,'US','ITO',31113,231,'Hilo, US - Hilo Intl Airport (ITO)','1','0'),(1661,'','YJP',12070,231,'Hinton, Hinton/Jasper-Hinton Airport (YJP)','1','0'),(1662,'','HSS',12082,34,'Hisar, Hisar Airport (HSS)','1','0'),(1663,'VN','SGN',31115,236,'Ho Chi Minh City, VN - Tan Son Nhut Airport (SGN)','1','0'),(1664,'','HBR',12102,231,'Hobart, Hobart Regional Airport (HBR)','1','0'),(1665,'AU','HBA',12103,13,'Hobart, AU - Hobart Intl Airport (HBA)','1','0'),(1666,'','HBB',12104,231,'Hobbs, Hobbs Industrial Airpark (HBB)','1','0'),(1667,'US','HOB',12104,231,'Hobbs, US - Lea County Regional Airport (HOB)','1','0'),(1668,'YE','HOD',12119,240,'Hodeidah, YE - Hodeidah Intl Airport (HOD)','1','0'),(1669,'DE','HOQ',31119,83,'Hof, DE - Plauen Airport (HOQ)','1','0'),(1670,'CN','HET',12147,46,'Hohhot, CN - Hohhot Baita Intl Airport (HET)','1','0'),(1671,'NZ','HKK',12155,157,'Hokitika, NZ - Hokitika Airport (HKK)','1','0'),(1672,'JP','AKJ',12156,110,'Hokkaido, JP - Asahikawa Airport (AKJ)','1','0'),(1673,'','HBK',12163,13,'Holbrook, Holbrook Municipal Airport (HBK)','1','0'),(1674,'','HDE',12168,231,'Holdrege, Brewster Field (HDE)','1','0'),(1675,'CU','HOG',12171,56,'Holguin, CU - Frank Pais Airport (HOG)','1','0'),(1676,'US','HYL',12180,231,'Hollis, US - Hollis Seaplane Base (HYL)','1','0'),(1677,'','HLI',12181,231,'Hollister, Hollister Municipal Airport (HLI)','1','0'),(1678,'US','HCR',12206,231,'Holy Cross, US - Holy Cross Airport (HCR)','1','0'),(1679,'GB','HLY',12207,482,'Holyhead, GB - Holyhead Railway Station (HLY)','1','0'),(1680,'US','HOM',12216,231,'Homer, US - Homer Airport (HOM)','1','0'),(1681,'US','HST',12217,231,'Homestead, US - Homestead Air Reserve Base (HST)','1','0'),(1682,'HK','HKG',12232,98,'Hong Kong, HK - Hong Kong Intl Airport (HKG)','1','0'),(1683,'SB','HIR',12236,193,'Honiara, SB - Henderson Airport (HIR)','1','0'),(1684,'NO','HVG',12239,164,'Honningsvag, NO - Honningsvag Airport Valan (HVG)','1','0'),(1685,'US','HNL',12245,231,'Honolulu, US - Honolulu Intl Airport (HNL)','1','0'),(1686,'US','MKK',12256,231,'Hoolehua, US - Molokai Airport (MKK)','1','0'),(1687,'US','HNH',12257,231,'Hoonah, US - Hoonah Airport (HNH)','1','0'),(1688,'US','HPB',12259,231,'Hooper Bay, US - Hooper Bay Airport (HPB)','1','0'),(1689,'CA','YHO',12266,39,'Hopedale, CA - Hopedale Airport (YHO)','1','0'),(1690,'','HTU',12267,13,'Hopetoun, Hopetoun Airport (HTU)','1','0'),(1691,'US','HOP',12273,231,'Hopkinsville, US - Campbell Army Airfield (HOP)','1','0'),(1692,'US','HQM',12275,231,'Hoquiam, US - Bowerman (HQM)','1','0'),(1693,'IS','HFN',12283,100,'Hornafjordur, IS - Hornafjordur (HFN)','1','0'),(1694,'','YHN',12291,39,'Hornepayne, Hornepayne Municipal Airport (YHN)','1','0'),(1695,'AU','HSM',12308,13,'Horsham, AU - Horsham (HSM)','1','0'),(1696,'US','HOT',31127,231,'Hot Springs, US - Memorial Field Airport (HOT)','1','0'),(1697,'LY','HUQ',12350,123,'Houn, LY - Hun Airport (HUQ)','1','0'),(1698,'US','AAP',12354,231,'Houston, US - ANDRAU AIRPARK Airport (AAP)','1','0'),(1699,'US','EFD',12354,231,'Houston, US - Ellington Airport (EFD)','1','0'),(1700,'US','HOU',12354,231,'Houston, US - William P. Hobby Airport (HOU)','1','0'),(1701,'US','IAH',12354,231,'Houston, US - George Bush Intercontinental Airport (IAH)','1','0'),(1702,'','HSZ',12382,212,'Hsinchu, Hsinchu Air Base (HSZ)','1','0'),(1703,'TH','HHQ',34236,215,'Hua Hin, TH - Hua Hin Airport (HHQ)','1','0'),(1704,'TW','HUN',12392,212,'Hualien, TW - Hualien Airport (HUN)','1','0'),(1705,'AO','NOV',12394,6,'Huambo, AO - Albano Machado Airport (NOV)','1','0'),(1706,'CN','HYN',12400,46,'Huangyan, CN - Taizhou (Huangyan) Luqiao Airport (HYN)','1','0'),(1707,'MX','HUX',12405,141,'Huatulco, MX - Bahias de Huatulco Intl Airport (HUX)','1','0'),(1708,'IN','HBX',12411,101,'Hubli, IN - Hubli Airport (HBX)','1','0'),(1709,'SE','HUV',12416,209,'Hudiksvall, SE - Hudiksvall Airport (HUV)','1','0'),(1710,'','HCC',12417,39,'Hudson, Columbia County Airport (HCC)','1','0'),(1711,'','YNH',12419,39,'Hudson\'s Hope, Hudson\'s Hope Airport (YNH)','1','0'),(1712,'','HUG',12423,91,'Huehuetenango, Huehuetenango Airport (HUG)','1','0'),(1713,'AU','HGD',12433,13,'Hughenden, AU - Hughenden Airport (HGD)','1','0'),(1714,'US','HUS',12434,231,'Hughes, US - Hughes Airport (HUS)','1','0'),(1715,'','HUJ',12435,231,'Hugo, Stan Stamper Municipal Airport (HUJ)','1','0'),(1716,'SE','HLF',12451,209,'Hultsfred, SE - Hultsfred - Vimmerby (HLF)','1','0'),(1717,'','HUC',12452,176,'Humacao, Humacao Airport (HUC)','1','0'),(1718,'GB','HUY',12454,482,'Humberside, GB - Humberside Airport (HUY)','1','0'),(1719,'','HUD',12457,39,'Humboldt, Humboldt Municipal Airport (HUD)','1','0'),(1720,'ET','HUE',12461,70,'Humera, ET - Humera Airport (HUE)','1','0'),(1721,'US','HSV',12494,231,'Huntsville, US - Huntsville Intl Airport / Carl T Jones Field (HSV)','1','0'),(1722,'','HTV',12494,231,'Huntsville, Huntsville Municipal Airport (HTV)','1','0'),(1723,'EG','HRG',12496,65,'Hurghada, EG - Hurghada Airport (HRG)','1','0'),(1724,'US','HON',12500,231,'Huron, US - Huron Regional Airport (HON)','1','0'),(1725,'IS','HZK',12505,100,'Husavik, IS - Husavik Airport (HZK)','1','0'),(1726,'US','HSL',12509,231,'Huslia, US - Huslia Airport (HSL)','1','0'),(1727,'','QHU',12511,59,'Husum, Husum Schwesing Airport (QHU)','1','0'),(1728,'','WKI',12529,243,'Hwange, Hwange Town Airport (WKI)','1','0'),(1729,'US','HYA',12530,231,'Hyannis, US - Barnstable Municipal Apt/Boardman-Polanco Field (HYA)','1','0'),(1730,'US','HYG',12532,231,'Hydaburg, US - Hydaburg Seaplane Base (HYG)','1','0'),(1731,'','WHD',12537,231,'Hyder, Hyder Seaplane Base (WHD)','1','0'),(1732,'IN','BPM',12538,101,'Hyderabad, IN - Begumpet Airport (BPM)','1','0'),(1733,'','HDD',12538,101,'Hyderabad, Hyderabad Airport (HDD)','1','0'),(1734,'IN','HYD',12538,101,'Hyderabad, IN - Rajiv Gandhi Intl Airport (HYD)','1','0'),(1735,'FR','TLN',12541,76,'Hyeres, FR - Toulon Airport (TLN)','1','0'),(1736,'RO','IAS',12550,179,'Iasi, RO - Iasi Intl Airport (IAS)','1','0'),(1737,'CO','IBE',12552,49,'Ibague, CO - Perales Airport (IBE)','1','0'),(1738,'ES','IBZ',12557,199,'Ibiza, ES - Ibiza Airport (IBZ)','1','0'),(1739,'','IDG',31138,231,'Ida Grove, Ida Grove Municipal Airport (IDG)','1','0'),(1740,'RU','IAA',12593,181,'Igarka, RU - Igarka Airport (IAA)','1','0'),(1741,'US','IGG',12595,231,'Igiugig, US - Igiugig Airport (IGG)','1','0'),(1742,'CA','YGT',12597,39,'Igloolik, CA - Igloolik Airport (YGT)','1','0'),(1743,'','ZUC',12599,39,'Ignace, Ignace Municipal Airport (ZUC)','1','0'),(1744,'BR','IGU',12605,30,'Iguassu Falls, BR - Cataratas Airport (IGU)','1','0'),(1745,'AR','IGR',12606,10,'Iguazu, AR - Cataratas de Iguazu Intl Airport (IGR)','1','0'),(1746,'','IHO',12608,130,'Ihosy, Ihosy Airport (IHO)','1','0'),(1747,'NC','ILP',12624,156,'Ile Des Pins, NC - Iles des Pins Airport (ILP)','1','0'),(1748,'','ILF',12628,482,'Ilford, Ilford Airport (ILF)','1','0'),(1749,'BR','IOS',12634,30,'Ilheus, BR - Eduardo Gomes Airport (IOS)','1','0'),(1750,'US','ILI',12636,231,'Iliamna, US - Iliamna Airport (ILI)','1','0'),(1751,'','IGN',12638,173,'Iligan, Maria Cristina Airport (IGN)','1','0'),(1752,'','ILA',12643,102,'Illaga, Illaga Airport (ILA)','1','0'),(1753,'DZ','VVZ',12648,3,'Illizi, DZ - Takhamalt Airport (VVZ)','1','0'),(1754,'PH','ILO',12658,173,'Iloilo, PH - Mandurriao Airport (ILO)','1','0'),(1755,'','IUL',12661,102,'Ilu, Ilu Airport (IUL)','1','0'),(1756,'BR','IMP',12677,30,'Imperatriz, BR - Imperatriz Airport (IMP)','1','0'),(1757,'','IML',12679,231,'Imperial, Imperial Municipal Airport (IML)','1','0'),(1758,'','ION',12680,51,'Impfondo, Impfondo Airport (ION)','1','0'),(1759,'IN','IMF',12681,101,'Imphal, IN - Imphal Airport (IMF)','1','0'),(1760,'DZ','IAM',31144,3,'In Amenas, DZ - In Amenas Airport (IAM)','1','0'),(1761,'','INF',31145,3,'In Guezzam, In Guezzam Airport (INF)','1','0'),(1762,'DZ','INZ',31146,3,'In Salah, DZ - In Salah Airport (INZ)','1','0'),(1763,'','INX',12685,102,'Inanwatan, Inanwatan Airport (INX)','1','0'),(1764,'','INB',12699,231,'Independence, Independence Airport (INB)','1','0'),(1765,'US','IND',31156,231,'Indianapolis, US - Indianapolis Intl Airport (IND)','1','0'),(1766,'IN','IDR',12706,101,'Indore, IN - Indore Airport (IDR)','1','0'),(1767,'','IMI',12713,136,'Ine, Ine Airport (IMI)','1','0'),(1768,'','IGS',12725,83,'Ingolstadt, Ingolstadt Manching Airport (IGS)','1','0'),(1769,'MZ','INH',12729,149,'Inhambane, MZ - Inhambane Airport (INH)','1','0'),(1770,'IE','INQ',12731,105,'Inisheer, IE - Inisheer (INQ)','1','0'),(1771,'IE','IIA',12732,105,'Inishmaan, IE - Inishmaan (IIA)','1','0'),(1772,'IE','IOR',12733,105,'Inishmore, IE - Inishmore Aerodrome (IOR)','1','0'),(1773,'','INJ',12734,13,'Injune, Injune Airport (INJ)','1','0'),(1774,'','IKP',12735,13,'Inkerman, Inkerman Airport (IKP)','1','0'),(1775,'','INM',12738,13,'Innamincka, Innamincka Airport (INM)','1','0'),(1776,'AU','IFL',12744,13,'Innisfail, AU - Innisfail (IFL)','1','0'),(1777,'AT','INN',12747,14,'Innsbruck, AT - Innsbruck Kranebitten Airport (INN)','1','0'),(1778,'','INO',12750,74,'Inongo, Inongo Airport (INO)','1','0'),(1779,'CH','ZIN',12756,210,'Interlaken, CH - Interlaken Airport (ZIN)','1','0'),(1780,'CA','YPH',12760,39,'Inukjuak, CA - Inukjuak Airport (YPH)','1','0'),(1781,'CA','YEV',12761,39,'Inuvik, CA - Inuvik (Mike Zubko) Airport (YEV)','1','0'),(1782,'NZ','IVC',12765,157,'Invercargill, NZ - Invercargill Airport (IVC)','1','0'),(1783,'AU','IVR',12767,13,'Inverell, AU - Inverell (IVR)','1','0'),(1784,'US','IYK',12779,231,'Inyokern, US - Inyokern Airport (IYK)','1','0'),(1785,'GR','IOA',12783,86,'Ioannina, GR - Ioannina Airport (IOA)','1','0'),(1786,'BR','IPN',12792,30,'Ipatinga, BR - Usiminas Airport (IPN)','1','0'),(1787,'CO','IPI',12795,49,'Ipiales, CO - San Luis Airport (IPI)','1','0'),(1788,'MY','IPH',12796,132,'Ipoh, MY - Ipoh Airport (IPH)','1','0'),(1789,'VU','IPA',12798,233,'Ipota, VU - Ipota Airport (IPA)','1','0'),(1790,'CA','YFB',12803,39,'Iqaluit, CA - Frobisher Bay Airport (YFB)','1','0'),(1791,'CL','IQQ',12804,45,'Iquique, CL - Diego Aracena Intl Airport (IQQ)','1','0'),(1792,'PE','IQT',12805,172,'Iquitos, PE - C F Secada Airport (IQT)','1','0'),(1793,'TZ','IRI',12817,214,'Iringa, TZ - Nduli Airport (IRI)','1','0'),(1794,'RU','IKT',12818,181,'Irkutsk, RU - Southeast Airport (IKT)','1','0'),(1795,'US','IWD',12822,231,'Ironwood, US - Gogebic-Iron County Airport (IWD)','1','0'),(1796,'IS','IFJ',12836,100,'Isafjordur, IS - Isafjordur Airport (IFJ)','1','0'),(1797,'IR','IFN',12846,103,'Isfahan, IR - Isfahan Airport (IFN)','1','0'),(1798,'JP','ISG',12847,110,'Ishigaki, JP - New Ishigaki Airport (ISG)','1','0'),(1799,'','ISI',12855,13,'Isisford, Isisford Airport (ISI)','1','0'),(1800,'PK','ISB',12865,166,'Islamabad, PK - Islamabad Intl Airport (ISB)','1','0'),(1801,'GB','IOM',31187,482,'Isle Of Man, GB - Ronaldsway Airport (IOM)','1','0'),(1802,'','SKL',31190,482,'Isle Of Skye, Broadford Airfield (SKL)','1','0'),(1803,'GB','ISC',12880,482,'Isles Of Scilly, GB - St Mary`s Airport (ISC)','1','0'),(1804,'GB','TSO',12880,482,'Isles Of Scilly, GB - Tresco Airport (TSO)','1','0'),(1805,'TR','IST',12905,222,'Istanbul, TR - Ataturk Intl Airport (IST)','1','0'),(1806,'TR','SAW',12905,222,'Istanbul, TR - Sabiha Gokcen Airport (SAW)','1','0'),(1807,'US','ITH',12926,231,'Ithaca, US - Tompkins County Airport (ITH)','1','0'),(1808,'FI','IVL',12936,75,'Ivalo, FI - Ivalo Airport (IVL)','1','0'),(1809,'','KIB',12937,231,'Ivanof Bay, Ivanof Bay Seaplane Base (KIB)','1','0'),(1810,'CA','YIK',12943,39,'Ivujivik, CA - Ivujivik Airport (YIK)','1','0'),(1811,'','IWK',12945,110,'Iwakuni, Marine Corps Air Station Iwakuni (IWK)','1','0'),(1812,'MX','ZIH',12951,141,'Ixtapa, MX - Ixtapa-Zihuatanejo Intl Airport (ZIH)','1','0'),(1813,'TR','ADB',12958,222,'Izmir, TR - Adnan Menderes Airport (ADB)','1','0'),(1814,'JP','IZO',12968,110,'Izumo, JP - Izumo En-Musubi Airport (IZO)','1','0'),(1815,'IN','JLR',12971,101,'Jabalpur, IN - Dumna Airport (JLR)','1','0'),(1816,'AU','JAB',12973,13,'Jabiru, AU - Jabiru (JAB)','1','0'),(1817,'','KPT',12979,231,'Jackpot, Jackpot Airport (KPT)','1','0'),(1818,'US','JAX',12982,231,'Jacksonville, US - Jacksonville Intl Airport (JAX)','1','0'),(1819,'','JKV',12982,231,'Jacksonville, Cherokee County Airport (JKV)','1','0'),(1820,'PK','JAG',12984,166,'Jacobabad, PK - Jacobabad Airport (JAG)','1','0'),(1821,'','JAQ',12985,170,'Jacquinot Bay, Jacquinot Bay Airport (JAQ)','1','0'),(1822,'','JGB',12990,101,'Jagdalpur, Jagdalpur Airport (JGB)','1','0'),(1823,'IN','JAI',12995,101,'Jaipur, IN - Jaipur Airport (JAI)','1','0'),(1824,'IN','JSA',12996,101,'Jaisalmer, IN - Jaisalmer (JSA)','1','0'),(1825,'ID','CGK',12998,102,'Jakarta, ID - Soekarno-Hatta Intl Airport (CGK)','1','0'),(1826,'ID','HLP',12998,102,'Jakarta, ID - Halim Perdanakusuma Airport (HLP)','1','0'),(1827,'ID','DJB',13014,102,'Jambi, ID - Sultan Thaha Airport (DJB)','1','0'),(1828,'','HLE',13018,195,'Jamestown, Saint Helena Airport (HLE)','1','0'),(1829,'US','JHW',13019,231,'Jamestown, US - Chautauqua County-Jamestown Airport (JHW)','1','0'),(1830,'IN','IXJ',13021,101,'Jammu, IN - Satwari Airport (IXJ)','1','0'),(1831,'IN','JGA',13022,101,'Jamnagar, IN - Govardhanpur Airport (JGA)','1','0'),(1832,'IN','IXW',13024,101,'Jamshedpur, IN - Sonari (IXW)','1','0'),(1833,'','YJA',13043,231,'Jasper, Jasper Airport (YJA)','1','0'),(1834,'ID','DJJ',13058,102,'Jayapura, ID - Sentani - Jayapura Airport (DJJ)','1','0'),(1835,'AE','DWC',13062,228,'Jebel Ali, AE - Dubai World Central - Al Maktoum Intl Airport (DWC)','1','0'),(1836,'SA','JED',13067,186,'Jeddah, SA - King Abdul Aziz Intl Airport (JED)','1','0'),(1837,'MH','JEJ',13070,136,'Jeh, MH - Jeh Airport (JEJ)','1','0'),(1838,'','JBB',13078,102,'Jember, Notohadinegoro Airport (JBB)','1','0'),(1839,'','ZJG',13087,39,'Jenpeg, Jenpeg Airport (ZJG)','1','0'),(1840,'','CHN',13089,197,'Jeonju, Jeonju Airport (CHN)','1','0'),(1841,'GB','JER',13099,482,'Jersey, GB - Jersey Airport (JER)','1','0'),(1842,'','JRS',13104,106,'Jerusalem, Atarot Airport (JRS)','1','0'),(1843,'BD','JSR',13112,18,'Jessore, BD - Jessore Airport (JSR)','1','0'),(1844,'','PYB',13120,101,'Jeypore, Jeypore Airport (PYB)','1','0'),(1845,'CN','JMU',13125,46,'Jiamusi, CN - Jiamusi Dongjiao Airport (JMU)','1','0'),(1846,'CN','JGN',13140,46,'Jiayuguan, CN - Jiayuguan Airport (JGN)','1','0'),(1847,'DZ','GJL',13142,3,'Jijel, DZ - Jijel Ferhat Abbas Airport (GJL)','1','0'),(1848,'','DBC',13145,46,'Jilin, Baicheng Chang\'an Airport (DBC)','1','0'),(1849,'ET','JIM',13149,70,'Jimma, ET - Jimma Airport (JIM)','1','0'),(1850,'CN','TNA',13150,46,'Jinan, CN - Jinan Yaoqiang Intl Airport (TNA)','1','0'),(1851,'','SHS',13159,46,'Jingzhou, Shashi Airport (SHS)','1','0'),(1852,'','JIN',13162,226,'Jinja, Jinja Airport (JIN)','1','0'),(1853,'ET','BCO',13164,70,'Jinka, ET - Baco Airport (BCO)','1','0'),(1854,'','JIW',13176,166,'Jiwani, Jiwani Airport (JIW)','1','0'),(1855,'','JXA',13177,46,'Jixi, Jixi Xingkaihu Airport (JXA)','1','0'),(1856,'BR','JPA',13181,30,'Joao Pessoa, BR - Castro Pinto Airport (JPA)','1','0'),(1857,'IN','JDH',13184,101,'Jodhpur, IN - Jodhpur Airport (JDH)','1','0'),(1858,'FI','JOE',13186,75,'Joensuu, FI - Joensuu Airport (JOE)','1','0'),(1859,'','GCJ',13189,195,'Johannesburg, Grand Central Airport (GCJ)','1','0'),(1860,'ZA','JNB',13189,195,'Johannesburg, ZA - OR Tambo Intl Airport (JNB)','1','0'),(1861,'US','JST',13199,231,'Johnstown, US - John Murtha Johnstown-Cambria County Airport (JST)','1','0'),(1862,'BR','JOI',13203,30,'Joinville, BR - Joinville - Cubatao Airport (JOI)','1','0'),(1863,'','JMO',13211,153,'Jomsom, Jomsom Airport (JMO)','1','0'),(1864,'US','JBR',13216,231,'Jonesboro, US - Jonesboro Municipal Airport (JBR)','1','0'),(1865,'SE','JKG',13220,209,'Jonkoping, SE - Axamo Airport (JKG)','1','0'),(1866,'US','JLN',13225,231,'Joplin, US - Joplin Regional Airport (JLN)','1','0'),(1867,'','JDN',13230,231,'Jordan, Jordan Airport (JDN)','1','0'),(1868,'IN','JRH',13232,101,'Jorhat, IN - Jorhat Airport (JRH)','1','0'),(1869,'SA','AJF',13246,186,'Jouf, SA - Jouf Airport (AJF)','1','0'),(1870,'US','AJO',13246,186,'Jouf, US - Aljouf (AJO)','1','0'),(1871,'PE','JJI',13258,172,'Juanjui, PE - Juanjuí Airport (JJI)','1','0'),(1872,'BR','JDO',13261,30,'Juazeiro Do Norte, BR - Orlando Bezerra de Menezes Airport (JDO)','1','0'),(1873,'DE','JUI',13270,83,'Juist, DE - Juist (JUI)','1','0'),(1874,'BR','JDF',13271,30,'Juiz De Fora, BR - Francisco Alvares de Assis (Serrinha) Airport (JDF)','1','0'),(1875,'AR','JUJ',13272,10,'Jujuy, AR - Gobernador Horacio Guzman Intl Airport (JUJ)','1','0'),(1876,'AU','JCK',13275,13,'Julia Creek, AU - Julia Creek Airport (JCK)','1','0'),(1877,'PE','JUL',13276,172,'Juliaca, PE - Inca Manco Capac Intl Airport (JUL)','1','0'),(1878,'','JUM',13285,153,'Jumla, Jumla Airport (JUM)','1','0'),(1879,'US','JNU',13290,231,'Juneau, US - Juneau Intl Airport (JNU)','1','0'),(1880,'','JUR',13300,13,'Jurien Bay, Jurien Bay Airport (JUR)','1','0'),(1881,'FI','JYV',13309,75,'Jyvaskyla, FI - Jyvaskyla Airport (JYV)','1','0'),(1882,'','KBT',13318,136,'Kaben, Kaben Airport (KBT)','1','0'),(1883,'ET','ABK',13320,70,'Kabri Dar, ET - Kabri Dar Airport (ABK)','1','0'),(1884,'US','OGG',13341,231,'Kahului, US - Kahului Airport (OGG)','1','0'),(1885,'','IXH',13346,101,'Kailashahar, Kailashahar Airport (IXH)','1','0'),(1886,'','KJH',13347,46,'Kaili, Kaili Huangping Airport (KJH)','1','0'),(1887,'ID','KNG',13350,102,'Kaimana, ID - Kaimana Airport (KNG)','1','0'),(1888,'NZ','KAT',13359,157,'Kaitaia, NZ - Kaitaia Airport (KAT)','1','0'),(1889,'FI','KAJ',13362,75,'Kajaani, FI - Kajaani Airport (KAJ)','1','0'),(1890,'US','KNK',13368,231,'Kakhonak, US - Kokhonak Airport (KNK)','1','0'),(1891,'US','BTI',13371,231,'Kaktovik, US - Barter Island Airport (BTI)','1','0'),(1892,'GR','KLX',13382,86,'Kalamata, GR - Kalamata Airport (KLX)','1','0'),(1893,'US','AZO',13383,231,'Kalamazoo, US - Kalamazoo/Battle Creek Intl Airport (AZO)','1','0'),(1894,'US','LUP',13391,231,'Kalaupapa, US - Kalaupapa Airport (LUP)','1','0'),(1895,'AU','KAX',13395,13,'Kalbarri, AU - Kalbarri (KAX)','1','0'),(1896,'PH','KLO',13400,173,'Kalibo, PH - Kalibo Airport (KLO)','1','0'),(1897,'','BTW',13402,102,'Kalimantan, Batu Licin Airport (BTW)','1','0'),(1898,'','BYQ',13402,102,'Kalimantan, Bunyu Airport (BYQ)','1','0'),(1899,'RU','KGD',13404,181,'Kaliningrad, RU - Kaliningrad Airport (KGD)','1','0'),(1900,'US','FCA',13405,231,'Kalispell, US - Glacier Park Intl Airport (FCA)','1','0'),(1901,'SE','KLR',13414,209,'Kalmar, SE - Kalmar Airport (KLR)','1','0'),(1902,'US','KLG',13424,231,'Kalskag, US - Kalskag Airport (KLG)','1','0'),(1903,'US','KAL',13425,231,'Kaltag, US - Kaltag Airport (KAL)','1','0'),(1904,'','KLF',13428,181,'Kaluga, Grabtsevo Airport (KLF)','1','0'),(1905,'','KTY',13429,200,'Kalutara, Katukurunda Airport (KTY)','1','0'),(1906,'','IXQ',13438,101,'Kamalpur, Kamalpur Airport (IXQ)','1','0'),(1907,'','KDS',13440,13,'Kamaran Downs, Kamaran Downs Airport (KDS)','1','0'),(1908,'','KDB',13445,13,'Kambalda, Kambalda Airport (KDB)','1','0'),(1909,'ID','KBX',13448,102,'Kambuaya, ID - Kambuaya Airport (KBX)','1','0'),(1910,'SY','KAC',13457,211,'Kameshli, SY - Kamishly Airport (KAC)','1','0'),(1911,'CA','YKA',13462,39,'Kamloops, CA - Kamloops Airport (YKA)','1','0'),(1912,'','KMT',13471,37,'Kampot, Kampot Airport (KMT)','1','0'),(1913,'MY','TGG',13472,132,'Kampung Setiu Lama, MY - Kuala Terengganu Airport (TGG)','1','0'),(1914,'','KNB',13474,231,'Kanab, Kanab Municipal Airport (KNB)','1','0'),(1915,'CD','KGA',13478,52,'Kananga, CD - Kananga Airport (KGA)','1','0'),(1916,'IN','IXY',13491,101,'Kandla, IN - Kandla (Gandhidham) Airport (IXY)','1','0'),(1917,'','KDW',13493,200,'Kandy, Victoria Reservoir Seaplane Base (KDW)','1','0'),(1918,'','KDZ',13493,200,'Kandy, Polgolla Reservoir Seaplane Base (KDZ)','1','0'),(1919,'','BFG',13494,231,'Kane, Bullfrog Basin Airport (BFG)','1','0'),(1920,'','NGF',13495,231,'Kaneohe, MCAS Kaneohe Bay (NGF)','1','0'),(1921,'','KNR',34385,101,'Kangan, Jam Airport (KNR)','1','0'),(1922,'GL','SFJ',13501,87,'Kangerlussuaq, GL - Kangerlussuaq Airport (SFJ)','1','0'),(1923,'CA','XGR',13502,39,'Kangiqsualujjuaq, CA - Kangiqsualujjuaq (Georges River) Airport (XGR)','1','0'),(1924,'CA','YWB',13503,39,'Kangiqsujuaq, CA - Kangiqsujuag (Wakeham Bay) Airport (YWB)','1','0'),(1925,'CA','YKG',13504,39,'Kangirsuk, CA - Kangirsuk Airport (YKG)','1','0'),(1926,'IN','DHM',13507,101,'Kangra, IN - Gaggal Airport (DHM)','1','0'),(1927,'IN','KNU',13516,101,'Kanpur, IN - Kanpur Airport (KNU)','1','0'),(1928,'TW','KHH',13522,212,'Kaohsiung, TW - Kaohsiung Intl Airport (KHH)','1','0'),(1929,'US','JHM',13526,231,'Kapalua, US - Kapalua Airport (JHM)','1','0'),(1930,'','KPI',13531,132,'Kapit, Kapit Airport (KPI)','1','0'),(1931,'CA','YYU',13542,39,'Kapuskasing, CA - Kapuskasing Airport (YYU)','1','0'),(1932,'PK','KHI',13544,166,'Karachi, PK - Quaid-E-Azam Intl Airport (KHI)','1','0'),(1933,'KZ','KGF',13545,112,'Karaganda, KZ - Sara Arka Airport (KGF)','1','0'),(1934,'ZW','KAB',13571,243,'Kariba, ZW - Kariba Airport (KAB)','1','0'),(1935,'DE','FKB',13589,83,'Karlsruhe, DE - Karlsruhe/Baden-Baden Airport (FKB)','1','0'),(1936,'SE','KSD',13590,209,'Karlstad, SE - Karlstad Airport (KSD)','1','0'),(1937,'US','KYK',13592,231,'Karluk, US - Karluk Airport (KYK)','1','0'),(1938,'','KGJ',13597,131,'Karonga, Karonga Airport (KGJ)','1','0'),(1939,'GR','AOK',13601,86,'Karpathos, GR - Karpathos Airport (AOK)','1','0'),(1940,'UZ','KSQ',13606,232,'Karshi, UZ - Karshi Airport (KSQ)','1','0'),(1941,'','KBF',13613,102,'Karubaga, Karubaga Airport (KBF)','1','0'),(1942,'','KRB',13615,13,'Karumba, Karumba Airport (KRB)','1','0'),(1943,'DK','KRP',13616,59,'Karup, DK - Karup Airport (KRP)','1','0'),(1944,'','ZKB',13622,242,'Kasaba Bay, Kasaba Bay Airport (ZKB)','1','0'),(1945,'CA','XKS',13623,39,'Kasabonika, CA - Kasabonika Airport (XKS)','1','0'),(1946,'','KAA',13625,242,'Kasama, Kasama Airport (KAA)','1','0'),(1947,'BW','BBK',13626,28,'Kasane, BW - Kasane Airport (BBK)','1','0'),(1948,'','KSE',13630,226,'Kasese, Kasese Airport (KSE)','1','0'),(1949,'CN','KHG',13632,46,'Kashi, CN - Kashi (Kashgar) Airport (KHG)','1','0'),(1950,'US','KUK',13635,231,'Kasigluk, US - Kasigluk Airport (KUK)','1','0'),(1951,'GR','KZS',13656,86,'Kastelorizo, GR - Kastelorizo Airport (KZS)','1','0'),(1952,'GR','KSO',13659,86,'Kastoria, GR - Kastoria Airport (KSO)','1','0'),(1953,'','KBQ',13664,131,'Kasungu, Kasungu Airport (KBQ)','1','0'),(1954,'NP','KTM',13672,153,'Kathmandu, NP - Tribhuvan Intl Airport (KTM)','1','0'),(1955,'PL','KTW',13682,174,'Katowice, PL - Katowice Airport (KTW)','1','0'),(1956,'ID','KAZ',13694,102,'Kau, ID - Kao Airport (KAZ)','1','0'),(1957,'LT','KUN',13712,125,'Kaunas, LT - Karmilava Airport (KUN)','1','0'),(1958,'GR','KVA',13720,86,'Kavala, GR - Kavala Airport (KVA)','1','0'),(1959,'PG','KVG',13723,170,'Kavieng, PG - Kavieng Airport (KVG)','1','0'),(1960,'','MVM',13734,231,'Kayenta, Kayenta Airport (MVM)','1','0'),(1961,'TR','ASR',13735,222,'Kayseri, TR - Kayseri Airport (ASR)','1','0'),(1962,'RU','KZN',13738,181,'Kazan, RU - Kazan Airport (KZN)','1','0'),(1963,'US','EAR',13750,231,'Kearney, US - Kearney Regional Airport (EAR)','1','0'),(1964,'','KEQ',13752,102,'Kebar, Kebar Airport (KEQ)','1','0'),(1965,'MY','AOR',13757,132,'Kedah, MY - Sultan Halim Airport (AOR)','1','0'),(1966,'SN','KGG',13761,187,'Kedougou, SN - Kédougou Airport (KGG)','1','0'),(1967,'','KMP',13768,151,'Keetmanshoop, Keetmanshoop Airport (KMP)','1','0'),(1968,'CA','ZKG',13776,39,'Kegaska, CA - Kegashka Airport (ZKG)','1','0'),(1969,'ID','KEA',13782,102,'Keisah, ID - Keisah Airport (KEA)','1','0'),(1970,'US','BKH',13787,231,'Kekaha, US - Barking Sands PMRF (BKH)','1','0'),(1971,'','LFO',13789,70,'Kelafo, Kelafo Airport (LFO)','1','0'),(1972,'ID','LLN',13792,102,'Kelila, ID - Levelland Municipal (LLN)','1','0'),(1973,'CG','KEE',13796,51,'Kelle, CG - Kelle Airport (KEE)','1','0'),(1974,'CA','YLW',13802,39,'Kelowna, CA - Kelowna Intl Airport (YLW)','1','0'),(1975,'','KES',13803,39,'Kelsey, Kelsey Airport (KES)','1','0'),(1976,'','KLS',13806,482,'Kelso, Southwest Washington Regional Airport (KLS)','1','0'),(1977,'RU','KEJ',13811,181,'Kemerovo, RU - Kemerovo Airport (KEJ)','1','0'),(1978,'','EMM',13815,231,'Kemmerer, Kemmerer Municipal Airport (EMM)','1','0'),(1979,'US','ENA',13822,231,'Kenai, US - Kenai Airport (ENA)','1','0'),(1980,'ID','KDI',13827,102,'Kendari, ID - Haluoleo (Wolter Monginsidi) Airport (KDI)','1','0'),(1981,'','KGU',13832,132,'Keningau, Keningau Airport (KGU)','1','0'),(1982,'','NNA',13833,148,'Kenitra, Kenitra Air Base (NNA)','1','0'),(1983,'','KNT',13848,231,'Kennett, Kennett Memorial Airport (KNT)','1','0'),(1984,'CA','YQK',13853,39,'Kenora, CA - Kenora Airport (YQK)','1','0'),(1985,'','KKT',13864,231,'Kentland, Kentland Municipal Airport (KKT)','1','0'),(1986,'','KRA',13876,13,'Kerang, Kerang Airport (KRA)','1','0'),(1987,'NZ','KKE',13882,157,'Kerikeri, NZ - Kerikeri Airport (KKE)','1','0'),(1988,'IR','KER',13885,103,'Kerman, IR - Kerman Airport (KER)','1','0'),(1989,'IE','KIR',31205,105,'Kerry County, IE - Kerry Airport (KIR)','1','0'),(1990,'MY','KTE',13895,132,'Kerteh, MY - Kerteh Airport (KTE)','1','0'),(1991,'','IXK',13898,101,'Keshod, Keshod Airport (IXK)','1','0'),(1992,'ID','KTG',13904,102,'Ketapang, ID - Rahadi Usman Airport (KTG)','1','0'),(1993,'','KBE',13905,231,'Ketchikan, Bell Island Hot Springs Seaplane Base (KBE)','1','0'),(1994,'US','KTN',13905,231,'Ketchikan, US - Ketchikan Intl Airport (KTN)','1','0'),(1995,'','WFB',13905,231,'Ketchikan, Ketchikan Harbor Seaplane Base (WFB)','1','0'),(1996,'','OCA',31208,231,'Key Largo, Ocean Reef Club Airport (OCA)','1','0'),(1997,'US','EYW',31209,231,'Key West, US - Key West Intl Airport (EYW)','1','0'),(1998,'RU','KHV',13927,181,'Khabarovsk, RU - Novy Airport (KHV)','1','0'),(1999,'IN','HJR',13931,101,'Khajuraho, IN - Khajuraho Airport (HJR)','1','0'),(2000,'UA','HRK',13945,227,'Kharkov, UA - Kharkov Airport (HRK)','1','0'),(2001,'SD','KRT',13946,205,'Khartoum, SD - Khartoum Airport (KRT)','1','0'),(2002,'OM','KHS',13947,165,'Khasab, OM - Khasab Airport (KHS)','1','0'),(2003,'UA','KHE',13951,227,'Kherson, UA - Kherson Intl Airport (KHE)','1','0'),(2004,'UA','HMJ',13956,227,'Khmelnitskiy, UA - Khmelnytskyi Airport (HMJ)','1','0'),(2005,'TH','KKC',34257,215,'Khon Kaen, TH - Khon Kaen Airport (KKC)','1','0'),(2006,'','KDD',13967,166,'Khuzdar, Khuzdar Airport (KDD)','1','0'),(2007,'US','IAN',13970,231,'Kiana, US - Kiana Airport (IAN)','1','0'),(2008,'DE','KEL',13980,83,'Kiel, DE - Kiel Holtenau Airport (KEL)','1','0'),(2009,'UA','IEV',13986,227,'Kiev, UA - Kiev Zhuliany Intl Airport (IEV)','1','0'),(2010,'UA','KBP',13986,227,'Kiev, UA - Borispol Airport (KBP)','1','0'),(2011,'TZ','JRO',14005,214,'Kilimanjaro, TZ - Kilimanjaro Intl Airport (JRO)','1','0'),(2012,'US','ILE',14019,231,'Killeen, US - Skylark Field (ILE)','1','0'),(2013,'','KIL',14038,214,'Kilwa, Kilwa Airport (KIL)','1','0'),(2014,'','KMM',14041,102,'Kimam, Kimam Airport (KMM)','1','0'),(2015,'ZA','KIM',14045,195,'Kimberley, ZA - Kimberley Airport (KIM)','1','0'),(2016,'','YKD',14050,482,'Kincardine, Kincardine Municipal Airport (YKD)','1','0'),(2017,'','KNJ',14055,51,'Kindamba, Kindamba Airport (KNJ)','1','0'),(2018,'','YKY',14058,39,'Kindersley, Kindersley Regional Airport (YKY)','1','0'),(2019,'CD','KND',14060,52,'Kindu, CD - Kindu Airport (KND)','1','0'),(2020,'US','BFI',31211,231,'King, US - Boeing Field / King County Intl Airport (BFI)','1','0'),(2021,'US','KVC',31213,231,'King Cove, US - King Cove Airport (KVC)','1','0'),(2022,'','KMC',14063,186,'King Khalid Military City, King Khaled Military City Airport (KMC)','1','0'),(2023,'US','AKN',31216,231,'King Salmon, US - King Salmon Airport (AKN)','1','0'),(2024,'CA','KIF',14069,39,'Kingfisher Lake, CA - Kingfisher Lake Airport (KIF)','1','0'),(2025,'US','IGM',14070,231,'Kingman, US - Kingman Airport (IGM)','1','0'),(2026,'JM','KIN',14083,109,'Kingston, JM - Norman Manley Intl Airport (KIN)','1','0'),(2027,'JM','KTP',14083,109,'Kingston, JM - Tinson Pen Aerodrome (KTP)','1','0'),(2028,'CA','YGK',14085,39,'Kingston, CA - Kingston/Norman Rogers Airport (YGK)','1','0'),(2029,'TW','KNH',14097,212,'Kinmen, TW - Kinmen (Shang Yi) Airport (KNH)','1','0'),(2030,'CD','FIH',14104,52,'Kinshasa, CD - N Djili Intl Airport (FIH)','1','0'),(2031,'','NLO',14104,52,'Kinshasa, N\'Dolo Airport (NLO)','1','0'),(2032,'US','ISO',14106,231,'Kinston, US - Kinston Regional Jetport at Stallings Field (ISO)','1','0'),(2033,'SB','IRA',14118,193,'Kirakira, SB - Ngorangora Airstrip (IRA)','1','0'),(2034,'NO','KKN',14142,164,'Kirkenes, NO - Kirkenes Airport Hoybuktmoen (KKN)','1','0'),(2035,'US','IRK',14150,231,'Kirksville, US - Kirksville Regional Airport (IRK)','1','0'),(2036,'GB','KOI',14151,482,'Kirkwall, GB - Kirkwall Airport (KOI)','1','0'),(2037,'RU','KVX',14155,181,'Kirov, RU - Pobedilovo Airport (KVX)','1','0'),(2038,'SE','KRN',14163,209,'Kiruna, SE - Kiruna Airport (KRN)','1','0'),(2039,'','KRE',14164,36,'Kirundo, Kirundo Airport (KRE)','1','0'),(2040,'','KSW',14165,106,'Kiryat Shmona, Kiryat Shmona Airport (KSW)','1','0'),(2041,'CD','FKI',14166,52,'Kisangani, CD - Bangoka Intl Airport (FKI)','1','0'),(2042,'IR','KIH',14168,103,'Kish Island, IR - Kish Intl Airport (KIH)','1','0'),(2043,'KE','KIS',14179,113,'Kisumu, KE - Kisumu Intl Airport (KIS)','1','0'),(2044,'JP','KTD',14180,110,'Kitadaito, JP - Kitadaito Airport (KTD)','1','0'),(2045,'FI','KTT',14195,75,'Kittila, FI - Kittila Airport (KTT)','1','0'),(2046,'','KIW',14198,242,'Kitwe, Southdowns Airport (KIW)','1','0'),(2047,'','KZG',14200,83,'Kitzingen, Kitzingen Airport (KZG)','1','0'),(2048,'US','KVL',14201,231,'Kivalina, US - Kivalina Airport (KVL)','1','0'),(2049,'AT','KLU',14208,14,'Klagenfurt, AT - Klagenfurt Airport (KLU)','1','0'),(2050,'US','KLW',14215,231,'Klawock, US - Klawock Airport (KLW)','1','0'),(2051,'','KLZ',14225,195,'Kleinzee, Kleinzee Airport (KLZ)','1','0'),(2052,'','YKT',14227,39,'Klemtu, Klemtu Water Aerodrome (YKT)','1','0'),(2053,'','KXE',14229,195,'Klerksdorp, Klerksdorp Airport (KXE)','1','0'),(2054,'IE','BLY',14255,105,'Knock/mayo, IE - Belmullet (BLY)','1','0'),(2055,'US','TYS',31221,231,'Knoxville, US - McGhee Tyson Airport (TYS)','1','0'),(2056,'US','OBU',14267,231,'Kobuk, US - Kobuk Wein Airport (OBU)','1','0'),(2057,'JP','KCZ',14274,110,'Kochi, JP - Kochi Ryoma Airport (KCZ)','1','0'),(2058,'IN','COK',14275,101,'Kochi, IN - Kochi Airport (COK)','1','0'),(2059,'US','ADQ',14281,231,'Kodiak, US - Kodiak Airport (ADQ)','1','0'),(2060,'US','AOS',14281,231,'Kodiak, US - Amook Bay Seaplane Base (AOS)','1','0'),(2061,'','KDK',14281,231,'Kodiak, Kodiak Municipal Airport (KDK)','1','0'),(2062,'','KKZ',14297,37,'Koh Kong, Koh Kong Airport (KKZ)','1','0'),(2063,'','OHT',14298,166,'Kohat, PAF Base Kohat (OHT)','1','0'),(2064,'','KDA',14314,187,'Kolda, Kolda North Airport (KDA)','1','0'),(2065,'','KLH',14316,101,'Kolhapur, Kolhapur Airport (KLH)','1','0'),(2066,'IN','CCU',14323,101,'Kolkata, IN - Kolkata Intl Airport (CCU)','1','0'),(2067,'','KOF',14335,195,'Komatipoort, Komatipoort Airport (KOF)','1','0'),(2068,'JP','KMQ',14336,110,'Komatsu, JP - Komatsu Airport (KMQ)','1','0'),(2069,'NC','KNQ',14347,156,'Kone, NC - Kone Airport (KNQ)','1','0'),(2070,'','KOO',14351,52,'Kongolo, Kongolo Airport (KOO)','1','0'),(2071,'TR','KYA',14368,222,'Konya, TR - Konya Airport (KYA)','1','0'),(2072,'','KOH',14369,13,'Koolatah, Koolatah Airport (KOH)','1','0'),(2073,'IS','OPA',14376,100,'Kopasker, IS - Kópasker Airport (OPA)','1','0'),(2074,'','KVU',14397,74,'Korolevu, Korolevu Seaplane Base (KVU)','1','0'),(2075,'PW','ROR',14400,167,'Koror, PW - Koror Airport (ROR)','1','0'),(2076,'GR','KGS',31227,86,'Kos, GR - Kos Airport (KGS)','1','0'),(2077,'SK','KSC',14412,191,'Kosice, SK - Kosice Airport (KSC)','1','0'),(2078,'FM','KSA',14420,143,'Kosrae, FM - Kosrae (Caroline Islands) Airport (KSA)','1','0'),(2079,'','KMW',14423,181,'Kostroma, Kostroma Airport (KMW)','1','0'),(2080,'IN','KTU',14426,101,'Kota, IN - Kota (KTU)','1','0'),(2081,'','KOD',14428,102,'Kotabangun, Kotabangun Airport (KOD)','1','0'),(2082,'US','KOT',14433,231,'Kotlik, US - Kotlik Airport (KOT)','1','0'),(2083,'US','OTZ',14441,231,'Kotzebue, US - Kotzebue Airport (OTZ)','1','0'),(2084,'','KOU',14446,80,'Koulamoutou, Koulamoutou Airport (KOU)','1','0'),(2085,'NC','KOC',14447,156,'Koumac, NC - Koumac Airport (KOC)','1','0'),(2086,'CM','KOB',14451,38,'Koutaba, CM - Koutaba Airport (KOB)','1','0'),(2087,'US','KKA',14460,231,'Koyuk, US - Koyuk Airport (KKA)','1','0'),(2088,'US','KYU',14461,231,'Koyukuk, US - Koyukuk Airport (KYU)','1','0'),(2089,'GR','KZI',14463,86,'Kozani, GR - Kozani Airport (KZI)','1','0'),(2090,'TH','KBV',14466,215,'Krabi, TH - Krabi Airport (KBV)','1','0'),(2091,'PL','KRK',14471,174,'Krakow, PL - John Paul II Intl Airport Krakow-Balice (KRK)','1','0'),(2092,'SE','KRF',14476,209,'Kramfors, SE - Kramfors Airport (KRF)','1','0'),(2093,'RU','KRR',14486,181,'Krasnodar, RU - Krasnodar Airport (KRR)','1','0'),(2094,'','KKQ',14488,181,'Krasnoselkup, Krasnoselkup Airport (KKQ)','1','0'),(2095,'','ACS',14490,181,'Krasnoyarsk, Achinsk Airport (ACS)','1','0'),(2096,'CM','KBI',14501,38,'Kribi, CM - Kribi (KBI)','1','0'),(2097,'NO','KRS',14509,164,'Kristiansand, NO - Kristiansand Airport Kjevik (KRS)','1','0'),(2098,'SE','KID',14510,209,'Kristianstad, SE - Kristianstad Airport (KID)','1','0'),(2099,'NO','KSU',14511,164,'Kristiansund, NO - Kristiansund Airport Kvernberget (KSU)','1','0'),(2100,'UA','KWG',14515,227,'Krivoy Rog, UA - Kryvyi Rih/Lozovatka Intl Airport (KWG)','1','0'),(2101,'MY','KUL',30568,132,'Kuala Lumpur, MY - Kuala Lumpur Intl Apt (KUL)','1','0'),(2102,'MY','KUA',14540,132,'Kuantan, MY - Kuantan Airport (KUA)','1','0'),(2103,'MY','KCH',14545,132,'Kuching, MY - Kuching Airport (KCH)','1','0'),(2104,'MY','KUD',14549,132,'Kudat, MY - Kudat Airport (KUD)','1','0'),(2105,'LY','AKF',14554,123,'Kufrah, LY - Kufra Airport (AKF)','1','0'),(2106,'AO','SVP',14562,6,'Kuito, AO - Kuito Airport (SVP)','1','0'),(2107,'GL','KUS',14573,87,'Kulusuk, GL - Kulusuk Airport (KUS)','1','0'),(2108,'JP','KMJ',14575,110,'Kumamoto, JP - Aso Kumamoto Airport (KMJ)','1','0'),(2109,'GH','KMS',14579,84,'Kumasi, GH - Kumasi Airport (KMS)','1','0'),(2110,'JP','UEO',14584,110,'Kumejima, JP - Kumejima Airport (UEO)','1','0'),(2111,'CN','KMG',14594,46,'Kunming, CN - Kunming Changshui International Airport (KMG)','1','0'),(2112,'FI','KUO',14600,75,'Kuopio, FI - Kuopio Airport (KUO)','1','0'),(2113,'ID','KOE',14602,102,'Kupang, ID - El Tari Airport (KOE)','1','0'),(2114,'RU','KRO',14611,181,'Kurgan, RU - Kurgan Airport (KRO)','1','0'),(2115,'','KUC',14612,114,'Kuria, Kuria Airport (KUC)','1','0'),(2116,'','KMH',14620,195,'Kuruman, Johan Pienaar Airport (KMH)','1','0'),(2117,'JP','KUH',14628,110,'Kushiro, JP - Kushiro Airport (KUH)','1','0'),(2118,'GE','KUT',14635,82,'Kutaisi, GE - Kopitnari Airport (KUT)','1','0'),(2119,'CA','YVP',14645,39,'Kuujjuaq, CA - Kuujjuaq Airport (YVP)','1','0'),(2120,'CA','YGW',14646,39,'Kuujjuarapik, CA - Kuujjuarapik Airport (YGW)','1','0'),(2121,'FI','KAO',14647,75,'Kuusamo, FI - Kuusamo Airport (KAO)','1','0'),(2122,'','XIJ',14649,116,'Kuwait, Ahmed Al Jaber Air Base (XIJ)','1','0'),(2123,'MH','KWA',14657,136,'Kwajalein, MH - Marshall Islands Airport (KWA)','1','0'),(2124,'US','KWT',14661,231,'Kwethluk, US - Kwethluk Airport (KWT)','1','0'),(2125,'US','KWK',14663,231,'Kwigillingok, US - Kwigillingok Airport (KWK)','1','0'),(2126,'RU','KYZ',14680,181,'Kyzyl, RU - Kyzyl Airport (KYZ)','1','0'),(2127,'US','LSE',31300,231,'La Crosse, US - La Crosse Municipal Airport (LSE)','1','0'),(2128,'','APB',31413,26,'La Paz, Apolo Airport (APB)','1','0'),(2129,'BO','LPB',31413,26,'La Paz, BO - El Alto Intl Airport (LPB)','1','0'),(2130,'MX','LAP',31414,141,'La Paz, MX - Manuel Marquez de Leon Intl Airport (LAP)','1','0'),(2131,'AR','LPG',31431,10,'La Plata, AR - La Plata (LPG)','1','0'),(2132,'','LPO',31437,231,'La Porte, La Porte Municipal Airport (LPO)','1','0'),(2133,'','PCO',31446,199,'La Ribera, Punta Colorada Airstrip (PCO)','1','0'),(2134,'AR','IRJ',31450,10,'La Rioja, AR - Capitan Vicente Almanados Almonacid Airport (IRJ)','1','0'),(2135,'FR','LRH',31462,76,'La Rochelle, FR - Laleu Airport (LRH)','1','0'),(2136,'DO','LRM',14688,61,'La Romana, DO - Casa De Campo Airport (LRM)','1','0'),(2137,'CA','YVC',31468,39,'La Ronge, CA - La Ronge Airport (Barber Field) (YVC)','1','0'),(2138,'CL','LSC',31484,45,'La Serena, CL - La Serena Airport (LSC)','1','0'),(2139,'CA','ZLT',31492,39,'La Tabatiere, CA - La Tabatiere Airport (ZLT)','1','0'),(2140,'','YLQ',31506,39,'La Tuque, La Tuque Airport (YLQ)','1','0'),(2141,'US','POC',31516,231,'La Verne, US - Brackett Field (POC)','1','0'),(2142,'FJ','LBS',14696,74,'Labasa, FJ - Labasa Airport (LBS)','1','0'),(2143,'US','WLB',14701,231,'Labouchere Bay, US - Labouchere Bay Airport (WLB)','1','0'),(2144,'MY','LBU',14706,132,'Labuan, MY - Labuan Airport (LBU)','1','0'),(2145,'ID','LBJ',14707,102,'Labuan Bajo, ID - Komodo Airport (LBJ)','1','0'),(2146,'','LAH',14709,102,'Labuha, Oesman Sadik Airport (LAH)','1','0'),(2147,'CA','XLB',31529,39,'Lac Brochet, CA - Lac Brochet Airport (XLB)','1','0'),(2148,'CA','YLE',31535,39,'Lac La Martre, CA - Whati Airport (YLE)','1','0'),(2149,'US','LCI',14732,231,'Laconia, US - Laconia Municipal (LCI)','1','0'),(2150,'','LYT',14742,13,'Lady Elliot Island, Lady Elliot Island Airport (LYT)','1','0'),(2151,'ZA','LAY',14745,195,'Ladysmith, ZA - Ladysmith (LAY)','1','0'),(2152,'PG','LAE',14748,170,'Lae, PG - Nadzab Airport (LAE)','1','0'),(2153,'US','LAF',14752,231,'Lafayette, US - Purdue University Airport (LAF)','1','0'),(2154,'EC','LGQ',14765,64,'Lago Agrio, EC - Lago Agrio Airport (LGQ)','1','0'),(2155,'NG','KAN',14772,160,'Lagos, NG - Aminu Intl Airport (KAN)','1','0'),(2156,'NG','LOS',14772,160,'Lagos, NG - Murtala Muhammed Airport (LOS)','1','0'),(2157,'MY','LDU',14784,132,'Lahad Datu, MY - Lahad Datu Airport (LDU)','1','0'),(2158,'PK','LHE',14793,166,'Lahore, PK - Lahore Airport (LHE)','1','0'),(2159,'DE','LHA',14794,83,'Lahr, DE - Black Forest (LHA)','1','0'),(2160,'','LBN',14811,113,'Lake Baringo, Lake Baringo Airport (LBN)','1','0'),(2161,'US','LCH',31546,231,'Lake Charles, US - Lake Charles Regional Airport (LCH)','1','0'),(2162,'','LMA',31579,231,'Lake Minchumina, Lake Minchumina Airport (LMA)','1','0'),(2163,'','LFP',14821,39,'Lakefield, Lakefield Airport (LFP)','1','0'),(2164,'','CKE',14826,231,'Lakeport, Lampson Field (CKE)','1','0'),(2165,'NO','LKL',14839,164,'Lakselv, NO - Lakselv Airport Banak (LKL)','1','0'),(2166,'ET','LLI',14844,70,'Lalibela, ET - Lalibela Airport (LLI)','1','0'),(2167,'VU','LPM',14849,233,'Lamap, VU - Malekoula Airport (LPM)','1','0'),(2168,'US','LAA',14850,231,'Lamar, US - Lamar Municipal (LAA)','1','0'),(2169,'GA','LBQ',14852,80,'Lambarene, GA - Lambaréné Airport (LBQ)','1','0'),(2170,'VU','LNB',14861,233,'Lamen Bay, VU - Lamen Bay Airport (LNB)','1','0'),(2171,'IT','SUF',14865,107,'Lamezia Terme, IT - Lamezia Terme Airport (SUF)','1','0'),(2172,'','LDN',14869,153,'Lamidanda, Lamidanda Airport (LDN)','1','0'),(2173,'TH','LPT',14878,215,'Lampang, TH - Lampang Airport (LPT)','1','0'),(2174,'IT','LMP',14881,107,'Lampedusa, IT - Lampedusa Airport (LMP)','1','0'),(2175,'KE','LAU',14889,113,'Lamu, KE - Lamu Manda Airport (LAU)','1','0'),(2176,'US','LNS',14896,231,'Lancaster, US - Lancaster Airport (LNS)','1','0'),(2177,'ID','LUV',14949,102,'Langgur, ID - Dumatubun Airport (LUV)','1','0'),(2178,'MY','LGK',14955,132,'Langkawi, MY - Langkawi Intl Airport (LGK)','1','0'),(2179,'','YLY',14956,39,'Langley, Langley Regional Airport (YLY)','1','0'),(2180,'CH','QES',14958,210,'Langnau Im Emmental, CH - Emmen (QES)','1','0'),(2181,'FR','LAI',14971,76,'Lannion, FR - Lannion Airport (LAI)','1','0'),(2182,'','LDW',14974,39,'Lansdowne, Lansdowne Airport (LDW)','1','0'),(2183,'ZA','HLA',14980,195,'Lanseria, ZA - Lanseria Intl Airport (HLA)','1','0'),(2184,'US','LAN',14982,231,'Lansing, US - Capital Region Intl Airport (LAN)','1','0'),(2185,'ES','ACE',14994,199,'Lanzarote, ES - Lanzarote (Arrecife) Airport (ACE)','1','0'),(2186,'','LHK',15003,46,'Laohekou, Laohekou Airport (LHK)','1','0'),(2187,'FI','LPP',15014,75,'Lappeenranta, FI - Lappeenranta Airport (LPP)','1','0'),(2188,'US','LAR',15021,231,'Laramie, US - Laramie Regional Airport (LAR)','1','0'),(2189,'','LKA',15022,102,'Larantuka, Gewayantana Airport (LKA)','1','0'),(2190,'US','LRD',15027,231,'Laredo, US - Laredo Intl Airport (LRD)','1','0'),(2191,'GR','LRA',15032,86,'Larisa, GR - Larisa (LRA)','1','0'),(2192,'CY','LCA',15040,57,'Larnaca, CY - Larnaca Airport (LCA)','1','0'),(2193,'US','LRU',31618,231,'Las Cruces, US - Las Cruces Intl Airport (LRU)','1','0'),(2194,'VE','LSP',15051,235,'Las Piedras, VE - Camejo Airport (LSP)','1','0'),(2195,'','HSH',31631,231,'Las Vegas, Henderson Executive Airport (HSH)','1','0'),(2196,'US','LAS',31631,231,'Las Vegas, US - McCarran Intl Airport (LAS)','1','0'),(2197,'US','LVS',31631,231,'Las Vegas, US - Las Vegas Municipal (LVS)','1','0'),(2198,'GA','LTL',15065,80,'Lastourville, GA - Lastourville Airport (LTL)','1','0'),(2199,'SY','LTK',15071,211,'Latakia, SY - Bassel al-Assad Intl Airport (LTK)','1','0'),(2200,'','LTB',15084,13,'Latrobe, Latrobe Airport (LTB)','1','0'),(2201,'US','LBE',15085,231,'Latrobe, US - Arnold Palmer Regional Airport (LBE)','1','0'),(2202,'','LTU',34313,101,'Latur, Latur Airport (LTU)','1','0'),(2203,'','LUC',15091,74,'Laucala Island, Laucala Airport (LUC)','1','0'),(2204,'','MXE',15119,231,'Laurinburg, Laurinburg–Maxton Airport (MXE)','1','0'),(2205,'','LVO',15140,13,'Laverton, Laverton Airport (LVO)','1','0'),(2206,'MY','LWY',15148,132,'Lawas, MY - Lawas Airport (LWY)','1','0'),(2207,'US','LAW',15153,231,'Lawton, US - Fort Sill Regional Airport (LAW)','1','0'),(2208,'MX','LZC',15159,141,'Lazaro Cardenas, MX - Lazaro Cardenas Airport (LZC)','1','0'),(2209,'FR','LEH',31680,76,'Le Havre, FR - Octeville Airport (LEH)','1','0'),(2210,'FR','LME',31689,76,'Le Mans, FR - Arnage (LME)','1','0'),(2211,'','LRJ',31691,231,'Le Mars, Le Mars Municipal Airport (LRJ)','1','0'),(2212,'FR','LPY',31712,76,'Le Puy, FR - Le Puy - Loudes Airport (LPY)','1','0'),(2213,'FR','LTQ',31734,76,'Le Touquet, FR - Cote d`Opale Airport (LTQ)','1','0'),(2214,'','YLR',15167,39,'Leaf Rapids, Leaf Rapids Airport (YLR)','1','0'),(2215,'US','LEB',15179,231,'Lebanon, US - Lebanon Municipal Airport (LEB)','1','0'),(2216,'US','AUO',31746,231,'Lee, US - Auburn-Opelika Robert G. Pitts (AUO)','1','0'),(2217,'PH','LGP',15220,173,'Legaspi, PH - Legaspi Airport (LGP)','1','0'),(2218,'IN','IXL',15229,101,'Leh, IN - Leh Airport (IXL)','1','0'),(2219,'','LGH',31749,13,'Leigh Creek, Leigh Creek Airport (LGH)','1','0'),(2220,'','LER',15250,13,'Leinster, Leinster Airport (LER)','1','0'),(2221,'','LKC',15261,51,'Lekana, Lekana Airport (LKC)','1','0'),(2222,'NO','LKN',15264,164,'Leknes, NO - Leknes Airport (LKN)','1','0'),(2223,'GR','LXS',15274,86,'Lemnos, GR - Lemnos Airport (LXS)','1','0'),(2224,'MX','BJX',15307,141,'Leon, MX - Guanajuato (Del Bajio) Intl Airport (BJX)','1','0'),(2225,'','LNO',15313,13,'Leonora, Leonora Airport (LNO)','1','0'),(2226,'','LHI',15322,102,'Lereh, Lereh Airport (LHI)','1','0'),(2227,'','LRB',15323,121,'Leribe, Leribe Airport (LRB)','1','0'),(2228,'GR','LRS',15329,86,'Leros, GR - Leros Airport (LRS)','1','0'),(2229,'','LSO',31804,76,'Les Sables-d\'olonne, Les Sables-d\'Olonne – Talmont Airport (LSO)','1','0'),(2230,'','LES',15344,121,'Lesobeng, Lesobeng Airport (LES)','1','0'),(2231,'CA','YQL',15359,39,'Lethbridge, CA - Lethbridge County Airport (YQL)','1','0'),(2232,'CO','LET',15360,49,'Leticia, CO - Alfredo Vasquez Cobo Airport (LET)','1','0'),(2233,'','LTR',15365,105,'Letterkenny, Letterkenny Airfield (LTR)','1','0'),(2234,'US','KLL',15385,231,'Levelock, US - Levelock Airport (KLL)','1','0'),(2235,'US','LWB',15401,231,'Lewisburg, US - Greenbrier Valley Airport (LWB)','1','0'),(2236,'US','LWT',15404,231,'Lewistown, US - Lewistown Municipal Airport (LWT)','1','0'),(2237,'','LWE',15406,102,'Lewoleba, Wonopito Airport (LWE)','1','0'),(2238,'US','LEX',15407,231,'Lexington, US - Blue Grass Airport (LEX)','1','0'),(2239,'CN','LXA',15419,46,'Lhasa, CN - Lhasa Gonggar Airport (LXA)','1','0'),(2240,'CN','LYG',15426,46,'Lianyungang, CN - Lianyungang Baitabu Airport (LYG)','1','0'),(2241,'US','LBL',15432,231,'Liberal, US - Liberal Mid-America Regional Airport (LBL)','1','0'),(2242,'GA','LBV',15440,80,'Libreville, GA - Libreville Airport (LBV)','1','0'),(2243,'MZ','VXC',15443,149,'Lichinga, MZ - Lichinga Airport (VXC)','1','0'),(2244,'SE','LDK',15457,209,'Lidkoping, SE - Lidkoping-Hovby (LDK)','1','0'),(2245,'BE','LGG',15462,21,'Liege, BE - Liege Airport (LGG)','1','0'),(2246,'NC','LIF',15480,156,'Lifou, NC - Lifou Island Airport (LIF)','1','0'),(2247,'','LHG',15484,13,'Lightning Ridge, Lightning Ridge Airport (LHG)','1','0'),(2248,'','LIX',15494,131,'Likoma Island, Likoma Airport (LIX)','1','0'),(2249,'FR','LIL',15502,76,'Lille, FR - Lesquin Airport (LIL)','1','0'),(2250,'MW','LLW',15508,131,'Lilongwe, MW - Lilongwe Intl Airport (LLW)','1','0'),(2251,'MY','LMN',15513,132,'Limbang, MY - Limbang Airport (LMN)','1','0'),(2252,'FR','LIG',15529,76,'Limoges, FR - Bellegarde Airport (LIG)','1','0'),(2253,'','BCL',15531,54,'Limon, Barra del Colorado Airport (BCL)','1','0'),(2254,'US','LNK',15547,231,'Lincoln, US - Lincoln Airport (LNK)','1','0'),(2255,'','LDC',15560,13,'Lindeman Island, Lindeman Island Airport (LDC)','1','0'),(2256,'','LDI',15567,214,'Lindi, Lindi Airport (LDI)','1','0'),(2257,'','LFQ',15574,46,'Linfen, Linfen Qiaoli Airport (LFQ)','1','0'),(2258,'SE','LPI',15584,209,'Linkoping, SE - Saab Airport (LPI)','1','0'),(2259,'','LIP',15589,30,'Lins, Lins Airport (LIP)','1','0'),(2260,'CN','LYI',15592,46,'Linyi, CN - Linyi Shubuling Airport (LYI)','1','0'),(2261,'AT','LNZ',15593,14,'Linz, AT - Blue Danube Airport (LNZ)','1','0'),(2262,'','LIQ',15608,52,'Lisala, Lisala Airport (LIQ)','1','0'),(2263,'PT','LIS',15609,175,'Lisbon, PT - Lisbon Portela Airport (LIS)','1','0'),(2264,'KY','LYB',15646,42,'Little Cayman, KY - Edward Bodden Airfield (LYB)','1','0'),(2265,'','ZGR',15648,39,'Little Grand Rapids, Little Grand Rapids Airport (ZGR)','1','0'),(2266,'CN','LZH',15653,46,'Liuzhou, CN - Luizhou Bailian Airport (LZH)','1','0'),(2267,'GB','LPL',15660,482,'Liverpool, GB - Speke Airport (LPL)','1','0'),(2268,'ZM','LVI',15669,242,'Livingstone, ZM - Livingstone Airport (LVI)','1','0'),(2269,'BR','LVB',15672,30,'Livramento, BR - Galpões Airport (LVB)','1','0'),(2270,'SI','LJU',15682,192,'Ljubljana, SI - Joze Pucnik Airport (LJU)','1','0'),(2271,'ES','ILD',15728,199,'Lleida, ES - Alguaire Airport (ILD)','1','0'),(2272,'CA','YLL',15735,39,'Lloydminster, CA - Lloydminster Airport (YLL)','1','0'),(2273,'CH','ZJI',15743,210,'Locarno, CH - Locarno Airport (ZJI)','1','0'),(2274,'AU','IRG',15755,13,'Lockhart Rivers, AU - Lockhart River Airport (IRG)','1','0'),(2275,'CD','LJA',15770,52,'Lodja, CD - Lodja Airport (LJA)','1','0'),(2276,'TH','LOE',15773,215,'Loei, TH - Loei Airport (LOE)','1','0'),(2277,'MH','LOF',15774,136,'Loen, MH - Loen Airport (LOF)','1','0'),(2278,'EC','LOH',15801,64,'Loja, EC - Camilo Ponce Enriquez Airport (LOH)','1','0'),(2279,'TG','LFW',15823,216,'Lome, TG - Lome Tokoin Airport (LFW)','1','0'),(2280,'GB','LCY',15836,482,'London, GB - London City Airport (LCY)','1','0'),(2281,'GB','LGW',15836,482,'London, GB - Gatwick Airport (LGW)','1','0'),(2282,'GB','LHR',15836,482,'London, GB - Heathrow Airport (LHR)','1','0'),(2283,'GB','LTN',15836,482,'London, GB - Luton Airport (LTN)','1','0'),(2284,'GB','STN',15836,482,'London, GB - Stansted Airport (STN)','1','0'),(2285,'CA','YXU',15837,39,'London, CA - London Intl Airport (YXU)','1','0'),(2286,'GB','LDY',15839,482,'Londonderry, GB - Londonderry Airport (LDY)','1','0'),(2287,'BR','LDB',15841,30,'Londrina, BR - Londrina Airport (LDB)','1','0'),(2288,'','LSJ',15843,16,'Long Island, Long Island Airport (LSJ)','1','0'),(2289,'MY','LGL',15845,132,'Long Lellang, MY - Long Lellang Airport (LGL)','1','0'),(2290,'','GSA',34588,132,'Long Pasia, Long Pasia Airport (GSA)','1','0'),(2291,'','LSM',34598,132,'Long Semado, Long Semado Airport (LSM)','1','0'),(2292,'MY','ODN',34599,132,'Long Seridan, MY - Long Seridan Airport (ODN)','1','0'),(2293,'','LSU',34589,132,'Long Sukang, Long Sukang Airport (LSU)','1','0'),(2294,'VU','LOD',15847,233,'Longana, VU - Longana Airport (LOD)','1','0'),(2295,'NO','LYR',15875,164,'Longyearbyen, NO - Longyearbyen Svalbard Airport (LYR)','1','0'),(2296,'VU','LNE',15878,233,'Lonorore, VU - Lonorore Airport (LNE)','1','0'),(2297,'','KKM',15888,215,'Lopburi, Khok Kathiam Air Force Base (KKM)','1','0'),(2298,'US','LPS',15889,231,'Lopez Island, US - Lopez Island Airport (LPS)','1','0'),(2299,'MX','LTO',15898,141,'Loreto, MX - Loreto Intl Airport (LTO)','1','0'),(2300,'','LRI',15904,107,'Lorica, Lorica Airport (LRI)','1','0'),(2301,'FR','LRT',15905,76,'Lorient, FR - Lann-Bihouet Airport (LRT)','1','0'),(2302,'US','LAM',31836,231,'Los Alamos, US - Los Alamos Airport (LAM)','1','0'),(2303,'US','LAX',31839,231,'Los Angeles, US - Los Angeles Intl Airport (LAX)','1','0'),(2304,'MX','LMM',31861,141,'Los Mochis, MX - Federal del Valle del Fuerte Intl Airport (LMM)','1','0'),(2305,'','LRV',15918,235,'Los Roques, Los Roques Airport (LRV)','1','0'),(2306,'CG','DIS',15929,51,'Loubomo, CG - Ngot Nzoungou Airport (DIS)','1','0'),(2307,'','LOW',15943,231,'Louisa, Louisa County Airport (LOW)','1','0'),(2308,'','LFN',15945,231,'Louisburg, Triangle North Executive Airport (LFN)','1','0'),(2309,'US','ARA',15947,231,'Louisiana, US - Acadiana Regional Airport (ARA)','1','0'),(2310,'US','BAD',15947,231,'Louisiana, US - Barksdale Air Force Base (BAD)','1','0'),(2311,'','LMS',15948,231,'Louisville, Louisville Winston County Airport (LMS)','1','0'),(2312,'US','LOU',15948,231,'Louisville, US - Bowman Field (LOU)','1','0'),(2313,'US','SDF',15948,231,'Louisville, US - Louisville Intl Airport (SDF)','1','0'),(2314,'','LOL',15972,231,'Lovelock, Derby Field (LOL)','1','0'),(2315,'AO','LAD',15997,6,'Luanda, AO - Quatro de Fevereiro Intl Airport (LAD)','1','0'),(2316,'LA','LXG',15998,118,'Luang Namtha, LA - Louangnamtha Airport (LXG)','1','0'),(2317,'AO','SDD',16000,6,'Lubango, AO - Lubango Mukanka Airport (SDD)','1','0'),(2318,'US','LBB',16003,231,'Lubbock, US - Lubbock Preston Smith Intl Airport (LBB)','1','0'),(2319,'','REE',16003,231,'Lubbock, Reese Airpark (REE)','1','0'),(2320,'','LUZ',16006,174,'Lublin, Lublin Airport (LUZ)','1','0'),(2321,'','LVR',16013,30,'Lucas Do Rio Verde, Bom Futuro Municipal Airport (LVR)','1','0'),(2322,'IN','LKO',16028,101,'Lucknow, IN - Amausi Airport (LKO)','1','0'),(2323,'NA','LUD',16031,151,'Luderitz, NA - Luderitz Airport (LUD)','1','0'),(2324,'IN','LUH',16033,101,'Ludhiana, IN - Sahnewal Airport (LUH)','1','0'),(2325,'AO','LUO',16045,6,'Luena, AO - Luena Airport (LUO)','1','0'),(2326,'US','LFK',16049,231,'Lufkin, US - Angelina County (LFK)','1','0'),(2327,'CH','LUG',34642,210,'Lugano, CH - Lugano-Agno Airport (LUG)','1','0'),(2328,'UA','VSG',16052,227,'Lugansk, UA - Lugansk Airport (VSG)','1','0'),(2329,'','LUA',16070,153,'Lukla, Tenzing-Hillary Airport (LUA)','1','0'),(2330,'SE','LLA',16073,209,'Lulea, SE - Kallax Airport (LLA)','1','0'),(2331,'US','LBT',16078,231,'Lumberton, US - Lumberton Municipal (LBT)','1','0'),(2332,'','LYK',16105,102,'Lunyuk, Lunyuk Airport (LYK)','1','0'),(2333,'CN','LYA',16114,46,'Luoyang, CN - Luoyang Beijiao Airport (LYA)','1','0'),(2334,'ZM','LUN',16120,242,'Lusaka, ZM - Lusaka Intl Airport (LUN)','1','0'),(2335,'ZA','LUJ',16124,195,'Lusikisiki, ZA - Lusikisiki Airport (LUJ)','1','0'),(2336,'','UCK',16138,227,'Lutsk, Lutsk Airport (UCK)','1','0'),(2337,'ID','LUW',16146,102,'Luwuk, ID - Syukuran Aminuddin Amir Airport (LUW)','1','0'),(2338,'LU','LUX',16149,127,'Luxembourg, LU - Findel Airport (LUX)','1','0'),(2339,'EG','LXR',16153,65,'Luxor, EG - Luxor Airport (LXR)','1','0'),(2340,'PH','NCP',16162,173,'Luzon, PH - Cubi Pt NAS Airport Airport (NCP)','1','0'),(2341,'UA','LWO',16166,227,'Lvov, UA - Lviv Airport (LWO)','1','0'),(2342,'SE','LYC',16170,209,'Lycksele, SE - Lycksele Airport (LYC)','1','0'),(2343,'GB','LYX',16171,482,'Lydd, GB - Lydd Airport (LYX)','1','0'),(2344,'US','LYH',16178,231,'Lynchburg, US - Lynchburg Regional Airport / Preston Glenn Field (LYH)','1','0'),(2345,'','LTP',16180,231,'Lyndhurst, Lyndhurst Airport (LTP)','1','0'),(2346,'','LLX',16183,231,'Lyndonville, Caledonia County Airport (LLX)','1','0'),(2347,'','YYL',16188,39,'Lynn Lake, Lynn Lake Airport (YYL)','1','0'),(2348,'','LYO',16194,231,'Lyons, Lyons–Rice County Municipal Airport (LYO)','1','0'),(2349,'NL','MST',16219,154,'Maastricht, NL - Maastricht Aachen Airport (MST)','1','0'),(2350,'','UBB',16226,13,'Mabuiag Island, Mabuiag Island Airport (UBB)','1','0'),(2351,'BR','MEA',16228,30,'Macae, BR - Benedito Lacerda Airport (MEA)','1','0'),(2352,'BR','MCP',16230,30,'Macapa, BR - Macapa Intl Airport (MCP)','1','0'),(2353,'EC','XMS',16231,64,'Macas, EC - Edmundo Carvajal Airport (XMS)','1','0'),(2354,'MO','MFM',16233,128,'Macau, MO - Macau Intl Airport (MFM)','1','0'),(2355,'BR','MCZ',16242,30,'Maceio, BR - Palmares Airport (MCZ)','1','0'),(2356,'','MCH',16246,64,'Machala, General Manuel Serrano Airport (MCH)','1','0'),(2357,'AU','BMP',16255,13,'Mackay, AU - Brampton Island Airport (BMP)','1','0'),(2358,'','MVH',16259,13,'Macksville, Macksville Airport (MVH)','1','0'),(2359,'US','MCN',16264,231,'Macon, US - Middle Georgia Regional Airport (MCN)','1','0'),(2360,'PG','MAG',16275,170,'Madang, PG - Madang Airport (MAG)','1','0'),(2361,'','DXE',16303,231,'Madison, Bruce Campbell Field (DXE)','1','0'),(2362,'','MDN',16303,231,'Madison, Madison Municipal Airport (MDN)','1','0'),(2363,'US','MSN',16303,231,'Madison, US - Dane County Regional Airport (Traux Field) (MSN)','1','0'),(2364,'','XMD',16303,231,'Madison, Madison Municipal Airport (XMD)','1','0'),(2365,'','MDJ',16311,231,'Madras, Madras Municipal Airport (MDJ)','1','0'),(2366,'ES','MAD',16314,199,'Madrid, ES - Barajas Airport (MAD)','1','0'),(2367,'IN','IXM',16319,101,'Madurai, IN - Madurai Airport (IXM)','1','0'),(2368,'TH','MAQ',34245,215,'Mae Sot, TH - Mae Sot Airport (MAQ)','1','0'),(2369,'VU','MWF',16323,233,'Maewo, VU - Naone Airport (MWF)','1','0'),(2370,'','MFC',16325,121,'Mafeteng, Mafeteng Airport (MFC)','1','0'),(2371,'RU','GDX',16331,181,'Magadan, RU - Magadan Airport (GDX)','1','0'),(2372,'','MGD',16339,10,'Magdalena, Magdalena Airport (MGD)','1','0'),(2373,'RU','MQF',16364,181,'Magnitogorsk, RU - Magnitogorsk Intl Airport (MQF)','1','0'),(2374,'','AGO',16365,231,'Magnolia, Magnolia Municipal Airport (AGO)','1','0'),(2375,'','BZM',16378,130,'Mahajanga, Bemolanga Airport (BZM)','1','0'),(2376,'MG','MJN',16378,130,'Mahajanga, MG - Amborovy-Philbert Tsiranana Airport (MJN)','1','0'),(2377,'','VVB',16379,130,'Mahanoro, Mahanoro Airport (VVB)','1','0'),(2378,'','MHA',16383,220,'Mahdia, Mahdia Airport (MHA)','1','0'),(2379,'ES','MAH',16395,199,'Mahon, ES - Menorca Airport (MAH)','1','0'),(2380,'','MNK',16400,114,'Maiana, Maiana Airport (MNK)','1','0'),(2381,'','MXT',16415,130,'Maintirano, Maintirano Airport (MXT)','1','0'),(2382,'CV','MMO',16418,41,'Maio, CV - Maio Airport (MMO)','1','0'),(2383,'','MJE',16438,136,'Majkin, Majkin Airport (MJE)','1','0'),(2384,'MH','MAJ',16443,136,'Majuro, MH - Marshall Islands Intl Airport (MAJ)','1','0'),(2385,'','KMK',16444,51,'Makabana, Makabana Airport (KMK)','1','0'),(2386,'ET','MQX',16450,70,'Makale, ET - Makale Airport (MQX)','1','0'),(2387,'PF','MKP',16457,78,'Makemo, PF - Makemo Airport (MKP)','1','0'),(2388,'RU','MCX',16460,181,'Makhachkala, RU - Makhachkala Uytash Airport (MCX)','1','0'),(2389,'CA','YMN',16464,39,'Makkovik, CA - Makkovik Airport (YMN)','1','0'),(2390,'','MKU',16465,80,'Makokou, Makokou Airport (MKU)','1','0'),(2391,'','MKJ',16466,51,'Makoua, Makoua Airport (MKJ)','1','0'),(2392,'TW','MZG',16471,212,'Makung, TW - Makung Airport (MZG)','1','0'),(2393,'','MLP',16475,173,'Malabang, Malabang Airport (MLP)','1','0'),(2394,'GQ','SSG',16477,67,'Malabo, GQ - Malabo Airport (SSG)','1','0'),(2395,'MY','MKZ',16479,132,'Malacca, MY - Malacca Airport (MKZ)','1','0'),(2396,'ES','AGP',16480,199,'Malaga, ES - Malaga Costa Del Sol Airport (AGP)','1','0'),(2397,'ID','MLG',16490,102,'Malang, ID - Abdul Rachman Saleh Airport (MLG)','1','0'),(2398,'AO','MEG',16491,6,'Malange, AO - Malanje Airport (MEG)','1','0'),(2399,'TR','MLX',16496,222,'Malatya, TR - Malatya Airport (MLX)','1','0'),(2400,'','MAW',16504,231,'Malden, Malden Regional Airport (MAW)','1','0'),(2401,'MV','MLE',16508,133,'Male, MV - Male Intl Airport (MLE)','1','0'),(2402,'KE','MYD',16519,113,'Malindi, KE - Malindi Airport (MYD)','1','0'),(2403,'SE','HMA',16550,209,'Malmo, SE - Khanty-Mansiysk Airport (HMA)','1','0'),(2404,'SE','MMX',16550,209,'Malmo, SE - Sturup Airport (MMX)','1','0'),(2405,'FJ','PTF',16554,74,'Malololailai, FJ - Malololailai Island Airport (PTF)','1','0'),(2406,'','MLK',16562,231,'Malta, Malta Airport (MLK)','1','0'),(2407,'MT','MLA',16563,135,'Malta, MT - Malta Intl Airport (MLA)','1','0'),(2408,'','MBO',16580,173,'Mamburao, Mamburao Airport (MBO)','1','0'),(2409,'','MMF',16581,38,'Mamfe, Mamfe Airport (MMF)','1','0'),(2410,'','MJU',16586,102,'Mamuju, Tampa Padang Airport (MJU)','1','0'),(2411,'','MJC',31888,482,'Man, Man Airport (MJC)','1','0'),(2412,'ID','MDC',16588,102,'Manado, ID - Sam Ratulangi Airport (MDC)','1','0'),(2413,'NI','MGA',16589,158,'Managua, NI - Managua Intl Airport (MGA)','1','0'),(2414,'','WVK',16591,130,'Manakara, Manakara Airport (WVK)','1','0'),(2415,'IN','KUU',16593,101,'Manali, IN - Kulla Manali Airport (KUU)','1','0'),(2416,'BH','BAH',16594,17,'Manama, BH - Bahrain Intl Airport (BAH)','1','0'),(2417,'MG','WMR',16595,130,'Mananara, MG - Mananara Avaratra Airport (WMR)','1','0'),(2418,'','NGX',16596,153,'Manang, Manang Airport (NGX)','1','0'),(2419,'','MNJ',16597,130,'Mananjary, Mananjary Airport (MNJ)','1','0'),(2420,'BR','MAO',16603,30,'Manaus, BR - Eduardo Gomes Intl Airport (MAO)','1','0'),(2421,'US','MHT',16607,231,'Manchester, US - Manchester Airport (MHT)','1','0'),(2422,'GB','MAN',16608,482,'Manchester, GB - Manchester Intl Airport (MAN)','1','0'),(2423,'','WMD',16612,130,'Mandabe, Mandabe Airport (WMD)','1','0'),(2424,'MM','MDL',16614,150,'Mandalay, MM - Mandalay Intl Airport (MDL)','1','0'),(2425,'','VBC',16614,150,'Mandalay, Mandalay Chanmyathazi Airport (VBC)','1','0'),(2426,'','WMA',16627,130,'Mandritsara, Mandritsara Airport (WMA)','1','0'),(2427,'IN','IXE',16637,101,'Mangalore, IN - Bajpe Airport (IXE)','1','0'),(2428,'','MAI',16645,131,'Mangochi, Mangochi Airport (MAI)','1','0'),(2429,'ID','MAL',16646,102,'Mangole, ID - Malone-Dufort (MAL)','1','0'),(2430,'BS','MAY',16648,16,'Mangrove Cay, BS - Mangrove Cay Airport (MAY)','1','0'),(2431,'US','MHK',16654,231,'Manhattan, US - Manhattan Regional Airport (MHK)','1','0'),(2432,'PF','XMH',16657,78,'Manihi, PF - Manihi Airport (XMH)','1','0'),(2433,'CK','MHX',16658,53,'Manihiki Island, CK - Manihiki Island Airport (MHX)','1','0'),(2434,'PH','MNL',16659,173,'Manila, PH - Ninoy Aquino Intl Airport (MNL)','1','0'),(2435,'','SGL',16659,173,'Manila, Danilo Atienza Air Base (SGL)','1','0'),(2436,'US','MBL',16666,231,'Manistee, US - Manistee County-Blackistee Airport (MBL)','1','0'),(2437,'','ISQ',16667,231,'Manistique, Schoolcraft County Airport (ISQ)','1','0'),(2438,'','YMG',16669,39,'Manitouwadge, Manitouwadge Airport (YMG)','1','0'),(2439,'','YEM',16670,39,'Manitowaning, Manitowaning/Manitoulin East Municipal Airport (YEM)','1','0'),(2440,'CO','MZL',16673,49,'Manizales, CO - Santaguida Airport (MZL)','1','0'),(2441,'','MJA',16674,130,'Manja, Manja Airport (MJA)','1','0'),(2442,'ID','MKW',16687,102,'Manokwari, ID - Rendani Airport (MKW)','1','0'),(2443,'','MNS',16691,242,'Mansa, Mansa Airport (MNS)','1','0'),(2444,'GB','MSE',16698,482,'Manston, GB - Manston Kent Intl Airport (MSE)','1','0'),(2445,'EC','MEC',16699,64,'Manta, EC - Eloy Alfaro Intl Airport (MEC)','1','0'),(2446,'','MEO',16705,231,'Manteo, Dare County Regional Airport (MEO)','1','0'),(2447,'','NTJ',16707,231,'Manti, Manti-Ephraim Airport (NTJ)','1','0'),(2448,'MX','ZLO',16721,141,'Manzanillo, MX - Playa de Oro Intl Airport (ZLO)','1','0'),(2449,'SZ','MTS',16724,208,'Manzini, SZ - Manzini Airport (MTS)','1','0'),(2450,'MZ','MPM',16737,149,'Maputo, MZ - Mavalane Intl Airport (MPM)','1','0'),(2451,'AR','MDQ',31894,10,'Mar Del Plata, AR - Astor Piazzola Intl Airport (MDQ)','1','0'),(2452,'BR','MAB',16739,30,'Maraba, BR - Maraba Airport (MAB)','1','0'),(2453,'VE','MAR',16740,235,'Maracaibo, VE - La Chinita Airport (MAR)','1','0'),(2454,'','MYC',16741,235,'Maracay, Mariscal Sucre Airport (MYC)','1','0'),(2455,'','MZK',16747,114,'Marakei, Marakei Airport (MZK)','1','0'),(2456,'US','MTH',16758,231,'Marathon, US - The Florida Keys Marathon Airport (MTH)','1','0'),(2457,'','YSP',16758,231,'Marathon, Marathon Aerodrome (YSP)','1','0'),(2458,'','MBB',16770,13,'Marble Bar, Marble Bar Airport (MBB)','1','0'),(2459,'','MRK',16788,231,'Marco Island, Marco Island Airport (MRK)','1','0'),(2460,'NC','MEE',16795,156,'Mare, NC - Mare Airport (MEE)','1','0'),(2461,'','MRF',16805,231,'Marfa, Marfa Municipal Airport (MRF)','1','0'),(2462,'','MQZ',16808,13,'Margaret River, Margaret River Airport (MQZ)','1','0'),(2463,'SI','MBX',16832,192,'Maribor, SI - Edvard Rusjan Airport (MBX)','1','0'),(2464,'FI','MHQ',16838,75,'Mariehamn, FI - Mariehamn Airport (MHQ)','1','0'),(2465,'BR','MII',16855,30,'Marilia, BR - Dr Gastao Vidigal Airport (MII)','1','0'),(2466,'BR','MGF',16865,30,'Maringa, BR - Maringa Airport (MGF)','1','0'),(2467,'US','MWA',16868,231,'Marion, US - Williamson County Regional Airport (MWA)','1','0'),(2468,'CA','YKZ',16875,39,'Markham, CA - Buttonville Municipal Airport (YKZ)','1','0'),(2469,'','MRP',16890,13,'Marla, Marla Airport (MRP)','1','0'),(2470,'','MXG',16892,231,'Marlborough, Marlboro Airport (MXG)','1','0'),(2471,'MG','WMN',16915,130,'Maroantsetra, MG - Maroantsetra Airport (WMN)','1','0'),(2472,'CM','MVR',16922,38,'Maroua, CM - Salak Airport (MVR)','1','0'),(2473,'US','MQT',16927,231,'Marquette, US - Sawyer Intl Airport (MQT)','1','0'),(2474,'MA','RAK',16930,148,'Marrakech, MA - Menara Airport (RAK)','1','0'),(2475,'','RRE',16932,13,'Marree, Marree Airport (RRE)','1','0'),(2476,'EG','RMF',16936,65,'Marsa Alam, EG - Marsa Alam Airport (RMF)','1','0'),(2477,'FR','MRS',16946,76,'Marseille, FR - Marignane-Provence Airport (MRS)','1','0'),(2478,'BS','MHH',16947,16,'Marsh Harbour, BS - Marsh Harbour Airport (MHH)','1','0'),(2479,'','MHL',16948,231,'Marshall, Marshall Memorial Municipal Airport (MHL)','1','0'),(2480,'','MML',16948,231,'Marshall, Southwest Minnesota Regional Airport (MML)','1','0'),(2481,'US','RMY',16948,231,'Marshall, US - Brooks Field (RMY)','1','0'),(2482,'US','AOO',16977,231,'Martinsburg, US - Blair County Airport (AOO)','1','0'),(2483,'MY','MUR',16983,132,'Marudi, MY - Marudi Airport (MUR)','1','0'),(2484,'CA','YMH',16998,39,'Mary\'s Harbour, CA - Mary`s Harbour Airport (YMH)','1','0'),(2485,'US','BAB',17001,231,'Marysville, US - Beale Air Force Base (BAB)','1','0'),(2486,'IL','MTZ',17006,106,'Masada, IL - Bar Yehuda Airfield (MTZ)','1','0'),(2487,'','MXB',17010,102,'Masamba, Andi Jemma Airport (MXB)','1','0'),(2488,'','XMI',17011,214,'Masasi, Masasi Airport (XMI)','1','0'),(2489,'LS','MSU',17023,121,'Maseru, LS - Maseru Airport (MSU)','1','0'),(2490,'IR','MHD',17025,103,'Mashad, IR - Mashad Airport (MHD)','1','0'),(2491,'OM','MSH',17034,165,'Masirah, OM - Masirah Air Base (MSH)','1','0'),(2492,'US','MSS',17048,231,'Massena, US - Massena Intl Airport-Richards Field (MSS)','1','0'),(2493,'CA','ZMT',17050,39,'Masset, CA - Masset Airport (ZMT)','1','0'),(2494,'NZ','MRO',17058,157,'Masterton, NZ - Hood Aerodrome (MRO)','1','0'),(2495,'','MVZ',17063,243,'Masvingo, Masvingo Airport (MVZ)','1','0'),(2496,'','MAT',17065,52,'Matadi, Matadi Tshimpi Airport (MAT)','1','0'),(2497,'','YNM',17067,39,'Matagami, Matagami Airport (YNM)','1','0'),(2498,'PF','MVT',17069,78,'Mataiva, PF - Mataiva Airport (MVT)','1','0'),(2499,'','MAX',17074,187,'Matam, Ouro Sogui Airport (MAX)','1','0'),(2500,'CA','YME',17079,39,'Matane, CA - Matane (YME)','1','0'),(2501,'','MSG',17107,121,'Matsaile, Matsaile Airport (MSG)','1','0'),(2502,'JP','MMJ',17111,110,'Matsumoto, JP - Shinshu-Matsumoto Airport (MMJ)','1','0'),(2503,'JP','MYJ',17115,110,'Matsuyama, JP - Matsuyama Airport (MYJ)','1','0'),(2504,'US','MTO',17122,231,'Mattoon, US - Coles County Memorial (MTO)','1','0'),(2505,'VE','MUN',17127,235,'Maturin, VE - Quiriquire Airport (MUN)','1','0'),(2506,'ID','MOF',17151,102,'Maumere, ID - Wai Oti (Maumere) Airport (MOF)','1','0'),(2507,'BW','MUB',17152,28,'Maun, BW - Maun Airport (MUB)','1','0'),(2508,'PF','MAU',17155,78,'Maupiti, PF - Maupiti Island Airport (MAU)','1','0'),(2509,'MU','MRU',17162,139,'Mauritius, MU - Mauritius - Sir S Ramgoolam Airport (MRU)','1','0'),(2510,'PR','MAZ',17183,176,'Mayaguez, PR - Eugenio Maria de Hostos Airport (MAZ)','1','0'),(2511,'','YMA',17197,39,'Mayo, Mayo Airport (YMA)','1','0'),(2512,'GA','MYB',17198,80,'Mayoumba, GA - Mayumba Airport (MYB)','1','0'),(2513,'MX','MZT',17214,141,'Mazatlan, MX - Gen Rafael Buelna Intl Airport (MZT)','1','0'),(2514,'','MBU',17224,193,'Mbambanakira, Mbambanakira Airport (MBU)','1','0'),(2515,'CD','MDK',17225,52,'Mbandaka, CD - Mbandaka Airport (MDK)','1','0'),(2516,'','MBQ',17226,226,'Mbarara, Mbarara Airport (MBQ)','1','0'),(2517,'','MBI',17228,214,'Mbeya, Mbeya Airport (MBI)','1','0'),(2518,'US','MFE',17235,231,'Mcallen, US - McAllen Miller Intl Airport (MFE)','1','0'),(2519,'','MXY',17240,231,'Mccarthy, McCarthy Airport (MXY)','1','0'),(2520,'US','MCK',17244,231,'Mccook, US - McCook Ben Nelson Regional Airport (MCK)','1','0'),(2521,'US','MCG',17253,231,'Mcgrath, US - McGrath Airport (MCG)','1','0'),(2522,'US','ACV',17262,231,'Mckinleyville, US - Arcata - Eureka Airport (ACV)','1','0'),(2523,'US','RNC',17269,231,'Mcminnville, US - Warren County Memorial (RNC)','1','0'),(2524,'','MPR',17271,231,'Mcpherson, McPherson Airport (MPR)','1','0'),(2525,'','MQW',17273,231,'Mcrae, Telfair–Wheeler Airport (MQW)','1','0'),(2526,'','YLJ',17275,39,'Meadow Lake, Meadow Lake Airport (YLJ)','1','0'),(2527,'','MEJ',17279,231,'Meadville, Port Meadville Airport (MEJ)','1','0'),(2528,'CO','MDE',17295,49,'Medellin, CO - Jose Maria Cordova Airport (MDE)','1','0'),(2529,'US','MDF',17300,231,'Medford, US - Medford (MDF)','1','0'),(2530,'US','MFR',17300,231,'Medford, US - Rogue Valley Intl-Medford Airport (MFR)','1','0'),(2531,'CA','YXH',17306,39,'Medicine Hat, CA - Medicine Hat Airport (YXH)','1','0'),(2532,'','MND',17307,186,'Medina, Medina Airport (MND)','1','0'),(2533,'','MKR',17320,13,'Meekatharra, Meekatharra Airport (MKR)','1','0'),(2534,'','MEY',17335,153,'Meghauli, Meghauli Airport (MEY)','1','0'),(2535,'NO','MEH',17338,164,'Mehamn, NO - Mehamn Airport (MEH)','1','0'),(2536,'CN','MXZ',17350,46,'Meixian, CN - Meixian Airport (MXZ)','1','0'),(2537,'GA','MKB',17354,80,'Mekambo, GA - Mékambo Airport (MKB)','1','0'),(2538,'ET','MKS',17355,70,'Mekane Selam, ET - Mekane Selam Airport (MKS)','1','0'),(2539,'','MEK',17356,148,'Meknes, Bassatine Air Base (MEK)','1','0'),(2540,'US','MYU',17357,231,'Mekoryuk, US - Mekoryuk Airport (MYU)','1','0'),(2541,'US','MLB',17362,231,'Melbourne, US - Melbourne Intl Airport (MLB)','1','0'),(2542,'ES','MLN',17372,199,'Melilla, ES - Melilla Airport (MLN)','1','0'),(2543,'JP','MMB',17407,110,'Memanbetsu, JP - Memanbetsu Airport (MMB)','1','0'),(2544,'DE','FMM',17409,83,'Memmingen, DE - Memmingen Airport (FMM)','1','0'),(2545,'US','MEM',17411,231,'Memphis, US - Memphis Intl Airport (MEM)','1','0'),(2546,'','MZX',17412,70,'Mena, Mena Airport (MZX)','1','0'),(2547,'','NDM',17421,70,'Mendi, Mendi Airport (NDM)','1','0'),(2548,'AR','MDZ',17425,10,'Mendoza, AR - Governor Francisco Gabrielli Intl Airport (MDZ)','1','0'),(2549,'AO','SPP',17444,6,'Menongue, AO - Menongue Airport (SPP)','1','0'),(2550,'ID','MKQ',17468,102,'Merauke, ID - Mopah Airport (MKQ)','1','0'),(2551,'US','MCE',17471,231,'Merced, US - Merced Regional Airport (MacReady Field) (MCE)','1','0'),(2552,'','MDX',17472,231,'Mercedes, Mercedes Airport (MDX)','1','0'),(2553,'','RDE',17478,102,'Merdey, Merdey Airport (RDE)','1','0'),(2554,'MX','MID',17484,141,'Merida, MX - Manuel Crescencio Rejon Intl Airport (MID)','1','0'),(2555,'VE','MRD',17486,235,'Merida, VE - Carnevalli Airport (MRD)','1','0'),(2556,'','YMB',17512,39,'Merritt, Merritt Airport (YMB)','1','0'),(2557,'','MEP',17517,132,'Mersing, Mersing Airport (MEP)','1','0'),(2558,'TR','MZH',17526,222,'Merzifon, TR - Amasya Merzifon Airport (MZH)','1','0'),(2559,'US','MSC',31930,231,'Mesa, US - Falcon Field Airport (MSC)','1','0'),(2560,'','MFH',17540,231,'Mesquite, Mesquite Airport (MFH)','1','0'),(2561,'','MEZ',17545,195,'Messina, Messina Airport (MEZ)','1','0'),(2562,'','ANN',17565,231,'Metlakatla, Annette Island Airport (ANN)','1','0'),(2563,'MX','MXL',17584,141,'Mexicali, MX - Gen Rodolfo Sanchez Taboada Intl Airport (MXL)','1','0'),(2564,'ZM','MFU',17602,242,'Mfuwe, ZM - Mfuwe Airport (MFU)','1','0'),(2565,'US','MIA',31932,231,'Miami, US - Miami Intl Airport (MIA)','1','0'),(2566,'','TNT',31932,231,'Miami, Dade-Collier Training and Transition Airport (TNT)','1','0'),(2567,'','ZVA',17609,130,'Miandrivazo, Miandrivazo Airport (ZVA)','1','0'),(2568,'','MWD',17611,166,'Mianwali, PAF Base M.M. Alam (MWD)','1','0'),(2569,'','MMM',17634,13,'Middlemount, Middlemount Airport (MMM)','1','0'),(2570,'US','MAF',17645,231,'Midland, US - Midland Intl Airport (MAF)','1','0'),(2571,'FI','MIK',17680,75,'Mikkeli, FI - Mikkeli (MIK)','1','0'),(2572,'US','BML',17686,231,'Milan, US - Berlin Regional (BML)','1','0'),(2573,'US','MLS',17695,231,'Miles City, US - Frank Wiley Field Airport (MLS)','1','0'),(2574,'','MLF',17697,231,'Milford, Milford Municipal Airport (MLF)','1','0'),(2575,'','MFN',17700,157,'Milford Sound, Milford Sound Airport (MFN)','1','0'),(2576,'GR','MLO',17734,86,'Milos, GR - Milos Airport (MLO)','1','0'),(2577,'US','MKE',17744,231,'Milwaukee, US - General Mitchell Intl Airport (MKE)','1','0'),(2578,'MX','MTT',17759,141,'Minatitlan, MX - Minatitlan/Coatzacoalcos National Airport (MTT)','1','0'),(2579,'RU','MRV',17772,181,'Mineralnye Vody, RU - Min Vody Airport (MRV)','1','0'),(2580,'US','MSP',17783,231,'Minneapolis, US - Minneapolis-St Paul Intl Airport (MSP)','1','0'),(2581,'US','LVN',17786,231,'Minnesota City, US - Airlake (LVN)','1','0'),(2582,'US','ARV',17788,231,'Minocqua, US - Lakeland (Noble F. Lee Memorial Field) (ARV)','1','0'),(2583,'US','MOT',17793,231,'Minot, US - Minot Intl Airport (MOT)','1','0'),(2584,'','MHP',17794,20,'Minsk, Minsk-1 Airport (MHP)','1','0'),(2585,'BY','MSQ',17794,20,'Minsk, BY - Minsk Intl Airport (MSQ)','1','0'),(2586,'US','MNT',17798,231,'Minto, US - Minto Airport (MNT)','1','0'),(2587,'','MVX',17803,80,'Minvoul, Minvoul Airport (MVX)','1','0'),(2588,'','MFS',17810,172,'Miraflores, Miraflores Airport (MFS)','1','0'),(2589,'','MJR',17812,231,'Miramar, Miramar Airport (MJR)','1','0'),(2590,'CA','YCH',17817,39,'Miramichi, CA - Miramichi (YCH)','1','0'),(2591,'MY','MYY',17832,132,'Miri, MY - Miri Airport (MYY)','1','0'),(2592,'','MPD',17836,166,'Mirpur Khas, Sindhri Airport (MPD)','1','0'),(2593,'JP','MSJ',17840,110,'Misawa, JP - Misawa Airport (MSJ)','1','0'),(2594,'US','MSO',17853,231,'Missoula, US - Missoula Intl Airport (MSO)','1','0'),(2595,'LY','MRA',17860,123,'Misurata, LY - Misurata Airport (MRA)','1','0'),(2596,'US','MHE',17863,231,'Mitchell, US - Mitchell Municipal (MHE)','1','0'),(2597,'','MTQ',17863,231,'Mitchell, Mitchell Airport (MTQ)','1','0'),(2598,'','MZC',17879,80,'Mitzic, Mitzic Airport (MZC)','1','0'),(2599,'','MIP',17880,106,'Mitzpe Ramon, Mitzpe Ramon Airport (MIP)','1','0'),(2600,'JP','MYE',17884,110,'Miyake Jima, JP - Miyakejiima Airport (MYE)','1','0'),(2601,'JP','KMI',17889,110,'Miyazaki, JP - Miyazaki Airport (KMI)','1','0'),(2602,'ET','MTF',17892,70,'Mizan Teferi, ET - Mizan Teferi Airport (MTF)','1','0'),(2603,'','MBM',17894,195,'Mkambati, Mkambati Airport (MBM)','1','0'),(2604,'','MZQ',17895,195,'Mkuze, Mkuze Airport (MZQ)','1','0'),(2605,'ZA','MBD',17898,195,'Mmabatho, ZA - Mmabatho/Mafikeng Airport (MBD)','1','0'),(2606,'NO','MQN',31953,164,'Mo I Rana, NO - Mo i Rana Airport Rossvoll (MQN)','1','0'),(2607,'US','CNY',17900,231,'Moab, US - Canyonlands Field Airport (CNY)','1','0'),(2608,'','MGX',17901,80,'Moabi, Moabi Airport (MGX)','1','0'),(2609,'FJ','MFJ',17902,74,'Moala, FJ - Moala Airport (MFJ)','1','0'),(2610,'ID','ONI',17906,102,'Moanamani, ID - Moanamani Airport (ONI)','1','0'),(2611,'','MFF',17907,80,'Moanda, Moanda Airport (MFF)','1','0'),(2612,'','MNB',17907,80,'Moanda, Muanda Airport (MNB)','1','0'),(2613,'US','MOB',17910,231,'Mobile, US - Mobile Regional Airport (MOB)','1','0'),(2614,'','MBG',17911,231,'Mobridge, Mobridge Municipal Airport (MBG)','1','0'),(2615,'US','MOD',17917,231,'Modesto, US - Modesto City-County Airport (MOD)','1','0'),(2616,'BY','MVQ',17935,20,'Mogilev, BY - Mogilev (MVQ)','1','0'),(2617,'KM','NWA',17944,50,'Moheli, KM - Mohéli Bandar Es Eslam Airport (NWA)','1','0'),(2618,'US','MHV',17958,231,'Mojave, US - Mojave (MHV)','1','0'),(2619,'','MKH',17962,121,'Mokhotlong, Mokhotlong Airport (MKH)','1','0'),(2620,'','OKU',17967,151,'Mokuti Lodge, Mokuti Lodge Airport (OKU)','1','0'),(2621,'NO','MOL',17971,164,'Molde, NO - Molde Airport Aro (MOL)','1','0'),(2622,'US','MLI',17979,231,'Moline, US - Quad City Intl Airport (MLI)','1','0'),(2623,'KE','MBA',18001,113,'Mombasa, KE - Moi Intl Airport (MBA)','1','0'),(2624,'','MIF',18018,231,'Monahans, Roy Hurd Memorial Airport (MIF)','1','0'),(2625,'TN','MIR',18021,220,'Monastir, TN - Skanes Airport (MIR)','1','0'),(2626,'JP','MBE',18024,110,'Monbetsu, JP - Okhotsk Monbetsu Airport (MBE)','1','0'),(2627,'CA','YQM',18038,39,'Moncton, CA - Greater Moncton Intl Airport (YQM)','1','0'),(2628,'','MNR',18074,242,'Mongu, Mongu Airport (MNR)','1','0'),(2629,'','MYZ',18079,131,'Monkey Bay, Monkey Bay Airport (MYZ)','1','0'),(2630,'US','MLU',18094,231,'Monroe, US - Monroe Regional Airport (MLU)','1','0'),(2631,'LR','MLW',18097,122,'Monrovia, LR - Spriggs Payne Airport (MLW)','1','0'),(2632,'LR','ROB',18097,122,'Monrovia, LR - Roberts Intl Airport (ROB)','1','0'),(2633,'CA','YYY',31957,39,'Mont Joli, CA - Mont-Joli Airport (YYY)','1','0'),(2634,'','ROF',18119,231,'Montague, Montague Airport (ROF)','1','0'),(2635,'MC','MCM',18163,145,'Monte Carlo, MC - Monaco Heliport (MCM)','1','0'),(2636,'JM','MBJ',18188,109,'Montego Bay, JM - Sangster Intl Airport (MBJ)','1','0'),(2637,'US','MRY',18216,231,'Monterey, US - Monterey Peninsula Airport (MRY)','1','0'),(2638,'CO','MTR',18217,49,'Monteria, CO - Los Garzones Airport (MTR)','1','0'),(2639,'','MOY',18222,141,'Monterrey, Monterrey Airport (MOY)','1','0'),(2640,'MX','MTY',18222,141,'Monterrey, MX - Gen Mariano Escobedo Intl Airport (MTY)','1','0'),(2641,'BR','MOC',18223,30,'Montes Claros, BR - Montes Claros Airport (MOC)','1','0'),(2642,'UY','MVD',18237,230,'Montevideo, UY - Carrasco Intl Airport (MVD)','1','0'),(2643,'FR','AVN',18243,76,'Montfavet, FR - Avignon Airport (AVN)','1','0'),(2644,'US','MGM',18252,231,'Montgomery, US - Montgomery Regional Airport / Dannelly Field (MGM)','1','0'),(2645,'','MXC',18259,76,'Monticello, Monticello Airport (MXC)','1','0'),(2646,'US','MSV',18260,231,'Monticello, US - Sullivan County International (MSV)','1','0'),(2647,'FR','MCU',18280,76,'Montlucon, FR - Montluçon – Guéret Airport (MCU)','1','0'),(2648,'FR','MPL',18300,76,'Montpellier, FR - Frejorgues Airport (MPL)','1','0'),(2649,'CA','YHU',18301,39,'Montreal, CA - Saint-Hubert Airport (YHU)','1','0'),(2650,'CA','YMX',18301,39,'Montreal, CA - Mirabel Intl Airport (YMX)','1','0'),(2651,'CA','YUL',18301,39,'Montreal, CA - Pierre Elliott Trudeau Intl Airport (YUL)','1','0'),(2652,'US','MTJ',18314,231,'Montrose, US - Montrose Regional Airport (MTJ)','1','0'),(2653,'MS','MNI',18324,147,'Montserrat, MS - John A Osborne Airport (MNI)','1','0'),(2654,'','NYW',18333,150,'Monywa, Monywa Airport (NYW)','1','0'),(2655,'','MOO',18341,13,'Moomba, Moomba Airport (MOO)','1','0'),(2656,'PF','MOZ',18346,78,'Moorea, PF - Moorea Island - Temae Airport (MOZ)','1','0'),(2657,'CA','YMO',18363,39,'Moosonee, CA - Moosonee Airport (YMO)','1','0'),(2658,'SE','MXX',18366,209,'Mora, SE - Mora Siljan Airport (MXX)','1','0'),(2659,'','TVA',18369,130,'Morafenobe, Morafenobe Airport (TVA)','1','0'),(2660,'','MWB',18388,13,'Morawa, Morawa Airport (MWB)','1','0'),(2661,'','MHY',18403,231,'Morehead, Morehead Airport (MHY)','1','0'),(2662,'MX','MLM',18405,141,'Morelia, MX - Gen Francisco J Mujica Intl Airport (MLM)','1','0'),(2663,'US','MGW',18418,231,'Morgantown, US - Morgantown Municipal Airport (MGW)','1','0'),(2664,'JP','HNA',18429,110,'Morioka, JP - Iwate-Hanamaki Airport (HNA)','1','0'),(2665,'','MXM',18446,130,'Morombe, Morombe Airport (MXM)','1','0'),(2666,'MG','MOQ',18448,130,'Morondava, MG - Morondava Airport (MOQ)','1','0'),(2667,'KM','HAH',18450,50,'Moroni, KM - Prince Said Ibrahim Intl Airport (HAH)','1','0'),(2668,'','YVA',18450,50,'Moroni, Iconi Airport (YVA)','1','0'),(2669,'ID','OTI',18451,102,'Morotai Island, ID - Pitu Airport (OTI)','1','0'),(2670,'','MOX',18456,231,'Morris, Morris Municipal Airport (MOX)','1','0'),(2671,'US','MMU',18460,231,'Morristown, US - Morristown Municipal Airport (MMU)','1','0'),(2672,'','MOR',18460,231,'Morristown, Morristown Regional Airport (MOR)','1','0'),(2673,'','BKA',18487,231,'Moscow, Bykovo Airport (BKA)','1','0'),(2674,'','OSF',18487,231,'Moscow, Ostafyevo International Airport (OSF)','1','0'),(2675,'RU','DME',18488,181,'Moscow, RU - Domodedovo Intl Airport (DME)','1','0'),(2676,'RU','SVO',18488,181,'Moscow, RU - Sheremetyevo Intl Airport (SVO)','1','0'),(2677,'RU','VKO',18488,181,'Moscow, RU - Vnukovo Intl Airport (VKO)','1','0'),(2678,'US','KMY',18493,231,'Moser Bay, US - Moser Bay Seaplane Base (KMY)','1','0'),(2679,'US','MWH',18494,231,'Moses Lake, US - Grant County Intl Airport (MWH)','1','0'),(2680,'NO','MJF',18499,164,'Mosjoen, NO - Mosjoen Airport Kjaerstad (MJF)','1','0'),(2681,'','MSX',18510,51,'Mossendjo, Mossendjo Airport (MSX)','1','0'),(2682,'BA','OMO',18515,27,'Mostar, BA - Mostar Intl Airport (OMO)','1','0'),(2683,'VU','MTV',18520,233,'Mota Lava, VU - Mota Lava Airport (MTV)','1','0'),(2684,'','MZP',18533,157,'Motueka, Motueka Aerodrome (MZP)','1','0'),(2685,'','MJL',18538,80,'Mouila, Mouila Airport (MJL)','1','0'),(2686,'PG','HGU',18555,170,'Mount Hagen, PG - Kagamuga Airport (HGU)','1','0'),(2687,'','LLY',32011,231,'Mount Holly, South Jersey Regional Airport (LLY)','1','0'),(2688,'','MMG',32025,13,'Mount Magnet, Mount Magnet Airport (MMG)','1','0'),(2689,'','MPS',32031,231,'Mount Pleasant, Mount Pleasant Regional Airport (MPS)','1','0'),(2690,'','MSD',32031,231,'Mount Pleasant, Mount Pleasant Airport (MSD)','1','0'),(2691,'','MHS',32038,231,'Mount Shasta, Dunsmuir Municipal-Mott Airport (MHS)','1','0'),(2692,'','WMH',32055,231,'Mountain Home, Ozark Regional Airport (WMH)','1','0'),(2693,'US','MOU',32061,231,'Mountain Village, US - Mountain Village Airport (MOU)','1','0'),(2694,'','MBP',18582,172,'Moyobamba, Moyobamba Airport (MBP)','1','0'),(2695,'NA','MPA',18589,151,'Mpacha, NA - Katima Mulilo Airport (MPA)','1','0'),(2696,'','DUK',18597,195,'Mtubatuba, Dukuduku Airport (DUK)','1','0'),(2697,'TZ','MYW',18599,214,'Mtwara, TZ - Mtwara Airport (MYW)','1','0'),(2698,'AU','DGE',18608,13,'Mudgee, AU - Mudgee Airport (DGE)','1','0'),(2699,'MY','MKM',18637,132,'Mukah, MY - Mukah Airport (MKM)','1','0'),(2700,'YE','RIY',18638,240,'Mukalla, YE - Riyan Mukalla Airport (RIY)','1','0'),(2701,'YE','UKR',18642,240,'Mukeiras, YE - Mukeiras Airport (UKR)','1','0'),(2702,'','LII',18664,102,'Mulia, Mulia Airport (LII)','1','0'),(2703,'','MVK',18665,13,'Mulka, Mulka Airport (MVK)','1','0'),(2704,'','ULL',18666,482,'Mull, Glenforsa Airfield (ULL)','1','0'),(2705,'PK','MUX',18674,166,'Multan, PK - Multan Airport (MUX)','1','0'),(2706,'IN','BOM',18676,101,'Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)','1','0'),(2707,'US','MIE',18681,231,'Muncie, US - Delaware County Regional Airport (MIE)','1','0'),(2708,'SB','MUA',18683,193,'Munda, SB - Munda Airport (MUA)','1','0'),(2709,'','MNE',18691,13,'Mungeranie, Mungeranie Airport (MNE)','1','0'),(2710,'DE','MUC',18694,83,'Munich, DE - Franz Josef Strauss Airport (MUC)','1','0'),(2711,'ES','MJV',32065,199,'Murcia, ES - Murcia-San Javier Airport (MJV)','1','0'),(2712,'','RMU',32065,199,'Murcia, Región de Murcia International Airport (RMU)','1','0'),(2713,'RU','MMK',18732,181,'Murmansk, RU - Murmansk Airport (MMK)','1','0'),(2714,'','RBK',18750,231,'Murrieta, French Valley Airport (RBK)','1','0'),(2715,'OM','MCT',18762,165,'Muscat, OM - Seeb Intl Airport (MCT)','1','0'),(2716,'US','MSL',18764,231,'Muscle Shoals, US - Northwest Alabama Regional Airport (MSL)','1','0'),(2717,'US','MKG',18767,231,'Muskegon, US - Muskegon County Airport (MKG)','1','0'),(2718,'CA','MSA',18770,39,'Muskrat Dam, CA - Muskrat Dam Airport (MSA)','1','0'),(2719,'','MUZ',18771,214,'Musoma, Musoma Airport (MUZ)','1','0'),(2720,'','MUF',18784,102,'Muting, Muting Airport (MUF)','1','0'),(2721,'','UTB',18786,13,'Muttaburra, Muttaburra Airport (UTB)','1','0'),(2722,'','MFG',18796,166,'Muzaffarabad, Muzaffarabad Airport (MFG)','1','0'),(2723,'','MZU',18797,101,'Muzaffarpur, Muzaffarpur Airport (MZU)','1','0'),(2724,'TZ','MWZ',18798,214,'Mwanza, TZ - Mwanza Airport (MWZ)','1','0'),(2725,'US','MYR',18816,231,'Myrtle Beach, US - Myrtle Beach Intl Airport (MYR)','1','0'),(2726,'IN','MYQ',18821,101,'Mysore, IN - Mysore Airport (MYQ)','1','0'),(2727,'GR','MJT',18826,86,'Mytilene, GR - Mytilene Airport (MJT)','1','0'),(2728,'','MZF',18830,195,'Mzamba, Wild Coast Sun Airport (MZF)','1','0'),(2729,'','ZZU',18832,131,'Mzuzu, Mzuzu Airport (ZZU)','1','0'),(2730,'RU','NBC',18842,181,'Naberevnye Chelny, RU - Begishevo Airport (NBC)','1','0'),(2731,'ID','NBX',18844,102,'Nabire, ID - Nabire Airport (NBX)','1','0'),(2732,'','NCH',18850,214,'Nachingwea, Nachingwea Airport (NCH)','1','0'),(2733,'US','OCH',18853,231,'Nacogdoches, US - A. L. Mangham Jr. Regional (OCH)','1','0'),(2734,'FJ','NAN',18855,74,'Nadi, FJ - Nadi Intl Airport (NAN)','1','0'),(2735,'MA','NDR',18857,148,'Nador, MA - Nador Airport (NDR)','1','0'),(2736,'JP','NGS',18870,110,'Nagasaki, JP - Nagasaki Airport (NGS)','1','0'),(2737,'','OMJ',18870,110,'Nagasaki, Ōmura Airport (OMJ)','1','0'),(2738,'JP','NGO',18875,110,'Nagoya, JP - Chubu Centrair Intl Airport (NGO)','1','0'),(2739,'IN','NAG',18876,101,'Nagpur, IN - Sonegaon Airport (NAG)','1','0'),(2740,'ID','NAH',18881,102,'Naha, ID - Naha Airport (NAH)','1','0'),(2741,'CA','YDP',18891,39,'Nain, CA - Nain Airport (YDP)','1','0'),(2742,'KE','NBO',18894,113,'Nairobi, KE - Jomo Kenyatta Intl Airport (NBO)','1','0'),(2743,'KE','WIL',18894,113,'Nairobi, KE - Wilson Airport (WIL)','1','0'),(2744,'JP','SHB',18903,110,'Nakashibetsu, JP - Nakashibetsu Airport (SHB)','1','0'),(2745,'TH','NAK',34261,215,'Nakhon Ratchasima, TH - Nakhon Ratchasima (NAK)','1','0'),(2746,'','NNK',18907,231,'Naknek, Naknek Airport (NNK)','1','0'),(2747,'RU','NAL',18913,181,'Nalchik, RU - Nalchik Airport (NAL)','1','0'),(2748,'','NBH',18918,13,'Nambucca Heads, Nambucca Heads Airport (NBH)','1','0'),(2749,'AO','MSZ',18921,6,'Namibe, AO - Yuri Gagarin Airport (MSZ)','1','0'),(2750,'','NAM',18922,102,'Namlea, Namlea Airport (NAM)','1','0'),(2751,'','ANO',18926,149,'Nampula, Angoche Airport (ANO)','1','0'),(2752,'MZ','APL',18926,149,'Nampula, MZ - Nampula Airport (APL)','1','0'),(2753,'','NRE',18927,102,'Namrole, Namrole Airport (NRE)','1','0'),(2754,'NO','OSY',18928,164,'Namsos, NO - Namsos Airport Hoknesora (OSY)','1','0'),(2755,'','ZNU',18929,136,'Namu, Namu Water Aerodrome (ZNU)','1','0'),(2756,'CA','YCD',18933,39,'Nanaimo, CA - Nanaimo Airport (YCD)','1','0'),(2757,'CN','KHN',18939,46,'Nanchang, CN - Nanchang Changbei Intl Airport (KHN)','1','0'),(2758,'IN','NDC',18942,101,'Nanded, IN - Shri Guru Gobind Singh Ji Airport (NDC)','1','0'),(2759,'CA','YSR',18947,39,'Nanisivik, CA - Nanisivik Airport (YSR)','1','0'),(2760,'CN','NKG',18949,46,'Nanjing, CN - Nanjing Lukou Intl Airport (NKG)','1','0'),(2761,'GL','JNN',18955,87,'Nanortalik, GL - Nanortalik Heliport (JNN)','1','0'),(2762,'FR','NTE',18962,76,'Nantes, FR - Chateau Bougon Airport (NTE)','1','0'),(2763,'US','ACK',18969,231,'Nantucket, US - Nantucket Memorial Airport (ACK)','1','0'),(2764,'KE','NYK',18975,113,'Nanyuki, KE - Nanyuki Airfield (NYK)','1','0'),(2765,'US','APC',32073,231,'Napa, US - Napa County (APC)','1','0'),(2766,'NZ','NPE',18984,157,'Napier, NZ - Napier - Hawkes Bay Airport (NPE)','1','0'),(2767,'US','APF',18986,231,'Naples, US - Naples Municipal Airport (APF)','1','0'),(2768,'IT','NAP',18987,107,'Naples, IT - Capodichino Airport (NAP)','1','0'),(2769,'','NAU',18995,78,'Napuka, Napuka Airport (NAU)','1','0'),(2770,'','NRM',18996,110,'Nara, Keibane Airport (NRM)','1','0'),(2771,'','NAC',18997,13,'Naracoorte, Naracoorte Airport (NAC)','1','0'),(2772,'TH','NAW',19002,215,'Narathiwat, TH - Narathiwat Airport (NAW)','1','0'),(2773,'CO','NAR',19008,49,'Nare, CO - Puerto Nare Airport (NAR)','1','0'),(2774,'GL','UAK',19025,87,'Narsarsuaq, GL - Narsarsuaq (UAK)','1','0'),(2775,'NO','NVK',19030,164,'Narvik, NO - Narvik Airport Framnes (NVK)','1','0'),(2776,'','ISK',19034,101,'Nashik, Ozar Airport (ISK)','1','0'),(2777,'US','ASH',19035,231,'Nashua, US - Boire Field (ASH)','1','0'),(2778,'US','BNA',19036,231,'Nashville, US - Nashville Intl Airport (BNA)','1','0'),(2779,'BR','NAT',19049,30,'Natal, BR - Augusto Severo Airport (NAT)','1','0'),(2780,'CA','YNA',19054,39,'Natashquan, CA - Natashquan Airport (YNA)','1','0'),(2781,'BR','NVT',19092,30,'Navegantes, BR - Navegantes Airport (NVT)','1','0'),(2782,'','NZC',19110,172,'Nazca, Maria Reiche Neuman Airport (NZC)','1','0'),(2783,'ZM','NLA',19115,242,'Ndola, ZM - Ndola Airport (NLA)','1','0'),(2784,'','NCI',19128,49,'Necocli, Antioquia Airport (NCI)','1','0'),(2785,'','GXG',19144,6,'Negage, Negage Airport (GXG)','1','0'),(2786,'LK','CMB',19147,200,'Negombo, LK - Bandaranaike Intl Airport (CMB)','1','0'),(2787,'JM','NEG',19151,109,'Negril, JM - Negril Aerodrome (NEG)','1','0'),(2788,'SA','EAM',19158,186,'Nejran, SA - Nejran Airport (EAM)','1','0'),(2789,'ET','NEK',19159,70,'Nekemt, ET - Nekemte Airport (NEK)','1','0'),(2790,'NZ','NSN',19168,157,'Nelson, NZ - Nelson Airport (NSN)','1','0'),(2791,'US','NLG',19170,231,'Nelson Lagoon, US - Nelson Lagoon Airport (NLG)','1','0'),(2792,'ZA','NLP',19173,195,'Nelspruit, ZA - Nelspruit Airport (NLP)','1','0'),(2793,'CA','YNS',19180,39,'Nemiscau, CA - Nemiscau Airport (YNS)','1','0'),(2794,'','ENN',19183,231,'Nenana, Nenana Municipal Airport (ENN)','1','0'),(2795,'','NPH',19192,231,'Nephi, Nephi Municipal Airport (NPH)','1','0'),(2796,'RU','NER',19206,181,'Neryungri, RU - Neryungri Airport (NER)','1','0'),(2797,'AR','CPC',19252,10,'Neuquen, AR - Aviador Carlos Campos Airport (CPC)','1','0'),(2798,'AR','NQN',19252,10,'Neuquen, AR - Presidente Peron Intl Airport (NQN)','1','0'),(2799,'US','BAM',19274,231,'Nevada, US - Battle Mountain (Lander County) (BAM)','1','0'),(2800,'FR','NVS',19275,76,'Nevers, FR - Nevers (NVS)','1','0'),(2801,'KN','NEV',19281,202,'Nevis, KN - Newcastle Airport (NEV)','1','0'),(2802,'US','EWB',32091,231,'New Bedford, US - New Bedford Regional Airport (EWB)','1','0'),(2803,'US','EWN',32093,231,'New Bern, US - Coastal Carolina Regional Airport (EWN)','1','0'),(2804,'US','HVN',32119,231,'New Haven, US - Tweed - New Haven Airport (HVN)','1','0'),(2805,'US','LFT',32124,231,'New Iberia, US - Lafayette Regional Airport (LFT)','1','0'),(2806,'US','MSY',32137,231,'New Orleans, US - Louis Armstrong New Orleans Intl Airport (MSY)','1','0'),(2807,'US','KNW',32153,231,'New Stuyahok, US - New Stuyahok Airport (KNW)','1','0'),(2808,'US','EWR',32159,231,'New York, US - Newark Liberty Intl Airport (EWR)','1','0'),(2809,'US','JFK',32159,231,'New York, US - John F Kennedy Intl Airport (JFK)','1','0'),(2810,'US','JRB',32159,231,'New York, US - Downtown Manhattan H/p Airport (JRB)','1','0'),(2811,'US','LGA',32159,231,'New York, US - LaGuardia Airport (LGA)','1','0'),(2812,'','ECS',19311,482,'Newcastle, Mondell Field (ECS)','1','0'),(2813,'GB','NCL',19311,482,'Newcastle, GB - Newcastle Airport (NCL)','1','0'),(2814,'','NCS',19311,482,'Newcastle, Newcastle Airport (NCS)','1','0'),(2815,'AU','BEO',19313,13,'Newcastle, AU - Newcastle - Belmont Airport (BEO)','1','0'),(2816,'','NPT',19345,105,'Newport, Newport State Airport (NPT)','1','0'),(2817,'','NWH',19345,105,'Newport, Parlin Field (NWH)','1','0'),(2818,'US','WWT',19352,231,'Newtok, US - Newtok Airport (WWT)','1','0'),(2819,'','NVY',19365,101,'Neyveli, Neyveli Airport (NVY)','1','0'),(2820,'','RPM',19378,13,'Ngukurr, Ngukurr Airport (RPM)','1','0'),(2821,'US','IAG',19383,231,'Niagara Falls, US - Niagara Falls Intl Airport (IAG)','1','0'),(2822,'FR','NCE',19391,76,'Nice, FR - Cote d`Azur Airport (NCE)','1','0'),(2823,'','NIC',19399,57,'Nicosia, Nicosia International Airport (NIC)','1','0'),(2824,'','NCT',19401,54,'Nicoya, Nicoya Guanacaste Airport (NCT)','1','0'),(2825,'US','NME',19443,231,'Nightmute, US - Nightmute Airport (NME)','1','0'),(2826,'JP','KIJ',19445,110,'Niigata, JP - Niigata Airport (KIJ)','1','0'),(2827,'US','NIB',19457,231,'Nikolai, US - Nikolai Airport (NIB)','1','0'),(2828,'','NIG',19463,114,'Nikunau, Nikunau Airport (NIG)','1','0'),(2829,'','NLE',19467,231,'Niles, Jerry Tyler Memorial Airport (NLE)','1','0'),(2830,'FR','FNI',19473,76,'Nimes, FR - Nimes Airport (FNI)','1','0'),(2831,'CN','NGB',19474,46,'Ningbo, CN - Ningbo Lishe Intl Airport (NGB)','1','0'),(2832,'','NIN',19478,231,'Ninilchik, Ninilchik Airport (NIN)','1','0'),(2833,'','NIO',19481,52,'Nioki, Nioki Airport (NIO)','1','0'),(2834,'YU','INI',19485,241,'Nis, YU - Constantine the Great Airport (INI)','1','0'),(2835,'TO','NTT',19499,218,'Niuatoputapu, TO - Niuatoputapu Airport (NTT)','1','0'),(2836,'RU','GOJ',19506,181,'Nizhniy Novgorod, RU - Nizhniy Novgorod Airport (GOJ)','1','0'),(2837,'','NKY',19510,51,'Nkayi, Yokangassi Airport (NKY)','1','0'),(2838,'US','WTK',19517,231,'Noatak, US - Noatak Airport (WTK)','1','0'),(2839,'US','NNL',19556,231,'Nondalton, US - Nondalton Airport (NNL)','1','0'),(2840,'','NON',19560,114,'Nonouti, Nonouti Airport (NON)','1','0'),(2841,'US','ORV',19569,231,'Noorvik, US - Noorvik Airport (ORV)','1','0'),(2842,'','NSV',19571,13,'Noosaville, Noosa Airport (NSV)','1','0'),(2843,'DE','NRD',19587,83,'Norderney, DE - Norderney Airport (NRD)','1','0'),(2844,'UK','KNF',19601,231,'Norfolk, UK - Marham RAF (KNF)','1','0'),(2845,'US','OFK',19601,231,'Norfolk, US - Karl Stefan Memorial Airport (OFK)','1','0'),(2846,'US','ORF',19601,231,'Norfolk, US - Norfolk Intl Airport (ORF)','1','0'),(2847,'NF','NLK',19603,162,'Norfolk Island, NF - Norfolk Island Airport (NLK)','1','0'),(2848,'RU','NSK',19605,181,'Norilsk, RU - Norilsk Airport (NSK)','1','0'),(2849,'CA','YVQ',34698,39,'Norman Wells, CA - Norman Wells (YVQ)','1','0'),(2850,'SE','NRK',19616,209,'Norrkoping, SE - Kungsangen Airport (NRK)','1','0'),(2851,'','NSM',19618,13,'Norseman, Norseman Airport (NSM)','1','0'),(2852,'VU','NUS',19619,233,'Norsup, VU - Norsup Airport (NUS)','1','0'),(2853,'CA','YQW',19623,39,'North Battleford, CA - North Battleford (YQW)','1','0'),(2854,'US','CAK',32195,231,'North Canton, US - Akron Canton Regional Airport (CAK)','1','0'),(2855,'BS','ELH',19628,16,'North Eleuthera, BS - North Eleuthera Airport (ELH)','1','0'),(2856,'','NCO',32240,231,'North Kingstown, Quonset State Airport (NCO)','1','0'),(2857,'US','LBF',32265,231,'North Platte, US - North Platte Regional Airport/Lee Bird Field (LBF)','1','0'),(2858,'GB','NRL',32279,482,'North Ronaldsay, GB - North Ronaldsay Airport (NRL)','1','0'),(2859,'CA','YNE',19686,39,'Norway House, CA - Norway House Airport (YNE)','1','0'),(2860,'','NQT',19704,469,'Nottingham, Nottingham Airport (NQT)','1','0'),(2861,'MR','NKC',19706,138,'Nouakchott, MR - Nouakchott Airport (NKC)','1','0'),(2862,'NC','GEA',19707,156,'Noumea, NC - Magenta Airport (GEA)','1','0'),(2863,'NC','NOU',19707,156,'Noumea, NC - Tontouta Airport (NOU)','1','0'),(2864,'','NOT',19713,231,'Novato, Marin County Airport (NOT)','1','0'),(2865,'RU','NOZ',19732,181,'Novokuznetsk, RU - Spichenkovo Airport (NOZ)','1','0'),(2866,'RU','OVB',19734,181,'Novosibirsk, RU - Tolmachevo Airport (OVB)','1','0'),(2867,'MX','NLD',19758,141,'Nuevo Laredo, MX - Quetzalcoatl Intl Airport (NLD)','1','0'),(2868,'US','NUI',19761,231,'Nuiqsut, US - Nuiqsut Airport (NUI)','1','0'),(2869,'PF','NHV',19764,78,'Nuku Hiva, PF - Nuku Hiva (NHV)','1','0'),(2870,'UZ','NCU',19767,232,'Nukus, UZ - Nukus Airport (NCU)','1','0'),(2871,'US','NUL',19769,231,'Nulato, US - Nulato Airport (NUL)','1','0'),(2872,'','NUB',19774,13,'Numbulwar, Numbulwar Airport (NUB)','1','0'),(2873,'','FOO',19775,102,'Numfoor, Kornasoren Airport (FOO)','1','0'),(2874,'US','NUP',19776,231,'Nunapitchuk, US - Nunapitchuk Airport (NUP)','1','0'),(2875,'DE','NUE',19786,83,'Nuremberg, DE - Nuremberg Airport (NUE)','1','0'),(2876,'GL','GOH',19796,87,'Nuuk, GL - Nuuk Airport (GOH)','1','0'),(2877,'','NUA',19797,200,'Nuwara Eliya, Gregory Lake Seaplane Base (NUA)','1','0'),(2878,'','ZNC',19799,231,'Nyac, Nyac Airport (ZNC)','1','0'),(2879,'','NYN',19813,13,'Nyngan, Nyngan Airport (NYN)','1','0'),(2880,'US','ODW',32327,231,'Oak Harbor, US - AJ Eisenberg Airport (ODW)','1','0'),(2881,'','ODC',19828,231,'Oakdale, Oakdale Airport (ODC)','1','0'),(2882,'US','OAK',19831,231,'Oakland, US - Metropolitan Oakland Intl Airport (OAK)','1','0'),(2883,'','ODM',19831,231,'Oakland, Garrett County Airport (ODM)','1','0'),(2884,'NZ','OAM',19842,157,'Oamaru, NZ - Oamaru Aerodrome (OAM)','1','0'),(2885,'','OBA',19844,469,'Oban, Oban Airport (OBA)','1','0'),(2886,'','OBD',19845,102,'Obano, Obano Airport (OBD)','1','0'),(2887,'DE','OBF',19872,83,'Oberpfaffenhofen, DE - Oberpfaffenhofen (OBF)','1','0'),(2888,'JP','OBO',19896,110,'Obihiro, JP - Tokachi-Obihiro Airport (OBO)','1','0'),(2889,'','OBC',19897,60,'Obock, Obock Airport (OBC)','1','0'),(2890,'','OCV',19904,49,'Ocana, Aguas Claras Airport (OCV)','1','0'),(2891,'','ZOF',19909,39,'Ocean Falls, Ocean Falls Water Aerodrome (ZOF)','1','0'),(2892,'JM','OCJ',19911,109,'Ocho Rios, JM - Ian Fleming Intl Airport (OCJ)','1','0'),(2893,'DK','ODE',19926,59,'Odense, DK - Odense Airport (ODE)','1','0'),(2894,'UA','ODS',19932,227,'Odessa, UA - Odessa Central - Tsentrainy Airport (ODS)','1','0'),(2895,'','OGA',19954,231,'Ogallala, Searle Field (OGA)','1','0'),(2896,'US','OGS',19956,231,'Ogdensburg, US - Ogdensburg Intl Airport (OGS)','1','0'),(2897,'MK','OHD',19969,129,'Ohrid, MK - Ohrid Airport (OHD)','1','0'),(2898,'','OYK',19972,30,'Oiapoque, Oiapoque Airport (OYK)','1','0'),(2899,'JP','OIT',19978,110,'Oita, JP - Oita Airport (OIT)','1','0'),(2900,'','OKQ',19983,102,'Okaba, Okaba Airport (OKQ)','1','0'),(2901,'JP','OKJ',19991,110,'Okayama, JP - Okayama Airport (OKJ)','1','0'),(2902,'JP','OKE',20006,110,'Okino Erabu, JP - Okinoerabu Airport (OKE)','1','0'),(2903,'','OKN',20011,80,'Okondja, Okondja Airport (OKN)','1','0'),(2904,'','OKG',20013,51,'Okoyo, Okoyo Airport (OKG)','1','0'),(2905,'','OKL',20015,102,'Oksibil, Gunung Bintang Airport (OKL)','1','0'),(2906,'JP','OIR',20017,110,'Okushiri, JP - Okushiri Airport (OIR)','1','0'),(2907,'','OFJ',20018,100,'Olafsfjordur, Ólafsfjörður Airport (OFJ)','1','0'),(2908,'','JCI',20023,231,'Olathe, New Century AirCenter (JCI)','1','0'),(2909,'IT','OLB',20027,107,'Olbia, IT - Costa Smeralda Airport (OLB)','1','0'),(2910,'CA','YOC',32342,39,'Old Crow, CA - Old Crow Airport (YOC)','1','0'),(2911,'','ONY',20075,231,'Olney, Olney Municipal Airport (ONY)','1','0'),(2912,'','OLO',20079,58,'Olomouc, Olomouc Airport (OLO)','1','0'),(2913,'','OLJ',20084,233,'Olpoi, Olpoi Airport (OLJ)','1','0'),(2914,'US','OLM',20092,231,'Olympia, US - Hoskins Field Airport (OLM)','1','0'),(2915,'','MIQ',32358,231,'Omaha, Millard Airport (MIQ)','1','0'),(2916,'US','OMA',32358,231,'Omaha, US - Eppley Airfield (OMA)','1','0'),(2917,'GA','OMB',20102,80,'Omboue, GA - Omboué Hospital Airport (OMB)','1','0'),(2918,'RU','OMS',20113,181,'Omsk, RU - Omsk Airport (OMS)','1','0'),(2919,'NA','OND',20122,151,'Ondangwa, NA - Ondangwa Airport (OND)','1','0'),(2920,'','ONH',20131,231,'Oneonta, Oneonta Municipal Airport (ONH)','1','0'),(2921,'','ONU',20137,74,'Ono-i-lau, Ono-i-Lau Airport (ONU)','1','0'),(2922,'','OOT',20138,114,'Onotoa, Onotoa Airport (OOT)','1','0'),(2923,'','ONS',20140,13,'Onslow, Onslow Airport (ONS)','1','0'),(2924,'US','ONT',20141,231,'Ontario, US - Ontario Intl Airport (ONT)','1','0'),(2925,'BE','OST',20151,21,'Oostende, BE - Bruges Intl Airport (OST)','1','0'),(2926,'','OPW',20177,151,'Opuwo, Opuwa Airport (OPW)','1','0'),(2927,'RO','OMR',20180,179,'Oradea, RO - Oradea Intl Airport (OMR)','1','0'),(2928,'DZ','ORN',20183,3,'Oran, DZ - Oran Es Senia Airport (ORN)','1','0'),(2929,'NA','OMD',20190,151,'Oranjemund, NA - Oranjemund Airport (OMD)','1','0'),(2930,'TW','KYD',20207,212,'Orchid Island, TW - Lanyu Airport (KYD)','1','0'),(2931,'','OGU',20215,222,'Ordu, Ordu-Giresun Airport (OGU)','1','0'),(2932,'SE','ORB',20219,209,'Orebro, SE - Bofors Airport (ORB)','1','0'),(2933,'','FNU',20246,107,'Oristano, Oristano-Fenosu Airport (FNU)','1','0'),(2934,'US','MCO',20252,231,'Orlando, US - Orlando Intl Airport (MCO)','1','0'),(2935,'US','SFB',20252,231,'Orlando, US - Orlando Sanford Intl Airport (SFB)','1','0'),(2936,'','ORW',20257,166,'Ormara, Ormara Airport (ORW)','1','0'),(2937,'SE','OER',20267,209,'Ornskoldsvik, SE - Ornskoldsvik Airport (OER)','1','0'),(2938,'CO','ORC',20268,49,'Orocue, CO - Orocue Airport (ORC)','1','0'),(2939,'','ORS',20278,13,'Orpheus Island, Orpheus Island Resort Waterport (ORS)','1','0'),(2940,'JP','KIX',32378,110,'Osaka, JP - Kansai Intl Airport (KIX)','1','0'),(2941,'','OSC',20301,231,'Oscoda, Oscoda–Wurtsmith Airport (OSC)','1','0'),(2942,'KG','OSS',20303,117,'Osh, KG - Osh Airport (OSS)','1','0'),(2943,'','OHI',20304,151,'Oshakati, Oshakati Airport (OHI)','1','0'),(2944,'CA','YOO',20305,39,'Oshawa, CA - Oshawa Airport (YOO)','1','0'),(2945,'','OKS',20306,231,'Oshkosh, Garden County Airport (OKS)','1','0'),(2946,'US','OSH',20306,231,'Oshkosh, US - Wittman Regional Airport (OSH)','1','0'),(2947,'SE','OSK',20312,209,'Oskarshamn, SE - Oskarshamn Airport (OSK)','1','0'),(2948,'NO','OSL',20314,164,'Oslo, NO - Oslo Intl Airport Gardermoen (OSL)','1','0'),(2949,'NO','RYG',20314,164,'Oslo, NO - Moss Airport Rygge (RYG)','1','0'),(2950,'NO','TRF',20314,164,'Oslo, NO - Sandefjord Airport Torp (TRF)','1','0'),(2951,'CL','ZOS',20329,45,'Osorno, CL - Osorno Airport (ZOS)','1','0'),(2952,'SE','OSD',20353,209,'Ostersund, SE - Ostersund Airport (OSD)','1','0'),(2953,'','OTJ',20386,151,'Otjiwarongo, Otjiwarongo Airport (OTJ)','1','0'),(2954,'CA','YOW',20398,39,'Ottawa, CA - Macdonald-Cartier Intl Airport (YOW)','1','0'),(2955,'CA','YRO',20398,39,'Ottawa, CA - Ottawa/Rockcliffe (YRO)','1','0'),(2956,'US','OTM',20412,231,'Ottumwa, US - Ottumwa Industrial (OTM)','1','0'),(2957,'CO','OTU',20413,49,'Otu, CO - Alberto Jaramillo Sanchez Airport (OTU)','1','0'),(2958,'BF','OUA',20415,35,'Ouagadougou, BF - Ouagadougou Airport (OUA)','1','0'),(2959,'DZ','OGX',20417,3,'Ouargla, DZ - Ain Beida Airport (OGX)','1','0'),(2960,'MA','OZZ',20418,148,'Ouarzazate, MA - Ouarzazate Airport (OZZ)','1','0'),(2961,'CG','OUE',20429,51,'Ouesso, CG - Ouésso Airport (OUE)','1','0'),(2962,'MA','OUD',20434,148,'Oujda, MA - Les Angades Airport (OUD)','1','0'),(2963,'FI','OUL',20439,75,'Oulu, FI - Oulu Airport (OUL)','1','0'),(2964,'NC','UVE',20457,156,'Ouvea, NC - Ouvea Airport (UVE)','1','0'),(2965,'','OYN',20458,13,'Ouyen, Ouyen Airport (OYN)','1','0'),(2966,'IL','VDA',20464,106,'Ovda, IL - Ovda Airport (VDA)','1','0'),(2967,'','FTX',20482,51,'Owando, Owando Airport (FTX)','1','0'),(2968,'US','OWB',20488,231,'Owensboro, US - Daviess County Airport (OWB)','1','0'),(2969,'US','OXR',20498,231,'Oxnard, US - Oxnard Airport (OXR)','1','0'),(2970,'','OYE',20500,80,'Oyem, Oyem Airport (OYE)','1','0'),(2971,'ID','AEG',20539,102,'Padang, ID - Aek Godang Airport (AEG)','1','0'),(2972,'ID','PDG',20539,102,'Padang, ID - Tabing Airport (PDG)','1','0'),(2973,'DE','PAD',20543,83,'Paderborn, DE - Paderborn/Lippstadt Airport (PAD)','1','0'),(2974,'US','PAH',20549,231,'Paducah, US - Barkley Regional Airport (PAH)','1','0'),(2975,'AS','PPG',20561,4,'Pago Pago, AS - Pago Pago (Tafuna) Intl Airport (PPG)','1','0'),(2976,'','PGO',20562,231,'Pagosa Springs, Stevens Field (PGO)','1','0'),(2977,'','RON',20581,49,'Paipa, Juan José Rondón Airport (RON)','1','0'),(2978,'LA','PKZ',20594,118,'Pakse, LA - Pakse Intl Airport (PKZ)','1','0'),(2979,'','PLF',32393,231,'Pala, Pala Airport (PLF)','1','0'),(2980,'','PCH',20596,231,'Palacios, Palacios Airport (PCH)','1','0'),(2981,'','PSX',20596,231,'Palacios, Palacios Municipal Airport (PSX)','1','0'),(2982,'LT','PLQ',20608,125,'Palanga, LT - Palanga Airport (PLQ)','1','0'),(2983,'ID','PKY',20609,102,'Palangkaraya, ID - Tjilik Riwut (Panarung) Airport (PKY)','1','0'),(2984,'ID','PLM',20621,102,'Palembang, ID - Badaruddin Ii Airport (PLM)','1','0'),(2985,'','PQM',20623,141,'Palenque, Palenque International Airport (PQM)','1','0'),(2986,'','LBH',20647,12,'Palm Beach, Palm Beach Water Airport (LBH)','1','0'),(2987,'','PLI',20648,204,'Palm Island, Palm Island Airport (PLI)','1','0'),(2988,'','PMK',20648,204,'Palm Island, Palm Island Airport (PMK)','1','0'),(2989,'ES','PMI',32395,199,'Palma De Mallorca, ES - Palma de Mallorca (Son Sant Joan) Airport (PMI)','1','0'),(2990,'CR','PMZ',20652,54,'Palmar, CR - Palmar Sur Airport (PMZ)','1','0'),(2991,'BR','PMW',20655,30,'Palmas, BR - Palmas Airport (PMW)','1','0'),(2992,'US','PAQ',20659,231,'Palmer, US - Palmer Municipal (PAQ)','1','0'),(2993,'','PMX',20659,231,'Palmer, Metropolitan Airport (PMX)','1','0'),(2994,'NZ','PMR',20664,157,'Palmerston North, NZ - Palmerston North Airport (PMR)','1','0'),(2995,'','PMS',20669,231,'Palmyra, Palmyra Airport (PMS)','1','0'),(2996,'ID','PLW',20677,102,'Palu, ID - Mutiara Airport (PLW)','1','0'),(2997,'ES','PNA',20685,199,'Pamplona, ES - Pamplona Airport (PNA)','1','0'),(2998,'US','PFN',20693,231,'Panama City, US - Bay County Intl Airport (PFN)','1','0'),(2999,'ID','PKN',20713,102,'Pangkalanbuun, ID - Iskandar Airport (PKN)','1','0'),(3000,'ID','PGK',20714,102,'Pangkalpinang, ID - Depati Amir Airport (PGK)','1','0'),(3001,'MY','PKG',20715,132,'Pangkor, MY - Pangkor Airport (PKG)','1','0'),(3002,'CA','YXP',20717,39,'Pangnirtung, CA - Pangnirtung Airport (YXP)','1','0'),(3003,'','PNU',20720,231,'Panguitch, Panguitch Municipal Airport (PNU)','1','0'),(3004,'PK','PJG',20723,166,'Panjgur, PK - Panjgur Airport (PJG)','1','0'),(3005,'IT','PNL',20735,107,'Pantelleria, IT - Pantelleria Airport (PNL)','1','0'),(3006,'IN','PGH',20739,101,'Pantnagar, IN - Pantnagar Airport (PGH)','1','0'),(3007,'','WPO',20746,231,'Paonia, North Fork Valley Airport (WPO)','1','0'),(3008,'GB','PPW',20747,482,'Papa Westray, GB - Papa Westray Airport (PPW)','1','0'),(3009,'PF','PPT',20756,78,'Papeete, PF - Tahiti - Faaa Airport (PPT)','1','0'),(3010,'CY','PFO',20761,57,'Paphos, CY - Paphos Intl Airport (PFO)','1','0'),(3011,'','PYS',20772,231,'Paradise, Paradise Skypark (PYS)','1','0'),(3012,'','YDE',20775,39,'Paradise River, Paradise River Airport (YDE)','1','0'),(3013,'','ORG',20786,206,'Paramaribo, Zorg en Hoop Airport (ORG)','1','0'),(3014,'SR','PBM',20786,206,'Paramaribo, SR - Zanderij Intl Airport (PBM)','1','0'),(3015,'NZ','PPQ',20794,157,'Paraparaumu, NZ - Kapiti Coast Airport (PPQ)','1','0'),(3016,'','SIW',20795,102,'Parapat, Sibisa Airport (SIW)','1','0'),(3017,'','PRS',20796,193,'Parasi, Parasi Airport (PRS)','1','0'),(3018,'FR','CDG',20822,76,'Paris, FR - Charles De Gaulle (Roissy) Airport (CDG)','1','0'),(3019,'FR','ORY',20822,76,'Paris, FR - Orly Airport (ORY)','1','0'),(3020,'','VIY',20822,76,'Paris, Vélizy – Villacoublay Air Base (VIY)','1','0'),(3021,'FR','XCR',20822,76,'Paris, FR - Chalons Vatry Airport (XCR)','1','0'),(3022,'US','PRX',20823,231,'Paris, US - Cox Field (PRX)','1','0'),(3023,'US','PKB',20827,231,'Parkersburg, US - Mid-Ohio Valley Regional Airport (PKB)','1','0'),(3024,'IT','PMF',20841,107,'Parma, IT - Giuseppe Verdi Airport (PMF)','1','0'),(3025,'','PDN',20845,13,'Parndana, Parndana Airport (PDN)','1','0'),(3026,'BT','PBH',20849,25,'Paro, BT - Paro Airport (PBH)','1','0'),(3027,'','PGL',20877,231,'Pascagoula, Trent Lott International Airport (PGL)','1','0'),(3028,'US','PSC',20878,231,'Pasco, US - Tri-Cities Airport (PSC)','1','0'),(3029,'','IXT',34457,101,'Pasighat, Pasighat Airport (IXT)','1','0'),(3030,'PK','PSI',20884,166,'Pasni, PK - Pasni Airport (PSI)','1','0'),(3031,'BR','PFB',20891,30,'Passo Fundo, BR - Passo Fundo Airport (PFB)','1','0'),(3032,'CO','PSO',20893,49,'Pasto, CO - Antonio Narino Airport (PSO)','1','0'),(3033,'','IXP',20909,101,'Pathankot, Pathankot Airport (IXP)','1','0'),(3034,'IN','PAT',20918,101,'Patna, IN - Patna Airport (PAT)','1','0'),(3035,'GR','GPA',20921,86,'Patras, GR - Araxos Airport (GPA)','1','0'),(3036,'IS','PFJ',20922,100,'Patreksfjordur, IS - Patreksfjörður Airport (PFJ)','1','0'),(3037,'','PAN',20924,215,'Pattani, Pattani Airport (PAN)','1','0'),(3038,'','PYX',20925,215,'Pattaya, Pattaya Airpark (PYX)','1','0'),(3039,'CA','YPC',20937,39,'Paulatuk, CA - Nora Aliqatchialuk Ruben Airport (YPC)','1','0'),(3040,'KZ','PWQ',20944,112,'Pavlodar, KZ - Pavlodar Airport (PWQ)','1','0'),(3041,'UY','PDU',20960,230,'Paysandu, UY - Paysandu (PDU)','1','0'),(3042,'','PJB',20961,231,'Payson, Payson Airport (PJB)','1','0'),(3043,'CA','YPE',20965,39,'Peace River, CA - Peace River (YPE)','1','0'),(3044,'','PGS',20966,231,'Peach Springs, Grand Canyon Caverns Airport (PGS)','1','0'),(3045,'US','PDB',20998,231,'Pedro Bay, US - Pedro Bay Airport (PDB)','1','0'),(3046,'ID','PKU',21026,102,'Pekanbaru, ID - Simpang Tiga Airport (PKU)','1','0'),(3047,'US','PLN',21045,231,'Pellston, US - Pellston Regional Airport (PLN)','1','0'),(3048,'CA','YBB',21046,39,'Pelly Bay, CA - Kugaaruk Airport (formerly Pelly Bay Airport) (YBB)','1','0'),(3049,'CA','YUF',21046,39,'Pelly Bay, CA - Dewline Site Airport (YUF)','1','0'),(3050,'BR','PET',21049,30,'Pelotas, BR - Pelotas Intl Airport (PET)','1','0'),(3051,'MZ','POL',21052,149,'Pemba, MZ - Pemba Airport (POL)','1','0'),(3052,'CA','YTA',21060,39,'Pembroke, CA - Pembroke (YTA)','1','0'),(3053,'MY','PEN',21074,132,'Penang, MY - Penang Intl Airport (PEN)','1','0'),(3054,'US','PDT',21082,231,'Pendleton, US - Eastern Oregon Regional Airport at Pendleton (PDT)','1','0'),(3055,'CK','PYE',21103,53,'Penrhyn Island, CK - Tongareva Airport (PYE)','1','0'),(3056,'US','PNS',21107,231,'Pensacola, US - Pensacola Regional Airport (PNS)','1','0'),(3057,'GB','PZE',21116,482,'Penzance, GB - Penzance Airport (PZE)','1','0'),(3058,'US','PIA',21119,231,'Peoria, US - Gen Wayne A. Downing Peoria Intl Airport (PIA)','1','0'),(3059,'CO','PEI',21134,49,'Pereira, CO - Matecana Airport (PEI)','1','0'),(3060,'FR','PGX',21147,76,'Perigueux, FR - Perigueux Bassillac Airport (PGX)','1','0'),(3061,'','PMQ',21153,10,'Perito Moreno, Perito Moreno Airport (PMQ)','1','0'),(3062,'RU','PEE',21162,181,'Perm, RU - Perm Airport (PEE)','1','0'),(3063,'FR','PGF',21172,76,'Perpignan, FR - Rivesaltes Airport (PGF)','1','0'),(3064,'','FPY',21177,231,'Perry, Perry-Foley Airport (FPY)','1','0'),(3065,'','PRO',21177,231,'Perry, Perry Municipal Airport (PRO)','1','0'),(3066,'IT','PSR',21199,107,'Pescara, IT - Abruzzo Airport (PSR)','1','0'),(3067,'PK','PEW',21208,166,'Peshawar, PK - Peshawar Airport (PEW)','1','0'),(3068,'CA','YPQ',21220,39,'Peterborough, CA - Peterborough (YPQ)','1','0'),(3069,'','PGC',21226,231,'Petersburg, Grant County Airport (PGC)','1','0'),(3070,'US','PSG',21226,231,'Petersburg, US - Petersburg Airport (PSG)','1','0'),(3071,'BR','PNZ',21250,30,'Petrolina, BR - Petrolina Intl Airport (PNZ)','1','0'),(3072,'ZA','PHW',21288,195,'Phalaborwa, ZA - Hendrik Van Eck Airport (PHW)','1','0'),(3073,'','BBX',21301,231,'Philadelphia, Wings Field (BBX)','1','0'),(3074,'US','PHL',21301,231,'Philadelphia, US - Philadelphia Intl Airport (PHL)','1','0'),(3075,'US','PNE',21301,231,'Philadelphia, US - Northeast Philadelphia (PNE)','1','0'),(3076,'','PSQ',21301,231,'Philadelphia, Philadelphia Seaplane Base (PSQ)','1','0'),(3077,'','PZL',21308,195,'Phinda, Zulu Inyala Airport (PZL)','1','0'),(3078,'TH','PHS',21311,215,'Phitsanulok, TH - Phitsanulok Airport (PHS)','1','0'),(3079,'KH','PNH',21313,37,'Phnom Penh, KH - Pochentong Airport (PNH)','1','0'),(3080,'TH','PRH',21317,215,'Phrae, TH - Phrae Airport (PRH)','1','0'),(3081,'TH','HKT',21319,215,'Phuket, TH - Phuket Intl Airport (HKT)','1','0'),(3082,'CA','YPL',21354,39,'Pickle Lake, CA - Pickle Lake (YPL)','1','0'),(3083,'PT','PIX',21356,175,'Pico Island, PT - Pico Airport (PIX)','1','0'),(3084,'NZ','PCN',21359,157,'Picton, NZ - Picton Airport (PCN)','1','0'),(3085,'US','PIR',21374,231,'Pierre, US - Pierre Regional Airport (PIR)','1','0'),(3086,'SK','PZY',21382,191,'Piestany, SK - Piešťany (PZY)','1','0'),(3087,'ZA','PZB',21383,195,'Pietermaritzburg, ZA - Pietermaritzburg Airport (PZB)','1','0'),(3088,'CA','YPM',21398,39,'Pikangikum, CA - Pikangikum Airport (YPM)','1','0'),(3089,'','PVL',21402,231,'Pikeville, Pike County Airport (PVL)','1','0'),(3090,'','PIL',21407,10,'Pilar, Carlos Miguel Jiménez Airport (PIL)','1','0'),(3091,'','WPC',21419,39,'Pincher Creek, Pincher Creek Airport (WPC)','1','0'),(3092,'US','PIM',32438,231,'Pine Mountain, US - Callaway Gardens-Harris County (PIM)','1','0'),(3093,'','XPR',32439,231,'Pine Ridge, Pine Ridge Airport (XPR)','1','0'),(3094,'','PWY',21428,231,'Pinedale, Ralph Wenz Field (PWY)','1','0'),(3095,'IT','PSA',21478,107,'Pisa, IT - Galileo Galilei Intl Airport (PSA)','1','0'),(3096,'','PIO',21487,172,'Pisco, Capitán FAP Renán Elías Olivera Airport (PIO)','1','0'),(3097,'US','PTS',21509,231,'Pittsburg, US - Atkinson Municipal (PTS)','1','0'),(3098,'US','PIT',21510,231,'Pittsburgh, US - Pittsburgh Intl Airport (PIT)','1','0'),(3099,'PE','PIU',21517,172,'Piura, PE - Piura Airport (PIU)','1','0'),(3100,'US','PTU',21557,231,'Platinum, US - Platinum Airport (PTU)','1','0'),(3101,'US','PLB',21561,231,'Plattsburgh, US - Plattsburgh (PLB)','1','0'),(3102,'','PKJ',21572,235,'Playa Grande, Playa Grande Airport (PKJ)','1','0'),(3103,'','PWD',21585,231,'Plentywood, Sher-Wood Airport (PWD)','1','0'),(3104,'BG','PDV',21620,34,'Plovdiv, BG - Plovdiv Krumovo Airport (PDV)','1','0'),(3105,'','PLY',21624,231,'Plymouth, Plymouth Municipal Airport (PLY)','1','0'),(3106,'GB','PLH',21625,482,'Plymouth, GB - Plymouth Airport (PLH)','1','0'),(3107,'','POH',21635,231,'Pocahontas, Pocahontas Municipal Airport (POH)','1','0'),(3108,'US','PIH',21638,231,'Pocatello, US - Pocatello Regional Airport (PIH)','1','0'),(3109,'BR','POO',21645,30,'Pocos De Caldas, BR - Pocos De Caldas (POO)','1','0'),(3110,'','POD',21654,187,'Podor, Podor Airport (POD)','1','0'),(3111,'FM','PNI',21663,143,'Pohnpei, FM - Pohnpei Intl Airport (PNI)','1','0'),(3112,'US','PHO',32472,231,'Point Hope, US - Point Hope Airport (PHO)','1','0'),(3113,'US','PIZ',32473,231,'Point Lay, US - Point Lay Airport (PIZ)','1','0'),(3114,'CG','PNR',21671,51,'Pointe Noire, CG - Pointe Noire Airport (PNR)','1','0'),(3115,'FR','PIS',21682,76,'Poitiers, FR - Biard Airport (PIS)','1','0'),(3116,'NP','PKR',21687,153,'Pokhara, NP - Pokhara Airport (PKR)','1','0'),(3117,'','PXL',21693,231,'Polacca, Polacca Airport (PXL)','1','0'),(3118,'US','POQ',21704,231,'Polk Inlet, US - Polk Inlet Airport (POQ)','1','0'),(3119,'','PLV',21721,227,'Poltava, Poltava Airport (PLV)','1','0'),(3120,'','PPM',21737,231,'Pompano Beach, Pompano Beach Airpark (PPM)','1','0'),(3121,'US','PNC',21741,231,'Ponca City, US - Ponca City Regional Airport (PNC)','1','0'),(3122,'PR','PSE',21742,176,'Ponce, PR - Mercedita Airport (PSE)','1','0'),(3123,'CA','YIO',34980,39,'Pond Inlet, CA - Pond Inlet Airport (YIO)','1','0'),(3124,'IN','PNY',34558,101,'Pondicherry, IN - Pondicherry Civil (PNY)','1','0'),(3125,'','PGZ',21754,30,'Ponta Grossa, Comte. Antonio Amilton Beraldo Airport (PGZ)','1','0'),(3126,'ID','PNK',21783,102,'Pontianak, ID - Supadio Airport (PNK)','1','0'),(3127,'CO','PPN',21810,49,'Popayan, CO - Guillermo Leon Valencia Airport (PPN)','1','0'),(3128,'CA','YHP',21814,39,'Poplar Hill, CA - Poplar Hill Airport (YHP)','1','0'),(3129,'IN','PBD',21819,101,'Porbandar, IN - Porbandar Airport (PBD)','1','0'),(3130,'FI','POR',21824,75,'Pori, FI - Pori Airport (POR)','1','0'),(3131,'VE','PMV',21826,235,'Porlamar, VE - Porlamar Airport (PMV)','1','0'),(3132,'','YPB',32496,39,'Port Alberni, Alberni Valley Regional Airport (YPB)','1','0'),(3133,'US','PTD',32497,231,'Port Alexander, US - Potsdam Municipal (Damon Field) (PTD)','1','0'),(3134,'','PTC',32498,231,'Port Alice, Port Alice Seaplane Base (PTC)','1','0'),(3135,'US','PTA',32501,231,'Port Alsworth, US - Port Alsworth Airport (PTA)','1','0'),(3136,'US','CLM',32502,231,'Port Angeles, US - William R Fairchild Intl Airport (CLM)','1','0'),(3137,'JM','POT',21837,109,'Port Antonio, JM - Ken Jones Aerodrome (POT)','1','0'),(3138,'US','PTL',32505,231,'Port Armstrong, US - Port Armstrong Airport (PTL)','1','0'),(3139,'HT','PAP',21838,95,'Port Au Prince, HT - Toussaint Louverture Intl Airport (PAP)','1','0'),(3140,'MG','WPB',21839,130,'Port Berge, MG - Port Bergé Airport (WPB)','1','0'),(3141,'IN','IXZ',32511,101,'Port Blair, IN - Port Blair Airport (IXZ)','1','0'),(3142,'US','KPC',32520,231,'Port Clarence, US - Port Clarence Airport (KPC)','1','0'),(3143,'GA','POG',21842,80,'Port Gentil, GA - Port Gentil Airport (POG)','1','0'),(3144,'US','PGM',32541,231,'Port Graham, US - Port Graham Airport (PGM)','1','0'),(3145,'NG','PHC',21843,160,'Port Harcourt, NG - Port Harcourt Airport (PHC)','1','0'),(3146,'','PHG',21843,160,'Port Harcourt, Port Harcourt City Airport (PHG)','1','0'),(3147,'CA','YZT',32544,39,'Port Hardy, CA - Port Hardy Airport (YZT)','1','0'),(3148,'US','PTH',32548,231,'Port Heiden, US - Port Heiden Airport (PTH)','1','0'),(3149,'CA','YHA',32550,39,'Port Hope Simpson, CA - Port Hope Simpson Airport (YHA)','1','0'),(3150,'US','PHN',32553,231,'Port Huron, US - St. Clair County International (PHN)','1','0'),(3151,'CA','YPN',32567,39,'Port Menier, CA - Port Menier Airport (YPN)','1','0'),(3152,'PG','POM',21845,170,'Port Moresby, PG - Jackson Airport (POM)','1','0'),(3153,'TT','POS',21846,219,'Port Of Spain, TT - Piarco Intl Airport (POS)','1','0'),(3154,'CA','YPI',32581,39,'Port Simpson, CA - Port Simpson Water Aerodrome (YPI)','1','0'),(3155,'','PZU',21847,205,'Port Sudan, Port Sudan New International Airport (PZU)','1','0'),(3156,'','TWD',32587,231,'Port Townsend, Jefferson County International Airport (TWD)','1','0'),(3157,'VU','VLI',21848,233,'Port Vila, VU - Bauerfield Airport (VLI)','1','0'),(3158,'US','PDX',21885,231,'Portland, US - Portland Intl Airport (PDX)','1','0'),(3159,'US','PWM',21885,231,'Portland, US - Portland Intl Jetport (PWM)','1','0'),(3160,'PT','OPO',32595,175,'Porto, PT - Francisco Sa Carneiro Airport (OPO)','1','0'),(3161,'BR','POA',21894,30,'Porto Alegre, BR - Salgado Filho Airport (POA)','1','0'),(3162,'','PBN',21895,6,'Porto Amboim, Porto Amboim Airport (PBN)','1','0'),(3163,'PT','PXO',32626,175,'Porto Santo, PT - Porto Santo Airport (PXO)','1','0'),(3164,'SI','POW',21909,192,'Portoroz, SI - Portoroz Airport (POW)','1','0'),(3165,'EC','PVO',21913,64,'Portoviejo, EC - Portoviejo (PVO)','1','0'),(3166,'','PMH',21922,231,'Portsmouth, Greater Portsmouth Regional Airport (PMH)','1','0'),(3167,'AR','PSS',21936,10,'Posadas, AR - Libertador General Jose de San Martin Airport (PSS)','1','0'),(3168,'ID','PSJ',21942,102,'Poso, ID - Kasiguncu Airport (PSJ)','1','0'),(3169,'CA','YSO',21952,39,'Postville, CA - Postville Airport (YSO)','1','0'),(3170,'US','POU',21973,231,'Poughkeepsie, US - Dutchess County (POU)','1','0'),(3171,'US','SWF',21973,231,'Poughkeepsie, US - Stewart Intl Airport (SWF)','1','0'),(3172,'','PUL',21979,231,'Poulsbo, Port of Poulsbo Marina Moorage Seaplane Base (PUL)','1','0'),(3173,'','PUV',21982,156,'Poum, Malabou Airport (PUV)','1','0'),(3174,'CA','YPX',21994,39,'Povungnituk, CA - Puvirnituq Airport (YPX)','1','0'),(3175,'','POY',21998,231,'Powell, Powell Municipal Airport (POY)','1','0'),(3176,'','WPL',21999,39,'Powell River, Powell Lake Water Aerodrome (WPL)','1','0'),(3177,'CA','YPW',21999,39,'Powell River, CA - Powell River Airport (YPW)','1','0'),(3178,'MX','PAZ',22003,141,'Poza Rica, MX - El Tajin National Airport (PAZ)','1','0'),(3179,'PL','POZ',22004,174,'Poznan, PL - Lawica Airport (POZ)','1','0'),(3180,'BR','PDF',22020,30,'Prado, BR - Prado (PDF)','1','0'),(3181,'CZ','PRG',22026,58,'Prague, CZ - Ruzyne Airport (PRG)','1','0'),(3182,'','VOD',22026,58,'Prague, Vodochody Airport (VOD)','1','0'),(3183,'CV','RAI',22028,41,'Praia, CV - Mendes Airport (RAI)','1','0'),(3184,'','PCD',32631,231,'Prairie Du Chien, Prairie du Chien Municipal Airport (PCD)','1','0'),(3185,'','PRW',22071,231,'Prentice, Prentice Airport (PRW)','1','0'),(3186,'US','PRC',22075,231,'Prescott, US - Prescott Municipal Apt / Earnest A. Love Field (PRC)','1','0'),(3187,'US','PQI',22082,231,'Presque Isle, US - Northern Maine Regional Airport at Presque Isle (PQI)','1','0'),(3188,'ZA','PRY',22094,195,'Pretoria, ZA - Wonderboom Airport (PRY)','1','0'),(3189,'US','PUC',22103,231,'Price, US - Carbon County (PUC)','1','0'),(3190,'CA','YPA',22114,39,'Prince Albert, CA - Prince Albert Airport (Glass Field) (YPA)','1','0'),(3191,'','PCT',22118,39,'Princeton, Princeton Airport (PCT)','1','0'),(3192,'','PNN',22118,39,'Princeton, Princeton Municipal Airport (PNN)','1','0'),(3193,'YU','PRN',22126,241,'Pristina, YU - Pristina Intl Airport (PRN)','1','0'),(3194,'US','PVD',22151,231,'Providence, US - T F Green Airport (PVD)','1','0'),(3195,'CO','PVA',22152,49,'Providencia, CO - El Embrujo Airport (PVA)','1','0'),(3196,'TC','PLS',22153,221,'Providenciales, TC - Providenciales Intl Airport (PLS)','1','0'),(3197,'US','PVC',22155,231,'Provincetown, US - Provincetown Municipal Airport (PVC)','1','0'),(3198,'US','PVU',22157,231,'Provo, US - Provo Municipal Airport (PVU)','1','0'),(3199,'PE','PCL',22177,172,'Pucallpa, PE - Capitan Rolden Airport (PCL)','1','0'),(3200,'MX','PBC',22188,141,'Puebla, MX - Hermanos Serdan Intl Airport (PBC)','1','0'),(3201,'VE','PYH',22197,235,'Puerto Ayacucho, VE - Cacique Aramare Airport (PYH)','1','0'),(3202,'CO','PBE',22200,49,'Puerto Berrio, CO - Morela Airport (PBE)','1','0'),(3203,'','PUZ',22201,158,'Puerto Cabezas, Puerto Cabezas Airport (PUZ)','1','0'),(3204,'DO','POP',22206,61,'Puerto Plata, DO - Gregorio Luperon Intl Airport (POP)','1','0'),(3205,'','PCC',32651,199,'Puerto Rico, Puerto Rico Airport (PCC)','1','0'),(3206,'','PUR',32651,199,'Puerto Rico, Puerto Rico Airport (PUR)','1','0'),(3207,'','XPK',22218,39,'Pukatawagan, Pukatawagan Airport (XPK)','1','0'),(3208,'HR','PUY',22220,55,'Pula, HR - Pula Airport (PUY)','1','0'),(3209,'US','GZS',22223,231,'Pulaski, US - Abernathy Field (GZS)','1','0'),(3210,'US','LIT',22223,231,'Pulaski, US - Adams Field Airport (LIT)','1','0'),(3211,'MY','TOD',22224,132,'Pulau Besar, MY - Pulau Tioman Airport (TOD)','1','0'),(3212,'US','PUW',22230,231,'Pullman, US - Moscow Regional Airport (PUW)','1','0'),(3213,'IN','PNQ',22238,101,'Pune, IN - Pune Airport (PNQ)','1','0'),(3214,'CL','PUQ',22242,45,'Punta Arenas, CL - Ibanez Airport (PUQ)','1','0'),(3215,'DO','PUJ',22244,61,'Punta Cana, DO - Punta Cana Intl Airport (PUJ)','1','0'),(3216,'UY','PDP',22246,230,'Punta Del Este, UY - Cap. Corbeta Curbelo Intl Airport (PDP)','1','0'),(3217,'BZ','PND',22248,22,'Punta Gorda, BZ - Punta Gorda Airport (PND)','1','0'),(3218,'','JAP',22251,54,'Puntarenas, Chacarita Airport (JAP)','1','0'),(3219,'MM','PBU',22275,150,'Putao, MM - Putao Airport (PBU)','1','0'),(3220,'','PUT',22287,101,'Puttaparthi, Sri Sathya Sai Airport (PUT)','1','0'),(3221,'','PRU',22307,150,'Pyay, Pyay Airport (PRU)','1','0'),(3222,'','UNE',22317,121,'Qacha\'s Nek, Qacha\'s Nek Airport (UNE)','1','0'),(3223,'SA','AQI',22318,186,'Qaisumah, SA - Qaisumah Airport (AQI)','1','0'),(3224,'CN','TAO',22327,46,'Qingdao, CN - Qingdao Liuting Intl Airport (TAO)','1','0'),(3225,'CN','SHP',22335,46,'Qinhuangdao, CN - Qinhuangdao Shanhaiguan Airport (SHP)','1','0'),(3226,'','BAR',22336,46,'Qionghai, Qionghai Bo\'ao Airport (BAR)','1','0'),(3227,'','IHN',22339,240,'Qishn, Qishn Airport (IHN)','1','0'),(3228,'','YQJ',22342,39,'Quadra Island, April Point Water Aerodrome (YQJ)','1','0'),(3229,'CA','XQU',22345,39,'Qualicum, CA - Qualicum Beach Airport (XQU)','1','0'),(3230,'CA','YQC',22351,39,'Quaqtaq, CA - Quaqtaq Airport (YQC)','1','0'),(3231,'CA','YQB',22364,39,'Quebec, CA - Jean Lesage Intl Airport (YQB)','1','0'),(3232,'CA','YTM',22364,39,'Quebec, CA - (La Macaza) Mont Tremblant Intl Airport (YTM)','1','0'),(3233,'','ABG',22372,13,'Queensland Central Coast, Abingdon Airport (ABG)','1','0'),(3234,'','AGW',22372,13,'Queensland Central Coast, Agnew Airport (AGW)','1','0'),(3235,'','AUD',22372,13,'Queensland Central Coast, Augustus Downs Airport (AUD)','1','0'),(3236,'','BBL',22372,13,'Queensland Central Coast, Ballera Airport (BBL)','1','0'),(3237,'US','BCK',22372,13,'Queensland Central Coast, US - Bolwarra (BCK)','1','0'),(3238,'','BKP',22372,13,'Queensland Central Coast, Barkly Downs Airport (BKP)','1','0'),(3239,'','BLS',22372,13,'Queensland Central Coast, Bollon Airport (BLS)','1','0'),(3240,'','BZP',22372,13,'Queensland Central Coast, Bizant Airport (BZP)','1','0'),(3241,'','CML',22372,13,'Queensland Central Coast, Camooweal Airport (CML)','1','0'),(3242,'','UEE',22373,157,'Queenstown, Queenstown Airport (UEE)','1','0'),(3243,'NZ','ZQN',22373,157,'Queenstown, NZ - Frankton Airport (ZQN)','1','0'),(3244,'MZ','UEL',22379,149,'Quelimane, MZ - Quelimane Airport (UEL)','1','0'),(3245,'CR','XQP',22382,54,'Quepos, CR - Quepos Managua Airport (XQP)','1','0'),(3246,'CA','YQZ',22386,39,'Quesnel, CA - Quesnel Airport (YQZ)','1','0'),(3247,'PK','UET',22389,166,'Quetta, PK - Quetta Airport (UET)','1','0'),(3248,'','AAZ',22391,91,'Quetzaltenango, Quetzaltenango Airport (AAZ)','1','0'),(3249,'CO','UIB',22397,49,'Quibdo, CO - El Carano Airport (UIB)','1','0'),(3250,'FR','UIP',22407,76,'Quimper, FR - Pluguffan Airport (UIP)','1','0'),(3251,'US','UIN',22412,231,'Quincy, US - Quincy Regional Airport / Baldwin Field (UIN)','1','0'),(3252,'US','KWN',22415,231,'Quinhagak, US - Quinhagak Airport (KWN)','1','0'),(3253,'','UIR',22427,13,'Quirindi, Quirindi Airport (UIR)','1','0'),(3254,'EC','UIO',22429,64,'Quito, EC - Mariscal Sucre Intl Airport (UIO)','1','0'),(3255,'MA','RBA',22446,148,'Rabat, MA - Rabat Airport (RBA)','1','0'),(3256,'','RDO',22474,174,'Radom, Radom Airport (RDO)','1','0'),(3257,'CA','YRA',22480,39,'Rae Lakes, CA - Rae Lakes Airports (YRA)','1','0'),(3258,'SA','RAH',22485,186,'Rafha, SA - Rafha Airport (RAH)','1','0'),(3259,'PK','RYK',22496,166,'Rahim Yar Khan, PK - Rahim Yar Khan Airport (RYK)','1','0'),(3260,'PF','RFP',22499,78,'Raiatea, PF - Uturoa Airport (RFP)','1','0'),(3261,'CA','YOP',22504,39,'Rainbow Lake, CA - Rainbow Lake Airport (YOP)','1','0'),(3262,'IN','RPR',22508,101,'Raipur, IN - Raipur Airport (RPR)','1','0'),(3263,'IN','RJA',22510,101,'Rajahmundry, IN - Rajahmundry Airport (RJA)','1','0'),(3264,'IN','RAJ',22511,101,'Rajkot, IN - Rajkot Airport (RAJ)','1','0'),(3265,'BD','RJH',22515,18,'Rajshahi, BD - Shah Makhdum Airport (RJH)','1','0'),(3266,'','RMD',22526,101,'Ramagundam, Ramagundam Airport (RMD)','1','0'),(3267,'','RNU',22559,132,'Ranau, Ranau Airport (RNU)','1','0'),(3268,'IN','IXR',22562,101,'Ranchi, IN - Birsa Munda Airport (IXR)','1','0'),(3269,'','RNG',22578,231,'Rangely, Rangely Airport (RNG)','1','0'),(3270,'PF','RGI',22580,78,'Rangiroa, PF - Rangiroa Airport (RGI)','1','0'),(3271,'CA','YRT',22584,39,'Rankin Inlet, CA - Rankin Inlet Airport (YRT)','1','0'),(3272,'','RSK',22590,102,'Ransiki, Abresso Airport (RSK)','1','0'),(3273,'US','RAP',32662,231,'Rapid City, US - Rapid City Regional Airport (RAP)','1','0'),(3274,'CK','RAR',22604,53,'Rarotonga, CK - Rarotonga Airport (RAR)','1','0'),(3275,'','RHR',22605,228,'Ras Al Khaimah, Al Hamra Seaplane Base (RHR)','1','0'),(3276,'AE','RKT',22605,228,'Ras Al Khaimah, AE - Ras Al Khaimah Airport (RKT)','1','0'),(3277,'','RBE',22610,37,'Ratanakiri, Ratanakiri Airport (RBE)','1','0'),(3278,'','RTC',22618,101,'Ratnagiri, Ratnagiri Airport (RTC)','1','0'),(3279,'IS','RFN',22621,100,'Raufarhofn, IS - Raufarhöfn Airport (RFN)','1','0'),(3280,'PK','RAZ',22641,166,'Rawala Kot, PK - Rawalakot Airport (RAZ)','1','0'),(3281,'US','RDG',22659,231,'Reading, US - Reading Regional Airport/Spaatz Field (RDG)','1','0'),(3282,'JP','RBJ',22667,110,'Rebun, JP - Rebun (RBJ)','1','0'),(3283,'BR','REC',22672,30,'Recife, BR - Guararapes Airport (REC)','1','0'),(3284,'US','RDV',32671,231,'Red Devil, US - Red Devil Airport (RDV)','1','0'),(3285,'CA','YRL',34703,39,'Red Lake, CA - Red Lake Airport (YRL)','1','0'),(3286,'MY','RDN',22682,132,'Redang Island, MY - Redang Airport (RDN)','1','0'),(3287,'','RCL',22686,233,'Redcliffe, Redcliffe Airport (RCL)','1','0'),(3288,'','BZF',22689,231,'Redding, Benton Field (BZF)','1','0'),(3289,'US','RDD',22689,231,'Redding, US - Redding Municipal Airport (RDD)','1','0'),(3290,'BR','RDC',22691,30,'Redencao, BR - Redenção Airport (RDC)','1','0'),(3291,'US','RDM',22704,231,'Redmond, US - Roberts Field/Redmond Municipal Airport (RDM)','1','0'),(3292,'','RED',22717,231,'Reedsville, Mifflin County Airport (RED)','1','0'),(3293,'','RFG',22722,231,'Refugio, Rooke Field (RFG)','1','0'),(3294,'IT','REG',32681,107,'Reggio Calabria, IT - Reggio Calabria Airport (REG)','1','0'),(3295,'CA','YQR',22731,39,'Regina, CA - Regina Intl Airport (YQR)','1','0'),(3296,'FR','RHE',22748,76,'Reims, FR - Reims Champagne (RHE)','1','0'),(3297,'FR','RNS',32687,76,'Rennes, FR - St Jacques Airport (RNS)','1','0'),(3298,'','RNZ',22787,231,'Rensselaer, Jasper County Airport (RNZ)','1','0'),(3299,'US','RNT',22788,231,'Renton, US - Renton Municipal (RNT)','1','0'),(3300,'CA','YUT',22795,39,'Repulse Bay, CA - Repulse Bay Airport (YUT)','1','0'),(3301,'','REZ',22801,30,'Resende, Resende Airport (REZ)','1','0'),(3302,'AR','RES',22803,10,'Resistencia, AR - Resistencia Intl Airport (RES)','1','0'),(3303,'CA','YRB',22805,39,'Resolute, CA - Resolute Bay Airport (YRB)','1','0'),(3304,'ES','REU',22818,199,'Reus, ES - Reus Airport (REU)','1','0'),(3305,'','REW',22831,101,'Rewa, Churhata Airport (REW)','1','0'),(3306,'IS','KEF',22839,100,'Reykjavik, IS - Keflavik Intl Airport (KEF)','1','0'),(3307,'MX','REX',22843,141,'Reynosa, MX - Gen Lucio Blanco Intl Airport (REX)','1','0'),(3308,'US','RHI',22861,231,'Rhinelander, US - Oneida County Airport (RHI)','1','0'),(3309,'BR','RAO',22894,30,'Ribeirao Preto, BR - Ribeirao Preto Airport (RAO)','1','0'),(3310,'BO','RIB',22897,26,'Riberalta, BO - Riberalta Airport (RIB)','1','0'),(3311,'','RIE',32694,231,'Rice Lake, Rice Lake Regional Airport (RIE)','1','0'),(3312,'ZA','RCB',22905,195,'Richards Bay, ZA - Richards Bay Airport (RCB)','1','0'),(3313,'US','RIF',22909,231,'Richfield, US - Richfield Municipal (RIF)','1','0'),(3314,'US','OAJ',22912,231,'Richlands, US - Albert J Ellis Airport (OAJ)','1','0'),(3315,'US','RIC',22913,231,'Richmond, US - Richmond Intl Airport (RIC)','1','0'),(3316,'','XRH',22913,231,'Richmond, RAAF Base Richmond (XRH)','1','0'),(3317,'','IES',22935,83,'Riesa, Riesa–Göhlis Airfield (IES)','1','0'),(3318,'LV','RIX',22945,119,'Riga, LV - Riga Intl Airport (RIX)','1','0'),(3319,'CA','YRG',22950,39,'Rigolet, CA - Rigolet Airport (YRG)','1','0'),(3320,'HR','RJK',22954,55,'Rijeka, HR - Rijeka Airport (RJK)','1','0'),(3321,'IT','RMI',32701,107,'Rimini, IT - Federico Fellini Airport (RMI)','1','0'),(3322,'CA','YXK',22963,39,'Rimouski, CA - Rimouski (YXK)','1','0'),(3323,'SB','RIN',22980,193,'Ringi Cove, SB - Ringgi Cove Airport (RIN)','1','0'),(3324,'BR','RBR',32702,30,'Rio Branco, BR - Placido de Castro Intl Airport (RBR)','1','0'),(3325,'BR','GIG',32706,30,'Rio De Janeiro, BR - Rio de Janeiro Intl Airport (GIG)','1','0'),(3326,'BR','SDU',32706,30,'Rio De Janeiro, BR - Aeroporto Santos Dumont Airport (SDU)','1','0'),(3327,'','SNZ',32706,30,'Rio De Janeiro, Santa Cruz Air Force Base (SNZ)','1','0'),(3328,'BR','RIG',32714,30,'Rio Grande, BR - Rio Grande Regional Airport (RIG)','1','0'),(3329,'CO','RCH',22998,49,'Riohacha, CO - Almirante Padilla Airport (RCH)','1','0'),(3330,'','RIJ',22999,172,'Rioja, Juan Simons Vela Airport (RIJ)','1','0'),(3331,'JP','RIS',23019,110,'Rishiri, JP - Rishiri Airport (RIS)','1','0'),(3332,'','ECI',23031,158,'Rivas, Costa Esmeralda Airport (ECI)','1','0'),(3333,'UY','RVY',23034,230,'Rivera, UY - Rivera (RVY)','1','0'),(3334,'','YRN',23039,39,'Rivers Inlet, Rivers Inlet Water Aerodrome (YRN)','1','0'),(3335,'US','RAL',23040,231,'Riverside, US - Riverside Municipal (RAL)','1','0'),(3336,'US','RIR',23040,231,'Riverside, US - Flabob (RIR)','1','0'),(3337,'US','RIW',23041,231,'Riverton, US - Riverton Regional Airport (RIW)','1','0'),(3338,'SA','RUH',23057,186,'Riyadh, SA - King Khalid Intl Airport (RUH)','1','0'),(3339,'SA','RUJ',23057,186,'Riyadh, SA - RIYADH Airport (RUJ)','1','0'),(3340,'','RIZ',23060,46,'Rizhao, Rizhao Shanzihe Airport (RIZ)','1','0'),(3341,'FR','RNE',23063,76,'Roanne, FR - Renaison (RNE)','1','0'),(3342,'US','ROA',23064,231,'Roanoke, US - Roanoke Regional Airport / Woodrum Field Airport (ROA)','1','0'),(3343,'HN','RTB',23065,97,'Roatan, HN - Juan Manuel Galvez Intl Airport (RTB)','1','0'),(3344,'CA','YRJ',23073,39,'Roberval, CA - Roberval Airport (YRJ)','1','0'),(3345,'','ROH',23075,13,'Robinhood, Robinhood Airport (ROH)','1','0'),(3346,'','RBC',23080,13,'Robinvale, Robinvale Airport (RBC)','1','0'),(3347,'US','RCE',23098,231,'Roche Harbor, US - Roche Harbor Seaplane Base (RCE)','1','0'),(3348,'US','ROC',23110,231,'Rochester, US - Greater Rochester Intl Airport (ROC)','1','0'),(3349,'US','RST',23110,231,'Rochester, US - Rochester Intl Airport (RST)','1','0'),(3350,'','RKH',32742,231,'Rock Hill, Rock Hill/York County Airport (RKH)','1','0'),(3351,'BS','RSD',23113,16,'Rock Sound, BS - Rock Sound Airport (RSD)','1','0'),(3352,'US','RKS',32747,231,'Rock Springs, US - Sweetwater County Airport (RKS)','1','0'),(3353,'US','RFD',23118,231,'Rockford, US - Greater Rockford Airport (RFD)','1','0'),(3354,'US','RKD',23123,231,'Rockland, US - Knox County Regional Airport (RKD)','1','0'),(3355,'FR','RDZ',23143,76,'Rodez, FR - Rodez Airport (RDZ)','1','0'),(3356,'MU','RRG',23148,139,'Rodrigues Island, MU - Sir Gaetan Duval Airport (RRG)','1','0'),(3357,'NO','RVK',23153,164,'Roervik, NO - Rorvik Ryumsjoen Airport (RVK)','1','0'),(3358,'IT','CIA',32754,107,'Rome, IT - Rome Ciampino Airport (CIA)','1','0'),(3359,'IT','FCO',32754,107,'Rome, IT - Leonardo Da Vinci - Fiumicino Airport (FCO)','1','0'),(3360,'','REO',32754,107,'Rome, Rome State Airport (REO)','1','0'),(3361,'BR','ROO',23224,30,'Rondonopolis, BR - Maestro Marinho Franco Airport (ROO)','1','0'),(3362,'DK','RNN',23228,59,'Ronne, DK - Bornholm Airport (RNN)','1','0'),(3363,'SE','RNB',23229,209,'Ronneby, SE - Kallinge Airport (RNB)','1','0'),(3364,'','ROL',23236,231,'Roosevelt, Roosevelt Municipal Airport (ROL)','1','0'),(3365,'NO','RRS',23247,164,'Roros, NO - Roros Airport (RRS)','1','0'),(3366,'AR','ROS',23254,10,'Rosario, AR - Rosario Intl Airport (ROS)','1','0'),(3367,'','ROX',23263,231,'Roseau, Roseau Municipal Airport (ROX)','1','0'),(3368,'','RSB',23267,13,'Roseberth, Roseberth Airport (RSB)','1','0'),(3369,'','RLP',23272,13,'Rosella Plains, Rosella Plains Airport (RLP)','1','0'),(3370,'IL','RPN',23288,106,'Rosh Pina, IL - Rosh-Pina Airport (RPN)','1','0'),(3371,'','XRR',32761,39,'Ross River, Ross River Airport (XRR)','1','0'),(3372,'NO','RET',23322,164,'Rost, NO - Rost Airport (RET)','1','0'),(3373,'RU','ROV',23326,181,'Rostov, RU - Rostov Airport (ROV)','1','0'),(3374,'US','ROW',23328,231,'Roswell, US - Roswell Intl Air Center Airport (ROW)','1','0'),(3375,'MP','ROP',23330,163,'Rota, MP - Rota Intl Airport (ROP)','1','0'),(3376,'','ROZ',23330,163,'Rota, US Naval Station Rota (ROZ)','1','0'),(3377,'ID','RTI',23348,102,'Roti, ID - Rote Airport (RTI)','1','0'),(3378,'NZ','ROT',23350,157,'Rotorua, NZ - Rotorua Airport (ROT)','1','0'),(3379,'NL','RTM',23354,154,'Rotterdam, NL - Rotterdam The Hague Airport (RTM)','1','0'),(3380,'FR','URO',23361,76,'Rouen, FR - Rouen Airport (URO)','1','0'),(3381,'CA','ZRJ',23368,39,'Round Lake, CA - Round Lake Airport (ZRJ)','1','0'),(3382,'','RPX',23370,231,'Roundup, Roundup Airport (RPX)','1','0'),(3383,'IN','RRK',23371,101,'Rourkela, IN - Rourkela (RRK)','1','0'),(3384,'','RSX',23372,231,'Rouses Point, Rouses Point Seaplane Base (RSX)','1','0'),(3385,'BG','ROU',23373,34,'Rousse, BG - Ruse Airport (ROU)','1','0'),(3386,'FI','RVN',23379,75,'Rovaniemi, FI - Rovaniemi Airport (RVN)','1','0'),(3387,'','RYN',23402,76,'Royan, Royan – Médis Aerodrome (RYN)','1','0'),(3388,'US','RBY',23420,231,'Ruby, US - Ruby Airport (RBY)','1','0'),(3389,'','RUG',23443,46,'Rugao, Rugao Air Base (RUG)','1','0'),(3390,'','RUI',23453,231,'Ruidoso, Sierra Blanca Regional Airport (RUI)','1','0'),(3391,'NA','NDU',23469,151,'Rundu, NA - Rundu Airport (NDU)','1','0'),(3392,'','RUP',23477,69,'Rupsi, Rupsi Airport (RUP)','1','0'),(3393,'PF','RUR',23479,78,'Rurutu, PF - Rurutu Airport (RUR)','1','0'),(3394,'','RSL',23489,231,'Russell, Russell Municipal Airport (RSL)','1','0'),(3395,'US','RSH',23496,231,'Russian Mission, US - Russian Mission Airport (RSH)','1','0'),(3396,'ID','RTG',23507,102,'Ruteng, ID - Frans Sales Lega Airport (RTG)','1','0'),(3397,'','RTP',23517,13,'Rutland Plains, Rutland Plains Airport (RTP)','1','0'),(3398,'','RZN',23524,181,'Ryazan, Turlatovo Airport (RZN)','1','0'),(3399,'PL','RZE',23531,174,'Rzeszow, PL - Rzeszow Airport (RZE)','1','0'),(3400,'DE','SCN',23548,83,'Saarbrucken, DE - Saarbrucken Airport (SCN)','1','0'),(3401,'MY','BKI',23560,132,'Sabah, MY - Kota Kinabalu Airport (BKI)','1','0'),(3402,'','SBV',23560,132,'Sabah, Sabah Airport (SBV)','1','0'),(3403,'','GSS',23566,195,'Sabie, Sabi Sabi Airport (GSS)','1','0'),(3404,'CA','ZPB',23580,39,'Sachigo Lake, CA - Sachigo Lake Airport (ZPB)','1','0'),(3405,'US','SAC',23585,231,'Sacramento, US - Sacramento Executive (SAC)','1','0'),(3406,'US','SMF',23585,231,'Sacramento, US - Sacramento Intl Airport (SMF)','1','0'),(3407,'','SAD',23599,231,'Safford, Safford Regional Airport (SAD)','1','0'),(3408,'MA','SFI',23601,148,'Safi, MA - Safi Airport (SFI)','1','0'),(3409,'','SBR',23620,13,'Saibai Island, Saibai Island Airport (SBR)','1','0'),(3410,'BD','SPD',23624,18,'Saidpur, BD - Saidpur Airport (SPD)','1','0'),(3411,'','SDT',23625,166,'Saidu Sharif, Saidu Sharif Airport (SDT)','1','0'),(3412,'','SJF',32830,39,'Saint John, Cruz Bay Seaplane Base (SJF)','1','0'),(3413,'CA','YSJ',32830,39,'Saint John, CA - Saint John Airport (YSJ)','1','0'),(3414,'','RVH',23644,181,'Saint Petersburg, Rzhevka Airport (RVH)','1','0'),(3415,'MG','SMS',23712,130,'Sainte Marie, MG - Sainte Marie Airport (SMS)','1','0'),(3416,'MP','SPN',23950,163,'Saipan, MP - Saipan Intl Airport (SPN)','1','0'),(3417,'TH','SNO',23957,215,'Sakon Nakhon, TH - Sakon Nakhon Airport (SNO)','1','0'),(3418,'OM','SLL',23963,165,'Salalah, OM - Salalah Intl Airport (SLL)','1','0'),(3419,'IN','SXV',23984,101,'Salem, IN - Salem (SXV)','1','0'),(3420,'','SLT',23995,231,'Salida, Harriet Alexander Field (SLT)','1','0'),(3421,'','LMB',23999,131,'Salima, Salima Airport (LMB)','1','0'),(3422,'US','SBO',24002,231,'Salina, US - Salina-Gunnison (SBO)','1','0'),(3423,'US','SLN',24002,231,'Salina, US - Salina Municipal Airport (SLN)','1','0'),(3424,'','SRW',24007,482,'Salisbury, Rowan County Airport (SRW)','1','0'),(3425,'CA','YZG',24015,39,'Salluit, CA - Salluit Airport (YZG)','1','0'),(3426,'','YSN',24019,39,'Salmon Arm, Salmon Arm Airport (YSN)','1','0'),(3427,'TC','SLX',24029,221,'Salt Cay, TC - Salt Cay Airport (SLX)','1','0'),(3428,'AR','SLA',24033,10,'Salta, AR - El Aybal/Martin Miguel de Guemes Intl Airport (SLA)','1','0'),(3429,'UY','STY',24042,230,'Salto, UY - Nueva Hesperides Intl Airport (STY)','1','0'),(3430,'BR','SSA',24049,30,'Salvador, BR - Deputado Luis Eduardo Magalhaes Intl Airport (SSA)','1','0'),(3431,'DO','EPS',24057,61,'Samana, DO - Arroyo Barril Airport (EPS)','1','0'),(3432,'RU','KUF',24058,181,'Samara, RU - Samara Airport (KUF)','1','0'),(3433,'ID','SRI',24060,102,'Samarinda, ID - Temindung Airport (SRI)','1','0'),(3434,'UZ','SKD',24061,232,'Samarkand, UZ - Samarkand Airport (SKD)','1','0'),(3435,'MG','SVB',24064,130,'Sambava, MG - Sambava Airport (SVB)','1','0'),(3436,'KE','UAS',24065,113,'Samburu, KE - Samburu Airport (UAS)','1','0'),(3437,'CH','SMV',24066,210,'Samedan, CH - Samedan (Engadin) Airport (SMV)','1','0'),(3438,'BS','SAQ',24093,16,'San Andros, BS - San Andros Airport (SAQ)','1','0'),(3439,'US','SJT',32906,231,'San Angelo, US - San Angelo Regional Airport/Mathis Field (SJT)','1','0'),(3440,'US','SAT',32909,231,'San Antonio, US - San Antonio Intl Airport (SAT)','1','0'),(3441,'VE','SVZ',24096,235,'San Antonio, VE - San Antonio Airport (SVZ)','1','0'),(3442,'AR','OES',32919,10,'San Antonio Oeste, AR - San Antonio Oeste (OES)','1','0'),(3443,'US','DAG',32930,231,'San Bernardino, US - Barstow-Daggett (DAG)','1','0'),(3444,'','RBF',32930,231,'San Bernardino, Big Bear City Airport (RBF)','1','0'),(3445,'','NBL',32934,141,'San Blas, Wannukandi Airport (NBL)','1','0'),(3446,'','NCR',32939,231,'San Carlos, San Carlos Airport (NCR)','1','0'),(3447,'US','MYF',32964,231,'San Diego, US - Montgomery Field (MYF)','1','0'),(3448,'US','SAN',32964,231,'San Diego, US - San Diego Intl Airport (Lindbergh Field) (SAN)','1','0'),(3449,'US','SDM',32964,231,'San Diego, US - Brown Field Municipal (SDM)','1','0'),(3450,'MX','SFH',32982,141,'San Felipe, MX - San Felipe Intl Airport (SFH)','1','0'),(3451,'','SNF',32982,141,'San Felipe, Sub Teniente Nestor Arias Airport (SNF)','1','0'),(3452,'','SSD',32982,141,'San Felipe, San Felipe Airport (SSD)','1','0'),(3453,'','SFE',32985,199,'San Fernando, San Fernando Airport (SFE)','1','0'),(3454,'US','SFO',32994,231,'San Francisco, US - San Francisco Intl Airport (SFO)','1','0'),(3455,'','CYD',24102,22,'San Ignacio, San Ignacio Town Airstrip (CYD)','1','0'),(3456,'','SGM',24102,22,'San Ignacio, San Ignacio Airfield (SGM)','1','0'),(3457,'','SQS',24102,22,'San Ignacio, Matthew Spain Airport (SQS)','1','0'),(3458,'','SJV',33030,10,'San Javier, San Javier Airport (SJV)','1','0'),(3459,'US','SJC',33033,231,'San Jose, US - Norman Y. Mineta San Jose Intl Airport (SJC)','1','0'),(3460,'AR','UAQ',33041,10,'San Juan, AR - Domingo Faustino Sarmiento Airport (UAQ)','1','0'),(3461,'AR','LUQ',33073,10,'San Luis, AR - Brigadier Mayor Cesar Raul Ojeda Airport (LUQ)','1','0'),(3462,'MX','SLP',33076,141,'San Luis Potosi, MX - Ponciano Arriaga Intl Airport (SLP)','1','0'),(3463,'MX','UAC',33077,141,'San Luis Rio Colorado, MX - San Luis Río Colorado Airport (UAC)','1','0'),(3464,'','SRS',33080,231,'San Marcos, San Marcos Airport (SRS)','1','0'),(3465,'','NMG',33100,173,'San Miguel, San Miguel Airport (NMG)','1','0'),(3466,'AR','AFA',33149,10,'San Rafael, AR - San Rafael Airport (AFA)','1','0'),(3467,'','SRF',33149,10,'San Rafael, San Rafael Airport (SRF)','1','0'),(3468,'ES','EAS',33160,199,'San Sebastian, ES - San Sebastian (EAS)','1','0'),(3469,'US','SDP',33190,231,'Sand Point, US - Sand Point Airport (SDP)','1','0'),(3470,'MY','SDK',24126,132,'Sandakan, MY - Sandakan Airport (SDK)','1','0'),(3471,'NO','SDN',24127,164,'Sandane, NO - Sandane Airport Anda (SDN)','1','0'),(3472,'GB','NDY',24129,482,'Sanday, GB - Sanday Airport (NDY)','1','0'),(3473,'NO','SSJ',24144,164,'Sandnessjoen, NO - Sandnessjoen Airport Stokka (SSJ)','1','0'),(3474,'CA','YZP',24152,39,'Sandspit, CA - Sandspit Airport (YZP)','1','0'),(3475,'CA','ZSJ',24165,39,'Sandy Lake, CA - Sandy Lake Airport (ZSJ)','1','0'),(3476,'CA','YSK',24177,39,'Sanikiluaq, CA - Sanikiluaq Airport (YSK)','1','0'),(3477,'','SQJ',24185,46,'Sanming, Sanming Shaxian Airport (SQJ)','1','0'),(3478,'SB','NNB',24198,193,'Santa Ana, SB - Santa Ana Airport (NNB)','1','0'),(3479,'','SCA',24201,10,'Santa Catalina, Santa Catalina Airport (SCA)','1','0'),(3480,'ES','SPC',33260,199,'Santa Cruz De La Palma, ES - La Palma Airport (SPC)','1','0'),(3481,'','CSU',33264,30,'Santa Cruz Do Sul, Santa Cruz do Sul Airport (CSU)','1','0'),(3482,'EG','SKV',24209,65,'Santa Katarina, EG - St. Catherine International (SKV)','1','0'),(3483,'BR','RIA',33278,30,'Santa Maria, BR - Santa Maria Airport (RIA)','1','0'),(3484,'PT','SMA',33279,175,'Santa Maria, PT - Santa Maria Airport (SMA)','1','0'),(3485,'CO','SMR',24212,49,'Santa Marta, CO - Simon Bolivar Intl Airport (SMR)','1','0'),(3486,'ES','SDR',24221,199,'Santander, ES - Santander Airport (Parayas) (SDR)','1','0'),(3487,'BR','STM',24233,30,'Santarem, BR - Santarem Intl Airport (STM)','1','0'),(3488,'DO','STI',24243,61,'Santiago, DO - Cibao Intl Airport (STI)','1','0'),(3489,'CL','SCL',24241,45,'Santiago, CL - Benitez Intl Airport (SCL)','1','0'),(3490,'CU','SCU',24247,56,'Santiago De Cuba, CU - Antonio Maceo Airport (SCU)','1','0'),(3491,'BR','GEL',33321,30,'Santo Angelo, BR - Sepe Tiaraju Airport (GEL)','1','0'),(3492,'','NTO',24254,41,'Santo Antao, Agostinho Neto Airport (NTO)','1','0'),(3493,'DO','HEX',24256,61,'Santo Domingo, DO - Herrara Airport (HEX)','1','0'),(3494,'DO','SDQ',24256,61,'Santo Domingo, DO - Las Americas Intl Airport (SDQ)','1','0'),(3495,'BR','SJP',33355,30,'Sao Jose Do Rio Preto, BR - Sao Jose Do Rio Preto Airport (SJP)','1','0'),(3496,'BR','SJK',33356,30,'Sao Jose Dos Campos, BR - Prof Urbano Ernesto Stumpf Airport (SJK)','1','0'),(3497,'BR','CWB',33357,30,'Sao Jose Dos Pinhais, BR - Afonso Pena Airport (CWB)','1','0'),(3498,'BR','SLZ',33360,30,'Sao Luiz, BR - Tirirical Airport (SLZ)','1','0'),(3499,'BR','CGH',33371,30,'Sao Paulo, BR - Congonhas Airport (CGH)','1','0'),(3500,'BR','GRU',33371,30,'Sao Paulo, BR - Guarulhos Intl Airport (GRU)','1','0'),(3501,'BR','VCP',33371,30,'Sao Paulo, BR - Sao Paulo Viracopos Airport (VCP)','1','0'),(3502,'ST','TMS',24281,185,'Sao Tome Island, ST - Sao Tome Intl Airport (TMS)','1','0'),(3503,'JP','CTS',24290,110,'Sapporo, JP - New Chitose Airport (CTS)','1','0'),(3504,'JP','OKD',24290,110,'Sapporo, JP - Sapporo Okadama Airport (OKD)','1','0'),(3505,'VU','SSR',24297,233,'Sara, VU - Sara Airport (SSR)','1','0'),(3506,'BA','SJJ',24299,27,'Sarajevo, BA - Sarajevo Intl Airport (SJJ)','1','0'),(3507,'US','SLK',24301,231,'Saranac Lake, US - Adirondack Regional Airport (SLK)','1','0'),(3508,'US','SRQ',24307,231,'Sarasota, US - Sarasota Bradenton Intl Airport (SRQ)','1','0'),(3509,'RU','RTW',24309,181,'Saratov, RU - Saratov Tsentralny Airport (RTW)','1','0'),(3510,'MY','BKM',34587,132,'Sarawak, MY - Bakalalan Airport (BKM)','1','0'),(3511,'','BHW',24324,166,'Sargodha, Bhagatanwala Airport (BHW)','1','0'),(3512,'','SGI',24324,166,'Sargodha, PAF Base Mushaf (SGI)','1','0'),(3513,'','ZRM',24332,102,'Sarmi, Sarmi Orai Airport (ZRM)','1','0'),(3514,'CA','YZR',24334,39,'Sarnia, CA - Sarnia (Chris Hadfield) Airport (YZR)','1','0'),(3515,'CA','YXE',24360,39,'Saskatoon, CA - John G Diefenbaker Intl Airport (YXE)','1','0'),(3516,'','TNI',24375,101,'Satna, Satna Airport (TNI)','1','0'),(3517,'RO','SUJ',24381,179,'Satu Mare, RO - Satu Mare Intl Airport (SUJ)','1','0'),(3518,'IS','SAK',24387,100,'Saudarkrokur, IS - Saudarkrokur Airport (SAK)','1','0'),(3519,'CA','YAM',24399,39,'Sault Ste Marie, CA - Sault Ste. Marie Airport (YAM)','1','0'),(3520,'AO','VHC',24409,6,'Saurimo, AO - Saurimo Airport (VHC)','1','0'),(3521,'US','SAV',24426,231,'Savannah, US - Savannah/Hilton Head Intl Airport (SAV)','1','0'),(3522,'LA','ZVK',24428,118,'Savannakhet, LA - Savannakhet Airport (ZVK)','1','0'),(3523,'FI','SVL',24446,75,'Savonlinna, FI - Savonlinna Airport (SVL)','1','0'),(3524,'US','SVA',24448,231,'Savoonga, US - Savoonga Airport (SVA)','1','0'),(3525,'FJ','SVU',24452,74,'Savusavu, FJ - Savusavu Airport (SVU)','1','0'),(3526,'ID','SAU',24459,102,'Sawu, ID - Tardamu Airport (SAU)','1','0'),(3527,'CA','YKL',24507,39,'Schefferville, CA - Schefferville Airport (YKL)','1','0'),(3528,'','WBG',33391,83,'Schleswig, Schleswig Air Base (WBG)','1','0'),(3529,'US','BFF',24656,231,'Scottsbluff, US - Western Nebraska Regional Apt/William B Heilig Fld (BFF)','1','0'),(3530,'US','AVP',24661,231,'Scranton, US - Wilkes-Barre/Scranton Intl Airport (AVP)','1','0'),(3531,'LY','SEB',24694,123,'Sebha, LY - Sabha Airport (SEB)','1','0'),(3532,'','YHS',24697,39,'Sechelt, Sechelt Aerodrome (YHS)','1','0'),(3533,'','ZEC',24701,195,'Secunda, Secunda Airport (ZEC)','1','0'),(3534,'','SDX',24710,231,'Sedona, Sedona Airport (SDX)','1','0'),(3535,'SB','EGM',24729,193,'Sege, SB - Sege Airport (EGM)','1','0'),(3536,'','SHK',24742,121,'Sehonghong, Sehonghong Airport (SHK)','1','0'),(3537,'YE','GXF',24757,240,'Seiyun, YE - Sayun Airport (GXF)','1','0'),(3538,'','SKQ',24758,121,'Sekake, Sekake Airport (SKQ)','1','0'),(3539,'US','WLK',24761,231,'Selawik, US - Selawik Airport (WLK)','1','0'),(3540,'US','SOV',24767,231,'Seldovia, US - Seldovia Airport (SOV)','1','0'),(3541,'','PKW',24768,28,'Selebi-phikwe, Selebi-Phikwe Airport (PKW)','1','0'),(3542,'ID','SRG',24791,102,'Semarang, ID - Yani Airport (SRG)','1','0'),(3543,'LS','SOK',24799,121,'Semongkong, LS - Semonkong Airport (SOK)','1','0'),(3544,'','SMM',24802,132,'Semporna, Semporna Airport (SMM)','1','0'),(3545,'JP','SDJ',24809,110,'Sendai, JP - Sendai Airport (SDJ)','1','0'),(3546,'','JDG',24831,0,'Seogwipo, Jeongseok Airport (JDG)','1','0'),(3547,'KR','GMP',24832,197,'Seoul, KR - Gimpo Intl Airport (GMP)','1','0'),(3548,'KR','ICN',24832,197,'Seoul, KR - Incheon Intl Airport (ICN)','1','0'),(3549,'CA','YZV',24836,39,'Sept Iles, CA - Sept-Iles Airport (YZV)','1','0'),(3550,'','SQV',24843,231,'Sequim, Sequim Valley Airport (SQV)','1','0'),(3551,'LY','SRX',24879,123,'Sert, LY - Ghardabiya Airport (SRX)','1','0'),(3552,'','ZRI',24880,102,'Serui, Serui Airport (ZRI)','1','0'),(3553,'','SZM',24885,151,'Sesriem, Sesriem Airport (SZM)','1','0'),(3554,'UA','UKS',24907,227,'Sevastopol, UA - Belbek Sevastopol Intl Airport (UKS)','1','0'),(3555,'US','SWD',24928,231,'Seward, US - Seward (SWD)','1','0'),(3556,'TN','SFA',24944,220,'Sfax, TN - Thyna Intl Airport (SFA)','1','0'),(3557,'US','SHX',24951,231,'Shageluk, US - Shageluk Airport (SHX)','1','0'),(3558,'BW','SWX',24956,28,'Shakawe, BW - Shakawe (SWX)','1','0'),(3559,'','SKR',24958,70,'Shakiso, Shakiso Airport (SKR)','1','0'),(3560,'US','SKK',24960,231,'Shaktoolik, US - Shaktoolik Airport (SKK)','1','0'),(3561,'CA','ZTM',24965,39,'Shamattawa, CA - Shamattawa Airport (ZTM)','1','0'),(3562,'CN','SHA',24972,46,'Shanghai, CN - Shanghai Hongqiao Intl Airport (SHA)','1','0'),(3563,'IE','SNN',33406,105,'Shannon, IE - Shannon Airport (SNN)','1','0'),(3564,'','SXJ',24982,46,'Shanshan, Shanshan Airport (SXJ)','1','0'),(3565,'CN','SWA',24983,46,'Shantou, CN - Jeiyang Chaoshan Intl Airport (SWA)','1','0'),(3566,'','HSC',24986,46,'Shaoguan, Shaoguan Guitou Airport (HSC)','1','0'),(3567,'AE','SHJ',24993,228,'Sharjah, AE - Sharjah Airport (SHJ)','1','0'),(3568,'EG','SSH',24995,65,'Sharm El Sheikh, EG - Ophira Airport (SSH)','1','0'),(3569,'','SBX',25026,231,'Shelby, Shelby Airport (SBX)','1','0'),(3570,'CN','SHE',25036,46,'Shenyang, CN - Shenyang Taoxian Intl Airport (SHE)','1','0'),(3571,'CN','SZX',25037,46,'Shenzhen, CN - Shenzhen Bao`an Intl Airport (SZX)','1','0'),(3572,'US','SHR',25048,231,'Sheridan, US - Sheridan County Airport (SHR)','1','0'),(3573,'','PNX',25050,231,'Sherman, North Texas Regional Airport (PNX)','1','0'),(3574,'','RKZ',25062,46,'Shigatse, Shigatse Peace Airport (RKZ)','1','0'),(3575,'CN','SJW',25064,46,'Shijiazhuang, CN - Shijiazhuang Zhengding Intl Airport (SJW)','1','0'),(3576,'IN','SHL',25073,101,'Shillong, IN - Shillong Airport (SHL)','1','0'),(3577,'IN','SLV',1,101,'Shimla, IN - Shimla (Umroi) Airport (SLV)','1','0'),(3578,'JP','SHI',25083,110,'Shimojishima, JP - Shimojishima Airport (SHI)','1','0'),(3579,'','SHY',25091,214,'Shinyanga, Shinyanga Airport (SHY)','1','0'),(3580,'IR','SYZ',25099,103,'Shiraz, IR - Shiraz Airport (SYZ)','1','0'),(3581,'US','HWV',25103,231,'Shirley, US - Brookhaven (HWV)','1','0'),(3582,'','WSH',25103,231,'Shirley, Brookhaven Airport (WSH)','1','0'),(3583,'US','SHH',25107,231,'Shishmaref, US - Shishmaref Airport (SHH)','1','0'),(3584,'','WDS',25110,46,'Shiyan, Shiyan Wudangshan Airport (WDS)','1','0'),(3585,'','ESH',25120,482,'Shoreham-by-sea, Shoreham Airport (ESH)','1','0'),(3586,'US','SHV',25131,231,'Shreveport, US - Shreveport Regional Airport (SHV)','1','0'),(3587,'US','SHG',25142,231,'Shungnak, US - Shungnak Airport (SHG)','1','0'),(3588,'','SBQ',25157,166,'Sibi, Sibi Airport (SBQ)','1','0'),(3589,'MY','SBW',25161,132,'Sibu, MY - Sibu Airport (SBW)','1','0'),(3590,'US','SDY',25172,231,'Sidney, US - Richland Municipal Airport (SDY)','1','0'),(3591,'US','SNY',25172,231,'Sidney, US - Sidney Municipal/Lloyd W. Carr Field (SNY)','1','0'),(3592,'','SXY',25172,231,'Sidney, Sidney Municipal Airport (SXY)','1','0'),(3593,'KH','REP',25180,37,'Siem Reap, KH - Siem Reap Airport (REP)','1','0'),(3594,'IS','SIJ',25199,100,'Siglufjordur, IS - Siglufjordur (SIJ)','1','0'),(3595,'SE','ARN',25205,209,'Sigtuna, SE - Arlanda Airport (ARN)','1','0'),(3596,'','SXZ',25212,222,'Siirt, Siirt Airport (SXZ)','1','0'),(3597,'','SIK',25215,231,'Sikeston, Sikeston Memorial Municipal Airport (SIK)','1','0'),(3598,'IN','IXS',25219,101,'Silchar, IN - Silchar Airport (IXS)','1','0'),(3599,'','SLS',25228,34,'Silistra, Silistra Airfield (SLS)','1','0'),(3600,'UA','SIP',25252,227,'Simferopol, UA - Simferopol Airport (SIP)','1','0'),(3601,'','IMK',25255,153,'Simikot, Simikot Airport (IMK)','1','0'),(3602,'','CNL',25272,59,'Sindal, Sindal Airport (CNL)','1','0'),(3603,'','SIE',25275,175,'Sines, Sines Airport (SIE)','1','0'),(3604,'SG','QPG',25278,190,'Singapore, SG - Paya Lebar Airbase (QPG)','1','0'),(3605,'SG','SIN',25278,190,'Singapore, SG - Changi Intl Airport (SIN)','1','0'),(3606,'SG','XSP',25278,190,'Singapore, SG - Seletar (XSP)','1','0'),(3607,'','SIQ',25281,102,'Singkep, Dabo Singkep Airport (SIQ)','1','0'),(3608,'','SIX',25282,13,'Singleton, Singleton Airport (SIX)','1','0'),(3609,'CH','SIR',25306,210,'Sion, CH - Sion Airport (SIR)','1','0'),(3610,'CA','YXL',25308,39,'Sioux Lookout, CA - Sioux Lookout Airport (YXL)','1','0'),(3611,'ZA','SIS',25326,195,'Sishen, ZA - Sishen Airport (SIS)','1','0'),(3612,'','SWY',25340,132,'Sitiawan, Sitiawan Airport (SWY)','1','0'),(3613,'US','SIT',25341,231,'Sitka, US - Sitka Airport (SIT)','1','0'),(3614,'MM','AKY',25347,150,'Sittwe, MM - Sittwe Airport (AKY)','1','0'),(3615,'TR','VAS',25349,222,'Sivas, TR - Sivas Nuri Demirag Airport (VAS)','1','0'),(3616,'US','SGY',25360,231,'Skagway, US - Skagway Airport (SGY)','1','0'),(3617,'SE','SFT',25378,209,'Skelleftea, SE - Skelleftea Airport (SFT)','1','0'),(3618,'GR','JSI',25386,86,'Skiathos, GR - Skiathos Airport (JSI)','1','0'),(3619,'NO','SKE',25392,164,'Skien, NO - Skien Airport Geiteryggen (SKE)','1','0'),(3620,'GR','SKU',25397,86,'Skiros, GR - Skiros Airport (SKU)','1','0'),(3621,'','SQW',25398,59,'Skive, Skive Airport (SQW)','1','0'),(3622,'MK','SKP',25410,129,'Skopje, MK - Skopje Airport (SKP)','1','0'),(3623,'SE','KVB',25415,209,'Skovde, SE - Skovde (KVB)','1','0'),(3624,'ZA','SZK',25418,195,'Skukuza, ZA - Skukuza Airport (SZK)','1','0'),(3625,'','SKW',25420,231,'Skwentna, Skwentna Airport (SKW)','1','0'),(3626,'US','SLQ',25442,231,'Sleetmute, US - Sleetmute Airport (SLQ)','1','0'),(3627,'SK','SLD',25446,191,'Sliac, SK - Sliac Airport (SLD)','1','0'),(3628,'IE','SXL',25449,105,'Sligo, IE - Sligo Airport (SXL)','1','0'),(3629,'','SMW',25465,148,'Smara, Smara Airport (SMW)','1','0'),(3630,'CA','YYD',25471,39,'Smithers, CA - Smithers Airport (YYD)','1','0'),(3631,'US','AWO',25500,231,'Snohomish, US - Arlington Municipal (AWO)','1','0'),(3632,'','DWB',25511,130,'Soalala, Soalala Airport (DWB)','1','0'),(3633,'YE','SCT',25526,240,'Socotra, YE - Socotra Airport (SCT)','1','0'),(3634,'FI','SOT',25530,75,'Sodankyla, FI - Sodankyla (SOT)','1','0'),(3635,'ET','SXU',25532,70,'Soddu, ET - Soddu Airport (SXU)','1','0'),(3636,'SE','SOO',25535,209,'Soderhamn, SE - Soderhamn Airport (SOO)','1','0'),(3637,'BG','SOF',25546,34,'Sofia, BG - Sofia Intl Airport (SOF)','1','0'),(3638,'NO','SOG',25549,164,'Sogndal, NO - Sognal Airport Haukasen (SOG)','1','0'),(3639,'','OHS',25551,165,'Sohar, Sohar Airport (OHS)','1','0'),(3640,'KR','SHO',25559,197,'Sokcho, KR - King Mswati III Intl Airport (SHO)','1','0'),(3641,'VU','SLH',25562,233,'Sola, VU - Vanua Lava Airport (SLH)','1','0'),(3642,'','SSE',34318,101,'Solapur, Solapur Airport (SSE)','1','0'),(3643,'','SXQ',25574,231,'Soldotna, Soldotna Airport (SXQ)','1','0'),(3644,'','SOL',25602,231,'Solomon, Solomon State Field Airport (SOL)','1','0'),(3645,'DK','SGD',25636,59,'Sonderborg, DK - Sonderborg Airport (SGD)','1','0'),(3646,'','SGX',25646,214,'Songea, Songea Airport (SGX)','1','0'),(3647,'FR','SXD',25660,76,'Sophia Antipolis, FR - Sophia Antipolis Airport (SXD)','1','0'),(3648,'NO','SOJ',25675,164,'Sorkjosen, NO - Sorkjosen Airport (SOJ)','1','0'),(3649,'','SQR',25678,102,'Soroako, Soroako Airport (SQR)','1','0'),(3650,'ID','SOQ',25680,102,'Sorong, ID - Domine Edward Osok Airport (SOQ)','1','0'),(3651,'CG','SOE',25703,51,'Souanke, CG - Souanké Airport (SOE)','1','0'),(3652,'BS','TZN',25723,16,'South Andros, BS - South Andros Airport (TZN)','1','0'),(3653,'','ADO',33441,13,'South Australia Region, Andamooka Airport (ADO)','1','0'),(3654,'','AMT',33441,13,'South Australia Region, Amata Airport (AMT)','1','0'),(3655,'','LCN',33441,13,'South Australia Region, Balcanoona Airport (LCN)','1','0'),(3656,'US','SBN',33445,231,'South Bend, US - South Bend Regional Airport (SBN)','1','0'),(3657,'US','BTV',33452,231,'South Burlington, US - Burlington Intl Airport (BTV)','1','0'),(3658,'CA','XSI',33482,39,'South Indian Lake, CA - South Indian Lake Airport (XSI)','1','0'),(3659,'US','WSN',33493,231,'South Naknek, US - South Naknek Airport (WSN)','1','0'),(3660,'','AUE',25735,65,'South Sinai, Abu Rudeis Airport (AUE)','1','0'),(3661,'VU','SWJ',25739,233,'South West Bay, VU - South West Bay Airport (SWJ)','1','0'),(3662,'GB','SOU',25742,482,'Southampton, GB - Southampton Intl Airport (SOU)','1','0'),(3663,'GB','SEN',25754,482,'Southend, GB - London Southend Airport (SEN)','1','0'),(3664,'','SHQ',25775,231,'Southport, Southport Airport (SHQ)','1','0'),(3665,'AO','SZA',25794,6,'Soyo, AO - Soyo Airport (SZA)','1','0'),(3666,'','SAR',25816,86,'Sparta, Sparta Community Airport (SAR)','1','0'),(3667,'US','SPF',25823,231,'Spearfish, US - Black Hills (Clyde Ice Field) (SPF)','1','0'),(3668,'US','SPW',25831,231,'Spencer, US - Spencer Municipal (SPW)','1','0'),(3669,'','RTL',25856,231,'Spirit Lake, Spirit Lake Municipal Airport (RTL)','1','0'),(3670,'HR','SPU',25862,55,'Split, HR - Split Airport (SPU)','1','0'),(3671,'US','GEG',25864,231,'Spokane, US - Spokane Intl Airport (GEG)','1','0'),(3672,'US','SFF',25864,231,'Spokane, US - Felts Field (SFF)','1','0'),(3673,'','SCG',33540,13,'Spring Creek, Spring Creek Airport (SCG)','1','0'),(3674,'BS','AXP',25876,16,'Spring Point, BS - Spring Point Airport (AXP)','1','0'),(3675,'ZA','SBU',25877,195,'Springbok, ZA - Springbok (SBU)','1','0'),(3676,'','SPZ',25879,231,'Springdale, Springdale Municipal Airport (SPZ)','1','0'),(3677,'US','SGF',25882,231,'Springfield, US - Branson National Airport (SGF)','1','0'),(3678,'US','SPI',25882,231,'Springfield, US - Abraham Lincoln Capital Airport (SPI)','1','0'),(3679,'','ZVG',25887,13,'Springvale, Springvale Airport (ZVG)','1','0'),(3680,'CA','YSE',25892,39,'Squamish, CA - Squamish (YSE)','1','0'),(3681,'IN','SXR',25897,101,'Srinagar, IN - Srinagar Airport (SXR)','1','0'),(3682,'FR','SBK',33567,76,'St Brieuc, FR - Saint-Brieuc - Armor (SBK)','1','0'),(3683,'CA','YYT',33610,39,'St Johns, CA - St John`s Intl Airport (YYT)','1','0'),(3684,'KN','SKB',33616,202,'St Kitts, KN - R L Bradshaw Airport (SKB)','1','0'),(3685,'LC','SLU',33622,182,'St Lucia, LC - George F L Charles Airport (SLU)','1','0'),(3686,'LC','UVF',33622,182,'St Lucia, LC - Hewanorra Intl Airport (UVF)','1','0'),(3687,'US','STP',33645,231,'St Paul, US - St Paul Downtown Airport/Holman Field (STP)','1','0'),(3688,'RU','LED',33649,181,'St Petersburg, RU - Pulkovo Airport (LED)','1','0'),(3689,'','YCM',33683,39,'St. Catharines, St. Catharines/Niagara District Airport (YCM)','1','0'),(3690,'','SJN',33704,39,'St. Johns, St. Johns Industrial Air Park (SJN)','1','0'),(3691,'','STQ',33721,231,'St. Marys, St. Marys Municipal Airport (STQ)','1','0'),(3692,'US','SPG',33738,231,'St. Petersburg, US - Albert Whitted (SPG)','1','0'),(3693,'','PSY',25988,231,'Stanley, Port Stanley Airport (PSY)','1','0'),(3694,'','SNH',25999,13,'Stanthorpe, Stanthorpe Airport (SNH)','1','0'),(3695,'US','SCE',33749,231,'State College, US - University Park Airport (SCE)','1','0'),(3696,'DK','STA',26024,59,'Stauning, DK - Stauning Vestjylland (STA)','1','0'),(3697,'US','SHD',26025,231,'Staunton, US - Shenandoah Valley Regional Airport (SHD)','1','0'),(3698,'NO','SVG',26026,164,'Stavanger, NO - Stavanger Airport Sola (SVG)','1','0'),(3699,'RU','STW',26029,181,'Stavropol, RU - Shpakovskoye Airport (STW)','1','0'),(3700,'US','WBB',26037,231,'Stebbins, US - Stebbins Airport (WBB)','1','0'),(3701,'BS','SML',26066,16,'Stella Maris, BS - Stella Maris Airport (SML)','1','0'),(3702,'CA','YJT',26078,39,'Stephenville, CA - Stephenville Intl Airport (YJT)','1','0'),(3703,'','SQI',26081,231,'Sterling, Whiteside County Airport (SQI)','1','0'),(3704,'','ZST',26093,39,'Stewart, Stewart Aerodrome (ZST)','1','0'),(3705,'NZ','SZS',26095,157,'Stewart Island, NZ - Ryans Creek Airport (SZS)','1','0'),(3706,'US','SCK',26139,231,'Stockton, US - Stockton Metropolitan Airport (SCK)','1','0'),(3707,'NO','SKN',26145,164,'Stokmarknes, NO - Stokmarknes Airport Skagen (SKN)','1','0'),(3708,'GB','SYY',26170,482,'Stornoway, GB - Stornoway Airport (SYY)','1','0'),(3709,'','MMN',33766,231,'Stow, Minute Man Air Field (MMN)','1','0'),(3710,'FR','SXB',26205,76,'Strasbourg, FR - Entzheim Airport (SXB)','1','0'),(3711,'','RBM',26226,83,'Straubing, Straubing Wallmühle Airport (RBM)','1','0'),(3712,'','KBY',26230,13,'Streaky Bay, Streaky Bay Airport (KBY)','1','0'),(3713,'GB','SOY',26257,482,'Stronsay, GB - Stronsay Airport (SOY)','1','0'),(3714,'','SUD',26258,482,'Stroud, Stroud Municipal Airport (SUD)','1','0'),(3715,'','SSW',26269,39,'Stuart Island, Stuart Island Airpark (SSW)','1','0'),(3716,'','YIG',26269,39,'Stuart Island, Big Bay Water Aerodrome (YIG)','1','0'),(3717,'','TNX',26277,37,'Stung Treng, Steung Treng Airport (TNX)','1','0'),(3718,'US','SUE',26280,231,'Sturgeon Bay, US - Door County Cherryland (SUE)','1','0'),(3719,'DE','STR',26286,83,'Stuttgart, DE - Stuttgart Airport (STR)','1','0'),(3720,'MY','SZB',26296,132,'Subang Jaya, MY - Abdul Aziz Shah Airport (SZB)','1','0'),(3721,'PH','SFS',26302,173,'Subic Bay, PH - Subic Bay Intl Airport (SFS)','1','0'),(3722,'RO','SCV',26307,179,'Suceava, RO - Stefan cel Mare Airport (SCV)','1','0'),(3723,'BO','SRE',26311,26,'Sucre, BO - Juana Azurduy de Padilla Intl Airport (SRE)','1','0'),(3724,'CA','YSB',26312,39,'Sudbury, CA - Greater Sudbury Airport (YSB)','1','0'),(3725,'PK','SUL',26331,166,'Sui, PK - Sui Airport (SUL)','1','0'),(3726,'TH','THS',26340,215,'Sukhothai, TH - Sukhothai Airport (THS)','1','0'),(3727,'','SUI',26341,82,'Sukhumi, Sukhumi Babushara Airport (SUI)','1','0'),(3728,'PK','SKZ',26343,166,'Sukkur, PK - Sukkur Airport (SKZ)','1','0'),(3729,'','BUW',26345,102,'Sulawesi, Betoambari Airport (BUW)','1','0'),(3730,'IQ','ISU',26346,104,'Sulaymaniyah, IQ - Sulaimaniyah Intl Airport (ISU)','1','0'),(3731,'','SIV',26348,231,'Sullivan, Sullivan County Airport (SIV)','1','0'),(3732,'ID','SWQ',26361,102,'Sumbawa, ID - Sultan Muhammad Kaharuddin III Airport (SWQ)','1','0'),(3733,'','SUT',26362,214,'Sumbawanga, Sumbawanga Airport (SUT)','1','0'),(3734,'','NDD',26363,6,'Sumbe, Sumbe Airport (NDD)','1','0'),(3735,'','UMM',33774,231,'Summit, Summit Airport (UMM)','1','0'),(3736,'','SUM',26379,231,'Sumter, Sumter Airport (SUM)','1','0'),(3737,'','UMY',26380,227,'Sumy, Sumy Airport (UMY)','1','0'),(3738,'ZA','NTY',26381,195,'Sun City, ZA - Pilanesberg Intl Airport (NTY)','1','0'),(3739,'SE','SDL',26394,209,'Sundsvall, SE - Midlanda Airport (SDL)','1','0'),(3740,'','SUO',26413,231,'Sunriver, Sunriver Airport (SUO)','1','0'),(3741,'GH','NYI',26422,84,'Sunyani, GH - Sunyani Airport (NYI)','1','0'),(3742,'','SUH',26434,165,'Sur, Sur Airport (SUH)','1','0'),(3743,'ID','SUB',26435,102,'Surabaya, ID - Juanda Airport (SUB)','1','0'),(3744,'ID','SOC',26437,102,'Surakarta, ID - Adisumarmo Intl Airport (SOC)','1','0'),(3745,'IN','STV',26438,101,'Surat, IN - Surat Airport (STV)','1','0'),(3746,'TH','URT',26439,215,'Surat Thani, TH - Surat Thani Airport (URT)','1','0'),(3747,'RU','SGC',26447,181,'Surgut, RU - Surgut Airport (SGC)','1','0'),(3748,'','PXR',26449,215,'Surin, Surin Airport (PXR)','1','0'),(3749,'','SKH',26452,153,'Surkhet, Surkhet Airport (SKH)','1','0'),(3750,'FJ','SUV',26476,74,'Suva, FJ - Nausori Intl Airport (SUV)','1','0'),(3751,'','SZV',26485,46,'Suzhou, Suzhou Guangfu Airport (SZV)','1','0'),(3752,'SE','EVG',26491,209,'Sveg, SE - Sveg Airport (EVG)','1','0'),(3753,'NO','SVJ',26502,164,'Svolvaer, NO - Svolvaer Airport Helle (SVJ)','1','0'),(3754,'NA','SWP',26508,151,'Swakopmund, NA - Swakopmund (SWP)','1','0'),(3755,'','ZJN',26513,39,'Swan River, Swan River Airport (ZJN)','1','0'),(3756,'CA','YYN',26531,39,'Swift Current, CA - Swift Current (YYN)','1','0'),(3757,'','RSE',26540,39,'Sydney, Rose Bay Seaplane Base (RSE)','1','0'),(3758,'CA','YQY',26540,39,'Sydney, CA - J A Douglas McCurdy Airport (YQY)','1','0'),(3759,'RU','SCW',26544,181,'Syktyvkar, RU - Syktyvkar Airport (SCW)','1','0'),(3760,'BD','ZYL',26546,18,'Sylhet, BD - Osmani Intl Airport (ZYL)','1','0'),(3761,'US','SYR',26560,231,'Syracuse, US - Syracuse Hancock Intl Airport (SYR)','1','0'),(3762,'EG','TCP',26579,65,'Taba, EG - Taba Intl Airport (TCP)','1','0'),(3763,'BR','TBT',26585,30,'Tabatinga, BR - Tabatinga Intl Airport (TBT)','1','0'),(3764,'','TBF',26589,114,'Tabiteuea North, Tabiteuea North Airport (TBF)','1','0'),(3765,'TZ','TBO',26593,214,'Tabora, TZ - Tabora Airport (TBO)','1','0'),(3766,'IR','TBZ',26594,103,'Tabriz, IR - Tabriz Airport (TBZ)','1','0'),(3767,'SA','TUU',26596,186,'Tabuk, SA - Tabuk Airport (TUU)','1','0'),(3768,'PH','TAC',26598,173,'Tacloban, PH - D Z Romualdez Airport (TAC)','1','0'),(3769,'PE','TCQ',26599,172,'Tacna, PE - Tacna Airport (TCQ)','1','0'),(3770,'UY','TAW',26601,230,'Tacuarembo, UY - Tacuarembó Airport (TAW)','1','0'),(3771,'','TDJ',26604,60,'Tadjoura, Tadjoura Airport (TDJ)','1','0'),(3772,'CA','XTL',26606,39,'Tadoule Lake, CA - Tadoule Lake Airport (XTL)','1','0'),(3773,'','ZTS',26628,39,'Tahsis, Tahsis Water Aerodrome (ZTS)','1','0'),(3774,'TW','TXG',26635,212,'Taichung, TW - Taichung Airport (TXG)','1','0'),(3775,'SA','TIF',26636,186,'Taif, SA - Taif Airport (TIF)','1','0'),(3776,'TW','TNN',26638,212,'Tainan, TW - Tainan Airport (TNN)','1','0'),(3777,'TW','TPE',26643,212,'Taipei, TW - Taiwan Taoyuan Intl Airport (TPE)','1','0'),(3778,'TW','TSA',26643,212,'Taipei, TW - Taipei Songshan Airport (TSA)','1','0'),(3779,'MY','TPG',26648,132,'Taiping, MY - Taiping (TPG)','1','0'),(3780,'TW','TTT',26652,212,'Taitung, TW - Taitung Airport (TTT)','1','0'),(3781,'CN','TYN',26654,46,'Taiyuan, CN - Taiyuan Wusu Intl Airport (TYN)','1','0'),(3782,'YE','TAI',26655,240,'Taiz, YE - Ta`izz Intl Airport (TAI)','1','0'),(3783,'','TKT',26658,215,'Tak, Tak Airport (TKT)','1','0'),(3784,'JP','TAK',26661,110,'Takamatsu, JP - Takamatsu Airport (TAK)','1','0'),(3785,'PF','TKP',26664,78,'Takapoto, PF - Takapoto Airport (TKP)','1','0'),(3786,'PF','TKX',26666,78,'Takaroa, PF - Takaroa Airport (TKX)','1','0'),(3787,'US','TCT',26674,231,'Takotna, US - Takotna Airport (TCT)','1','0'),(3788,'PE','TYL',26681,172,'Talara, PE - Victor Montes Arias Airport (TYL)','1','0'),(3789,'EE','TLL',26703,69,'Tallinn, EE - Lennart Meri Tallinn Airport (TLL)','1','0'),(3790,'CA','YYH',26709,39,'Taloyoak, CA - Taloyoak Airport (YYH)','1','0'),(3791,'GH','TML',26714,84,'Tamale, GH - Tamale Airport (TML)','1','0'),(3792,'','SXT',26716,132,'Taman Negara, Sungai Tiang Airport (SXT)','1','0'),(3793,'','TMN',26717,110,'Tamana, Tamana Airport (TMN)','1','0'),(3794,'DZ','TMR',26721,3,'Tamanrasset, DZ - Aguenar Hadj Bey Akhamok Airport (TMR)','1','0'),(3795,'MG','TMM',26728,130,'Tamatave, MG - Toamasina Airport (TMM)','1','0'),(3796,'','TUD',26729,187,'Tambacounda, Tambacounda Airport (TUD)','1','0'),(3797,'','WTA',26731,130,'Tambohorano, Tambohorano Airport (WTA)','1','0'),(3798,'ID','TMC',26733,102,'Tambolaka, ID - Tambolaka Airport (TMC)','1','0'),(3799,'','KYO',26743,231,'Tampa, Tampa North Aero Park (KYO)','1','0'),(3800,'US','TPA',26743,231,'Tampa, US - Tampa Intl Airport (TPA)','1','0'),(3801,'FI','TMP',26744,75,'Tampere, FI - Pirkkala Airport (TMP)','1','0'),(3802,'MX','TAM',26745,141,'Tampico, MX - Gen Francisco Javier Mina Intl Airport (TAM)','1','0'),(3803,'US','GUM',26747,90,'Tamuning, US - Antonio B Won Pat Intl Airport (GUM)','1','0'),(3804,'MA','TTA',26752,148,'Tan Tan, MA - Plage Blanche Airport (TTA)','1','0'),(3805,'ID','TTR',26754,102,'Tana Toraja, ID - Pongtiku Airport (TTR)','1','0'),(3806,'US','TAL',26759,231,'Tanana, US - Tanana Airport (TAL)','1','0'),(3807,'JP','TNE',26767,110,'Tanegashima, JP - New Tanegashima Airport (TNE)','1','0'),(3808,'','TGT',26769,214,'Tanga, Tanga Airport (TGT)','1','0'),(3809,'MA','TNG',26777,148,'Tangier, MA - Boukhalef Airport (TNG)','1','0'),(3810,'','TVS',26779,46,'Tangshan, Tangshan Sannühe Airport (TVS)','1','0'),(3811,'','TJG',26782,102,'Tanjung, Warukin Airport (TJG)','1','0'),(3812,'MY','TGC',26783,132,'Tanjung Bungah, MY - Tanjung Manis Airport (TGC)','1','0'),(3813,'','TPJ',26803,153,'Taplejung, Taplejung Airport (TPJ)','1','0'),(3814,'ID','TRK',26808,102,'Tarakan, ID - Tarakan Airport (TRK)','1','0'),(3815,'PE','TPP',26814,172,'Tarapoto, PE - Tarapoto Airport (TPP)','1','0'),(3816,'KI','TRW',26819,114,'Tarawa, KI - Bonriki Intl Airport (TRW)','1','0'),(3817,'','TGV',26830,34,'Targovishte, Targovishte Airport (TGV)','1','0'),(3818,'','BJO',26834,26,'Tarija, Bermejo Airport (BJO)','1','0'),(3819,'BO','TJA',26834,26,'Tarija, BO - Cap. Oriel Lea Plaza Airport (TJA)','1','0'),(3820,'','TQL',26838,181,'Tarko-sale, Tarko-Sale Airport (TQL)','1','0'),(3821,'UZ','TAS',26873,232,'Tashkent, UZ - Yuzhnyy Airport (TAS)','1','0'),(3822,'','TSY',26874,102,'Tasikmalaya, Tasikmalaya Airport (TSY)','1','0'),(3823,'','TEK',26886,231,'Tatitlek, Tatitlek Airport (TEK)','1','0'),(3824,'BR','QHP',26892,30,'Taubate, BR - Base De Aviacao De Taubate (QHP)','1','0'),(3825,'NZ','TRG',26901,157,'Tauranga, NZ - Tauranga Airport (TRG)','1','0'),(3826,'FJ','TVU',26913,74,'Taveuni, FJ - Taveuni Island - Matei Airport (TVU)','1','0'),(3827,'MY','TWU',26917,132,'Tawau, MY - Tawau Airport (TWU)','1','0'),(3828,'','CDY',26918,173,'Tawitawi, Cagayan de Sulu Airport (CDY)','1','0'),(3829,'','TWE',26920,231,'Taylor, Taylor Airport (TWE)','1','0'),(3830,'','TYZ',26920,231,'Taylor, Taylor Airport (TYZ)','1','0'),(3831,'DZ','TEE',26927,3,'Tbessa, DZ - Cheikh Larbi Tebessi Airport (TEE)','1','0'),(3832,'GE','TBS',26928,82,'Tbilisi, GE - Novo Alexeyevka Airport (TBS)','1','0'),(3833,'','TCH',26929,80,'Tchibanga, Tchibanga Airport (TCH)','1','0'),(3834,'','TEU',33794,157,'Te Anau, Te Anau Airport (TEU)','1','0'),(3835,'GB','MME',26944,482,'Teesside, GB - Teesside Airport (MME)','1','0'),(3836,'BR','TFF',26945,30,'Tefe, BR - Tefe Airport (TFF)','1','0'),(3837,'HN','TGU',26949,97,'Tegucigalpa, HN - Toncontin Intl Airport (TGU)','1','0'),(3838,'IR','THR',26952,103,'Tehran, IR - Mehrabad Intl Airport (THR)','1','0'),(3839,'IR','IKA',26952,103,'Tehran, IR - Imam Khomeini Airport (IKA)','1','0'),(3840,'IL','SDV',26961,106,'Tel Aviv, IL - Sde Dov Airport (SDV)','1','0'),(3841,'IL','TLV',26961,106,'Tel Aviv, IL - Ben Gurion Airport (TLV)','1','0'),(3842,'','TEA',26962,97,'Tela, Tela Airport (TEA)','1','0'),(3843,'','YTX',26966,39,'Telegraph Creek, Telegraph Creek Airport (YTX)','1','0'),(3844,'','TEF',26969,13,'Telfer, Telfer Airport (TEF)','1','0'),(3845,'US','TLA',26975,231,'Teller, US - Teller Airport (TLA)','1','0'),(3846,'US','TEX',26977,231,'Telluride, US - Telluride Regional Airport (TEX)','1','0'),(3847,'ID','TIM',26981,102,'Tembagapura, ID - Tembagapura Airport (TIM)','1','0'),(3848,'','TXM',26985,102,'Teminabuan, Teminabuan Airport (TXM)','1','0'),(3849,'','TEM',26987,13,'Temora, Temora Airport (TEM)','1','0'),(3850,'','PZS',27001,45,'Temuco, Maquehue Airport (PZS)','1','0'),(3851,'CL','ZCO',27001,45,'Temuco, CL - Maquehue Airport (ZCO)','1','0'),(3852,'ES','TFN',27010,199,'Tenerife, ES - Tenerife North (Los Rodeos) Airport (TFN)','1','0'),(3853,'ES','TFS',27010,199,'Tenerife, ES - Tenerife South (Reina Sofia) Airport (TFS)','1','0'),(3854,'MX','TPQ',27033,141,'Tepic, MX - Amado Nervo Intl Airport (TPQ)','1','0'),(3855,'BR','THE',27045,30,'Teresina, BR - Teresina Airport (THE)','1','0'),(3856,'ID','TTE',27060,102,'Ternate, ID - Babullah Airport (TTE)','1','0'),(3857,'CA','YXT',27065,39,'Terrace, CA - Northwest Regional Airport (YXT)','1','0'),(3858,'US','HUF',33809,231,'Terre Haute, US - Terre Haute Intl Airport (Hulman Field) (HUF)','1','0'),(3859,'','TEV',27082,199,'Teruel, Teruel Airport (TEV)','1','0'),(3860,'','YZW',27087,39,'Teslin, Teslin Airport (YZW)','1','0'),(3861,'MZ','TET',27092,149,'Tete, MZ - Chingozi / Matundo Airport (TET)','1','0'),(3862,'CA','ZTB',27093,39,'Tete A La Baleine, CA - Tete-a-la-Baleine Airport (ZTB)','1','0'),(3863,'US','TEB',27094,231,'Teterboro, US - Teterboro Airport (TEB)','1','0'),(3864,'MA','TTU',27100,148,'Tetuan, MA - Sania Ramel Airport (TTU)','1','0'),(3865,'','TWN',27107,13,'Tewantin, Tewantin Airport (TWN)','1','0'),(3866,'US','TXK',27110,231,'Texarkana, US - Texarkana Regional Airport / Webb Field (TXK)','1','0'),(3867,'','MGI',27111,231,'Texas City, Aransas National Wildlife Refuge Airport (MGI)','1','0'),(3868,'US','RKP',27111,231,'Texas City, US - Aransas County (RKP)','1','0'),(3869,'IN','TEZ',27116,101,'Tezpur, IN - Tezpur Airport (TEZ)','1','0'),(3870,'','TEI',27117,101,'Tezu, Tezu Airport (TEI)','1','0'),(3871,'ZA','TCU',27119,195,'Thaba Nchu, ZA - Thaba Nchu Airport (TCU)','1','0'),(3872,'','THK',27123,118,'Thakhek, Thakhek Airport (THK)','1','0'),(3873,'','TJV',27136,101,'Thanjavur, Thanjavur Air Force Station (TJV)','1','0'),(3874,'CA','YQD',33826,39,'The Pas, CA - The Pas Airport (YQD)','1','0'),(3875,'US','TVF',27171,231,'Thief River Falls, US - Thief River Falls Regional Airport (TVF)','1','0'),(3876,'IS','TEY',27177,100,'Thingeyri, IS - Thingeyri (TEY)','1','0'),(3877,'GR','JTR',33830,86,'Thira, GR - Santorini Airport (JTR)','1','0'),(3878,'DK','TED',27181,59,'Thisted, DK - Thisted (TED)','1','0'),(3879,'','THY',27183,195,'Thohoyandou, P.R. Mphephu Airport (THY)','1','0'),(3880,'CA','YTH',27193,39,'Thompson, CA - Thompson Municipal Airport (YTH)','1','0'),(3881,'','TCR',34425,101,'Thoothukudi, Tuticorin Airport (TCR)','1','0'),(3882,'US','KTB',33833,231,'Thorne Bay, US - Thorne Bay Seaplane Base (KTB)','1','0'),(3883,'IS','THO',27219,100,'Thorshofn, IS - Porshofn Airport (THO)','1','0'),(3884,'CA','YQT',27234,39,'Thunder Bay, CA - Thunder Bay Intl Airport (YQT)','1','0'),(3885,'','YYW',27234,39,'Thunder Bay, Armstrong Airport (YYW)','1','0'),(3886,'CN','TSN',27247,46,'Tianjin, CN - Tianjin Binhai Intl Airport (TSN)','1','0'),(3887,'','THQ',27248,46,'Tianshui, Tianshui Maijishan Airport (THQ)','1','0'),(3888,'DZ','TID',27252,3,'Tiaret, DZ - Abdelhafid Boussouf Bou Chekif Airport (TID)','1','0'),(3889,'NC','TGJ',27271,156,'Tiga, NC - Tiga Airport (TGJ)','1','0'),(3890,'MX','TIJ',27283,141,'Tijuana, MX - Gen Abelardo L Rodriguez Intl Airport (TIJ)','1','0'),(3891,'','TKC',27288,38,'Tiko, Tiko Airport (TKC)','1','0'),(3892,'','OTK',27294,231,'Tillamook, Tillamook Airport (OTK)','1','0'),(3893,'NZ','TIU',27301,157,'Timaru, NZ - Timaru Airport (TIU)','1','0'),(3894,'','TBK',27303,13,'Timber Creek, Timber Creek Airport (TBK)','1','0'),(3895,'RO','TSR',27306,179,'Timisoara, RO - Traian Vuia Intl Airport (TSR)','1','0'),(3896,'CA','YTS',27309,39,'Timmins, CA - Timmins Victor M Power Airport (YTS)','1','0'),(3897,'DZ','TIN',27318,3,'Tindouf, DZ - Tindouf Airport (TIN)','1','0'),(3898,'PE','TGI',27323,172,'Tingo Maria, PE - Tingo María Airport (TGI)','1','0'),(3899,'MP','TIQ',27325,163,'Tinian, MP - Tinian Island Airport (TIQ)','1','0'),(3900,'','VEX',27334,231,'Tioga, Tioga Municipal Airport (VEX)','1','0'),(3901,'','TMY',27335,102,'Tiom, Tiom Airport (TMY)','1','0'),(3902,'ET','TIE',27339,70,'Tippi, ET - Tippi Airport (TIE)','1','0'),(3903,'AL','TIA',27345,2,'Tirana, AL - Tirana (Rinas) Intl Airport Nene Tereza (TIA)','1','0'),(3904,'RO','TGM',27348,179,'Tirgu Mures, RO - Targu Mures Transilvania Airport (TGM)','1','0'),(3905,'IN','TRZ',27352,101,'Tiruchirapally, IN - Trichy Airport (TRZ)','1','0'),(3906,'IN','TIR',27353,101,'Tirupati, IN - Tirupati Airport (TIR)','1','0'),(3907,'','YTT',27356,39,'Tisdale, Tisdale Airport (YTT)','1','0'),(3908,'US','TIX',27371,231,'Titusville, US - Space Coast Regional (TIX)','1','0'),(3909,'YU','TIV',27372,241,'Tivat, YU - Tivat Airport (TIV)','1','0'),(3910,'DZ','TLM',27387,3,'Tlemcen, DZ - Zenata - Messali El Hadj Airport (TLM)','1','0'),(3911,'TT','TAB r',27391,219,'Tobago, TT - A N R Robinson Intl Airport (TAB r)','1','0'),(3912,'','TOX',27396,181,'Tobolsk, Tobolsk Airport (TOX)','1','0'),(3913,'LY','TOB',27397,123,'Tobruk, LY - Tobruk Airport (TOB)','1','0'),(3914,'','TOC',27399,231,'Toccoa, Toccoa Airport (TOC)','1','0'),(3915,'','YTP',27412,39,'Tofino, Tofino Harbour Water Aerodrome (YTP)','1','0'),(3916,'US','TKJ',33843,231,'Tok, US - Tok Airport (TKJ)','1','0'),(3917,'US','OOK',27424,231,'Toksook Bay, US - Toksook Bay Airport (OOK)','1','0'),(3918,'JP','TKS',27426,110,'Tokushima, JP - Tokushima Airport (TKS)','1','0'),(3919,'JP','HND',27427,110,'Tokyo, JP - Tokyo Intl (Haneda) Airport (HND)','1','0'),(3920,'JP','NRT',27427,110,'Tokyo, JP - Narita Intl Airport (NRT)','1','0'),(3921,'US','TOL',27432,231,'Toledo, US - Toledo Express Airport (TOL)','1','0'),(3922,'MG','BMD',27436,130,'Toliara, MG - Belo sur Tsiribihina Airport (BMD)','1','0'),(3923,'','DVD',27436,130,'Toliara, Andavadoaka Airport (DVD)','1','0'),(3924,'','TLI',27437,102,'Tolitoli, Sultan Bantilan Airport (TLI)','1','0'),(3925,'MY','TMG',27451,132,'Tomanggong, MY - Tomanggong Airport (TMG)','1','0'),(3926,'RU','TOF',27460,181,'Tomsk, RU - Tomsk Bogashevo Airport (TOF)','1','0'),(3927,'TO','TBU',27471,218,'Tongatapu, TO - Nukualofa - Fuaamotu Intl Airport (TBU)','1','0'),(3928,'','TNH',27474,46,'Tonghua, Tonghua Sanyuanpu Airport (TNH)','1','0'),(3929,'CN','TGO',27476,46,'Tongliao, CN - Tongliao Airport (TGO)','1','0'),(3930,'VU','TGH',27477,233,'Tongoa, VU - Tongoa Airport (TGH)','1','0'),(3931,'','XSD',27487,231,'Tonopah, Tonopah Test Range Airport (XSD)','1','0'),(3932,'','WTB',27493,13,'Toowoomba, Brisbane West Wellcamp Airport (WTB)','1','0'),(3933,'US','TOP',27497,231,'Topeka, US - Philip Billard Municipal (TOP)','1','0'),(3934,'CA','YTZ',27530,39,'Toronto, CA - Billy Bishop Toronto City (Toronto Island) Airport (YTZ)','1','0'),(3935,'CA','YYZ',27530,39,'Toronto, CA - Lester B Pearson Intl Airport (YYZ)','1','0'),(3936,'US','TOA',27534,231,'Torrance, US - Zamperini Field (TOA)','1','0'),(3937,'MX','TRC',27549,141,'Torreon, MX - Francisco Sarabia Intl Airport (TRC)','1','0'),(3938,'VU','TOH',27551,233,'Torres, VU - Torres Airport (TOH)','1','0'),(3939,'','TSQ',27551,233,'Torres, Torres Airport (TSQ)','1','0'),(3940,'','RAD',27572,32,'Tortola, Road Town Seaplane Base (RAD)','1','0'),(3941,'','TOV',27572,32,'Tortola, West End Seaplane Base (TOV)','1','0'),(3942,'IT','TTB',27574,107,'Tortoli, IT - Tortoli - Arbatax Airport (TTB)','1','0'),(3943,'JP','TTJ',27594,110,'Tottori, JP - Tottori Airport (TTJ)','1','0'),(3944,'DZ','TGR',27600,3,'Touggourt, DZ - Sidi Mahdi Airport (TGR)','1','0'),(3945,'NC','TOU',27601,156,'Touho, NC - Touho Airport (TOU)','1','0'),(3946,'FR','TLS',27603,76,'Toulouse, FR - Toulouse - Blagnac Airport (TLS)','1','0'),(3947,'EG','ELT',27605,65,'Tour Sinai City, EG - El Tor Airport (ELT)','1','0'),(3948,'FR','TUF',33866,76,'Tours, FR - Tours Val de Loire Airport (TUF)','1','0'),(3949,'JP','TOY',27631,110,'Toyama, JP - Toyama Airport (TOY)','1','0'),(3950,'TN','TOE',27638,220,'Tozeur, TN - Nefta Airport (TOE)','1','0'),(3951,'TR','TZX',27641,222,'Trabzon, TR - Trabzon Airport (TZX)','1','0'),(3952,'TH','TST',34281,215,'Trang, TH - Trang Airport (TST)','1','0'),(3953,'IT','TPS',27661,107,'Trapani, IT - Vincenzo Florio Airport (TPS)','1','0'),(3954,'','TGN',27667,13,'Traralgon, Latrobe Regional Airport (TGN)','1','0'),(3955,'US','TVC',27682,231,'Traverse City, US - Cherry Capital Airport (TVC)','1','0'),(3956,'BS','TCB',27685,16,'Treasure Cay, BS - Treasure Cay Airport (TCB)','1','0'),(3957,'','TYT',27714,230,'Treinta Y Tres, Treinta y Tres Airport (TYT)','1','0'),(3958,'','TRX',27734,231,'Trenton, Trenton Municipal Airport (TRX)','1','0'),(3959,'US','TTN',27734,231,'Trenton, US - Trenton Mercer Airport (TTN)','1','0'),(3960,'CA','YTR',27735,39,'Trenton, CA - Trenton (YTR)','1','0'),(3961,'','OYO',27737,10,'Tres Arroyos, Tres Arroyos Airport (OYO)','1','0'),(3962,'IT','TRS',27765,107,'Trieste, IT - Friuli Venezia Giulia Airport (TRS)','1','0'),(3963,'','THW',27771,200,'Trincomalee, Trincomalee Harbour Seaplane Base (THW)','1','0'),(3964,'','TDA',27773,219,'Trinidad, Trinidad Airport (TDA)','1','0'),(3965,'','TND',27773,219,'Trinidad, Alberto Delgado Airport (TND)','1','0'),(3966,'BO','TDD',27775,26,'Trinidad, BO - Tte. Jorge Henrich Arauz Airport (TDD)','1','0'),(3967,'LY','TIP',27788,123,'Tripoli, LY - Tripoli Airport (TIP)','1','0'),(3968,'LB','KYE',27789,120,'Tripoli, LB - Kleyate (KYE)','1','0'),(3969,'IN','TRV',34288,101,'Trivandrum, IN - Trivandrum Intl Airport (TRV)','1','0'),(3970,'SE','THN',27806,209,'Trollhattan, SE - Trollhattan Airport (THN)','1','0'),(3971,'NO','TOS',27807,164,'Tromso, NO - Tromso Airport Langnes (TOS)','1','0'),(3972,'NO','TRD',27810,164,'Trondheim, NO - Trondheim Airport Vaernes (TRD)','1','0'),(3973,'','TKF',27831,231,'Truckee, Truckee Tahoe Airport (TKF)','1','0'),(3974,'','TJI',27833,172,'Trujillo, Trujillo Airport (TJI)','1','0'),(3975,'PE','TRU',27833,172,'Trujillo, PE - Cap. FAP Carlos Martinez de Pinillos Airport (TRU)','1','0'),(3976,'FM','TKK',27835,143,'Truk, FM - Chuuk (Truk) Intl Airport (TKK)','1','0'),(3977,'MG','TTS',27855,130,'Tsaratanana, MG - Tsaratanana Airport (TTS)','1','0'),(3978,'CD','TSH',27862,52,'Tshikapa, CD - Tshikapa Airport (TSH)','1','0'),(3979,'','TSD',27863,195,'Tshipise, Tshipise Airport (TSD)','1','0'),(3980,'','WTS',27866,130,'Tsiroanomandidy, Tsiroanomandidy Airport (WTS)','1','0'),(3981,'','TSB',27872,151,'Tsumeb, Tsumeb Airport (TSB)','1','0'),(3982,'','TBC',27879,231,'Tuba City, Tuba City Airport (TBC)','1','0'),(3983,'PF','TUB',27883,78,'Tubuai, PF - Tubuai - Mataura Airport (TUB)','1','0'),(3984,'','AVW',27889,231,'Tucson, Marana Regional Airport (AVW)','1','0'),(3985,'US','TUS',27889,231,'Tucson, US - Tucson Intl Airport (TUS)','1','0'),(3986,'AR','TUC',27890,10,'Tucuman, AR - Teniente General Benjamin Matienzo Intl Airport (TUC)','1','0'),(3987,'BR','TUR',27892,30,'Tucurui, BR - Tucurui Airport (TUR)','1','0'),(3988,'CA','YUB',27902,39,'Tuktoyaktuk, CA - James Gruben Airport (YUB)','1','0'),(3989,'','TYA',27905,141,'Tula, Klokovo Airport (TYA)','1','0'),(3990,'EC','TUA',27911,64,'Tulcan, EC - Teniente Coronel Luis A Mantilla Airport (TUA)','1','0'),(3991,'MG','TLE',27913,130,'Tulear, MG - Toliara Airport (TLE)','1','0'),(3992,'','TLD',27915,28,'Tuli Lodge, Tuli Lodge Airport (TLD)','1','0'),(3993,'US','TUL',27926,231,'Tulsa, US - Tulsa Intl Airport (TUL)','1','0'),(3994,'US','TLT',27927,231,'Tuluksak, US - Tuluksak Airport (TLT)','1','0'),(3995,'','TUY',27928,141,'Tulum, Tulum Airport (TUY)','1','0'),(3996,'','TUJ',27930,70,'Tum, Tum Airport (TUJ)','1','0'),(3997,'CO','TCO',27932,49,'Tumaco, CO - La Florida Airport (TCO)','1','0'),(3998,'PE','TBP',27933,172,'Tumbes, PE - Cap. FAP Pedro Canga Rodriguez Airport (TBP)','1','0'),(3999,'','TUX',27934,39,'Tumbler Ridge, Tumbler Ridge Airport (TUX)','1','0'),(4000,'TN','TUN',27944,220,'Tunis, TN - Carthage Airport (TUN)','1','0'),(4001,'US','WTL',27947,231,'Tuntutuliak, US - Tuntutuliak Airport (WTL)','1','0'),(4002,'US','TNK',27948,231,'Tununak, US - Tununak Airport (TNK)','1','0'),(4003,'CN','TXN',27950,46,'Tunxi, CN - Huangshan Tunxi Intl Airport (TXN)','1','0'),(4004,'US','TUP',27954,231,'Tupelo, US - Tupelo Regional Airport (TUP)','1','0'),(4005,'PK','TUK',27959,166,'Turbat, PK - Turbat Airport (TUK)','1','0'),(4006,'CO','TRB',27962,49,'Turbo, CO - Gonzalo Mejia (TRB)','1','0'),(4007,'IT','TRN',27967,107,'Turin, IT - Turin-Caselle Airport (TRN)','1','0'),(4008,'FI','TKU',27974,75,'Turku, FI - Turku Airport (TKU)','1','0'),(4009,'','TLQ',27981,46,'Turpan, Turpan Jiaohe Airport (TLQ)','1','0'),(4010,'','BXL',27987,74,'Turtle Island, Blue Lagoon Seaplane Base (BXL)','1','0'),(4011,'US','TCL',27992,231,'Tuscaloosa, US - Tuscaloosa Regional Airport (TCL)','1','0'),(4012,'','TGE',27999,231,'Tuskegee, Sharpe Field (TGE)','1','0'),(4013,'','TZL',28011,222,'Tuzla, Tuzla International Airport (TZL)','1','0'),(4014,'','TWZ',28025,157,'Twizel, Pukaki Airport (TWZ)','1','0'),(4015,'US','TYR',28030,231,'Tyler, US - Tyler Pounds Regional Airport (TYR)','1','0'),(4016,'RU','TJM',28039,181,'Tyumen, RU - Tyumen Airport (TJM)','1','0'),(4017,'PF','UAH',33879,78,'Ua Huka, PF - Ua Huka Airport (UAH)','1','0'),(4018,'PF','UAP',33880,78,'Ua Pou, PF - Ua Pou Airport (UAP)','1','0'),(4019,'BR','UBA',28050,30,'Uberaba, BR - Uberaba Airport (UBA)','1','0'),(4020,'BR','UDI',28051,30,'Uberlandia, BR - Gomes Airport (UDI)','1','0'),(4021,'TH','UBP',28052,215,'Ubon Ratchathani, TH - Ubon Ratchathani Airport (UBP)','1','0'),(4022,'IN','UDR',28058,101,'Udaipur, IN - Dabok Airport (UDR)','1','0'),(4023,'','UDE',28063,154,'Uden, Volkel Air Base (UDE)','1','0'),(4024,'TH','UTH',28066,215,'Udon Thani, TH - Udon Thani Airport (UTH)','1','0'),(4025,'RU','UFA',28073,181,'Ufa, RU - Ufa Airport (UFA)','1','0'),(4026,'AO','UGO',28079,6,'Uige, AO - Uíge Airport (UGO)','1','0'),(4027,'MH','UJE',28082,136,'Ujae Island, MH - Ujae Airport (UJE)','1','0'),(4028,'RU','UCT',28084,181,'Ukhta, RU - Ukhta Airport (UCT)','1','0'),(4029,'MN','ULN',28089,146,'Ulan Bator, MN - Ulan Bator (Buyant-Ukhaa) Airport (ULN)','1','0'),(4030,'CN','HLH',28090,46,'Ulanhot, CN - Ulanhot Airport (HLH)','1','0'),(4031,'RU','UUD',28091,181,'Ulan-ude, RU - Baikal Intl Airport (UUD)','1','0'),(4032,'KR','USN',28103,197,'Ulsan, KR - Ulsan Airport (USN)','1','0'),(4033,'RU','ULY',28115,181,'Ulyanovsk, RU - Ulyanovsk Vostochny Airport (ULY)','1','0'),(4034,'SE','UME',28123,209,'Umea, SE - Umea Airport (UME)','1','0'),(4035,'ZA','UTT',28131,195,'Umtata, ZA - Mthatha Airport (UTT)','1','0'),(4036,'BR','UNA',33885,30,'Una, BR - Una Airport (UNA)','1','0'),(4037,'US','UNK',28133,231,'Unalakleet, US - Unalakleet Airport (UNK)','1','0'),(4038,'','UNT',33886,482,'Unst, Baltasound Airport (UNT)','1','0'),(4039,'ZA','UTN',28178,195,'Upington, ZA - Upington Airport (UTN)','1','0'),(4040,'US','CCB',28179,231,'Upland, US - Cable (CCB)','1','0'),(4041,'CA','YBE',28195,39,'Uranium City, CA - Uranium City Airport (YBE)','1','0'),(4042,'','UEN',28203,181,'Urengoy, Urengoy Airport (UEN)','1','0'),(4043,'UZ','UGC',28205,232,'Urgench, UZ - Urgench Airport (UGC)','1','0'),(4044,'','URR',28212,49,'Urrao, Alí Piedrahita Airport (URR)','1','0'),(4045,'MX','UPN',28218,141,'Uruapan, MX - Lic y Gen Ignacio Lopez Rayon National Airport (UPN)','1','0'),(4046,'BR','URG',28220,30,'Uruguaiana, BR - Ruben Berta Intl Airport (URG)','1','0'),(4047,'CN','URC',28222,46,'Urumqi, CN - Urumqi Diwopu Intl Airport (URC)','1','0'),(4048,'','USL',28228,13,'Useless Loop, Useless Loop Airport (USL)','1','0'),(4049,'AR','USH',28230,10,'Ushuaia, AR - Ushuaia Intl Airport (USH)','1','0'),(4050,'','UIK',28245,181,'Ust-ilimsk, Ust-Ilimsk Airport (UIK)','1','0'),(4051,'TH','UTP',28250,215,'Utapao, TH - Utapao Rayong Intl Airport (UTP)','1','0'),(4052,'US','UCA',28255,231,'Utica, US - Oneida County Airport (UCA)','1','0'),(4053,'GL','UMD',28273,87,'Uummannaq, GL - Uummannaq Heliport (UMD)','1','0'),(4054,'','QUO',28282,160,'Uyo, Akwa Ibom International Airport (QUO)','1','0'),(4055,'','UYU',28283,26,'Uyuni, Uyuni Airport (UYU)','1','0'),(4056,'UA','UDJ',28286,227,'Uzhgorod, UA - Uzhgorod Airport (UDJ)','1','0'),(4057,'FI','VAA',28293,75,'Vaasa, FI - Vaasa Airport (VAA)','1','0'),(4058,'IN','BDQ',28303,101,'Vadodara, IN - Vadodara Airport (BDQ)','1','0'),(4059,'NO','VDS',28305,164,'Vadso, NO - Vadso Airport (VDS)','1','0'),(4060,'CA','YVO',33912,39,'Val D\'or, CA - Val-d`Or Airport (YVO)','1','0'),(4061,'US','VDZ',28340,231,'Valdez, US - Valdez Airport (VDZ)','1','0'),(4062,'CL','ZAL',28345,45,'Valdivia, CL - Valdivia Airport (ZAL)','1','0'),(4063,'US','VLD',28347,231,'Valdosta, US - Valdosta Regional Airport (VLD)','1','0'),(4064,'FR','VAF',33922,76,'Valence, FR - Valence-Chabeuil Airport (VAF)','1','0'),(4065,'VE','VLN',28355,235,'Valencia, VE - Valencia (Venezuela) Airport (VLN)','1','0'),(4066,'VE','VLV',28364,235,'Valera, VE - Antonio Nicolas Briceno Airport (VLV)','1','0'),(4067,'VU','VLS',28368,233,'Valesdir, VU - Valesdir Airport (VLS)','1','0'),(4068,'ES','VLL',28378,199,'Valladolid, ES - Vallodolid Airport (VLL)','1','0'),(4069,'CO','CLO',28384,49,'Valle Del Cauca, CO - Aragon Intl Airport (CLO)','1','0'),(4070,'CO','VUP',28386,49,'Valledupar, CO - Alfonso Lopez Pumarejo Airport (VUP)','1','0'),(4071,'','VLR',28388,45,'Vallenar, Vallenar Airport (VLR)','1','0'),(4072,'US','VPS',28410,231,'Valparaiso, US - Destin-Fort Walton Beach Airport (VPS)','1','0'),(4073,'TR','VAN',33944,222,'Van, TR - Van Airport (VAN)','1','0'),(4074,'CA','CXH',28425,39,'Vancouver, CA - Vancouver Coal Harbour Seaplane Base (CXH)','1','0'),(4075,'','YDT',28425,39,'Vancouver, Boundary Bay Airport (YDT)','1','0'),(4076,'CA','YVR',28425,39,'Vancouver, CA - Vancouver Intl Airport (YVR)','1','0'),(4077,'CU','VRA',28448,56,'Varadero, CU - Juan Gualberto Gomez Airport (VRA)','1','0'),(4078,'','VRO',28448,56,'Varadero, Kawama Airport (VRO)','1','0'),(4079,'IN','VNS',28449,101,'Varanasi, IN - Varanasi Airport (VNS)','1','0'),(4080,'BR','VAG',28465,30,'Varginha, BR - Maj Brig Trompowsky Airport (VAG)','1','0'),(4081,'FI','VRK',28468,75,'Varkaus, FI - Varkaus Airport (VRK)','1','0'),(4082,'SE','VST',28484,209,'Vasteras, SE - Hasslo Airport (VST)','1','0'),(4083,'','VAT',28494,130,'Vatomandry, Vatomandry Airport (VAT)','1','0'),(4084,'TO','VAV',28507,218,'Vava\'u, TO - Vava`U Airport (VAV)','1','0'),(4085,'SE','VXO',28509,209,'Vaxjo, SE - Vaxjo Airport (VXO)','1','0'),(4086,'US','VEE',28572,231,'Venetie, US - Venetie Airport (VEE)','1','0'),(4087,'IT','TSF',28574,107,'Venice, IT - Treviso Sant Angelo Airport (TSF)','1','0'),(4088,'IT','VCE',28574,107,'Venice, IT - Marco Polo Airport (VCE)','1','0'),(4089,'US','VNC',28575,231,'Venice, US - Venice Municipal (VNC)','1','0'),(4090,'','VNT',28589,119,'Ventspils, Ventspils International Airport (VNT)','1','0'),(4091,'MX','VER',28593,141,'Veracruz, MX - Gen Heriberto Jara Intl Airport (VER)','1','0'),(4092,'','YVG',28617,39,'Vermilion, Vermilion Airport (YVG)','1','0'),(4093,'US','VEL',28621,231,'Vernal, US - Vernal Regional Airport (VEL)','1','0'),(4094,'','WIB',28628,39,'Vernon, Wilbarger County Airport (WIB)','1','0'),(4095,'','YVE',28628,39,'Vernon, Vernon Regional Airport (YVE)','1','0'),(4096,'US','VRB',28630,231,'Vero Beach, US - Vero Beach Regional Airport (VRB)','1','0'),(4097,'IT','VRN',28633,107,'Verona, IT - Villafranca Airport (VRN)','1','0'),(4098,'','VRS',28638,231,'Versailles, Roy Otten Memorial Airfield (VRS)','1','0'),(4099,'IS','VEY',28658,100,'Vestmannaeyjar, IS - Vestmannaeyjar Airport (VEY)','1','0'),(4100,'','ZIC',28700,88,'Victoria, Victoria Airport (ZIC)','1','0'),(4101,'US','VCT',28701,231,'Victoria, US - Victoria Regional Airport (VCT)','1','0'),(4102,'CA','YWH',28704,39,'Victoria, CA - Victoria Harbour Water Aerodrome (YWH)','1','0'),(4103,'CA','YYJ',28704,39,'Victoria, CA - Victoria Intl Airport (YYJ)','1','0'),(4104,'ZW','VFA',28706,243,'Victoria Falls, ZW - Victoria Falls Airport (VFA)','1','0'),(4105,'BG','VID',28714,34,'Vidin, BG - Vidin Airport (VID)','1','0'),(4106,'AR','VDM',28719,10,'Viedma, AR - Gobernador Edgardo Castello Airport (VDM)','1','0'),(4107,'AT','VIE',28729,14,'Vienna, AT - Vienna Schwechat Airport (VIE)','1','0'),(4108,'LA','VTE',28731,118,'Vientiane, LA - Wattay Airport (VTE)','1','0'),(4109,'US','VQS',28732,176,'Vieques, US - Antonio Rivera Rodriguez Airport (VQS)','1','0'),(4110,'ES','VGO',28753,199,'Vigo, ES - Peinador Airport (VGO)','1','0'),(4111,'IN','VGA',28759,101,'Vijayawada, IN - Vijayawada Airport (VGA)','1','0'),(4112,'PT','VRL',33987,175,'Vila Real, PT - Vila Real Airport (VRL)','1','0'),(4113,'MZ','VNX',28775,149,'Vilanculos, MZ - Vilankulo Airport (VNX)','1','0'),(4114,'SE','VHM',28782,209,'Vilhelmina, SE - Vilhelmina Airport (VHM)','1','0'),(4115,'BR','BVH',28783,30,'Vilhena, BR - Brig Camarao Airport (BVH)','1','0'),(4116,'CU','SNU',28788,56,'Villa Clara, CU - Abel Santamaria Airport (SNU)','1','0'),(4117,'MX','VSA',28804,141,'Villahermosa, MX - Carlos Rovirosa Perez Intl Airport (VSA)','1','0'),(4118,'CO','VVC',28844,49,'Villavicencio, CO - La Vanguardia Airport (VVC)','1','0'),(4119,'LT','VNO',28892,125,'Vilnius, LT - Vilnius Airport (VNO)','1','0'),(4120,'US','VIS',28952,231,'Visalia, US - Visalia Municipal Airport (VIS)','1','0'),(4121,'SE','VBY',28956,209,'Visby, SE - Visby Airport (VBY)','1','0'),(4122,'BR','VIX',28972,30,'Vitoria, BR - Vitoria Airport (VIX)','1','0'),(4123,'ES','VIT',28973,199,'Vitoria, ES - Vitoria Airport (VIT)','1','0'),(4124,'','VTL',28982,76,'Vittel, Vittel - Champ-de-Courses Airport (VTL)','1','0'),(4125,'RU','OGZ',28998,181,'Vladikavkaz, RU - Beslan Airport (OGZ)','1','0'),(4126,'RU','VVO',29000,181,'Vladivostok, RU - Vladivostok Airport (VVO)','1','0'),(4127,'','VOH',29018,130,'Vohemar, Vohemar Airport (VOH)','1','0'),(4128,'DK','SKS',29025,59,'Vojens, DK - Skrydstrup (SKS)','1','0'),(4129,'','VLK',29032,181,'Volgodonsk, Volgodonsk Airport (VLK)','1','0'),(4130,'RU','VOG',29033,181,'Volgograd, RU - Volgograd Airport (VOG)','1','0'),(4131,'','VGD',29040,181,'Vologda, Vologda Airport (VGD)','1','0'),(4132,'IS','VPN',29053,100,'Vopnafjordur, IS - Vopnafjordur Airport (VPN)','1','0'),(4133,'RU','VOZ',29059,181,'Voronezh, RU - Chertovitskoye Airport (VOZ)','1','0'),(4134,'','VYD',29089,195,'Vryheid, Vryheid Airport (VYD)','1','0'),(4135,'','VTG',29097,236,'Vung Tau, Vung Tau Airport (VTG)','1','0'),(4136,'CA','YWK',29113,39,'Wabush, CA - Wabush Airport (YWK)','1','0'),(4137,'ET','WAC',29114,70,'Waca, ET - Wacca Airport (WAC)','1','0'),(4138,'AO','CEO',29116,6,'Waco Kungo, AO - Waco Kungo Airport (CEO)','1','0'),(4139,'','AGI',29131,154,'Wageningen, Wageningen Airstrip (AGI)','1','0'),(4140,'ID','WET',29132,102,'Wagethe, ID - Waghete Airport (WET)','1','0'),(4141,'','WAH',29141,231,'Wahpeton, Harry Stern Airport (WAH)','1','0'),(4142,'','WIK',29154,157,'Waiheke Island, Waiheke Island Aerodrome (WIK)','1','0'),(4143,'ID','WGP',29159,102,'Waingapu, ID - Mau Hau (Waingapu) Airport (WGP)','1','0'),(4144,'US','AIN',29162,231,'Wainwright, US - Wainwright Airport (AIN)','1','0'),(4145,'JP','WKJ',29179,110,'Wakkanai, JP - Wakkanai Airport (WKJ)','1','0'),(4146,'','WLC',29184,13,'Walcha, Walcha Airport (WLC)','1','0'),(4147,'','WDN',29203,231,'Waldron Island, Waldronaire Airport (WDN)','1','0'),(4148,'','WGE',29205,13,'Walgett, Walgett Airport (WGE)','1','0'),(4149,'US','ALW',29210,231,'Walla Walla, US - Walla Walla Regional Airport (ALW)','1','0'),(4150,'US','WLM',29242,231,'Waltham, US - Waltham Airport (WLM)','1','0'),(4151,'NA','WVB',29247,151,'Walvis Bay, NA - Walvis Bay Airport (WVB)','1','0'),(4152,'ID','WMX',29251,102,'Wamena, ID - Wamena Airport (WMX)','1','0'),(4153,'NZ','WKA',29253,157,'Wanaka, NZ - Wanaka Airport (WKA)','1','0'),(4154,'NZ','WAG',29258,157,'Wanganui, NZ - Wanganui Airport (WAG)','1','0'),(4155,'DE','AGE',29262,83,'Wangerooge, DE - Wangerooge (AGE)','1','0'),(4156,'','WGC',29278,101,'Warangal, Warangal Airport (WGC)','1','0'),(4157,'ET','WRA',29283,70,'Warder, ET - Warder Airport (WRA)','1','0'),(4158,'','WAR',29292,102,'Waris, Waris Airport (WAR)','1','0'),(4159,'','WKB',29303,13,'Warracknabeal, Warracknabeal Airport (WKB)','1','0'),(4160,'US','AST',29312,231,'Warrenton, US - Astoria Regional Airport (AST)','1','0'),(4161,'','WMB',29317,13,'Warrnambool, Warrnambool Airport (WMB)','1','0'),(4162,'','RRT',29318,231,'Warroad, Warroad International Memorial Airport (RRT)','1','0'),(4163,'','WMI',29319,231,'Warsaw, Warsaw Modlin Airport (WMI)','1','0'),(4164,'','BYW',29337,231,'Washington, Blakely Island Airport (BYW)','1','0'),(4165,'US','DCA',29337,231,'Washington, US - Ronald Reagan Washington National Airport (DCA)','1','0'),(4166,'US','IAD',29337,231,'Washington, US - Washington Dulles Intl Airport (IAD)','1','0'),(4167,'','WSG',29337,231,'Washington, Washington County Airport (WSG)','1','0'),(4168,'','WSR',29339,102,'Wasior, Wasior Airport (WSR)','1','0'),(4169,'CA','YKQ',29340,39,'Waskaganish, CA - Waskaganish Airport (YKQ)','1','0'),(4170,'IE','WAT',29356,105,'Waterford, IE - Waterford Airport (WAT)','1','0'),(4171,'US','ALO',29361,231,'Waterloo, US - Waterloo Regional Airport (ALO)','1','0'),(4172,'','WLO',29361,231,'Waterloo, Waterloo Airport (WLO)','1','0'),(4173,'US','ART',29370,231,'Watertown, US - Watertown Intl Airport (ART)','1','0'),(4174,'US','ATY',29370,231,'Watertown, US - Watertown Regional Airport (ATY)','1','0'),(4175,'','YQH',29383,39,'Watson Lake, Watson Lake Airport (YQH)','1','0'),(4176,'','WAU',29393,13,'Wauchope, Wauchope Airport (WAU)','1','0'),(4177,'US','UGN',29396,231,'Waukegan, US - Waukegan Regional (UGN)','1','0'),(4178,'','UKN',29398,231,'Waukon, Waukon Municipal Airport (UKN)','1','0'),(4179,'US','CWA',29403,231,'Wausau, US - Central Wisconsin Airport (CWA)','1','0'),(4180,'CA','YWP',29426,39,'Webequie, CA - Webequie Airport (YWP)','1','0'),(4181,'ZA','WEL',29481,195,'Welkom, ZA - Welkom (WEL)','1','0'),(4182,'','WHL',29497,13,'Welshpool, Welshpool Airport (WHL)','1','0'),(4183,'CA','YNC',29502,39,'Wemindji, CA - Wemindji Airport (YNC)','1','0'),(4184,'US','EAT',29504,231,'Wenatchee, US - Pangborn Memorial Airport (EAT)','1','0'),(4185,'CN','WNZ',29518,46,'Wenzhou, CN - Wenzhou Longwan Intl Airport (WNZ)','1','0'),(4186,'','WBK',34041,231,'West Branch, West Branch Community Airport (WBK)','1','0'),(4187,'','WTD',34061,13,'West End, West End Airport (WTD)','1','0'),(4188,'US','AGC',34108,231,'West Mifflin, US - Allegheny County (AGC)','1','0'),(4189,'US','PBI',34115,231,'West Palm Beach, US - Palm Beach Intl Airport (PBI)','1','0'),(4190,'','WWY',34147,13,'West Wyalong, West Wyalong Airport (WWY)','1','0'),(4191,'US','WYS',34150,231,'West Yellowstone, US - Yellowstone Airport (WYS)','1','0'),(4192,'DE','GWT',29567,83,'Westerland, DE - Sylt Airport (GWT)','1','0'),(4193,'US','WST',29569,231,'Westerly, US - Westerly State Airport (WST)','1','0'),(4194,'US','BAF',29579,231,'Westfield, US - Barnes Municipal (BAF)','1','0'),(4195,'NZ','WSZ',29610,157,'Westport, NZ - Westport Airport (WSZ)','1','0'),(4196,'US','WSX',29614,231,'Westsound, US - Westsound Seaplane Base (WSX)','1','0'),(4197,'PG','WWK',29629,170,'Wewak, PG - Boram Airport (WWK)','1','0'),(4198,'NZ','WHK',29642,157,'Whakatane, NZ - Whakatane Airport (WHK)','1','0'),(4199,'CA','YXN',29643,39,'Whale Cove, CA - Whale Cove Airport (YXN)','1','0'),(4200,'US','WWP',29644,231,'Whale Pass, US - North Whale Seaplane Base (WWP)','1','0'),(4201,'','WHS',29645,482,'Whalsay, Whalsay Airstrip (WHS)','1','0'),(4202,'NZ','WRE',29647,157,'Whangarei, NZ - Whangarei Airport (WRE)','1','0'),(4203,'','WHT',29648,231,'Wharton, Wharton Regional Airport (WHT)','1','0'),(4204,'CA','YWS',29665,39,'Whistler, CA - Green Lake Water Aerodrome (YWS)','1','0'),(4205,'US','WMO',34164,231,'White Mountain, US - White Mountain Airport (WMO)','1','0'),(4206,'','YWR',34171,231,'White River, White River Water Aerodrome (YWR)','1','0'),(4207,'CA','YXY',29683,39,'Whitehorse, CA - Erik Nielson Whitehorse Intl Airport (YXY)','1','0'),(4208,'','WTR',29688,195,'Whiteriver, Whiteriver Airport (WTR)','1','0'),(4209,'US','BEC',29713,231,'Wichita, US - Beech Factory (BEC)','1','0'),(4210,'US','CEA',29713,231,'Wichita, US - Cessna Aircraft Field (CEA)','1','0'),(4211,'US','ICT',29713,231,'Wichita, US - Wichita Mid-Continent Airport (ICT)','1','0'),(4212,'GB','WIC',34181,482,'Wick, GB - Wick Airport (WIC)','1','0'),(4213,'','WIO',29744,13,'Wilcannia, Wilcannia Airport (WIO)','1','0'),(4214,'','CWX',29766,231,'Willcox, Cochise County Airport (CWX)','1','0'),(4215,'US','IPT',29778,231,'Williamsport, US - Williamsport Regional Airport (IPT)','1','0'),(4216,'US','ISN',29790,231,'Williston, US - Sloulin Field Intl Airport (ISN)','1','0'),(4217,'US','ILG',29804,231,'Wilmington, US - New Castle Airport (ILG)','1','0'),(4218,'US','ILM',29804,231,'Wilmington, US - Wilmington Intl Airport (ILM)','1','0'),(4219,'US','ILN',29804,231,'Wilmington, US - Airborne Airpark (ILN)','1','0'),(4220,'','WUN',29820,13,'Wiluna, Wiluna Airport (WUN)','1','0'),(4221,'','WGO',29830,469,'Winchester, Winchester Regional Airport (WGO)','1','0'),(4222,'NA','WDH',29839,151,'Windhoek, NA - Hosea Kutako Intl Airport (WDH)','1','0'),(4223,'CA','YQG',34713,39,'Windsor, CA - Windsor Airport (YQG)','1','0'),(4224,'CA','YWG',29865,39,'Winnipeg, CA - Winnipeg J A Richardson Intl Airport (YWG)','1','0'),(4225,'','ISS',29897,231,'Wiscasset, Wiscasset Airport (ISS)','1','0'),(4226,'','LNP',29899,231,'Wise, Lonesome Pine Airport (LNP)','1','0'),(4227,'','WJA',29935,136,'Woja, Woja Airport (WJA)','1','0'),(4228,'CA','ZWL',29955,39,'Wollaston Lake, CA - Wollaston Lake Airport (ZWL)','1','0'),(4229,'TW','WOT',29967,212,'Wonan, TW - Wang-an Airport (WOT)','1','0'),(4230,'','WFD',29978,231,'Woodford, Woodford Aerodrome (WFD)','1','0'),(4231,'','UMR',30014,13,'Woomera, RAAF Woomera Airfield (UMR)','1','0'),(4232,'US','ORH',30019,231,'Worcester, US - Worcester Regional Airport (ORH)','1','0'),(4233,'US','WRL',30025,231,'Worland, US - Worland Municipal Airport (WRL)','1','0'),(4234,'','YWY',30045,39,'Wrigley, Wrigley Airport (YWY)','1','0'),(4235,'PL','WRO',30047,174,'Wroclaw, PL - Strachowice Airport (WRO)','1','0'),(4236,'','WUD',30055,13,'Wudinna, Wudinna Airport (WUD)','1','0'),(4237,'CN','WUH',30059,46,'Wuhan, CN - Wuhan Tianhe Intl Airport (WUH)','1','0'),(4238,'','WHU',30060,46,'Wuhu, Wuhu Airport (WHU)','1','0'),(4239,'DE','OHR',30084,83,'Wyk Auf Foehr, DE - Wyk Auf Fohr (OHR)','1','0'),(4240,'','WYN',30087,13,'Wyndham, Wyndham Airport (WYN)','1','0'),(4241,'CN','XMN',30112,46,'Xiamen, CN - Xiamen Gaoqi Intl Airport (XMN)','1','0'),(4242,'','SIA',30113,46,'Xi\'an, Xi\'an Xiguan Airport (SIA)','1','0'),(4243,'','XNT',30129,46,'Xingtai, Xingtai Dalian Airport (XNT)','1','0'),(4244,'US','YKM',30156,231,'Yakima, US - Yakima Air Terminal (McAllister Field) (YKM)','1','0'),(4245,'JP','KUM',30157,110,'Yakushima, JP - Yakushima Airport (KUM)','1','0'),(4246,'US','YAK',30158,231,'Yakutat, US - Yakutat Airport (YAK)','1','0'),(4247,'RU','YKS',30159,181,'Yakutsk, RU - Yakutsk Airport (YKS)','1','0'),(4248,'JP','GAJ',30166,110,'Yamagata, JP - Yamagata Airport (GAJ)','1','0'),(4249,'JP','NJA',30173,110,'Yamato, JP - Atsugi Naf (NJA)','1','0'),(4250,'SA','YNB',30182,186,'Yanbo, SA - Yanbo Airport (YNB)','1','0'),(4251,'','XYA',30187,193,'Yandina, Yandina Airport (XYA)','1','0'),(4252,'MM','RGN',30189,150,'Yangon, MM - Yangon Intl Airport (RGN)','1','0'),(4253,'','YTY',30194,46,'Yangzhou, Yangzhou Taizhou Airport (YTY)','1','0'),(4254,'US','YKN',30197,231,'Yankton, US - Chan Gurney Municipal (YKN)','1','0'),(4255,'CN','YNT',30199,46,'Yantai, CN - Yantai Laishan Intl Airport (YNT)','1','0'),(4256,'CM','YAO',30202,38,'Yaounde, CM - Nsimalen (YAO)','1','0'),(4257,'FM','YAP',30203,143,'Yap, FM - Yap Intl Airport (YAP)','1','0'),(4258,'CA','YQI',30207,39,'Yarmouth, CA - Yarmouth Airport (YQI)','1','0'),(4259,'IR','AZD',30228,103,'Yazd, IR - Yazd Airport (AZD)','1','0'),(4260,'CA','YZF',30241,39,'Yellowknife, CA - Yellowknife Airport (YZF)','1','0'),(4261,'AM','EVN',30251,11,'Yerevan, AM - Zvartnots Intl Airport (EVN)','1','0'),(4262,'','EYR',30253,231,'Yerington, Yerington Municipal Airport (EYR)','1','0'),(4263,'CN','YIH',30262,46,'Yichang, CN - Yichang Sanxia Airport (YIH)','1','0'),(4264,'','LDS',30264,46,'Yichun, Yichun Lindu Airport (LDS)','1','0'),(4265,'','YIC',30264,46,'Yichun, Yichun Mingyueshan Airport (YIC)','1','0'),(4266,'','YLN',30266,212,'Yilan, Yilan Airport (YLN)','1','0'),(4267,'CN','INC',30268,46,'Yinchuan, CN - Yinchuan Hedong Airport (INC)','1','0'),(4268,'CN','YIW',30270,46,'Yiwu, CN - Yiwu Airport (YIW)','1','0'),(4269,'ID','JOG',30278,102,'Yogyakarta, ID - Adisutjipto Airport (JOG)','1','0'),(4270,'JP','YGJ',30285,110,'Yonago, JP - Miho Yonago Airport (YGJ)','1','0'),(4271,'CA','YQV',30294,39,'Yorkton, CA - Yorkton Municipal (YQV)','1','0'),(4272,'','NGA',30301,13,'Young, Young Airport (NGA)','1','0'),(4273,'AU','AYQ',30330,13,'Yulara, AU - Connellan Airport (AYQ)','1','0'),(4274,'US','YUM',30333,231,'Yuma, US - Yuma Intl Airport (YUM)','1','0'),(4275,'PE','YMS',30340,172,'Yurimaguas, PE - Yurimaguas Airport (YMS)','1','0'),(4276,'MX','ZCL',30361,141,'Zacatecas, MX - Gen Leobardo Ruiz (La Calera) Intl Airport (ZCL)','1','0'),(4277,'HR','ZAD',30364,55,'Zadar, HR - Zadar Airport (ZAD)','1','0'),(4278,'','OZG',30368,148,'Zagora, Zagora Airport (OZG)','1','0'),(4279,'HR','ZAG',30373,55,'Zagreb, HR - Zagreb Pleso Airport (ZAG)','1','0'),(4280,'PH','ZAM',30397,173,'Zamboanga, PH - Zamboanga Intl Airport (ZAM)','1','0'),(4281,'MX','ZMM',30400,141,'Zamora, MX - Zamora (ZMM)','1','0'),(4282,'','ANJ',30402,51,'Zanaga, Zanaga Airport (ANJ)','1','0'),(4283,'TZ','ZNZ',34200,214,'Zanzibar, TZ - Kisauni Airport (ZNZ)','1','0'),(4284,'','APZ',30409,10,'Zapala, Zapala Airport (APZ)','1','0'),(4285,'UA','OZH',30415,227,'Zaporozhye, UA - Zaporozhye Airport (OZH)','1','0'),(4286,'ES','ZAZ',30417,199,'Zaragoza, ES - Zaragoza Airport (ZAZ)','1','0'),(4287,'CN','ZHA',30466,46,'Zhanjiang, CN - Zhanjiang Airport (ZHA)','1','0'),(4288,'CN','CGO',30471,46,'Zhengzhou, CN - Zhngzhou Xinzheng Intl Airport (CGO)','1','0'),(4289,'','HSJ',30471,46,'Zhengzhou, Zhengzhou Shangjie Airport (HSJ)','1','0'),(4290,'PK','PZH',30475,166,'Zhob, PK - Zhob Airport (PZH)','1','0'),(4291,'SN','ZIG',30493,187,'Ziguinchor, SN - Ziguinchor Airport (ZIG)','1','0'),(4292,'','ZYI',30546,46,'Zunyi, Zunyi Xinzhou Airport (ZYI)','1','0'),(4293,'CH','ZRH',30548,210,'Zurich, CH - Zurich Intl Airport (ZRH)','1','0');
/*!40000 ALTER TABLE `tbl_flight_airport_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_booking`
--

DROP TABLE IF EXISTS `tbl_flight_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_booking` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `MasterTPSysId` int NOT NULL DEFAULT '0',
  `TPSysId` int NOT NULL DEFAULT '0',
  `PNR_Number` varchar(50) DEFAULT NULL,
  `TravelDate` date NOT NULL,
  `BookingId` varchar(50) DEFAULT NULL,
  `APIBookingId` varchar(150) DEFAULT NULL,
  `FlightNumber` varchar(16) NOT NULL,
  `AirlineName` varchar(32) NOT NULL,
  `IsLCC` varchar(2) NOT NULL,
  `IsRefundable` int NOT NULL,
  `apiTraceId` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `AirlineSysId` varchar(100) NOT NULL DEFAULT '0',
  `DepartureTime` time NOT NULL,
  `ArrivalTime` time NOT NULL,
  `IsDirect` int NOT NULL,
  `FareClass` varchar(100) DEFAULT NULL,
  `FlyingMinutes` int NOT NULL,
  `FlightDuration` varchar(100) NOT NULL,
  `SourcePlaceSysId` int NOT NULL,
  `DestPlaceSysId` int NOT NULL,
  `SourceAirportCode` varchar(5) NOT NULL,
  `DestAirportCode` varchar(5) NOT NULL,
  `StopCount` varchar(50) NOT NULL,
  `TotalFlightMembers` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `PublishedFare` double NOT NULL,
  `ApiResultIndex` varchar(255) NOT NULL,
  `JourneyType` int NOT NULL,
  `TripType` int NOT NULL,
  `IsInternational` int NOT NULL,
  `logo` varchar(250) NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `BaseFare` float NOT NULL,
  `Tax` float NOT NULL,
  `YQTax` float NOT NULL,
  `OtherCharges` float NOT NULL,
  `Discount` float NOT NULL,
  `ServiceFee` float NOT NULL,
  `OfferedFare` double NOT NULL,
  `AgentCommisionEarned` float NOT NULL,
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL,
  `AgencyMarkUpGST` float NOT NULL,
  `GTXMarkUp` float NOT NULL,
  `GTXMarkUpGST` float NOT NULL,
  `ExtraMarkup` float NOT NULL DEFAULT '0',
  `ExtraMarkupOnGST` float NOT NULL DEFAULT '0',
  `BagPrice` float NOT NULL DEFAULT '0',
  `MealPrice` float NOT NULL DEFAULT '0',
  `SeatPrice` float NOT NULL DEFAULT '0',
  `bookingData` longtext,
  `status` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Response_Ticket` longtext,
  `FlightQueryids` text,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `PaymentAmt` double NOT NULL DEFAULT '0',
  `GUID` varchar(100) DEFAULT NULL,
  `error` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `error_Message` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `TransactionId_credit` varchar(200) DEFAULT NULL,
  `TransactionId_debit` varchar(200) DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `ip_address` varchar(20) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `gstnnumber` varchar(150) DEFAULT NULL,
  `companyname` varchar(150) DEFAULT NULL,
  `gstemail` varchar(100) DEFAULT NULL,
  `gstphone` varchar(50) DEFAULT NULL,
  `gstaddress` varchar(150) DEFAULT NULL,
  `gststate` varchar(150) DEFAULT NULL,
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `bookedby` varchar(200) DEFAULT NULL,
  `CustomerDetails` varchar(250) DEFAULT NULL,
  `InvoiceNo` varchar(200) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `fareIdentifierSP` varchar(150) DEFAULT NULL,
  `IsCancellationProtection` enum('0','1') NOT NULL DEFAULT '0',
  `CancellationProtectionPrice` float NOT NULL DEFAULT '0',
  `generateOTP` varchar(50) DEFAULT NULL,
  `BookedStatus` int NOT NULL DEFAULT '0',
  `ICSourceSysId` smallint NOT NULL DEFAULT '0',
  `refund_payment_id` varchar(150) DEFAULT NULL,
  `refund_refund_id` varchar(250) DEFAULT NULL,
  `RefundPGAPIResponse` text,
  `refund_submitted` smallint NOT NULL DEFAULT '0',
  `CancelCharge` double NOT NULL DEFAULT '0',
  `couponName` varchar(150) DEFAULT NULL,
  `couponVal` double NOT NULL DEFAULT '0',
  `couponApply` enum('0','1') NOT NULL DEFAULT '0',
  `couponexpiryDate` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_booking`
--

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

--
-- Table structure for table `tbl_flight_booking_customer`
--

DROP TABLE IF EXISTS `tbl_flight_booking_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_booking_customer` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `flight_booking_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `apiTraceId` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `BookingId` varchar(200) DEFAULT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `PNR_Number` varchar(200) DEFAULT NULL,
  `TicketId` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `TicketNumber` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `sectors` varchar(300) DEFAULT NULL,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` int NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Address` varchar(200) NOT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstemail` varchar(250) DEFAULT NULL,
  `gstphone` varchar(250) DEFAULT NULL,
  `gstaddress` varchar(250) DEFAULT NULL,
  `gststate` varchar(250) DEFAULT NULL,
  `BaseFare` float NOT NULL DEFAULT '0',
  `Tax` float NOT NULL DEFAULT '0',
  `OtherCharges` float NOT NULL DEFAULT '0',
  `AgentCommisionEarned` float NOT NULL DEFAULT '0',
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL DEFAULT '0',
  `AgencyMarkUpGST` float NOT NULL DEFAULT '0',
  `GTXMarkUp` float NOT NULL DEFAULT '0',
  `GTXMarkUpGST` float NOT NULL DEFAULT '0',
  `MealPrice` float NOT NULL DEFAULT '0',
  `BaggagePrice` float NOT NULL DEFAULT '0',
  `Baggage` varchar(100) DEFAULT NULL,
  `CabinBaggage` varchar(100) DEFAULT NULL,
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `JourneyType` smallint NOT NULL DEFAULT '0',
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `ip_address` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_booking_customer`
--

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

--
-- Table structure for table `tbl_flighthomepage`
--

DROP TABLE IF EXISTS `tbl_flighthomepage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flighthomepage` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flighthomepage`
--

LOCK TABLES `tbl_flighthomepage` WRITE;
/*!40000 ALTER TABLE `tbl_flighthomepage` DISABLE KEYS */;
INSERT INTO `tbl_flighthomepage` VALUES (1,'Offer 1','1579094359.png','','',0,'2020-01-15 18:49:19','0000-00-00 00:00:00',1,1),(2,'Top offer on domestic flight','1587023105.png','','http://www.ixotour.com/flight',1,'2020-04-16 13:15:06','2020-06-08 15:17:03',1,0),(3,'Up to 1500 Instant Discount','1587023189.jpg','','http://www.ixotour.com/flight',1,'2020-04-16 13:16:29','2020-06-08 15:16:54',1,0),(4,'Travel to favorites place ','1587023242.jpg','','http://www.ixotour.com/flight',1,'2020-04-16 13:17:22','2020-06-08 15:16:46',1,0),(5,'Cheapest Flight','1587023272.jpg','','http://www.ixotour.com/flight',1,'2020-04-16 13:17:52','2020-06-08 15:16:37',1,0),(6,'demo dd','1587023297.jpg','','http://local.mytrippartner.com/flight',1,'2020-04-16 13:18:17','2020-06-01 12:53:53',1,1),(7,'new flight dd','1587023313.png','','http://www.ixotour.com/flight',1,'2020-04-16 13:18:33','2020-06-16 15:55:31',1,0),(8,'test','1590996783.jpg','','na',0,'2020-06-01 13:01:23','2020-06-01 13:03:03',1,1);
/*!40000 ALTER TABLE `tbl_flighthomepage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_footer_links`
--

DROP TABLE IF EXISTS `tbl_footer_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_footer_links` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(150) NOT NULL,
  `link` varchar(500) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `created_at` datetime NOT NULL,
  `footer_column` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_footer_links`
--

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

--
-- Table structure for table `tbl_footer_management`
--

DROP TABLE IF EXISTS `tbl_footer_management`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_footer_management` (
  `id` int NOT NULL AUTO_INCREMENT,
  `columnType` varchar(100) NOT NULL,
  `title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `openType` enum('1','0') NOT NULL DEFAULT '1',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_footer_management`
--

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

--
-- Table structure for table `tbl_gallery`
--

DROP TABLE IF EXISTS `tbl_gallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_gallery` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `status` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_gallery`
--

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

--
-- Table structure for table `tbl_getaways`
--

DROP TABLE IF EXISTS `tbl_getaways`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_getaways` (
  `get_id` int NOT NULL AUTO_INCREMENT,
  `get_start_city` varchar(100) NOT NULL,
  `get_start_city_id` varchar(100) NOT NULL,
  `get_other_cities` varchar(1000) NOT NULL,
  `get_other_cities_ids` varchar(500) NOT NULL,
  `status` enum('0','1') NOT NULL,
  `CreateDate` datetime NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`get_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_getaways`
--

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

--
-- Table structure for table `tbl_holiday_promobanner`
--

DROP TABLE IF EXISTS `tbl_holiday_promobanner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_holiday_promobanner` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(500) NOT NULL,
  `image` varchar(256) NOT NULL,
  `subHeading` varchar(5000) NOT NULL,
  `expiryDate` date NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL DEFAULT '1',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_holiday_promobanner`
--

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

--
-- Table structure for table `tbl_home_common_box`
--

DROP TABLE IF EXISTS `tbl_home_common_box`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_common_box` (
  `home_common_id` int NOT NULL AUTO_INCREMENT,
  `metaTitle` varchar(500) NOT NULL,
  `Keyword` varchar(500) NOT NULL,
  `Description` varchar(500) NOT NULL,
  `home_common_header` text NOT NULL,
  `home_common_footer` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `vedioUrl` varchar(500) NOT NULL,
  `popularTourContent` text NOT NULL,
  `destinationContent` text NOT NULL,
  `perfectTourContent` text NOT NULL,
  `blogContent` text NOT NULL,
  `offersContent` text NOT NULL,
  `whychooseusContent` text NOT NULL,
  `happycustomerContent` text NOT NULL,
  `otherUsefulContent` text NOT NULL,
  `interestingFactsContent` text NOT NULL,
  PRIMARY KEY (`home_common_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_common_box`
--

LOCK TABLES `tbl_home_common_box` WRITE;
/*!40000 ALTER TABLE `tbl_home_common_box` DISABLE KEYS */;
INSERT INTO `tbl_home_common_box` VALUES (1,'Book Domestic and International Tour Packages in India - IXO Tour Pvt Ltd.','Tour Packages, Amazing Travel Places, Exotic Destinations, Travel News, Famous Tourist Places, Cheap Tour Packages, Tour Offers, Best Travel Destinations, Travel Tour Packages, Browse Tour Packages, India Tour Package, Tour and Travels, Trips Gateway Packages, Travel Package, Holiday Tours, Honeymoon Package.','Explore many beautiful destinations with in budget and book luxury packages. Click now for more information about domestic and international tour packages in India.','<!-- Review Schema Code -->\r\n\r\n<script type=\"application/ld+json\">{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Review\",\r\n  \"itemReviewed\": {\r\n    \"@type\": \"Product\",\r\n    \"name\": \"tripsgateway.com\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Person\",\r\n    \"name\": \"tripsgateway\"\r\n  },\r\n  \"datePublished\": \"2019-1-1\",\r\n  \"reviewRating\": {\r\n    \"@type\": \"Rating\",\r\n    \"description\": \"Trips Gateway is a leading travel company in Noida, India. Offering custumized domestic and international tour and travel packages. Book holiday or honeymoon tour packages and enjoy best holiday deals at affordable price.\",\r\n    \"ratingValue\": \"4.8\"\r\n  }\r\n}\r\n</script>\r\n\r\n<!-- Google Knowledge Graph -->\r\n\r\n<script type=\'application/ld+json\'> \r\n{\r\n  \"@context\": \"http://www.schema.org\",\r\n  \"@type\": \"Organization\",\r\n  \"name\": \"TRIPSGATEWAY.COM\",\r\n  \"url\": \"https://www.tripsgateway.com/\",\r\n  \"logo\": \"https://www.tripsgateway.com/public/images/logo.png\",\r\n  \"description\": \"Explore many beautiful destinations with in budget and book luxury packages. Click now for more information about domestic and international tour packages from India.\",\r\n  \"address\": {\r\n    \"@type\": \"PostalAddress\",\r\n    \"streetAddress\": \"C-55, First Floor\",\r\n     \"addressLocality\": \"Sector 8\",\r\n    \"addressRegion\": \"Noida\",\r\n    \"postalCode\": \"201301\",\r\n    \"addressCountry\": \"India\"\r\n  },\r\n  \"contactPoint\": {\r\n    \"@type\": \"ContactPoint\",\r\n    \"telephone\": \"+91 98111 92312\",\r\n	\"email\": \"plan@tripsgateway.com\", \r\n	\"contactType\": \"Customer Service\"\r\n  },\r\n	\"sameAs\": [\r\n	\"https://www.facebook.com/tripsgateway\",\r\n	\"https://twitter.com/tripsgateway\",\r\n	\"https://www.instagram.com/tripsgateway/\",\r\n	\"https://www.pinterest.com/tripsgateway/\"\r\n	\r\n	]\r\n}\r\n </script>\r\n\r\n<!-- Search Schema Code -->\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n\"@context\" : \"http://schema.org\",\r\n\"@type\" : \"WebSite\",\r\n\"name\" : \"tripsgateway.com\",\r\n\"url\" : \"https://www.tripsgateway.com/\",\r\n\"potentialAction\": {\r\n\"@type\": \"SearchAction\",\r\n\"target\": \"https://www.tripsgateway.com/?q={search_term_string}\",\r\n\"query-input\": \"required name=search_term_string\"\r\n}\r\n}\r\n</script>\r\n\r\n<!-- Google Site Verification -->\r\n\r\n<meta name=\"google-site-verification\" content=\"xni1WNV91y21jEw-SQs6JlUN93c80HBAs43Ou5HGazY\" />\r\n\r\n<!-- Global site tag (gtag.js) - Google Analytics -->\r\n\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-131039779-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n  gtag(\'config\', \'UA-131039779-1\');\r\n</script>','','1','<iframe width=\"100%\" height=\"320px\" src=\"https://www.youtube.com/embed/VElW8XrBz84\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"></iframe>','{\"internationalTourTitle\":\"Trending International Packages\",\"internationalTourDescription\":\"\",\"international_check\":\"1\",\"international_order_byhome\":\"2\"}','{\"destinationTitle\":\"Trending Destinations\",\"destinationDescription\":\"\",\"destinations_check\":\"1\",\"destination_order_byhome\":\"1\"}','{\"domesticTourTitle\":\"Trending Domestic Packages\",\"domesticTourDescription\":\"\",\"domestic_check\":\"1\",\"domestic_order_byhome\":\"3\"}','{\"blogTitle\":\"Travelogues\",\"blogDescription\":\"\",\"blog_check\":\"\",\"blog_order_byhome\":\"5\"}','{\"offersTitle\":\"Exclusive Offers\",\"offersDescription\":\"\",\"offers_check\":\"1\",\"offers_order_byhome\":\"7\"}','{\"whychooseusTitle\":\"Why I Need Trip\",\"whychooseus_check\":\"1\",\"whychooseus_order_byhome\":\"8\"}','{\"happycustomerTitle\":\"Happy Customer\",\"happycustomer_check\":\"1\",\"happycustomer_order_byhome\":\"9\"}','{\"themeTitle\":\"Travel Theme\",\"themeDescription\":\"\",\"theme_check\":\"1\",\"theme_order_byhome\":\"6\"}','{\"testimonialTitle\":\"Testimonials\",\"testimonialDescription\":\"\",\"testmonial_check\":\"1\",\"testmonial_order_byhome\":\"4\"}');
/*!40000 ALTER TABLE `tbl_home_common_box` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_home_explorebanner`
--

DROP TABLE IF EXISTS `tbl_home_explorebanner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_explorebanner` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `banner_image` varchar(255) NOT NULL,
  `banner_text` varchar(255) NOT NULL,
  `url` varchar(500) NOT NULL,
  `opt` tinyint(1) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkDel` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_explorebanner`
--

LOCK TABLES `tbl_home_explorebanner` WRITE;
/*!40000 ALTER TABLE `tbl_home_explorebanner` DISABLE KEYS */;
INSERT INTO `tbl_home_explorebanner` VALUES (5,'5_1573894948.jpg','Trakking Trails in Hongkong','',0,'1','1'),(6,'6_1573894968.jpg','Trakking Trails in Dubai','',0,'1','1'),(7,'7_1574409755.jpg','Best Mansoon Experiences','',0,'1','1'),(8,'8_1574409793.jpg','Multi - Adventure with us','',0,'1','1');
/*!40000 ALTER TABLE `tbl_home_explorebanner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_home_exploregallery`
--

DROP TABLE IF EXISTS `tbl_home_exploregallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_exploregallery` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `type` int DEFAULT NULL,
  `IsActive` int DEFAULT NULL,
  `IsmarkForDel` int DEFAULT NULL,
  `IsFeatured` int DEFAULT NULL,
  `categoryId` int DEFAULT NULL,
  `AgencySysId` bigint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_exploregallery`
--

LOCK TABLES `tbl_home_exploregallery` WRITE;
/*!40000 ALTER TABLE `tbl_home_exploregallery` DISABLE KEYS */;
INSERT INTO `tbl_home_exploregallery` VALUES (10,'','1693295456promo_1.jpeg',NULL,1,1,1,NULL,5,5293),(11,'','1693295674promo_1.jpeg',NULL,1,1,1,NULL,5,5293),(12,'','1693295694promo_1.jpeg',NULL,1,1,1,NULL,5,5293),(13,'','1693297236promo_1.jpeg',NULL,1,1,1,NULL,5,5293),(14,'Travel Video',NULL,'https://www.youtube.com/watch?v=e6nJJ-qaK2Q&t=56s',2,1,1,NULL,8,5293),(15,'Badminton Tournament ','1693980123promo_1.png',NULL,1,1,1,NULL,9,5293),(16,'BADMINTON ',NULL,'https://www.youtube.com/watch?v=e6nJJ-qaK2Q&t=56s',2,1,1,NULL,NULL,5293),(17,'Test','1694412891promo0_.jpg,1694412891promo1_.jpg,1694412891promo2_.jpg,1694412891promo3_.jpg,1694412891promo4_.jpg,1694412891promo5_.jpg,1694412891promo6_.jpg',NULL,1,1,1,NULL,10,5293),(18,'','1694853498promo0_.png,1694853498promo1_.png,1694853498promo2_.png,1694853498promo3_.png,1694853498promo4_.png',NULL,1,1,1,NULL,11,5293),(19,'','1695019288promo0_.png,1695019288promo1_.png,1695019288promo2_.png,1695019288promo3_.png,1695019288promo4_.png',NULL,1,1,0,NULL,11,5293),(20,'','1695098537promo0_.png,1695098537promo1_.png,1695098537promo2_.png,1695098537promo3_.png',NULL,1,1,0,NULL,5,5293),(21,'Media Coverage AECL  ',NULL,'https://www.youtube.com/watch?v=wVrNnS4itqU',2,1,0,NULL,11,5293),(22,'Book Launch Event ',NULL,'https://www.youtube.com/watch?v=LseTtRuW8oA',2,1,0,NULL,11,5293);
/*!40000 ALTER TABLE `tbl_home_exploregallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_home_promotion`
--

DROP TABLE IF EXISTS `tbl_home_promotion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_promotion` (
  `promotionId` int NOT NULL AUTO_INCREMENT,
  `templatetype` int NOT NULL,
  `heading` varchar(256) NOT NULL,
  `promotion_name` text NOT NULL,
  `promotion_description` text NOT NULL,
  `promotion_image` varchar(250) NOT NULL,
  `promotion_url` text NOT NULL,
  `tab_type` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsmarkForDel` enum('1','0') NOT NULL,
  `IsFeatured` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`promotionId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_promotion`
--

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

--
-- Table structure for table `tbl_hotel_booking`
--

DROP TABLE IF EXISTS `tbl_hotel_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `ConfirmationNo` varchar(100) DEFAULT NULL,
  `CheckInDate` date NOT NULL,
  `CheckOutDate` date NOT NULL,
  `BookingRefNo` varchar(100) DEFAULT NULL,
  `BookingId` varchar(16) NOT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `HotelBookingStatus` varchar(32) DEFAULT NULL,
  `InvoiceNumber` varchar(150) DEFAULT NULL,
  `InvoiceCreatedOn` datetime DEFAULT NULL,
  `TraceId` varchar(255) NOT NULL,
  `CurrencyType` int NOT NULL DEFAULT '0',
  `PublishedFare` float DEFAULT NULL,
  `ResultIndex` varchar(50) NOT NULL,
  `HotelName` varchar(250) NOT NULL,
  `HotelCode` varchar(250) NOT NULL,
  `HotelDescription` text NOT NULL,
  `StarRating` int NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `HotelPicture` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `HotelAddress` varchar(255) NOT NULL,
  `HotelContactNo` varchar(100) DEFAULT NULL,
  `HotelMap` text,
  `Latitude` varchar(100) DEFAULT NULL,
  `Longitude` varchar(100) DEFAULT NULL,
  `HotelLocation` varchar(255) DEFAULT NULL,
  `Remarks` text,
  `NoOfNights` int NOT NULL,
  `NoOfRooms` int NOT NULL,
  `totaladult` int NOT NULL,
  `totalchild` int NOT NULL,
  `TBBCityId` int NOT NULL,
  `cityid` int NOT NULL,
  `cityName` varchar(100) NOT NULL,
  `memberdata` text NOT NULL,
  `RoomPrice` float NOT NULL DEFAULT '0',
  `TotalPrice` float DEFAULT NULL,
  `TaxesServiceFee` float DEFAULT NULL,
  `intCostToCustomer` float DEFAULT NULL,
  `TotalAgencyMarkUp` float NOT NULL DEFAULT '0',
  `TotalServiceTaxOnAgencyMarkUp` float NOT NULL DEFAULT '0',
  `TotalAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TotalServiceTaxOnAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `status` int NOT NULL DEFAULT '0',
  `InvoiceStatus` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Response_voucher` text,
  `API_GenerateVoucher` text,
  `API_BookingDetail` longtext,
  `SSRName` text,
  `SSRMsg` text,
  `searchData` text,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `error_Message` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `error` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `GUID` varchar(200) DEFAULT NULL,
  `TransactionId_credit` varchar(250) DEFAULT NULL,
  `TransactionId_debit` varchar(250) DEFAULT NULL,
  `IsCancelled` int NOT NULL DEFAULT '0',
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `cancelRemarks` varchar(200) DEFAULT NULL,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `TotalServiceCharge` float DEFAULT NULL,
  `RefundedAmount` float DEFAULT NULL,
  `TotalGSTAmount` float DEFAULT NULL,
  `CancellationCharge` float DEFAULT NULL,
  `CreditNoteNo` varchar(200) DEFAULT NULL,
  `CreditNoteCreatedOn` datetime DEFAULT NULL,
  `cancelDate` datetime DEFAULT NULL,
  `InvoiceNo` varchar(100) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `bookedby` varchar(100) DEFAULT NULL,
  `CustomerDetails` varchar(200) DEFAULT NULL,
  `customerName` varchar(150) DEFAULT NULL,
  `HotelQueryids` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking`
--

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

--
-- Table structure for table `tbl_hotel_booking_guest`
--

DROP TABLE IF EXISTS `tbl_hotel_booking_guest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking_guest` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `HotelRooms_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `apiTraceId` varchar(150) NOT NULL,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` int NOT NULL DEFAULT '0',
  `Relation` int NOT NULL DEFAULT '0',
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `panno` varchar(50) DEFAULT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Age` int NOT NULL DEFAULT '0',
  `Address` varchar(200) NOT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` int NOT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` int NOT NULL DEFAULT '0',
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstaddress` varchar(100) DEFAULT NULL,
  `gstphone` varchar(100) DEFAULT NULL,
  `gststate` varchar(100) DEFAULT NULL,
  `gstemail` varchar(100) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking_guest`
--

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

--
-- Table structure for table `tbl_hotel_booking_old`
--

DROP TABLE IF EXISTS `tbl_hotel_booking_old`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking_old` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `ConfirmationNo` varchar(100) DEFAULT NULL,
  `CheckInDate` date NOT NULL,
  `CheckOutDate` date NOT NULL,
  `BookingRefNo` varchar(100) DEFAULT NULL,
  `BookingId` varchar(16) NOT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `HotelBookingStatus` varchar(32) DEFAULT NULL,
  `InvoiceNumber` varchar(150) DEFAULT NULL,
  `InvoiceCreatedOn` datetime DEFAULT NULL,
  `TraceId` varchar(255) NOT NULL,
  `CurrencyType` int NOT NULL DEFAULT '0',
  `PublishedFare` float DEFAULT NULL,
  `ResultIndex` varchar(50) NOT NULL,
  `HotelName` varchar(250) NOT NULL,
  `HotelCode` varchar(250) NOT NULL,
  `HotelDescription` text NOT NULL,
  `StarRating` int NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `HotelPicture` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `HotelAddress` varchar(255) NOT NULL,
  `HotelContactNo` varchar(100) DEFAULT NULL,
  `HotelMap` text,
  `Latitude` varchar(100) DEFAULT NULL,
  `Longitude` varchar(100) DEFAULT NULL,
  `HotelLocation` varchar(255) DEFAULT NULL,
  `Remarks` text,
  `NoOfNights` int NOT NULL,
  `NoOfRooms` int NOT NULL,
  `totaladult` int NOT NULL,
  `totalchild` int NOT NULL,
  `TBBCityId` int NOT NULL,
  `cityid` int NOT NULL,
  `cityName` varchar(100) NOT NULL,
  `memberdata` text NOT NULL,
  `RoomPrice` float NOT NULL DEFAULT '0',
  `TotalPrice` float DEFAULT NULL,
  `TaxesServiceFee` float DEFAULT NULL,
  `intCostToCustomer` float DEFAULT NULL,
  `TotalAgencyMarkUp` float NOT NULL DEFAULT '0',
  `TotalServiceTaxOnAgencyMarkUp` float NOT NULL DEFAULT '0',
  `status` int NOT NULL DEFAULT '0',
  `InvoiceStatus` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Response_voucher` text,
  `API_GenerateVoucher` text,
  `API_BookingDetail` longtext,
  `SSRName` text,
  `SSRMsg` text,
  `searchData` text,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `error_Message` varchar(150) DEFAULT NULL,
  `error` varchar(150) DEFAULT NULL,
  `GUID` varchar(200) DEFAULT NULL,
  `TransactionId_credit` varchar(250) DEFAULT NULL,
  `TransactionId_debit` varchar(250) DEFAULT NULL,
  `IsCancelled` int NOT NULL DEFAULT '0',
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `cancelRemarks` varchar(200) DEFAULT NULL,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `TotalServiceCharge` float DEFAULT NULL,
  `RefundedAmount` float DEFAULT NULL,
  `TotalGSTAmount` float DEFAULT NULL,
  `CancellationCharge` float DEFAULT NULL,
  `CreditNoteNo` varchar(200) DEFAULT NULL,
  `CreditNoteCreatedOn` datetime DEFAULT NULL,
  `cancelDate` datetime DEFAULT NULL,
  `InvoiceNo` varchar(100) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `bookedby` varchar(100) DEFAULT NULL,
  `CustomerDetails` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking_old`
--

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

--
-- Table structure for table `tbl_hotel_booking_room`
--

DROP TABLE IF EXISTS `tbl_hotel_booking_room`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking_room` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `tbl_hotel_booking_id` int NOT NULL,
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `TraceId` varchar(255) NOT NULL,
  `NoOfAdults` int NOT NULL,
  `NoOfChild` int NOT NULL,
  `RoomIndex` varchar(100) NOT NULL,
  `RoomTypeCode` text NOT NULL,
  `RoomTypeName` varchar(200) NOT NULL,
  `RatePlanName` varchar(100) NOT NULL,
  `RatePlan` varchar(100) NOT NULL DEFAULT '0',
  `RatePlanCode` text NOT NULL,
  `BedTypeCode` varchar(50) DEFAULT NULL,
  `LastCancellationDate` datetime DEFAULT NULL,
  `LastVoucherDate` datetime DEFAULT NULL,
  `SmokingPreference` int NOT NULL DEFAULT '0',
  `CurrencyType` int NOT NULL DEFAULT '0',
  `RoomPrice` float NOT NULL DEFAULT '0',
  `TotalPrice` float NOT NULL,
  `TaxesServiceFee` float NOT NULL,
  `intCostToCustomer` float NOT NULL,
  `AgencyMarkUp` float NOT NULL,
  `ServiceTaxOnAgencyMarkUp` float NOT NULL,
  `AgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `ServiceTaxOnAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `PublishedPrice` float NOT NULL,
  `OfferedPrice` float NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `status` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking_room`
--

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

--
-- Table structure for table `tbl_invoice`
--

DROP TABLE IF EXISTS `tbl_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_invoice` (
  `id` int NOT NULL AUTO_INCREMENT,
  `InvoiceNumber` varchar(150) NOT NULL,
  `Booking_Id` varchar(155) NOT NULL,
  `service_type` int DEFAULT '0',
  `IsMarkForDel` int NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_invoice`
--

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

--
-- Table structure for table `tbl_loaders`
--

DROP TABLE IF EXISTS `tbl_loaders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_loaders` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `loader_image` varchar(250) NOT NULL,
  `url` varchar(100) NOT NULL,
  `modules` varchar(250) NOT NULL,
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_loaders`
--

LOCK TABLES `tbl_loaders` WRITE;
/*!40000 ALTER TABLE `tbl_loaders` DISABLE KEYS */;
INSERT INTO `tbl_loaders` VALUES (1,'','test.url.co','All','1','1'),(3,'1623146246.jpg','flight.url','Flight','1','0'),(4,'1623147339.jpg','hotel.url','Hotel','1','0');
/*!40000 ALTER TABLE `tbl_loaders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_manage_fare`
--

DROP TABLE IF EXISTS `tbl_manage_fare`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_manage_fare` (
  `id` int NOT NULL AUTO_INCREMENT,
  `faretype` varchar(100) NOT NULL,
  `faretype_rename` varchar(200) DEFAULT NULL,
  `markup_b2c` decimal(18,2) NOT NULL,
  `markup_b2b` decimal(18,2) NOT NULL,
  `showhide_b2b` tinyint NOT NULL,
  `showhide_b2c` tinyint NOT NULL,
  `remarks` varchar(250) DEFAULT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `color` varchar(50) DEFAULT NULL,
  `ApiRoundTrip` smallint NOT NULL DEFAULT '0',
  `IsSeriesFareAllow` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_manage_fare`
--

LOCK TABLES `tbl_manage_fare` WRITE;
/*!40000 ALTER TABLE `tbl_manage_fare` DISABLE KEYS */;
INSERT INTO `tbl_manage_fare` VALUES (30,'PUBLISHED','PUBLISHED',0.00,0.00,1,1,NULL,'2021-08-06 13:24:32','2022-09-22 15:23:00',1,0,'#000000',7,0),(31,'CORPORATE','CORPORATE',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(32,'SPECIAL_RETURN','SPECIAL_RETURN',0.00,0.00,1,0,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(33,'SME','SME',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(34,'TACTICAL','TACTICAL',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(35,'FLEXI_PLUS','FLEXI_PLUS',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(36,'SALE','SALE',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(37,'COUPON','COUPON',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(38,'PREMIUM_FLEX','PREMIUM_FLEX',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(39,'OFFER_FARE_WITHOUT_PNR','OFFER_FARE_WITHOUT_PNR',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(40,'OFFER_FARE_WITH_PNR','OFFER_FARE_WITH_PNR',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0),(41,'PROMO','PROMO',0.00,0.00,1,1,NULL,'2021-08-06 13:24:33','2022-09-22 15:23:00',1,0,'#000000',7,0);
/*!40000 ALTER TABLE `tbl_manage_fare` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_mastercategary`
--

DROP TABLE IF EXISTS `tbl_mastercategary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_mastercategary` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `categaryName` varchar(255) DEFAULT NULL,
  `categaryImage` varchar(1000) DEFAULT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `AgencySysId` bigint DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_mastercategary`
--

LOCK TABLES `tbl_mastercategary` WRITE;
/*!40000 ALTER TABLE `tbl_mastercategary` DISABLE KEYS */;
INSERT INTO `tbl_mastercategary` VALUES (1,'PHOTOS','1691472690cat_1.jpg','1','1',5293),(2,'NEWS','1691472678cat_1.jpg','1','1',5293),(3,'ARTICLES','1691472667cat_1.jpg','1','1',5293),(4,'EXHIBITIONS','1691472655cat_1.jpg','1','1',5293),(5,'Sponsored Badminton Tournament','1693990915cat_1.jpg','1','1',5293),(6,'Noida','1649928423cat_1.jpg','1','1',NULL),(8,'video','1693899554cat_1.jpeg','1','1',5293),(9,'ABC','1693980062cat_1.jpg','1','1',5293),(10,'Test','1694412867cat_1.jpg','1','1',5293),(11,'AECL Book Launch Event ','1695097897cat_1.jpeg','1','0',5293),(12,'Sponsored Badminton Tournament','1695103939cat_1.jpg','1','0',5293);
/*!40000 ALTER TABLE `tbl_mastercategary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_member`
--

DROP TABLE IF EXISTS `tbl_member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_member` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `MemberShipType` varchar(32) NOT NULL,
  `MemberShipCode` varchar(8) NOT NULL,
  `CompanyName` varchar(128) NOT NULL,
  `Salutation` varchar(8) NOT NULL,
  `FirstName` varchar(32) NOT NULL,
  `LastName` varchar(32) NOT NULL,
  `Email` varchar(64) NOT NULL,
  `Code` varchar(8) NOT NULL DEFAULT '+91',
  `Mobile` varchar(12) NOT NULL,
  `Designation` varchar(32) NOT NULL,
  `City` varchar(32) NOT NULL,
  `State` varchar(32) NOT NULL,
  `Country` varchar(32) NOT NULL,
  `RegistrationNo` varchar(32) NOT NULL,
  `IsActive` enum('0','1') NOT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_member`
--

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

--
-- Table structure for table `tbl_misc_category`
--

DROP TABLE IF EXISTS `tbl_misc_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_misc_category` (
  `miscCatId` int NOT NULL AUTO_INCREMENT,
  `categoryTitle` varchar(256) NOT NULL,
  `categoryLabel` varchar(256) NOT NULL,
  `bannerImage` varchar(256) NOT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`miscCatId`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_misc_category`
--

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

--
-- Table structure for table `tbl_misc_post`
--

DROP TABLE IF EXISTS `tbl_misc_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_misc_post` (
  `miscId` int NOT NULL AUTO_INCREMENT,
  `miscCategory` int NOT NULL,
  `miscTitle` varchar(500) NOT NULL,
  `miscLabel` varchar(500) NOT NULL,
  `miscImage` varchar(256) NOT NULL,
  `miscDescription` text NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`miscId`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_misc_post`
--

LOCK TABLES `tbl_misc_post` WRITE;
/*!40000 ALTER TABLE `tbl_misc_post` DISABLE KEYS */;
INSERT INTO `tbl_misc_post` VALUES (3,1,'asass  ddddd','asass-ddddd','1561462570.jpg','ssss  ddd ddddd  dfsff','1','1'),(4,3,'Banana','banana','1561463096.jpg','Never, put your banana in the refrigerator!!!\r\n\r\nThis is interesting. After reading this, you\'ll never look at a banana in the same way again…..\r\n\r\nBananas contain three natural sugars - sucrose, fructose and glucose combined with fiber. A banana gives an instant, sustained and substantial boost of energy.\r\n\r\nResearch has proven that just two bananas provide enough energy for a strenuous 90-minute workout. No wonder the banana is the number one fruit with the world\'s leading athletes.But energy isn\'t the only way a banana can help us keep fit.It can also help overcome or prevent a substantial number of illnesses and conditions, making it a must to add to our daily diet.\r\n\r\nDepression : According to a recent survey undertaken by MIND amongst people suffering from depression, many felt much better after eating a banana. This is because bananas contain tryptophan, a type of protein that the body converts into serotonin, known to make you relax, improve your mood and generally make you feel happier.\r\n\r\nPMS : Forget the pills - eat a banana. The vitamin B6 it contains regulates blood glucose levels, which can affect your mood.\r\n\r\nAnemia : High in iron, bananas can stimulate the production of hemoglobin in the blood and so helps in cases of anemia.\r\n\r\nBlood Pressure : This unique tropical fruit is extremely high in potassium yet low in salt, making it perfect to beat blood pressure. So much so, the US Food and Drug Administration has just allowed the banana industry to make official claims for the fruit\'s ability to reduce the risk of blood pressure and stroke.\r\n\r\nBrain Power : 200 students at a Twickenham (Middlesex) school were helped through their exams this year by eating bananas at breakfast, break, and lunch in a bid to boost their brain power. Research has shown that the potassium-packed fruit can assist learning by making pupils more alert.\r\n\r\nConstipation : High in fiber, including bananas in the diet can help restore normal bowel action, helping to overcome the problem without resorting to laxatives.\r\n\r\nHangovers : One of the quickest ways of curing a hangover is to make a banana milkshake, sweetened with honey. The banana calms the stomach and, with the help of the honey, builds up depleted blood sugar levels, while the milk soothes and re-hydrates your system.\r\n\r\nHeartburn : Bananas have a natural antacid effect in the body, so if you suffer from heartburn, try eating a banana for soothing relief.\r\n\r\nMorning Sickness : Snacking on bananas between meals helps to keep blood sugar levels up and avoid morning sickness.\r\n\r\nMosquito bites : Before reaching for the insect bite cream, try rubbing the affected area with the inside of a banana skin. Many people find it amazingly successful at reducing swelling and irritation.\r\n\r\nNerves : Bananas are high in B vitamins that help calm the nervous system.\r\n\r\nOverweight and at work? Studies at the Institute of Psychology in Austria found pressure at work leads to gorging on comfort food like chocolate and crisps. Looking at 5,000 hospital patients, researchers found the most obese were more likely to be in high-pressure jobs. The report concluded that, to avoid panic-induced food cravings, we need to control our blood sugar levels by snacking on high carbohydrate foods every two hours to keep levels steady.\r\n\r\nUlcers : The banana is used as the dietary food against intestinal disorders because of its soft texture and smoothness. It is the only raw fruit that can be eaten without distress in over-chronicler cases. It also neutralizes over-acidity and reduces irritation by coating the lining of the stomach.\r\n\r\nTemperature control : Many other cultures see bananas as a \'cooling\' fruit that can lower both the physical and emotional temperature of expectant mothers. In Thailand , for example, pregnant women eat bananas to ensure their baby is born with a cool temperature.\r\n\r\nSeasonal Affective Disorder (SAD): Bananas can help SAD sufferers because they contain the natural mood enhancer tryptophan.Smoking & Tobacco Use: Bananas can also help people trying to give up smoking. The B6, B12 they contain, as well as the potassium and ma gnesium found in them, help the body recover from the effects of nicotine withdrawal.\r\n\r\nStress : Potassium is a vital mineral, which helps normalize the heartbeat, sends oxygen to the brain and regulates your body\'s water balance. When we are stressed, our metabolic rate rises, thereby reducing our potassium levels. These can be rebalanced with the help of a high-potassium banana snack.\r\n\r\nStrokes : According to research in \'The New England Journal of Medicine, \'eating bananas as part of a regular diet can cut the risk of death by strokes by as much as 40%!\r\n\r\nWarts : Those keen on natural alternatives swear that if you want to kill off a wart, take a piece of banana skin and place it on the wart, with the yellow side out. Carefully hold the skin in place with a plaster or surgical tape! So, a banana really is a natural remedy for many ills. When you compare it to an apple, it has four times the protein, twice the carbohydrate, three times the phosphorus, five times the vitamin A and iron, and twice the other vitamins and minerals. It is also rich in potassium and is one of the best value foods around So maybe its time to change that well-known phrase so that we say, \'A banana a day keeps the doctor away!\'\r\n\r\nPS: Bananas must be the reason monkeys are so happy all the time!\r\n\r\nI will add one here ; want a quick shine on our shoes?? Take the INSIDE of the banana skin, and rub directly on the shoe…..polish with dry cloth. Amazing fruit.','1','0'),(5,5,'test','test','1561467131.jpg','<p>test</p>\r\n','1','0');
/*!40000 ALTER TABLE `tbl_misc_post` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_my_query`
--

DROP TABLE IF EXISTS `tbl_my_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_my_query` (
  `query_id` int NOT NULL AUTO_INCREMENT,
  `MasterTpSysId` int NOT NULL,
  `code` text NOT NULL,
  `CustomerSysId` int NOT NULL,
  `query_name` varchar(256) NOT NULL,
  `query_email` varchar(256) NOT NULL,
  `query_phone` varchar(20) NOT NULL,
  `query_destination` varchar(256) NOT NULL,
  `query_date` date NOT NULL,
  `query_pax` varchar(10) NOT NULL,
  `package_name` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`query_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_my_query`
--

LOCK TABLES `tbl_my_query` WRITE;
/*!40000 ALTER TABLE `tbl_my_query` DISABLE KEYS */;
INSERT INTO `tbl_my_query` VALUES (4,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','india','2021-03-26','2','Maldives at Centara Ras Fushi Resort -Spa','1','0'),(5,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','india','2021-03-25','2','Maldives at Centara Ras Fushi Resort -Spa','1','0'),(6,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','india','2021-03-25','2','Maldives at Centara Ras Fushi Resort -Spa','1','0'),(7,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','Nainital','2021-03-28','2','RADIANT HOLI IN DIGANTAA RESORT','1','0'),(8,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','Nainital','2021-03-28','3','RADIANT HOLI IN DIGANTAA RESORT','1','0'),(9,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','india','2021-03-24','2','Maldives at Centara Ras Fushi Resort -Spa','1','0'),(10,0,'',104941,'Deepak Kumar','deepak@catpl.co.in','9695357709','india','2021-03-25','2','Maldives at Centara Ras Fushi Resort -Spa','1','0'),(11,0,'',103022,'Sudipta Banerjee','sudipta@catpl.co.in','9818999760','Haridwar','2021-03-20','2','CHARDHAM YATRA 2021 - BY ROAD','1','0'),(12,0,'',103022,'Sudipta Banerjee','sudipta@catpl.co.in','9818999760','Haridwar','2021-04-19','2','CHARDHAM YATRA 2021 - BY ROAD','1','0'),(13,0,'',103022,'Sudipta Banerjee','sudipta@catpl.co.in','9818999760','Haridwar','2021-03-19','2','CHARDHAM YATRA 2021 - BY ROAD','1','0'),(14,0,'',103022,'Sudipta Banerjee','sudipta@catpl.co.in','9818999760','Haridwar','2021-03-20','2','CHARDHAM YATRA 2021 - BY ROAD','1','0'),(15,0,'',94418,'muskan gupta','muskancatpl@gmail.com','9634022688','cappadocia','2021-05-26','5','TURKISH DELIGHT','1','0'),(16,0,'',94418,'muskan gupta','muskancatpl@gmail.com','9634022688','cappadocia','2021-05-26','3','TURKISH DELIGHT','1','0'),(17,0,'',100755,'KANISHK AGARWAL','kanishk051@gmail.com','9166140051','Goa','2021-10-21','2','AMARA GRAND INN CALANGUTE GOA','1','0'),(18,0,'',100755,'KANISHK AGARWAL','kanishk051@gmail.com','9166140051','','2021-10-21','2','','1','0');
/*!40000 ALTER TABLE `tbl_my_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_newsletter_images`
--

DROP TABLE IF EXISTS `tbl_newsletter_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_newsletter_images` (
  `id` int NOT NULL AUTO_INCREMENT,
  `currentMonth` varchar(256) NOT NULL,
  `lastMonth` varchar(256) NOT NULL,
  `pdf1` varchar(500) NOT NULL,
  `pdf2` varchar(500) NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_newsletter_images`
--

LOCK TABLES `tbl_newsletter_images` WRITE;
/*!40000 ALTER TABLE `tbl_newsletter_images` DISABLE KEYS */;
INSERT INTO `tbl_newsletter_images` VALUES (1,'1567584247.jpg','1567584247.jpg','1568190244pdf1.pdf','1568190019_pdf2.pdf','1');
/*!40000 ALTER TABLE `tbl_newsletter_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_newsletter_lattestnews`
--

DROP TABLE IF EXISTS `tbl_newsletter_lattestnews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_newsletter_lattestnews` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `description` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `orderofAppearence` int NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_newsletter_lattestnews`
--

LOCK TABLES `tbl_newsletter_lattestnews` WRITE;
/*!40000 ALTER TABLE `tbl_newsletter_lattestnews` DISABLE KEYS */;
INSERT INTO `tbl_newsletter_lattestnews` VALUES (2,'title ddd 4',' test d sddd 4','',4,'1');
/*!40000 ALTER TABLE `tbl_newsletter_lattestnews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_notification`
--

DROP TABLE IF EXISTS `tbl_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_notification` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(250) NOT NULL,
  `notification` text NOT NULL,
  `url` varchar(255) NOT NULL,
  `expiryDate` date NOT NULL,
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  `IsFeatured` enum('0','1') NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_notification`
--

LOCK TABLES `tbl_notification` WRITE;
/*!40000 ALTER TABLE `tbl_notification` DISABLE KEYS */;
INSERT INTO `tbl_notification` VALUES (1,'sfasdf','safasfd','no url','2021-01-31','1','1','1',''),(2,'dsadfsafd','first noti','no url','2021-01-31','1','1','0',''),(3,'test','first notification','sfdsf','2021-01-27','1','1','1',''),(4,'Holiday','Testing','https://partner.ineedtrip.com/','2021-07-15','1','1','1','0'),(5,'','','','2021-07-22','1','0','1',NULL);
/*!40000 ALTER TABLE `tbl_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_offers`
--

DROP TABLE IF EXISTS `tbl_offers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_offers` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `category` int NOT NULL,
  `heading` varchar(500) NOT NULL,
  `image` varchar(256) NOT NULL,
  `subHeading` varchar(500) NOT NULL,
  `expiryDate` date NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL DEFAULT '1',
  `displayOnHome` int NOT NULL DEFAULT '0',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_offers`
--

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

--
-- Table structure for table `tbl_our_services`
--

DROP TABLE IF EXISTS `tbl_our_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_our_services` (
  `serviceId` int NOT NULL AUTO_INCREMENT,
  `serviceTitle` varchar(500) NOT NULL,
  `serviceIdentifier` varchar(500) NOT NULL,
  `serviceDescription` text NOT NULL,
  `bannerImage` varchar(256) NOT NULL,
  `metatag` text NOT NULL,
  `keyword` text NOT NULL,
  `description` text NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`serviceId`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_our_services`
--

LOCK TABLES `tbl_our_services` WRITE;
/*!40000 ALTER TABLE `tbl_our_services` DISABLE KEYS */;
INSERT INTO `tbl_our_services` VALUES (2,'Cruise Booking','cruise-booking','Get best deals on Cruise booking\r\n','1617103697.jpg','','','','1','0'),(3,'dfsfsdf','dfsfsdf','<p>dzfsdf</p>\r\n','','sdfsd','sdfsdf','sdfddd','1','1'),(4,'cab','cab','','1692267781.jpeg','','','','1','1'),(5,'Travel Insurance ','travel-insurance-','Travel Safely With Our Comprehensive Insurance Coverage','1692336892.jpg','','','','1','0'),(6,'Foreign Exchange','foreign-exchange','Get the Best Currency Exchange Rates for International Travel','1692337515.jpg','','','','1','0'),(7,'Visa Assistance','visa-assistance','Step-by-step assistance throughout your visa application process','1692338070.jpg','','','','1','0'),(8,'Flight Booking ','flight-booking-','Book your Flights Hassle free at Discounted Rates with Us.','1692339301.png','','','','1','0'),(9,'Hotel Booking','hotel-booking','Explore the world of Hotels with perfect deal & save.','1692339806.jpg','','','','1','0');
/*!40000 ALTER TABLE `tbl_our_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_ourpartner`
--

DROP TABLE IF EXISTS `tbl_ourpartner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_ourpartner` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(50) NOT NULL,
  `icon` varchar(40) NOT NULL,
  `url` varchar(255) NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `status` enum('0','1') CHARACTER SET armscii8 COLLATE armscii8_bin NOT NULL DEFAULT '1',
  `isb2b` tinyint NOT NULL DEFAULT '1',
  `description` varchar(550) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_ourpartner`
--

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

--
-- Table structure for table `tbl_pack_type`
--

DROP TABLE IF EXISTS `tbl_pack_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_pack_type` (
  `packType` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(100) NOT NULL,
  `label` varchar(100) DEFAULT NULL,
  `banner_image` varchar(250) DEFAULT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `DisplayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnHome` enum('1','0') NOT NULL DEFAULT '0',
  `image` varchar(256) NOT NULL,
  `Icon` varchar(100) DEFAULT NULL,
  `largeIcon` varchar(250) DEFAULT NULL,
  `metaTitle` varchar(256) NOT NULL,
  `metaKeyword` varchar(500) NOT NULL,
  `metaDescription` varchar(500) NOT NULL,
  PRIMARY KEY (`packType`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_pack_type`
--

LOCK TABLES `tbl_pack_type` WRITE;
/*!40000 ALTER TABLE `tbl_pack_type` DISABLE KEYS */;
INSERT INTO `tbl_pack_type` VALUES (1,'Honeymoon',NULL,'banner_1710329534.jpg','0','1','1','1','image_1710329534.jpg',NULL,NULL,'','',''),(2,'Adventure',NULL,'banner_1710329601.jpg','0','1','1','1','image_1710329601.jpg',NULL,NULL,'','',''),(3,'Wildlife',NULL,'banner_1710329631.jpg','0','1','1','1','image_1710329631.jpg',NULL,NULL,'','',''),(4,'Beach',NULL,'banner_1710329693.jpg','0','1','1','1','image_1710329693.jpg',NULL,NULL,'','',''),(5,'Family',NULL,'banner_1710333843.jpg','0','1','1','1','image_1710333843.jpg',NULL,NULL,'','',''),(6,'Sports',NULL,NULL,'0','1','0','0','image_1591986725.jpg',NULL,NULL,'','',''),(7,'Cruise',NULL,NULL,'0','1','0','0','image_1691040121.jpg',NULL,NULL,'','',''),(8,'Religious',NULL,NULL,'0','1','0','0','image_1591986767.jpg',NULL,NULL,'','',''),(9,'Hill Station',NULL,NULL,'0','1','0','0','image_1690874184.jpg',NULL,NULL,'','',''),(10,'Heritage',NULL,NULL,'0','1','0','0','image_1591986815.jpg',NULL,NULL,'','',''),(11,'Thomas',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(12,'Weekend',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(17,'NYE2018',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(18,'Festivals and Events',NULL,NULL,'0','1','0','0','image_1591986838.jpg',NULL,NULL,'','',''),(19,'Romantic',NULL,NULL,'0','1','0','0','image_1591986870.jpg',NULL,NULL,'','',''),(20,' Shopping and Nightlife',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(21,'Offbeat',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(22,'Leisure',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(23,'By Cab',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(24,'Group Tours',NULL,NULL,'0','1','0','0','image_1591986901.jpg',NULL,NULL,'','',''),(25,' BY Volvo',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(26,'Circuit tour ',NULL,NULL,'0','1','0','0','',NULL,NULL,'','','');
/*!40000 ALTER TABLE `tbl_pack_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_popular_city`
--

DROP TABLE IF EXISTS `tbl_popular_city`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_popular_city` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `Fromcity` varchar(255) NOT NULL,
  `Tocity` varchar(200) NOT NULL,
  `source` varchar(200) DEFAULT NULL,
  `destination` varchar(200) DEFAULT NULL,
  `source_city` varchar(200) DEFAULT NULL,
  `destination_city` varchar(200) DEFAULT NULL,
  `ContSysId1` int DEFAULT NULL,
  `ContSysId2` int DEFAULT NULL,
  `price` float DEFAULT NULL,
  `popularCityType` tinyint DEFAULT '0',
  `AboutImage` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `AboutDescription` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `url` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `opt` int DEFAULT NULL,
  `CreateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_popular_city`
--

LOCK TABLES `tbl_popular_city` WRITE;
/*!40000 ALTER TABLE `tbl_popular_city` DISABLE KEYS */;
INSERT INTO `tbl_popular_city` VALUES (38,'Delhi','Kochi','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','Kochi, IN - Cochin Internation Arpt (COK)','DEL','COK',101,101,4454,0,'1637594991.jpg','','0','',0,'2021-01-13 05:32:57','2021-11-22 15:29:51',1,0),(39,'Delhi','Dubai','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','Dubai, AE - Dubai Intl Arpt (DXB)','DEL','DXB',101,228,6300,1,'1615901170.jpg','','0','',0,'2021-02-23 12:22:04','2021-03-17 12:29:36',1,1),(42,'Delhi','Dubai','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','Dubai, AE - Dubai Intl Arpt (DXB)','DEL','DXB',101,228,15000,1,'1616419947.jpg','','0','',0,'2021-03-22 13:31:27','2021-03-22 13:32:27',1,1),(43,'Delhi','Mumbai','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','Mumbai, IN - Chhatrapati Shivaji (BOM)','DEL','BOM',101,101,43534,0,'1616420121.png','','0','',0,'2021-03-22 13:35:21','2021-03-22 13:35:21',1,1),(44,'Mumbai','Delhi','Mumbai, IN - Chhatrapati Shivaji (BOM)','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','BOM','DEL',101,101,43654,0,'1616420150.png','','0','',0,'2021-03-22 13:35:50','2021-03-22 13:35:50',1,1),(45,'Chennai','Port Blair','Chennai, IN - Chennai Arpt (MAA)','Port Blair, IN - Veer Savarkar Arpt (IXZ)','MAA','IXZ',101,101,8700,0,'1637594560.jpg','','0','',0,'2021-03-22 13:40:24','2021-11-22 15:22:40',1,0),(46,'Delhi','Dubai','Delhi, IN - Delhi Indira Gandhi Intl (DEL)','Dubai, AE - Dubai Intl Arpt (DXB)','DEL','DXB',101,228,15999,1,'1616420522.jpg','','0','',0,'2021-03-22 13:42:02','2021-11-17 06:59:50',1,1),(47,'Goa In','Gorakhpur','Goa In, IN - Dabolim Arpt (GOI)','Gorakhpur, IN - Gorakhpur Arpt (GOP)','GOI','GOP',0,101,1111,0,'1616485336.png','','0','',0,'2021-03-23 07:42:17','2021-03-23 07:42:17',1,1),(48,'Mumbai','Delhi','Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)','Delhi, IN - Indira Gandhi Intl Airport (DEL)','BOM','DEL',101,101,4567,0,'1637594057.jpg','','0','',0,'2021-07-08 07:46:02','2021-11-22 15:14:17',1,0),(49,'Delhi','Goa In','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Goa In, IN - Dabolim Arpt (GOI), India','DEL','GOI',101,0,3500,0,'1637733506.jpg','','0','',0,'2021-11-24 05:58:27','2021-11-24 05:58:27',1,0),(50,'Delhi','Dubai ','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates','DEL','DXB',101,228,15999,1,'1637765867.jpg','','0','',0,'2021-11-24 06:09:35','2021-11-24 14:57:47',1,0),(51,'Delhi ','Maldives','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Male, MV - Male Intl Arpt (MLE), Maldives','DEL','MLE',101,133,50288,1,'1637734996.jpg','','0','',0,'2021-11-24 06:23:16','2021-12-07 11:00:44',1,0),(52,'Delhi','Bengaluru','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Bengaluru, IN - Bengaluru Intl Arpt (BLR), India','DEL','BLR',101,0,6029,0,'1637765770.jpg','','0','',0,'2021-11-24 14:56:10','2021-11-24 14:56:10',1,0),(53,'Mumbai','Kolkata','Mumbai, IN - Chhatrapati Shivaji (BOM), India','Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India','BOM','CCU',101,101,7149,0,'1637766345.jpg','','0','',0,'2021-11-24 15:05:45','2021-11-24 15:05:45',1,0),(54,'Mumbai','Mauritius','Mumbai, IN - Chhatrapati Shivaji (BOM), India','Mauritius, MU - Plaisance Arptt (MRU), Mauritius','BOM','MRU',101,139,108070,1,'1637767050.jpg','','0','',0,'2021-11-24 15:17:30','2021-11-24 15:17:30',1,0),(55,'Delhi','Istanbul','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Istanbul, IST, TR - Sabiha Gokcen Arpt (SAW), Turkey','DEL','SAW',101,222,38460,1,'1637767424.jpg','','0','',0,'2021-11-24 15:23:44','2021-11-24 15:23:44',1,0),(56,'Mumbai','Dubai','Mumbai, IN - Chhatrapati Shivaji (BOM), India','Dubai, DXB, AE - Dubai Marina Mall Bus Station (XMB), United Arab Emirates','BOM','XMB',101,228,33358,1,'1638875265.jpg','','0','',0,'2021-12-07 11:07:45','2021-12-07 11:07:45',1,0),(57,'Delhi','Singapore','Delhi, IN - Delhi Indira Gandhi Intl (DEL), India','Singapore, SG - Changi Intl Arpt (SIN), Singapore','DEL','SIN',101,190,28026,1,'1638875746.jpg','','0','',0,'2021-12-07 11:15:46','2021-12-07 11:15:46',1,0);
/*!40000 ALTER TABLE `tbl_popular_city` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_popular_logo`
--

DROP TABLE IF EXISTS `tbl_popular_logo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_popular_logo` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `AboutImage` varchar(255) DEFAULT NULL,
  `CreateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_popular_logo`
--

LOCK TABLES `tbl_popular_logo` WRITE;
/*!40000 ALTER TABLE `tbl_popular_logo` DISABLE KEYS */;
INSERT INTO `tbl_popular_logo` VALUES (30,'ertgt','1638532206.png','2021-12-03 10:22:51','2021-12-03 11:50:06',1,0),(31,'drtgtr','1638532195.png','2021-12-03 10:26:03','2021-12-03 11:49:55',1,0),(32,'dgtfyt','1638532186.png','2021-12-03 10:29:19','2021-12-03 11:49:47',1,0),(33,'ry67677','1638532176.png','2021-12-03 10:31:23','2021-12-03 11:49:36',1,0),(35,'tffyhtyyt','1638532262.png','2021-12-03 11:50:18','2021-12-03 11:51:02',1,0),(36,'wertfgert','1638532287.png','2021-12-03 11:51:27','2021-12-03 11:51:27',1,0);
/*!40000 ALTER TABLE `tbl_popular_logo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_promotion_category`
--

DROP TABLE IF EXISTS `tbl_promotion_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_promotion_category` (
  `prom_cat_id` int NOT NULL AUTO_INCREMENT,
  `prom_cat_one` varchar(256) NOT NULL,
  `prom_cat_two` varchar(256) NOT NULL,
  `prom_cat_three` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsmarkForDel` enum('1','0') NOT NULL,
  PRIMARY KEY (`prom_cat_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_promotion_category`
--

LOCK TABLES `tbl_promotion_category` WRITE;
/*!40000 ALTER TABLE `tbl_promotion_category` DISABLE KEYS */;
INSERT INTO `tbl_promotion_category` VALUES (1,'Fixed Departure Tours','Holiday Packages','Hold','1','0');
/*!40000 ALTER TABLE `tbl_promotion_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_query`
--

DROP TABLE IF EXISTS `tbl_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_query` (
  `id` int NOT NULL AUTO_INCREMENT,
  `email` varchar(32) NOT NULL,
  `secondEmail` varchar(50) DEFAULT NULL,
  `phone` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `mobile` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `location` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `google_map` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `otherLocations` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `isb2b` int NOT NULL DEFAULT '0',
  `whatsapp_no` varchar(25) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `broucher` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `image` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_query`
--

LOCK TABLES `tbl_query` WRITE;
/*!40000 ALTER TABLE `tbl_query` DISABLE KEYS */;
INSERT INTO `tbl_query` VALUES (1,'ashok@ashoktravelworld.com','','+91-9822032146','+91-9822032146','14-15 United Apts,2407 East Street, ','','','1',0,'','','1_1561382440.jpg'),(2,'corporatepartner@ineedtrip.com','','+91 98180 90530','+919250055225','A-74 | Office No: 209 | Sweet Ball Business Center | Sec-63 | Noida | Uttar Pradesh | 201301',NULL,NULL,'1',1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tbl_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_quick_links`
--

DROP TABLE IF EXISTS `tbl_quick_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_quick_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `short_description` varchar(250) DEFAULT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) DEFAULT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `description` text,
  `displayOnFooter` enum('1','0') NOT NULL DEFAULT '1',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `masterCategory` int DEFAULT NULL,
  `isb2b` int NOT NULL DEFAULT '0',
  `AgencySysId` bigint DEFAULT NULL,
  `pageurl` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=361 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_quick_links`
--

LOCK TABLES `tbl_quick_links` WRITE;
/*!40000 ALTER TABLE `tbl_quick_links` DISABLE KEYS */;
INSERT INTO `tbl_quick_links` VALUES (360,'FAMILY PACKAGE','shalviii','FAMILY PACKAGE',NULL,'FAMILY PACKAGE','FAMILY PACKAGE','FAMILY PACKAGE','360_1672384169.jpg','Activate',NULL,'1','2022-12-30 12:52:32','2022-12-30 12:52:32',NULL,0,NULL,'http://local.lts.com/tour-destination/category/family');
/*!40000 ALTER TABLE `tbl_quick_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_regions`
--

DROP TABLE IF EXISTS `tbl_regions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_regions` (
  `sid` bigint NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `label` varchar(256) NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `banner_image` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '0',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `Keyword` text,
  `Description` text,
  `Metatag` text,
  `countryIds` varchar(500) DEFAULT NULL,
  `countries` varchar(500) DEFAULT NULL,
  `ContinentId` varchar(256) DEFAULT NULL,
  `region_id` int DEFAULT NULL,
  `region_type` int DEFAULT NULL,
  `displayOnHeader` enum('0','1') NOT NULL DEFAULT '0',
  `region_header_content` text,
  `region_footer_content` text,
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_regions`
--

LOCK TABLES `tbl_regions` WRITE;
/*!40000 ALTER TABLE `tbl_regions` DISABLE KEYS */;
INSERT INTO `tbl_regions` VALUES (1,'Indian Subcontinent','Indian Subcontinent','1_1695208678.jpg','1_1695208745.jpg','2023-09-20 16:49:05','2021-02-22 18:46:16','0','0','Indian Subcontinent, culture, history, travel destination, South Asia, natural beauty, subcontinental countries, cultural diversity, historical landmarks, subcontinental traditions, scenic landscapes, South Asian heritage.','<div> The Indian Subcontinent: Unveiling the Diversity and Majesty of a Timeless Realm</div><div><br></div><div>Introduction:</div><div>The Indian subcontinent is a land of vibrant cultures, rich traditions, and breathtaking landscapes that have captivated travelers for centuries. From the snow-capped peaks of the Himalayas to the pristine beaches along the Indian Ocean, this subcontinent offers a remarkable tapestry of experiences waiting to be discovered. In this blog, we\'ll take you on a virtual tour across the Indian subcontinent, inviting you to explore the enchantment of this timeless realm.</div><div><br></div><div>Jaipur, India: The Pink City</div><div>Jaipur, the capital of Rajasthan, is known as the \"Pink City\" due to its terracotta-colored buildings. Explore the grandeur of Amber Fort, marvel at the intricate architecture of Hawa Mahal, and immerse yourself in the city\'s vibrant bazaars. Jaipur is a cultural and historical jewel.</div><div><br></div><div>Kathmandu Valley, Nepal: The Himalayan Haven</div><div>Nepal\'s Kathmandu Valley is a UNESCO World Heritage site and a sanctuary for nature enthusiasts and spiritual seekers. Visit the ancient temples and stupas of Kathmandu, hike the scenic trails of the Annapurna or Langtang regions, and embrace the tranquility of the region\'s monasteries.</div><div><br></div><div>Sri Lanka: The Island of Serendipity</div><div>Sri Lanka, often referred to as the \"Pearl of the Indian Ocean,\" offers a blend of ancient history, lush landscapes, and pristine beaches. Explore the cultural riches of Kandy, discover the wildlife at Yala National Park, and unwind on the golden shores of Mirissa or Unawatuna.</div><div><br></div><div>Bhutan: The Land of Happiness</div><div>Bhutan, known for its Gross National Happiness index, is a Himalayan kingdom where tradition and culture are deeply cherished. Visit the stunning Tiger\'s Nest Monastery, trek through lush valleys, and experience the warmth of Bhutanese hospitality.</div><div><br></div><div>Maldives: Tropical Paradise</div><div>The Maldives, an archipelago in the Indian Ocean, is synonymous with luxury and natural beauty. Stay in overwater bungalows, snorkel with vibrant marine life, and bask in the idyllic surroundings of white sandy beaches and turquoise waters.</div><div><br></div><div>Conclusion:</div><div>The Indian subcontinent, with its diverse landscapes, ancient traditions, and warm hospitality, remains a captivating destination for travelers seeking cultural immersion, natural wonders, and spiritual exploration. It\'s a realm where time seems to stand still, allowing you to unravel the depths of its beauty and heritage. Whether you\'re drawn to the vibrant streets of Jaipur, the serene valleys of Nepal, or the tropical paradise of the Maldives, the Indian subcontinent beckons with open arms, inviting you to embark on an unforgettable journey through its enchanting landscapes and timeless wonders. Don\'t miss the opportunity to explore this remarkable region where history, culture, and nature converge in splendid harmony.</div>   ',' \"Indian Subcontinent Revealed: A Mosaic of Culture, History, and Natural Wonders\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(2,'Middle East','Middle East','2_1695209371.jpg','2_1695209402.jpg','2023-09-20 17:00:02','2021-02-22 18:46:16','0','0',' Middle East, history, culture, travel destination, Middle Eastern countries, heritage sites, cultural diversity, iconic landscapes, Middle Eastern traditions, historical landmarks, ancient civilizations, cultural tapestry.','<div> The Middle East: Unveiling the Diverse Wonders of a Complex Region</div><div><br></div><div>Introduction:</div><div>The Middle East, often portrayed in the media for its political and cultural significance, is a region brimming with history, diverse cultures, and awe-inspiring landscapes. From the ancient cities of Mesopotamia to the stunning natural beauty of its deserts and coastlines, the Middle East offers a tapestry of experiences waiting to be explored. In this blog, we\'ll embark on a virtual journey through the Middle East, inviting you to uncover the richness and complexity of this fascinating region.</div><div><br></div><div>Petra, Jordan: The Rose-Red City</div><div>Petra, a UNESCO World Heritage Site, is an archaeological marvel known as the \"Rose-Red City\" due to its stunning rock-cut architecture. Walk through the narrow Siq to behold the Treasury, explore the ancient tombs and temples, and immerse yourself in the history of this once-lost city.</div><div><br></div><div>Dubai, UAE: A Modern Oasis</div><div>Dubai is a city of superlatives, with its towering skyscrapers, luxurious malls, and artificial islands. Ascend to the top of the Burj Khalifa, experience the extravagance of the Palm Jumeirah, and enjoy the vibrant culture of the old souks along the Dubai Creek.</div><div><br></div><div>Istanbul, Turkey: Where Continents Converge</div><div>Istanbul, the only city spanning two continents, offers a captivating blend of East and West. Explore the Hagia Sophia, the Blue Mosque, and the Grand Bazaar, and savor the delightful flavors of Turkish cuisine.</div><div><br></div><div>Wadi Rum, Jordan: The Martian Desert</div><div>Wadi Rum, often referred to as the \"Valley of the Moon,\" boasts a surreal desert landscape that feels otherworldly. Take a Jeep tour through its towering sandstone mountains and spend a night under the starry desert sky in a Bedouin camp.</div><div><br></div><div>Jerusalem, Israel: The Holy City</div><div>Jerusalem, sacred to three major religions, is a city of profound spirituality and history. Visit the Western Wall, the Church of the Holy Sepulchre, and the Dome of the Rock, and explore the vibrant markets of the Old City.</div><div><br></div><div>Conclusion:</div><div>The Middle East, with its diverse cultures, ancient history, and breathtaking landscapes, remains a complex and captivating region for travelers seeking to explore its depth. It is a place where tradition meets modernity, and where spirituality and history are intertwined. Whether you\'re drawn to the ancient wonders of Petra, the modern marvels of Dubai, or the spiritual significance of Jerusalem, the Middle East invites you to uncover its richness and complexity. Don\'t miss the opportunity to explore this remarkable region, where millennia of history, diverse cultures, and stunning landscapes converge to create a tapestry of experiences unlike any other.</div>   ',' \"Middle East Unveiled: A Journey through History, Culture, and Iconic Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(3,'North India','North India','3_1695210433.jpg','3_1695210460.jpg','2023-09-20 17:17:40','2021-02-22 18:46:16','0','0',' North India, culture, heritage, travel destination, North Indian states, historical landmarks, scenic landscapes, North Indian traditions, diverse cultures, Northern India, cultural tapestry.','<div>North India: Discovering the Cultural and Natural Treasures of an Enchanting Region</div><div><br></div><div>Introduction:</div><div>North India, a region of rich history, diverse cultures, and breathtaking landscapes, has long been a magnet for travelers seeking to explore its wonders. From the majestic Himalayan peaks to the historic cities along the Ganges River, North India offers an extraordinary tapestry of experiences waiting to be uncovered. In this blog, we\'ll take you on a virtual journey through North India, inviting you to immerse yourself in the charm and diversity of this captivating region.</div><div><br></div><div>Jaipur, Rajasthan: The Pink City</div><div>Jaipur, the capital of Rajasthan, is a city of royal splendor and vibrant traditions. Explore the grandeur of Amber Fort, visit the intricately designed City Palace, and wander through the bustling bazaars of the Old City. Don\'t forget to sample Rajasthani cuisine and shop for exquisite textiles and jewelry.</div><div><br></div><div>Varanasi, Uttar Pradesh: The Spiritual Heart</div><div>Varanasi, one of the oldest continually inhabited cities in the world, is a spiritual haven on the banks of the Ganges River. Witness the mesmerizing Ganga Aarti ceremony, take a boat ride along the river, and explore the ancient temples and narrow alleyways of this sacred city.</div><div><br></div><div>Ladakh, Jammu and Kashmir: The Land of High Passes</div><div>Ladakh, nestled in the Himalayas, is a haven for adventure and natural beauty. Trek through the stunning landscapes of Nubra Valley, visit the monasteries of Leh, and experience the unique Ladakhi culture. The high-altitude lakes, such as Pangong Tso, offer mesmerizing reflections of the surrounding peaks.</div><div><br></div><div>Amritsar, Punjab: The Golden City</div><div>Amritsar is home to the Golden Temple, the holiest site in Sikhism, and a symbol of spiritual and architectural beauty. Pay your respects at the temple, experience the daily langar (community meal), and visit the historic Jallianwala Bagh.</div><div><br></div><div>Rishikesh, Uttarakhand: Yoga Capital of the World</div><div>Rishikesh, nestled in the foothills of the Himalayas, is a hub for yoga and spirituality. Attend a yoga class by the Ganges, meditate at the tranquil ashrams, and embark on adventurous activities like white-water rafting and trekking.</div><div><br></div><div>Conclusion:</div><div>North India, with its diverse cultures, spiritual heritage, and stunning landscapes, remains an enchanting region for travelers seeking to immerse themselves in its beauty and history. Whether you\'re drawn to the royal charm of Jaipur, the spiritual aura of Varanasi, the rugged beauty of Ladakh, the religious significance of Amritsar, or the tranquility of Rishikesh, North India offers a wealth of experiences that will leave you enchanted. It\'s time to embark on a journey through this captivating region, where you\'ll encounter the richness of culture, spirituality, and natural wonders at every turn. Don\'t miss the opportunity to discover the cultural and natural treasures of North India, a land of endless exploration and enchantment.</div>   ','\"North India Uncovered: A Journey through Culture, Heritage, and Majestic Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(4,'East African Islands','East African Islands','4_1695205379.jpg','4_1695205379.jpg','2023-09-20 15:53:01','2021-02-26 12:00:38','0','0',' East African Islands, Indian Ocean, tropical paradise, beach getaways, island culture, travel destination, Zanzibar, Seychelles, Madagascar, Mauritius, Comoros Islands, Indian Ocean resorts, island adventures.','<div> Exploring the East African Islands: A Paradise Waiting to Be Discovered</div><div>Introduction:</div><div>When it comes to dreamy tropical getaways, most travelers immediately think of the Maldives, Seychelles, or Bali. However, nestled in the warm embrace of the Indian Ocean, the East African islands offer a hidden treasure trove of stunning landscapes, rich culture, and unspoiled natural beauty. In this blog, we\'ll take you on a virtual tour of these enchanting islands, inviting you to discover the magic of this often-overlooked region.</div><div>Zanzibar: The Spice Island</div><div>Zanzibar, an archipelago off the coast of Tanzania, is often referred to as the \"Spice Island\" due to its rich history of trading in spices like cloves, cinnamon, and nutmeg. Visitors are drawn to its idyllic beaches, historic Stone Town, and vibrant culture. The old town, a UNESCO World Heritage Site, is a maze of narrow alleys, bustling markets, and beautifully carved wooden doors. Zanzibar also offers fantastic opportunities for snorkeling and diving in its pristine coral reefs.</div><div>Madagascar: A Biodiversity Hotspot</div><div>Madagascar, the fourth-largest island in the world, is a biodiversity hotspot unlike any other. With unique wildlife such as lemurs, chameleons, and baobab trees, it\'s a paradise for nature enthusiasts. Explore the Avenue of the Baobabs, dive into lush rainforests, or relax on the beautiful beaches of Nosy Be. Don\'t forget to try the local cuisine, which blends African, Asian, and French influences.</div><div>Comoros: The Perfumed Islands</div><div>The Comoros, a relatively unknown gem, consists of four volcanic islands. Often referred to as the \"Perfumed Islands\" due to their fragrant plantations, they are a paradise for hikers and adventurers. Explore the rugged landscapes, hike up active volcanoes, and discover the hidden waterfalls and crater lakes. The warm, turquoise waters are perfect for snorkeling and diving.</div><div>Seychelles: A Dreamer\'s Paradise</div><div>Seychelles, with its surreal beaches and lush jungles, needs no introduction. This archipelago of 115 islands in the Indian Ocean is synonymous with luxury and romance. Visit the world-famous Anse Lazio Beach on Praslin Island, explore the coral reefs of Aldabra Atoll, or simply relax in a beachfront villa.</div><div>Mauritius: A Melting Pot of Cultures</div><div>Mauritius is an island nation where cultures and traditions from Asia, Africa, Europe, and the Middle East coexist harmoniously. Enjoy the bustling markets of Port Louis, hike to the summit of Le Morne Brabant for breathtaking views, and take a dip in the crystal-clear waters of Blue Bay Marine Park. Don\'t forget to try a delicious seafood curry or a famous dodo burger!</div><div>Conclusion:</div><div>The East African islands, with their diverse landscapes, vibrant cultures, and warm hospitality, remain a well-kept secret for many travelers. Whether you seek adventure, relaxation, or a taste of local cuisine, these islands have something to offer everyone. So, why not consider exploring this paradise waiting to be discovered on your next vacation? You\'ll not only be treated to stunning natural beauty but also a deeper understanding of the rich history and culture of this unique region.</div>  ','\"East African Islands: Paradise Found in the Indian Ocean\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(5,'South India','South India','5_1695296301.jpg','5_1695296301.jpg','2023-09-21 17:08:23','2021-02-26 12:00:38','0','0',' South India, heritage, culture, travel destination, South Indian states, historical landmarks, natural beauty, South Indian traditions, diverse cultures, Southern India, cultural tapestry.','<div>: Exploring the Rich Heritage and Natural Beauty of a Cultural Haven</div><div><br></div><div>Introduction:</div><div>South India, a region renowned for its diverse cultures, ancient traditions, and breathtaking landscapes, is a traveler\'s delight waiting to be uncovered. From the historic temples of Tamil Nadu to the serene backwaters of Kerala, this part of India offers an extraordinary tapestry of experiences. In this blog, we\'ll take you on a virtual journey through South India, inviting you to delve into the rich heritage and natural beauty that define this culturally vibrant and captivating region.</div><div><br></div><div>Chennai, Tamil Nadu: Gateway to South India</div><div>Chennai, the capital of Tamil Nadu, is a city where tradition meets modernity. Explore the historic Kapaleeshwarar Temple, visit the vibrant Marina Beach, and relish the flavors of South Indian cuisine, including idlis and dosas.</div><div><br></div><div>Mysore, Karnataka: The City of Palaces</div><div>Mysore is famous for its opulent palaces, including the magnificent Mysore Palace. Discover the vibrant Devaraja Market, explore the Chamundi Hill and its temple, and immerse yourself in the city\'s royal history.</div><div><br></div><div>Kerala: The Backwater Paradise</div><div>Kerala, often referred to as \"God\'s Own Country,\" is known for its tranquil backwaters, lush greenery, and Ayurvedic traditions. Cruise the serene backwaters of Alleppey, explore the hill stations of Munnar, and experience a rejuvenating Ayurvedic massage.</div><div><br></div><div>Puducherry: A Touch of French Charm</div><div>Puducherry, a former French colony, offers a unique blend of Indian and French cultures. Stroll through the picturesque French Quarter, visit the Sri Aurobindo Ashram, and relax on the pristine beaches.</div><div><br></div><div>Hampi, Karnataka: The Ancient Ruins</div><div>Hampi is a UNESCO World Heritage Site known for its surreal boulder-strewn landscapes and historic ruins. Explore the Virupaksha Temple, discover the ancient city\'s remnants, and marvel at the stone chariot of the Vittala Temple.</div><div><br></div><div>Conclusion:</div><div>South India, with its rich heritage, diverse traditions, and captivating landscapes, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the bustling streets of Chennai, the regal charm of Mysore, the backwater serenity of Kerala, the French influences of Puducherry, or the ancient ruins of Hampi, South India offers a wealth of experiences that will immerse you in its enchanting world. It\'s time to embark on a journey through this culturally vibrant region, where you\'ll be captivated by the beauty, history, and warm hospitality that await at every turn. Don\'t miss the opportunity to discover the rich heritage and natural beauty of South India, a land of endless exploration and enchantment.</div>  ',' \"South India Uncovered: A Voyage through Heritage, Culture, and Natural Splendors\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(6,'Southern Africa','Southern Africa','6_1695296536.jpg','6_1695296536.jpg','2023-09-21 17:12:19','2021-02-26 18:45:49','0','0','Southern Africa, wildlife, culture, travel destination, Southern African countries, safari adventures, stunning landscapes, Southern African traditions, cultural diversity, Southern Africa exploration, cultural tapestry.','<div>Southern Africa, a region characterized by its stunning landscapes, abundant wildlife, and vibrant cultures, offers a captivating journey for travelers seeking adventure and cultural immersion. From the iconic safaris of South Africa to the cultural richness of Zimbabwe and the natural wonders of Namibia, this part of the continent is a treasure trove of experiences. In this blog, we\'ll take you on a virtual journey through Southern Africa, inviting you to explore the diverse beauty and cultural riches that define this dynamic and enchanting region.</div><div><br></div><div>Cape Town, South Africa: The Mother City</div><div>Cape Town, often hailed as one of the world\'s most beautiful cities, offers a stunning blend of nature and culture. Visit Table Mountain, explore the historic Robben Island, and take a scenic drive along Chapman\'s Peak Drive.</div><div><br></div><div>Victoria Falls, Zambia/Zimbabwe: The Smoke That Thunders</div><div>Victoria Falls, one of the Seven Natural Wonders of the World, is a breathtaking spectacle. Witness the mighty Zambezi River plunge into the Batoka Gorge, embark on a thrilling helicopter ride, and explore the surrounding national parks.</div><div><br></div><div>Namib Desert, Namibia: The World\'s Oldest Desert</div><div>The Namib Desert is known for its otherworldly landscapes, including the towering dunes of Sossusvlei. Climb the iconic Dune 45, explore the eerie Deadvlei, and marvel at the ancient Welwitschia plants.</div><div><br></div><div>Maasai Mara, Kenya/Tanzania: The Great Migration</div><div>The Maasai Mara National Reserve is famous for the Great Migration, where millions of wildebeest and zebras cross the Mara River. Join a safari to witness this natural spectacle and encounter the Big Five.</div><div><br></div><div>Okavango Delta, Botswana: The Oasis in the Desert</div><div>The Okavango Delta is a unique inland river delta and a UNESCO World Heritage Site. Explore the waterways by traditional mokoro canoes, go on game drives, and spot diverse wildlife, including elephants and hippos.</div><div><br></div><div>Conclusion:</div><div>Southern Africa, with its diverse beauty, abundant wildlife, and vibrant cultures, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the natural wonders of Cape Town, the awe-inspiring Victoria Falls, the surreal landscapes of the Namib Desert, the wildlife spectacles of the Maasai Mara, or the pristine wilderness of the Okavango Delta, Southern Africa offers a wealth of experiences that will immerse you in its enchanting world. It\'s time to embark on a journey through this dynamic region, where you\'ll be captivated by the beauty, culture, and warm hospitality that await at every turn. Don\'t miss the opportunity to discover the diverse beauty and cultural riches of Southern Africa, a land of endless exploration and enchantment.</div>  ',' \"Southern Africa Explored: A Safari through Wildlife, Culture, and Stunning Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(7,'Eastern Europe','Eastern Europe','7_1695208317.jpg','7_1695208317.jpg','2023-09-20 16:41:58','2021-03-04 14:34:18','0','0',' Eastern Europe, history, culture, travel destination, Eastern European countries, heritage sites, cultural diversity, scenic landscapes, Central and Eastern Europe, historical landmarks, Eastern European traditions, natural beauty.\r\n\r\n\r\n\r\n\r\nUser\r\nWrite same for region Eurasia\r\nChatGPT\r\nMeta Title: \"Eurasia Explored: Where East Meets West in a Tapestry of Diversity\"\r\n\r\nMeta Description: \"Embark on a captivating journey through Eurasia, where ancient traditions, diverse cultures, and vast landscapes create a unique blend of East and West. Discover the richness of this vast and diverse region.\"\r\n\r\nMeta Keywords: Eurasia, East meets West, diverse cultures, travel destination, Eurasian countries, historical heritage, cultural diversity, scenic landscapes, Eurasian traditions, crossroads of civilizations, Eurasian history, cultural tapestry.','<div> Eastern Europe: Unveiling the Cultural and Natural Wonders of a Hidden Gem</div><div>Introduction:</div><div>When travelers think of Europe, iconic cities like Paris, Rome, and Barcelona often steal the spotlight. However, Eastern Europe is a hidden gem that offers a rich tapestry of history, culture, and stunning landscapes waiting to be discovered. In this blog, we\'ll take you on a virtual journey through Eastern Europe, inviting you to explore the magic of this lesser-explored part of the continent.</div><div>Prague, Czech Republic: The Fairytale City</div><div>Prague, often called the \"City of a Hundred Spires,\" is a living fairytale. Wander through the enchanting streets of Old Town, cross the iconic Charles Bridge, and explore the historic Prague Castle. The city\'s rich history, stunning architecture, and lively culture make it a must-visit destination in Eastern Europe.</div><div>Budapest, Hungary: The Pearl of the Danube</div><div>Budapest, split by the majestic Danube River, is known for its thermal baths, grand palaces, and vibrant nightlife. Soak in the healing waters of the Széchenyi Thermal Bath, take a cruise along the Danube, and savor traditional Hungarian dishes like goulash.</div><div>Krakow, Poland: A Historical Gem</div><div>Krakow is a city steeped in history, with a beautifully preserved medieval old town and the somber reminder of Auschwitz nearby. Explore the stunning Wawel Castle, visit the Cloth Hall, and sample pierogi (Polish dumplings) at a local eatery.</div><div>Transylvania, Romania: A Land of Myths and Legends</div><div>Transylvania, known for its connection to Dracula, is a region of stunning natural beauty and historical significance. Explore the medieval towns of Sibiu and Brasov, hike through the Carpathian Mountains, and visit Bran Castle, often associated with the Dracula legend.</div><div>Dubrovnik, Croatia: The Jewel of the Adriatic</div><div>Dubrovnik, with its picturesque old town surrounded by medieval walls, is a coastal gem. Walk along the city walls for panoramic views of the Adriatic Sea, explore the historic streets, and indulge in fresh seafood at a seaside restaurant.</div><div>Conclusion:</div><div>Eastern Europe, with its diverse cultures, rich history, and breathtaking landscapes, remains an underrated destination for many travelers. Whether you\'re seeking a cultural immersion, historical exploration, or simply a taste of traditional cuisine, this region has something to offer everyone. It\'s time to unveil the wonders of Eastern Europe on your next adventure, where you\'ll be captivated by its charm, heritage, and natural beauty. Don\'t miss out on this hidden gem in the heart of Europe!</div>   ',' \"Eastern Europe Uncovered: A Tapestry of History, Culture, and Natural Charms\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(8,'Northeast India','Northeast India','8_1695210695.jpg','8_1695210695.jpg','2023-09-20 17:21:37','2021-04-12 18:20:45','0','0',' Northeast India, culture, biodiversity, travel destination, northeastern states, natural landscapes, tribal heritage, Northeastern traditions, diverse cultures, northeastern India, cultural tapestry.','<div>Northeast India: Exploring the Uncharted Beauty of a Hidden Gem</div><div><br></div><div>Introduction:</div><div>Northeast India, a lesser-traveled and often overlooked region, is a hidden gem waiting to be discovered by adventurous souls and nature enthusiasts. Nestled in the eastern Himalayas, this captivating region is a land of diverse cultures, lush landscapes, and pristine wildlife. In this blog, we\'ll take you on a virtual journey through Northeast India, inviting you to explore the uncharted beauty and unique experiences it has to offer.</div><div><br></div><div>Meghalaya: The Abode of Clouds</div><div>Meghalaya, known as the \"Abode of Clouds,\" offers lush green landscapes, breathtaking waterfalls, and unique living root bridges. Trek to the living root bridges in Cherrapunji, visit the serene Umiam Lake, and explore the Mawlynnong village, often hailed as the cleanest village in Asia.</div><div><br></div><div>Assam: Land of Tea and Tigers</div><div>Assam is famous for its tea gardens, wildlife, and vibrant culture. Take a tea plantation tour in Jorhat or Dibrugarh, go on a wildlife safari in Kaziranga National Park to spot the one-horned rhinoceros, and savor the flavors of Assamese cuisine.</div><div><br></div><div>Arunachal Pradesh: The Land of the Dawn-Lit Mountains</div><div>Arunachal Pradesh boasts stunning landscapes, diverse tribes, and rich traditions. Explore the Tawang Monastery, trek through the Eaglenest Wildlife Sanctuary, and immerse yourself in the local festivals and handicrafts.</div><div><br></div><div>Nagaland: The Hornbill Paradise</div><div>Nagaland, known for its colorful Hornbill Festival, offers a glimpse into the tribal traditions and customs of the region. Attend the Hornbill Festival in Kohima, hike to the picturesque Dzukou Valley, and interact with the indigenous Naga tribes.</div><div><br></div><div>Sikkim: Himalayan Wonderland</div><div>Sikkim, with its snow-capped peaks and serene monasteries, is a paradise for nature and adventure lovers. Visit the monasteries of Gangtok, go trekking in the Yumthang Valley, and marvel at the pristine beauty of Gurudongmar Lake.</div><div><br></div><div>Conclusion:</div><div>Northeast India, with its unspoiled beauty, rich culture, and warm hospitality, is a region that promises unique and unforgettable experiences for travelers. Whether you\'re seeking the lush landscapes of Meghalaya, the tea-scented hills of Assam, the rugged mountains of Arunachal Pradesh, the vibrant traditions of Nagaland, or the Himalayan wonders of Sikkim, Northeast India offers a world of exploration. It\'s time to embark on a journey through this hidden gem, where you\'ll be captivated by the diverse cultures, breathtaking landscapes, and pristine natural beauty that await at every turn. Don\'t miss the opportunity to discover the uncharted beauty of Northeast India, a land of endless adventure and enchantment.</div>  ',' \"Northeast India Unveiled: An Odyssey through Culture, Biodiversity, and Enchanting Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(9,'West India','West India','9_1695297676.jpg','9_1695297676.jpg','2023-09-21 17:31:19','2021-04-13 17:27:07','0','0',' West India, culture, history, travel destination, Western Indian states, historical landmarks, exquisite landscapes, Western Indian traditions, cultural diversity, Western India exploration, cultural tapestry.','<div>West India, a vibrant and diverse region of the country, is known for its rich cultural heritage, historical significance, and stunning natural landscapes. From the bustling streets of Mumbai to the tranquil beaches of Goa and the regal palaces of Rajasthan, this part of India offers a kaleidoscope of experiences. In this blog, we\'ll take you on a virtual journey through West India, inviting you to explore the cultural diversity and natural splendor that define this colorful and enchanting region.</div><div><br></div><div>Mumbai, Maharashtra: The City of Dreams</div><div>Mumbai, the financial and entertainment capital of India, is a city that never sleeps. Explore the Gateway of India, stroll along Marine Drive, and delve into the vibrant street food culture at Chowpatty Beach.</div><div><br></div><div>Rajasthan: The Land of Royalty</div><div>Rajasthan, with its majestic palaces, vibrant festivals, and desert landscapes, is a treasure trove of heritage. Visit the Amber Fort in Jaipur, wander through the Blue City of Jodhpur, and experience the romantic charm of Udaipur.</div><div><br></div><div>Goa: The Beach Paradise</div><div>Goa is synonymous with sun, sand, and sea. Relax on the pristine beaches of Palolem and Anjuna, explore the historic churches of Old Goa, and indulge in the lively nightlife and seafood cuisine.</div><div><br></div><div>Gujarat: The Cradle of History and Culture</div><div>Gujarat offers a blend of history and culture, with attractions like the Rani Ki Vav stepwell in Patan and the Sabarmati Ashram in Ahmedabad. Don\'t miss the colorful celebrations of the Navratri festival.</div><div><br></div><div>Pune, Maharashtra: The Cultural Capital</div><div>Pune, known as the \"Oxford of the East,\" is a city of education and culture. Explore the Aga Khan Palace, visit the Osho International Meditation Resort, and enjoy a leisurely walk in the lush greenery of the University of Pune campus.</div><div><br></div><div>Conclusion:</div><div>West India, with its cultural richness, diverse traditions, and stunning landscapes, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the cosmopolitan vibes of Mumbai, the regal charm of Rajasthan, the beach paradise of Goa, the historical treasures of Gujarat, or the cultural diversity of Pune, West India offers a wealth of experiences that will immerse you in its enchanting world. It\'s time to embark on a journey through this colorful region, where you\'ll be captivated by the beauty, history, and warm hospitality that await at every turn. Don\'t miss the opportunity to discover the cultural diversity and natural splendor of West India, a land of endless exploration and enchantment.</div>  ',' \"West India Explored: A Cultural Sojourn through History, Diversity, and Exquisite Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(10,'Eurasia','Eurasia','10_1695207991.jpg','10_1695207991.jpg','2023-09-20 16:37:43','2021-04-15 15:44:05','0','0',' Eurasia, East meets West, diverse cultures, travel destination, Eurasian countries, historical heritage, cultural diversity, scenic landscapes, Eurasian traditions, crossroads of civilizations, Eurasian history, cultural tapestry.','<div>&nbsp;Eurasia: Unveiling the Diverse Beauty of a Vast Continent</div><div>Introduction:</div><div>Eurasia, the world\'s largest landmass, stretches from the Atlantic Ocean in the west to the Pacific Ocean in the east, offering an incredibly diverse range of cultures, landscapes, and experiences. While Europe and Asia are often explored individually, the Eurasian continent as a whole remains a fascinating and lesser-explored destination. In this blog, we\'ll embark on a virtual journey across Eurasia, inviting you to discover the enchanting beauty and unique experiences it has to offer.</div><div>Istanbul, Turkey: Where East Meets West</div><div>Istanbul, straddling the Bosporus Strait, is a city where East meets West, both geographically and culturally. Explore the historic Hagia Sophia and Blue Mosque, wander through the Grand Bazaar, and take a scenic boat ride along the Bosporus to soak in the city\'s rich history and diverse heritage.</div><div>Ural Mountains, Russia: The Natural Divide</div><div>The Ural Mountains, often considered the natural divide between Europe and Asia, offer stunning wilderness and outdoor adventure opportunities. Hike through pristine forests, visit the unique Taganay National Park, and experience the beauty of Lake Baikal, the world\'s deepest freshwater lake.</div><div>Silk Road, Central Asia: A Journey Through History</div><div>The ancient Silk Road traversed Central Asia, connecting the East and West. Explore the historic cities of Samarkand and Bukhara in Uzbekistan, marvel at the architectural wonders of the Registan Square, and trace the footsteps of traders and explorers.</div><div>Mongolia: Land of Vast Steppes</div><div>Mongolia, with its vast steppes and nomadic traditions, offers a unique cultural experience. Witness the breathtaking beauty of the Gobi Desert, stay in traditional gers (yurts), and ride horses across the open plains while learning about the nomadic way of life.</div><div>Vladivostok, Russia: The Eastern Gateway</div><div>Vladivostok, a port city on Russia\'s eastern coast, is a gateway to the Far East and offers a blend of Russian and Asian cultures. Explore the city\'s vibrant street art scene, visit the Russky Bridge, and take a ferry to nearby Russky Island for nature and adventure.</div><div>Conclusion:</div><div>Eurasia, with its vastness, diverse cultures, and stunning landscapes, presents an opportunity for travelers to embark on an unforgettable journey across continents. Whether you\'re drawn to the historic cities, natural wonders, or unique cultural experiences, Eurasia has something to offer every type of explorer. It\'s time to unveil the beauty and diversity of this vast continent on your next adventure, where you\'ll be captivated by the rich tapestry of history, culture, and natural wonders that Eurasia has to offer. Don\'t miss the chance to explore this fascinating region that bridges East and West.</div>   ',' \"Eurasia Explored: Where East Meets West in a Tapestry of Diversity\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(11,'Central Asia','Central Asia','11_1695382313.jpg','11_1695382313.jpg','2023-09-22 17:01:53','2021-04-15 15:44:05','0','0','central Asia, Silk Road, cultural diversity, historical landmarks, natural wonders, Central Asian countries, travel destination, Eurasia, Silk Road history, cultural crossroads, scenic landscapes, ancient civilizations.','<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Central Asia is a vast and historically rich region located at the\r\nheart of the Asian continent. Comprising countries such as Kazakhstan,\r\nKyrgyzstan, Tajikistan, Turkmenistan, and Uzbekistan, Central Asia has long\r\nbeen a crossroads of cultures, trade, and civilizations. With its stunning\r\nlandscapes, diverse cultures, and a wealth of historical sites, Central Asia is\r\nbecoming an increasingly popular destination for travelers seeking adventure\r\nand exploration. Here are some must-visit places in this captivating region:<o:p></o:p></span></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Samarkand,\r\n     Uzbekistan</span></b><span lang=\"EN-IN\">: Known as the \"Jewel of the\r\n     Silk Road,\" Samarkand is a city steeped in history and architectural\r\n     beauty. The Registan Square, with its majestic madrasahs and mosques, is a\r\n     UNESCO World Heritage Site and a testament to the city\'s glorious past.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Bukhara,\r\n     Uzbekistan</span></b><span lang=\"EN-IN\">: Another historic gem in\r\n     Uzbekistan, Bukhara boasts well-preserved medieval architecture and a rich\r\n     cultural heritage. Visit the Ark Fortress, the Po-i-Kalyan complex, and\r\n     explore the city\'s labyrinthine streets to get a sense of its history.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Almaty, Kazakhstan</span></b><span lang=\"EN-IN\">: This modern metropolis nestled in the Tien Shan Mountains is\r\n     a hub of culture and commerce. Enjoy the city\'s parks, like Kok Tobe, and\r\n     explore nearby natural wonders such as Charyn Canyon and Big Almaty Lake.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Astana/Nur-Sultan,\r\n     Kazakhstan</span></b><span lang=\"EN-IN\">: The capital of Kazakhstan is a\r\n     futuristic city with stunning modern architecture. The Bayterek Tower and\r\n     the Khan Shatyr Entertainment Center are iconic landmarks that offer\r\n     panoramic views of the city.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Tashkent,\r\n     Uzbekistan</span></b><span lang=\"EN-IN\">: Uzbekistan\'s capital is a blend of\r\n     tradition and modernity. Visit the Chorsu Bazaar, the Khast-Imam Complex,\r\n     and the Amir Timur Museum to learn about the country\'s history and\r\n     culture.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Bishkek,\r\n     Kyrgyzstan</span></b><span lang=\"EN-IN\">: Bishkek is the gateway to\r\n     Kyrgyzstan\'s natural beauty. Explore Ala-Too Square, visit the State\r\n     Historical Museum, and then venture into the surrounding mountains for\r\n     trekking, hiking, and skiing.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Osh, Kyrgyzstan</span></b><span lang=\"EN-IN\">: Osh is one of the oldest cities in Central Asia and a hub of\r\n     Kyrgyz culture. The Sulayman Mountain and Osh Bazaar are must-see\r\n     attractions.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Dushanbe,\r\n     Tajikistan</span></b><span lang=\"EN-IN\">: Tajikistan\'s capital is a city of\r\n     parks and museums. Visit the National Museum of Tajikistan, the Rudaki\r\n     Park, and the Ismoil Somoni Monument.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Khiva, Uzbekistan</span></b><span lang=\"EN-IN\">: Step back in time as you explore the ancient walled city of\r\n     Khiva. It\'s like stepping into a living museum with its well-preserved\r\n     architecture and bustling bazaars.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Turkmenistan\'s\r\n     Ancient Cities</span></b><span lang=\"EN-IN\">: While Turkmenistan is known\r\n     for its somewhat closed-off nature, it boasts intriguing historical sites\r\n     like Merv and Gonur Depe, which were once part of the Silk Road.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Pamir Highway,\r\n     Tajikistan</span></b><span lang=\"EN-IN\">: For adventurous souls, the Pamir\r\n     Highway offers breathtaking landscapes, high-altitude adventure, and a\r\n     glimpse into the isolated and unique cultures of the Pamiri people.<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;mso-list:\r\n     l0 level1 lfo1;tab-stops:list .5in\"><b><span lang=\"EN-IN\">Silk Road Treks</span></b><span lang=\"EN-IN\">: Central Asia\'s portion of the ancient Silk Road offers\r\n     countless trekking opportunities. Explore the scenic trails around Lake\r\n     Issyk-Kul in Kyrgyzstan or hike through the Fann Mountains in Tajikistan\r\n     for a truly immersive experience.<o:p></o:p></span></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Central Asia\'s appeal lies not only in its historical significance\r\nbut also in its untouched natural beauty and the warmth of its people. As you\r\ntravel through this region, you\'ll discover the rich tapestry of cultures,\r\ntaste delicious cuisine, and witness the stunning landscapes that make Central\r\nAsia a hidden gem for intrepid travelers. Be sure to check visa requirements\r\nand travel advisories before planning your journey to this captivating part of\r\nthe world.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>  ',' \"Explore Central Asia: A Cultural Crossroads and Natural Wonder\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(12,'Northern Africa','Northern Africa','12_1695294693.jpg','12_1695294693.jpg','2023-09-21 16:41:34','2021-11-15 21:08:30','0','0',' \"Embark on a captivating journey through Northern Africa, where ancient civilizations, rich cultures, and stunning desert landscapes converge. Explore the timeless allure of this diverse and historically significant region.\"','<div>Northern Africa: Exploring the Timeless Beauty of a Continent\'s Gateway</div><div><br></div><div>Introduction:</div><div>Northern Africa, a region steeped in history and culture, serves as a captivating gateway between Africa, Europe, and the Middle East. Its ancient cities, vast deserts, and unique traditions have drawn travelers for centuries. In this blog, we\'ll take you on a virtual journey through Northern Africa, inviting you to explore the timeless beauty and rich experiences that await in this enchanting part of the world.</div><div><br></div><div>Marrakech, Morocco: The Red City</div><div>Marrakech, often called the \"Red City,\" is a vibrant tapestry of colors, sounds, and aromas. Explore the bustling medina, visit the Bahia Palace, and lose yourself in the sensory delights of Jardin Majorelle. Don\'t forget to sample Moroccan cuisine at a local riad.</div><div><br></div><div>Cairo, Egypt: The Land of Pharaohs</div><div>Cairo, the capital of Egypt, is a city where ancient history meets modernity. Gaze upon the awe-inspiring Pyramids of Giza, visit the Egyptian Museum, and wander through the historic streets of Old Cairo.</div><div><br></div><div>Sahara Desert: A Sea of Sand</div><div>The Sahara Desert, the world\'s largest hot desert, spans across multiple Northern African countries. Embark on a desert safari, ride a camel over sand dunes, and camp under the star-studded desert sky for an unforgettable experience.</div><div><br></div><div>Tunis, Tunisia: A Mediterranean Gem</div><div>Tunis, the capital of Tunisia, offers a blend of Mediterranean charm and Arab heritage. Explore the historic Medina of Tunis, visit the ancient ruins of Carthage, and relax on the beaches of Hammamet.</div><div><br></div><div>Fez, Morocco: The Cultural Heart</div><div>Fez is renowned for its well-preserved medieval architecture and vibrant cultural scene. Stroll through the winding streets of the Medina of Fez, visit the Bou Inania Madrasa, and soak in the spiritual atmosphere of the city.</div><div><br></div><div>Conclusion:</div><div>Northern Africa, with its timeless beauty, rich history, and diverse cultures, remains a captivating region for travelers seeking to immerse themselves in its allure. Whether you\'re drawn to the vibrant markets of Marrakech, the ancient wonders of Cairo, the vast expanse of the Sahara Desert, the Mediterranean charm of Tunis, or the cultural heart of Fez, Northern Africa offers a wealth of experiences that will transport you to another world. It\'s time to embark on a journey through this enchanting region, where you\'ll be enchanted by the history, culture, and natural wonders that await at every turn. Don\'t miss the opportunity to discover the timeless beauty of Northern Africa, a land of endless exploration and enchantment.</div>  ',' \"Northern Africa Explored: A Journey through History, Culture, and Desert Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(13,'Orient','Orient','13_1695295182.jpg','13_1695295182.jpg','2023-09-21 16:49:45','2022-03-15 16:39:23','0','0',' \"Embark on an enchanting journey through the Orient, where ancient history, diverse cultures, and exotic landscapes intertwine to create a captivating tapestry. Explore the timeless allure of this evocative and mystic region.\"','<div>The Orient: Unveiling the Rich Tapestry of Culture and Tradition</div><div><br></div><div>Introduction:</div><div>\"The Orient,\" a term historically used to refer to the regions of Asia and the Middle East, is a vast and diverse expanse of the world that has captured the imagination of travelers for centuries. From the ancient wonders of China to the vibrant markets of the Middle East, the Orient is a realm where history, culture, and tradition intertwine. In this blog, we\'ll take you on a virtual journey through the Orient, inviting you to explore the rich tapestry of culture and tradition that defines this captivating part of the world.</div><div><br></div><div>Beijing, China: The Imperial Capital</div><div>Beijing, China\'s capital, is a city where ancient history meets modernity. Visit the iconic Great Wall, explore the Forbidden City, and wander through the historic hutongs (narrow alleyways) to discover Beijing\'s rich heritage.</div><div><br></div><div>Kyoto, Japan: The Land of Geishas and Temples</div><div>Kyoto, with its exquisite temples, traditional tea houses, and geisha culture, is a window into Japan\'s past. Visit the stunning Kinkaku-ji (Golden Pavilion), experience a traditional tea ceremony, and explore the enchanting Arashiyama Bamboo Grove.</div><div><br></div><div>Istanbul, Turkey: A Bridge Between Continents</div><div>Istanbul, straddling two continents, is a city where East meets West. Explore the Hagia Sophia, the Blue Mosque, and the bustling Grand Bazaar, and savor the flavors of Turkish cuisine.</div><div><br></div><div>Dubai, UAE: A Modern Oasis</div><div>Dubai, a city of superlatives, boasts towering skyscrapers, luxurious malls, and artificial islands. Ascend to the top of the Burj Khalifa, experience the extravagance of the Palm Jumeirah, and enjoy the vibrant culture of the old souks along the Dubai Creek.</div><div><br></div><div>Marrakech, Morocco: The Red City</div><div>Marrakech, often called the \"Red City,\" is a vibrant tapestry of colors, sounds, and aromas. Explore the bustling medina, visit the Bahia Palace, and lose yourself in the sensory delights of Jardin Majorelle. Don\'t forget to sample Moroccan cuisine at a local riad.</div><div><br></div><div>Conclusion:</div><div>The Orient, with its rich history, diverse cultures, and captivating traditions, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the imperial grandeur of Beijing, the timeless elegance of Kyoto, the cultural fusion of Istanbul, the modern marvels of Dubai, or the sensory extravaganza of Marrakech, the Orient offers a wealth of experiences that will transport you to another world. It\'s time to embark on a journey through this enchanting part of the world, where you\'ll be enchanted by the history, culture, and traditions that await at every turn. Don\'t miss the opportunity to discover the rich tapestry of the Orient, a land of endless exploration and enchantment.</div>  ',' \"The Orient Revealed: A Voyage through Time, Culture, and Exotic Landscapes\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(14,'South East Asia','South East Asia','14_1695296075.jpg','14_1695296075.jpg','2023-09-21 17:04:35','2022-03-15 16:39:23','0','0',' South East Asia, culture, natural beauty, travel destination, South East Asian countries, historical landmarks, exotic landscapes, South East Asian traditions, cultural diversity, Southeast Asia, cultural tapestry.','<div>South East Asia: Exploring the Cultural Riches and Natural Beauty of a Vibrant Region</div><div><br></div><div>Introduction:</div><div>South East Asia, a region known for its diverse cultures, lush landscapes, and warm hospitality, is a traveler\'s paradise waiting to be explored. From the bustling markets of Bangkok to the tranquil beaches of Bali, this part of the world offers a remarkable tapestry of experiences. In this blog, we\'ll take you on a virtual journey through South East Asia, inviting you to discover the cultural riches and natural beauty that define this vibrant and enchanting region.</div><div><br></div><div>Bangkok, Thailand: The City of Angels</div><div>Bangkok, the capital of Thailand, is a city that seamlessly blends tradition and modernity. Visit the Grand Palace, explore the bustling markets of Chatuchak and Damnoen Saduak, and savor the delectable street food along Khao San Road.</div><div><br></div><div>Halong Bay, Vietnam: The Bay of Descending Dragons</div><div>Halong Bay is a UNESCO World Heritage Site known for its emerald waters and thousands of limestone karsts. Embark on a cruise, kayak through hidden caves, and watch the sun set over this breathtaking natural wonder.</div><div><br></div><div>Angkor Wat, Cambodia: The Temple City</div><div>Angkor Wat, located in Siem Reap, is the largest religious monument in the world and a testament to Khmer architecture. Explore the ancient temple complex, including Ta Prohm and Bayon, and witness the sunrise over Angkor Wat.</div><div><br></div><div>Bali, Indonesia: The Island of Gods</div><div>Bali, with its lush rice terraces, vibrant culture, and pristine beaches, is a tropical paradise. Visit the Ubud Monkey Forest, hike Mount Batur for a sunrise view, and relax on the shores of Seminyak or Uluwatu.</div><div><br></div><div>Luang Prabang, Laos: The Jewel of the Mekong</div><div>Luang Prabang, nestled between the Mekong River and lush hills, is a UNESCO World Heritage-listed town. Explore the historic temples, experience the almsgiving ceremony, and visit the Kuang Si Waterfalls for a refreshing dip.</div><div><br></div><div>Conclusion:</div><div>South East Asia, with its cultural riches, natural beauty, and diverse traditions, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the bustling streets of Bangkok, the mystical temples of Angkor Wat, the serene waters of Halong Bay, the tropical paradise of Bali, or the tranquil charm of Luang Prabang, South East Asia offers a wealth of experiences that will immerse you in its enchanting world. It\'s time to embark on a journey through this vibrant region, where you\'ll be captivated by the beauty, culture, and warm hospitality that await at every turn. Don\'t miss the opportunity to discover the cultural riches and natural beauty of South East Asia, a land of endless exploration and enchantment.</div>  ',' \"South East Asia Explored: A Tapestry of Cultures, Exotic Beauty, and Timeless Charm\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(15,'Shimla','Shimla','15_1695295540.jpg','15_1695295540.jpg','2023-09-21 16:55:41','2022-09-22 15:21:37','0','0','Shimla, Himachal Pradesh, hill station, colonial charm, Himalayan landscapes, travel destination, Shimla attractions, cultural vibrancy, Shimla tourism, scenic beauty.','<div> Shimla: Exploring the Queen of Hill Stations</div><div><br></div><div>Introduction:</div><div>Shimla, often referred to as the \"Queen of Hill Stations,\" is a charming and picturesque destination nestled in the foothills of the Himalayas. Located in the northern state of Himachal Pradesh, India, Shimla has been a favorite retreat for travelers seeking respite from the hustle and bustle of city life. In this blog, we\'ll take you on a virtual journey through Shimla, inviting you to explore the serene beauty and unique experiences that define this enchanting hill station.</div><div><br></div><div>The Ridge: The Heart of Shimla</div><div>The Ridge is the central hub of Shimla, offering panoramic views of the surrounding mountains. Take a leisurely stroll, enjoy street performances, and admire the neo-Gothic architecture of the Christ Church. It\'s the perfect place to soak in the beauty of Shimla.</div><div><br></div><div>Mall Road: Shopping and Dining</div><div>Mall Road is Shimla\'s commercial and social center, lined with shops selling handicrafts, woollen garments, and local souvenirs. Treat yourself to local Himachali cuisine at the charming cafes and restaurants along this bustling promenade.</div><div><br></div><div>The Scandal Point: A Historical Landmark</div><div>The Scandal Point, located on Mall Road, is a famous spot with an interesting story. It is said that the Maharaja of Patiala eloped with the British Viceroy\'s daughter from this point, causing a scandal. Today, it\'s a popular meeting spot with spectacular views.</div><div><br></div><div>Jakhoo Temple: The Hanuman Connection</div><div>Perched atop Jakhoo Hill, the Jakhoo Temple is dedicated to Lord Hanuman and offers stunning vistas of Shimla. To reach the temple, you can embark on a short trek through lush forests, and don\'t be surprised if you encounter friendly monkeys along the way.</div><div><br></div><div>Toy Train Ride: A Scenic Delight</div><div>Experience the joy of a toy train ride on the Shimla-Kalka Railway, a UNESCO World Heritage Site. This narrow-gauge railway offers breathtaking views of the Himalayas as it winds through tunnels, bridges, and lush green valleys.</div><div><br></div><div>Conclusion:</div><div>Shimla, with its serene landscapes, colonial-era architecture, and vibrant culture, remains a timeless destination for travelers seeking to escape to the hills. Whether you\'re drawn to the charming atmosphere of The Ridge, the shopping and dining experiences on Mall Road, the historical intrigue of The Scandal Point, the spiritual serenity of Jakhoo Temple, or the scenic delights of a toy train ride, Shimla offers a wealth of experiences that will rejuvenate your spirit. It\'s time to embark on a journey to the \"Queen of Hill Stations,\" where you\'ll be enchanted by the beauty, history, and culture that await at every turn. Don\'t miss the opportunity to discover the tranquil charm of Shimla, a Himalayan haven that continues to captivate travelers from around the world.</div>  ','\"Shimla: The Enchanting Hill Station of Himachal Pradesh\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(16,'Western Europe','Western Europe','16_1695298008.jpg','16_1695298008.jpg','2023-09-21 17:36:49','2023-02-08 16:22:27','0','0','Western Europe, culture, history, travel destination, Western European countries, historical landmarks, timeless charm, Western European traditions, cultural diversity, Western Europe exploration, cultural tapestry.','<div> Western Europe: Exploring the Timeless Elegance and Cultural Riches of a Historic Region</div><div><br></div><div>Introduction:</div><div>Western Europe, a region steeped in history, art, and diverse cultures, is a traveler\'s dream come true. From the iconic landmarks of Paris to the picturesque villages of the Swiss Alps and the ancient ruins of Rome, this part of the world offers an unparalleled blend of experiences. In this blog, we\'ll take you on a virtual journey through Western Europe, inviting you to explore the timeless elegance and cultural riches that define this historic and enchanting region.</div><div><br></div><div>Paris, France: The City of Love</div><div>Paris, often called the \"City of Love,\" is renowned for its iconic landmarks, including the Eiffel Tower, Louvre Museum, and Notre-Dame Cathedral. Stroll along the Seine River, savor croissants at charming cafés, and immerse yourself in the world of art and fashion.</div><div><br></div><div>Rome, Italy: The Eternal City</div><div>Rome, the \"Eternal City,\" is a living museum of ancient history and architecture. Visit the Colosseum, explore the Roman Forum, and make a wish at the Trevi Fountain. Don\'t forget to indulge in authentic Italian pizza and gelato.</div><div><br></div><div>Barcelona, Spain: A Gaudi Masterpiece</div><div>Barcelona is a city of artistic marvels, with the surreal architecture of Antoni Gaudí. Explore the Sagrada Família, wander through Park Güell, and enjoy tapas and paella at bustling markets.</div><div><br></div><div>Swiss Alps, Switzerland: Nature\'s Playground</div><div>The Swiss Alps offer breathtaking landscapes and outdoor adventures. Ski in Zermatt, hike in the Jungfrau region, and ride the scenic Glacier Express train through picturesque villages.</div><div><br></div><div>Amsterdam, Netherlands: The Venice of the North</div><div>Amsterdam, known for its picturesque canals and historic buildings, is a city of charm and culture. Visit the Anne Frank House, explore the Van Gogh Museum, and take a canal cruise.</div><div><br></div><div>Conclusion:</div><div>Western Europe, with its timeless elegance, artistic treasures, and rich culinary traditions, remains a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the romantic allure of Paris, the ancient wonders of Rome, the artistic wonders of Barcelona, the natural beauty of the Swiss Alps, or the picturesque canals of Amsterdam, Western Europe offers a wealth of experiences that will transport you to another era. It\'s time to embark on a journey through this historic region, where you\'ll be captivated by the beauty, history, and culture that await at every turn. Don\'t miss the opportunity to discover the timeless elegance and cultural riches of Western Europe, a land of endless exploration and enchantment.</div>  ',' \"Western Europe Unveiled: A Cultural Odyssey through History, Diversity, and Timeless Charm\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(17,'East India','East India','17_1695207382.jpg','17_1695207382.jpg','2023-09-20 16:26:23','2023-02-08 16:22:27','0','0',' East India, cultural heritage, natural beauty, travel destination, historical sites, East Indian states, cultural diversity, Assam, West Bengal, Odisha, Bihar, Jharkhand, scenic landscapes, cultural traditions.','<div>Title: East India: Unveiling the Charms of an Enchanting Region</div><div>Introduction:</div><div>When it comes to exploring the diverse and culturally rich landscapes of India, East India often remains a hidden gem. This enchanting region boasts a tapestry of experiences, from the lush Himalayan foothills in the north to the pristine beaches along the Bay of Bengal. In this blog, we\'ll take you on a virtual tour of East India, inviting you to discover the magic of this lesser-known part of the country.</div><div>Sikkim: The Himalayan Shangri-La</div><div>Nestled in the Eastern Himalayas, Sikkim is a paradise for nature lovers and adventure seekers. Explore the vibrant monasteries of Gangtok, trek through lush forests to reach the serene Tsomgo Lake, or witness the majesty of the Kanchenjunga, the third-highest peak in the world. Sikkim offers a unique blend of Tibetan and Indian cultures.</div><div>Assam: Land of Tea Gardens</div><div>Assam is synonymous with tea, and a visit here wouldn\'t be complete without a tour of its sprawling tea gardens. The state is also known for its rich wildlife, including the one-horned rhinoceros at Kaziranga National Park. Enjoy a river cruise on the Brahmaputra, savor delicious Assamese cuisine, and immerse yourself in the vibrant Bihu festivals.</div><div>Odisha: Temples and Beaches</div><div>Odisha, known as the \"Soul of India,\" is a treasure trove of history and culture. Explore the ancient temples of Bhubaneswar, Konark, and Puri, which are renowned for their exquisite architecture. The state\'s long coastline offers pristine beaches, such as Puri Beach, where you can witness the famous Jagannath Rath Yatra.</div><div>West Bengal: Cultural Hub</div><div>Kolkata, the capital of West Bengal, is often called the \"Cultural Capital of India.\" Visit the Victoria Memorial, explore the bustling streets of Park Street, and indulge in delectable Bengali sweets. Travel to the tranquil Sundarbans mangrove forest, home to the elusive Bengal tiger and unique wildlife.</div><div>Andaman and Nicobar Islands: Tropical Paradise</div><div>Located in the Bay of Bengal, the Andaman and Nicobar Islands are a tropical paradise with crystal-clear waters, white sandy beaches, and vibrant coral reefs. Explore the historic Cellular Jail in Port Blair, go scuba diving in Havelock Island, or simply unwind on Radhanagar Beach.</div><div>Conclusion:</div><div>East India, with its diverse landscapes, rich cultural heritage, and warm hospitality, remains a relatively unexplored region for many travelers. Whether you\'re seeking adventure, history, spirituality, or simply a peaceful beach retreat, this part of India has something to offer every kind of explorer. Embark on a journey to East India, and you\'ll not only be captivated by its natural beauty but also immersed in the traditions and cultures that make this region truly unique. It\'s time to unveil the charms of East India on your next adventure!</div>  ',' \"East India Unveiled: A Journey through Cultural Splendors and Natural Beauty\"',NULL,NULL,NULL,NULL,NULL,'1','<script></script>','<script></script>'),(18,'Oceania','Oceania','18_1695294932.jpg','18_1695294932.jpg','2023-09-21 16:45:34','2023-08-05 13:06:57','0','0',' \"Embark on an extraordinary journey through Oceania, where azure waters, diverse cultures, and pristine landscapes come together to create a unique paradise. Explore the captivating beauty and rich heritage of this enchanting region.\"','<div> Oceania: Discovering the Natural Splendor and Cultural Diversity of the Pacific Paradise</div><div><br></div><div>Introduction:</div><div>Oceania, a vast and diverse region comprised of thousands of islands scattered across the Pacific Ocean, is a paradise for nature enthusiasts and adventure seekers. From the pristine beaches of Fiji to the lush rainforests of Papua New Guinea, this part of the world offers an incredible array of landscapes, cultures, and experiences. In this blog, we\'ll take you on a virtual journey through Oceania, inviting you to explore the natural splendor and cultural diversity that define this enchanting region.</div><div><br></div><div>Fiji: The Island Paradise</div><div>Fiji is renowned for its idyllic beaches, crystal-clear waters, and vibrant coral reefs. Dive or snorkel in the Great Astrolabe Reef, relax in a luxurious overwater bungalow, and immerse yourself in Fijian hospitality and culture.</div><div><br></div><div>New Zealand: The Land of the Long White Cloud</div><div>New Zealand is a land of dramatic landscapes, from the geothermal wonders of Rotorua to the breathtaking fjords of Milford Sound. Explore the North Island\'s vibrant cities and the South Island\'s pristine wilderness, and embark on thrilling adventures like bungee jumping and glacier hiking.</div><div><br></div><div>Papua New Guinea: A World of Diversity</div><div>Papua New Guinea is a treasure trove of biodiversity and indigenous cultures. Discover the colorful cultures of the highland tribes, hike the Kokoda Track, and explore the underwater wonders of Kimbe Bay\'s coral reefs.</div><div><br></div><div>French Polynesia: Overwater Bungalow Paradise</div><div>French Polynesia, with its iconic overwater bungalows, is synonymous with romance and luxury. Visit the island of Bora Bora for its stunning lagoon, explore the coral gardens of Moorea, and experience the unique blend of French and Polynesian cultures.</div><div><br></div><div>Australia: A Continent of Contrasts</div><div>Australia offers a diverse range of experiences, from the cosmopolitan cities of Sydney and Melbourne to the rugged landscapes of the Outback. Explore the Great Barrier Reef, encounter unique wildlife like kangaroos and koalas, and witness the natural wonders of Uluru.</div><div><br></div><div>Conclusion:</div><div>Oceania, with its natural beauty, cultural richness, and warm hospitality, is a region that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the tropical paradise of Fiji, the breathtaking landscapes of New Zealand, the cultural diversity of Papua New Guinea, the luxury of French Polynesia, or the contrasts of Australia, Oceania offers a world of exploration. It\'s time to embark on a journey through this enchanting region, where you\'ll be captivated by the diversity of cultures, pristine landscapes, and unparalleled natural beauty that await at every turn. Don\'t miss the opportunity to discover the splendor of Oceania, a land of endless adventure and enchantment in the heart of the Pacific.</div>  ',' \"Oceania Unveiled: Discovering the Wonders of a Pacific Paradise\"',NULL,NULL,NULL,NULL,NULL,'0','<script></script>','<script></script>'),(19,'South America','South America','19_1695295800.jpg','19_1695295800.jpg','2023-09-21 17:00:02','2023-08-25 17:34:18','0','0',' South America, culture, natural wonders, travel destination, South American countries, historical landmarks, scenic landscapes, South American traditions, ancient civilizations, cultural diversity, continent of South America, cultural tapestry.','<div>South America: Exploring the Natural Wonders and Vibrant Cultures of a Continent</div><div><br></div><div>Introduction:</div><div>South America, a continent of breathtaking landscapes, rich biodiversity, and diverse cultures, is a paradise for adventurers and explorers. From the Amazon Rainforest to the Andean peaks, this region offers an astonishing array of experiences waiting to be discovered. In this blog, we\'ll take you on a virtual journey through South America, inviting you to explore the natural wonders and vibrant cultures that define this remarkable part of the world.</div><div><br></div><div>Machu Picchu, Peru: The Lost City of the Incas</div><div>Machu Picchu, nestled in the Andes Mountains, is an archaeological marvel and one of the New Seven Wonders of the World. Hike the Inca Trail, explore the ancient ruins, and witness the sunrise over this mystical citadel.</div><div><br></div><div>Rio de Janeiro, Brazil: The Marvelous City</div><div>Rio de Janeiro, with its iconic Christ the Redeemer statue and stunning beaches, is a city of natural beauty and vibrant culture. Experience the energy of Carnival, relax on Copacabana Beach, and take the cable car to Sugarloaf Mountain for panoramic views.</div><div><br></div><div>Patagonia, Argentina and Chile: Land of Ice and Fire</div><div>Patagonia, with its dramatic landscapes of glaciers, mountains, and fjords, is an adventurer\'s dream. Trek in Torres del Paine National Park, witness the Perito Moreno Glacier, and explore the picturesque town of Bariloche.</div><div><br></div><div>Amazon Rainforest, Brazil: The Lungs of the Earth</div><div>The Amazon Rainforest is the world\'s largest tropical rainforest, teeming with wildlife and biodiversity. Take a jungle expedition, spot exotic birds and animals, and immerse yourself in the culture of indigenous communities.</div><div><br></div><div>Cusco, Peru: Gateway to the Andes</div><div>Cusco, often called the \"Naval of the Earth,\" is a city steeped in Inca history and colonial charm. Visit the vibrant San Pedro Market, explore the historic city center, and acclimatize before embarking on your journey to Machu Picchu.</div><div><br></div><div>Conclusion:</div><div>South America, with its stunning natural wonders, diverse cultures, and warm hospitality, is a continent that promises unique and unforgettable experiences for travelers. Whether you\'re drawn to the ancient mysteries of Machu Picchu, the vibrant rhythms of Rio de Janeiro, the pristine beauty of Patagonia, the lush jungles of the Amazon, or the historical charm of Cusco, South America offers a wealth of experiences that will leave you in awe. It\'s time to embark on a journey through this remarkable continent, where you\'ll be captivated by the beauty, history, and culture that await at every turn. Don\'t miss the opportunity to discover the natural wonders and vibrant cultures of South America, a land of endless exploration and enchantment.</div>  ',' \"South America Unveiled: A Journey through Diverse Cultures and Natural Wonders\"',NULL,NULL,NULL,NULL,NULL,'0','<script></script>','<script></script>'),(20,'North America','North America','20_1695210148.jpg','20_1695210148.jpg','2023-09-20 17:12:28','2023-08-25 17:34:18','0','0',' North America, natural wonders, cultural diversity, travel destination, North American countries, historical landmarks, scenic landscapes, North American traditions, diverse cultures, continent of North America, cultural tapestry.','<div> North America: Exploring the Diverse Wonders of a Vast Continent</div><div><br></div><div>Introduction:</div><div>North America, a vast and diverse continent, stretches from the Arctic Circle to the tropical shores of the Caribbean and offers a remarkable array of landscapes, cultures, and experiences. While many travelers are familiar with its iconic destinations, there is so much more to uncover across this expansive region. In this blog, we\'ll take you on a virtual journey through North America, inviting you to explore the incredible diversity and wonders that await.</div><div><br></div><div>New York City, USA: The City That Never Sleeps</div><div>New York City, often referred to as \"The Big Apple,\" is a global metropolis known for its iconic landmarks. Walk through Times Square, take in the views from the Empire State Building, and explore the vibrant neighborhoods of Manhattan. Don\'t forget to savor a slice of classic New York-style pizza.</div><div><br></div><div>Banff National Park, Canada: Nature\'s Wonderland</div><div>Banff National Park, nestled in the Canadian Rockies, is a natural wonderland. Hike through breathtaking landscapes, soak in the turquoise waters of Lake Louise, and keep an eye out for wildlife like grizzly bears and elk.</div><div><br></div><div>Mexico City, Mexico: The Aztec Capital</div><div>Mexico City is a dynamic and historic hub that offers a rich blend of ancient and modern cultures. Visit the ancient Aztec ruins of Teotihuacan, explore the Frida Kahlo Museum, and savor authentic Mexican street food at the bustling markets.</div><div><br></div><div>Niagara Falls, USA/Canada: Nature\'s Powerhouse</div><div>Niagara Falls is a spectacle of nature that straddles the border between the United States and Canada. Take a boat tour to get up close to the thundering falls, explore the charming town of Niagara-on-the-Lake, and enjoy the breathtaking views from various vantage points.</div><div><br></div><div>Costa Rica: Pura Vida in Central America</div><div>Costa Rica, located in Central America, is a paradise for nature lovers and adventure seekers. Explore the lush rainforests of Monteverde, relax on pristine beaches, and spot colorful wildlife in Tortuguero National Park. Don\'t miss the chance to zipline through the canopy.</div><div><br></div><div>Conclusion:</div><div>North America, with its vastness, diversity, and unique cultural blend, remains a captivating continent for travelers to explore. Whether you\'re seeking the energy of a bustling metropolis like New York City, the tranquility of a pristine national park like Banff, the rich history of Mexico City, the natural wonders of Niagara Falls, or the adventure-filled jungles of Costa Rica, North America offers a remarkable range of experiences. It\'s time to embark on a journey across this extraordinary continent, where you\'ll be enchanted by the beauty, history, and culture that await at every turn. Don\'t miss the opportunity to uncover the diverse wonders of North America, a land of endless exploration.</div>  ',' \"North America Explored: From Natural Wonders to Cultural Diversity\"',NULL,NULL,NULL,NULL,NULL,'0','<script></script>','<script></script>'),(21,'Scandinavia','Scandinavia','',NULL,'2024-03-14 17:56:22','2024-03-14 17:56:22','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL);
/*!40000 ALTER TABLE `tbl_regions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_salutation`
--

DROP TABLE IF EXISTS `tbl_salutation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_salutation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(20) NOT NULL,
  `Gender_Id` int NOT NULL DEFAULT '0',
  `Gender` varchar(20) NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_salutation`
--

LOCK TABLES `tbl_salutation` WRITE;
/*!40000 ALTER TABLE `tbl_salutation` DISABLE KEYS */;
INSERT INTO `tbl_salutation` VALUES (1,'Mr',1,'Male',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(2,'Ms',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(3,'Mrs',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(4,'Mstr',1,'Male',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(5,'Miss',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11');
/*!40000 ALTER TABLE `tbl_salutation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_seo`
--

DROP TABLE IF EXISTS `tbl_seo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_seo` (
  `id` int NOT NULL AUTO_INCREMENT,
  `keyword` text NOT NULL,
  `description` text NOT NULL,
  `metatag` text NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_seo`
--

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

--
-- Table structure for table `tbl_social_links`
--

DROP TABLE IF EXISTS `tbl_social_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_social_links` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `link` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `status` tinyint NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_social_links`
--

LOCK TABLES `tbl_social_links` WRITE;
/*!40000 ALTER TABLE `tbl_social_links` DISABLE KEYS */;
INSERT INTO `tbl_social_links` VALUES (1,'Facebook','https://www.facebook.com',1,'2023-08-22 03:11:12'),(7,'LinkedIn','https://www.linkedin.com',1,'2023-08-22 03:11:12'),(9,'YouTube','https://www.youtube.com',1,'2023-08-22 03:11:12'),(10,'Instagram','https://www.instagram.com',1,'2020-12-28 17:36:13'),(11,'Twitter','https://twitter.com',1,'2021-03-05 17:45:35'),(13,'Google','https://www.google.co.in',1,'2023-08-25 12:27:08');
/*!40000 ALTER TABLE `tbl_social_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_states`
--

DROP TABLE IF EXISTS `tbl_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_states` (
  `StateSysId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `seotitle` varchar(256) NOT NULL,
  `label` varchar(256) NOT NULL,
  `startingPrice` varchar(256) DEFAULT NULL,
  `DestDescription` varchar(500) DEFAULT NULL,
  `stateId` int NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `region_id` int DEFAULT NULL,
  `CountryIds` varchar(256) DEFAULT NULL,
  `Countries` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `cityData` varchar(256) DEFAULT NULL,
  `description` text,
  `otherDescription` text,
  `similarDestinations` varchar(500) DEFAULT NULL,
  `topTravelBlog` text,
  `metaTitle` varchar(500) DEFAULT NULL,
  `metaKeyword` text,
  `metaDescription` text,
  `meta_header` varchar(2000) DEFAULT NULL,
  `meta_footer` varchar(2000) DEFAULT NULL,
  `FAQ` text NOT NULL,
  `bannerImage` varchar(256) DEFAULT NULL,
  `popularPackages` varchar(500) DEFAULT NULL,
  `displayOnHeader` enum('1','0') NOT NULL DEFAULT '0',
  `displayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `destinationImage` varchar(256) DEFAULT NULL,
  `packageListMetaTitle` varchar(500) DEFAULT NULL,
  `packageListMetaKeyword` varchar(500) DEFAULT NULL,
  `packageListMetaDescription` varchar(500) DEFAULT NULL,
  `package_list_header_content` text,
  `package_list_footer_content` text,
  PRIMARY KEY (`StateSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_states`
--

LOCK TABLES `tbl_states` WRITE;
/*!40000 ALTER TABLE `tbl_states` DISABLE KEYS */;
INSERT INTO `tbl_states` VALUES (1,'Uttarakhand','uttarakhand','Uttarakhand (India)',NULL,NULL,9,'9_1617885801.jpg',NULL,'101','India','2021-02-22 18:46:16','2021-02-22 18:46:16','1','0',NULL,'<p>Devbhoomi <strong>UTTARAKHAND</strong>, or The Land of the Gods, is one of the most magical places that is known to mankind. The surreal landscape adorned with the magnanimous Himalayas, the holiest of the rivers and the vivid colours of nature has made Uttarakhand a major attraction for tourists all around the globe. On his first visit to this holy land, Mahatma Gandhi had referred to Uttarakhand as &lsquo;the Switzerland of India&rsquo; and it is not difficult to guess why.<br />\r\nWhether you&rsquo;re consumed by wanderlust or you want to attain spiritual mastery, there is no other place more perfect for you than Uttarakhand. We, at ineedtrip, have designed our Uttarakhand Tour Packages keeping you in mind and we are confident that a surreal and memorable experience awaits you there which you will cherish for the rest of your life.</p>\r\n',NULL,NULL,NULL,'','','','<script></script>','<script></script>','',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Kerala','kerala','Kerala (India)',NULL,NULL,3,'3_1627470132.jpg',NULL,'101','India','2021-02-26 12:00:38','2021-02-26 12:00:38','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">With palm-lined beaches, alluring backwaters, eye-soothing lush\r\ngreen landscapes and a unique lifestyle, KERALA&nbsp;a.k.a ‘God’s own country’ is\r\nnot just a destination, it’s an experience. And to make the most of this\r\nexperience, you need to know the what’s, how’s, where’s of Kerala. But how will\r\nyou find these? Fret not, we’re here to help you with everything you need to\r\nknow about Kerala in this destination overview and we’ll also share the best\r\nKerala honeymoon packages designed by us. We at iNeedtrip have designed these\r\nKerala Honeymoon packages with the thought that you get to visit and witness\r\nall the beauty that Kerala has to offer and have a trip of a lifetime.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Kerala, a Call from \"God\'s Own\r\nCountry\"<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Kerala is a dream like destination where the morning is foggy and miraculous.\r\nAffectionately called the \"God\'s Own Country\", this is where the backwaters\r\nhold everybody hostage with their charming tranquility. Indeed, it\'s the \'Spice\r\nCapital of India\' where the evening wishes goodbye with a fraction of the\r\ncaptivating tunes played by Mother Nature. Indeed, such is the magnificence and\r\nallure of Kerala!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Set yourself free and plan a trip to this kaleidoscopic land;\r\nthere is a variety of spots to visit in Kerala. Ensure you have time to visit\r\nall the places and minister the absolute most satisfying recollections out of\r\nyour outing. <b>Kerala holiday package</b>\r\nis filled up with unique experiences!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">If you are thinking that it is hard to choose the destinations to\r\ncover, here is an arranged rundown of traveler puts that will fill your travel\r\nbucket list with fun, skip around and fervor:<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Alleppey <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Alleppey tops this rundown of best places to visit in Kerala with\r\npictures. Its backwater trips, houseboat stays, and tranquil magnificence draw\r\nin a number of individuals to its domain. Indeed, it is the most famous spot to\r\nencounter some unconventional Kerala backwaters. Lord Curzon\'s portrayal of\r\nAlleppey as the Venice of the East isn\'t exaggeration. Choose <b>Kerala Honeymoon Package </b>for most\r\nperfect romantic vacation.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Alleppey houseboat tour is the thing that individuals search for\r\non their visit to Alleppey. There are spans of paddy fields, curious sanctuaries,\r\nfascinating fishing towns, and lakes loaded up with water lilies which make Alleppey\r\noutstanding tourist destination in Kerala for 3 days trip agenda. It is\r\nprobably the most breathtaking as well as safe place to visit in Kerala during\r\nCOVID.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit: </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\">September to mid-May<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach? <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Nearest Airport is Kochi Airport, which is 53 km away from the\r\ncity and the nearest railway station is Alleppey Railway Station which is\r\nlocated within the city limits.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Kochi<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Cochin also known as Kochi is an exceptional place in “God\'s Own Country”\r\nthat is impeccably mixed with cultural values and present day thoughts!\r\nAffectionately considered the \'Queen of the Arabian Sea\', this monumental\r\nport-city has consistently been a fascination point since the start of history.\r\nIdyllic and soothing holiday experience with the&nbsp;<b>Kerala holiday package!</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"> July to April<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach? <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Nearest airport is Kochi International Airport and the nearest\r\nrailway station is Kochi Railway Junction.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Munnar<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">An extremely renowned hill-station in Kerala, Munnar is a standout\r\namongst other vacation destinations in Kerala for 2 days trip schedule. In the\r\npast, the summer capital for the British, Munnar touring draws in travelers\r\nfrom all over the world. With around 80,000 miles of tea manor, an equivalent\r\nproportion of sweet-smelling vegetation, hazy valleys, and low-flying mists,\r\nMunnar has become one of the best honeymoon destinations in India. Plan your\r\nholiday with our <b>Kerala Tour Package!</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"> October to March<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach?<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">The nearest airport is Kochi Airport which is around 143 km from\r\nMunnar and the nearest railway station is Aluva Railway Station, which is around\r\n110 km away.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Kumarakom<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Enhanced by the otherworldly appeal of the Vembanad Lake,\r\nKumarakom is another bewildering backwater destination in Kerala. Situated close\r\nto Kottayamcity, this is where being languid is additionally perhaps one of the\r\nbest things you can manage to do during your <b>Kerala tour</b>.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Decorated by the appeal of the emerald Vembanad Lake, the\r\nevergreen coconut grooves, blustery rice fields, and so on, Kumarakom has\r\nbecome a top choice for vacation in Kerala. The backwater voyage and houseboat\r\nstays are the best thing to do in this wonderful land. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"> September to May<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach? <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Nearest airport is Kochi Airport which is 85 km away from\r\nKumarakom and the nearest railway station is Kottayam Railway Station which is\r\n16 km away.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Periyar National Park<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Periyar National Park and Wildlife Sanctuary a secured region\r\nclose to Thekkady in the locale of Idukki, Kottayam and Pathanamthitta. As an\r\nelephant and tiger reserve, the nature park hosts a wide assortment of\r\nuncommon, endemic and imperiled greenery. Adventurous holiday experience with\r\nour <b>Kerala Tour Package!</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"><b> </b>November to early May.<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach? <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">The nearest airport is Madurai Airport which is 136 km away and the\r\nnearest railway station is Kottayam Railway Station which is 114 km away from\r\nthe national park.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Wayanad</b></span><br></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Wayanad in Malayalam is known as paddy fields. It is one of the\r\ngreenest vacation destinations in Kerala. Enhanced with a golden beauty,\r\ntranquil air and rich culture, Wayanad is an ideal blend of nature and\r\nartificial legacy. All things considered, the spot is renowned for its\r\nextravagance in cultures, traditions, and ancestral legacy. Little, anonymous\r\nwaterfalls, that line the city randomly, add to the spot\'s appeal. Being home\r\nto the rich green vegetation, Wayanad is perhaps the most invigorating\r\nbackwoods spots to visit in Kerala. Plan your <b>Kerala holiday package </b>with us to save more!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"> October to May; however adventure aficionado\r\nshould visit during the monsoon months of July and August to enjoy trekking and\r\nother adventure activities.<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach?<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">The nearest airport is Karipur International Airport at Calicut which\r\nis just 95 km away from Wayanad and the nearest railway station is Kozhikode\r\nRailway Station which is around 72 km away from Wayanad.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Thekkady&nbsp;<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Often compared with some of the renowned Kerala tourist’s\r\ndestinations, this is the spot that consistently wears the green shade of Mother\r\nNature! Thekkady is renowned as the natural home to various outlandish exotic\r\nwildlife species. And when discussing about wildlife species, the Periyar\r\nNational Park in Thekkady is without a doubt one of the must-visit tourists\r\nspot! Go for <b>Kerala holiday package </b>for\r\nsafe and sanitized holiday experience!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Best time to visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" calibri;mso-bidi-theme-font:minor-latin\"=\"\"> October to February<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How to reach?<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">The nearest airport is Kochi International Airport which is 160 km\r\naway and the nearest railway station is Kottayam Railway Station which is at a\r\ndistance of 114 km from Thekkady.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Other important places to visit\r\ninclude:<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Kovalam, Vagamon, Bekal, Kozhikode, Varkala, Kannur, Kasargod,\r\nKizhunna beach, Idukki, Munroe Island, Kavvayi Backwaters, Kuttanad, Thrissur,\r\nPalakkad, Malappuram, Poovar island, Malampuzha, Nelliampathy,\r\nThiruvananthapuram, Sabarimala, Kollam, Thalassery, Nilambur, Kalpetta,\r\nPeerumedu, Mannarkkad, Vythiri, Devikulam, Kodanad, Thodupuzha, Kattappana,\r\nChinnar Wildlife Sanctuary, Krishnapuram Palace and so on. The list is endless.\r\nCheck out the best <b>Kerala package</b>.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Is it true that you are good to go &amp;\r\nenjoy the beauty of Kerala? <o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">If a holiday to Kerala is all you\'ve been hanging tight for, we\r\nsay now is the ideal time! Regardless of where you go, these top tourists\r\ndestinations in Kerala will clearly prove to be useful! Kindly offer your\r\nexperience and do tell us in the remarks segment. We guarantee you\'ll have a\r\ngreat time and won\'t be disillusioned by all that Kerala has to bring to the\r\ntable for you.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Why choose ‘I Need Trip’ for a unique\r\ngetaway?<o:p></o:p></font></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Explore&nbsp;Kerala&nbsp;with your loved ones. Any&nbsp;Kerala\r\ntrip&nbsp;itinerary promises exquisite experiences following the COVID\r\nprotocols and safety standards with all the accommodation, and tour around the\r\ncity is taken care of.&nbsp;<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Our expert travel curators have designed the perfect <b>Kerala Holiday Package</b> just for you, so\r\nthat you can fully enjoy yourself in the entrancing mix of things to see and do\r\nthat Kerala has to offer. <o:p></o:p></font></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:calibri;mso-bidi-theme-font:=\"\" minor-latin\"=\"\"><font face=\"Arial\">Plan your&nbsp;<b style=\"\">Kerala tour\r\npackages</b>&nbsp;through us and get amazing discounts.</font><o:p></o:p></span></p>',NULL,NULL,NULL,'Explore Kerala Tour Packages, Kerala Holiday and Honeymoon Package','Tour to Kerala, Best Package Kerala, Book Kerala Tour, Book Kerala Holiday Package, Cheap Kerala Package, Best Kerala Honeymoon Package, Explore Kerala Package, Kerala Honeymoon, Kerala Trip Deals, Best Deals Kerala.','Kerala Tours: Ineedtrip offers best deals to Kerala holiday and honeymoon packages. Click now to get exclusive Kerala tour deals and Kerala trip package with airfare.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Andaman and Nicobar Islands','andaman-and-nicobar-islands','Andaman and Nicobar Islands (India)',NULL,NULL,20,'20_1627470052.jpg',NULL,'101','India','2021-03-09 16:28:18','2021-03-09 16:28:18','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The Andaman’s are a beautiful group of islands in the Bay of Bengal, and one of the best vacation spots. If there’s a place in India where the topography is enormously not the same as the other parts of the land, it is the Andaman and Nicobar Islands. Not only ideal for a honeymoon getaway, these islands are the perfect holiday destination for families and friends, to have a great time. Are you looking for a memorable Andaman Nicobar trip?</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Whether it is the volcano diving at Narcondam Island or Snorkeling&nbsp;at the Neil islands, there is more than one reason for you to visit Andaman. We have rounded the important reasons for you; just take a look before you fly down to Andaman and Nicobar Islands. Andaman Tour Package is the right choice for you.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Places to visit in Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Relaxing in the Andaman and Nicobar Islands isn\'t an issue; whether you are planning to just chill with a cocktail close by or be gutsy, the Andaman Islands have a ton of stuff (other than just relaxing on the beach) that you can do which makes it a wonderful holiday destination.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Here are some of the best places to visit:</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Cellular Jail, also known as \'Kala Pani\'</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The Cellular Jail, otherwise called \'Kala Pani\' is a colonial prison located in Port Blair, the capital of Andaman and Nicobar islands. During the colonial rule in India, it was constructed by the Britishers, the prison was utilized especially to oust Indian political prisoners. It was utilized to house freedom fighters like Vinayak Damodar Savarkar, Batukeshwar Dutt, and Yogendra Shukla. Andaman Nicobar Package offers the widest range to explore.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Ross Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Ross Island is situated 2 km east of Port Blair (currently it is renamed as Netaji Subhash Bose Island); an island which was once the managerial base camp of the British, however today is just an uninhabited island. In the year 1941, following a quake that hit Ross Island, the British moved their settlement to Port Blair.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Barren Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Situated around 135 kilometers toward the upper east of Port Blair, Barren Island is located at the convergence of the seismically dynamic Indian and Burmese plates. To your utter surprise this plate is 1.8 million years of age and is home to the just active volcano in the Indian subcontinent. As the name recommends, this is an uninhabited island due to the volcano eruptions that happen here at successive intervals. Andaman Nicobar Holidays for the perfect relaxation and adventure!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Elephant Beach</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">One of the most visited fascinations in Havelock Island is the Elephant Beach in Andamans. You can reach the Elephant beach at Havelock Island either by a boat ride or by trekking. Here you can enjoy snorkeling &amp; sea walks.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Radhanagar beach</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Radhanagar beach ought to be on everybody\'s rundown of activities in Andaman. You can sunbathe or swim in the crystal clear waters at Radhanagar and the white sand is pretty much as smooth as wheat flour. You surely need to visit to encounter this experience.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Bioluminescence beach in Havelock Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Imagine small lighted stars and galaxies drifting under your feet rather than the blue sky above. Absolute astonishing, right? Watch this captivating phenomenon happen on the beach at Havelock Island, one of the best things to see in Andaman and Nicobar Islands, as you row your boat through them the water sparkles. This occurs because of the presence of phytoplankton in the ocean waters, which when comes in contact with an object sparkles. Popular Andaman Tour Package to lure you!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>North Bay Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">North Bay Island is generally liked by travelers for its stunning coral reefs and invigorating adventure activities. Surprisingly, the image on the backside of the 20 Rupee note is of North Bay Island.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Kalapathar beach</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Kalapathar beach is a staggering yet curious spot to enjoy some time with your friends and family. The drive to Kalapathar Beach at Havelock is much better in comparison to Radhanagar Beach. During your drive to this beach, you will notice the open greenish-blue waters on your left side.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Mount Harriet National Park</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Mount Harriet National Park is without a doubt the most excellent one. Situated in Ferrargunj Tehsil of Port Blair, Mount Harriet is the third highest peak around 365 m of Andaman and Nicobar Islands and the most effectively available one too. It covers an area of 46.62sq km; the national park is home to a variety of animals and birds. Andaman Tours for an adventurous vacation!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Howrah Bridge</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The Howrah Bridge, also known as the Natural Bridge is a bridge-like development situated in the well known \'vegetable bowl\' of Neil Island. This little yet lovely island is located around 40 kilometers from south Andaman and is broadly known for its seashores named after legendary animals of the epic, Ramayana – the Sitapur, Ramnagar, Laxmanpur, and Bharatpur beaches. The Howrah Bridge is actually located in Laxmanpur Beach of Neil Island and is an incredibly well-known spot among sightseers.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Neil Island – The Vegetable Bowl of Andamans</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">In the last 2 years, Neil Island has become very popular. Many individuals are visiting Neil Island and perceive its excellence and appeal. Various new hotels and restaurants have been set up in this striking little island. A Neil Island package covers every one of the significant attractions like Ramnagar Beach, Sitapur Beach, Laxmanpur Beach, Bharatpur Beach, and the Natural Rock Formation. Andaman Tour Package for a hassle-free holiday experience!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Rajiv Gandhi Water Sports Complex</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Otherwise called the Andaman Water Sports Complex, the spot offers a total fun package inclusive of all the exciting water sports activities. Presently you should be interested to know the sort of activities Rajiv Gandhi Water Sports Complex hosts- these are scuba diving, sea walking, speedboats, swimming, paddle boats, row boats, banana boats, parasailing, and significantly more.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Mahatma Gandhi Marine National Park</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Situated on the south-western shoreline of the Andaman Islands, Mahatma Gandhi Marine National Park or Wandur National Park is a conservation park located around 25 km from the capital city of Port Blair. The wildlife sanctuary comprises 12 islands that are arranged in a confounded shape and are home to probably the most flawless marine life on the planet including corals and resting ocean turtles among different species. Andaman Nicobar Holidays lets you explore the most!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Anthropological Museum</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The Anthropological Museum is located in the core of Port Blair. This museum is an ethnographic museum enumerating the lives and cultures of the different tribal people that have lived on this island: the Nicobarese, the Sentinelese, Jarawas, the Onges, and the Shompens. Within the museum, one can see the different artifacts, tools, garments, boats, lea baskets, and weapons of the tribes of different eras.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Chatham Saw Mill</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The Chatham Saw Mill constructed in the 19th Century is one of the best fascinations in Port Blair which is prestigious as the most established and the biggest saw mill. It is the only sawmill that is responsible for providing timber for construction work on the island and is one of the few mills that export timber to ventures and furniture units across the world. The blood red wall panels at the Buckingham Palace in London is believed to have been made of the boards sourced from Chatham Saw Mill.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Samudrika Naval Museum</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Situated in the capital city of Port Blair, the Samudrika Naval Museum is the pride task of the Indian Navy. With exhaustive inclusion of the marine life present in the deep waters encompassing the chain of islands, this interesting museum is a stunning hotspot for subtleties on the climate in the sea, its biological system and its biodiversity.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Sandbar Beach</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">It is an extended length of sand that connects two islands- the Ross Island and the Smith in Andaman. The dazzling view made by the thickly forested islands and the stretch of white sand is very one of a kind to the area and attracts a few travelers to observe its charisma. Andaman Nicobar Trip lets you have a gala time!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>The Parrot Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Another unique island to visit is the Parrot Island, home to a huge number of shuddering parrots, which looks like an entirely different realm of wildlife conceived out of the brackish waters of the Indian Ocean. Daily, hosts of green parrots show up at the island as a part of their daily routine, which is a scene to observe.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Saddle Peak National Park</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">This national park was set up in 1987 in the Andaman district of the Andaman and Nicobar Islands. It is totally uninhabited by individuals, accordingly making it alright for saving wildlife and the ecosystem. The long trek to the park makes it worth visiting after encountering its excellence. Book affordable Andaman Nicobar Package!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Limestone caves near Baratang Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The limestone caves close to Baratang island of Andaman are naturally formed caves and are one of the most loved places of interest for the individuals who wouldn\'t fret a long tour around these caves. You have to take a longboat journey to venture towards it. The caves, albeit wonderful, are not that simple to reach. One needs to take an escort through the Jarawa Forest land and longboat ride to Baratang Island before you can actually arrive at the Limestone Caves.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Mangrove creeks in Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">With natural debris hued beaches, coral reefs, impenetrable forest, and mangrove creeks, this place lets you experience something unique. Mangrove trees are often common in the seaside regions. They outgrow tangled roots in sloppy water. These admirable trees add as a charm during the creek safari found at different areas of Andaman and Nicobar Islands. Andaman Tour Package to explore the best!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Guitar Island</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Guitar Island is one of the stunning yet uninhabited islands of Andaman and Nicobar. It is a lovely and remunerating tourist spot, you should definitely visit. With splendid greenish-blue water surrounding it and the tropical greens inside, Guitar Island makes for a breathtaking trip from the main island. Get best health and safety practices on your Andaman Nicobar Trip!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Kalipur Beach in Diglipur</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">With an endless number of turtles resting on the Kalipur Beach in Diglipur is a wonderful beach to visit. These also include a few uncommon ones that come here to settle, aside from this, the Kalipur beach is the most loved outing spot among the local people and vacationers. Here, you can even go snorkeling and enjoy watching the turtles nesting. Truly a sight worth watching!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Chidiya Tapu</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Chidiya Tapu is otherwise popular as the Sunset Point. It is a completely isolated beach where you can observe the sunset peacefully. This area is additionally possessed by crocodiles, so you have to watch out. Transportation is available on a regular basis from Port Blair to Chidiya Tapu till 5pm. So, design you visit accordingly.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Things to do in Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">What should be done in Andaman rundown will find no halting. You can enjoy scuba diving to find bright corals and charming water life, get on to a sensational guard or banana boat ride; experience glass base boat ride that gives you a sight of the corals underneath, evaluate the mix of water and airborne experience of Parasailing, swim with the elephants, or go for a seaplane drive run by Pawan Hans. Go for Andaman Tour Package to enjoy all the thrilling activities!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Scuba diving</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Snorkeling</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Parasailing</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Andaman Dolphin Glass Bottom Boat</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Mangrove Kayaking at Mayabunder</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Light &amp; Sound Show at Cellular Jail</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Dive underwater</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Sea Walking</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Island Trekking</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Island hopping</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Seaplane ride</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Dolphin watching</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">River cruise</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Rubber Plantations Visit</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Glass Bottom Boating</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Helicopter tour</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Seakart Adventure</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Semi Submarine Ride</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Food to try out in Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">The food of Andaman Islands is exceptional and has something to bring to the table to everybody. Since, it is basically an island that is brimming with sea shores, so Barbeque and fish overwhelm the culinary. Andaman Nicobar Trip to taste the authentic flavors of the region!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Andaman cooking is vigorously impacted by the way of life that came into contact with the area. A trip to any destination is incomplete without relishing the food of the region and Seafood is the forte of Andaman.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Some popular dishes include</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Macher Jhol</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Grilled Lobsters</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Fish Tandoori</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Barbeque Food</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Chicken Tikka Masala</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Coconut Prawn Curry</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Fish Curry</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Amritsari Kulcha</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Chilli Curry</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>For the shopaholics, best places to shop in Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">How can a vacation to any place be complete without a smidgen of tempting shopping experience? If you are thinking about what to do in Andaman during evening time, go shopping and get a few trinkets for your friends and family. You will discover a few sorts of things being sold here like handicrafts, pearl and shell jewelry, and handbags.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Aberdeen Bazaar</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">MG Road</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Electrical Plaza</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Beach Markets</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Queen Sea Covering Craft</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Best time to visit Andaman</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Andaman is a year round tourist destination, where fluctuations in temperatures are insignificant and stay charming all throughout the year. However, the best time to visit Andaman and Nicobar Islands is from October to May as the climate is lovely, simply ideal for touring, water sports, and relaxing on the beach. Andaman Nicobar Holidays for the best beach vacation!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>How to reach Andaman?</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">While now you have an idea of the things to do in Andaman and Nicobar Islands, try to design your outing in a systematic manner. Andaman can be reached via air and water; here is how to arrive at Andaman.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">By Air: Fly down to Deboard at Vir Savarkar Airport in Port Blair from the major states of India.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">By Ship: Alight at Haddo Wharf Port in Port Blair; ship services to Port Blair are available from Chennai, Kolkata, and Vizag.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Why go for a tour package for your vacation in Andaman?</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">A holiday package set aside bunches of cash. Should you try booking everything from the hotel room to airfare all alone, you might wind up spending more than what you have planned to spend on your trip. The singular expenses can be very high, however a holiday package can save a lot of money and you are able to cover all the tourists’ places in a hassle-free manner. Book budget friendly Andaman Tour Package to visit all the important tourist spots!</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>Why choose ‘I Need Trip’ for a holiday package to Andaman?</b></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Planning a holiday trip is easy, however carrying out can be a serious uphill assignment. Arranging necessitates that you think about and an effort to make your stay enjoyable.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Book our best budget Andaman Honeymoon Package or Andaman Tour Package. There are adventure sports, water activities, and activities for the nature lovers, tourist spots and substantially more to do that you will become hopelessly enamored with.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\"><b>I Need Trip will guide you in every step!</b></span></font></p>',NULL,NULL,NULL,'Andaman and Nicobar Packages, Andaman Holiday and Honeymoon Package','Tour to Andaman and Nicobar, Best Package Andaman and Nicobar, Book Andaman and Nicobar Tour, Book Andaman and Nicobar Holiday Package, Cheap Andaman and Nicobar Package, Best Andaman and Nicobar Honeymoon Package, Explore Andaman and Nicobar Package, Andaman and Nicobar Honeymoon, Andaman and Nicobar Trip Deals, Best Deals Andaman and Nicobar.','Andaman Tour Package: Ineedtrip offers best deals to Andaman and Nicobar holiday and honeymoon packages. Click now to get exclusive Andaman tour package at best rates.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Delhi','delhi','Delhi (India)',NULL,NULL,4,'4_1617885378.jpg',NULL,'101','India','2021-03-18 20:11:35','2021-03-18 20:11:35','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">The history of Delhi has\r\nnames of some great kings as its rulers and it is natural that these kings\r\nbuilt stunning forts and palaces to add to the glory of their dynasty during\r\ntheir year of reign. Mughal Empire and British Empire, both are viewed as the\r\nones who have done some splendid construction during their rule. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Delhi is the capital city of\r\nIndia and second largest city by population after Mumbai. As the capital city\r\nand because of its historical significance, it is flooded with vacationers all\r\nyear round, be it from India or from other countries. Why Delhi is a well-known\r\ntourist place or why you should visit Delhi once in your life? Go for <b>Delhi Holiday Package </b>for a memorable<b> Delhi Trip!</b><o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">It takes a lot of time to\r\nplan to visit the right tourist destination that would give you all that you\r\nexpect on a vacation. Once you decide which place to visit for your vacation,\r\nyou need to do additional research in order to know the best places to explore,\r\nthen the itinerary and your accommodation. <b>Delhi\r\nholiday packages</b> are the right choice for you to save more and explore\r\nmore!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">If you are planning to visit\r\nDelhi for your upcoming vacation, here are a few ideas that would assist you\r\nwith your itinerary. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Places\r\nto visit in Delhi<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Exploring the historical and\r\nstunning monuments in Delhi should be on every travelers bucket list. The\r\ncapital city is deep-rooted in history, has amazingly designed forts to tombs,\r\nmosques and churches, there are famous ancient buildings everywhere, each with\r\nits own historical significance. Book <b>Delhi\r\nTour Package </b>for an incredible holiday experience!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Every one of them is built\r\nin the core of the city and stands out. To explore and enjoy the most from your\r\nvacation, we recommend that you visit these tourist spots in Delhi:<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Here\r\nare some of the top places to visit in Delhi:<o:p></o:p></font></b></span></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Red Fort</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Jama Masjid</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Qutub Minar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Humayun\'s tomb</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Hauz Khas Village</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Lotus Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">India Gate</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Rajpath </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Agrasen ki Baoli </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Akshardham Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Lodhi Gardens</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">National Gallery of Modern\r\n     Art</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Delhi Zoo</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">The Rail Museum</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Mehrauli Archaeological Park</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Jantar Mantar </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Gurudwara Bangla Sahib</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Mughal Gardens</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Rashtrapati Bhawan</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dilli Haat </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Hazrat Nizamuddin Dargah</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Rajghat </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Birla Mandir Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Safdarjung Tomb</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Purana Qila or the Old Fort</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">National Museum of India</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Nehru Memorial Museum and\r\n     Library </span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Tughlaqabad Fort </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo3;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Chhatarpur Temple</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Things\r\nto do in Delhi <o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Being a plentitude of\r\ninnumerable spots, history, rich culture and heritage, tourists discover the\r\nchance of enjoying a serious of activities in Delhi. There is no deficiency of\r\nactivities in this capital city of India that frequently has all the earmarks\r\nof being overpowering most definitely. <b>Delhi\r\nTours </b>offers you the most thrilling experiences!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">These includes- participating\r\nin adventure activities like paragliding, escape games, ATV rides, seaway ride,\r\nGo Karting; visiting the prosperous streets of Old Delhi on a cart; visiting\r\nthe ancient heritage and other attraction sites in Delhi; shopping at the\r\npopular affordable markets; enjoying the street food and thus significantly\r\nmore.<o:p></o:p></font></span></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Enjoy in the Waste to Wonder\r\n     Park</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Visit the Garden of Five\r\n     Senses</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Enjoy a show at The Kingdom\r\n     of Dreams</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Enjoy strolling around,\r\n     shopping and enjoying food in Connaught Place </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Enjoy clubbing</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Witness Light and Sound Show\r\n     at Red Fort</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Visit the Fairs at Pragati\r\n     Maidan</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Paintball In Delhi At\r\n     Shootout Zone</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Ice Skating In Delhi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Adventure Island Tickets</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Helicopter Ride In Delhi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Enjoy Segway Ride at Rajpath</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Touch Sky with Motorized\r\n     Paragliding</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Reach the Peak with Rock\r\n     Climbing</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Air Safari</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Go for F9-Go-Karting</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Play the Escape Games in\r\n     Hauz Khas Village </span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Delhi Cycling Trip </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Watch Space at Nehru\r\n     Planetarium</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo4;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Qawwali’s at Nizammuddin Dargah</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Food\r\nto try out in Delhi<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">This is one of the reasons\r\nwhy local people venture out to wander around on numerous occasions in Delhi.\r\nFrom the paranthas of Chandni Chowk to the mouth-watering chaats of Lajpat\r\nNagar Market, everything is worth trying out here. The Golgappa, the Indian bread\r\nloaded up with sour and sweet water is something you should try out when in\r\nDelhi! Go for <b>Delhi Tour Package </b>for\r\ncovering all important places!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Alongside with street food,\r\nthere are many eateries which offer the best delicacies. If you simply want to\r\nchill out or just want to loosen up yourself, you can visit the cafes and\r\ncoffee shops.<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Dishes you must try when\r\nyou\'re in Delhi<o:p></o:p></font></b></span></i></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chole Bhature</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Aloo Tikki</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Peeli Dal</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Jalebi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Papri Chaat</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Bhalle papdi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Amritsari kulcha</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dal Bukhara</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Kakori Kebabs</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chicken Tikka Rolls</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chicken Changezi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dal Meat</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Kachori Aloo Sabzi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Bisi Bele Bhath</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chicken Haldighati</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l4 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Veggie Cutlets</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Best street food spots  <o:p></o:p></font></b></span></i></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Taste the Delicacies at\r\n     Paranthe Wali Gali</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Old Delhi</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Karol Bagh</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dilli Haat</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Khan Market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Pandara Road</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Jama Masjid</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Nizamuddin</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">South Campus</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chittaranjan Park</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Connaught Place</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l2 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">New Friends Colony</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Shopping\r\nin Delhi <o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">A trip to Delhi stays\r\nincomplete without visiting the hooks and corners of the famous markets that\r\nmanage everything from local food to dress and accessories to home décor and other\r\nthings. While there are various brand outlets, air-conditioned supermarkets and\r\nshopping malls in the posh areas. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">However the true essence\r\nlies in the small stalls in the markets run by local traders. Old Delhi is\r\nenhanced with numerous such market areas which stay clamoring with local\r\nvisitors and vacationers consistently. Visiting here, you will get to know the\r\nDelhi heritage, art, culture and craftsmanship and it will upgrade your ability\r\nof haggling without a doubt! Book <b>Delhi\r\npackages</b> at best price to explore in a hassle-free way!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">The famous markets in Delhi\r\nare:<o:p></o:p></font></b></span></i></p>\r\n\r\n<ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chandni Chowk</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Sarojini Nagar market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Janpath market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Paharganj Market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Karol Bagh market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Palika Bazaar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Lajpat Nagar Market or\r\n     Central Market</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Greater Kailash (M-Block and\r\n     N-Block) market</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Khan Market</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chawri Bazaar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Kamla Nagar Market </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Sadar Bazaar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l3 level1 lfo5;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Gaffar Market</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">While navigating through the\r\njam-packed markets sectors, you must be receptive and open minded; else you\r\nwill wind up feeling suffocated and pass up a major opportunity to get a handle\r\non the possibility of getting a hold of the people of different society. In\r\ncontrast to the upscale shopping centers, retail chains and grocery store\r\nchains, these market areas have people from different economic background while\r\nmaking them acquainted with negotiation abilities and tolerance. Get Best\r\nOffers on <b>Delhi Holiday Packages</b>!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Best\r\ntime to visit<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">October to March is\r\nconsidered the best time to visit Delhi. During this period, the climate stays\r\ncharming, as Delhi experiences too hot and too cold climatic conditions.\r\nOctober to March’s gentle climate of the city draws numerous travelers from\r\ndifferent parts of the world. <b>Delhi tour</b> purely\r\ndepends on the season you are travelling!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">How\r\nto reach Delhi?<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Delhi flaunts fantastic\r\nnetwork both domestic and international. The city displays an honor winning\r\nairport; three huge railway stations and three interstate bus terminals making\r\ntransportation in Delhi easily available and convenient. Chance to explore\r\nthe Delhi city with <b>Delhi\r\nPackage</b>!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">By\r\nair<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Delhi is connected to all\r\nthe domestic and international airports with all the flights flying to and from\r\nthe city. Practically every one of the significant airlines flies from Indira\r\nGandhi International Airport at New Delhi. The Domestic Airport as well connects\r\nDelhi to all the cities of India.<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">By\r\ntrain<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">The railway network connects\r\nDelhi to all the stations of India, even the small railway stations in India as\r\nwell. The three major railway stations of Delhi are New Delhi Railway Station,\r\nOld Delhi Railway Station and Hazrat Nizamuddin Railway Station.<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">By\r\nroad<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Delhi is well connected to\r\nall the roads and national highways with each state of India. The three\r\nimportant bus stands in Delhi includes the- Inter State Bus Terminus (ISBT) at\r\nKashmiri Gate, Sarai Kale-Khan Bus Terminus and Anand Vihar Bus Terminus. Both\r\nthe government and private buses are available and drive to all the major\r\ndestinations.<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Why\r\nchoose ‘I Need Trip tour’ package for your trip to Delhi?<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">With the best <b>Delhi Tour Packages</b>, you can enjoy\r\ndifferent advantages that include easy access to transportation, visiting all\r\nthe important tourist spots like monuments and temples, savoring the Delhi\r\nstreet food, enjoying affordable shopping and fun-filled activities, staying in\r\nthe best hotels and experience the ideal mix of modernization and tradition\r\naround here, without being disappointed. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">The <b>Delhi Holiday Packages</b> itinerary caters to the necessities of a\r\nwide range of travelers, be it families, friends, couples or solo travelers. It\r\nfurnishes them with an efficient, arranged and facilitated get-away in a\r\nsystematic manner for a stress-free Delhi trip.<b><o:p></o:p></b></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><b><font face=\"Arial\">Also\r\nwhen in Delhi, Enjoy the Weekend Trips from Delhi<o:p></o:p></font></b></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">While Agra and Jaipur has\r\nbeen the outright top picks of the majority heading out to Delhi. Popularly\r\nknown as the three Golden Triangle tourist destination based on their charm,\r\nthis is actually a great deal on offer. What you need is a <b>Delhi Honeymoon Package!<o:p></o:p></b></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Hill stations close to Delhi\r\nmake a great weekend trip with affordable trains and buses available 24/7.\r\nEnjoy amidst the charming hill-stations like Shimla, Mussoorie, Nainital,\r\nChakrata, Dalhousie and others. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Weekend vacations at these\r\nhill-stations will let you spend an incredible time with your family and\r\nfriends. Being at the middle, it offers luxurious facilities for the voyagers\r\nto drive to places that are located within a few kilometers away!<o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Moreover, if you like the\r\nwildlife, you can opt for an adventurous trip to the wildlife sanctuaries close\r\nto Delhi. You can go directly toward places like Corbett National Park, Rajaji\r\nNational Park, Bharatpur Bird Sanctuary, Sawai Madhopur, and so on. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Whether you are looking for\r\na short trip from Delhi or a weekend tour package from Delhi within a few\r\nkilometers away, you have a wide scope of choices to look through for planning\r\na vacation close to Delhi. <o:p></o:p></font></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Search for the famous\r\ntourist destinations close to Delhi to have a gala time with your friends,\r\nfamily or with your partner. Couples can opt for the </font><b><font face=\"Arial\">Delhi Honeymoon Package!</font><o:p></o:p></b></span></p>',NULL,NULL,NULL,'Delhi Tour Package, Explore Delhi Holiday and Honeymoon Package','Tour to Delhi, Best Package Delhi, Book Delhi Tour, Book Delhi Holiday Package, Cheap Delhi Package from India, Best Delhi Honeymoon Package, Explore Delhi Package, Delhi Honeymoon, Delhi Trip Deals, Best Deals Delhi.','Delhi Tour Package: Explore Delhi tours and honeymoon package at affordable price. Plan your Delhi trip with Ineedtrip.com and get best holiday deals.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Himachal Pradesh','himachal-pradesh','Himachal Pradesh (India)',NULL,NULL,1,'1_1627470097.jpg',NULL,'101','India','2021-04-12 14:21:19','2021-04-12 14:21:19','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\nis literally heaven on earth. The state is considered to be one of the most\r\nbeautiful destinations all over the world. There are just so many places to\r\nvisit in Himachal that people often find themselves bewildered on planning\r\ntheir trip. If you are a nature lover, scenic, like a little cold, topped with\r\na peaceful environment and a lot of adventurous activities, Himachal is the\r\nplace for you. There is no better place to explore the beauty of nature, snowy\r\nmountains, greenery of forests, mesmerizing villages which Himachal is all\r\nabout. With this destination overview of Himachal, we’ll help you with the best\r\nplaces to visit, things to do, food to try and a lot more. What’s more? Once\r\nyou’re done reading this overview, move to our Himachal tour packages section,\r\nwe’ve got some deals that’ll blow your mind!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Explore Himachal Pradesh, the perfect destination for your inner\r\nwanderlust <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\nis a dream destination for its breathtaking landscape, which includes the lofty\r\nsnowcapped mountains, rich green woods, and spouting waterways and streams.\r\nHimachal Pradesh, otherwise called the ‘Land of Snow’, is perhaps the most\r\nfamous vacation spot for nature lovers, trekkers, and anybody searching for a\r\ntranquil retreat in an awe-inspiring surrounding with pleasant weather.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\ndraws in travelers from everywhere around the world with its extraordinary\r\nnatural beauty, enchanting peaks and entranced landscapes. The Himachal travel\r\nindustry is developing at a fast rate, and it has turned into a haven in the\r\nnorthern Indian. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">A <b>Himachal Pradesh Tour Package</b> is ideal\r\nfor those searching for a romantic getaway, a thrilling dose of adventure, or\r\nsimply just for relaxation. Let’s take a look at some of the most gripping\r\nreasons to visit Himachal Pradesh:<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Best places to visit in Himachal Pradesh<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Shimla<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Shimla is the\r\ncapital Himachal Pradesh was the summer capital of British India. It is one of\r\nthe favorite hill-stations among Indian families and honeymooners. Shimla is\r\nlocated at an altitude of 2200 m, and actually holds it’s old-world fascinate\r\nwith lovely colonial architecture, the pedestrian-friendly Mall Road and it’s\r\nlined up shops, cafes and restaurants.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Kullu &amp; Manali<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Perhaps the best\r\nspot to visit in Himachal Pradesh is Kullu and Manali. If you want to get lost\r\nin the serene and lush-green mountains in the midst of the snow-clad ranges,\r\nthen Kullu&amp; Manali without a doubt should be on your holiday getaway list.\r\nThere are various wonderful spots to visit in Manali that will make your holiday\r\nan ideal one! <b>Himachal Pradesh Honeymoon\r\nPackage</b> is all you need for the newly married couples!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Kasol<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Kasol is a\r\npicturesque little village in Himachal located alongside the banks of the river\r\nParvati. Popularly referred to as the \'Amsterdam of India\', Kasol is a vacation\r\nspot that is quickly acquiring acclaim as a famous center for nature lovers,\r\ntrekkers, and backpackers. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">The distance of\r\nKasol from Bhuntar is only 23 km and is close to the religious town of\r\nManikaran and is perhaps the best place just to pause for a minute or two and\r\nchill in the view of snow-covered mountains, pine trees and splashing river\r\nwaters. <b>Himachal Pradesh Tours</b> for a\r\nmesmerizing vacation!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Mcleodganj</b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Otherwise called\r\nLittle Lhasa, this little town is world famous for being the home to the\r\nTibetan spiritual leader Dalai Lama. Mcleodganj is very close to upper\r\nDharamsala. Settled in the midst of fabulous slopes and greenery, this town is\r\nsocially honored by a noticeable Tibetan influence attributable to the\r\nsignificant settlement of Tibetans here. Mcleodganj has one of the most\r\nentrancing scenes in the whole province of Himachal Pradesh and draws in a ton\r\nof sightseers consistently. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">The towns of\r\nMcleodganj, Dharamsala, Bhagsu Nag and Kangra are close to one another and\r\nvacationers can cover all these destinations together. Go for <b>Himachal Pradesh Package</b> for a\r\nhassle-free vacation and explore all the important destinations.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Spiti Valley<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">The word Spiti\r\nsignifies \'The Middle Land\', as Spiti Valley isolates India from Tibet. This sparsely\r\npopulated destination is an adventure lover\'s heaven, with various trekking\r\ntrails that vacationers can browse. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">All of the\r\nimportant trekking routes start from Kaza (Spiti\'s capital and base camp from\r\nwhere you can start your trek) to various peaks from where you can get a\r\npanoramic view of the Himalayan Mountain ranges. A simple 1.5 km trek along the\r\nSpiti River from Dhankar Monastery to Dhankar Lake guarantees dazzling\r\nperspectives of the villages beneath. The Dhankar Lake itself is where you can\r\ntake a load off in the midst of the cool mountain air. <b>Himachal Pradesh Holiday Package</b> is waiting for you!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Dalhousie<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Dalhousie, a\r\nwell-known hill station in Himachal Pradesh is located at an altitude of 1,970\r\nmeters above sea level. Bragging stunning landscape, the snow-covered mountains\r\nof Dhauladhar ranges, Dalhousie is well known for its knolls, thick\r\nwildernesses and cascades. Set up in 1854, it was named after Lord Dalhousie\r\nand was a summer holiday destination of the Britishers during their colonial\r\nrule.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Bir Billing <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">A small town\r\nsituated in the province of Himachal Pradesh in northern India. Bir Billing is\r\na famous vacation destination in Joginder Nagar valley known for adventurous\r\nactivities like paragliding, treks and meditation. There is an impact of\r\nTibetan culture because of Tibetan people settled in this area. Explore the\r\nbest with a <b>Himachal Pradesh Tour\r\nPackage</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Kasauli<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Situated in\r\ntransit from Chandigarh to Shimla, Kasauli is a hilly cantonment town that\r\nmakes for an optimal tranquil vacation spot, particularly for the weekend\r\nescape. Fundamentally known for its easy access from Chandigarh and Delhi,\r\nKasauli isn\'t about specific attractions or any adventurous activities, but for\r\nthe lovely resorts it has in this area and the perfect climate. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Kasauli is a\r\ncantonment town speckled with rich Victorian styled architectural buildings\r\nbuilt during the British colonial era who dwelled here years back. Kasauli is\r\none of the best spots for trekking and camping.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Tirthan Valley<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Tirthan Valley in\r\nKullu District of Himachal Pradesh is located at a height of 1600 meters above\r\nthe sea level. Getting its name from the Tirthan River coursing through it,\r\nTirthan Valley lies around 3 km from the passageway of Great Himalayan National\r\nPark. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">This spot is\r\nfilled with adventurous activities and a heaven for those who remain close to\r\nnature. The glorious Himalayan Mountain ranges covered with snow with Tirthan\r\nRiver flowing alongside, this valley is most popular for its adventurous\r\nactivities, trekking, trout fishing, and lavish and homely guest houses set in\r\nnature waiting to welcome you. Indulge in a captivating vacation with a <b>Himachal Pradesh Holiday Package!</b> <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Khajjiar<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Popularly known as\r\nthe \'mini Switzerland of India\', Khajjiar is a small town near Dalhousie with\r\nonly 20 km distance and is incredible for a day or overnight outing. Khajjiar\r\nis known for its lush glades, deodar woodlands, and cottages. There is a small\r\nlake in the knoll and you could partake in the view without help from anyone\r\nelse or opt for some adventure activities including paragliding, zorbing, and\r\nhorse riding.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Kufri<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Kufri is only 16\r\nkm away from the main hub of Shimla. It is a famous tourist spot for\r\nsnow-covered mountains, skiing and Kufri Zoo. Not to forget the main tourist\r\nattraction site in Kufri is the Mahasu peak located at an altitude of 2,720\r\nmeters above sea level and tourists will either need to trek or take a horse\r\nfrom the parking lot to reach the peak. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Mahasu Peak and\r\nFagu Valley are the primary attractions in Kufri however you need to take a\r\npony or hike up to the peak. When you arrive at the top after a horse ride, you\r\nwould need to partake in your time playing with snow or clicking photos. There\r\nare a couple of Instagram photography points and the view compensates for the climb\r\nyou had to undertake. You can also go karting at the Kufri Fun World, which has\r\nthe best Go-Karting. <b>Himachal Pradesh\r\nPackage </b>for those who want to enjoy a stress-free vacation!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Bilaspur<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Bilaspur is a\r\nsmall hill-station near Shimla. Here you can visit the famous forts, and the\r\nGobind Sagar Lake. And surprisingly, Bilaspur is India’s first well-planned\r\nhill-station and is famous for the man-made lake on river Satluj- the Gobind\r\nSagar Lake.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Dharamshala<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Dharamshala\r\ncertainly must be on your rundown as it is one of the best vacation\r\ndestinations in Himachal Pradesh. Renowned on account of its environment as\r\nwell as you will get to see how the multicultural Indian people are living in\r\nharmony with the Indo Tibetan community. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Malana<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Are you searching\r\nfor a digital detox, then, Malana is another quaint village in Himachal Pradesh\r\nthat you should visit. Located close to the Kullu Valley, Malana gives\r\nenchanting panoramic views of the Deo Tiba and Chandrakhani peaks. It is\r\nwithout a doubt one of the most mind-blowing vacationer spots in Himachal\r\nPradesh. Go for <b>Himachal Pradesh Tours </b>to\r\nexplore the off-the-beaten tracks!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Kasol<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Popularly referred\r\nto as the little Israel of India in Himachal Pradesh, it is situated in the\r\nParvati Valley and is one of the breathtaking hill-stations in Himachal\r\nPradesh. It\'s simply en route to the holy town of Manikaran.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Palampur<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Recorded as the\r\nunique spots of Himachal, Palampur is renowned for its tea gardens and zoo.\r\nThis is an optimal spot to visit with family; they will have the chance to\r\ndiscover beautiful and intriguing attractions. The scenic beauty will have you\r\nbeguiled and grateful to simple availability and number of accommodation\r\noptions. It is an ideal weekend escape from Delhi. Get captivated by the\r\nnatural splendor with our special <b>Himachal\r\nPradesh Tour Package</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Chail<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">A somewhat\r\ntranquil and immaculate heaven lying near Shimla, Chail is known chiefly for\r\nthe world\'s highest cricket ground and Chail Palace. The perfect heritage hotel\r\nsettled in the midst of pine and deodar trees. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">It is situated at\r\na higher height than the majority of the famous hill-stations encompassing it,\r\nwhich is the reason it offers unrivaled views on lavish vegetation for what\r\nit\'s worth. The Instagram-commendable views on pine woods, fog covered hills,\r\nand verdant valleys are what draw in nature lovers and for Instagram photo\r\nshots to this spot.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\"><b>Other important\r\nplaces to visit in Himachal Pradesh include: <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Solang Valley,\r\nKinnaur, Shoghi, Narkanda, Barot, Chamba, Mandi, Nahan, Kangra, Bhuntar, Lahaul\r\nvalley and so on. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Things to do in Himachal Pradesh<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\nis known for its grand landscape, which includes the glorious snow-covered\r\nmountains, lavish green backwoods, and spouting waterways and streams. Himachal\r\nPradesh, otherwise called the ‘Land of Snow’, is quite possibly the most well\r\nknown dream destination for nature lovers, trekkers, and anybody searching for\r\na tranquil retreat in the midst of an exotic surrounding with pleasant weather.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\ndraws in guests from everywhere around the world with its fascinating\r\nlandscape, which includes enchanting mountains and mesmerized views.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Presenting, the\r\nthings to do in Himachal Pradesh includes: Rafting, Trekking, Mountain cycling,\r\nmountain climbing, rafting, skiing, canyoning, hiking, kayaking, Paragliding,\r\nWildlife safari, camping, visiting the spiritual treasures. Enjoy with our Himachal Pradesh Package!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Best food to try out in Himachal Pradesh <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">In Himachal\r\nPradesh cooking has its major impacts from the neighboring states like Punjab\r\nand neighboring countries like Tibetan food. The locals here slant toward\r\nsavoring tangy and spicy eatables. The range of dishes of Himachal Pradesh\r\nreflects the fiery yet simple presence of individuals of this state.<o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Chana Madra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Dhaam</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Tudkiya Bhath</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Bhey</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Chha Gosht</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Siddu</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Babru</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Mittha</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Aktori</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Kullu Trout</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;mso-bidi-font-family:arial;color:black\"=\"\">Kaale </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\">Chane<span style=\"color:black\"> ka Khatta</span><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial;color:black\"=\"\">Tibetan Thukpa</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" mso-bidi-font-family:arial\"=\"\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Where to shop in Himachal Pradesh?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Shopping in\r\nHimachal Pradesh is a paradise for everybody. Be it&nbsp; the local handicrafts, shawls, wraps,\r\nsweatshirts, Tibetan handiworks and carpets, caps, wood and metal work, Kullu\r\ncloaks, pickles, jams and squashes, basketry, beads, artificial &nbsp;jewelry\r\nwooden articles, toys and more.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Best shopping\r\ndestinations in Himachal include: Shimla, Kullu, Manali, Dalhousie, Dharamshala\r\nand McLeodganj. A Himachal Pradesh trip<b> </b>is\r\nwaiting for you!<b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Best time to visit in Himachal Pradesh<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">A Himachal Pradesh trip can be planned\r\ndepending on what you want to explore. The best time to visit Himachal Pradesh\r\nis from March to June during the summer months. The climate is charming,\r\nwithout being excessively cold. Most of the treks are open in the month of\r\nMarch. You can even enjoy the snowfall in Spiti in March, if you are lucky.\r\nHowever, it is highly advisable not to travel during the rainy season.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>How to reach Himachal Pradesh?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>By air<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">There are three\r\ndomestic airports in Himachal Pradesh that connect to the rest of the country.\r\nThey are- Dharamsala, Kullu-Manali, and Shimla. The airports have flights from\r\nHimachal Pradesh to Delhi and Chandigarh. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>By train<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Himachal Pradesh\r\nhas restricted railway networks given the extreme territory. The Kalka Railway\r\nStation in Kalka provides rail connection in the state, yet there are a few\r\nother stations that can be used to get to Himachal Pradesh. The Kangra railway\r\nstation and the Joginder Nagar railway station fall on the line that starts at\r\nPathankot Junction in Punjab.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>By road<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">The roads in\r\nHimachal Pradesh are one of the most amazing you will find in any hilly\r\nlandscape. There are around 9 National Highways and around 19 State Highways\r\nthat cover every one of the important areas of Himachal Pradesh connecting to\r\nall the important places of the country like Delhi, Chandigarh, Dehradun,\r\nLeh-Ladakh, and so on. There are around 45 district roads that let you travel\r\nto even the remotest of spots in the state. The state is known for its\r\nsurprising bike trip lovers. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">A road trip to\r\nHimachal is every biker\'s desire.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Travelling Himachal during COVID times<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Get yourself\r\ntested 48 to 72 hours prior to leaving for Himachal Pradesh with your negative\r\nRT-PCR report with you. Continue wearing a mask while venturing out and keep up\r\nwith social distancing norms. Stay away from crowded areas or public\r\nget-togethers for your own personal safety.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Why opt for a Himachal Pradesh Tour Package?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">With Himachal Pradesh tour packages one can\r\nencounter the best of adventure, honeymoon, holidaymaking and more in one of\r\nIndia\'s desired vacation destinations. On account of its dazzling open country,\r\nlavish green glades, rich vegetation, off-beat tracks, unique cultural legacy,\r\nchaotic bazaars and ample of exciting adventurous activities. Captivating\r\nshrines and temples dot the valley of Kangra while colonial architectural\r\nbuildings embellish the towns of Shimla and Dalhousie.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;mso-bidi-font-family:=\"\" arial\"=\"\"><b>Why choose ‘I Need Trip\'?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">We at \'I NeedTrip\'\r\nwould be glad to help you to explore the stunning Himachal Pradesh. Plan your Himachal Pradesh tour with energizing\r\ntour packages presented by \'I Need Trip\'. Select a specific Himachal Pradesh holiday package\r\naccording to your choice with our Super Saver deals. With our immense\r\nexperience, we ensure that each Himachal\r\nPradesh tour is very coordinated and stress-free.<o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin;mso-bidi-font-family:arial\"=\"\">Plan your <b>Himachal Pradesh trip</b> with us and see\r\nwith your own eyes!<o:p></o:p></span></p>',NULL,NULL,NULL,'Himachal Pradesh Package, Holiday and Honeymoon Package Himachal','Tour to Himachal, Best Package Himachal, Book Himachal Tour, Book Himachal Holiday Package, Cheap Himachal Package, Best Himachal Honeymoon Package, Explore Himachal Package, Himachal Honeymoon, Himachal Trip Deals, Best Deals Himachal Pradesh.','Himachal Tour Package: Explore Himachal holiday and honeymoon package at affordable price. Plan your Himachal trip with Ineedtrip.com and get best holiday deals.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(6,'Sikkim','sikkim','Sikkim (India)',NULL,NULL,23,'23_1694432587.jpg',NULL,'101','India','2021-04-12 18:20:45','2021-04-12 18:20:45','1','0',NULL,'<p>Sikkim, a northeastern state of India, is a hidden gem known for its breathtaking natural beauty, rich cultural diversity, and serene ambiance. Nestled in the eastern Himalayas, Sikkim is the least populous state in India and is often referred to as the \"Land of the Gods.\" Here\'s a brief overview of Sikkim and some of the top places to visit in this enchanting state:</p><p>Overview of Sikkim:</p><p>Natural Abundance: Sikkim is renowned for its pristine landscapes, which include lush green valleys, cascading waterfalls, serene lakes, and towering snow-capped peaks. The state is home to the third-highest mountain in the world, Kanchenjunga.</p><p>Cultural Diversity: Sikkim is a melting pot of cultures and ethnicities, with communities like the Lepchas, Bhutias, and Nepalis living harmoniously. This diversity is reflected in the state\'s festivals, cuisine, and traditions.</p><p>Buddhist Influence: Buddhism is an integral part of Sikkim\'s culture, and you\'ll find many monasteries (gomphas) throughout the state. The Rumtek Monastery and Pemayangtse Monastery are notable examples.</p><p>Adventure Paradise: The state offers a wide range of adventure activities, including trekking, mountain biking, river rafting, and paragliding. The Goechala Trek is a popular choice for trekkers.</p><p>Places to Visit in Sikkim:</p><p>Gangtok: The capital of Sikkim, Gangtok is a bustling city nestled in the Himalayas. Top attractions include:</p><p>Rumtek Monastery: A beautiful and important Buddhist monastery.</p><p>Tsomgo Lake: A glacial lake surrounded by breathtaking scenery.</p><p>Nathu La Pass: A high-altitude pass on the Indo-China border, accessible with permits.</p><p>Ganesh Tok and Hanuman Tok: Scenic viewpoints offering panoramic views of the city.</p><p>Enchey Monastery: A serene Buddhist monastery with stunning architecture.</p><p>Pelling: A charming town with stunning views of Kanchenjunga. Must-visit places in Pelling include:</p><p>Pemayangtse Monastery: A historic and picturesque monastery.</p><p>Khecheopalri Lake: A sacred lake believed to fulfill wishes.</p><p>Rabdentse Ruins: Ancient ruins with a rich historical significance.</p><p>Lachung and Lachen: These villages are the gateways to North Sikkim and are known for their alpine beauty. Yumthang Valley, often called the \"Valley of Flowers,\" is a highlight.</p><p>Yuksom: The historic town where the first Chogyal (spiritual monarch) of Sikkim was consecrated. It\'s also the starting point for the Goechala Trek.</p><p>Namchi: A town known for its stunning landscapes and the world\'s largest statue of the Guru Padmasambhava at Samdruptse.</p><p>Zuluk: A less-visited but mesmerizing destination known for its winding roads, old silk route, and panoramic views.</p><p>Ravangla: A tranquil town with beautiful landscapes, monasteries, and the Buddha Park featuring a giant statue of Lord Buddha.</p><p>Dzongu: A secluded and pristine region inhabited by the Lepcha community, offering a glimpse into traditional Sikkimese culture.</p><p>Sikkim\'s serene environment, spiritual aura, and mesmerizing landscapes make it a destination that appeals to nature lovers, adventure enthusiasts, and those seeking a tranquil escape from the hustle and bustle of urban life.</p>',NULL,NULL,NULL,' \"Sikkim: The Jewel of the Eastern Himalayas - Explore its Beauty\"','Sikkim travel, Himalayan beauty, cultural diversity, Sikkim tourism, adventure in Sikkim',' Discover the pristine landscapes, rich culture, and adventure opportunities in Sikkim, the hidden jewel of the Eastern Himalayas. Explore top destinations and experience the serenity of this Himalayan wonderland.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','23_1694432587.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(7,'West Bengal','west-bengal','West Bengal (India)',NULL,NULL,12,'12_1694434660.jpg',NULL,'101','India','2021-04-12 18:20:45','2021-04-12 18:20:45','1','0',NULL,'<p>West Bengal, located in the eastern part of India, is a state known for its rich cultural heritage, diverse landscapes, and intellectual legacy. It is one of India\'s most populous states and boasts a unique blend of history, art, literature, and natural beauty. Here\'s a brief overview of West Bengal, along with some of the top places to visit in this culturally vibrant state:</p><p>Overview of West Bengal:</p><p>•<span style=\"white-space:pre\">	</span>Cultural Hub: West Bengal is often referred to as the \"Cultural Capital of India.\" It has been the birthplace of several prominent literary figures, artists, and intellectuals, including Rabindranath Tagore, who composed the national anthem of India.</p><p>•<span style=\"white-space:pre\">	</span>Art and Literature: The state has a strong tradition of art and literature, with Kolkata (formerly Calcutta) serving as a center for creativity and intellectual discourse.</p><p>•<span style=\"white-space:pre\">	</span>Spiritual Significance: West Bengal is home to various religious traditions, with Hinduism, Islam, and Buddhism coexisting harmoniously. The state hosts numerous temples, mosques, and monasteries.</p><p>•<span style=\"white-space:pre\">	</span>Natural Beauty: West Bengal offers diverse landscapes, from the lush greenery of the Darjeeling hills to the serene Sundarbans mangrove forest.</p><p>Places to Visit in West Bengal:</p><p>1.<span style=\"white-space:pre\">	</span>Kolkata (Calcutta):</p><p>•<span style=\"white-space:pre\">	</span>Victoria Memorial: A stunning marble edifice that is an architectural marvel and a museum dedicated to the colonial era.</p><p>•<span style=\"white-space:pre\">	</span>Howrah Bridge: An iconic cantilever bridge over the Hooghly River.</p><p>•<span style=\"white-space:pre\">	</span>Indian Museum: One of the oldest museums in India, known for its extensive collection.</p><p>•<span style=\"white-space:pre\">	</span>Dakshineswar Kali Temple: A famous Hindu temple dedicated to Goddess Kali.</p><p>•<span style=\"white-space:pre\">	</span>Kalighat Temple: Another significant temple dedicated to Goddess Kali.</p><p>•<span style=\"white-space:pre\">	</span>Mother House: The former residence of Mother Teresa, now a museum and pilgrimage site.</p><p>2.<span style=\"white-space:pre\">	</span>Darjeeling:</p><p>•<span style=\"white-space:pre\">	</span>Tiger Hill: A popular spot to witness the sunrise over the Himalayas, including the Kanchenjunga peak.</p><p>•<span style=\"white-space:pre\">	</span>Darjeeling Himalayan Railway: A UNESCO World Heritage Site and a delightful toy train ride.</p><p>•<span style=\"white-space:pre\">	</span>Tea Gardens: Explore the picturesque tea estates and learn about tea production.</p><p>3.<span style=\"white-space:pre\">	</span>Sundarbans:</p><p>•<span style=\"white-space:pre\">	</span>Sundarbans Mangrove Forest: Home to the Royal Bengal Tiger and a UNESCO World Heritage Site.</p><p>•<span style=\"white-space:pre\">	</span>Sajnekhali Wildlife Sanctuary: A haven for birdwatchers and nature enthusiasts.</p><p>4.<span style=\"white-space:pre\">	</span>Shantiniketan:</p><p>•<span style=\"white-space:pre\">	</span>Visva-Bharati University: Founded by Rabindranath Tagore, it\'s a hub of culture and art.</p><p>•<span style=\"white-space:pre\">	</span>Kala Bhavana: The university\'s art school known for nurturing artistic talents.</p><p>5.<span style=\"white-space:pre\">	</span>Digha and Mandarmani:</p><p>•<span style=\"white-space:pre\">	</span>Digha Beach: A popular seaside destination for beach lovers.</p><p>•<span style=\"white-space:pre\">	</span>Mandarmani Beach: Known for its long shoreline and water sports.</p><p>6.<span style=\"white-space:pre\">	</span>Bishnupur:</p><p>•<span style=\"white-space:pre\">	</span>Bishnupur Temples: Known for its terracotta temples, a UNESCO World Heritage Site.</p><p>7.<span style=\"white-space:pre\">	</span>Murshidabad:</p><p>•<span style=\"white-space:pre\">	</span>Hazarduari Palace: A grand palace with a thousand doors, now a museum.</p><p>•<span style=\"white-space:pre\">	</span>Nizamat Imambara: An exquisite Islamic structure.</p><p>8.<span style=\"white-space:pre\">	</span>Siliguri:</p><p>•<span style=\"white-space:pre\">	</span>Salugara Monastery: A Tibetan Buddhist monastery known for its tranquility.</p><p>•<span style=\"white-space:pre\">	</span>Kali Mandir: A Hindu temple dedicated to Goddess Kali.</p><p>West Bengal\'s rich cultural legacy, literary heritage, and natural wonders make it a captivating destination for travelers. Whether you\'re interested in exploring colonial history, admiring artistic creations, or simply enjoying the scenic beauty of the Himalayan foothills, West Bengal has something to offer for every type of traveler.</p>',NULL,NULL,NULL,'\"West Bengal Wonders: Exploring Culture, Nature, and History\"','West Bengal travel, cultural heritage, Darjeeling tea gardens, Sundarbans wildlife, West Bengal tourism',' Embark on a journey through the cultural treasures, natural beauty, and historical landmarks of West Bengal. Explore top destinations in this culturally vibrant state, from Kolkata\'s iconic sites to the serene Darjeeling hills and the mystic Sundarbans mangrove forest.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','12_1694434660.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(8,'Goa','goa','Goa (India)',NULL,NULL,11,'11_1627470085.jpg',NULL,'101','India','2021-04-13 17:27:07','2021-04-13 17:27:07','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Rated as one of the Most Popular Tourist Destinations in India, people from around the world admire it. Loaded with a plethora of activities, this place will surely stun you and leave you with lifetime memories. With its unique features in its kitty, Goa has so much to offer.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">You will be spoilt for choices. For the shopaholics out there, the flea market offers everything ranging from jewelry to handmade items. Don’t forget to try the authentic Goan food! For the adventure lovers dwell in the galore of water sports activities. We have covered it with a list of reasons &amp; tips to give wings to your plan.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Why is Goa so special?</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">From visiting the historical monuments to partying on the beachside till dusk or renting out a private room in a resort, Goa makes it all possible. Although it is the smallest Indian state in terms of its geographical area, Goa has a gamut of cultural practices. One can notice the Maharashtrian, Konkani and Portuguese influences, evident from the language, dress, dance, food, and architecture. The celebration of many different festivals is proof of its multicultural fame. A Goa trip is what you need now!</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>The Portuguese touch</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Goa was once under the influence of the Portuguese. This influence can be seen even today in the town with its touch all over the city. So, Goa is popular for its ancient Portuguese colony and the beautiful architectural buildings. Interestingly, you can rent these villas and enjoy a vacation, home away from home. Also, many local homestays with Portuguese architectural essence are available with all the basic amenities. Luxury Portuguese villas with pools are available for honeymooners.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Do check out the Goa Honeymoon Packages for a hassle-free vacation!</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Hit the exhilarating beaches</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Whether you are travelling with a group of friends or with your partner, fun is something you just cannot skip. When it’s Goa, all the fun lies in adventure, so, here are the best activities that we at INeedTrip believe will be the most enthralling to enroll in with your travel buddies.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Baga Beach</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Baga beach is one of the most popular and liveliest beaches in North Goa. It is one of the most vibrant and sparkling beaches where the fun never ends. There are a lot of activities to do in Baga and you cannot surely get bored there. It is known for the best beaches in Goa and popular activities like Jet Ski, Banana Boat Ride, Parasailing, Speedboat Ride and much more. You will find a lot of luxurious resorts and beach cottages. So do not miss to visit Baga beach and enjoy the young crowd and nightlife over there.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Arambol Beach</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Arambol beach is a beach that has a vibe of 80s movies and with a happening environment, you will just feel lost in the ’80s. This beach has a freshwater lake and a market nearby. Arambol also arranges night parties and with this peaceful environment, you will spend an amazing time out there.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Palolem Beach</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">The Palolem beach is situated in the extreme south Goa and sits at a distance of 25 kilometers from Margao city. This beach has an array of popular restaurants and cafes. This beach is popular with its delicious cuisines and with a lightning crowd; you can spend your time and have fun.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">With some of the best Goa Tour Package and Goa Honeymoon Package, relax and unwind from the monotony of busy lives.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Spellbinding water adventure activities</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">With plenty of beaches, guess what you can’t miss out on? Goa is famous for thrilling water sports such as parasailing, jet skiing, wakeboarding and knee boarding, scuba diving, kayaking, snorkeling, white water rafting and banana boat riding. Don’t want to miss out right? Let Goa Holiday Packages do the trick for you.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Mouth watering Goan cuisine</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Goa’s beaches are lined with shacks ready to serve you exotic seafood directly caught from the sea. Some of these shacks are opened 24/7. These restaurants serve you with a blend of local Goan and Portuguese flavors, also continental food and lots of alcohol options. Drink till you pass out!</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Dudhsagar waterfalls</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Have you seen the stunning waterfalls, where the train line passes and most movies are filmed here? Well it’s here in Goa; you cannot miss the scene. Located at a height of 1017 feet, the best time to witness this beauty is right after the monsoons.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Shopping in the flea markets of Goa</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">The flea markets of Goa are the best spot to shop till you drop as one can buy some unique stuff for oneself as well as for dear ones. Three best shopping places in Goa including Mapusa Market, Saturday Night Bazar and Anjuna Flea Market are the best options for shopaholics to buy items like dazzling jewelry items, handmade crafts, funky accessories and boho dresses and herbs. Shopping freaks with good bargaining skills will surely be able to fill up their bags with lots of sumptuous items here.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Cruise ship casinos&nbsp;</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">You can play games like Rummy, Stud Poker, Black Jack and Roulette on one of Goa’s numerous cruise ship casinos. These luxury cruisers are furnished with everything you need to try your luck on a fun evening. From a host of gambling activities, music, and food to drinks onboard a luxury ship- These liners are equipped with everything. Exciting, right? Go for the Goa Trip Package to get exciting deals and offers.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>Amazing night clubs for the party animals</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Without a doubt, extreme party lovers are found in Tito’s Café Mambo, awarded the ‘best nightclub in Goa’. For those hoping for an entertaining night, it is one of the popular spots to chill out. The open-air nightclubs are the most popular hubs to party till dusk. Enjoy the dazzling nightlife culture in Goa till you get tired.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>So, how to reach the party capital of India?</b></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">The nearest international airport is Goa International Airport (Dabolim Airport), which is connected to all the important states in India. It is located at a distance of 25 km from Panaji.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Via railways, the nearest railway stations in Goa are Madgaon and Vasco-Da-Gama. These railway stations are linked to all the major states in India.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">You can hop on a state or private bus to Goa from major parts of India. Goa has two bus terminals which are located in Panaji and Kadamba. For the convenience of the people and the tourists, Goa has one of the best local transports.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\">Goa has some of the best resorts and with a complete Goa Holiday Package; you can indulge in a hassle-free vacation. These resorts offer a number of activities, all the basic amenities and services to help their guests have a great time to relax and enjoy.</font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Cambria, serif\"><b>So stay at the best resort, spend less &amp; enjoy unlimited fun activities that’s included in it for you.</b></font></p>\r\n',NULL,NULL,NULL,'Explore Goa Tour Packages, Goa Holiday and Honeymoon Package ','Holiday Package Goa, Tour Package Goa, Book Goa Tours, Goa Package, Goa Honeymoon, Book Goa Trip, Goa Deals, Goa Holiday Deals, Book Honeymoon Package.','Goa Tours: Ineedtrip offers best deals to Goa holiday tour package and honeymoon packages. Click now to get exclusive Goa deals and Goa trip package with airfare.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(9,'Meghalaya','meghalaya','Meghalaya (India)',NULL,NULL,40,'40_1627470140.jpg',NULL,'101','India','2021-04-15 11:08:18','2021-04-15 11:08:18','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Meghalaya is a breathtaking North-eastern\r\nstate that offers a bunch of captivating attraction sites, food, activities and\r\nfestivals to the sightseers. Out of many, the main tourist attraction sites are\r\nCherrapunji and Shillong. Meghalaya is a gem in the North-eastern part of\r\nIndia, totally unique. The place is known for its simple yet so exuberant and\r\nwelcoming natives.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">The capital of Meghalaya is Shillong, and\r\nit\'s the most urbanized region you will find in this state. With its dazzling\r\nlakes all over the town, and the slopes encompassing it, Shillong is happily\r\nreferred to as the ‘Scotland of the East’. Shillong has a lot of British\r\ncolonial influence and its British architectural buildings are evident. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">And did you\r\nknow? </span></i><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">The\r\ncleanest village in Asia is located in Meghalaya in a place called Mawlynnong.\r\nSituated on a spectacular location in between the borders of India and\r\nBangladesh, this village is absolutely clean. Bamboo dustbins are placed in\r\nevery corner of the street to ensure eco-friendly trash disposal. Do check our\r\npopular <b>Meghalaya Holiday Package!</b><o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">To make your\r\nvacation stress-free, we have jotted down the best destinations to visit and\r\nexplore in Meghalaya. <o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Shillong,\r\n‘Scotland of the East’<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Famously known as the ‘Scotland of the East’,\r\nShillong is quite possibly the most visited tourist place in Meghalaya. On the\r\nagenda of every traveler who visits the northeast. Completely undisturbed from\r\nthe bustling city life, it has forested slopes, charming environment,\r\npicturesque landscape which draws in many vacationers from around the world.\r\nOne of the best honeymoon destinations, check out the <b>Meghalaya Honeymoon Package.<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\"><b><i>Some of the famous tourist spots in Shillong\r\ninclude:</i></b><o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Don Bosco Centre for Indigenous Cultures</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Laitlum Canyons</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Umiam Lake</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Ward’s Lake</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Air Force Museum</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">All Saints Church</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Cathedral Catholic Church</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Butterfly Museum</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">David Scott Trail</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">India Orchidarium and Botanical Garden</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Spread Eagle Falls</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Shillong Peak</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Elephant falls</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l2 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Krem Liat Prah</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><b>Cherrapunji,\r\nthe region with the highest rainfall </b></span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Cherrapunji in Meghalaya also referred to as\r\nSohra or Churra was previously known as the wettest place on earth. Situated\r\naround 50 km from Shillong, this sub-divisional town is popular for its rich\r\nverdure and exciting attractions. It is known for its double-decker living root\r\nbridge. In spite of the fact that Mawsynram is currently the wettest place on\r\nearth, Cherrapunji holds the record for the highest rainfall. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Aside from the popular living root bridge,\r\nother thrilling spots include the Mawsmai Caves, Krem Phyllut and Asia\'s\r\ncleanest town Mawylyngnong is another renowned place of interest here. Visitors\r\ncan live and encounter the food and local culture of the village. Truly a\r\nmesmerizing, <b>Meghalaya Tour!</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\"><b><i>Here’s a checklist of the best scenic places\r\nto visit in Cherrapunji that adorn the area.</i></b><o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Nohkalikai Falls</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Double Decker Living Root Bridge</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Eco Park</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Ka Khoh Ramhah</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Thangkharang Park</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Nokrek National Park</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Nohsngithiang Falls</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Mawsmai Cave</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Mawlynnong Village</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo3;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Mawlynnong Waterfalls</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Tura, the\r\nadministrative headquarters of the West Garo Hills<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Situated in the western Meghalaya, Tura is\r\nthe administrative headquarters of the West Garo Hills district. Tura is known\r\nfor its eco-traveler center point of the state. It’s distance is about 311 km\r\naway from Shillong and 219 km away from Guwahati in Assam. <b>Meghalaya packages</b> will let you enjoy the glory of nature!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Unlike Shillong, which is becoming\r\nexceptionally multicultural, Tura has its own local Garo roots. Tura and\r\ndifferent areas of the locale brag of rich undisturbed biodiversity and\r\nstunning attractions such as waterfalls, caves and creeks. The main languages\r\nspoken here are Garo and English.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Balpakram\r\nNational Park, the \'land of perpetual winds\'<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">The word Balpakram implies the \'land of perpetual\r\nwinds\', and the national park is honored with breathtaking hills and scenic\r\nbeauty.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Balpakram National Park is situated in the\r\nsouthern Garo Hills in Meghalaya, around 167 km from Tura. It lies at an\r\naltitude of above 3,000 feet. The Park is a renowned national park which is\r\nnotable for its perfect lush green thick forest. A <b>Meghalaya Trip </b>will surely awe-inspire you!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Mawsynram,\r\nthe wettest place on earth<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Famous as the wettest place on the planet,\r\nthe interesting village of Mawsynram is only at a distance of 61 km south of\r\nShillong. A nature’s delight and the perfect weekend trip, Mawsynram beats\r\nCherrapunjee as the wettest place on earth by a slight margin.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Dawki, the\r\nland with crystal clear river water<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Dawki is a small city situated on the border of\r\nIndia and Bangladesh. A blooming trade center between the two countries. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">What makes Dawki a vacationer magnet is the\r\nUmngot River, which is famous for its crystal clear water. And when we mean\r\ncrystal clear water, it means you can see the shadow of your boat into the foot\r\nof the river drifting with your boat. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Another exhilarating spot is the Dawki\r\nBridge, a suspension bridge over the river. Experience the wonder of Meghalaya\r\nwith the best <b>Meghalaya holiday package.</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Garo hills,\r\ndensely populated forest & rare fauna<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">The Garo hills are a part of the Patkai hills\r\nand extend till the Indo-Myanmar border. It gets its name from the Garo tribe\r\ninhabiting the area. The Garo Hills spread over 8000 sq meters of the region.\r\nThe hills are home to the densely populated forest and rare birds and animal\r\nspecies. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">The Garo hills are divided into 5 districts:\r\nthe North Garo Hills, West Garo Hills, the East Garo Hills, South Garo Hills,\r\nand the South-West Garo Hills. Customized <b>Meghalaya Tour</b> package just for you!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Jaintia Hills,\r\nformerly famous as Jaintia Kingdom<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Earlier known as the Jaintia Kingdom, the\r\nJaintia Hills is a place that is known for lofty hills filled with rich\r\nvegetation and minerals. It is also a part of the Patkai hill that stretches\r\nout across the Indo-Myanmar borders. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Although a small hill district when compared\r\nwith the Khasi and Garo Hills, the Jaintia Hills actually flabbergasts voyagers\r\nwith its immaculate lakes and rich vegetation. An exciting <b>Meghalaya holiday </b>package is waiting for you!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Jowai is the administrative headquarters of\r\nthe Jaintia Hills and has two districts: the East Jaintia Hills and West\r\nJaintia Hills. It is the only developed town in this region. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Best time to\r\nvisit Meghalaya<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">With its impassioned stunning landscape and\r\nheaviest rainfall, Meghalaya state has stowed a conspicuous spot among the\r\nplaces of interest of India. Meghalaya has a favorable climate all year round\r\nand can be visited in any one of the seasons. <o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Summer (April-June) </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;mso-hansi-theme-font:=\"\" major-latin;color:black\"=\"\">Monsoon (July-September)</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;=\"\" color:black\"=\"\">Autumn (October-November) </span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:=\"\" major-latin;mso-hansi-theme-font:major-latin\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Book from our Meghalaya Tour Package in order to know Meghalaya better!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>How to reach\r\nMeghalaya?<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">The only airport in Meghalaya is Shillong\r\nAirport. The airport is connected to main airports of India and welcomes flight\r\non a daily basis. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Meghalaya is only 85 km away from Guwahati,\r\nso you take a bus, taxi, or cab to reach there. The route between Meghalaya and\r\nGuwahati is known for offering picturesque vistas. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Choose the best season for a romantic getaway\r\nwith our special Meghalaya Honeymoon\r\nPackage!<b><o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>The best\r\nfood to try out in Meghalaya<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Pumaloi, bamboo shoots, jadoh, dohkhlieh,\r\nnakham bitchi, and momos are the popular food items to try out in Meghalaya.\r\nAlso, don’t forget to try out rice with spicy meat and fish dishes. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Why consider\r\nholidaying in Meghalaya?<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Meghalaya is the right tourist spot for\r\npeople who love the hills, lush green forests and solitude. In case you are\r\nsearching for some tranquility among the wet mountains, holidaying in Meghalaya\r\nwill surely not baffle you. A <b>Meghalaya\r\ntrip </b>will surely make you happy!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\" style=\"\"><b>Is it safe\r\nto visit Meghalaya during COVID times?<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">It is safe to travel to Meghalaya, but it is\r\nyour responsibility to get fully vaccinated (complete 2 doses), follow all the\r\nmandatory COVID guidelines mentioned by the government such as wearing masks at\r\nall the public places, maintaining social distancing, washing or sanitizing\r\nhands after entry & exit, etc.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Do carry a Negative RT-PCR Test report and\r\nfollow the COVID protocols at all times. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Why choose\r\n‘I Need Trip’ for a vacation in Meghalaya?<o:p></o:p></font></span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Why not pack your bags right away to explore\r\nthis rainy destination? Visit the ‘I Need Trip’ website and go through the <b>Meghalaya packages</b> that we offer. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\">Sale Alert!</span></i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" cambria\",\"serif\";=\"\" mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"=\"\"> <o:p></o:p></span></font></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" cambria\",\"serif\";mso-ascii-theme-font:major-latin;=\"\" mso-hansi-theme-font:major-latin\"=\"\"><font face=\"Arial\">Get in touch with us right now to book your <b>Meghalaya Tour Packages </b>with the most\r\naffordable prices!</font><o:p></o:p></span></p>',NULL,NULL,NULL,'Book Meghalaya Tour Package, Meghalaya Holidays and Honeymoon Package','Tour to Meghalaya, Best Package Meghalaya, Book Meghalaya Tour, Book Meghalaya Holiday Package, Cheap Meghalaya Package, Best Meghalaya Honeymoon Package, Explore Meghalaya Package, Meghalaya Honeymoon, Meghalaya Trip Deals, Best Deals Megalaya.','Meghalaya Packages: Ineedtrip offers best deals to Meghalaya holiday and honeymoon packages. Click now to get exclusive Meghalaya tour package at best rates.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(10,'Assam','assam','Assam (India)',NULL,NULL,10,'10_1627470062.jpg',NULL,'101','India','2021-04-15 11:08:18','2021-04-15 11:08:18','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Relieving splendor, strange vacation destinations, otherworldly vibes, the sacred river, welcoming people and fanatical culture, Assam brags bounty interesting mysteries. The state is generally popular for its perfectly cut, jade green tea gardens.</span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 16px; font-family: Arial;\">The state turns out to be the place where there are many wildlife reserves, which are further home to the one horned rhino, one of Assam\'s tourism most popular mascots.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 16px; font-family: Arial;\">Other than that Assam is home to the Great Indian One Horned Rhinoceros, Muga Silk and the world\'s largest river island-Majuli. Being one of Northeast India\'s notable seven sisters, Assam is tied in with seeing a powerful blend of history, culture, and nature simultaneously. With an Assam Holiday Package tourists can enjoy a hassle-free vacation!</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Places\r\nto visit in Assam<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Situated in the faraway\r\nNortheast India, Assam is a part of the enthralling and prominent seven\r\nsisters, which are difficult to reach yet their ageless forests and impressive\r\nmountain ranges are consistently on the rear of pretty much every voyager\'s\r\ndream destination to explore.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Here\r\nare some of the best places to visit in Assam<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Guwahati, the largest\r\ncosmopolitan city in the North-East<o:p></o:p></b></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Often described as the\r\nGateway of North-East India, it is the biggest cosmopolitan city in the\r\nNorth-East also. Cuddling the tempestuous Brahmaputra River and sharing its\r\nborder with the Shillong plateau, Guwahati has been honored with enormous\r\nnatural splendor that one can clearly observe, when one maneuvers towards the\r\nsuburbia of the city. Explore best offer on&nbsp;<b>Assam holiday package</b>!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Since it is the focal point\r\nof many appealing vacation destinations in Assam like Kamakhya Temple,\r\nKaziranga National Park, Bamuni Lake, UmanandaTemple and Sualkuchi, sightseers\r\nneed to visit this extraordinary place.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Places\r\nto visit in Guwahati:<o:p></o:p></b></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Kamakhya temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Umananda Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Basistha temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Navagraha Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Sukreshwar temple or\r\n     Itakhuli hill&nbsp;</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Janardana Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Ugra Tara Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Madan Kamdev Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">ISKCON<span style=\"color:black\"> temple</span><o:p></o:p></font></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Ambubachi Mela</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Hajo</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Srimanta Sankardev\r\n     Kalakshetra</span><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Guwahati War Memorial</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Assam State Museum</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Guwahati Planetarium</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Guwahati, Regional Science\r\n     Centre/ Science museum</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">River cruise in Brahmaputra\r\n     River</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Guwahati zoo</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Pobitora Wildlife Sanctuary</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Deepor Beel</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Saraighat Bridge&nbsp;</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo3;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Chandubi Lake</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>A tip:</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">You can also take a trip to\r\nShillong from Guwahati, since it is only 99.2 km. You can either take a bus, or\r\nopt for a shared or booked taxi at a very cheap price from Khanapara, Guwahati.\r\n<b>Assam Tour Package </b>allows you to\r\nexplore this incredible destination.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Sualkuchi</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Sualkuchi is a little drowsy\r\nvillage that shows the culture and traditions of Assam. The weaving town is\r\nnonetheless, most popular for its abilities and craftsmanship for delivering\r\nperhaps the best kind of silk in the state and consequently procuring itself an\r\nepithet of \'Manchester of East\'. One can observe the identity and provincial\r\nperspective on the village in the type of the bamboo houses and dividers\r\ncanvassed with mud to keep up with cool in summers and warm in winters. <b>Assam Package </b>for an awesome holiday\r\nexperience!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Kaziranga\r\nNational Park</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Kaziranga National Park is\r\nhome to the largest population of the one horned rhino in the world, as well as\r\nits varied vegetation. It is one of India\'s national treasures. Situated in the\r\nterritory of Assam in North-East India, the Kaziranga National Park is shared\r\nby the districts of Nagaon, Golaghat and Karbi Anglong putting it generally at\r\nthe focal point of the state. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Roughly around five hours\r\nfrom Guwahati, Kaziranga National Park stands tall as the embodiment of\r\neffective wildlife conservation in India. It was given the status of World\r\nHeritage Site by UNESCO in 1985. <b>Assam\r\nTour Package </b>for the wildlife lovers!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Manas\r\nNational Park</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">The Manas National Park is a\r\nUNESCO Natural World Heritage site, a Project Tiger Reserve, an Elephant\r\nReserve, and a Biosphere Reserve as well. Manas National Park is one of the\r\nmost outstanding kept national parks in India and is the only tiger reserve famous\r\nfor the golden langur and the red panda.<i><o:p></o:p></i></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Majuli</b></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Majuli\'s eye-soothing\r\nnatural landscapes make it one of the top vacationer places in Assam. It is\r\npopular as the largest river island and the main Satras set up by Sankardeva\r\nand Madhavdev.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Best places to visit here:</b><o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Kamalabari Satra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dakhinapat Satra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Garmur</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Auniati Satra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Tengapania</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chetia Gaon</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l3 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Bangalpukhari</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\">Assam\r\nTours </span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n\" arial\",\"sans-serif\"\"=\"\">for a memorable and spiritual experience!<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Dibrugarh</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Dibrugarh mirrors the unique\r\nfeatures of its parent state, Assam. Visiting this quaint small town once in\r\nyour life would give you a breathtaking encounter of something different from\r\nthe rest of India. So, why not pack your bags and explore on your own! But,\r\nbefore that, have a look at the top places to visit in Dibrugarh.<o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Namphake Village</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Naharkatia</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dehing Patkai Wildlife\r\n     Sanctuary</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n     \" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Joypur Rainforest</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Radha Krishna Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Shri Jagannath Temple</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Barbarua Maidam</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dehing Namti Satra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dinjoy Satra</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo4;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Jokai Botanical Garden</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Here, you can also enjoy the\r\nauthentic Assamese cuisines &amp; shop at the famous Bhutia market. Enjoy the\r\nmost with an <b>Assam Holiday Package!<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Sivasagar</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">In a real sense, the word\r\nSivasagar means ‘The Ocean of Lord Shiva’. It is one of the famous vacation\r\ndestinations in Assam. This Upper Assam city has filled in as the throne of the\r\nAhom kingdom for around 6 centuries, so you can expect a great deal of Ahom\r\nimpact in the architecture and culture here.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Sivasagar was figured as the\r\nGolden Land by the Ahoms, who by chance arrived at this beautiful spot and\r\nobserved it adequately commendable to rule this region. Truly, an extraordinary\r\nspot for history lovers! <b>Assam Trip </b>for\r\na mesmerizing experience!<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">As of now, the city is among\r\nthe most significant tea and oil trading hubs in Assam. Additionally, since the\r\ncity has an impressive background, photographic artists are probably going to\r\nget drawn to it also.<o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Shivadol</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Gaurisagar Tank</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Joysagar Tank and Temples</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Rang Ghar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Charaideo</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Ahom Museum</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Talatal Ghar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l2 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Gargaon Palace</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Dibru\r\nSaikhowa National Park</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Dibru Saikhowa National Park\r\nis one of those spots which boast a rich assortment of vegetation, and many are\r\nconsidered to be endangered. It is one of a handful of the protected sites in\r\nthe Endemic Bird Area of the Plains of Assam.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Gibbon\r\nWildlife Sanctuary</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Gibbon Wildlife Sanctuary is\r\nonly 20 km from Jorhat downtown area. It is an asylum for Assam\'s Hoolock\r\nGibbon populace. Encircled by the Brahmaputra River on one side and tea gardens\r\non the other side, this wildlife sanctuary is among the best that makes Assam\r\ntour for wildlife enthusiasts and adventure lovers, an enthralling experience. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Tocklai\r\nTea Research Centre</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">The Tocklai Tea Research\r\nCentre was set up in 1911. To your utter surprise, it is one of the largest and\r\noldest tea research centers in the world. All the logical information that the\r\nworld holds about tea, has come from this center in Assam. Different researches\r\non the extraction, cultivation, and preparation of tea have been directed here\r\nfor a long time to improve and retain tea\'s nutritional qualities. One of the\r\nbest things to do in a <b>Assam tour</b>.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Digboi</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Famously known as the oil\r\ncity of Assam, Digboi envelops rich green tea plants and is the point of\r\nconvergence of Tinsukia’s economic activities. Popular for lodging India\'s\r\noldest refinery, this town in Assam has a historic importance; India’s first\r\ncrude oil was found here in the nineteenth century. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Aside from its critical\r\nhistorical episodes revolving around oil production, Digboi is entrancing and\r\nconveys a rural allure for it. One can discover traditional textiles, beautiful\r\ngold grounds, Italian style architecture, and thus substantially more around\r\nhere. Go for customized <b>Assam Tour\r\nPackage!</b><o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Diphu</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Diphu is the headquarters\r\nfor the area of Karbi-Anglong in southern Assam, is situated a good ways off of\r\naround 250 Km from Guwahati. It is a little beautiful town which is the perfect\r\nweekend getaway well known cookout spot for individuals from neighboring areas.\r\nOther than being a charming and calm escape, Diphu has well-known tourist spots\r\nin and around drawing in sightseers.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Sadiya</b><o:p></o:p></font></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Hiding out in the Himalayan\r\nfoothills, Sadiya sits at the conversion of three major rivers, Dihing (which\r\nis known as Tsangpo in Tibet), Lohit, and Dibang that makes the course of the\r\nBrahmaputra River strong.</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Arial; font-size: 12pt;\">Sadiya is one of the\r\nsub-divisional headquarters of Tinsukia district and is renowned for the\r\nDhola–Sadiya Bridge; one of the longest river water beam bridges in India,\r\nlinking the two north-east states- Assam and Arunachal Pradesh. &nbsp;Explore\r\nthe best </span><b style=\"font-family: Arial; font-size: 12pt;\">Assam holiday packages</b><span style=\"font-family: Arial; font-size: 12pt;\">!</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>Traditional\r\ndishes to try out in Assam<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Assam is one of the unique\r\nstates of North-east and the method of living, the food habits, and its culture\r\nis totally different from the other states of India. The food of Assam is very\r\nunique, one of a kind, and unobtrusive to taste. If you are a food lover and\r\nwant to get a taste of different dishes and local cuisines then you should\r\ndefinitely visit Assam and get lost in the flavorful traditional cuisine that\r\nwill fulfill your taste buds.</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b style=\"font-family: Arial; font-size: 12pt;\">Best dishes to try:</b></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\"><li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Khaar</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Masor tenga</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Aloo pitika</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Dhekia xaak</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Duck meat curry</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Pigeon meat&nbsp;</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Ou&nbsp;tenga jul</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Chicken with bamboo shoot</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Aloo/Bengena&nbsp;Pitika</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>Best traditional sweet\r\ndishes to try: </b><o:p></o:p></font></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Teel Pitha</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Narikol pitha</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Sawolor pitha</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Gooror Payas</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Pice Payas</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:\" arial\",\"sans-serif\";color:black\"=\"\">Narikolor Laru</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><font face=\"Arial\"><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\";=\"\" color:black\"=\"\">Doi-Chira</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><o:p></o:p></span></font></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\" style=\"\"><b>For\r\nthe Shopaholics, enjoy shopping at the bustling markets &amp; modern malls<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">From clamoring markets to\r\nthe luxury malls, Guwahati offers the full reach of shopping encounters for the\r\ntantalizing shopping experience. You can wander around the local markets for a\r\nsample of the culture this city has to bring to the table or visit the malls to\r\ncheck out the latest trendy clothing collections and food.&nbsp;</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b>When in Guwahati, you can\r\nshop in:</b></font></span></p><ol><li style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Fancy Bazaar, the Chandni Chowk of Guwahati’</span></font></li><li style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Paltan Bazaar</span></font></li><li style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Ganeshguri market</span></font></li><li style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Uzan Bazaar</span></font></li><li style=\"text-align: justify;\"><font face=\"Arial\"><span style=\"font-size: 16px;\">Pan Bazaar</span></font></li></ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\"><b></b></font></span><span arial\",\"sans-serif\"\"=\"\" style=\"text-indent: -0.25in; font-family: Arial; font-size: 12pt; line-height: 115%;\">Opt for<b> Assam Tour Package</b></span><b style=\"text-indent: -0.25in; font-family: Arial;\"><span style=\"font-size: 12pt; line-height: 115%; color: rgb(95, 99, 104); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </span></b><span arial\",\"sans-serif\"\"=\"\" style=\"text-indent: -0.25in; font-family: Arial; font-size: 12pt; line-height: 115%;\">for a memorable&nbsp;<b>Assam\r\ntrip</b>!</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Best\r\ntime to visit Assam<o:p></o:p></font></span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Assam is an all year round\r\ntourist destination. Assam encounters neither too hot nor too cold climatic\r\nconditions. However, the best ideal month to visit Assam is from October to\r\nApril, the climate is lovely with radiant days and cool evenings, the rainfall\r\nis moderate, and the paddy fields look dazzling.<b><o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\" style=\"\"><b>How\r\nto reach Assam?<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\">\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:\" arial\",\"sans-serif\"\"=\"\"><font face=\"Arial\">Assam is situated in the\r\nextreme north-eastern part of India and is referred to as the entryway into the\r\nNortheast. You can easily reach Assam via air, rail or road. With the <b>Assam Tour Package </b>enjoy a stress free\r\nvacation!</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Here are a couple of\r\nalternatives for you to arrive at Assam in a stress free way:<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">By Air:&nbsp;The major\r\nInternational airport of Assam is Lokpriya Gopinath Bordoloi Airport located in\r\nGuwahati. Regular flights fly down to Guwahati from major cities like Delhi,\r\nMumbai, Bangalore, and Kolkata and so on.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">By Rail:&nbsp;The railway\r\nhub of Guwahati is linked to all the important places of India like Delhi,\r\nMumbai, Bangalore, Kolkata, Cochin, and Trivandrum and so on.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">By Road:&nbsp;Assam is\r\nconnected all the national highways of India. Some of them are: NH31, NH37,\r\nNH38, NH40 and NH52.</font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><span style=\"font-size: 12pt; line-height: 115%;\"><b>Why\r\nvisit Assam?</b></span><span style=\"font-size: 12pt; line-height: 115%;\"><o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">To be a part of the joyful\r\nfestival celebration visit in the month of April; look at one of the sort\r\nnature wonders- waterway island at Majuli; visit the most famous wildlife\r\nnational parks; pray your respects at the famous Kamakhya Temple; go boat\r\ncruising on the Brahmaputra river; purchase traditional pure silk garments and\r\npontoon over the savage Jia Bhorali River. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Assam is tied up with exotic\r\nfestive seasons and alluring beauty throughout the year.<o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\" style=\"\"><b>Why\r\ngo for a tour package for a vacation in Assam?<o:p></o:p></b></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><font face=\"Arial\"><b><span style=\"font-size: 12pt; line-height: 115%;\">Assam\r\nTour Packages</span></b><span style=\"font-size: 12pt; line-height: 115%;\"> lets you explore all the famous tourist\r\nspots in Assam in a tranquil way. It takes the voyagers on a thorough and\r\ncharming tour to this dreamlike land. With a tour package one can go with\r\nfamily, companions, mates, or even alone.<o:p></o:p></span></font></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Why\r\nchoose ‘I Need Trip’ for a holiday package to Assam?<o:p></o:p></font></span></b></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Our budget-friendly and\r\nall-inclusive <b>Assam holiday packages</b>\r\nand deals offer the sightseers an unwinding yet wonderful stay. Our dedicated\r\nteam members endeavors its best to deliver the best experience to your tour to\r\nAssam. <o:p></o:p></font></span></p><p class=\"MsoNormal\" style=\"text-align:justify\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Assam\r\nHoneymoon Package </font></span></b><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">is waiting for couples to have the best time!\r\nWe offer every one of the conveniences and offer a satisfying tour without\r\nletting you pay extra and explore more.&nbsp;</font><font face=\"Arial, sans-serif\"><o:p></o:p></font></span></p>',NULL,NULL,NULL,'Book Assam Tour Package, Assam Holiday Packages, Assam Trip','Book Assam Package, Tour Assam, Assam Tour, Book Assam Tour Package, Assam Package, Assam Trip, Assam Trip, Book Assam Tour, Trip To Assam.','Assam Package: If you are planning to visit Assam. Book Assam tour package and get exciting deals of Assam holiday and honeymoon packages at INeedTrip.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(11,'Uttar Pradesh','uttar-pradesh','Uttar Pradesh (India)',NULL,NULL,6,'6_1694434362.jpg',NULL,'101','India','2021-04-15 15:44:05','2021-04-15 15:44:05','1','0',NULL,'<p>Uttar Pradesh, often abbreviated as UP, is a diverse and historically significant state located in northern India. It is the most populous state in the country and is known for its rich cultural heritage, historical landmarks, and religious importance. Here\'s a brief overview of Uttar Pradesh, along with some of the top places to visit in this multifaceted state:</p><p>Overview of Uttar Pradesh:</p><p>•<span style=\"white-space:pre\">	</span>Historical Significance: Uttar Pradesh is steeped in history and is home to several iconic historical sites, including the Taj Mahal, one of the Seven Wonders of the World, in Agra. It has also been the epicenter of numerous dynasties, including the Mughals and the Nawabs of Awadh.</p><p>•<span style=\"white-space:pre\">	</span>Religious Diversity: The state is a melting pot of various religious traditions. It is known for the Kumbh Mela, the world\'s largest religious gathering, which takes place in Prayagraj every 12 years. Varanasi, one of the oldest continuously inhabited cities in the world, is a spiritual hub for Hindus.</p><p>•<span style=\"white-space:pre\">	</span>Cultural Heritage: Uttar Pradesh has a vibrant cultural scene, with traditional music, dance, and art forms like Kathak dance and Hindustani classical music thriving in the region.</p><p>•<span style=\"white-space:pre\">	</span>Culinary Delights: The state boasts a rich culinary heritage, with dishes like kebabs, biryani, and sweets like petha and jalebi being popular.</p><p>Places to Visit in Uttar Pradesh:</p><p>1.<span style=\"white-space:pre\">	</span>Agra:</p><p>•<span style=\"white-space:pre\">	</span>Taj Mahal: The iconic white marble mausoleum, a UNESCO World Heritage Site, and a symbol of eternal love.</p><p>•<span style=\"white-space:pre\">	</span>Agra Fort: A massive red sandstone fort with historical significance and stunning architecture.</p><p>•<span style=\"white-space:pre\">	</span>Fatehpur Sikri: A UNESCO World Heritage Site and an ancient Mughal city with palaces, mosques, and a unique history.</p><p>2.<span style=\"white-space:pre\">	</span>Varanasi (Benares):</p><p>•<span style=\"white-space:pre\">	</span>Kashi Vishwanath Temple: A renowned Hindu temple dedicated to Lord Shiva.</p><p>•<span style=\"white-space:pre\">	</span>Ghats of Varanasi: A series of steps along the Ganges River, known for religious ceremonies and rituals.</p><p>•<span style=\"white-space:pre\">	</span>Sarnath: A significant Buddhist pilgrimage site where Lord Buddha delivered his first sermon.</p><p>3.<span style=\"white-space:pre\">	</span>Prayagraj (Allahabad):</p><p>•<span style=\"white-space:pre\">	</span>Triveni Sangam: The confluence of the Ganges, Yamuna, and Saraswati rivers, considered a holy site.</p><p>•<span style=\"white-space:pre\">	</span>Allahabad Fort: A historic fort built by Emperor Akbar.</p><p>4.<span style=\"white-space:pre\">	</span>Lucknow:</p><p>•<span style=\"white-space:pre\">	</span>Bara Imambara: An architectural marvel with a central hall and a labyrinth known as the Bhulbhulaiya.</p><p>•<span style=\"white-space:pre\">	</span>Chota Imambara: A beautiful Shia Muslim shrine known for its grandeur.</p><p>•<span style=\"white-space:pre\">	</span>Rumi Darwaza: A magnificent gate that once formed part of the city\'s fortifications.</p><p>5.<span style=\"white-space:pre\">	</span>Mathura and Vrindavan:</p><p>•<span style=\"white-space:pre\">	</span>Krishna Janmabhoomi Temple: Believed to be the birthplace of Lord Krishna.</p><p>•<span style=\"white-space:pre\">	</span>Banke Bihari Temple: A revered shrine dedicated to Lord Krishna in Vrindavan.</p><p>6.<span style=\"white-space:pre\">	</span>Kanpur:</p><p>•<span style=\"white-space:pre\">	</span>Shri Radhakrishna Temple (JK Temple): A stunning marble temple dedicated to Lord Krishna.</p><p>7.<span style=\"white-space:pre\">	</span>Ayodhya:</p><p>•<span style=\"white-space:pre\">	</span>Ram Janmabhoomi Temple: The birthplace of Lord Rama, a site of religious and historical significance.</p><p>8.<span style=\"white-space:pre\">	</span>Naimisharanya:</p><p>•<span style=\"white-space:pre\">	</span>Chakra Teerth: A sacred place mentioned in Hindu scriptures.</p><p>9.<span style=\"white-space:pre\">	</span>Jhansi:</p><p>•<span style=\"white-space:pre\">	</span>Jhansi Fort: A historic fort associated with the Indian Rebellion of 1857.</p><p>10.<span style=\"white-space:pre\">	</span>Bundelkhand Region:</p><p>•<span style=\"white-space:pre\">	</span>Orchha: A historical town with palaces, temples, and cenotaphs.</p><p>Uttar Pradesh is a treasure trove of history, culture, and spirituality. It offers a diverse range of experiences, from exploring iconic monuments to participating in religious rituals along the sacred rivers. Whether you\'re a history buff, a spiritual seeker, or a lover of Indian cuisine, Uttar Pradesh has something to offer for every traveler.</p><p><br></p>',NULL,NULL,NULL,'\"Uttar Pradesh Unveiled: Explore the Cultural and Historical Treasures\"','Uttar Pradesh travel, historical landmarks, religious diversity, cultural heritage, Uttar Pradesh tourism',' Immerse yourself in the rich tapestry of Uttar Pradesh, home to iconic monuments like the Taj Mahal and spiritual centers like Varanasi. Discover the top places to visit in this diverse and culturally vibrant northern Indian state.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','6_1694434362.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(12,'Rajasthan','rajasthan','Rajasthan (India)',NULL,NULL,2,'2_1694432233.jpg',NULL,'101','India','2021-04-15 15:44:05','2021-04-15 15:44:05','1','0',NULL,'<p>Rajasthan, often referred to as the \"Land of Kings,\" is the largest state in India by area and one of the most captivating in terms of culture, history, and landscapes. It is located in the northwestern part of the country and is renowned for its royal heritage, grand palaces, magnificent forts, colorful traditions, and vast stretches of desert. Here\'s a brief overview of Rajasthan along with some of the top places to visit in the state:</p><p>Overview of Rajasthan:</p><p>Historical Legacy: Rajasthan has a rich history dating back to ancient times. It was home to several powerful dynasties, including the Rajputs, Mughals, and Marathas, which left behind a legacy of grandeur and architectural marvels.</p><p>Royal Splendor: The state is synonymous with opulent palaces, majestic forts, and ornate havelis, showcasing the royal lifestyle of its former rulers.</p><p>Vibrant Culture: Rajasthan is a cultural kaleidoscope with its colorful festivals, traditional music and dance forms like Ghoomar, and intricate handicrafts, including textiles, pottery, and jewelry.</p><p>Thar Desert: A significant portion of Rajasthan is covered by the Thar Desert, offering unique experiences like desert safaris and camel rides.</p><p>Wildlife: Rajasthan is home to several wildlife sanctuaries and national parks, including Ranthambore National Park, known for its tiger population.</p><p>Places to Visit in Rajasthan:</p><p>Jaipur (The Pink City):</p><p>Hawa Mahal: The Palace of Winds, known for its unique architecture.</p><p>Amber Fort: A majestic hilltop fort with impressive palaces and a Sheesh Mahal (Hall of Mirrors).</p><p>City Palace: A splendid royal residence with museums and courtyards.</p><p>Jantar Mantar: An astronomical observatory and UNESCO World Heritage Site.</p><p>Jodhpur (The Blue City):</p><p>Mehrangarh Fort: A massive fort offering panoramic views of the city.</p><p>Umaid Bhawan Palace: A lavish palace that\'s part museum and part luxury hotel.</p><p>Jaswant Thada: A white marble cenotaph with beautiful gardens.</p><p>Udaipur (The City of Lakes):</p><p>City Palace: Overlooking Lake Pichola, this palace complex is a visual delight.</p><p>Lake Palace: A magnificent hotel floating on Lake Pichola.</p><p>Jag Mandir: Another island palace on Lake Pichola.</p><p>Jaisalmer (The Golden City):</p><p>Jaisalmer Fort: A UNESCO World Heritage Site, known for its golden sandstone architecture.</p><p>Patwon Ki Haveli: A cluster of ornate havelis showcasing intricate carvings.</p><p>Sam Sand Dunes: A popular spot for desert safaris and camel rides.</p><p>Pushkar:</p><p>Brahma Temple: One of the few temples dedicated to Lord Brahma in the world.</p><p>Pushkar Lake: A sacred lake with ghats for religious rituals.</p><p>Ajmer:</p><p>Ajmer Sharif Dargah: A revered Sufi shrine attracting pilgrims from various faiths.</p><p>Ana Sagar Lake: A picturesque artificial lake with gardens.</p><p>Bikaner:</p><p>Junagarh Fort: A well-preserved fort with exquisite architecture.</p><p>Karni Mata Temple: Known as the Rat Temple, it\'s home to thousands of rats considered sacred.</p><p>Ranthambore:</p><p>Ranthambore National Park: A wildlife sanctuary known for its tiger sightings.</p><p>Rajasthan is a land of grandeur, where the echoes of its royal past can still be heard. With its stunning architecture, vibrant culture, and diverse landscapes, it\'s no wonder that Rajasthan is a top destination for travelers seeking an authentic Indian experience.</p><div><br></div>',NULL,NULL,NULL,'Royal Rajasthan: Discovering the Majesty of India\'s Largest State\"',' Rajasthan travel, historical landmarks, forts and palaces, Rajasthan tourism, cultural heritage',' Immerse yourself in the regal charm of Rajasthan as we explore its top destinations, including majestic forts, opulent palaces, and vibrant cultural experiences. Plan your journey to this land of kings and history today.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','2_1694432233.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(13,'Punjab','punjab','Punjab (India)',NULL,NULL,18,'18_1694431759.jpg',NULL,'101','India','2021-04-15 16:41:31','2021-04-15 16:41:31','1','0',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Punjab, located in the northern\r\npart of India, is a culturally rich and historically significant state. Known\r\nas the \"Land of Five Rivers\" due to the five major rivers that flow\r\nthrough it, Punjab boasts a unique blend of tradition, agriculture, and\r\nspirituality. Here\'s a brief overview of Punjab and some of the top places to\r\nvisit in the state:<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Overview of Punjab:</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Cultural Melting Pot:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> Punjab is\r\nknown for its diverse and vibrant culture, characterized by lively music,\r\ndance, and cuisine. It\'s home to the Sikh community, and the Golden Temple in\r\nAmritsar is a major religious and cultural landmark.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Agricultural Heartland:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> The\r\nfertile plains of Punjab are the breadbasket of India, producing a significant\r\nportion of the country\'s wheat and rice. The lush green fields are a common\r\nsight in this agrarian state.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Rich History:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Punjab has a storied\r\nhistory, with influences from the Indus Valley Civilization, the Maurya and\r\nGupta Empires, and the Mughals. It played a crucial role in India\'s struggle\r\nfor independence.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Warm Hospitality:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> Punjabi people\r\nare known for their warmth and hospitality. Visitors are often welcomed with\r\nopen arms and delicious Punjabi cuisine.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Places to Visit in Punjab:</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Golden Temple, Amritsar:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> The\r\nholiest Sikh shrine, known for its stunning architecture, serene lake (Amrit\r\nSarovar), and the spiritual atmosphere.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Jallianwala Bagh, Amritsar: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">A\r\nmemorial to the tragic massacre of 1919, this garden serves as a reminder of\r\nIndia\'s struggle for independence.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Wagah Border: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Witness the\r\nelectrifying flag-lowering ceremony at the India-Pakistan border, a unique\r\nexperience.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Sheesh Mahal, Patiala:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> A palace\r\nknown for its magnificent mirror work and architectural grandeur.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Anandpur Sahib:</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"> A significant Sikh\r\npilgrimage site known for the historic battles fought by Guru Gobind Singh.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Harike Wetland and Bird Sanctuary:\r\n</b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">A haven for birdwatchers and nature enthusiasts, home to a variety of bird\r\nspecies.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Ranjit Sagar Dam: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">A picturesque\r\nreservoir offering boating and scenic views of the Shivalik Hills.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Qila Mubarak, Bathinda: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">A historic\r\nfort showcasing the architectural evolution of Punjab over the centuries.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Virasat-e-Khalsa, Anandpur Sahib:\r\nA museum dedicated to the history and culture of Punjab and the Sikh community.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Pushpa Gujral Science City,\r\nKapurthala: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">An interactive science center and museum for educational and\r\nfamily-friendly visits.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Maharaja Ranjit Singh Museum,\r\nAmritsar: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">Houses artifacts and paintings related to the life and reign of\r\nMaharaja Ranjit Singh.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Ropar Wetland: </b></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\">A serene wetland\r\narea with diverse flora and fauna, perfect for nature lovers.<o:p></o:p></p><p class=\"MsoNormal\" style=\"margin-bottom:0cm\"><b>Punjab\'s rich cultural heritage,\r\nreligious significance, and natural beauty make it a fascinating destination\r\nfor travelers interested in history, spirituality, and the vibrant traditions\r\nof northern India.</b></p>',NULL,NULL,NULL,'Discover the Essence of Punjab: Top Places to Visit and Rich Cultural Heritage','Punjab travel, cultural landmarks, religious sites, Punjab tourism, historic places',' Immerse yourself in the cultural tapestry of Punjab with our guide to the top places to visit. Explore religious landmarks, historical sites, and the warm hospitality of this vibrant Indian state.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','18_1694431759.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(14,'Tamil Nadu','tamil-nadu','Tamil Nadu (India)',NULL,NULL,17,'17_1694495932.jpg',NULL,'101','India','2021-04-15 16:41:31','2021-04-15 16:41:31','1','0',NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Tamil Nadu, located in the southern part of India, is a state\r\nrenowned for its rich cultural heritage, historical significance, and diverse\r\nlandscapes. It is one of India\'s most populous and industrialized states, known\r\nfor its contributions to art, literature, and music. Here\'s a brief overview of\r\nTamil Nadu, along with some of the top places to visit in this culturally\r\nvibrant state:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Overview of Tamil Nadu:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Cultural Heritage: Tamil Nadu is known as the \"Land of\r\nTamils\" and has a rich cultural heritage dating back thousands of years.\r\nThe state is famous for its classical dance forms like Bharatanatyam and its\r\nclassical music known as Carnatic music.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Historical Significance: The state boasts a plethora of ancient\r\ntemples, including the iconic Meenakshi Temple in Madurai and the\r\nBrihadeeswarar Temple in Thanjavur, both UNESCO World Heritage Sites.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Diverse Landscapes: Tamil Nadu offers diverse landscapes, from lush\r\ngreen hills in the Western Ghats to beautiful coastal areas along the Bay of\r\nBengal.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Traditional Arts: The state is renowned for its traditional arts and\r\ncrafts, such as Tanjore paintings, Kanchipuram silk sarees, and bronze casting.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Culinary Delights: Tamil Nadu\'s cuisine is famous for its rich\r\nflavors and includes dishes like dosa, idli, sambar, and Chettinad cuisine,\r\nknown for its fiery spices.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Places to Visit in Tamil Nadu:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Chennai (Madras):<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\"> </span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Marina Beach: One of the longest urban beaches in the world.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Kapaleeshwarar Temple: An ancient temple with stunning Dravidian\r\narchitecture.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Fort St. George: A historic fort and the first British fortress in\r\nIndia.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">San Thome Basilica: A beautiful church built over the tomb of St.\r\nThomas the Apostle.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Madurai:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Meenakshi Temple: A magnificent temple complex known for its\r\nintricate carvings and colorful gopurams (gateway towers).<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Thirumalai Nayak Palace: A stunning palace known for its\r\nIndo-Saracenic architecture.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Thanjavur (Tanjore):<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Brihadeeswarar Temple: A UNESCO World Heritage Site and an\r\narchitectural marvel.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Thanjavur Palace: Explore the royal history and art of the Maratha\r\ndynasty.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Ooty (Udhagamandalam):<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Botanical Gardens: A beautiful garden with a vast collection of\r\nplants.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Nilgiri Mountain Railway: A UNESCO World Heritage Site and a scenic\r\ntrain journey.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Kodaikanal:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Kodai Lake: A serene lake for boating and picnicking.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Coaker\'s Walk: A picturesque walkway offering panoramic views of the\r\nWestern Ghats.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Mahabalipuram (Mamallapuram):<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Shore Temple: A UNESCO World Heritage Site and an architectural\r\nmasterpiece.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Arjuna\'s Penance: A giant open-air rock relief.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Rameswaram:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Ramanathaswamy Temple: A significant pilgrimage site for Hindus.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Pamban Bridge: A marvel of engineering connecting Rameswaram to\r\nmainland India.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Kanyakumari:<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Vivekananda Rock Memorial: A memorial dedicated to Swami\r\nVivekananda.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Kanyakumari Beach: Known for its unique sunrise and sunset views.<o:p></o:p></span></p>\r\n\r\n<p class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\">Tamil Nadu\'s rich history, vibrant culture, and stunning natural\r\nbeauty make it a captivating destination for travelers. Whether you\'re\r\ninterested in exploring ancient temples, relaxing on pristine beaches, or\r\nsavoring spicy South Indian cuisine, Tamil Nadu has something to offer every\r\nvisitor.<o:p></o:p></span></p>',NULL,NULL,NULL,'\"Explore Tamil Nadu | Travel Guide, Destinations, and Tours\"','\"Tamil Nadu travel, Tamil Nadu tourism, Tamil Nadu vacation, Tamil Nadu temples, South India travel, cultural tours, Tamil Nadu attractions, travel agency, Tamil Nadu packages\"','\"Explore the enchanting beauty of Tamil Nadu with our travel agency. Discover ancient temples, scenic landscapes, and rich cultural heritage. Plan your perfect Tamil Nadu getaway with us.\"','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]','17_1694496149.jpg',NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(15,'Karnataka','karnataka','Karnataka (India)',NULL,NULL,16,'16_1627470121.jpg',NULL,'101','India','2021-04-15 16:41:31','2021-04-15 16:41:31','1','0',NULL,'<p style=\"text-align: justify; \">Karnataka is situated in the southwestern part of India. It is rich in culture & heritage just like the variety of its landscape. Majestic palaces will interest you as much as the beaches and slope stations, which are all an important part of Karnataka the travel tourism. It draws in sightseeing lovers as well as adventure seekers. It flaunts a brilliant past which is obvious in its palaces, forts, and ancient towns, one illustration of which is the renowned Vijayanagara Empire. <br></p><p style=\"text-align: justify; \">Its capital Bengaluru or Bangalore which is a cosmopolitan center and Karnataka has other famous places to visit, like the royal Mysore Palace, Hampi, and various spots to visit. There are additionally a few national parks and wildlife sanctuaries in Karnataka that merit visiting. Alongside this, other natural attractions include glittering waterfalls, beaches, caves, forests, and the rundown simply goes on. Go for Karnataka Tour Package for a hassle-free vacation.</p><p style=\"text-align: justify; \"><b>Places to Visit in Karnataka </b></p><p style=\"text-align: justify; \">The quintessential Karnataka possesses a central spot in the tourism guide of India. Locked between the west coast and Deccan Plateau, the state boasts stunning hills, temples, caves, lush-green forests, riversides, lakes, beaches, coffee estates, waterfalls, ancient ruins, and so much more. With Karnataka Package explore all the important places.</p><p style=\"text-align: justify; \"><b>Best places to visit in Karnataka include:</b> Bengaluru, Coorg, Mysore, Hampi, Nandi Hills, Udupi, Gokarna, Chikmagalur, Murudeshwar, Badami, Bandipur National Park, Nagarhole National Park, Kabini, Dandeli, Kemmanagundi, Thirthahalli, Shravanbelagola, Shimoga, Pattadakal, Halebid, Bijapur, Shivagange, Mangalore, Srirangapatna, Savandurga, Dharmasthala, BR Hills, Sringeri, Shivanasamudra falls, Aihole, Bidar. Karnataka Holiday Package is waiting for you!</p><p style=\"text-align: justify; \"><b>Major Activities for Tourists in Karnataka</b></p><p style=\"text-align: justify; \">Karnataka is a completely unique destination. That is on the grounds that it has everything, from heritage, religious sites, beaches to wildlife, and adventure. The most visited heritage sites in India are situated in Karnataka like Hampi. There are serene beaches where you can essentially sit, unwind and partake in the breathtaking scenic views. You can visit the few museums to discover uncommon artifacts, artworks, and antiques. </p><p style=\"text-align: justify; \">Karnataka is additionally home to a few hill stations whose regular wealth will win your heart. Adventure enthusiasts will discover a great deal to do here. There are many adventurous places for trekking, water rafting, rock climbing, and mountain biking. <b>Karnataka Trip</b> for a mesmerizing vacation!</p><p style=\"text-align: justify; \"><b>Top Things to Do Include:</b></p><ol><li style=\"text-align: justify;\">Trekking in Coorg </li><li style=\"text-align: justify;\">Go karting in Bangalore & Mysore</li><li style=\"text-align: justify;\">Skydiving in Mysore</li><li style=\"text-align: justify;\">Camping in Coorg & Hampi</li><li style=\"text-align: justify;\">Water rafting in Coorg</li><li style=\"text-align: justify;\">Rock climbing</li><li style=\"text-align: justify;\">Mountain biking </li><li style=\"text-align: justify;\">Surfing in Mangalore</li><li style=\"text-align: justify;\">Bouldering in Hampi</li><li style=\"text-align: justify;\">Scuba Diving in Mangalore</li><li style=\"text-align: justify;\">Paragliding in Bangalore</li><li style=\"text-align: justify;\">Parasailing in Bangalore</li></ol><p style=\"text-align: justify; \"><b>Best Food to Try Out in Karnataka</b></p><p style=\"text-align: justify; \">Karnataka has perhaps the mildest food in India. It has various and different areas, each with its own interesting Karnataka foods to attempt. Areas in Karnataka like North Karnataka, South Karnataka, Kodagu, Udupi, and Mangalore have their own staples and specialties, from vegetarian dishes to seafood and meat curries. The important staple food items of Karnataka include rice, raagi, and jower. During your holiday in Karnataka, you must try to savor these cuisines. You will find the filter coffee wherever you go. Karnataka is huge, both by its size and the wide plethora of opportunities it offers to boost its tourism sector. Some Karnataka Tour Package even includes food tryouts.</p><p style=\"text-align: justify; \"><b>Best food to try out:</b> Kundapura Koli Saaru, Mysore Masala Dosa, Neer Dosa (authentic Karnataka food item), Allugedda, Khara Pongal, Chitranna, Tatte Idli, Chiroti, Korri Gassi, Mysore Pak, Coorg Pandi Curry, Haalbai, Bisi Bele Bath, Rava Kesari, Mangalorean Biryani, Kane Rava Fry, Udupi Sambar, Mango Chutney, Mysore Bonda, Ragi Mudde, Gojju, Maddur Vada, Pori Urundai, Sagu, Ennegai, Jolada Rotti.</p><p style=\"text-align: justify; \"><b>Best Places to Shop in Karnataka</b></p><p style=\"text-align: justify; \">Shopping in Karnataka is an awesome experience as the state has a staggering reach of products for its guests. It has developed into a well-known shopping destination in India with a lot of shopping malls and local markets. Karnataka Holiday Package to experience only the best of Karnataka!</p><p style=\"text-align: justify; \">With its wide reach of products, from branded products to merchandise for sale in the business sectors and the artifacts available to be purchased on the walkways, you can discover almost everything here.</p><ol><li style=\"text-align: justify;\">MG Road, Bangalore</li><li style=\"text-align: justify;\">Majestic Market, Bangalore</li><li style=\"text-align: justify;\">National Market, Bangalore</li><li style=\"text-align: justify;\">City Center Market, Bangalore</li><li style=\"text-align: justify;\">Brigade Road, Bangalore</li><li style=\"text-align: justify;\">Devaraja Market, Mysore</li><li style=\"text-align: justify;\">Cauvery Arts & Crafts Emporium, Mysore</li><li style=\"text-align: justify;\">Sandalwood Oil Factory, Mysore</li><li style=\"text-align: justify;\">Guru Sweets Mart, Mysore</li><li style=\"text-align: justify;\">Balmatta Sweet Market, Mangalore</li><li style=\"text-align: justify;\">Hampankatta Local Market, Mangalore</li><li style=\"text-align: justify;\">Central Market, Mangalore</li><li style=\"text-align: justify;\">Mysore Painting Market</li><li style=\"text-align: justify;\">Ramanagaram, Silk market</li><li style=\"text-align: justify;\">Channapatna Toy Market</li><li style=\"text-align: justify;\">Chikmagalur Spice Market</li><li style=\"text-align: justify;\">Ratha Beedi Market, Udupi</li><li style=\"text-align: justify;\">The Flea Market, Coorg</li><li style=\"text-align: justify;\">Coffee Market, Coorg</li><li style=\"text-align: justify;\">Jewelry market, Coorg</li><li style=\"text-align: justify;\">Hampi Bazaar</li></ol><p style=\"text-align: justify; \"><b>Best Time to Visit Karnataka for The Holidays</b></p><p style=\"text-align: justify; \">The best ideal season to visit Karnataka is during the winter months which start from November to February. You can also visit in the month of March, even during this time the weather is pleasant. But avoid traveling in summer as it becomes very hot and humid. Choose <b>Karnataka Honeymoon Package</b> for a romantic getaway!</p><p style=\"text-align: justify; \"><b>How to Reach Karnataka?</b></p><p style=\"text-align: justify; \"><b>By Train</b></p><p style=\"text-align: justify; \">The main railway station in Karnataka is Bangalore Railway Station which is connected to all the major cities of India.</p><p style=\"text-align: justify; \"><b>By Air</b></p><p style=\"text-align: justify; \">There are two important airports in Karnataka, the Bengaluru International Airport and the Mangalore International Airport. Both the airports provide flights to all the major airports of India like Delhi, Mumbai, Hyderabad, and Kolkata. </p><p style=\"text-align: justify; \"><b>By Road</b></p><p style=\"text-align: justify; \">Karnataka State Road Transport Corporation (KSRTC) operates government transport in Karnataka. The National Highway runs for almost 3,973 kilometers. Smaller towns are connected by state highways.</p><p style=\"text-align: justify; \"><b>Where to Stay in Karnataka?</b></p><p style=\"text-align: justify; \">There are assortments of choices that are available in Karnataka. These include heritage hotels and beach hotels and resorts. The accommodation choices range from luxury to medium-sized to budget, contingent upon your spending plan. Wildlife resorts are likewise another alternative that you can consider. You can feel the excitement to stay close to the wild and get involved in adventurous activities. Choose <b>Karnataka Holiday Package</b> for a luxury vacation experience!</p><p style=\"text-align: justify; \"><b>Why You Should Visit Karnataka For Your Next Vacation?</b><br></p><p style=\"text-align: justify; \">The cultural and phonetic divergences between the provinces of India play an important part in making the country both captivating and remarkably varied. Each state can be enigmatically comparable, yet they are essentially different looking back. The territory of Karnataka, as far as concerns its has scores of intrinsic features tempting vacationers throughout the year. For the people who haven\'t been to Karnataka, do visit to explore. Karnataka Package for an exciting & relaxing trip!</p><p style=\"text-align: justify; \"><b>Why Choose Karnataka Tour Package From ‘I Need Trip’?</b></p><p style=\"text-align: justify; \">With ‘I Need Trip’, you have the adaptability of fitting your vacation to your exact expectations. There are proper well-planned spots you will be taken to. For instance, you can look for adventure holidays, luxury holidays, unexplored spots, religious holidays, or whatever suits your preferences. With Karnataka Tour Package you can surely enjoy a stress-free vacation!</p><p style=\"text-align: justify; \"><b><i>‘I Need Trip’ can plan according to the way you want your vacation!</i></b></p>',NULL,NULL,NULL,'Book Karnataka Holiday Tour Packages, Travel Packages for Karnataka','Tour to Karnataka, Best Package Karnataka, Book Karnataka Tour, Book Karnataka Holiday Package, Cheap Karnataka Package, Best Karnataka Honeymoon Package, Explore Karnataka Package, Karnataka Honeymoon, Karnataka Trip Deals, Best Deals Karnataka.','Karnataka Packages : INeedTrip offers Karnataka holiday and Honeymoon tour packages at affordable rates. Explore our Karnataka Travel Packages and get best deals.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(16,'Jammu and kashmir','jammu-and-kashmir','Jammu and kashmir (India)',NULL,NULL,13,'13_1627470110.jpg',NULL,'101','India','2021-04-15 16:41:31','2021-04-15 16:41:31','1','0',NULL,'<p style=\"text-align: justify; \">Kashmir has been showered with natural beauty, and the reason is, it offers breathtaking scenic views which attract a large number of tourists from around the world. From the astounding mountains to the shining crystal waters of the lakes, there are unlimited things to explore in this dreamlike state. Tourist’s places to visit in Kashmir also bring to the actual table the religious site with the famous Amarnath Temple. The Amarnath temple is considered as one of the holiest shrines of India and spots to visit in Kashmir.<br></p><p style=\"text-align: justify; \">There are some best vacation destinations in Kashmir, beautiful gardens set in the midst of the picturesque city of Srinagar; with the flowers arranged beautifully. These stunning gardens were built during the rule of Mughals, and subsequently, they have a unique touch of Mughal architecture. Mughals were known to be perhaps the best architecture for their fine and complex architectural designs. <br></p><p style=\"text-align: justify; \">Also, you can find glaciers in and around Sonmarg, which is one of the most serene vacation destinations in Kashmir. While, on the opposite side, Gulmarg opens to a new explosion of tulip flowers, which offer a visual blowout! Gulmarg additionally brings to the table the best ski resorts and impetuous atmosphere to welcome you into nature with the best. <b>Jammu and Kashmir Tours</b> for a journey to the ‘Heaven on Earth’!<br></p><p style=\"text-align: justify; \"><b>Places to visit in Jammu & Kashmir</b></p><p style=\"text-align: justify; \">In case you\'re heading out to this part of the country interestingly, you can\'t set out to miss these beautiful spots in Kashmir and partake in the grand magnificence of the state at its best. Look at this rundown of the top spots to visit in Kashmir and pick the best ones for your next vacation. <br></p><p style=\"text-align: justify; \">Jammu and Kashmir Tour Package for a breathtaking vacation! They all are picture-commendable places so ensure that you are carrying a camera with you!<br></p><p style=\"text-align: justify; \"><b>Srinagar</b><br></p><p style=\"text-align: justify; \">Popularly known as \'Heaven on Earth\', Srinagar is situated in the union territory of Jammu and Kashmir, on the banks of river Jhelum. As pleasant as the most dazzling artwork to be painted, Srinagar is known for the stationary houseboats and brilliant Shikararas on Dal Lake. Srinagar is without a doubt one of the most lovely and renowned spots to visit in Kashmir just as in India. From boating to trekking, bird watching to waterskiing, Srinagar has everything. Kashmir Packages for an enthralling vacation!</p><p style=\"text-align: justify; \">This spot reflects the mountains. If you go to Kashmir, Srinagar should be on the top rundown of spots to visit, Kashmir. The largest city of Kashmir, this spot is encased by the green mountains and the center of attraction is the Dal Lake which is the pearl of the city. Srinagar gives you an overall view of Kashmiri cuisine and the state\'s culture. Jammu and Kashmir Tour Package for a stress-free vacation!</p><p style=\"text-align: justify; \"><b>Vaishno Devi</b><br></p><p style=\"text-align: justify; \">Vaishno Devi is a temple town and it is home to Goddess Vaishno Devi Mandir. Also, known as Vaishnavi, Mata Rani, and Trikuta, Vaishno Devi is another form of the Hindu Goddess Durga. This temple town is situated in Trikuta hills, 13 km from Katra in the union territory of Jammu and Kashmir. <br></p><p style=\"text-align: justify; \">This spiritual place of worship appeals to millions of devotees from everywhere around the world. Devotees believe that at the time of pooja and aarti, Goddesses Vaishnavi shows up at the Holy cave. It is believed that Goddess Vaishnavi Devotees herself calls the devotees to reach here. Go for a Jammu trip to enjoy a spiritual journey!<br></p><p style=\"text-align: justify; \"><b>Gulmarg </b><br></p><p style=\"text-align: justify; \">Popularly known as the \'Meadow of Flowers\', Gulmarg is a treat to the eyes with its spread of lively colorful blossoms against snow-covered mountains in the backdrop. Gulmarg is viewed as perhaps the best spot to visit in Kashmir for many reasons. This area of Kashmir is otherwise called the traveler\'s heaven because of its skiing option in the snow while partaking in the views around. It is in fact compared to Switzerland. The best ideal time to visit Kashmir for snowfall is in the winter season for example December-January. <b>Jammu and Kashmir Package</b> for a reviving vacation!<br></p><p style=\"text-align: justify; \"><b>Pahalgam </b><br></p><p style=\"text-align: justify; \">Pahalgam is considered as a delineation of the paradise on earth which is arranged at an elevation of around 2740 m. It is located at a distance of 95 km from Srinagar and encompassed by thick backwoods, beautiful crystal clear lakes, and glades of flowers. Harmony and serenity are different names of Pahalgam. This little town is known to help get rid of all the tensions of each guest and is counted among the best places to visit in Kashmir. Engrossing Kashmir Holiday Package is waiting for you!<br></p><p style=\"text-align: justify; \"><b>Jammu City</b><br></p><p style=\"text-align: justify; \">The city of Jammu is for sure one of the well-known places in the Kashmir region. As you might know, the city is popular for the presence of Mata Vaishno Devi Temple, a huge spiritual spot for Hindus. It is rightly called the City of Temples, as there are numerous religious sites here, including Mahamaya Temple, Peer Baba Temple, and Peer Khoh. The Jammu city is additionally beautified by the Bahu Fort which is located on a hilltop with a scenic view. Go for Jammu Holiday Package for an enlivening vacation!<br></p><p style=\"text-align: justify; \"><b>Nishat Garden</b><br></p><p style=\"text-align: justify; \">This one is viewed as the biggest Mughal Gardens situated on the banks of Dal Lake. Nishat Garden is known by the name the Garden of Bliss, as there are amazing Zabarwan Mountains in the background. This garden is renowned and Asaf Khan, who was the sibling of Nur Jahan planned it. This is most certainly perhaps the best spot to visit in Kashmir, India. Enjoy the best Kashmir Packages!<br></p><p style=\"text-align: justify; \"><b>Amarnath</b><br></p><p style=\"text-align: justify; \">Amarnath is visited by a huge number of travelers from all over the world for a difficult mountainous trek called \'Amarnath Yatra\'. Rumors from far and wide suggest that this place is believed to be the cave where Lord Shiva uncovered the mystery of life and eternity to Goddess Parvati. Amarnath Cave yatra is only allowed from July-August. Jammu and Kashmir Package for all the devotees out there to enjoy a remarkable vacation!<br></p><p style=\"text-align: justify; \">There are two routes accessible for undertaking the Amarnath Yatra- through Pahalgam or Baltal. The Baltal route is a short route but has more extreme trekking. The Pahalgam route is longer, however, is not strenuous; this route is mostly taken by the devotees. It takes around 3-5 days to reach the holy cave from the base point. Helicopter services are provided by the private tour operators on both these routes. The devotees need to make advance bookings and get enlisted to embark on a journey to the holy pilgrimage to Amarnath. <br></p><p style=\"text-align: justify; \"><b>Shalimar Garden</b><br></p><p style=\"text-align: justify; \">This garden was built by the Mughal Emperor Jahangir in the year 1616 for his wife Nur Jahan. After some time, one more garden named Faiz Baksh was added to this one. You\'ll discover a canal inside the garden that has been decorated with polished stones at the Pahalgam. This canal is the center of attraction of the garden.<br></p><p style=\"text-align: justify; \"><b>Patnitop</b><br></p><p style=\"text-align: justify; \">With unlimited knolls and all-encompassing views on the snow-covered pinnacles of the Himalayas, Patnitop is an ideal spot to encounter nature at its pleasant best and vastest. Additionally spelled PatniTop, it is a well-known hill station in the Udhampur district of Jammu and Kashmir. Patnitop is known for activities like skiing and trekking as well as water springs, making it a famous tourists spot.<br></p><p style=\"text-align: justify; \">Sanasar, found 17 km away is famous for its paragliding base, fairways alongside expanded touring alternatives. These together, make certain to give one the most breathtaking and excellent views and make the experience even more pleasant with unlimited adventure activities.  Jammu Holiday Package for an exciting vacation!<br></p><p style=\"text-align: justify; \"><b>Things to do in Jammu & Kashmir</b><br></p><p style=\"text-align: justify; \">Situated in the Himalayan ranges, Kashmir offers plenty of encounters that one should take by enjoying the energizing activities listed below. The stunning terrain makes this destination amazingly exclusive, so feel free to partake in these:<br></p><ol><li style=\"text-align: justify;\">Enjoy a Shikara Ride on Dal Lake<br></li><li style=\"text-align: justify;\">Take a Ride on Gulmarg Gondola</li><li style=\"text-align: justify;\">Try Your Hands at Golfing</li><li style=\"text-align: justify;\">Enjoy Khilanmarg and the views of Nanga Parbat</li><li style=\"text-align: justify;\">Try Sledging in Chandanwari</li><li style=\"text-align: justify;\">Trekking to Kolahoi Glacier</li><li style=\"text-align: justify;\">Paragliding in Sonamarg, Gulmarg, Bhaderwah, Sanasar, and Harwan (Srinagar)</li><li style=\"text-align: justify;\">Enjoy a thrilling ride along the Zoji-La Pass</li><li style=\"text-align: justify;\">Spend a night at the houseboat docked at the Dal Lake jetty</li><li style=\"text-align: justify;\">Savor the delicious Kashmiri local cuisine</li><li style=\"text-align: justify;\">Water rafting in the Lidder River in Pahalgam</li><li style=\"text-align: justify;\">Skiing & Snowboarding in Pahalgam, Sonamarg, and Gulmarg</li><li style=\"text-align: justify;\">Hot air balloon rides in Valleys of Suru and Zanskar</li></ol><p style=\"text-align: justify; \"><b>Best food to try in Jammu & Kashmir</b></p><p style=\"text-align: justify; \">The amazing territory of Kashmir isn\'t just popular for its magnificence and tranquility however the state likewise offers real non-vegetarian dishes too. Kashmiri food is gentle in taste and wealthy in flavor with the high utilization of hot flavors like fennel, ginger, cardamom, cinnamon, cloves, and saffron. </p><p style=\"text-align: justify; \">The food here is influenced by Mughals, Kashmiri cuisine is transcendently non-vegetarian, with mutton, chicken, or fish used as prime the ingredient however there are a couple of rarities for vegans as well! Go for the Kashmir Holiday Package to enjoy the most! While all of Kashmiri cuisine is delectable, here we have listed the must-try Kashmiri dishes to start with Kashmir\'s culinary journey! <br></p><ol><li style=\"text-align: justify;\">Kahwa, herbal green tea<br></li><li style=\"text-align: justify;\">Lyodur Tschaman</li><li style=\"text-align: justify;\">Kashmiri Muji Gaad</li><li style=\"text-align: justify;\">Modur Pulao</li><li style=\"text-align: justify;\">Dum Aloo</li><li style=\"text-align: justify;\">Kashmiri dahi baingan</li><li style=\"text-align: justify;\">Kashmiri Rajma</li><li style=\"text-align: justify;\">Khambir </li><li style=\"text-align: justify;\">Sheermal </li><li style=\"text-align: justify;\">Mutton Rogan Josh</li><li style=\"text-align: justify;\">Matschgand </li><li style=\"text-align: justify;\">Yakhni or Yoghurt Lamb Curry</li><li style=\"text-align: justify;\">Goshtaba </li><li style=\"text-align: justify;\">Shab Deg</li><li style=\"text-align: justify;\">Aab Gosh</li><li style=\"text-align: justify;\">Nadir Monji </li></ol><p style=\"text-align: justify; \"><b>Best shopping spots in Jammu & Kashmir</b><br></p><p style=\"text-align: justify; \">Jammu and Kashmir have a rich and vibrant history that attracts travelers around the world. This charming place is well known for its rich natural beauty in addition to the incredible shopping markets.</p><p style=\"text-align: justify; \"><b>Best places for shopping: </b><br></p><ol><li style=\"text-align: justify;\">Raghunath Bazaar<br></li><li style=\"text-align: justify;\">Kashmir Government Arts Emporium</li><li style=\"text-align: justify;\">Bahu Plaza</li><li style=\"text-align: justify;\">City Square Mall</li><li style=\"text-align: justify;\">Gole Market</li><li style=\"text-align: justify;\">Poshish</li><li style=\"text-align: justify;\">Hari Market</li></ol><p style=\"text-align: justify; \"><b>What to buy? </b><br></p><ol><li style=\"text-align: justify;\">Wooden carved products<br></li><li style=\"text-align: justify;\">Papier Mache</li><li style=\"text-align: justify;\">Carpets</li><li style=\"text-align: justify;\">Pashmina shawls</li><li style=\"text-align: justify;\">Sund Panjeeri and Chocolate Burfi</li></ol><p style=\"text-align: justify; \"><b>Best time to visit Jammu & Kashmir</b><br></p><p style=\"text-align: justify; \">Jammu and Kashmir is a year-round tourist destination. The best and ideal time to visit Jammu and Kashmir relies upon the type of experience you are looking for. During summer, spring &autumn, the lavish vegetation wins your love, while the appearance of winters loans it a likeness of a snow-white fairyland. Embark on a Kashmir & Jammu trip!<br></p><p style=\"text-align: justify; \"><b>How to reach Jammu & Kashmir?<br></b></p><p style=\"text-align: justify; \"><b>By air</b><br></p><p style=\"text-align: justify; \">Jammu and Kashmir have two airports, one in Jammu Region and one in Srinagar. Jammu Airport is situated around 8 km away from the city of Jammu. Some of the airlines they fly to and from this region are Air India, SpiceJet, IndiGo, Go Air, Vistara, and Alliance Air.</p><p style=\"text-align: justify; \"><b>By train</b><br></p><p style=\"text-align: justify; \">Presently, there is no railway station in Srinagar. The closest railway station to Srinagar is Jammu Tawi Railway Station which is 300 kilometers away from Srinagar. Daily trains run from Jammu Tawi Railway Station to important stations like New Delhi-Jammu Tawi Rajdhani Express, Jammu Tawi Express, and Jammu Mail. A Jammu Trip is quite easy as direct trains are available from Delhi.<br></p><p style=\"text-align: justify; \"><b>By Road</b><br></p><p style=\"text-align: justify; \">Jammu and Kashmir have a good road network; you can easily travel by road. The National Highway- NH 1 and NH 44 interface Kashmir to other important cities of India. The Jawahar Tunnel connecting Jammu to the valley of Kashmir is in this route. Buses operated by the J&K State Road Transport Corporation connect Jammu to other important cities like Srinagar (264 km), Patnitop (110 km), and Amritsar (214 km).<br></p><p style=\"text-align: justify; \"><b>Why choose ‘I Need Trip’ to book Jammu & Kashmir tour packages?</b><br></p><p style=\"text-align: justify; \">As a result of its picturesque magnificence, it has merited the title of ‘Heaven on Earth’. If you wish to visit the fascinating heaven then you can look at ‘I Need Trip’ tours uniquely created superb Kashmir tour packages. Our Kashmir Packages are very much intended to suit the necessities of explorers of each sort - from voyagers searching for budget tour packages to backpackers and to the families searching for luxury packages to uniquely create customized Kashmir Honeymoon Package.<br></p><p style=\"text-align: justify; \">All the <b>Jammu and Kashmir Tour Package</b> include a clear-cut agenda that covers every one of the significant spots in Kashmir. It guarantees an arranged and coordinated holiday. The Jammu and Kashmir Package include local transfers, accommodations, sightseeing tours, and a wide range of comfort services so the voyagers take advantage of their vacation. Also, <br></p><p style=\"text-align: justify; \">Travelers can customize the Kashmir holiday package based on their interests. This gives travelers to partake in a get-away according to their own preferences whether with family, companions, alone, or on a honeymoon. Kashmir Honeymoon Package lets you enjoy a romantic and overwhelming vacation!<br></p><p style=\"text-align: justify; \">If this energizes you, stand by no more. Feel free to book Jammu Holiday Package and Kashmir Holiday Package, partake in a hassle-free holiday to the ‘Heaven on Earth’!</p>',NULL,NULL,NULL,'Book Jammu and Kashmir Tour Packages - Holiday & Honeymoon Package','Tour to Jammu & Kashmir, Best Package Jammu & Kashmir, Book Jammu & Kashmir Tour, Book Jammu & Kashmir Holiday Package, Cheap Jammu & Kashmir Package, Best Kashmir Honeymoon Package, Explore Kashmir Package, Kashmir Honeymoon, Kashmir Trip Deals, Best Deals Kashmir.','Jammu & Kashmir Packages: INeedTrip offers Jammu and Kashmir holiday and Honeymoon tour packages at affordable rates. Explore our Kashmir Packages and get best deals.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(17,'Chandigarh','chandigarh','Chandigarh (India)',NULL,NULL,21,'21_1627470072.jpg',NULL,'101','India','2021-06-14 17:26:59','2021-06-14 17:26:59','1','0',NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\">Planning a Visit to Chandigarh? Here’s A Guide to Chandigarh City Tour - Chandigarh is the first planned city of India and the capital of Punjab and Haryana. It is a union territory and plays a double role. The spot is altogether remarkable as it has a rich history, splendid future and exceptional magnificence and is constrained by the Union Government.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chandigarh is beautiful and is known for its well-designed architectural infrastructure. Adding to that is the greenery which makes it more picturesque. Exciting Chandigarh Tour Package to enjoy a memorable vacation!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Scroll down to find some best places to visit in Chandigarh</p><p class=\"MsoNormal\" style=\"text-align:justify\">Rich vegetation, multi-toned flowers in different entrancing nurseries, pleasing water elements like wellsprings, and other beautiful natural attractions will help you reconnect with nature.</p><p class=\"MsoNormal\" style=\"text-align:justify\">In this way, if you have Chandigarh at the forefront of your thoughts to explore during your weekend vacation, knowing notable milestones and provisions of the city will make your journey more pleasant.</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Rock Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chandigarh is home to world acclaimed, exceptional, and rambling Rock Garden, which has transformed nearly into a notable heritage site. Nek Chand Saini, according to his vision of Sukhrani kingdom, established this particular Rock Garden in 1957. Settled close to the beautiful Sukhna Lake, this 40-section of land garden includes a bounty of statues, made by reusing waste disposal of the city and industries around.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Explore the miniature maze, open-air exhibition space, and theater stash on the scene of this stunning garden. A few authorities and craftsmen from every part of the world visit this garden. Wonder about different interesting sculptures that are present here, and charm your eyes by watching charming counterfeit cascades and other dazzling water highlights. A Chandigarh Trip lets you have the best holiday experience!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Zakir Hussain Rose Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">Zakir Hussain Rose Garden is another popular garden in Chandigarh and welcomes all the nature lovers. Interestingly, it is one of the largest Rose Garden in Asia, the rambling 30 sections of land is home to more than 1600 assortments of roses and more than 50,000 hedges of stunning roses. Walk around this garden at your own leisure and appreciate the eye-catching vibrant roses. This rose garden additionally organizes the Rose Festival in late February or in the first week of March.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Sukhna Lake</p><p class=\"MsoNormal\" style=\"text-align:justify\">Sukhna Lake is a quiet and popular attraction in Chandigarh, sitting at the lower regions of the Himalayas. Although it is an artificial lake, it has spotless and clear water, a laid-back climate, and fresh and refreshing air. It implants a wonderful energy that draws in a few guests to spend time, enjoying sitting by the lake with a cup of coffee and getting revived.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Visitors enjoy walking and jogging on the promenade, which is constructed near the lake. Individuals additionally partake in the fun of boating in the quiet waters of delightful Sukhna Lake. Thus, ensure that you visit this charming fascination during your journey in this beautiful city. Popular Chandigarh Holiday Package to enjoy the best!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Garden of Fragrance, Chandigarh Overview</p><p class=\"MsoNormal\" style=\"text-align:justify\">Garden of Fragrance as the name proposes is renowned for its fragrant plants such as Champa, Mehndi, Raat ki Rani, Motia, Haar Shingar, damask rose and different varieties of jasmine. The park with such wonderful fragrance welcomes visitors for strolling around.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Garden of Silence</p><p class=\"MsoNormal\" style=\"text-align:justify\">Garden of Silence is located in Bhagwanpura, Chandigarh. A meditative space which houses an enormous icon of Buddha, as the name suggests it offers a quiet and serene environment for reflection in the midst of lavish green environmental factors with a wonderful view of the Shivalik Ranges in the background. Chandigarh Holiday Package to have a memorable experience!</p><p class=\"MsoNormal\" style=\"text-align:justify\">ISKCON Temple</p><p class=\"MsoNormal\" style=\"text-align:justify\">Situated in Sector 36 B, Dakshin Marg in Chandigarh, one of the few of the chain temples spread all around the nation and across the world. The temple is committed to Lord Krishna and Radha; and is visited by many followers. The temple resounded with harmony and quietness and is an unquestionable place to visit.</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Government Museum and Art Gallery</p><p class=\"MsoNormal\" style=\"text-align:justify\">It is the natural history museum and an art gallery of Chandigarh. The building was designed by Le Corbusier. It was set up in August 1947. The building is around 165x165 feet. Other than the art gallery- The National History Museum, the National Gallery of Portraits and the Architecture Museum are present in the institute itself.</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Terraced Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">Bragging lively blossoms and lush greenery, Terraced Garden is one of the best tourist spots which draws in individuals from Chandigarh or from the neighboring regions as well as from other parts of the country. This captivating Terraced Garden was set up in 1979. It covers an area of 10 sections of land and has a stunning musical fountain which becomes alive in the evening, when popular songs are tuned in. Chandigarh Package for an exciting holiday experience!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Pinjore Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">This is a lively and beautiful Mughal garden made in the 17th century. It occupies an area of around 100 sections of land. An extraordinary spot to be truly near nature, Pinjore Garden is one of the best places to visit in Chandigarh. This world-famous garden is known for its lavish plant life and enthralling fountains and certainly offers an incredible sight.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Musical Fountain Show</p><p class=\"MsoNormal\" style=\"text-align:justify\">This Musical Fountain Show is organized at Sector 17 in Chandigarh. It is a well known spot of diversion and touring. The show is held in the evening hours and is a brilliant presentation of water fountains moving to a cadenced outraged music. The place is swarmed by locals and tourists to watch the show. Chandigarh Tour Package for a stress-free holiday experience!</p><p class=\"MsoNormal\" style=\"text-align:justify\">International Doll Museum</p><p class=\"MsoNormal\" style=\"text-align:justify\">This International Doll Museum was developed in 1985. It exhibits around 250 dolls as puppets. The dolls are collected from different parts of India as well as some international countries like Germany, Spain, Denmark, and Korea.</p><p class=\"MsoNormal\" style=\"text-align:justify\">If you have not caught wind of this spot previously, you should remember it for your rundown of spots to see in Chandigarh. If you or your kids love dolls, you should go to this wonderful spot in Chandigarh.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Le Corbusier Centre</p><p class=\"MsoNormal\" style=\"text-align:justify\">Le Corbusier Centre is located in Sector 19 B in Chandigarh. It is a well known heritage spot devoted to the ancient architect of the city-Le Corbusier. He was a Swiss-French modeler and initially planned the city of Chandigarh nearly six decades prior. The Le Corbusier Centre houses the legacy, research, compositions, study, and works of the renowned architect.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Japanese Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Japanese Garden is situated in Sector 31A in Chandigarh. All around the prepped, wonderfully kept up park which houses a park, Buddha statue, pagoda towers, meditation centers, waterfalls, water bodies, and a few different designs. The park has two stages interconnected by an underground tunnel which is enhanced with delightful Japanese paintings. Opt for Chandigarh Tours to get a glimpse of this city!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Gandhi Museum</p><p class=\"MsoNormal\" style=\"text-align:justify\">Gandhi Museum is viewed as one of the conspicuous milestones and spots to visit in Chandigarh. As the name recommends, the museum is an accolade for Mahatma Gandhi which is the reason you will discover a wide range of works, books and material that mirrors his life.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Perhaps the most astonishing fact about this museum is that it is situated in a beautiful backdrop in the middle of a lake. The person to be applauded is Peirre Jeanneret, the cousin of Le Corbusier for the architectural design of this museum.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Botanical Garden</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Botanical Garden really contains two gardens which are spread across Chandigarh and offers a perspective on some of the symmetrically arranged plants which are calming to the eyes. There are varieties of plant species here which are outlandish and evergreen. One garden is situated at the Punjab University campus and the other is located at the Sukhna Lake and Rock garden.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Open Hand Monument</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Open hand monument is one of the most beautiful spots to visit in Chandigarh. This astonishing art work was done by Le Corbusier. The Open hand monument is a pearl which illuminates the Capitol complex in Chandigarh. The architecture represents the hand to give and to take, unity of humanity and for peace and wealth. Chandigarh Tours offers you to explore the best of Chandigarh!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chattbir Zoo</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chattbir Zoo otherwise called Mahendra Chaudhary Zoological Park. It is a zoological park located in Zirakpur not very far from Chandigarh. The park is home to a tremendous assortment of creatures, birds and reptiles. Rambling over a sweeping 202 sections of land, the zoo offers an open nook to the creatures to hold their living space and the environment. The main highlights of this zoo are the Royal Bengal Tigers.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Museum of the evolution of life</p><p class=\"MsoNormal\" style=\"text-align:justify\">Exhibiting the evolutionary roadmap of living souls, this museum has galleries on Archaeology, Prehistoric and Geology, and Astronomy, specialized with presentation and complete with reference libraries. Opt for the Chandigarh Tour Package, if you don’t want to miss anything to visit!</p><p class=\"MsoNormal\" style=\"text-align:justify\">National Gallery of Portraits</p><p class=\"MsoNormal\" style=\"text-align:justify\">The National Gallery of Portraits center houses the portraits, recorded voices of the extraordinary leaders of India and rare documents related to the freedom struggle of India’s independence. Do visit this place, if you want to take a glimpse of the journals of the Independence period.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Things to do in Chandigarh</p><p class=\"MsoNormal\" style=\"text-align:justify\">Whether you\'re taking a trek with your partner, journeying solo or moving with the family, there are a couple of activities in Chandigarh for every sort of explorer. The dazzling nightlife in Chandigarh and the end of the week activities to indulge in makes Chandigarh one of the best travel destinations. Here are some of the things to do:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Adventure at Fun City</p><p class=\"MsoNormal\" style=\"text-align:justify\">Adventure at Thunder Zone</p><p class=\"MsoNormal\" style=\"text-align:justify\">Take a tour via Chandigarh bicycle</p><p class=\"MsoNormal\" style=\"text-align:justify\">Enjoy boating &amp; walking around in Sukhna lake</p><p class=\"MsoNormal\" style=\"text-align:justify\">Experience the double-decker tourist bus</p><p class=\"MsoNormal\" style=\"text-align:justify\">Enjoy music &amp; dance at the Tagore Theater</p><p class=\"MsoNormal\" style=\"text-align:justify\">Timber Trail</p><p class=\"MsoNormal\" style=\"text-align:justify\">Where to shop?</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chandigarh is a paradise for shopaholics. It is home to rambling Elante Mall, renowned for being the second greatest shopping center in North India. Away from the main road, go to the shop known as ‘Tiny Shop’, which is an eminent city treasure. It was opened in 1980 and since then it is famous for selling an assortment of pleasant things, like creative privately created products, collectibles, and flawless gifts. In this way, partake in the fun of shopping while visiting during your Chandigarh trip. Don’t forget street shopping!</p><p class=\"MsoNormal\" style=\"text-align:justify\">Best time to visit</p><p class=\"MsoNormal\" style=\"text-align:justify\">The best ideal month to visit Chandigarh is from October to February. This period denotes the wintertime in India and the daytime temperatures float in the mid to late 20s while evenings can get crisp with temperatures less than 10 degrees. The summer season is very hot and sticky, it is better if you don’t plan to visit in summer. Chandigarh tour package to have the best vacation!</p><p class=\"MsoNormal\" style=\"text-align:justify\">How to reach?</p><p class=\"MsoNormal\" style=\"text-align:justify\">By flight:</p><p class=\"MsoNormal\" style=\"text-align:justify\">The Chandigarh Airport is only 10-12 kilometers from the city center. You can flag down taxis that are constantly seen outside the Airport or take the local bus to reach the main city center. As it\'s an International Airport all the important Airlines fly to and from here.</p><p class=\"MsoNormal\" style=\"text-align:justify\">By road:</p><p class=\"MsoNormal\" style=\"text-align:justify\">A ton of transports run from Chandigarh to Delhi and to the nearby cities. There is an armada of transports coming from other parts of North India to Chandigarh. You can also opt for a shared taxi or hire a private taxi.</p><p class=\"MsoNormal\" style=\"text-align:justify\">By train:</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chandigarh Railway Station or the Cantonment Railway Station is connected to all the major cities of India. Outside the Railway Station you can find autos, taxis and buses to drive you to the city center.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Why visit Chandigarh?</p><p class=\"MsoNormal\" style=\"text-align:justify\">Chandigarh flaunts plentiful wonderful gardens and green spaces, remarkable architecture buildings, well planned sectors, and shopping alternatives. Thus, in case you are intending to spend your forthcoming weekend holiday in Chandigarh, knowing the above top things will make your Chandigarh trip more charming. Thus, think no further, pack your bags, and enjoy an exciting trip to Chandigarh.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Why choose ‘I Need Trip’ for your trip to Chandigarh?</p><p class=\"MsoNormal\" style=\"text-align:justify\">In case you are going all alone, it\'s sensible why you can approach making your own itinerary. But holidays are never simple particularly when you are going with your family and your partner if you are hoping for a stress-free vacation.</p><p class=\"MsoNormal\" style=\"text-align:justify\">With ‘I Need Trip’, you have the adaptability of fitting your visit to your exact expectations. With a customized Chandigarh tour package you can travel to the places you want. For instance, you can look for off-the-beaten track destinations, luxury holidays, religious holidays, adventure holidays, or whatever that suits your preferences.</p><p class=\"MsoNormal\" style=\"text-align:justify\">Tour operators can organize a certified guide to help your travel experience. With a self orchestrated excursion, you are probably going to pass up the important information sources that would have made your travel more rousing and educational. The best thing about tour packages is the absence of stress, cost saving and management of time. Blissful Chandigarh Honeymoon Package is waiting for you!</p>',NULL,NULL,NULL,'Chandigarh Tour Packages, Chandigarh Holiday and Honeymoon Package','Tour to Chandigarh, Best Package Chandigarh, Book Chandigarh Tour, Book Chandigarh Holiday Package, Cheap Chandigarh Package, Best Chandigarh Honeymoon Package, Explore Chandigarh Package, Chandigarh Honeymoon, Chandigarh Trip Deals, Best Deals Chandigarh Pradesh.','Chandigarh Package: If you are planning to visit Chandigarh with your family. Book Chandigarh trip and get exciting deals of Chandigarh holiday and Honeymoon packages with INeedTrip.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(18,'Lakshadweep Islands','lakshadweep-islands','Lakshadweep Islands (India)',NULL,NULL,47,'47_1636372428.jpg',NULL,'101','India','2021-10-11 12:21:00','2021-10-11 12:21:00','1','0',NULL,'<p style=\"text-align: justify; \">A Short Guide to Lakshadweep - Blue ocean, pristine beaches, exotic islands are some of the reasons that make Lakshadweep a well-known vacationer location off the coast of mainland India. This archipelago is one of the best spots for those looking for quietness or who needs to get a completely exhilarating encounter by enjoying some adventure. As well as offering a number of islands that are ideally suited for a tropical vacay, Lakshadweep allows the explorers to go through a sumptuous occasion with rich retreats alongside fun-filled activities that will let one experience an ideal beach vacation to treasure it for a lifetime. Lakshadweep tour package for a romantic vacation!</p><p style=\"text-align: justify; \">For those ready for making a visit to the famous island destination, the travel guide will allow the sightseers to cover what all must be canvassed while holidaying in Lakshadweep. Check out the best Lakshadweep Package!<br></p><p style=\"text-align: justify; \"><b>Best places to visit in Lakshadweep</b><br></p><p style=\"text-align: justify; \">An ideal combination of islands, Lakshadweep is arranged off the Kerala coast in the Arabian Sea. Dabbed with white sandy beaches, lagoons, and coral reefs, Lakshadweep is an ideal destination for nature lovers looking for isolation and thrilling activities. Being a small Union Territory of India, Lakshadweep let the vacationers get close to the charming marine life, the rural communities, the lighthouse, and more than that and a gigantic attraction for explorers of all sorts. Go for the Lakshadweep tour package for a hassle-free vacation!<br></p><p style=\"text-align: justify; \"><b>Top places to visit in Lakshadweep:</b><br></p><p style=\"text-align: justify; \">Minicoy Island, Agatti Islands, Bangaram Island, Kavaratti Islands, Kalpeni Islands, Kadmat Island, Amindivi Island, Andretti Islands, Lighthouse In Minicoy. Lakshadweep holiday package lets you explore all the important destinations.<br></p><p style=\"text-align: justify; \"><b>Things to do in Lakshadweep</b><br></p><p style=\"text-align: justify; \">Is it true that you are searching for calm ocean-side spots and that too in India? Welcome to Lakshadweep, India’s smallest Union Territory! Its shinning radiant green waters draw numerous explorers across the world. It is a popular tourist destination in India. It is notable for sapphire lagoons, white sand beaches, colorful corals, and the complete silence of the area. Opt for the Lakshadweep tour package for an extraordinary experience!<br></p><p style=\"text-align: justify; \">What’s so special about the Lakshadweep trip? If you are searching for a serene and chaos-free trip, then this is an ideal spot for you. It is an astonishing archipelago of landmasses where you can enjoy water sports and see the ocean life. There are many things to do if you are searching for some fun activities like boat rides, scuba diving on Kalpeni Island, exploring the uncommon corals, and watching the turtles and fishes. Lakshadweep Package for an exhilarating trip!<br></p><p style=\"text-align: justify; \"><b>Exciting and adventurous things to do:</b><br></p><p style=\"text-align: justify; \">Fishing In Minicoy Island, Scuba Diving, Parasailing, Yacht Cruise, Pedal Boating, Kayaking, Canoeing, Swimming, Snorkeling. With Lakshadweep Package have a thrilling vacation!<br></p><p style=\"text-align: justify; \"><b>Traditional food to eat in Lakshadweep</b><br></p><p style=\"text-align: justify; \">Lakshadweep Islands comprises 36 islands that are located close to the shore of Kerala in the Arabian Sea. Lakshadweep is well known for tourism and is rushed with a lot of guests around the year. As the islands are nearer to Kerala, there is an engaging impact on the island’s food and culture. Lakshadweep tour package to experience something authentic and different! Lakshadweep trip truly offers something worth experiencing!<br></p><p style=\"text-align: justify; \">The cuisine of Lakshadweep islands is profoundly overwhelmed by coconut and fish. As the islands are known for an assortment of widely varied vegetation, there is a use of various flavors in food. Let’s find out about some of the cuisines and dishes of this beautiful island. Lakshadweep Package for one of the best holiday experiences!</p><p style=\"text-align: justify; \"><b>Some of the best seafood in Lakshadweep that one can try while visiting this island are listed below:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Octopus fry<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Mus Kavaab</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Fish tikka</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Fish pakora</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Maasu Podichath </p><p style=\"text-align: justify; \"><b>Where to enjoy shopping in Lakshadweep?</b><br></p><p style=\"text-align: justify; \">Lakshadweep is a curious and tranquil traveler destination with astounding islands, coral reef, and many clean and secluded beaches. However, there are not an excessive number of choices of shopping in Lakshadweep but rather the town has some beach side markets, some small shops and store from which the shopaholics can fulfill their thirst of shopping up undeniably. Enjoy a thrilling trip with Lakshadweep Package! <br></p><p style=\"text-align: justify; \">So here is the rundown of best places for shopping in this island city from where travelers can purchase different souvenirs, local products, and artificial jewellery to take with them.</p><p style=\"text-align: justify; \"><b>Best places to shop in Lakshadweep:</b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>China Bazar Kavaratti<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>Muhammad Musthafa Supper Market</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>Fiber Factory</p><p style=\"text-align: justify; \">4.<span style=\"white-space:pre\">	</span>Co-operative Society Supermarket</p><p style=\"text-align: justify; \">5.<span style=\"white-space:pre\">	</span>Thavakkal Clothing Store</p><p style=\"text-align: justify; \">6.<span style=\"white-space:pre\">	</span>Thele Fole Tea Shop</p><p style=\"text-align: justify; \"><b>How to reach Lakshadweep?</b><br></p><p style=\"text-align: justify; \"><b>By Air</b><br></p><p style=\"text-align: justify; \">The closest international airport to Lakshadweep is the Cochin International Airport interfacing Lakshadweep and the central area. Cochin International Airport flies only to some of the major airports in India and furthermore to some unfamiliar places. The only airport of Lakshadweep is situated in Agatti. <br></p><p style=\"text-align: justify; \">You can also fly from Agatti to Kavaratti through helicopter services. They are available all around the year and from Agatti to Bangaram during the monsoon. Flights from Cochin require around one and a half hours to arrive at Agatti. The flights are operational for six days in a week. Lakshadweep Package for a serene and relaxing vacation!</p><p style=\"text-align: justify; \"><b>By Ship</b></p><p style=\"text-align: justify; \">If you are planning to travel to Lakshadweep via ship from Cochin, there are around seven-passenger ships that operate from Cochin to Lakshadweep. They are MV Dweep Setu, MV Lakshadweep Sea, MV Kavaratti, MV Amindivi Sea, MV Arabian Sea, MV Bharat Seema, and MV Minicoy. It takes around 14 to 20 hours if you travel by ship through this route.<br></p><p style=\"text-align: justify; \">Distinctive classes of accommodation like A/C First Class (with 4 berth cabins), A/C Deluxe Class (with 2 compartment lodges), and Tourist Class (with A/C seating) can be profited in these boats. The boats are exceptional and comprise an entertainment lounge, cafeteria, snack bars and walkway, video shows, and so on benefit health service or call on a specialist on the ship itself. Lakshadweep holiday package for a breathtaking vacation!<br></p><p style=\"text-align: justify; \"><b>Best time to visit Lakshadweep</b></p><p style=\"text-align: justify; \">The best time to visit Lakshadweep is from October to May. From May to September it is blustery. However, all the resorts in Lakshadweep are open throughout the year. But it is better to avoid sailing during the monsoon as it could be dangerous. Experience something different with the Lakshadweep holiday package! We let you have the best holiday experience.<br></p><p style=\"text-align: justify; \"><b>Do you need permission to visit Lakshadweep?</b><br></p><p style=\"text-align: justify; \">To visit the Lakshadweep islands, you have to get a tourism permit from Kochi. Also, you can spend some days in \'God\'s Own Country\', Kerala, too. Ships, ferries, and boats from Kerala often sail regularly to Lakshadweep for locals. Explore the best with our Lakshadweep holiday package! <br></p><p style=\"text-align: justify; \"><b>Mandatory Quarantine & Testing Rules   </b><br></p><p style=\"text-align: justify; \">1.<span style=\"white-space: pre;\">	</span>Mandatory RT-PCR Test 72hrs prior departure<br></p><p style=\"text-align: justify; \">2.<span style=\"white-space:pre\">	</span>14 days of self-isolation for those who exhibit symptoms after landing at the airport.</p><p style=\"text-align: justify; \">3.<span style=\"white-space:pre\">	</span>2 doses of vaccine completed</p><div style=\"text-align: justify; \"><br></div>',NULL,NULL,NULL,'Lakshadweep Tour Package, Lakshadweep Holiday and Honeymoon Package','Tour to Lakshadweep Island, Best Package Lakshadweep Island, Book Lakshadweep Island Tour, Book Lakshadweep Island Holiday Package, Cheap Lakshadweep Island Package, Best Lakshadweep Island Honeymoon Package, Explore Lakshadweep Island Package.','Lakshadweep Tour Package: Ineedtrip offers best deals to Lakshadweep Island holiday and honeymoon packages. Click now to get exclusive Lakshadweep tour package at best rates.','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(19,'Daman and Diu','daman-and-diu','Daman and Diu (India)',NULL,NULL,35,'35_1694430190.jpg',NULL,'101','India','2022-01-03 15:57:34','2022-01-03 15:57:34','1','0',NULL,'<p>Daman and Diu, collectively known as the Union Territory of Dadra and Nagar Haveli and Daman and Diu since 2020, is a small but culturally rich region situated on the western coast of India. With a blend of Portuguese colonial history, stunning beaches, and serene landscapes, Daman and Diu make for an interesting destination. Here are some of the must-visit places in this union territory:</p><p>Daman Beaches:</p><p>Devka Beach: This rocky beach is known for its mesmerizing sunset views and the amusement park nearby.</p><p>Jampore Beach: A peaceful and less crowded beach, perfect for a leisurely stroll and water sports.</p><p>Diwa Diu Island:</p><p>Nagoa Beach: This crescent-shaped beach with golden sands offers water sports and camel rides.</p><p>Diu Fort: A historic Portuguese fort with panoramic views of the Arabian Sea.</p><p>St. Paul\'s Church: A stunning colonial-era church known for its intricate architecture.</p><p>Ghoghla Beach: A tranquil beach with calm waters, ideal for swimming.</p><p>Moti Daman:</p><p>Se Cathedral: A beautiful church that reflects the Portuguese influence on the region.</p><p>Church of Our Lady of Remedies: A picturesque church overlooking the Daman Ganga River.</p><p>Mirasol Lake Garden:</p><p>A serene park surrounding a lake, perfect for picnics and relaxation.</p><p>Fort Jerome:</p><p>An ancient fort that offers a glimpse into the history of Daman and its colonial past.</p><p>Jallandhar Shrine:</p><p>A temple dedicated to Lord Krishna with an impressive idol and a scenic location.</p><p>Diu Museum:</p><p>Explore the rich history of the region through artifacts and exhibits.</p><p>Daman Ganga Tourist Complex:</p><p>A popular spot for boating and picnics, with lush greenery and scenic landscapes.</p><p>Light House, Diu:</p><p>Climb to the top for panoramic views of the island and its surroundings.</p><p>Naida Caves:</p><p>Unique labyrinthine caves with impressive natural rock formations.</p><p>Gangeshwar Temple:</p><p>A temple dedicated to Lord Shiva with unique natural lingams located on the seashore.</p><p>Chakratirth Beach:</p><p>A peaceful beach known for its serene ambiance and cultural significance.</p><p>Daman and Diu offer a unique blend of history, culture, and natural beauty. Whether you\'re interested in exploring colonial-era architecture, relaxing on pristine beaches, or indulging in water sports, this charming Union Territory has something to offer every traveler. With its warm hospitality and diverse attractions, Daman and Diu are ideal for a peaceful getaway on the Indian west coast.</p><p><br></p><p><br></p><p><br></p><p><br></p>',NULL,NULL,NULL,'Discover Daman and Diu: India\'s Coastal Charms and Colonial Heritage',' Daman and Diu travel, Indian coastal destinations, Portuguese heritage, beach vacations, cultural landmarks','Explore the serene beaches, historic forts, and Portuguese heritage of Daman and Diu. Plan your coastal escape to this unique Indian Union Territory for a delightful blend of history and relaxation.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(20,'Gujarat','gujarat','Gujarat (India)',NULL,NULL,15,'15_1694430508.jpg',NULL,'101','India','2022-01-03 15:57:34','2022-01-03 15:57:34','1','0',NULL,'<p>Gujarat is a vibrant and diverse state located in western India. Known for its rich history, cultural heritage, and a mix of modern and traditional attractions, Gujarat offers a captivating experience for travelers. Here are some of the top places to visit in Gujarat:</p><p>Ahmedabad:</p><p>Sabarmati Ashram: The former residence of Mahatma Gandhi, a place of deep historical and cultural significance.</p><p>Akshardham Temple: A stunning temple complex known for its intricate architecture.</p><p>Kankaria Lake: A picturesque lake surrounded by gardens and an amusement park.</p><p>Adalaj Stepwell: A beautifully carved stepwell showcasing Gujarat\'s architectural prowess.</p><p>Gir National Park:</p><p>The only natural habitat of the Asiatic lion, offering wildlife enthusiasts a chance to spot these magnificent creatures in the wild.</p><p>somnath:</p><p>Somnath Temple: An ancient and revered temple dedicated to Lord Shiva, located by the Arabian Sea.</p><p>Dwarka:</p><p>Dwarkadhish Temple: A sacred Hindu temple dedicated to Lord Krishna.</p><p>Beyt Dwarka: A serene island known for its beach and ancient temples.</p><p>Rann of Kutch:</p><p>Home to the Great Rann of Kutch, a vast salt desert known for its surreal landscapes.</p><p>Visit during the Rann Utsav (Kutch Festival) for a cultural extravaganza.</p><p>Bhuj:</p><p>Aina Mahal: A historic palace known for its exquisite mirror work and architecture.</p><p>Kutch Museum: Explore the history and culture of the Kutch region.</p><p>Vadodara (Baroda):</p><p><br></p><p>Laxmi Vilas Palace: The opulent residence of the Gaekwad royal family, one of India\'s grandest palaces.</p><p>Sayaji Garden: A lush green garden with a museum and a mini train for kids.</p><p>Patan:</p><p>Rani Ki Vav: A UNESCO World Heritage Site, this stepwell is a masterpiece of Maru-Gurjara architecture.</p><p>Saputara:</p><p>A picturesque hill station in the Dang district, known for its lush greenery and pleasant climate.</p><p>Junagadh:</p><p>Uparkot Fort: An ancient hilltop fort with stunning views of the city.</p><p>Girnar Hill: A sacred pilgrimage site with Jain temples and a challenging trek.</p><p>Palitana:</p><p>Shatrunjaya Hill: Home to nearly 900 Jain temples, a significant pilgrimage site for Jains.</p><p>Champaner-Pavagadh Archaeological Park:</p><p>A UNESCO World Heritage Site with well-preserved ancient structures, including mosques, stepwells, and forts.</p><p>Gujarat\'s diverse attractions, from its historic sites and cultural landmarks to its natural wonders and vibrant cities, offer a rich and immersive travel experience. Whether you\'re interested in history, wildlife, or simply enjoying the warmth of Gujarati hospitality, this state has something for every traveler.</p>',NULL,NULL,NULL,'\"Explore Gujarat\'s Rich Heritage and Natural Wonders: Top Places to Visit\"','Gujarat travel, heritage sites, cultural attractions, natural wonders, India tourism',' Discover the vibrant state of Gujarat with its historic temples, palaces, and natural beauty. Explore the top places to visit in this diverse Indian state for an unforgettable travel experience.','<script></script>','<script></script>','[{\"question\":\"\",\"answer\":\"\"}]',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tbl_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_static_pages`
--

DROP TABLE IF EXISTS `tbl_static_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_static_pages` (
  `sid` int unsigned NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `isb2b` int NOT NULL DEFAULT '0',
  `displayOnFooter` enum('1','0') NOT NULL DEFAULT '1',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `masterCategory` int NOT NULL DEFAULT '0',
  `pageurl` varchar(250) DEFAULT NULL,
  `displayOnLegal` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=206 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_static_pages`
--

LOCK TABLES `tbl_static_pages` WRITE;
/*!40000 ALTER TABLE `tbl_static_pages` DISABLE KEYS */;
INSERT INTO `tbl_static_pages` VALUES (161,'ABOUT US','about-us','<p><br></p>','','About Us','About Us','161_1710334173.jpg','Activate',0,'1','2024-03-13 18:19:34','2024-03-13 18:19:34',0,'','0'),(162,'TERMS & CONDITIONS','terms-conditions','<p><br></p>','TERMS & CONDITIONS','TERMS & CONDITIONS','TERMS & CONDITIONS','162_1710334252.jpg','Activate',0,'1','2024-03-14 16:49:25','2024-03-14 16:49:25',0,'','0'),(202,'SERVICES','services','<p><br></p>','services','services','services','202_1693815927.png','Activate',0,'1','2024-03-14 16:42:42','2024-03-14 16:42:42',0,'','0'),(195,'FLIGHTS','flights','<h1 style=\"text-align: center;\"><font color=\"#6badde\">Flight Deals! </font></h1><h4 style=\"text-align: center;\">Enjoy Great Savings On Online Flight Booking &amp; More!</h4><p style=\"text-align: justify; \">Book flights for various destinations within India or around the world at the lowest airfares with us. As one of the main growing travel portals of India, we continually try to make your trip hassle-free. So, why book from elsewhere? Browse through our site to save big on a wide range of travel deals and benefits and have an amazing travel experience according to your budget. We trust in making marvelous getaways for our customers through customized holiday packages. Enjoy great savings on online flights booking, hotels and holiday trip packages with ‘I Need Trip’.</p><p style=\"text-align: justify;\"><b>Why ‘I Need Trip’?</b></p><p style=\"text-align: justify;\">I Need Trip’ is one of the flourishing travel sites with flight deals, last minute flights, and travel tips that will inspire you to travel. We\'re a team of enthusiastic, insightful explorers set to make it simple for you to find and look at the best flight deals. As one of the thriving travel sites, I Need Trip is the starting point for all your travel plans without having to worry.&nbsp;</p><p style=\"text-align: justify;\">Cheap flights are accessible at ‘I Need Trip’, one of the blooming travel portals of India. The company offers great discounts on domestic and international flight tickets. A reliable name in the travel industry of India, we center on giving smooth online flights booking experience to our clients. In this way, book flights at the lowest airfare by arranging your business or holiday experience with us. You can get all the information you want on the cheap airline tickets and different information before booking your online flight tickets.</p><p style=\"text-align: justify;\"><b>Why come to us?</b></p><p style=\"text-align: justify;\">A huge number of travelers depend on us for counsel and the best determination of cheap airlines and travel deals. The experts have been presenting valuable tips, destination information and travel motivation. We combine experience, and information along with the global partners to create incredible holiday moments. The best flight ticket booking online option!</p><p style=\"text-align: justify;\">If you want to book cheap flight tickets without paying too much, we are here to serve you with the most ideal offers. To lessen your flight booking cost, we have restricted ourselves with a few banking partners. You can profit from the best flight ticket booking deals with the low cost carriers of India to fly within India and abroad. For the lucky ones, last minute discounts on air ticket booking are available with us too. So, go for a hassle-free journey with the best online flight booking discounts.</p><p style=\"text-align: justify;\"><b>How can you find the best flight deals on ‘I Need Trip’?</b></p><p style=\"text-align: justify;\">A basic flight search at <a href=\"https://www.ineedtrip.com/flight\">https://www.ineedtrip.com/flight</a>&nbsp;checks the price of the flights right away. We assemble the best flight deals from across the web and put them in one spot. Then, on the search results page you can apply filters to look at choices for the flights and effectively pick the best flight deal displayed on your screen, with no extra fee from I Need Trip. What do you gain? Online flight booking with the cheapest airfare to fly down to your destination!</p><p style=\"text-align: justify;\"><b>How does ‘I Need Trip’ find low flight prices for you?</b></p><p style=\"text-align: justify;\">‘I Need Trip’ processes more than thousands flight inquiries and presentations results from hundreds of airlines, permitting it to track down an assortment of flight prices and choices. It additionally shows results from 1000+ properties alongside holiday packages, activities and a large number of verified reviews, so users can see all the best possible results and book according to their wish.</p><p style=\"text-align: justify;\">Our easy online flight booking search option, ideal deals and offers, and inspirational travel information simplify it to find the best deal possible. We collaborate with many providers to bring you cheap airline tickets and customized travel options. Our skill and amazing search technology open up new travel possibilities and assist you with flying around the world within your budget.&nbsp;</p><p style=\"text-align: justify;\"><b>What is I Need Trip’s flexible dates feature?&nbsp;</b></p><p style=\"text-align: justify;\">Sometimes we are not sure about our dates, however if your desired travel dates have some leeway, flexible dates will show you flights 3 days prior or after your desired dates. That way, you can check whether leaving a little early or late, you might get the online flight tickets at an extremely less price. You can also choose the flexible \'end of the week\' or \'month\' search options and find the cheap air tickets that fit your choice.</p><p style=\"text-align: justify;\"><b>What is the best day of the week to book flight tickets?</b></p><p style=\"text-align: justify;\">According to past search options, Tuesday was supposed to be the best day to find cheap flight tickets. This is no longer the case. As more business travelers have begun booking their flights during the week, interestingly the day has shifted to Sunday now. So, to save more on flight tickets try to book flights on Sunday, but 21 days ahead of your departure.&nbsp;</p><p style=\"text-align: justify;\"><b>A little tip:</b> Fly on Sunday, Monday, Tuesday, Wednesday, and Thursday, because these days the flight prices are considerably low. Book flights online!</p><p style=\"text-align: justify;\"><b>Is it cheaper to book flights at the last minute?</b></p><p style=\"text-align: justify;\">There is a belief that if you book flights ahead of time, your air tickets will be less expensive. Nonetheless, in opposition to the prevalent view, booking airline tickets late is sometimes less expensive. According to research, online flight tickets are for the most part cheaper if booked three weeks before departure than tickets booked a half year ahead. However, this isn\'t required. The cost of flights changes every day or even hourly in different cases. Commonly, it changes because of the expanding request of a specific course by the travelers. So sometimes booking near the travel dates is cheap and sometimes it’s expensive.&nbsp;</p><p style=\"text-align: justify;\"><b>A little tip:</b> Don’t take the risk! Kindly book early! Get cheap airline tickets!</p><p style=\"text-align: justify;\"><b>Why book with I Need Trip?</b></p><ol><li style=\"text-align: justify;\">Book Cheap Air tickets to any destination across the world.</li><li style=\"text-align: justify;\">Find Budget Airlines in one screen.</li><li style=\"text-align: justify;\">Book Airline tickets from a wide choice of Airlines.</li><li style=\"text-align: justify;\">Best Price Guarantee.</li><li style=\"text-align: justify;\">Get the Best deals on holiday packages to multiple destinations.</li></ol><p style=\"text-align: justify;\"><b>Some tourist destinations in India with the cheap flight tickets:&nbsp;</b></p><ol><li style=\"text-align: justify;\">Cheap flights to Goa&nbsp;</li><li style=\"text-align: justify;\">Cheap flights to Bengaluru&nbsp;</li><li style=\"text-align: justify;\">Cheap flights to Kolkata</li><li style=\"text-align: justify;\">Cheap flights to Delhi&nbsp;</li><li style=\"text-align: justify;\">Cheap flights to Mumbai</li><li style=\"text-align: justify;\">Cheap flights to Jaipur&nbsp;</li><li style=\"text-align: justify;\">Cheap flights to Andaman &amp; Nicobar Islands&nbsp;</li><li style=\"text-align: justify;\">Cheap flights to Ladakh leh</li><li style=\"text-align: justify;\">Cheap flights to Udaipur</li><li style=\"text-align: justify;\">Cheap flights to Jodhpur</li></ol><p style=\"text-align: justify;\"><b>Some international tourist destinations with cheap flight tickets from India:&nbsp;</b></p><ol><li style=\"text-align: justify;\">Cheap flight to Dubai</li><li style=\"text-align: justify;\">Cheap flight to Maldives</li><li style=\"text-align: justify;\">Cheap flight to Thailand</li><li style=\"text-align: justify;\">Cheap flight to Sri Lanka</li><li style=\"text-align: justify;\">Cheap flight to Nepal&nbsp;</li><li style=\"text-align: justify;\">Cheap flight to Bhutan</li><li style=\"text-align: justify;\">Cheap flight to Bali&nbsp;</li><li style=\"text-align: justify;\">Cheap flight to Singapore</li><li style=\"text-align: justify;\">Cheap flight to Malaysia</li><li style=\"text-align: justify;\">Cheap flight to London</li></ol><p style=\"text-align: justify;\"><b>Best budget airlines to fly within and outside India:&nbsp;&nbsp;</b></p><ol><li style=\"text-align: justify;\">Air India Express</li><li style=\"text-align: justify;\">AirAsia India</li><li style=\"text-align: justify;\">IndiGo Airlines</li><li style=\"text-align: justify;\">SpiceJet&nbsp;</li><li style=\"text-align: justify;\">GoAir&nbsp;</li></ol><p style=\"text-align: justify;\">Always book in advance to avail offers! Book flight online!</p>','Book Online Flights | Flight Tickets Booking at Lowest Airfare','Cheap Flights, Online Flights, Flight Booking, Flight Deals, Online Flight Deals, Cheap Airline Tickets','Book flights for various destinations within India or around the world at the lowest airfares with us. Enjoy Great Savings On Online Flight Booking & More!','195_1615527493.jpg','Activate',0,'0','2021-01-05 16:27:20','2021-11-22 21:46:00',0,NULL,'0'),(167,'PRIVACY POLICY','privacy-policy','<p><br></p>','PRIVACY POLICY','PRIVACY POLICY','PRIVACY POLICY','167_1710334381.jpg','Activate',0,'1','2024-03-14 16:45:18','2024-03-14 16:45:18',0,'','0'),(205,'MEDIA','media','','','','','205_1693815961.png','Activate',0,'1','2023-09-04 13:56:01','2023-09-04 13:56:01',0,'','0'),(184,'OFFERS','offers','','Offers','Offers','Offers','184_1710330734.jpg','Activate',0,'1','2024-03-14 16:44:48','2024-03-14 16:44:48',0,'','0'),(185,'DOMESTIC TOUR PACKAGES','domestic-tour-packages','','','','','185_1616068521.jpg','Activate',0,'0','2024-03-14 16:44:37','2024-03-14 16:44:37',0,'','0'),(190,'CONTACT US','contact-us','<p>CONTACT US</p>','CONTACT US','CONTACT','CONTACT','190_1710330903.jpg','Activate',0,'1','2024-03-14 16:44:27','2024-03-14 16:44:27',0,'','0'),(204,'INTERNATIONAL TOUR PACKAGES','international-tour-packages','<p>INTERNATIONAL TOUR PACKAGES</p>','','international holidays,tours,packages','','204_1690805592.jpg','Activate',0,'0','2024-03-14 16:42:33','2024-03-14 16:42:33',0,'','0'),(194,'BLOGS','blogs','','I Need Trip  | Blogs','blog,travelogues','Where to travel, when to travel, how to travel all at one place','194_1693816136.png','Activate',0,'1','2023-09-04 13:58:56','2023-09-04 13:58:56',2,'','0'),(196,'VISA','visa','','','','','196_1693816091.png','Activate',0,'1','2024-03-14 16:43:49','2024-03-14 16:43:49',0,'','0'),(199,'ACTIVITIES','activities','<p>ACTIVITIES</p>\r\n','I Need Trip | Activities','activities,sightseeing,tours','ACTIVITIES','199_1616064737.jpg','Deactivate',0,'0','2021-03-16 16:09:08','2021-03-23 17:27:21',1,NULL,'0'),(197,'HOTEL','hotel','','','','','197_1616067548.jpg','Deactivate',0,'0','2024-03-14 16:43:33','2024-03-14 16:43:33',0,'','0'),(198,'HOLIDAYS','holidays','','','','','198_1616055027.jpg','Activate',0,'0','2024-03-14 16:43:11','2024-03-14 16:43:11',0,'','0'),(200,'24 7 SUPPORT','24-7-support','<p><br></p>','','support, customer service, travel 24x7 service, 24*7','We provide the best 24*7 Customer Service','200_1710334482.jpg','Activate',0,'1','2024-03-14 16:42:58','2024-03-14 16:42:58',0,'','0'),(201,'DIRECTOR\'S DESK','director-s-desk','<br>','','Director\'s Desk','Director\'s Desk','201_1710334543.jpg','Activate',0,'1','2024-03-14 16:42:50','2024-03-14 16:42:50',0,'','0'),(193,'A MEMBERS-ONLY WHOLESALE BOOKING SITE','a-members-only-wholesale-booking-site','<p>Now Search our best seller readymade packages or BUILD YOUR OWN PACKAGE in few minutes for Kerala, Andaman, Leh</p>\r\n\r\n<ul>\r\n	<li><strong>BOOK FLIGHTS&nbsp;</strong></li>\r\n	<li><strong>BOOK HOTELS</strong></li>\r\n	<li><strong>GST INVOICE ON THE GO</strong></li>\r\n	<li><strong>EASY LEDGER ACCESS&nbsp;</strong></li>\r\n	<li><strong>STAFF MANAGEMENT WITH PERMISSION CONTROL</strong></li>\r\n	<li><strong>EXCLUSIVE</strong> Member Wholesale Rates</li>\r\n	<li><strong>100%</strong> Lowest Price Guarantee*</li>\r\n</ul>\r\n','Home','Home','Home','','Deactivate',1,'0','2021-03-08 12:56:33','2021-06-18 12:12:10',1,NULL,'0');
/*!40000 ALTER TABLE `tbl_static_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_support`
--

DROP TABLE IF EXISTS `tbl_support`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_support` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `isDisplayOnHome` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_support`
--

LOCK TABLES `tbl_support` WRITE;
/*!40000 ALTER TABLE `tbl_support` DISABLE KEYS */;
INSERT INTO `tbl_support` VALUES (1,'24/7','Agent support helpline','support.svg','1','1','0'),(2,'Multiple Income','Get awesome opportunities','multipleincome.svg','1','1','0'),(3,'Good Commissions','Earn good deals and commissions','good_comission.svg','1','1','0'),(4,'Agent portal','Get Interactive exclusive portal','agent_portal.svg','1','1','0'),(5,'Latest Deals','Access to the great deals','latest_deals.svg','1','1','0'),(6,'30+','Years of business experience','trophy.svg','1','1','0');
/*!40000 ALTER TABLE `tbl_support` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_team`
--

DROP TABLE IF EXISTS `tbl_team`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_team` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(500) NOT NULL,
  `designation` varchar(500) NOT NULL,
  `description` text NOT NULL,
  `image` varchar(256) NOT NULL,
  `display` enum('1','0') NOT NULL DEFAULT '1',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_team`
--

LOCK TABLES `tbl_team` WRITE;
/*!40000 ALTER TABLE `tbl_team` DISABLE KEYS */;
INSERT INTO `tbl_team` VALUES (4,'Chetan Gupta','Director','Chetan Gupta, As the name says YOUR INDIA TRAVEL, this is for you about India. Every time you choose YIT, you are placing your confidence and trust in us - in our \'Product\', our \'Service\' and our \'People\'. Your expectations from us are undoubtedly high and that\'s what keeps us continuously trying to improve ourselves.','1561373672.png','1','1','0');
/*!40000 ALTER TABLE `tbl_team` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_temp_data`
--

DROP TABLE IF EXISTS `tbl_temp_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_temp_data` (
  `id` int NOT NULL AUTO_INCREMENT,
  `TraceId` varchar(200) NOT NULL,
  `json_data` longtext NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_temp_data`
--

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

--
-- Table structure for table `tbl_temp_urldata`
--

DROP TABLE IF EXISTS `tbl_temp_urldata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_temp_urldata` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `UrlData` text NOT NULL,
  `CreatedDate` datetime NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_temp_urldata`
--

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

--
-- Table structure for table `tbl_testimonials`
--

DROP TABLE IF EXISTS `tbl_testimonials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_testimonials` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `name` varchar(16) NOT NULL,
  `message` text NOT NULL,
  `Image` varchar(100) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL,
  `created_at` datetime NOT NULL,
  `star_rating` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_testimonials`
--

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

--
-- Table structure for table `tbl_token_goflysmart`
--

DROP TABLE IF EXISTS `tbl_token_goflysmart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_token_goflysmart` (
  `id` int NOT NULL AUTO_INCREMENT,
  `api_source` varchar(100) NOT NULL,
  `token` text,
  `balance` float NOT NULL DEFAULT '0',
  `expires_in` varchar(200) DEFAULT NULL,
  `login_response` text,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_token_goflysmart`
--

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

--
-- Table structure for table `tbl_train`
--

DROP TABLE IF EXISTS `tbl_train`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_train` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `page_title` varchar(225) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `url` varchar(100) NOT NULL,
  `background_image` varchar(100) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `selectedPackages` text NOT NULL,
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_train`
--

LOCK TABLES `tbl_train` WRITE;
/*!40000 ALTER TABLE `tbl_train` DISABLE KEYS */;
INSERT INTO `tbl_train` VALUES (1,'GOLDEN-CHARIOT','golden-chariot','http://local.your_india_travel.com/index/golden-chariot','1_1572853721.jpg','Activate','0000-00-00 00:00:00','2019-11-04 13:29:57',''),(2,'ROYAL-RAJASTHAN','royal-rajasthan','http://local.your_india_travel.com/index/royal-rajasthan','2_1572853663.jpg','Activate','0000-00-00 00:00:00','2019-11-04 15:39:43',''),(3,'PALACE-WHEELS','palace-wheels','http://local.your_india_travel.com/index/palace-wheels','_1572862257.jpg','Activate','0000-00-00 00:00:00','2019-11-04 15:40:57',''),(4,'DECCAN-ODYSSEY','deccan-odyssey','http://local.your_india_travel.com/index/deccan-odyssey','_1572862334.jpg','Activate','0000-00-00 00:00:00','2019-11-04 15:42:14',''),(5,'INDIAN-MAHARAJA','indian-maharaja','http://local.your_india_travel.com/index/indian-maharaja','_1572862382.jpg','Activate','0000-00-00 00:00:00','2019-11-04 15:43:02',''),(6,'SPLENDOR-SOUTH','splendor-south','http://local.your_india_travel.com/index/splendor-south','_1572862429.jpg','Activate','0000-00-00 00:00:00','2019-11-04 15:45:09','');
/*!40000 ALTER TABLE `tbl_train` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_travelogues`
--

DROP TABLE IF EXISTS `tbl_travelogues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_travelogues` (
  `TravId` int NOT NULL AUTO_INCREMENT,
  `TravTitle` varchar(255) NOT NULL,
  `TravIdentifier` varchar(256) NOT NULL,
  `TravImage` varchar(255) NOT NULL,
  `TravBannerImage` varchar(255) DEFAULT NULL,
  `TravDestination` varchar(1000) DEFAULT NULL,
  `TravUploadedBy` varchar(255) NOT NULL,
  `TravDate` date NOT NULL,
  `TravDays` int DEFAULT NULL,
  `TravTraveller` int DEFAULT NULL,
  `TravCost` int DEFAULT NULL,
  `TravDescription` longtext NOT NULL,
  `TravDestinationId` varchar(500) DEFAULT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `TravMultiImage` text,
  `status` tinyint DEFAULT '0',
  `tags` varchar(100) DEFAULT NULL,
  `displayOnBanner` tinyint NOT NULL DEFAULT '0',
  `isMarkForDel` tinyint DEFAULT '0',
  `keyword` text,
  `description` text,
  `metatag` text,
  `selectedPackages` text,
  `category` int DEFAULT NULL,
  `BlogDescription` text NOT NULL,
  PRIMARY KEY (`TravId`)
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_travelogues`
--

LOCK TABLES `tbl_travelogues` WRITE;
/*!40000 ALTER TABLE `tbl_travelogues` DISABLE KEYS */;
INSERT INTO `tbl_travelogues` VALUES (2,'24 BEST PLACES TO VISIT IN DECEMBER IN INDIA','24-best-places-to-visit-in-december-in-india','1617713645_blog.jpg','1609841189.jpg',NULL,'Blogger','2020-10-20',NULL,NULL,NULL,'<p>Talking about a destination or the perfect spot for a honeymoon, Maldives is what instantly comes to one&rsquo;s mind. If you are on the lookout for the best honeymoon package to Maldives, then you are in the right place.&nbsp;The Maldives is a place that pops in your head whenever you think of a romantic place with overwater villas, the sea that does not seem to end, sunsets that are dreamy, and services that are considered to be the best. The Maldives tops the list of everyone&rsquo;s go-to honeymoon destination, and no-one can doubt that as the place is simply magical.</p>\r\n\r\n<p>If you tapped on this article, we are sure that you must be wondering about the best honeymoon package to Maldives. Talking about the packages and booking your honeymoon trip, several things need to be considered before you plan the perfect trip of your life. Careful planning needs to take place in order to ensure that you have the best and the most romantic time during your stay.</p>\r\n\r\n<p>&nbsp;</p>\r\n',NULL,'2020-10-20 16:37:19','2020-10-20 16:37:19',NULL,1,'',0,1,'','','','[\"6\",\"5\",\"4\"]',1,'{\"blogdetailTitle\":[\"Testing \",\"Blog Detail Title 3\"],\"BlogDescription\":[\"<p><img src=\\\"public\\/upload\\/travelogues\\/descriptionimage\\/descriptionimage_1614844874.jpg\\\" style=\\\"width: 920px;\\\">description \\/content\\u00a0<\\/p>\",\"<p><img src=\\\"public\\/upload\\/travelogues\\/descriptionimage\\/descriptionimage_1614844874.jpg\\\" style=\\\"width: 920px;\\\"><span style=\\\"color: rgb(51, 51, 51); font-size: 14px;\\\">Description \\/ Content<\\/span><br><\\/p>\"],\"images\":[\"\"],\"detailPackages\":[\"\",\"\"]}'),(3,'Test 1','test-1','1604573113_blog.jpg','1604573182.jpg',NULL,'Blogger','2020-10-28',NULL,NULL,NULL,'<p>Unlike the heavy rose and jasmine scents in the warm air, the Indian aroma is an unforgettable one. The place is home to some of the best multidimensional and eclectic cultural mix that has truly resulted in a variety of delightful food traditions. There is no dish that can be termed as the perfect symbolization of India itself as the country is full of regional culinary traditions that together form the Indian food culture.</p>\r\n\r\n<p>The variety of Indian food is enough to make even the most colorful of the pictures seem bland in front of it. It is both fiery as well as aromatic at the same time, especially due to the spices used during the preparation of these gastronomical delights. In fact, the term &lsquo;curry&rsquo; has today assumed unimaginable proportions as a true Indian dish for most of the English countries. These so called curries come in all forms and tastes all across India depending upon the region you are visiting. It may be fiery red down south a mellower orange up north while on the western side you may find it leaning more towards the color of sunflowers. Be prepared for the chilly shock as and when you taste the same curry in the north eastern side of India whose chilies are said to be among the most potent ones of the world. Like the palette of an artist, an Indian kitchen is full of as many as twenty five spices used as per the directions and taste of the cook.</p>\r\n\r\n<p>For all of you who love to sample vegetarian stuff and are a perfect vegetarian, India is the place where you will get to sample more vegetarian dishes you could find in whole Europe. The sweets too are something that need to be tasted to be truly experienced for their culinary delight and taste. Whether it&rsquo;s a &lsquo;kulfi&rsquo; or a &lsquo;jalebi&rsquo; you will find your sweet tooth asking for more of these gastronomical wares. In addition to this, you will find an abundance of both the temperate and the tropical fruits here such as the apricots, watermelons, mangoes, strawberries, pomegranates and many others along with other western confectioneries. To complete your food journey, do not forget to sample the &lsquo;Paan&rsquo;, a betel leaf wrapped with spices such as cardamom and aniseed.</p>\r\n\r\n<p>Indian food journey is so vast and countless, that it can hardly be kept shackled just into the kitchens. Available right on every street corner is some irresistible snack houses that offer great spicy food at inexpensive rates. However, caution needs to be taken by people sampling these for the first time as it can turn even the most seasoned foodie&rsquo;s stomach upside down!!!! Given these delights, it is no wonder that Indian food is one of the most of popular cuisines of the world. So, take your savory glands on the most delightful gastronomical vacation they have ever been on !!!!</p>\r\n',NULL,'2020-10-26 17:19:06','2020-10-26 04:49:06',NULL,1,'',1,1,'','','','',1,''),(4,'How to choose the best honeymoon package to Maldives','how-to-choose-the-best-honeymoon-package-to-maldives','1615031356_blog.jpg','1615031356.jpg',NULL,'Aniket Agarwal','2021-02-05',NULL,NULL,NULL,'<p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify;\"><img src=\"public/upload/travelogues/descriptionimage/descriptionimage_1614844874.jpg\" style=\"width: 566px; height: 566px;\"></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify;\">Talking about a destination or the perfect spot for a honeymoon, Maldives is what instantly comes to one’s mind. If you are on the lookout for the best honeymoon package to Maldives, then you are in the right place.&nbsp;The Maldives is a place that pops in your head whenever you think of a romantic place with overwater villas, the sea that does not seem to end, sunsets that are dreamy, and services that are considered to be the best. The Maldives tops the list of everyone’s go-to honeymoon destination, and no-one can doubt that as the place is simply magical.</p><h2 style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify;\">If you tapped on this article, we are sure that you must be wondering about the best honeymoon package to Maldives. Talking about the packages and booking your </h2><h1>honeymoon trip, several things need to be considered before you plan the perfect </h1>trip of your life. Careful planning needs to take place in order to ensure that you have the best and the most romantic time during your stay.<p></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify;\"><br></p>',NULL,'2021-03-06 17:19:17','2021-03-06 17:19:17',NULL,1,'',0,1,'','','','[\"12\"]',1,''),(5,'Where are the world\'s so-called glowing beaches','where-are-the-worlds-so-called-glowing-beaches','1615185250_blog.jpg','1615185250.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Like us, you might have seen those pictures of ‘glowing beaches\' on the internet quite a few times now. If not, you can check them out within this blog. This post mentions some of the best beaches in the world where all you beach lovers can feel the cool breeze. Where you can listen to the relaxing sound of waves. The sparkling blue water right beneath your feet will be like a cherry on the top of a cake.&nbsp;&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></span></p><h3 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em; color: rgb(112, 112, 112); text-align: center;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">Before we get to the&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">good part, a little insight into what makes these beaches glow?&nbsp;</span></h3><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">So, what’s the deal with these ‘</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">glowing beaches</i></span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">’? How come the water glows, neon blue? We could say that there’s some ‘blue magic’ going on in the waters. But \'blue magic\' would be a catchy tag to the actual process called ‘Bioluminescence.’ Bio…, what?&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">As Shakespeare said, ‘What’s in a name?’, we won’t bother with the terminology here, let’s get straight to the locations.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></span></p><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives1.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-21284 size-full\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives1.jpg\" alt=\"Where are the world\'s so-called \'glowing beaches\'?\" width=\"1024\" height=\"576\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-width: initial; border-style: none; border-radius: 0px; box-shadow: none; text-align: center; width: 800px; height: 450px;\"></a></h5><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Does this image look edited? IT’S NOT!</i></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">We know you can’t hold the excitement to get a complete list of these beautiful beaches. We also know, that once you get the list, you\'ll plan a</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;holiday trip to one of them.</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">You ready? Here we go!&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">So, there are more than 15 places around the world that are host to these magnificent&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">bioluminescent beaches</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;or ‘</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">glowing beaches</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">’. The list includes the likes of Japan, USA, Australia, New Zealand, and Puerto Rico among others. But these are no match to the two other destinations that we have described here. So before you plan a trip to any of these places, read below, we have&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">SOMETHING SPECIAL&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">for you.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">We at</span><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;ineedtrip</strong><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;can plan a&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">customized honeymoon or holiday tour package</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;for you. We will take you to 2 of the most fantastic beach destinations around the world that are home to such&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">bioluminescent beaches</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">. Why only these 2? Because we Indians, dream about both these destinations (well, at least most of us do). And they would be incredibly budget-friendly when compared to others. You won’t have to travel to the USA or New Zealand or other ‘big’ (in terms of currency) countries and put a hole in your pocket to see that sight.&nbsp;</span></p><div style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px; text-align: justify;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;</span></div><h3 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em; color: rgb(112, 112, 112);\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">Reethi Beach, Maldives</span></h3><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/1b.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-21286 size-full\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/1b.jpg\" alt=\"Where are the world\'s so-called \'glowing beaches\'?\" width=\"1600\" height=\"1068\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-width: initial; border-style: none; border-radius: 0px; box-shadow: none; text-align: center; width: 800px; height: 534.256px;\"></a></h5><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Image Credits:</i>&nbsp;<a href=\"https://rove.me/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">https://rove.me/</a></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Maldives, yes! Any list of</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">&nbsp;the best beach destinations around the world</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;will be incomplete if it doesn’t have the Maldives on the list. With the white sand beaches, vibrant corals, clear waters, and some stunning treks to hike, Maldives is truly a wonderful place to visit for your honeymoon or holiday. “Where is the glowing beach?” you might ask, it is located on Fonimagoodhoo Island</span>&nbsp;<span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">in the Maldives.&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Reethi Beach or the \' glowing beach’, offers a truly mesmerizing sight. The beach is calm with white sand and turquoise blue water in the day and sparkling neon blue lights on no-moon nights. Already imagining yourself taking pictures? Book a&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">customized holiday package to Maldives</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;with</span><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;ineedtrip</strong><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;and get amazing discounts! You can sit there and think about other such wonders of nature.</span></p><div style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px; text-align: justify;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;Wish to know more about Maldives? Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-places-to-visit-in-maldives-for-honeymoon/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">5 Best Places to Visit in Maldives.</a></span></div><div style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px; text-align: justify;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></span></div><div style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px; text-align: justify;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\"><br></span></div><h3 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.125em; color: rgb(112, 112, 112);\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">Padangbai Beach, Bali</span></h3><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives1a.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone size-full wp-image-21285\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives1a.jpg\" alt=\"\" width=\"800\" height=\"534\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-width: initial; border-style: none; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></h5><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Image Credits:&nbsp;</i><a href=\"https://www.thisiscolossal.com/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">https://www.thisiscolossal.com/</i></a></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">It had to be here!&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;is a literal dream for all beach lovers and probably the best romantic getaway in the world. Bali is so beautiful that we have people traveling every year to the same place. Most of the photos of those jaw-dropping beaches that you see on social platforms are of beaches located in Bali.&nbsp; With turquoise-blue waters and beaches with diverse corals, this place is the gem of Indonesia.&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">Padangbai beach</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">, located in the Port City-Padangbai, is a&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; font-weight: 700;\">bioluminescent beach</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;and is home to a magnificent sight at night.&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">But what’s so good about this one? You can visit the glittering waters AT NIGHT on a boat. You can talk to the local fisherman out there, or take a night ferry to one of the close-by islands. Still not satisfied? You can even take a night dive at the site and immerse in the blue lights. When you come out, your diving gears will be glowing courtesy ‘</span><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">phytoplankton</i><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">.’&nbsp;</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Is Bali on the list of your must-visit international destinations? Well, you got one more reason to choose Bali as your next travel destination. We have got some amazing deals for you if you’re planning to visit the place. If not, our customized holiday packages to Bali will definitely convince you.</span></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px; text-align: justify;\">If you want to know more about things to do in Bali, read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">7 Best Places to Visit in Bali.</a></p><p style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 14px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Okay, so now you know where these ‘glowing beaches’ are located. You also know which ones you should visit to keep the budget in check. And that SOMETHING SPECIAL we talked about earlier? We at&nbsp;<strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">ineedtrip</strong>&nbsp;have customized some amazing</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;Bali and Honeymoon Packages for you. They are&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">loaded with offers and incredible deals that you’ll not find anywhere else. What are you waiting for?&nbsp;</span></p><h3 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 2.8125em; color: rgb(112, 112, 112); text-align: center;\"><a href=\"https://www.ineedtrip.com/maldives-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Customize now</strong></a></h3><h5 style=\"outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><i style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Until next time!</i></h5>',NULL,'2021-03-08 12:04:10','2021-03-08 12:04:10',NULL,1,'',0,1,'Glowing Beaches','Like us, you too might have seen those pictures of ‘glowing beaches\' on the internet quite a few times now, if not, check them out within this blog.','','[\"16\"]',1,''),(6,'Sudipta Testing','sudipta-testing','1615390171_blog.jpg','1615390171.png',NULL,'Sudipta Banerjee','2021-03-10',NULL,NULL,NULL,'<p>While the lockdown put a ban on travelling across India, it could not however curb people’s desire to explore new places. A recent survey conducted by FICCI and Thrillophilia across India, revealed that while more than 50 plan to travel in the next 2 months alone, 33% are making plans to travel twice of what they did in 2019 as the next year rolls in.</p><p><br></p><p>Conducted in October 2020 with most respondents belonging to major metropolitan cities in India, this survey was aimed towards understanding the post-COVID preferences of Indian travellers and covered aspects like safety measures, accommodations, modes of transport, etc.</p>',NULL,'2021-03-10 20:59:32','2021-03-10 20:59:32',NULL,1,'',0,1,'','','','[\"17\",\"16\",\"15\"]',1,'{\"blogdetailTitle\":[\"Nepal Travel\",\"West Bengal\"],\"BlogDescription\":[\"<p>The national parks and forests in West Bengal are all set to welcome tourists with appropriate safety measures from September 23 as per the announcement by Rajib Banerjee, the Forest Minister. The process of reopening has already been initiated by all parks and forests and the safety guidelines have also been issued to all.<\\/p><p><br><\\/p><p>All safety guidelines have been issued on the basis of COVID advisory of the Health Department to ensure the safety of all officials, tourists and staff entering the premises of the parks.<\\/p>\",\"<p>All safety guidelines have been issued on the basis of COVID advisory of the Health Department to ensure the safety of all officials, tourists and staff entering the premises of the parks.<\\/p><p><br><\\/p><p>The parks and forest of West Bengal had been shut down since the beginning of the nationwide lockdown in March. The same has caused a massive loss to wildlife tourism in the state. The news has brought much-needed relief to the wildlife enthusiasts of the country and also to tour operators and guides who are now hopeful for a quicker recovery of the travel industry in West Bengal.<\\/p>\"],\"images\":[\"\"],\"detailPackages\":[\"24395,24259\",\"\"]}'),(7,'Sudipta  Testing','sudipta-testing','1615449060_blog.jpg','1615446081.jpg',NULL,'Sudipta','2021-03-25',NULL,NULL,NULL,'<p><span style=\"color: rgb(119, 119, 119); font-family: Poppins, sans-serif; font-size: 14px; background-color: rgb(249, 249, 249);\">Like us, you might have seen those pictures of ‘glowing beaches\' on the internet quite a few times now. If not, you can check them out within this blog. This post mentions some of the best beaches in the world where all you beach lovers can feel the cool breeze. Where you can listen to the relaxing sound of waves. The sparkling blue water right beneath your feet will be like a cherry on the top of a cake.&nbsp;&nbsp;</span><br></p>',NULL,'2021-03-11 12:31:22','2021-03-11 12:31:22',NULL,1,'',0,1,'','','','[\"18\"]',1,'{\"blogdetailTitle\":[\" ANDAMAN HONEYMOON\",\"RADIANT HOLI IN DIGANTAA RESORT\"],\"BlogDescription\":[\"<p><span style=\\\"color: rgb(119, 119, 119); font-family: Poppins, sans-serif; font-size: 14px; background-color: rgb(249, 249, 249);\\\">ike us, you might have seen those pictures of \\u2018glowing beaches\' on the internet quite a few times now. If not, you can check them out within this blog. This post mentions some of the best beaches in the world where all you beach lovers can feel the cool breeze.\\u00a0<\\/span><br><\\/p>\",\"<p><font face=\\\"Arial\\\" style=\\\"\\\"><big style=\\\"box-sizing: border-box; color: rgb(33, 37, 41);\\\"><span style=\\\"box-sizing: border-box;\\\">Digantaa Resort<\\/span><\\/big><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">\\u00a0is a venue to cater the needs of an over-demanding urban lifestyle. Keeping in view the need of time, we have created this unique wellness provision.\\u00a0<\\/span><big style=\\\"box-sizing: border-box; color: rgb(33, 37, 41);\\\"><span style=\\\"box-sizing: border-box;\\\">Digantaa Resort\\u00a0<\\/span><\\/big><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">is basically a\\u00a0<\\/span><span style=\\\"box-sizing: border-box; color: rgb(33, 37, 41); font-size: 16px;\\\">spa and golf resort,\\u00a0<\\/span><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">located near<\\/span><span style=\\\"box-sizing: border-box; color: rgb(33, 37, 41); font-size: 16px;\\\">\\u00a0Dhanachuli, Mukteshwar, Uttarakhand.<\\/span><br style=\\\"box-sizing: border-box; color: rgb(33, 37, 41); font-size: 16px;\\\"><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">\\\"The Philosophy of\\u00a0<\\/span><span style=\\\"box-sizing: border-box; color: rgb(33, 37, 41); font-size: 16px;\\\">Digantaa Resort<\\/span><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">\\u00a0is inspired by Ancient Indian Ayurvedic Tradition of<\\/span><em style=\\\"box-sizing: border-box; color: rgb(33, 37, 41); font-size: 16px;\\\"><span style=\\\"box-sizing: border-box;\\\">\\u00a0Panchmahabhoot<\\/span><\\/em><span style=\\\"color: rgb(33, 37, 41); font-size: 16px;\\\">\\u00a0\\u2013 Shabd (Sound), Sparsh (Touch), Roop (Vision), Gandh (Smell) and Ras (Taste).\\\" The unique balance between all these five great elements ensures the required balance between \\u2018Mana\\u2019 (Mind), \\u2018Tana\\u2019 (Body) and \\u2018Atman\\u2019 (Soul). This way we claim to be the ultimate destination where we bridge a gap between you and yourself, nourish your body, and refresh your mind.<\\/span><\\/font><br><\\/p>\"],\"images\":[\"\"],\"detailPackages\":[\"24395\",\"22734,22090,23333\"]}'),(8,'How to Plan a Dinner Date on Honeymoon in Dubai','how-to-plan-a-dinner-date-on-honeymoon-in-dubai','1617785398_blog.jpg','1632152579.jpg',NULL,'Aniket Agarwal','2021-01-27',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Luxury, architecture, adventure, romance: there isn’t much that Dubai doesn’t have. From glorious skyscrapers to a zillion shopping malls to stunning theme parks, Dubai has it all. Therefore, it’s no surprise that Dubai is one of the most sought out locations on the whole planet. With more than 15 million tourists annually, Dubai is popular amongst all types of tourists, including couples on a getaway. And therefore, Dubai can serve as the perfect honeymooning destination for you and your partner. Today, we’re going to look at the different options and the things you must keep in mind while planning the perfect dinner date on honeymoon in Dubai.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>The Best Time for Visiting Dubai</strong></p>\r\n\r\n<p style=\"text-align: justify; \">While you can visit this beautiful city all year round, November to March is usually considered to be the best time because of a cooler atmosphere, allowing you to dine outdoors and enjoy the various attractions the place has to offer. Also, visiting in January or February would ensure that you get to be a part of the Dubai Shopping Festival. You must keep in mind to avoid going on a honeymoon in Dubai during the months of festivals (like Ramadan) when the laws are strict and drinking, smoking, and eating are prohibited.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Best Activities for a Couple on a Honeymoon in Dubai</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Dubai has tons of attractions and activities which are bound to enchant you. From stunning aquariums to grand malls to the tallest building in the world, Dubai has it all. You can spend your day on a desert safari or on a romantic spa date or cruising in Bateaux Dubai. The options are innumerable and you can choose any as per your liking!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Best Places for a Dinner Date</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The amount of diversity and choices in dining that Dubai provides is astounding and it can easily become quite overwhelming. Below, we’ve listed down some of the best restaurants you can visit in Dubai for a romantic dinner date on <a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">honeymoon in Dubai</a>:</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Ossiano</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Set in an underwater aquarium, Ossiano is the perfect place if you plan to have a beautiful, romantic dinner with your partner. Serving a variety of cuisines from the Mediterranean to European, you’d never forget the experience here.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Fish Beach Taverna</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Fairy lights, a smooth sea breeze pouring over you, a gorgeous view of the beach: all of that screams&nbsp;<em>romantic</em>, doesn’t it? A beautiful dinner date under the wide-open sky. This is a great option for a dinner date on honeymoon in Dubai.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Atmosphere</strong></p>\r\n\r\n<p style=\"text-align: justify;\">While we’re on the topic of the best restaurants in Dubai, how can we not mention the tallest restaurant in the world? Oh yes, Atmosphere provides you with a magnificent view of the glorious city that is Dubai, while you hold hands with your partner, holding a champagne glass with the other arm. The whole atmosphere is something else and which you’ll cherish for the rest of your life.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Thiptara</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Set in the Palace Downtown, this marvelous restaurant provides you with the best view of the glorious Dubai Fountain. This isolated place and the beauty surrounding it provides for an unparalleled experience.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Pierchic</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pierchic is iconic in every sense of the word. Set at the end of a wooden pier with a view of the calm and shining waters of the Gulf, it makes for a brilliant location for a dinner date. With a wide variety of delicious cuisines to choose from, it serves a memorable experience for you and your partner.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Al Dawaar Revolving Restaurant</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Verified. With a 360° view of the sprawling, bustling city that is Dubai, Al Dawaar works as the perfect spot for adventurous couples. With some heavenly middle eastern and Arabian dishes, it provides you with a joyful and romantic experience that you’ll never, ever forget.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Tong Thai</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Floating lanterns, signature Thai dishes, and a surreal atmosphere: no, we’re not describing a dream, but rather the gorgeous Tong Thai restaurant. You also get to view the sparkling heights of Business Bay while enjoying a scrumptious meal with your partner.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Masti Cocktails and Cuisine</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Filled with stunning colors and beautiful decorations, this magnificent place will instantly take you to the Indian soil. Moreover, with plenty of dishes to choose from, the food is mouth-watering and will make you lose yourself.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Ineedtrip for your Dubai Honeymoon Packages</strong></p>\r\n\r\n<p style=\"text-align: justify;\">It’s quite tedious and boring, isn’t it? Planning every move, searching, more searching, fitting everything under your preferences and budget options, and even then have a slight risk of some unintended error or miscalculation. When you’re planning for your honeymoon, why not leave it to the experts who’ve been in the industry for years, and savor every moment with your partner? That’s where our packages come in. With multiple customizable options in the plethora of&nbsp;packages&nbsp;we have, you’ll get the best experience, no matter what your restraints are. For an unforgettable <b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">honeymoon in Dubai</a></b>, you know where to look for!</p>',NULL,'2021-03-16 14:13:50','2021-03-16 14:13:50',NULL,1,'',0,0,'Honeymoon in Dubai, Dubai Package, Book Dubai Honeymoon Tour, Honeymoon Package, Holiday Package, Book Dubai Holidays','Planning a dinner date on honeymoon in Dubai can be a challenging task. But fret not! This blog will help you choose from the best restaurants in Dubai.','Plan a Dinner Date on Honeymoon in Dubai, Honeymoon Package Dubai','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25156, 24820, 24818, 24814, 24735, 24614, 22909, 22820, 24534, 22707, 24480, 22434, 22702\"]}'),(9,'How to choose the best honeymoon packages to Maldives','how-to-choose-the-best-honeymoon-packages-to-maldives','1617785118_blog.jpg','1632153237.jpg',NULL,'Aniket Agarwal','2021-02-05',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Talking about a destination or the perfect spot for a honeymoon, Maldives is what instantly comes to one’s mind. If you are on the lookout for the best honeymoon package to Maldives, then you are in the right place.&nbsp;The Maldives is a place that pops in your head whenever you think of a romantic place with overwater villas, the sea that does not seem to end, sunsets that are dreamy, and services that are considered to be the best. The Maldives tops the list of everyone’s go-to honeymoon destination, and no-one can doubt that as the place is simply magical. If you tapped on this article, we are sure that you must be wondering about the best honeymoon package to Maldives. Talking about the packages and booking your honeymoon trip, several things need to be considered before you plan the perfect trip of your life. Careful planning needs to take place in order to ensure that you have the best and the most romantic time during your stay.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What else?</strong><br></p>\r\n\r\n<p style=\"text-align: justify;\">Weddings are not all fun and games. A lot of effort goes into the plan of a wedding, and it is also very overwhelming to go through with it. We know how hectic it can get, and hence, we understand your need to plan a honeymoon that allows you to chill, relax, and enjoy quality time with your partner. The Maldives makes for an incredible honeymoon spot because the place is peaceful, calm, and simply magical. However, it can be a task to find the perfect resort, plan your days, the timing, budget, and various other factors. In this article, we are here to help you find the best honeymoon package to Maldives. We will help you out in every possible way, and we will also ensure that we guide you to find the right package depending upon your budget, the timing, and all the other vital factors that need to be considered.Now that we have your utmost attention, let’s get started, shall we?</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>When Is The Best Time To Take A Trip To The Maldives?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The Maldives is a place that has a very tropical climate at all times. This beautiful place with soft sand and the beachy wave is touching your feet, the sun shining and smiling, and the perfect water is what will make your <a href=\"https://www.ineedtrip.com/tour-destination/maldives/\"><b>Maldives trip</b></a> the best.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>November to April</strong></p>\r\n\r\n<p style=\"text-align: justify;\">From November to April, the season is the best time to visit Maldives. It is considered to be the perfect time to book your honeymoon as the weather is pleasant. Most of the attractions of the place are also functioning at this time of the year. If you are planning to go on your honeymoon between November and April, you should ensure that you plan it and book your packages beforehand. Last-minute bookings might not be possible, and opting for packages will also ensure that you get a good deal.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>May to October</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Talking about this time of the year, the Maldives is quite rainy, as it is the rainy season from May to October. This is the time when the place experiences quite heavy torrential rainfalls, and not many attractions and activities are operational during these months.&nbsp;However, this time of the year is great for those who want to grab amazing deals and honeymoon packages in terms of money. If you are on a budget, you should definitely choose a honeymoon package to the Maldives during this time of the year.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>The Best Maldives Honeymoon Packages: Consider Your Budget</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Not everyone affords a luxurious stay, and hence, everyone has a budget planned for their honeymoon. When it comes to choosing packages, you can get your hands on both luxurious high-end packages as well as budget-friendly packages that won’t be too heavy on your pocket.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>A Luxurious Stay</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If budget is not an issue for you, then you can choose&nbsp;this&nbsp;best <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">honeymoon package to Maldives</a></b> by choosing this package you can enjoy the luxuries of a resort, get your hands on the water villas, and much more. A luxurious stay might be a little heavy on your pocket, but it will be worth every penny.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>A Budget-friendly Stay</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If you are on a budget, you can still get your hands on the best honeymoon package to Maldives by choosing budget-friendly packages. You might have to back down from a few luxurious attractions, but you will still get to enjoy the beauty and the grace of the Maldives, and that is really the best part.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>ineedtrip: The Best Company To Opt For Planning The Best Package For Your Honeymoon To Maldives</strong></p>\r\n\r\n<p style=\"text-align: justify;\">ineedtrip is the best travel company that will help you every step of the way. From selecting the prices of your honeymoon package, a variety of packages to choose from, and customization according to your needs, ineedtrip is a company that you can rely on. The best part about our operations is that we provide 24×7 support, and we have discounts running year around.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Final Words</strong></p>\r\n\r\n<p style=\"text-align: justify;\">From scuba diving to snorkeling, from sightseeing to enjoying the sea, plan a trip with ineedtrip, and grab the best honeymoon package deal to plan your trip to the Maldives. The Maldives is simply a beautiful and picturesque place and ineedtrip will make it a point to help you choose the right honeymoon package with your partner.</p>',NULL,'2021-03-16 14:21:06','2021-03-16 14:21:06',NULL,1,'Maldives Honeymoon Package | Holiday Package Maldives | Maldives Tour | Tour Package Maldives',0,0,'Maldives Honeymoon Package, Holiday Package Maldives, Maldives Tour, Tour Package Maldives, Maldives Package','If you are on the lookout for the best honeymoon package to Maldives, then you are in the right place.','How to choose the best honeymoon packages to Maldives','[\"174\",\"171\",\"170\",\"159\",\"139\",\"138\",\"137\",\"136\",\"50\",\"49\",\"47\",\"46\",\"36\",\"35\",\"31\",\"30\",\"29\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"28186, 28177, 27826, 27082, 27081, 27075, 27074\"]}'),(10,'TOP 7 THINGS TO DO IN NUSA DUA (BALI)','top-7-things-to-do-in-nusa-dua-bali-','1617784992_blog.jpg','1646823705.jpg',NULL,'Aniket Agarwal','2020-11-11',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Bali\'s serene beauty is world famous and there\'s popular saying, \"If you don\'t travel to Bali, you don\'t travel at all\". There are so many super fun activities, sightseeing, food and of course beaches for you to drool upon. But, today we\'re here to talk on Nusa Dua, if you want to read about Bali, read our blog on the<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\"> 7 Best Places to Visit in Bali</a>. Nusa dua is one of the three Nusa islands located in southern Bali, Indonesia. Although, Bali is full of many exciting activities, but this is one of that places you cannot afford to miss. Nusa Dua is the upscale district of Bali and it is considered to be a resort hub. Since the place is so good, with this blog we will help you on the best things to do in Nusa Dua.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>WATER BLOW</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Water blow is one of the most natural water blows in not just Nusa Dua but the whole of Bali. They say water goes up to 10 metres in the sky before hitting you on the sweet bridge as you can see in the picture. The water blow is just near the Grand Hyatt Hotel. It is a perfect place to explore the natural beauty of water.&nbsp;Do make sure that you maintain a proper distance from the water blowhole as it can be dangerous too. If you just search for this place on the internet, you will find thousands of photos of this place.If you want to bath in the amazing waters of the beaches of Bali, and if you don\'t know how to swim, this is the spot for you. Visiting the waterblow on Nusa Dua and bathing there is one of the most amazing things to do in Bali.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>HIGH TEA AT THE ST REGIS</strong></p>\r\n\r\n<p style=\"text-align: justify;\">There are a lot of resorts which you can visit in Nusa Dua among which one of them is the amazing resort named St Regis. Although St Regis has a lot of branches all around the world, in Nusa Dua it is particularly famous for its tea. You can visit st Regis and try out the special Balinese Tea and you will for sure love it. You can have tea as many times with buffet and try out some delicious snacks and a lot of special Balinese eateries. This is all for tea lovers.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>DEVDAN SHOW</strong></p>\r\n\r\n<p style=\"text-align: justify;\">One of the main attractions in Nusa Dua is the night Devdan show. Devdan show will introduce you to the culture of Balinese dances, performances other than this will give you a glimpse of different kinds of music, costumes, and traditions from all over Indonesia. Their performance will make your mood fresh and you can also expect aerobics and other athletic feats. This is a perfect place to have some joyful and cheerful experience and their show is worth watching and takes all your heart away.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>PIRATES BAY</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Anyone who loves pirates can head towards the pirates bay in Nusa Dua. Here you can find a pirate-themed restaurant that also has a huge wooden ship where you can sit and enjoy the peaceful environment. One can spend their whole day in pirates bay. You can also climb up into a large wooden treehouse, sit inside the small bamboo huts and also enjoy tents as well as bonfires and can also choose to dress up in pirate garb and enjoy the pirate mood. You can spend your whole day and enjoy your pirate bay experience.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>WATER SPORTS</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Nusa Dua is famous for its sports activities and you will find a huge collection of water-based activities. These water sports activities include jet-skiing, parasailing, banana boat rides, and can also go diving off the coast. All the hotels in Nusa dua can organize water sports activities. In Nusa dua, you will find water sports activities with standard prices. When the winds are high you can go parasailing. When planning to Bali how can you miss out on water sports activities?</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>NUSA DUA BEACH GRILL</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Nusa dua beach grill is one of the hotspots in eateries in Nusa Dua. The grill is located on Gegar beach and you can dine with your toes in the sand and take a view of turquoise waters. As you are just close to the sea, seafood is a must-try in a beach grill. You can try out some crab dishes, spicy prawns, and even lobster. You can find many options to enjoy your lunch or dinner at the Nusa dua beach grill.&nbsp;We offer multiple Bali tour packages that are fit for every budget. If you want to customize your own package we can help you with that too. Just visit our <a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Honeymoon &amp; holiday tour packages</a> to know more about our packages and don\'t forget to check out the itinerary.<br></p>',NULL,'2021-03-16 19:23:15','2021-03-16 19:23:15',NULL,1,'',0,0,'Things to do in Nusa Dua, Nusa Dua Package, Nusa Dua Travel Package','Nusa Dua is one of the top places to visit in Bali. This blog will help you with the top things to do in Nusa Dua and why you should visit it.','Top 7 Things To Do In Nusa Dua (Bali) | Bali Tour Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(11,'Best Places To Shop In Bali On Honeymoon','best-places-to-shop-in-bali-on-honeymoon','1617784742_blog.jpg','1646822115.jpg',NULL,'Aniket Agarwal','2020-11-05',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Bali has turned into one of the most famous spots for a honeymoon, especially for Indians. It has everything a nature lover could ask for, divine forests, infinite pools, crystal clear waters, mountains and more.&nbsp;But we are not going to discuss them today. In this blog, we are going to talk over the most exciting part of any foreign trip “shopping”. If you want to read about the must visit places in Bali, you can read our blog here. But for now, admit it or not, wherever you visit, you feel like getting something from that place as a memento, something that reminds of you the trip.&nbsp; How you can leave shopping, shopping definitely makes every trip more memorable. People normally shop for&nbsp;Balinese art chandi crafts, wooden handi crafts, paintings, sculptures and others here.&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>KRISHNA BALI SOUVENIR SHOP</strong></p>\r\n\r\n<p style=\"text-align: justify; \">This is one of the oldest shops in Bali has Balinese products and there are around 7 outlets of the Krishna Souvenier Shop located in different areas in Bali. Since this shop is kind of a mega mall, you’ll find almost everything here. However, people mostly visit this shop to buy snacks, accessories, handicrafts, art paintings., sandals, scrubs, etc. If you are into bargaining then this place is not for you. They have fixed prices but the prices are reasonable.&nbsp;Krishna souvenir shop is open for 24*7 hours and there is no problem for parking as well. If you want to go for just an hour of shopping or maybe just to collect souveneirs, this is the place to be. Krishna Souveniers shop in Bali is definitely one of the best places to shop in Bali.&nbsp;&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>GIANYAR NIGHT MARKET</strong></p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;One of the best places to shop in Bali overnight is Gianyar night market, it is a very grand market and you will find a very happening crowd over here. At the Gianyar night market, you’ll get many food options that include the likes of the famous dishes of Bali like Babi Guling, Bakso, and many more. Other than the food you can buy a lot of items like toys, jewelry, clothing, etc. If you don’t feel like shopping, the buzz of the market itself is amazing and you can just chill out at the market.&nbsp;Location: Gianyar, Bali. &nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>BALI BONBON AND LOPI KUWAK</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Bali is famous for its dark chocolates and coffee, especially Lopi Kuwak one of the rarest and most expensive coffees in the world. Although just 1 cup of Lopi Kuwak will cost you anywhere between 5$-100$ it’s worth the try if you love coffee. You’ll even find chocolates with Kuwak. This is the perfect souvenir or gift for your friends (if you have a decent budget). We’ve added this as a bonus because we personally loved the coffee and the best part is that you can buy it from any local shop. Most restaurants serve Lopi Kuwak but it would be good if you try it from a high-end restaurant because that would ensure top quality.&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>SUKAWATI MARKET</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Sukawati market is one of the most crowded places in Bali and many tourists travel there for shopping. What can you buy here? Anything and everything! This is one of the most crowded places for a reason. If you want to have a complete shopping experience in Bali, come to this place straightaway. From local vendors calling you out to vibrant stalls offering different things, this place has it all.&nbsp;Starting from kids to men, women you can get all types of clothing and the latest designs for everything. For people who love street shopping is the best place to shop in this market. Your trip to Bali will be incomplete if you do not come in the streets of sukawati market of course with a lot of Shopping. It is a complete streetwear shopping and it is the perfect place for those who are an expert in bargaining.&nbsp;&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>UBUD SHOPPING MARKET</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Ubud Bali shopping market is very famous for its fragrances and locally made handbags, hats. You will find a number of fragrances that are made up of natural herbs, organic, local flowers. It is really the best thing to pamper yourself and if you plan to take them as a gift, everyone would love it. You will find a lot of products like body scrubs, face masks (which is so precious in this pandemic situation), body washes, massage oils, soaps, perfumes, and a lot of other items made from fresh flowers. As you can look in the picture, the handbags offered in the market have a unique design, if you’re one with a good fashion sense, you know you must get a couple of these bags.&nbsp;If you haven’t already read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\">7 best places to visit in Bali</a>, do that now! We hope you have a good idea of the best places to shop in Bali and even the best souvenirs. If you want help with booking packages, please visit our&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">Bali honeymoon and holiday packages</a>&nbsp;section. One thing that we can ensure you is that our list of inclusions and price would make your jaw drop.<br></p>',NULL,'2021-03-16 19:33:43','2021-03-16 19:33:43',NULL,1,'',0,0,'Best Places To Shop In Bali, Bali Package, Bali Tour, Bali Holiday Package, Holiday in Bali','Bali, the home to wonderful beaches and jawdropping sights is a shopping heaven Read this blog on the best places to shop in Bali to find out about them.','Best Places To Shop In Bali On Honeymoon | Bali Tour Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(12,'5 Best Restaurants in Bali','5-best-restaurants-in-bali','1646821813_blog.jpg','1646821813.jpg',NULL,'Aniket Agarwal','2020-10-29',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Bali is known to be one of the best and most visited places in Indonesia. The Indonesian Island is famous for its exotic beaches, dense forest, and blue waters. Bali has become a popular choice for honeymooners thanks to its cheap currency and mind-blowing beaches. But is that all? No. Besides indulging yourself in the beach life you can go island hopping, shopping, sightseeing and more. Here’s the best part though, Bali has some amazing restaurants that not only offer amazing food but also offer a spectacular view of Bali’s landscape. With this blog, we’ll help you find the 5 best restaurants in Bali for couples so that you can go for that special dinner without worrying. Without further ado let’s get straight to ’em.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>JU- MA-NA at Banyan Tree Ungasan</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Ju-Ma-Na Banyan Tree Ungasan is located at the southernmost end of Bali and you might have to travel a lot to visit the place. But dinner at this restaurant is worth all the travel and hassle. This is one of the most renowned restaurants in Bali that specializes in French cuisine, to which they give a unique Japanese twist. The location and setup of the Ju-Ma-Na restaurant are quite unique. Above all, the place has a peaceful and sophisticated interior with antique decorations and a view of the Indian Ocean. In addition, they offer two dining setups, one inside the main restaurant where you can opt to have a table with a view and one outdoors, perfect for a romantic dinner.There are unlimited snacks with drinks. The place is totally worth the visit and thus makes its place on our list of the best restaurants in Bali for couples.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>TIMINGS :&nbsp;</strong>12:00pm to 3:30pm &amp;&nbsp;6:30pm to 11:00pm</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dinner For Two</strong>: INR 2200-2600&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>BREEZE AT THE SAMAYA SEMINYAK BALI&nbsp;</strong><br></p>\r\n\r\n<p style=\"text-align: justify;\">Located on the Seminyak beach, Breeze has a very romantic set up for dining. As you can see in the image, it has beachfront dining options where you can view the sun setting down the Indian ocean, while you treat yourself to delicious food. You can try their seafood, Italian, European, and Balinese dishes as well. They claim to make all their dishes using local produce, and spices, which adds a unique flavor to the food. If you check the reviews of this restaurant you’ll find nothing but applauds for the location, setup, and food. They offer a wide range of cocktails and exclusive red wine to the guests. Guests often go for late dinners to experience the magical sound of waves hitting the beach, cool breeze (no pun intended), and catch a glimpse of falling stars. The setup needs no boasting as it looks mesmerizing just from the pictures. The Breeze at the Samaya is definitely one of the best restaurants in Bali for couples to dine.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>TIMINGS:&nbsp;</strong>12:00pm to 3:00pm&nbsp;&amp;&nbsp;6:00pm to 11:00pm</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dinner for two:</strong>&nbsp;INR 800-3000</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>KUBU AT MANDAPA</strong><br></p>\r\n\r\n<p style=\"text-align: justify;\">The setup of Kubu restaurant beats all the other restaurants on this list if you’re a fan of private dining. Located around 4 kms from Ubud, this place has 9 private spaces with a resemblance to Balinese Bamboo Hut. These Bamboo huts have cutouts overlooking the riverside, bringing in the fresh breeze from the Ayung River. Although Kubu is famous for its Mediterranean and European cuisines. you’ll find a huge variety of veg food here as well. However, being a place with such an exotic location and private setup, the place gets booked very quickly, so make sure you make advance bookings. This is one of the best restaurants in Bali if you want private space. We recommend you arrive here around 7 PM, you’ll have your own private space and will also be able to view the Ayung river’s natural flow.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>TIMINGS:&nbsp;</strong>6:30pm to 11:00pm</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Cost for Two:</strong>&nbsp;INR 3000-7000</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>SANGKAR RESTAURANT AT BULGARI RESORT BALI</strong><br></p>\r\n\r\n<p style=\"text-align: justify;\">Sangkar restaurant is more like a traditional Balinese restaurant. If you’ve had enough private dinners and would like to experience authentic Balinese food with an inner setup, this is the place to be. They have a stunning view of Bali’s Southern cape where you can just sit and enjoy the view. One of their signature dishes is iga babi metunu (grilled pork ribs), which is accompanied by bamboo shoot curry with scented rice, and for dessert go with homemade cheesecake. If you’re a fan of Harry Potter, the setup will give a feel of those dinners in the Hogwarts hall. Huge lamps hanging from the ceiling, a seaside view, mouthwatering dishes, make this place perfect for dinner on your last day.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>TIMINGS :&nbsp;</strong>12:00pm to 3:00pm &amp;&nbsp;6:00pm to 11:00pm</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Cost for Two</strong>: INR 3000-7000</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>MOZAIC RESTAURANT</strong><br></p>\r\n\r\n<p style=\"text-align: justify;\">Mozaic restaurant is one of the renowned restaurants in Bali and ranks 50th on the list of best restaurants in Asia. This restaurant has fine dining listed with some exotic Balinese dishes. Besides the food, the restaurants have a stunning lounge with crystal chandeliers, plush sofas, and a lively atmosphere. But, that’s not the sole reason it’s popular amongst couples. They have gazebos located in the backyard that offer private candlelight dinners for couples. You can ask them to set up a table with a bottle of wine, maybe some petals and you’re good to go. Look at the picture above, don’t you think this is one of the best restaurants in Bali for couples?<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>TIMINGS :&nbsp;</strong>12:00pm TO 2:00pm</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Cost for Two:</strong>&nbsp;INR 5000-11000</p>\r\n\r\n<p style=\"text-align: justify;\">If you want to know what to eat and what to try out in Bali, read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-must-try-dishes-in-bali/\">10 Must-Try Dishes in Bali.</a></p>\r\n\r\n<p style=\"text-align: justify;\">These were the 5 best restaurants in Bali for couples. If you’re planning for a honeymoon or holiday trip to Bali, you can check out our&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Packages</a>&nbsp;section as well. We offer the best prices, with a great list of inclusions, from sightseeing to dinners, activities, and more.</p>',NULL,'2021-03-16 23:28:19','2021-03-16 23:28:19',NULL,1,'',0,0,'Best Restaurants in Bali, Restaurants in Bali, Bali Restaurants, Bali Holidays','we\'ll help you find the 5 best restaurants in Bali for couples so that you can go for that special dinner without worrying.','5 Best Restaurants in Bali | Bali Holiday Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(13,'7 Best Beaches in Bali after Covid19','7-best-beaches-in-bali-after-covid19','1617783484_blog.jpg','1646821274.jpg',NULL,'Aniket Agarwal','2020-08-10',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Bali is has become a top honeymoon destination for couples. You might have already read or heard about Bali a lot and those pictures on Instagram? They’re all real! Bali is a wonderful place for couples looking for a relaxing honeymoon and for beach lovers? It’s heaven. Although you’ll find countless beaches here, within this blog we have mentioned the <b><a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\">7 best beaches in Bali</a></b>, ideal for a honeymoon. But hey! It’s not just about beaches, Bali’s got other sightseeing attractions too, you can read more about them&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\">here</a>. And about the safety part, Bali comes under one of the safest places in terms of social distancing. There are countless beaches and places where you’ll find only a few travelers or maybe just crabs.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify; \">Bali has such a peaceful environment that you can just sit and at every tourist spot. The place’s got such charm that people can’t help themselves from a re-visit. Now, that you’re here, we’re sure you want to drench in the crystal clear waters and soak in some sun on the pristine sand. Since you probably are a beach fan too, we hope you like watersports because you’ll find a huge variety of them here. Let’s get to the list of the best beaches to visit in Bali quickly</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>KUTA BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">One of the most amazing beaches in Bali is the Kuta beach. Famous for its sunsets, people often visit the Kuta Beach to lay down on the sand for sunbathing. Kuta is the best beach for surfing, swimming, beach soccer, and underwater scooter, anytime during the year. The beach is also known for its long shoreline and it has many restaurants, bars that create an electrifying atmosphere at night.&nbsp; Kuta has a lot of resorts if you feel like staying close to the beach and there are small shops near Kuta for shopping as well. Special night stage performances take place at the Kuta theater and the locality also has the Dream Museum Zone.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>JIMBARAN BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Jimbaran is a crescent-shaped beach where you’ll find blue greywater and a lot of water sport activities to participate in. The beach is easily accessible as it is located just near the airport. Another reason to visit this beach is the Uluwatu Temple. The Uluwatu temple is one of the top sightseeing spots in Bali and the Jimbaran beach lies close to it. The Jimbaran beach is famous for fishing and is also known as a surf spot. It also has a secret waterfall, and if you love wildlife, you’ll love the safari tour from Jimbaran beach. Jimbaran beach is the cleanest beach in southern Bali. There are many cafes and restaurants which have an amazing ambiance to relax.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>SEMINYAK BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Seminyak beach is a wide sandy beach with loungers and umbrellas. It lies in close vicinity to the airport. Seminyak beach is not only a famous spot for chilling but the beach bars and cafes too are always bustling with amazing food. Many of the restaurants out there have foreign chefs making it one of the best beaches in Bali to relax and try international cuisines on the shacks. Seminyak beach is a great place for kite flying, sunbath, surfing, and swimming.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>SANUR BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Sanur is a seaside town in the southeast of the island of Bali. It is a long shallow beach, and if you look at the pictures, it looks like a golden petal based Jacuzzi. The climate of Sanur beach is much cooler in comparison to other beaches in Bali. This beach is one of the oldest and best beaches in Bali where you can experience Bali’s culture and natural landscape as well. Sanur has many activities for you to explore as couples, like the Bali sea walker, Le Mayeur Museum, Blanjong temple, snorkeling, swimming, surfing, and windsurfing. Sanur beach is clean, safe, and swimmable. It is also protected by a reef so water is not as rough as compared to other beaches.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>LOVINA BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Lovina beach is a resort area on the north coast of Bali. It is famous for its black sand, coral reefs, and dolphins. Yes, you read that right, Dolphins! Lovina beach is famous for wild dolphins passing the coast every morning, you can get a chance to spend time with these lovely creatures. They come along as soon as they hear the boats coming and disappear if they feel bored or disturbed. The beach also has many beautiful waterfalls located within a radius of 50 km in northern Bali like Sekumpul and Fiji waterfalls. You can also relax at the holy hot springs Banjar, that’s about 10 km from the beach. Lovina beach offers a separate beach section as a watersports area. So you can spend a lovely time here for water and fun activities.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>CANGGU BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Travelers from all around the world come to canggu beach to see the café scene and its beauty. The black sand based canggu beach is known for being a surfer’s paradise where both beginner and advanced surfers can do surfing. Batu Bolong beach which is situated at the bottom of Canngu’s main road is one of the well-known beaches as well. It is one of the famous beaches, where you can surf at any time of the day. You can visit different types of cafes in canggu beach and just relax over there.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>BROKEN BEACH</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The broken&nbsp;beach is one of the best beaches in Bali, for nonswimmers. Yes, although it is not recommended to swim at this beach (because of the water current), the sight is mesmerizing. The broken beach is the perfect picturesque beach with an arched tunnel in the cliffs, allowing the ocean to flow into the pool. It’s the perfect beach to witness the sunset after exploring the Nusa Penida island. It is not at all crowded and it is a clean beach where you can just relax and enjoy the natural beauty. So, this was our blog on the 7 best beaches in Bali, but that’s not all. We have a bonus for you, this bonus beach is so awesome that we had to write a separate blog on it. It’s located on the Nusa Penida island and you wouldn’t want to miss this one. You can read about it&nbsp;<a href=\"https://www.ineedtrip.com/theres-a-t-rex-in-bali-its-dangerous-but-doesnt-bite/\">here</a>.</p>\r\n\r\n<p style=\"text-align: justify;\">Now that we are done about the beaches, why don’t you have a look at the best packages to visit them all? We at ineedtrip, offer customized holiday and <b><a href=\"https://www.ineedtrip.com/tour-destination/bali/\">honeymoon packages for Bali</a></b>. With our packages, you’ll not only get to explore these beaches easily but also have a stress free trip at mindblowing prices. Our list of inclusions will make you go wow. Enough with self-praise, why don’t you check them out&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">here</a>, and decide for yourself?</p>',NULL,'2021-03-17 10:26:12','2021-03-17 10:26:12',NULL,1,'',0,0,'Best Beaches in Bali, Bali Beaches, Honeymoon Package Bali','Although you\'ll find countless beaches here, within this blog we have mentioned the 7 best beaches in Bali, ideal for a honeymoon.','7 Best Beaches in Bali after Covid19 | Bali Packages','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(14,'Top 10 Must try Dishes in Bali','top-10-must-try-dishes-in-bali','1617783058_blog.jpg','1646821037.jpg',NULL,'Aniket Agarwal','2020-07-22',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Are you one of those people who plan their meals before their trip? Are you planning to go to Bali for your honeymoon? Great, this blog will help you find the best food in Bali. Bali is a picturesque location and is perhaps the best place to go for your special trip. To be honest, you must visit this place at least once in your lifetime or you’ll miss out on one of the most splendid places on earth. After exploring Bali the whole day, you are bound to feel tired and must be starving too. Along with adventure sports, you can have fun with your food too. You can try many new things here. Are you quirky, chirpy, somber, composed, or angry? Bali offers food for all kinds of moods. We bring to you a list of 10 must try dishes in Bali on your honeymoon. Bali is the ultimate food lover’s paradise. We’ll also let you in on ineedtrip’s&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">best honeymoon packages</a>&nbsp;to Bali at the end of this blog.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>1. Babi Guling Ibu Oka</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Though the name sounds more complicated than the mantras that the priest chanted at your wedding, Babi Guling Ibu Oka is the best succulent pig dish available in Bali. Balinese people love their pork very much. If you are one of those people who hate wasting food, I assure you not even one rind will be left on your plate. It is perhaps the most delicious platter of meat that you will ever taste in your life. Babi Guling is a combination of crispy pork skin, pork blood, and pork sausages. It also has pork roll and fried pork meat and is Bali’s national dish. Now if you don’t try this, we must say, the foodie in you will be missing out on the best part of the trip. Go to the eateries as soon as you can, because nothing can be as bad as the food finishing off before you reach there.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>2. Bebek Bengil</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Bebek Bengil is the tastiest and most crispy duck available in Bali. You really shouldn’t brag about visiting Bali to your relatives if you have not tried this local dish. It translates to Dirty Duck but is the perfect food, just like you and your partner’s perfect chemistry. As it’s commonly said, you shouldn’t judge a book by its cover, similarly don’t judge this dish by its name. Each plate comes with a side salad, potatoes, and rice topped with Balinese Vegetables. It is dipped in Indonesian sauce and fried to make it extremely crispy. Don’t think about your calories, just dig into the food. If you want your chemistry to stay sizzling, you need to try out this dish, it’s thrilling.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>3. Tempe Goreng</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Believe it or not, this food is the Grande Dame of Balinese cuisine. It is a cheap method of adding protein to the body. Tempeh is basically soyabean pressed into bars, cut into strips and deep-fried. It is accompanied with traditional sauces. It is also fried with chili sauce to give it the zing and is as good as the lip-smacking Kebabs in Dubai. You should definitely try it out. You can try this by the pool with your partner beside you. It’ll be the perfect setting to enjoy this sizzling food. It is one of the very few vegetarian dishes available in a country where people love their seafood and sea fish. You should try it out because it’s one of the most exceptional dishes in Bali.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>4. Nasi Padang</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Nasi Padang is basically rice. It is white rice served with 20 or more dishes. When in a restaurant, you’ll be served all of them. When you enter a restaurant and order a dish of this kind, you’ll feel like royalty. Restaurants all across the Island offer this dish, and it has to be on your list of the must try dishes in Bali. You can choose what to eat and what to ignore. It is just like the decisions which you take in your lives. Do try this dish, because if you don’t, you’ll regret it later.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>5. The Fat Turtle</strong></p>\r\n\r\n<p style=\"text-align: justify;\">It is basically a red velvet cake. Even if you don’t have a sweet tooth, you must be having sweet chemistry. To fuel your chemistry, you should definitely try this one out. It is a great dessert and a great way to end your meals. Three stacks of pancakes come with a single scoop of ice cream and believe us, you’ll feel like gobbling it all down in an instant. Your plate wouldn’t even have a stain of this dish once you try it, even if you are a choosy eater.&nbsp; You’ll regret it if you leave Bali without trying this dish. Do try it out.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>6. Sayur Lodeh</strong></p>\r\n\r\n<p style=\"text-align: justify;\">A big favorite in Indonesia is sayur lodeh, a coconut milk-based soup that uses gourd and carrot to add some heartiness. It is served with rice. There are many varieties of this food item just like you and your partner’s taste and personalities. This comes on the top of the list of the must-try dishes in Bali. In some varieties of this dish, small shrimps are usually used to enhance the flavor, but the Japanese and Balinese version usually make it without any sort of fish or meat. For everyone who is a vegan, this dish must be on your list to the must try dishes in Bali. It doesn’t have any animal meat or animal products. We must say, you should try the original one because authentic is authentic.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>7. Mie Goreng</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Mie Goreng is basically fried noodles served with vegetables and chicken or pork. It is extremely delicious food. It is also a local favorite. Sometimes it is served with a fried egg on top. Also with prawn crackers and peanut sauce. And how can we forget the pickled vegetables? Altogether it is a delightful meal that people generally enjoy at lunch.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>8. Sate</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Unlike its Malaysian counterpart, the Balinese sate is not satay. It is mashed chicken blended with various spices and put on sticks. The sticks are usually made up of lemongrass. This gives the food an additional flavor. It does not usually have peanut sauce but if it is mentioned on the menu it will be served. You should definitely try this dish once you are in Bali, make sure you add it to your list of must try dishes in Bali. This is one of those few items that one can never forget.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>9. Gado Gado</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Gado translates to Mix. Mix-mix or Gado Gado is one of Indonesia’s best-known dishes. Essentially it is a vegetable salad bathed in peanut sauce. While it’s a cold salad, we’re sure your chemistry would warm up after eating this. At its base are boiled long beans, spinach, potato, corn, egg, and bean sprouts coupled with few other things. This is also extremely popular locally and it should be tried for all vegetarians out there. For non-vegetarians, a meat version is also available. Please do try it out. We recommend the vegetarian version because authentic is authentic, right?</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>10. Mini Rijstaffle</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Though the name sounds odd, it is a food that tastes heavenly. It contains a mixture of Balinese and Indonesian delicacies on one plate. You are bound to enjoy the Bebek betutu with sambal, prawns, pork &amp; chicken sates, sayur urap/mixed Bali vegetables, potato croquettes, tempeh, tofu, and yellow nasi tumpeng or rice cone. All this can be very heavy. We recommend sharing a plate. As they say, Sharing is Caring. So here’s your chance to show your love to your better half. This is one of the most popular dishes in Balinese cuisine.&nbsp;So if you don’t try this, you’ll be disappointed with the foodie in you as well as your partner’s expectations.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\">This is a summation of all the delicacies that you can try in Bali. Do pack your bags and keep Bali on your bucket list. We assure you that people who are not foodies will also fall in love with the food here. Love to an extent that will surprise you. Also, Bali is an island full of historical significance. The cuisine is one of the oldest in the world. Through many evolutions, it has come to its present form. For anyone who likes to taste authentic Balinese, you can try the shacks at the beach. They serve authentic Balinese cuisine. You can also try eating at homestays and roadside eateries. Moreover, it will be a very fulfilling experience for each and every person who visits the place. Every nook and corner has stories to offer, every dish has its own history, so don’t forget to explore it all. Also be prepared to go to Bali for your honeymoon, because there is no better place.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><b>Coming to the part of the package.</b></p>\r\n\r\n<p style=\"text-align: justify;\">We at ineedtrip offer Bali honeymoon packages with the longest list of inclusions. Our aim to get Indian couples on international honeymoon trips at the cheapest prices has helped us design these&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">blockbuster packages</a>. Here’s a sneak-peek into our list of inclusions in Bali&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">honeymoon packages</a>.</p>\r\n\r\n<p style=\"text-align: justify;\">1. Uluwatu Temple Tour with Kecak Dance</p>\r\n\r\n<p style=\"text-align: justify;\">2. Tanah Lot Temple Tour</p>\r\n\r\n<p style=\"text-align: justify;\">3. 4 Star Hotel with Breakfast</p>\r\n\r\n<p style=\"text-align: justify;\">5. Romantic dinner on the beach</p>\r\n\r\n<p style=\"text-align: justify;\">6. Gili Island Excursion Tour</p>\r\n\r\n<p style=\"text-align: justify;\">7. 1 Lunch</p>\r\n\r\n<p style=\"text-align: justify;\">8. Daily Breakfast</p>\r\n\r\n<p style=\"text-align: justify;\">9. Dinner on a cruise</p>\r\n\r\n<p style=\"text-align: justify;\">10. Water Sports activities Parasailing, Banana boat ride, and more.</p>\r\n\r\n<p style=\"text-align: justify;\">This and a lot more is waiting for you. Check out our&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">packages</a>&nbsp;now and get yourself an unmatchable deal! Bon Voyage and Happy Eating! Enjoy the adventures to the fullest.</p>',NULL,'2021-03-17 10:30:16','2021-03-17 10:30:16',NULL,1,'',0,0,'Top 10 Must try Dishes','Bali offers food for all kinds of moods. We bring to you a list of 10 must try dishes in Bali on your honeymoon.','Top 10 Must try Dishes in Bali | Best Dishes in Bali','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(15,'5 Safest and Best Honeymoon Destinations from India','5-safest-and-best-honeymoon-destinations-from-india','1615960616_blog.png','1615960616.png',NULL,'Aniket Agarwal','2020-07-22',NULL,NULL,NULL,'<p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Weddings and honeymoons are things that are always in demand. Many people dream of getting married and spend most of their time thinking about marriage preparations. In that planning, honeymoon plays a big part. Booking the best romantic destination for ‘the honeymoon is mandatory because this part of your journey should be perfect without any troubles. Safety will always be a priority post the COVID-19 crisis and people will be looking for destinations that are safe, less crowded, and clean. Now that you’ve landed here, we believe, either you or someone close to you wants to know about the safest and best honeymoon destinations from India.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">In this blog by ineedtrip, we have handpicked five safest and best honeymoon destinations from India to make&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">your trip pleasant and colorful. Moreover, at the end of the blog, we’ll also help you with the links to our best packages for each of these destinations.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Mauritius</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Maldives</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Singapore</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dubai</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali&nbsp;</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida.jpg\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\"><img class=\"alignnone size-full wp-image-22609\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida.jpg\" alt=\"best honeymoon destinations from india\" width=\"960\" height=\"636\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida.jpg 960w, https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida-640x424.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida-768x509.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida-320x212.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/07/nusa-penida-batu-molenteng-penida-600x398.jpg 600w\" sizes=\"(max-width: 960px) 100vw, 960px\" style=\"border-width: initial; border-style: none; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali is an Indonesian island famous for forested volcanic mountains, coral reefs, iconic rice paddies, and beaches. If you and your better half-dream of an exotic and magical honeymoon, Bali will suit you perfectly.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali’s natural beauty combined with rich cultural offerings has made it one of the best honeymoon destinations from India. In addition to that, active nightlife has made it one of the best honeymoon destinations from India.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">If newly married couples want privacy, there are plenty of gorgeous places where couples can peacefully spend their time.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Uluwatu in Bali, has top ratings as one of the most beautiful places in Bali. Above all, you can visit the temple Uluwatu and watch Kekac dance (included in all packages by ineedtrip), after which you can attend the Saturday night party at the beach. Other highlights of Bali include enjoying a traditional lunch in Kintamani and getting blessings from Goa Gajah temple. A romantic walk by the broken beach during sunset is one of the best things that every couple should try in Bali. You can visit Tanah lot temple and do beach hopping in Canggu.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">There are some traditional spots where everyone can go and see old things. If you’re a fan of greenery and challenges, you can hike Mount Batur. If you’re a beach lover, the Nusa Islands are probably the best place to start your trip from, many beaches from these islands rank in the list of top 50 beaches in the world. Check out our Bali Honeymoon packages for a cheap and safe visit to Bali under a decent budget.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Read more about Bali in this blog on the&nbsp;</span><a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">7 best places to visit in Bali.</a></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to reach Bali?</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">By flight you can land in Ngurah International airport, which is located in south Kutta district and is 13 km away from Denpasar, capital of Bali. You can also take a bus from Indonesia, but you’ll have to travel by bus for more than 24 hours.</span>&nbsp;<span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bali’s best time is June or September because of the climatic change that occurs at that time. Visiting Bali in May, June, and October might help you save some money.</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Mauritius&nbsp;</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/12.jpg\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\"><img class=\"alignnone size-full wp-image-22506\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/12.jpg\" alt=\"best honeymoon destinations from india\" width=\"910\" height=\"607\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/12.jpg 910w, https://www.ineedtrip.com/wp-content/uploads/2020/04/12-640x427.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/12-768x512.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/12-800x533.jpg 800w, https://www.ineedtrip.com/wp-content/uploads/2020/04/12-320x213.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/12-600x400.jpg 600w\" sizes=\"(max-width: 910px) 100vw, 910px\" style=\"border-width: initial; border-style: none; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Located in the Indian Ocean, Mauritius is popularly called Paradise Island. Powdery white sand with ethereal beaches defines Mauritius. Places in Mauritius are genuinely romantic, and hence, it has become a go-to destination for newly married couples.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">It has both adventurous places and places of a visual treat, that couples can encounter while exploring the country. All the world-famous water sports, restaurants, clubs and trendy bars are there in Mauritius.&nbsp;&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The average temperature ranges from 20 and 28 degrees C. Temperature falls in winter, but there won’t be a drastic change in climatic conditions. Midnight candle dinner at the white shore with your loved one will make your trip complete. If you wish to engage in adventurous activities, try beach hopping.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Another romantic thing to do would be done in Mauritius is hiring a car for long rides. This island consists of public roadways and excellent motorways for long drives by the blue waters and sunset.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">If you want to go out shopping, Grand Baie Bazaar, Goodlands, and Quatre bones are the famous shopping places in Mauritius. The&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">seven-colored earth</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">, a wonder of its own is located in the southern part of Mauritius, this place beside the&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">underwater waterfall&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">attracts photographers and nature enthusiasts from all over the world.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Read more about the&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">best things to do in Mauritius&nbsp;<a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">here.</a></span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\">&nbsp;</h4><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to reach Mauritius?</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">You can reach Mauritius by air. Sir Seewoosagur Ramgoolam International airport is located in the city of Port Louis, which is 48 km away from the central city.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Maldives</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2.jpg\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\"><img class=\"alignnone size-full wp-image-21685\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2.jpg\" alt=\"\" width=\"1024\" height=\"685\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2.jpg 1024w, https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2-640x428.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2-768x514.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2-320x214.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/maldives2-600x401.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" style=\"border-width: initial; border-style: none; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Visiting the Maldives with your loved ones will fulfill your dream of visiting heaven (everyone wants to know what heaven looks like right?). You can go through lots of new experiences with your partner on your honeymoon trip.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Exploring a titillating destination with your loved one will relieve you from stress. One exciting thing to do in Maldives is experimental diving, especially for honeymoon couples who will get enough moments to deepen their love strings. You will have a visual treat deep inside the water by seeing colorful fishes, turtles, dolphins, and more.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">There are plenty of spas to make your day refreshing and energetic. Maldives Rangali restaurant is a popular place to stay amongst honeymoon couples. The room will change to a romantic bedroom from a restaurant. You will be served champagne along with a delicious breakfast. Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-places-to-shop-in-maldives/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">best places to visit in Maldives</a>&nbsp;to plan your trip and our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-things-to-do-in-maldives-for-honeymoon/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">best things-to-do in Maldives</a>&nbsp;to know how you can spend your day having fun.</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to reach the Maldives?</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">(Male international airport) is the main airport that connects the Maldives to countries like India, China, and Srilanka. Direct flights are available from Dubai.</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Singapore</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639.jpg\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\"><img class=\"alignnone size-full wp-image-22695\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639.jpg\" alt=\"best honeymoon destinations from india\" width=\"1074\" height=\"626\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639.jpg 1074w, https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639-640x373.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639-768x448.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639-320x187.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/07/ineedtripguestblog7a-e1595350187639-600x350.jpg 600w\" sizes=\"(max-width: 1074px) 100vw, 1074px\" style=\"border-width: initial; border-style: none; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Located in SouthEast Asia, Singapore is filled with different sightseeing experiences most of which are artificial.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Singapore is also called an island country, and as a honeymoon destination, it disappoints none.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">&nbsp;</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">There are so many places that newly married couples can visit to create cherish-able moments. Changi coastal point is one of the romantic places in Singapore for newlywed couples. This place is famous for the stunning views of the sea, offshore kalongs, and boats. It is popularly known as Romance 101. Ritz- Carlton is famously known for its view of Marina Bay and Singapore skyline.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Bukit Batok is a famous place for taking post-wedding photography. The beautifully landscaped view has made this place famous for wedding photography.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\">If you want to find more about the<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">&nbsp;must visit places in Singapore</a>, read our blog.</p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Oh, and did we mention the beaches of&nbsp;<a href=\"https://www.ineedtrip.com/to-do-on-sentosa-island-tour/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Sentosa</a>? Sentosa is an artificial island created by Singapore itself, that has white sandy beaches and more adventures. If you’re into Hollywood, you can visit the universal studios and if you want to try your hands on safe skydiving then help yourself with&nbsp;<a href=\"https://www.ineedtrip.com/skydiving-in-singapore-sep-skydive-without-jumping-from-a-plane-oh-yes/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">indoor skydiving at ifly Singapore.&nbsp;</a></span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to reach Singapore?</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Changi Airport is one of the best-connected airports all over Asia, and it is an important hub for international aviation. Singapore is connected to Malaysia, Kuala Lumpur, Johor Bahru, through the train.</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dubai</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g.jpg\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\"><img class=\"alignnone size-full wp-image-22048\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g.jpg\" alt=\"dubai trip plan\" width=\"910\" height=\"609\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g.jpg 910w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g-640x428.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g-768x514.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g-320x214.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2g-600x402.jpg 600w\" sizes=\"(max-width: 910px) 100vw, 910px\" style=\"border-width: initial; border-style: none; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dubai is popular for its luxury shopping and ultra-modern buildings. Despite being a business hub, it is a perfect place for couples on honeymoon. Just imagine dining with your partner on a cruise through the waters of Dubai marina.&nbsp;</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dubai consists of lots of cruises in which Alexander Dhow is one such Cruise where you can have romantic dining with your loved one. A live singer and a dancer will be on board who will entertain the whole crew.&nbsp; They serve an extensive buffet to treat your appetite. Dhow cruise experience is one of the best things in Dubai on the honeymoon. Moreover, i</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">f you feel like touching the sky, a hot air balloon ride is an adventure you wouldn’t want to miss.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">You do know that we are not mentioning the obvious Burj Khalifa, Dubai Mall, Palm Jumeirah, and others right? If you want to read about them, you can visit our&nbsp;</span><a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">blog here.</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Other things that are to be seen in Dubai are safari and some different cruises, and you can also rent a Limo in Dubai for travel, which will be an excellent experience for you. Traveling to the golden desert in Dubai will make your stomach churn. You can have a great experience in seaplane flight.</span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">How to reach Dubai?</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dubai International Airport is the only busiest airport in the United Arab Emirates. You can travel by bus after reaching all the other emirates. However, Oman is the only way to enter Dubai without a permit they will be charging only 3000 Omani Rial. Last but not the least, if you need help in planning a Dubai trip, you can read our blog on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">how to make the perfect Dubai trip plan.</a></span></p><h4 style=\"margin-top: 0px; margin-bottom: 0px; font-family: Montserrat; font-weight: normal; line-height: 1.4; color: rgb(112, 112, 112); font-size: 2.125em; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; background-repeat: no-repeat; clear: both; letter-spacing: -0.05em;\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The best part</b></h4><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">As promised earlier, here we are with the best part of this blog, the packages. Above all, Ineedtrip offers customized honeymoon tour packages for all the above-mentioned destinations. Here are the links to the packages.</span></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/bali-packages/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Bali Honeymoon packages</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/singapore-packages/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Singapore Honeymoon Packages</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/maldives-packages/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Maldives Honeymoon Packages</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/mauritius-packages/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Mauritius Honeymoon Packages</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><a href=\"https://www.ineedtrip.com/dubai-packages/\" style=\"color: rgb(25, 118, 188); outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease; box-shadow: none;\">Dubai Honeymoon Packages</a></p><p style=\"margin-bottom: 1em; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px; text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">All our packages have a long list of inclusions and their design promotes safety. You can compare the price of our packages with any other tour operator of your choice, you won’t find the same list of inclusions under such a decent price. Moreover, we’ll make sure you spend the entire time joyously, and just in case there’s confusion, we’ll be there for you 24/7 for assistance. So, what are you waiting for? Check out our package section and customize your own package to one of these safest and best honeymoon destinations from India.</span></p>',NULL,'2021-03-17 11:26:57','2021-03-17 11:26:57',NULL,1,'',0,1,'5 Safest and Best Honeymoon Destinations From India','In this blog by ineedtrip, we have handpicked five safest and best honeymoon destinations from India to make&nbsp;your trip pleasant and colorful.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(16,'Top 7 Things To Do In Nusa Penida For Couples','top-7-things-to-do-in-nusa-penida-for-couples','1623649150_blog.jpg','1646820720.jpg',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Can you name a better place than Bali for a honeymoon? If you can, you probably haven’t visited Bali yet. Bali’s secluded beauty and cheap currency has made it the top destination choice for honeymooners in the recent years. Although Bali has countless tourist attractions, the Nusa Penida island in particular has become a favorite among tourists. The Island is one of the three Nusa Islands known for their spectacular beaches and greenery. Once you’re done visiting the main attractions in Bali, this is the spot to hit. (If you visit here first, you wouldn’t want to leave). But you probably know all of that, so let’s start with the top 7 things to do in Nusa Penida.</p>\r\n\r\n<p style=\"text-align: justify; \"><strong>1. Swimming at the Atuh Beach</strong></p>\r\n\r\n<p style=\"text-align: justify;\">There are many other beaches that we could have mentioned for swimming, but Atuh Beach has some special sights. The Atuh Beach is a stupendous beach on the Nusa Penida that offers a different view around the year. During low tides, the water drifts away from the usual shore and leaves the underlying rock formations clearly visible. During normal to high tide, the crystal blue waters of the Indian ocean hit the pristine white sand of the beach to create a picturesque sight.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The beach is surrounded by a decent number of green cliffs that add to the overall beauty. There’s an arc about 30-50 meters from the shore, it’s perfect for cliff jumping or to watch the sunrise through it. To access the beach, you’ll have to take a 10 minute downward hike. Beside the Angel’s Billabong Atuh is the best spot for swimming on the Nusa Penida.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>2. Visiting The Monster At KelingKing Cliff Point</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Popularly known as the t-rex cliff, this is the only place people know the most about before visiting the Nusa Penida. The kelinking cliff is such artistically crafted by mother nature that it resembles a t-rex from head to tail. If you look at the picture, the head and neck lie on the left side and form a “U shape” to give the looks of a back and tail on the right. The stunning blue waters and untouched white sand of the beach will call you for a relaxing swim. The hike down however, is quite dangerous, your only support will be a weak bamboo railing.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The 30 minutes hike gets very steep at points and it will literally feel like a vertical descent. We reckon you go down a bit on the hike, take pictures and get back. If you happen to visit the beach during sunset we suggest you get to the right side (the tail) and find a good spot to sit. The sunsets at this beach are worth dying for. Wait for the sunset only if you plan to spend the night on Nusa Penida, you might not get a return transport later at night. We love this beach so much that we’ve written a&nbsp;<a href=\"https://www.ineedtrip.com/theres-a-t-rex-in-bali-its-dangerous-but-doesnt-bite/\">separate blog</a>&nbsp;on it that has all the details about how to get there what to do and more, you can read it&nbsp;<a href=\"https://www.ineedtrip.com/theres-a-t-rex-in-bali-its-dangerous-but-doesnt-bite/\">here.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>3. Spending A Night A</strong><strong>t Rumah Pohon Tree House</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Image Creds: @thenorthernboy</p>\r\n\r\n<p style=\"text-align: justify;\">Thanks to some explorers and photographers, this hidden gem on Nusa Penida gained the popularity it deserves. The Rumah Pohon Tree House is located at the Thousand Island viewpoint near the secluded Atuh Beach (yes the one we talked about earlier). The view of sunrise from this place is told to be the one of the best in the world. You’ll have to hike a bit to reach this place, but once you settle in one of the 3 tree houses, all the fatigue will seem worthy. The tree will rock you back and forth to sleep, whilst you gaze upon the star studded sky. The cool breeze and the cosy feeling of being in the arms of your loved one in the tree house will be something you won’t get to experience anywhere else.&nbsp;Wake up early to see the stunning pink-golden-yellowish sunrise from your tree house. This is one of the best things to do in Nusa Penida for Couples.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>4. Snorkelling&nbsp;At Crystal Bay</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic cresds: floreswonderfultour.com</p>\r\n\r\n<p style=\"text-align: justify;\">The Crystal Bay beach is quite famous for stunning waters and drinks by the beach. You’ll find multiple stalls that sell drinks, and even offer chairs with umbrellas at very cheap prices. The beach is lively all day and it is the top hotspot for Snorkelling on Nusa Penida. It is one of the only places in Nusa Penida where you might find the Mola Mola (sunfish), that’s up to thrice as big as humans. You’ll find the colourful corals up close to the shore (just about 30 yards). If you don’t book a snorkelling tour, you can just grab the gear, swim for 30 odd yards and dive down to witness the diverse marine life of Bali. Besides the lively coral, you’ll find many species of fish, sea mantis and sea turtles. The clarity and calmness of the water also add to an overall wonderful experience.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>5. Sunset At Broken Beach and Relaxing at the Angel’s Billabong</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The broken beach isn’t exactly as the name suggests. Years of crashing of the waves has made a natural passage in the cove here. The view looks like that of a bridge over a canal, but with naturally crafted rock. The crystal clear waters and the magnificent sight might make you want to swim but the water current is too strong and can even lead to death. It’s the perfect place to sit around with your partner and witness the mesmerising sunset.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The angel’s billabong however is the perfect place to swim in a natural pool crafted by the ocean itself. During low tides, the water is as calm as an artificial swimming pool and so clear that you can see the beautiful underwater rock patterns. If you head up to the hills nearby, you’ll reach the Manta Ray viewpoint. Sit down at the cliff, and stare at the giant Manta Rays moving around swiftly in the water. Even at such height, the water is crystal clear and you can easily spot them.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>6. Scuba Diving At Manta Point</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Ahh! Probably the best thing to do on this list. If you don’t know why Hrithik cried after a scuba dive in ZNMD, it’s time to know the answer. The Manta Point is THE BEST place for scuba diving in Bali, if you want to see Manta Rays calmly floating over the sea bed. Although the visibility here is low, witnessing these harmless creatures along with your partner is something we would 200% recommend you to do. Besides the Manta Rays, you’ll find other species of fish, coral and even turtles if you get lucky enough. The cost per dive is also cheap here (just 3000 INR) and you’ll get all the gears and an instructor to guide you with the dive. Careful though, do not try to touch or object their way, as that might cause them to swim away and you’ll probably ruin the diving experience of others too.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>7.&nbsp;</strong><strong>Having Fun At The Natural Pool in Tembeling Beach’s Forest</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The Tembeling Beach is one of the least explored beaches of the Nusa Penida, maybe because you need to go through a dense forest to reach the beach. But doesn’t that sound adventurous? A ride down the path in the forest on a motorbike would really be electrifying, it’ll look like a scene from the movie “Jumanji” (just not scary). But the best part is not the beach, it’s the pool within the forest, or pools because there are two of them.&nbsp;To reach the pools, you’ll have to walk or drive down a steep and rocky path between the forest. Once you arrive at the parking spot, you can climb down the stairs to reach the pools, which are just a minutes’ walk from the beach. As you can see in the image above, the water is clear and blue despite being in the middle of the forest. A relaxing swim in this pool or the other one (much smaller), will take all your fatigue away. Although this place is not that secretive anymore, its remote location and the fear of walking down the forest has kept it from becoming a tourist hotspot.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Conclusion</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Participating in these 7 things to do in Nusa Penida for couples, will make sure that your trip to Bali is one of the most memorable trips of your life. If all these places have sparked the romance in you, we have some amazing packages for you. With our&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">Bali honeymoon and holiday packages</a>, you can explore the Nusa Penida Island to the fullest. We at ineedtrip believe that a trip with your partner should be completely stress free. With that thought, all of our Bali honeymoon packages have a long list of inclusions, with days at leisure, when you can explore islands like the Nusa Penida.So, what are you waiting for? Check out our package section for blockbuster deals and discounts.</p>',NULL,'2021-03-17 11:36:31','2021-03-17 11:36:31',NULL,1,'',0,0,'Bali Package, Holiday Package Bali, Bali Honeymoon Package','Although Bali has countless tourist attractions, the Nusa Penida island in particular has become a favorite among tourists. The Island is one of the three Nusa Islands known for their spectacular beaches and greenery','Top 7 Things To Do In Nusa Penida For Couples','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"<p><section class=\\\"btComments gutter\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; display: block; color: rgb(0, 0, 0); font-family: Barlow, Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;\\\"><div class=\\\"port\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px 30px; margin: auto; background-repeat: no-repeat; width: 1260px; max-width: 1260px;\\\"><div class=\\\"btCommentsContent\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><div id=\\\"comments\\\" class=\\\"btCommentsBox\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 3.5em 0px 0px; background-repeat: no-repeat;\\\"><div id=\\\"respond\\\" class=\\\"comment-respond\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><\\/div><\\/div><\\/div><\\/div><\\/section><\\/p><article class=\\\"btPostSingleItemStandard gutter noPhoto post-22604 post type-post status-publish format-standard has-post-thumbnail hentry category-bali\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 4em 0px 0px; background-repeat: no-repeat; display: block; color: rgb(0, 0, 0); font-family: Barlow, Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial;\\\"><div class=\\\"port\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px 30px; margin: auto; background-repeat: no-repeat; width: 1260px; max-width: 1260px;\\\"><div class=\\\"btPostContentHolder\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><div class=\\\"btArticleContent \\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 2em; background-repeat: no-repeat; clear: both;\\\"><div class=\\\"bt_bb_wrapper\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; overflow: hidden; position: relative;\\\"><div data-elementor-type=\\\"wp-post\\\" data-elementor-id=\\\"22604\\\" class=\\\"elementor elementor-22604\\\" data-elementor-settings=\\\"[]\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; hyphens: manual;\\\"><div class=\\\"elementor-inner\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><div class=\\\"elementor-section-wrap\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><section class=\\\"elementor-element elementor-element-5391c54 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section\\\" data-id=\\\"5391c54\\\" data-element_type=\\\"section\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; display: block; position: relative;\\\"><div class=\\\"elementor-container elementor-column-gap-default\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; display: flex; position: relative; max-width: 850px;\\\"><div class=\\\"elementor-row\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; width: 850px; display: flex;\\\"><div class=\\\"elementor-element elementor-element-d8f4778 elementor-column elementor-col-100 elementor-top-column\\\" data-id=\\\"d8f4778\\\" data-element_type=\\\"column\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; position: relative; min-height: 1px; display: flex; width: 850px;\\\"><div class=\\\"elementor-column-wrap  elementor-element-populated\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 10px; margin: 0px; background-repeat: no-repeat; width: 850px; position: relative; display: flex;\\\"><div class=\\\"elementor-widget-wrap\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; position: relative; width: 830px; flex-wrap: wrap; align-content: flex-start; display: flex;\\\"><div class=\\\"elementor-element elementor-element-6043f5d elementor-widget elementor-widget-text-editor\\\" data-id=\\\"6043f5d\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"text-editor.default\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; position: relative; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-weight: 400; width: 830px;\\\"><div class=\\\"elementor-widget-container\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;\\\"><div class=\\\"elementor-text-editor elementor-clearfix\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\\\"><p style=\\\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 1em; background-repeat: no-repeat;\\\"><br><\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/section><\\/div><\\/div><\\/div><\\/div><\\/div><div class=\\\"btArticleShareEtc\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 2em; background-repeat: no-repeat; clear: both; display: flex; align-items: center;\\\"><div class=\\\"btTagsColumn\\\" style=\\\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; flex: 1 1 50%; max-width: 50%;\\\"><\\/div><\\/div><\\/div><\\/div><\\/article>\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(17,'There’s A T-Rex In Bali | It’s Dangerous But doesn’t Bite','there’s-a-t-rex-in-bali-it’s-dangerous-but-doesn’t-bite','1617782573_blog.jpg','1646820534.jpg',NULL,'Aniket Agarwal','2020-04-29',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Yes, you read that right! There’s a t-rex in Bali. The exotic province that has secluded beaches, lush green volcanic mountains, stunning waters holds such danger and people visit Bali especially to have a look at it. What? Why didn’t we see it in the news? Okay, we’re guilty! We should have told this in the title itself. The dangerous yet amazing place that we’ve been talking about is a cliff. Yes, the famous cliff of the Kelingking Beach is The T-Rex in Bali. The cliff’s name is based on its bewildering structure, which looks exactly like a t-rex’s head. Sounds dull? Have a look at the picture below and then we’ll talk. How about now? Doesn’t the site take your breath away? The overlooking blue watered beach, powdery white sands, make it a perfect hotspot for people in search of adventure and lone time.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Where and how to to get to the t-rex in Bali?</strong></p>\r\n\r\n<p style=\"text-align: justify; \">To witness this amazing site, you’ll, of course, have to travel to Bali, the most popular province of Indonesia. When you’ve reached Bali and have explored the mind-blowing beaches on that particular island, head over to the Nusa Penida. This is the island, where you’ll find the t-rex cliff that’s adding to the beauty of Kelingking beach.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">To reach Nusa Penida, you’ll have to either take a speed boat or a ferry from the Sanur beach in Bali. A speedboat will get you there in about 20-30 minutes but will cost you around Rs 800 per person while the ferry will take around 90 minutes to get you there, but just under 200 Rs. per person. Depending on the time you have in hand, you can choose either of these options. If you plan to stay for a day or two on the mesmerizing Nusa Islands, get a ferry because you won’t be in a hurry. If you intend to hit the Kelingking beach and get back on the same day, a speedboat would be more ideal, since it’ll save you time. Once you’re on the Nusa Islands you’ll find multiple taxis or bike renting options to get to the Kelingking beach, if you chose to rent a bike, drive safe because the roads are bumpy and uneven.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to get down at the Kelingking beach?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">There’s an entry fee of 10000 IDR per person and parking fees of 5000 IDR for Kelingking Beach. Once you’ve reached this hotspot, settle in for some adventure. You’ll find a flock of tourists taking pictures of and by the T-rex cliff and sometimes it gets so crowded, that you have to wait for your turn. But if you’re brave-hearted and are up for a dangerous hike, you can witness a mind-boggling site.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The cliff at the left is naturally shaped like a t-rex and at the right, you can see a cliff that looks like a tail so from head to tail there’s a complete t-rex waiting for you in Bali. If the turquoise blue waters and white sand attract you and you want to hit the beach there’s a steep hike for you. The hike is dangerous, rocky and there’s no strong safety measure whatsoever. You will have to hike down with minimalistic support from stairs and railings made out of bamboo sticks. Since the railings are not maintained and the hike is too steep, any wrong step can lead to disaster.</p>\r\n\r\n<p style=\"text-align: justify;\">Take a good look at the path that’ll lead you down before you start hiking down. You’ll not only have to hike down but you’ll have to hike up too, there’s no other way of getting back on top. The steep hike down will take you around an hour or more given that you go slow, keeping safety as the top priority.&nbsp;The hike back up will take even longer (about 2-2:30 hours) as you’ll have to rely on the stairs and lose rails to pull yourself up.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What after you reach down to the beach?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Once you’ve reached down, the hike would seem worth it. There are multiple caves, where you can relax after having fun with the water and sunbathe. Kelingking is a shore-break beach thus the waves hit the beach hard. Although the water looks very tempting because of the dazzling and barreling, it is advised to try body surfing near to the shore itself rather than swimming if you’re unsure about handling the waves.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">If you’re not up for that risk, fear not, there’s another great thing. After exploring the t-rex in Bali and getting those pictures you can hit a few other stunning places before coming back here. Crystal Bay and the Broken Beach are two other famous sites of Nusa Penida that offer a spectacular view of nature’s beauty. (If you want to read more about&nbsp;<a href=\"https://www.ineedtrip.com/7-things-to-do-in-nusa-penida/\">things to do in Nusa Penida,</a>&nbsp;you can read our blog) After exploring the two places, you can come back to the Kelingking beach around 5 PM and find a good spot to sit at the right side (the tail of t-rex). The sunset at the Kelingking beach is exhilarating. Witnessing the sun setting down on the peninsula, the reddish-pink clouds, with the sound of waves crashing on the cliffs, will make you feel that nature’s beauty is way too underestimated. Make sure you carry a nice pair of shoes, drinking water, and a lot of courage (if you plan to hit the beach).</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Conclusion</strong></p>\r\n\r\n<p style=\"text-align: justify;\">This t-rex in Bali attracts thousands of tourists every year and the pictures of the Kelingking keep resurfacing on social media every other month. It’s a site worth visiting and Bali itself is a complete blockbuster destination for beach lovers. To explore Bali with the best itinerary and within a decent budget, head over to our&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Honeymoon Packages</a>&nbsp;right away. We have jaw-dropping deals and discounts specially designed for you, and we even have the option of customizing your tour package. If you want, we can help you choose the best package over a call too, contact us here!</p>',NULL,'2021-03-17 12:37:00','2021-03-17 12:37:00',NULL,1,'',0,0,'There’s A T-Rex In Bali | It’s Dangerous But doesn’t Bite','Yes you read that right! There\'s a t-rex in Bali. The exotic province holds such danger and people visit Bali especially to have a look at it.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(18,'5 Best Offbeat Tours for Travelling to Dubai on Honeymoon','5-best-offbeat-tours-for-travelling-to-dubai-on-honeymoon','1617782184_blog.jpg','1646819250.jpg',NULL,'Aniket Agarwal','2021-01-27',NULL,NULL,NULL,'<p style=\"text-align: justify; \">The mere mention of the word Dubai brings images of towering skyscrapers that kiss the sky, of grand shopping malls where you can choose and purchase to your heart’s delight, of luxurious stays, and a lavish lifestyle. No wonder Dubai is such a popular tourist destination! Being a global hub makes it even more popular, and that’s why there are over 15 million visitors traveling to Dubai. This is also why Dubai’s such a popular destination for couples fixing a location for their honeymoon.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify; \">But Dubai has much more to offer than what meets the eye at first sight. Dubai is also a city filled with color, history, spices, and scrumptious food. Now if you’re traveling to Dubai on honeymoon, there are multiple ways to explore this beautiful city. If you’re one of those who believe in doing something different and not following the herd, you’ve come to the perfect place. In this article, we’ll be showing you the best 5 offbeat ways in which you can enjoy the city that is Dubai on your honeymoon.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Best Time for Travelling to Dubai on Honeymoon</strong></p>\r\n\r\n<p style=\"text-align: justify;\">While Dubai remains a magnet for tourists all year long, it is between January to April that it observes the most number of visitors. Between November to April, the temperature remains moderate and that is why it’s the best time to visit Dubai. This duration sees an average temperature of 17 to 30° C, which is quite apt for traveling. This also implies, in turn, that the Russian traffic is the most during this time, and the prices are higher than usual.</p>\r\n\r\n<p style=\"text-align: justify;\">If you visit the city between the months of June and August, you get prices much lower than usual. This is because of the lesser influx of visitors in this duration as the average temperature lies somewhere between 33 and 42° C during this period. So, if high temperatures aren’t a concern for you, this period would be a great time to visit this city as well!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Best Offbeat Tours for Travelling to Dubai on Honeymoon</strong></p>\r\n\r\n<p style=\"text-align: justify;\">For the couples who want to do something different, something unusual on their honeymoon trip, here are some offbeat tour recommendations which would certainly make your trip memorable and highly fascinating.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>For the Adventurer in You</strong></p>\r\n\r\n<p style=\"text-align: justify;\">There are a plethora of activities for you and your partner in Dubai in which you can indulge and lose yourself in the thrill and the rush of adrenaline. Nothing brings two people closer than a shared adventure and what better place to do so than in Dubai?&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Private Flights</em></strong>: No, these aren’t those chartered flights we’re talking about here, but rather paramotors which are available over Dubai Marina or the desert. While these activities are quite costly, they are something worth lasting a lifetime. You get a 360° view of the city and can enjoy the grandeur of the city in a way which can’t be felt via anything else.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Hot Air Balloons</em></strong>: Nothing comes closer to the romanticness of you with your partner in an air balloon high up in the sky, watching the city and the sun rising as you rise up higher in the sky. It’s exhilarating and serene when you watch the city and you gain new perspectives towards the city and your life with this activity. The sites that meet your eye are inexplicably beautiful and you won’t be able to forget your time in the sky.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>For the Sports Lover in You</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Are you and your partner crazy for sports? Do you love spending time together while playing some sports? Dubai definitely has a lot to offer you in that account as well, and here are some:</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Polo Matches</em></strong>: There are different types of polo played in this gorgeous city, including camel and horse polo matches too! The animals who’re employed in these sports are well taken care of, in case you were wondering. You can get some basic training at the camps and can play with or against each other. Sounds fascinating, no?</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Surfing</em></strong>: For those of you who love water, there are several centers in Dubai if you want to spend a day together surfing with each other.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Quad Biking</em></strong>: Riding a quad bike [a bike with four tires, through the wavy dunes of Dubai: if this is something which sounds exciting and beckoning to you, then you’re in luck because several operators offer quad bikes for rent which you can use to explore and enjoy the sandy dunes of Dubai.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>For the History Lover in You</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic Creds: Instagram/@tan_chik_love</p>\r\n\r\n<p style=\"text-align: justify;\">Not many things convey the culture and the soul of a place the way history does. If you, and your partner, are fascinated by the past, Dubai offers several attractions for you to adore and explore.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Al Ahidi Fort and Dubai Museum</em></strong>: The oldest standing building in Dubai, the Al Ahidi fort holds an attraction for every person who is curious about the culture and the heritage of this place. Inside the fort is the Dubai museum, which houses antiquities and art pieces of past centuries.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>&nbsp;Dubai Heritage Village</em></strong>: This site showcases the way the regional folks used to live before Dubai became a global hotspot. You get to see the traditional customs and architectural samples of this place all of which are certain to enchant you.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>For the Foodie in You</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic Creds: Insta/@waelalteen</p>\r\n\r\n<p style=\"text-align: justify;\">The city offers a diverse range of delicacies that would leave their imprint on your tastebuds for a long while!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Karama’s Shawarmas</em></strong>: The shawarma rolls in this region are literal perfection! For some mouth-watering experiences, make sure that you experience this local food item for yourself!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Camel milk ice-creams</em></strong>: You would be missing out on something quite unique if you don’t try ice-creams and milkshakes made of camel milk.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Bateel Dates</em></strong>: These come in several varieties and flavors and you must treat your taste buds with these scrumptious dates.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>For Those Who Want Something Crazy</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Are you one of those couples who are always trying to do something entirely different from the conventional? Then here are some activities you might relish!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Watch a 6D cinema</em></strong>: Moving seats and externally simulated environmental effects! Movie-going is never this fun as the 6D cinemas experience you can get which usually have dinosaur-themed shows.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Enjoy a belly dance performance</em></strong>: You can’t watch a belly dance performance if you’re in the middle east region. There are several shows which are held right in the midst of a desert which will surely double the experience you’ll have.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><em>Enjoy the Experience of a Local Sheesha Bar</em></strong>: Visit any of the multitudes of local sheesha bars, occupy a seating area, and enjoy a movie or a game while trying a sheesha pipe of your favorite flavor. It’s a local experience you can’t afford to miss if you’re traveling to Dubai on honeymoon.</p>\r\n\r\n<h3 style=\"text-align: justify;\">Why You Should Buy ineedtrip’s&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Honeymoon Packages for Dubai</a></h3>\r\n\r\n<p style=\"text-align: justify;\">It’s your honeymoon planning. You’re excited but badly nervous too: we understand the feeling! And that is why it’s our topmost priority to provide you with unparalleled service. Leave all the worries of planning, budget management, and scheduling to us. You should focus on the stuff that you actually matters: enjoying the trip, savoring every moment with your partner, appreciating the beauty around you etc. Whenever you plan on traveling to Dubai on honeymoon, choose ineedtrip and let us provide you with an experience you’ll never forget! Check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages here.</a></p>',NULL,'2021-03-17 13:04:36','2021-03-17 13:04:36',NULL,1,'Dubai',0,0,'Dubai on Honeymoon, Book Dubai on Honeymoon, Honeymoon Dubai','Travelling to Dubai on Honeymoon? We\'ve got details that you would want to check out before planning the trip. Come have a look.','5 Best Offbeat Tours for Travelling to Dubai on Honeymoon','[\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(19,'How to choose the best honeymoon package for Dubai','how-to-choose-the-best-honeymoon-package-for-dubai','1621511868_blog.webp','1646819215.jpg',NULL,'Aniket Agarwal','2021-01-07',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Dubai is emerging as one of the most revolutionizing tourism centers. Be it a family tour, romantic honeymoon destination, or a fun trip with friends. It is because Dubai offers exceptional luxury and comfort. Over the years, the city has been a holiday destination for youths because of its architectural marvels that are famous worldwide. And it is now emerging as one of the best places to go for a Honeymoon.&nbsp;From world-class entertainment and shopping experiences to exciting adventures and the most photographed historical monuments, a honeymoon in Dubai is sure to delight you and your better half and make your romantic getaway the most memorable. That being said, people are often confused about choosing a package to Dubai, so with this blog, we will help you choose the best honeymoon <b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">package for Dubai</a></b>.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Choosing the best honeymoon package for Dubai Based on Timing</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Cozy seasons are best for Honeymoons, and Dubai’s winters are the most pleasing. It lasts from November to April, giving you enough time to select what month will suit you the best.&nbsp;Mornings in these months are chilly, however, afternoons are gloomy and bright, which allow you to do all the outdoor activities and create memories to cherish lifelong.&nbsp;If you are someone who loves to shop, you must plan your Honeymoon between January to February, as it is when the&nbsp;Dubai Shopping Festival&nbsp;is organized in the city. Dubai is indeed a synonym for luxury living. If you visit during this time period then our&nbsp;<b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">Dubai package</a></b> for DSF&nbsp;(starting at just Rs 26,999) is the best honeymoon package for Dubai.</p>\r\n\r\n<p style=\"text-align: justify; \"><strong>Choosing the best honeymoon package for Dubai Based on Budget</strong><br></p>\r\n\r\n<p style=\"text-align: justify; \">A planned budget helps you avoid overspending on your honeymoon. Start with estimating your budget and then decide the number of days you want to stay. Make a list of all the amenities you want on your honeymoon (if you book with us, we cover almost everything in our honeymoon packages).</p>\r\n\r\n<p style=\"text-align: justify;\">Let’s talk about the services you will get in Dubai under a budget.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>1. 25000-35000 INR above:</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If you plan to stay for four nights in Dubai, it will cost you around 25,000 to 40,000. It will include all your meals, flights, sightseeing, accommodation. Let’s take an example of our very own honeymoon package that’s priced at Rs 26,999 per person. We offer airfare, stay, daily breakfast, dinner at dhow cruise, dinner at desert safari, a half-day Dubai city tour, Burj Khalifa tour, and more.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>2. Between 35,000 – 50,000 :</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Five days of luxury living experience in Dubai will roughly cost you between 35,000 – 50,000. All the basic facilities like meals, accommodation will be included. Though, with this budget, you can visit Burj Khalifa and enjoy a visit to Bollywood parks as well. With our best honeymoon package for Dubai, we will also take you on an Abu Dhabi city tour and a tour of the Ferrari world as well. Our package is priced at Rs 37,999.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Choosing the best honeymoon package for Dubai Based on Travel Company</strong></p>\r\n\r\n<p style=\"text-align: justify; \">To make your honeymoon worth remembering, ineedtrip will assure you of giving the best <b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">honeymoon packages for Dubai</a></b>. After all, you won’t be spending bucks just to feel like usual. You will have dinners, short tours to fancy markets, all inside your budget. The couple can select any Honeymoon Package, according to their budget, which will cover all major sightseeing. You can even customize your own package. Ineedtrip provides different honeymoon packages according to the client’s needs. The package depends on the number of days and the places you want to visit in Dubai. You will be able to utilize the pleasure of choosing the places you want to see with your partner, the things you want to do together, and the experiences you want to explore with them. They make sure to customize a package that suits your idea of a honeymoon in this luxurious city and a memorable trip to cherish forever.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">You can also explore most of the city with a budget of Rs 30k-40k with ineedtrip. We will bifurcate your total budget into various categories of food, sightseeing, major historical infrastructure, and any other demand made by you. Our company will give you the best experience by fully optimizing your budget. S</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Conclusion</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Dubai is distinct from the rest of the world. To make your honeymoon memorable, you must visit The manmade island, Jumeirah Palms. They are a treat to the eyes. The perfect way to explore Dubai and its culture would be to take a desert safari ride and visit the local souks.The most amazing part about ineedtrip is that we provide affordable yet wonderful honeymoon packages according to one’s budget.&nbsp;Our honeymoon packages are worth every single penny, as we make sure to provide you the best, which is far beyond that amount. What are you waiting for? <b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">Check out&nbsp;our packages&nbsp;now</a></b>!</p>',NULL,'2021-03-17 13:07:33','2021-03-17 13:07:33',NULL,1,'',0,0,'Dubai Tour, Package to Dubai, Dubai Honeymoon, Honeymoon Package Dubai, Best Package for Dubai.','Dubai is a marvel that everyone wants to explore but it\'s very hard to visit under budget. We\'ll help you choose the best honeymoon package for Dubai.','Best Honeymoon Package for Dubai | Book Dubai Package','[\"35\",\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"24820, 24818, 24814, 24735, 24730, 24614, 22909\"]}'),(20,'5 Activities in Dubai for History Lovers - Ineedtrip','5-activities-in-dubai-for-history-lovers-ineedtrip','1617781949_blog.jpg','1646819778.jpg',NULL,'Aniket Agarwal','2021-01-06',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Stunning landscapes, some of the finest specimens of architectural wizardry, gorgeous beaches, and shopping hubs: there’s something for everyone in the marvel that is Dubai. One of the most sought after tourist destinations, Dubai attracts over 15 million international tourists every year. And if you are a history lover, this place would undoubtedly entice you at very first sight. With tons of sites you can visit here, this place is a little haven for the history lover in you. Today, we’re going to explore some of the sites you must not miss if you’re passionate about the beautiful thing that is history, so here are the activities in Dubai for history lovers.</p>\r\n\r\n<p style=\"text-align: justify; \"><strong>Burj Khalifa</strong></p>\r\n\r\n<p style=\"text-align: justify; \">This name makes its way every time you talk about Dubai. And its historical background makes it even more fascinating a site to visit and admire. The tower was opened in 2010; six years after its construction began and was built primarily with the aim of getting Dubai international fame and deviating from the region’s primary economic reliance on oil-based products. Inspired by the regional Islamic architecture and designed by Adrian Smith, the tower was earlier going to be named Burj Dubai but was later named after the ruler of Abu Dhabi (he assisted in the completion of the building through financial aid). The building also holds the title of the tallest building on Earth since 2010. Definitely one of the top activities in Dubai for history lovers.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Al Fahidi Fort and Dubai Museum</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Built in 1787, the Al Fahidi fort is the oldest standing building in Dubai. It houses the famous Dubai Museum, a must-visit location for anyone visiting Dubai to experience its cultural heritage and history. The museum showcases the culture of the region especially in the 1800s and displays antiquities and artifacts (some local, some traded with the African and Asian countries). It gives you a glimpse into how life used to be here before the oil trade flourished and spread all over. There are also archaeological finds in various excavations put on display, some as old as 3000 BC. Any history lover wouldn’t want to miss out on this one. A tour of the Al Fahidi Fort makes its place on every list of activities in Dubai for history lovers.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dubai Heritage Village</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Created in 1997 to show a live example of the old life of the Emirates, the Dubai Heritage Village or the Hatta village showcases the traditional culture and way of living of the particular region way before it rose to international fame. Various aspects of traditional customs and characteristics are shown here and you can get an idea of how life was here (and not just human life, but marine and wildlife as well. It also shows the armory and utensils of that time along with architectural specimens and pearl-diving traditions.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Etihad Museum</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Earlier called the Union House; the Etihaad Museum showcases the social, military, scientific, political, and cultural aspects of Dubai. It has in its possession everything belonging to the previous rulers of the United Arab Emirates, from their personal items to their documents. It also possesses the signing of the Constitution of the UAE as well as the raising of the UAE flag for the first time. Also, the museum is located on the same site where the formation of the UAE as a country took place. The site is built in the shape of a manuscript with seven columns built to symbolize the pens which were used to sign the declaration.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Crossroads of Civilizations Museum</strong></p>\r\n\r\n<p style=\"text-align: justify; \">One of the most fascinating historical sites in Dubai, this museum shows the role of the region as the crossroads of trade between several civilizations like the Greeks, Romans, Ubaids, Babylonians, and other civilizations which passed through this region, hence the name. And several artifacts that were part of these civilizations are kept on display in this private museum. The museum shelters a form of history that transcends boundaries, something which reflects all the major cultures from around the world. There are collections, there are galleries, there are manuscripts along with exhibits of several other artifacts and weapons.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Al Shindagha Museum</strong></p>\r\n\r\n<p style=\"text-align: justify; \">The landmark Dubai Creek area is home to the Al Shindagha Museum and a result of the very ambitious Dubai Historic District Project. Visitors get to see the original culture and heritage here along with Emirates’ relationship with the rest of the world. It highlights how Dubai and the surrounding region came to be what it is now, how this modern society formed out of a traditional landscape. The museum appeases not just your visual senses but complements it with ultramodern multimedia experience through which you get to thoroughly live and experience the place. If you are looking for the must do activites in Dubai for adventure, read our blog<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">&nbsp;here.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Jumeirah Beach</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Roam around in this beautiful white sand beach on the coast of the Persian Gulf. The name of the beach is after it’s housing district (Jumeirah), the place has several large resorts, hotels and parks. And once you visit the beach, you can explore the district itself, which is a hotspot for excavations. The excavations found in the Jumeirah Excavation Site suggest that the area was inhabited as early as the Abbasid era (which refers to approximately 10th AD). The region was inhabited by traders, fishermen, and pearl divers. The site used to lie on a caravan route that connected India and China to Iraq and Oman.</p>\r\n\r\n<p style=\"text-align: justify;\">So, those were the activities in Dubai you must-do if you’re a history lover. Dubai has so many attractions, that if you plan a short trip you will miss out on a lot of things. And if you don’t take help, you will end up spending a decent amount of money. However, if you plan your trip with us, we can help you save a lot and you’ll also cover most of the sightseeing within the package inclusion. Our all-inclusive Dubai honeymoon packages and Dubai holiday packages start from just Rs 27,999. Don’t believe us? Check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">packages section</a>&nbsp;for details.</p>',NULL,'2021-03-17 13:12:24','2021-03-17 13:12:24',NULL,1,'Dubai',0,0,'activities in dubai for history lovers','Dubai is a home to many attractions, but if you\'re a history buf then this blog on the best activities in dubai for history lovers is for you.','5 Activities in Dubai for History Lovers - Dubai Tour Package','[\"28\",\"26\",\"25\",\"24\",\"4\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(21,'Your shopping guide to Dubai Shopping Festival 2021','your-shopping-guide-to-dubai-shopping-festival-2021','1617781448_blog.jpg','1646820245.jpg',NULL,'Aniket Agarwal','2021-01-06',NULL,NULL,NULL,'<p style=\"text-align: justify; \">One of the most popular shopping festivals around the globe, the “Dubai Shopping Festival or the DSF” first took place in 1996. The year 2020 is the 25th year of&nbsp;its operation. Over the years, the festival has seen more and more brands, stores, shops participating, and even a higher number of attendees. What started as a shopping festival has now become a major tourist attraction in Dubai. There’s just so much to talk, that we’ll miss the main part, i.e, this year’s Dubai Shopping Festival 2021. So, the dates are finally out and the festival is already on, it is running since 17th December and will go on till 30th Jan 2021, so pack your bags, if you haven’t already.&nbsp;This shopping experience in Dubai will be an extra amazing adventurous experience in Dubai. Here, you will find each and everything with heavily discounted items whether it’s apparel, gold, home decor, and much more.</p>\r\n\r\n<p style=\"text-align: justify; \">Dubai shopping festival is not only restricted to malls, but you can also find it in small markets, hideouts and flea markets too. If you are a shopaholic then this is the perfect time for you to shop and it is all worth it. During this festival, you can also enjoy live shows and activities which will be at the Dubai shopping festival 2021. Moreover, the government is taking complete safety measures to ensure that your trip is secure and you face no health issues whatsoever.&nbsp;&nbsp;&nbsp;</p><h3 style=\"text-align: justify; font-family: verdana, helvetica, arial, sans-serif; color: rgb(0, 0, 0);\"><strong>Where does the Dubai Festival take place?</strong></h3><p style=\"text-align: justify; \">This is a city-wide festival in Dubai, you can find this festival in multiple locations. If you will be clear about the locations from which markets you need to buy, then this will help you in your shopping. So here we are listing some famous market places from where you can buy a lot of stuff.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">1.Global Village</p>\r\n\r\n<p style=\"text-align: justify;\">2. Al Rigga Street</p>\r\n\r\n<p style=\"text-align: justify; \">3. Dubai Mall</p>\r\n\r\n<p style=\"text-align: justify;\">4. Night Souk</p>\r\n\r\n<p style=\"text-align: justify;\">5. Al Fahidi Fort</p>\r\n\r\n<p style=\"text-align: justify;\">6. Gold Souk</p>\r\n\r\n<p style=\"text-align: justify;\">7. The Layali Dubai Concert</p>\r\n\r\n<p style=\"text-align: justify;\">8. Promenade at Dubai Festival City</p>\r\n\r\n<p style=\"text-align: justify;\">9. DSF Desert Camp</p>\r\n\r\n<p style=\"text-align: justify;\">10. Asianet Film Awards</p>\r\n\r\n<p style=\"text-align: justify;\">11. Mall of the Emirates</p>\r\n\r\n<p style=\"text-align: justify;\">12. Deira City Centre</p>\r\n\r\n<p style=\"text-align: justify;\">13. Festival Waterfront Centre</p>\r\n\r\n<p style=\"text-align: justify;\">14. Lamcy Plaza</p>\r\n\r\n<p style=\"text-align: justify;\">15. Dragon Mart</p>\r\n\r\n<p style=\"text-align: justify;\">16. Mercato Shopping Mall</p>\r\n\r\n<p style=\"text-align: justify;\">17. Lulu Village</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What are the things I should buy at Dubai Shopping Festival 2021?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Dubai Shopping Festival is one of the precious time for shopaholics people and it arrives once a year. So this is the best time in Dubai to grab things of your choice with huge varieties and bumper offers and discounts. Most of the malls and shops provide different varieties of apparel on huge discounts. Here are some of the things you should buy at the Dubai Shopping Festival 2021.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>GOLD JEWELLERY</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic Creds: Instagram/@syblanco</p>\r\n\r\n<p style=\"text-align: justify;\">DSF is one of the best opportunities to buy some gold. We all know Dubai is famous for its gold and its purity. The best time to shop for gold is at the DSF festival and you can buy it at low prices.&nbsp; Moreover, all the gold shops (including the ones in Gold Souke) offer a huge range of designer jewelry and shops will give you a certification of purity. If you are planning for the Dubai Shopping festival 2021, you must buy gold jewelry.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>PERFUMES AND FRAGRANCES</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic Creds: Instagram/@artisansofleisure</p>\r\n\r\n<p style=\"text-align: justify;\">One of the necessities which everyone is fond of perfumes and cosmetics. You will get a wide variety of perfumes, body washes, body lotions which are duty-free and much more you can shop. You can get the top notch brands like Chanel, Burberry, Bvlgari, De Beers, and many more brands of your choice you can get from Dubai Shopping festivals and at low prices as compared to other days. So shop out the best perfumes and cosmetics at special discounts.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>WATCHES</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Watches are an important part of a dress up and you will find a lot of diamond-studded watches available at massive discounts during the Dubai shopping festival 2021. You can pick one of your favorite brands like Rado, Michael Kors, ICW, Burberry and you can buy them at heavy discounts.&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>APPARELS</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If clothes are on your mind, then this is the perfect time for you to shop. Right from your favorite brands of casuals to party wear- brands like&nbsp;Bogi, Jack&amp; Jones, Burberry, Armani, Prada, Bebe, Rodeo Drive, and much more. You can buy all type of brands at heavy discounts and there is a huge collection and variety which you will find in DSF. Not just textiles, you’ll also find a huge variety of shoes (every brand you could think of), cosmetics, accessories at the Dubai shopping gestival 2021.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>GADGETS</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Can ou imagine living witout gadgets in this mordern era? Neither can we. If you’re looking to get an iphone or maybe a high-end laptop, DSF is the perfect spot for you. Being a land free of taxes, Dubai offers heavy discounts on gadgets year around. However, the arrival of DSF means extra discounts, so shortlist your devices in advance and get them from there. (Do note the custom limitations and duty on such products).&nbsp; For gadget shopping freaks this is the best time to grab the gadgets at the lowest prices.&nbsp;Want to know about the best places to visit in Dubai?&nbsp;Read our blog<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-dubai/\">&nbsp;here.</a>&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Is the Dubai Shopping Festival worth it?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Yes, yes, and yes. Dubai Shopping Festival is the best time to shop and you will get everything at the lowest prices of the year.&nbsp;&nbsp;But, is it safe to go there right now? Totally, yes. We at ineedtrip can help you have a safe, secure, and wonderful trip to Dubai with most of the sightseeing, airfare, hotel stay, and even dinner in the Sahara starting at just Rs 27,999 per person. Want to know what’s more in the store? Check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a>&nbsp;section right now!&nbsp;&nbsp;</p>',NULL,'2021-03-17 13:15:09','2021-03-17 13:15:09',NULL,1,'Dubai',0,0,'Dubai Shopping Festival 2021','The Dubai Shopping Festival 2021 is currently taking place in Dubai and there\'s a lot to buy. Here\'s what all you can buy from the festival.','Your shopping guide to Dubai Shopping Festival 2021','[\"28\",\"26\",\"25\",\"24\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(22,'Top 5 Must Do Activities to Do in Dubai For Adventure Enthusiasts','top-5-must-do-activities-to-do-in-dubai-for-adventure-enthusiasts','1617780406_blog.jpg','1640938566.jpg',NULL,'Aniket Agarwal','2020-12-01',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Adventure, a nice blend of exhilaration, menace, and unbelievable experience, so everybody should go for a daring adventure instead of living a typical life. However, adventure is not only about climbing but also the impulse. The quest for an adrenaline rush is rightly included in the adventurous activities, for this reason, it is not wrong to say that climbing great mountains is not hard if the focus on climbing. In this blog we will explore the top 5 must do activities in Dubai if you want to find yourself in the crowd.&nbsp;A pinch of adventure is essential for everybody as it propels you from your comfort zone makes you filthy, but maintains the sparkles in your eyes.&nbsp;For this reason, traveling and adventure go hand in hand; adventure travel provides you with a profound effect on your corporal and mental health. Hence, adventure tourism is attaining immense popularity over the years for all the good reasons.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify; \">If you are looking forward to adventure traveling, then no place is better than Dubai. So, if you think Dubai is all about skyscrapers and golden sands, then you need to leaf through this guide on&nbsp;must do activities in Dubai<strong>.</strong>&nbsp;Dubai, the city of many faces, is one of the most preferred destinations among audacious travelers. The city never fails to boost your excitement level to infinity and instigate adrenaline among all the thrill-seekers. Being the city of miracle, Dubai has all the ingredients for high-octane escapades and audacious thrills. It is the wonderland for the fanatics featuring diversified geographies such as sea, sand, and sky.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Skydive to Witness Dubai Skyline</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Adventure fanatic? There is no better way to end your quest than taking a giant leap through the sky. Without a doubt, skydiving can be the best adventure option to seek in Dubai and it defines freedom lies in the wilderness.&nbsp;Dubai gateway is worthless if you fail to behold the island at an altitude of 14,000 feet from the sea level. The gushing wind, amidst the vibrant sky, provide you with a way to see a glimpse of the Atlantis, Burj Khalifa, and the magnificent Palm Jumeriah. You will fall for the marvels more than ever.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Exhilarating Dune Bashing</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Dune Bashing is a synonym to Dubai and one of the most preferred and extreme outdoor activities where you will be got into the luxury seat of a Land Cruiser or Hummer and go for a roller coaster ride amidst the sun and slopes of the dunes. A delicious barbecue dinner, Arabian Coffee along with a ride in the sunrise and sunset provide the much-needed rush.&nbsp;The dune in Dubai is exhilarating and offers the tourist a mesmerizing experience on the horizon of the desert. You can also take advantage of the various campsite, especially if you are the honeymooners and wish for quality time to spend.&nbsp;Moreover, if you love the speed, want to explore the desert with full gears, or even go against the winds like fast and Furious then Dubai Sand Dune is right for you. Desert is the root of Dubai, so why not you taste the root!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Hot Air Ballooning&nbsp;</strong></p>\r\n\r\n<p style=\"text-align: justify;\">What about soaring over the golden desert in Dubai? Can you imagine the feeling of witnessing the desolate desert from the crest! While you are in Dubai, you can’t miss the soothing and serene hot air balloon ride. It can provide you the spectacular vistas of a barren region. Being one of the must-do activities in Dubai, the footprints of Hot Air Ballooning over the years. During the journey, you can witness flatlands, undulating surfaces, and tranquil winds provide you a perfect atmosphere for the adequate adrenaline rush.&nbsp;If you love being on the top of the world and fly with wings and want a better connection with nature without high-speed data then hot air ballooning above 4,000 feet helps you witness an exceptional panorama of the desert on one side and the Persian Gulf on the other side.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Get Baffled at Dubai Museum of Illusion</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Fond of delusions? Wish to go through a pile load of tricks and get baffled, the Dubai Museum of Illusion is exclusively for you. Opened at Al Seef, it is the biggest museum in the world. Once you enter the museum, you will come across eight interactive parades comprising a vortex tunnel, Ames room, and rotating cylinder. The museum provides an exciting platform where you can shrink and grow according to your position.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Wrapping Up</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The Dubai Museum of Illusion offers you unbelievable experiences that will be tricky to your eyes and entertaining to your mind. So don’t forget to visit the biggest museum and take a few eye-catching snaps for your social media profile.&nbsp;Indeed, Dubai is filled with a myriad of adventure activities that cuddle you with the most breath-taking environment and uproar Marhaba front the moment you reach this gulf country.&nbsp;Don’t miss to experience the&nbsp;must do activities in Dubai&nbsp;to rush your adrenaline and pump your heart to gulp down your fears and embrace enthrallment.&nbsp; If you want to book&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday</a>&nbsp;or&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai honeymoon packages</a>, we’ve got multiple pre-designed packages starting from just Rs 27,999 per person. However, you can also customize and create your own package for Dubai. So, what’s stopping you? Check them out right now!</p>',NULL,'2021-03-17 13:17:57','2021-03-17 13:17:57',NULL,1,'Dubai',0,0,'Activities to Do in Dubai, Dubai Package, Dubai Tour, Tour Package Dubai','Dubai is full of adventure &amp; if you\'ve seen the pictures on Social Media you\'re in for massive adventure. Here is the list of 5 must do activities in Dubai.','Top 5 Must Do Activities to Do in Dubai For Adventure Enthusiasts','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(23,'The Best Dubai Package for Couples & Honeymooners','the-best-dubai-package-for-couples-honeymooners','1617779846_blog.jpg','1646819159.jpg',NULL,'Aniket Agarwal','2020-11-23',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Dubai’s larger than life experience attracts hundreds of thousands of tourists every year. Be it the sky touching buildings or the luxurious lifestyle, everything about Dubai is glittery and worth loosening your pocket for. Although it’s popular as a trade and business city, with certain additions to the list of tourist attractions every year, the emirate has become quite popular amongst travelers. People of the Indian sub-continent in particular, have a soft corner for Dubai, whether it’s the cheap gold or the exquisite lifestyle, almost everyone living here, plans to visit Dubai at least once. But how? Ideally it should be done by booking a Dubai package. Dubai has so much to do, that a normal internet search often overwhelms travelers. Without having a plan and&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\">a guide</a>, people either end up spending a lot of miss out on many of the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">must-do activities</a>. To help you have a memorable trip, we at ineedtrip have created this blog, that has details of the best&nbsp;Dubai package&nbsp;for a honeymoon.</p>\r\n\r\n<p style=\"text-align: justify; \"><strong>Visa</strong><br></p>\r\n\r\n<p style=\"text-align: justify; \">How will you travel to Dubai without a Visa? Visa comes off as a scary process for many people, fear not, while you sit and plan your trip, we’ll take care of your VISA and OTB. We’ll make sure that you have all the documents ready before the trip to avoid any stress before, during, or after the trip.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Travel</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Doesn’t matter where you’re traveling to, it’s important to take care of your flight/ship bookings and local transfers as well. Here’s a deal, even ineedtrip’s cheapest Dubai honeymoon package covers your airfare and airport to hotel and hotel to airport transfers. The local sightseeing you can, of course, do with the Metro or rented vehicles.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Food</strong></p>\r\n\r\n<p style=\"text-align: justify;\">To do all that sightseeing and shopping, you must be super active and to ensure that we will help you with a healthy breakfast that’ll keep you going. You can customize your package with add-ons if you want us to cover all your meals.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Sightseeing</strong></p>\r\n\r\n<p style=\"text-align: justify;\">We know, you have been waiting for this and we’ll not disappoint you. In our aim towards making your trip as complete and enjoyable as possible, our Dubai packages for couples cover a lot of sightseeing activities. Let’s get to them one by one.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Burj Khalifa + Dubai Mall Tour</strong></p>\r\n\r\n<p style=\"text-align: justify;\">As we said earlier, we want you to enjoy yourself to the fullest while being light on your pocket, so we will take you to the Burj Khalifa Tour and the Dubai Mall tour. Burj Khalifa, needs no introduction, being one of the tallest buildings on earth, it is an epitome of modern architecture blended with Dubai’s art. Moreover, the views from the 124th floor are mesmerizing, you can see almost all of Dubai from the observation deck. Also, lying in close vicinity to the Burj Khalifa is the Dubai Mall, the world’s largest mall. With over 1000 shops inviting you with all sorts of stuff it would be hard to control the urge to shop. Moreover, the Mall has many other famous attractions in Dubai too, like the Underwater Zoo and Ski Dubai a ski resort.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Half-Day Dubai city tour</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Visiting Dubai and not taking a city tour would be unjust, so we’ll take you on a half-day tour of Dubai which will include major sightseeing and tourist attractions, Dubai’s skyline, and a lot more.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Desert Safari with BBQ Dinner</strong></p>\r\n\r\n<p style=\"text-align: justify;\">You are visiting the Sahara, and the world’s largest desert calls in for some dune bashing, stomach-churning rides in SUVs, sliding down on skates, and a lot of other activities. We’ll cover your transfers, give you a free camel ride, let you have fun around the dunes and then we’ll take you to a BBQ dinner within the desert. It’s nothing normal, you’ll sit around with other tourists, watching local artists perform belly dancing and the Tanoura dancing in front of you.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dhow Cruise dinner</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Dubai’s local cruise, the dhow cruise is a state of the art wooden cruises where you can dine along with your friends and family. The cruise leaves in the evening and it’s normally a 2-hour ride in the Dubai creek. You can see Dubai’s skyline from the cruise itself and enjoy Dubai delicacies on the cruise.<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Abu Dhabi City tour</strong></p>\r\n\r\n<p style=\"text-align: justify;\">You’re not tired, are you? Good. Because the Ferrari world in Abu Dhabi is waiting for you. You can get on to some thrilling mini rides and know a whole lot more about Ferrari at the Ferrari world. We’ll even take you on a city tour of Abu Dhabi, where you’ll get to see all the famous tourist attractions.</p>\r\n\r\n<p style=\"text-align: justify;\">We know what you must be thinking. This should cost a lot! Well, here’s another surprise, ineedtrip covers all of this within Rs 37999 per person. Yes with a place that has a currency 19 times higher than ours, we’ll help you in all the above-mentioned activities within Rs 37999. Can’t believe it? Check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai honeymoon package</a>&nbsp;list now, and book your best&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai tour package</a>&nbsp;for a honeymoon in advance, before the prices change.</p>',NULL,'2021-03-17 13:22:21','2021-03-17 13:22:21',NULL,1,'',0,0,'Dubai package for Couples, Dubai package, Book  Dubai Package,  Dubai Tour Package, Dubai Holiday Package','Stressed about which Dubai package to book? So many websites to choose from? Read this blog to find out the best Dubai package for couples honeymooners.','The Best Dubai Package for Couples & Honeymooners','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(24,'7 Best Places To Visit In Dubai For Couples - ineedtrip','7-best-places-to-visit-in-dubai-for-couples-ineedtrip','1617778840_blog.jpg','1645696468.jpg',NULL,'Aniket Agarwal','2020-11-17',NULL,NULL,NULL,'<p style=\"text-align: justify; \">If you are pondering over the best location for your after-marriage celebration, then come to the city of gold, Dubai. Dubai, captivates the newly made love bonds and enchants them with its absolute marvels and human-made edifices.&nbsp;Spending some intimate moments with your significant other surrounded by some of this Arabian Gulf’s unparalleled beauties is a stupendous experience. Dubai has a lot to offer to you as a couple.&nbsp;You can enjoy breath-taking adventurous activities, party all night, soothe your appetite and have some lovey-dovey chit chat at some of the most romantic restaurants. With this blog, we’ll help you with the 7 best places to visit in Dubai, and take note, you HAVE TO visit these places.</p>\r\n\r\n<p style=\"text-align: justify; \">However, if places to visit are cliche for you, and you are more of the “adventurous” types, here’s the list of the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">10 best things to do in Dubai.</a>&nbsp;Dubai is undoubtedly a fast-paced multicultural city that features loads of glitz and excitement on every corner. The city offers you many delightful ways to instigate your married life. It is an excellent fusion of core Arabian cultures and luxurious amenities that unwinds your wildest desires.&nbsp;Dubai is bliss for the honeymooners by offering some of the most serene beaches, enthralling adventurous activities, human-made wonders, and astounding beauties of the desert. To escalate your excitement, let’s discover&nbsp;7 best places to visit in Dubai&nbsp;and their attractions.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Burj Khalifa</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Burj Khalifa, the conceptual heart and soul of Dubai, is rightly a feat of engineering, new-age technologies, and innovative minds. It is also a global icon and one of the most visited destinations in Dubai.&nbsp;What could be more romantic than standing at the tallest building in the world and experiencing the panoramic views of the desert country, Dubai?<br></p>\r\n\r\n<p style=\"text-align: justify;\">Exploring the observation deck on the 124th floor is awe-inspiring, urging you to behold the Dubai Skyline from a bird-eye view.&nbsp;&nbsp;The ambiance gets more quixotic by offering you a 360-degree view of the amazing skyscrapers thriving sea on one side, the desert, and everything beyond eternity.&nbsp;Don’t miss a chance of capturing a close view of Palm Islands, Burj Al Arab, Atlantis The Palm, and more through the lined-up telescopes on the 124th floor with your spouse. To fill up your visit with some romance, you can also dine at the sumptuous lounge and restaurants on the 122nd floor. This place obviously is one of the best places to visit in Dubai.&nbsp;Location: Sheikh Mohammed bin Rashid Blvd – Dubai&nbsp;Opening hours: 24 hours&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Jumeirah Beach</strong></p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;Thanks to quietude, tempting breezes, and the proactive sound of waves that soak you in romance, beaches are undoubtedly the most romantic places. The Jumeirah beach in the gulf is no different and immerses you and your partner with a distinct charm and arouses a sense of love.&nbsp;The Jumeirah Beach is the home to many luxurious hotels and resorts, offers a spectacular view of the city, and provides an exquisite backdrop for some exceptional romantic moments.&nbsp;&nbsp;The Palm Jumeirah stretched over seven kilometers, offers a delightful experience and peace of mind through the unsullied waters and gorgeous vista. It is surely one of the best destinations for honeymooners.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The Jumeirah beach is the home to many malls and high-end clothes stores to satiate your shopping desires. Don’t miss the finger-licking delicacies around the beach. If you want to know more about the best shopping experience in Dubai, read our&nbsp;<a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">blog here.</a>&nbsp;So, the setting, the atmosphere, and the vista along with white sands make the Jumeirah beach one of the best destinations in the category of&nbsp;7 best places to visit in Dubai.&nbsp;&nbsp;Location: Jumeirah District&nbsp;Opening Hours: 7:30 AM&nbsp;to 10 PM every day except Thursday and Friday.&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Palm Jumeirah</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Palm Jumeirah is unquestionably one of the best architectural marvels and a paradise for travelers. The scattered island resembles the design of a palm tree and dazzles you at every turn.&nbsp;The island will magnetize you with its daring development and radiate a spell of magic on both of you for years to come. This artificial island is the home to a myriad of beach hotels and resorts, spas, and food junctions alongside the warm blue waters.&nbsp;&nbsp;Exploring Palm Jumeirah is incomplete if you miss aquatic activities like speed-boat rides, swimming with dolphins, and kayaking.<br></p>\r\n\r\n<p style=\"text-align: justify; \">You can also get soaked with pleasure and romance with your better half at the Aquaventure Waterpark.&nbsp;If you wish to add a new perspective to your voyage to the Palms then take a helicopter ride over the island and behold the miniature vista of the Palm Jumeirah. It is like an offense to miss such a breath-taking panorama. Remember this is surely not the faint-hearts. Palm Jumeirah has everything to celebrate your honeymoon and make it a stamp on your memory.&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Miracle Garden</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pic Creds: Instagram/coral_travel_</p>\r\n\r\n<p style=\"text-align: justify;\">If you wish for a wonderland to fuel up your love alongside a romantic landscape, nothing is better than the Miracle Garden in Dubai. This 72,000 square ft. extravagant location features structures with various species of multi-colored flowers.&nbsp;Walking through the human-made pyramids and houses of flowers with your spouse takes you to ecstasy and soaks you with amazing aromas all over. Furthermore, the flapping butterflies in the Butterfly garden create a romantic ambiance and make you feel the love in the air.&nbsp;Explore the lovely panorama while strolling down the park, heart-shaped arches, most importantly the flower-covered Airbus A380 and enjoy an enchanting time.&nbsp;&nbsp;Location: AI Barsha South 3, Dubai&nbsp;Opening Hours: 9 AM-5 PM&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Desert Safari</strong></p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;While in Dubai, you can’t miss the true identity of the gulf, the fascinating desert. It showcases the humble beginning of the miraculous and urbanized city. The enchanting desert of Dubai offers you a lifetime experience as a Sheikh and Sheikha.&nbsp;An overnight desert safari offers you an overwhelming feeling due to exciting dune bashing, quad biking, camel riding, dinner&nbsp; &amp; more. (All our Dubai honeymoon packages have desert safari as a package inclusion, check them out&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">here</a>, starting at just Rs 27,999).</p>\r\n\r\n<p style=\"text-align: justify;\">Once the sun takes a siesta, the desert safari starts to manifold your exquisiteness, which is beyond your imagination. The desert dunes, whistling winds, and a gorgeous backdrop set your mood for an amorous evening.&nbsp;&nbsp;An itinerary of night desert safari also includes exhilarating belly dance, Tanura show followed by a delicious Emirati Buffet, especially for the honeymooners. You can also create a picturesque moment with your beloved on a deserted night under the stars.</p>\r\n\r\n<p style=\"text-align: justify;\">So, don’t miss exploring the vastness of the desert in Dubai and seizing an unforgettable memory.&nbsp;To celebrate the new phase of your life, spend a mesmerizing night and wake up to the first light in the desert for an implausible encounter. Keep in mind that Dubai’s desert offers an utterly romantic night and one of the most popular destinations among the newlyweds.&nbsp;<strong>L</strong>ocation: Dubai &amp; around 40 Km from Dubai Mall&nbsp;Opening Hours: Morning Safari 8:30 AM to 11:30 AM, Overnight Safari- 4 PM to 9 PM&nbsp;&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dubai Fountain</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Dubai Fountain a<strong>&nbsp;</strong>perfect amalgamation of appealing water, thrilling music, and spectacular lights located on the Burj Lake in Downtown Dubai. With 900 ft in length, the Dubai Fountain is the tallest and features at least two football grounds. The fountain’s water goes up to an enormous height and waves through different music from classical to contemporary Arabic and World music.&nbsp;The illuminations sound and the water movements create fascinating moments for you and soak you in its dazzles. Hence you should not miss this awesome sight while touring the gulf country.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\">Besides this, you can also sail through the Burj Lake using Arba to witness the best musical fountain show in the city. To enlighten your romance’s flame, you can stroll down the 272-meter Boardwalk while enjoying the lake and its splendors. The Boardwalk offers you the best view of the fountain by keeping you only 9 meters away. So, don’t miss the opportunity to embrace the light and water to exhilarate your body and mind.&nbsp;&nbsp;Location: Burj Lake, Sheikh Mohammed bin Rashid Blvd&nbsp;Opening hours: 5:45 PM to 11.30 PM&nbsp;&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dubai Marina &amp; Dhow Cruise Dinner</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Romance and an exquisite dinner go hand in hand, so when it is about a romantic dinner in Dubai, nothing can beat the Dhow Cruise Dinner on the Dubai Marina. The Dhow Cruise Dinner is synonymous with the Dubai Tour, and it manifolds the magics, especially for couples.&nbsp;At the twilight, when your Dhow cruise sails through the Arabian Gulf, it offers a mesmerizing view of the city as well as perfect selfie moments to capture.<br></p>\r\n\r\n<p style=\"text-align: justify; \">The Dhow cruise, an Arabian style boat, offers you countless moments to go intimate and take your love to eternity.&nbsp;&nbsp;It urges you to get closer to your spouse more than ever under the lights and blue waters. These traditional wooden boats create the most romantic vibes and help you capture some iconic sights like the Atlantis the Palm, Burj Khalifa, and more.&nbsp;The cruise also arranges an intimate dinner to level up your romance along the clear blue waters. So, escalate your love and ride a delightful journey to explore different shades of love and adore.&nbsp;Location: Dubai Marina, Dubai&nbsp;Opening hours: 8.30 PM to 10.30 PM&nbsp;Dubai is one of the most magical places; without a doubt, it is the dreamland where the traditional values meet modern culture. The city of Gold entices travelers across the globe irrespective of age and type. The city bestows world-class architectures, enchanting monuments, unusual, adventurous activities, and, last but not least, a romantic gateway to enchant your significant other.</p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;So, if you are already geared up to explore the city, then head out to our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a>&nbsp;section right now! We will cover everything, from airfare, stay, visa to sightseeing and breakfast, starting at just Rs. 27999 per person.&nbsp;</p>',NULL,'2021-03-17 13:29:35','2021-03-17 13:29:35',NULL,1,'Dubai',0,0,'Best Places To Visit In Dubai, Dubai Places, Best Places in Dubai, Dubai Package, Dubai Tour.','With this blog you\'ll find out 7 best places to visit in Dubai for couples. These locations have sightseeing, activities, and dinner opportunities as well.','7 Best Places To Visit In Dubai For Couples - Tour Package Dubai','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(25,'10 Best Hotels In Dubai For Couples - ineedtrip','10-best-hotels-in-dubai-for-couples-ineedtrip','1617778417_blog.jpg','1645696318.jpg',NULL,'Aniket Agarwal','2020-11-12',NULL,NULL,NULL,'<p>Dubai is one of the largest and most popular cities in UAE. The place is a full package, where you will find extravagant lifestyle and gold shops, and everything you might ever think of. Moreover, when we&rsquo;re planning a trip to Dubai, the thought of a luxurious stay always crosses our minds. But, do you know which hotels offer an ultra-luxurious lifestyle? You might have heard names like Burj Khalifa and Atlantis, but is that it? Nope! Dubai has many luxurious hotels that&rsquo;ll make your trip full of comfort and happiness. So, with this blog, we will introduce you to the best hotels in Dubai. We&rsquo;ll also give you the link to our best Dubai packages, but dessert after dinner!</p>\r\n\r\n<p><strong>BURJ KHALIFA&nbsp;&nbsp;</strong></p>\r\n\r\n<p>Creds: Instagram/urlaubindubai</p>\r\n\r\n<p>Everyone is aware of this beautiful hotel in Dubai. Burj Khalifa is a level above the breathtaking. It is the fifth tallest hotel building in the whole world with the finest architecture, a white and blue sailed structure. Guests can arrive with a helicopter transfer service. There are about 28 double-story floors in the hotel. All the rooms have four-poster beds, each suite contains an iPad, 21 inch iMac, complimentary wifi, with a widescreen interactive HDTV. Moreover, you can also add unlimited water activities to your trip. It provides amenities like Pool, Spa, free Wi-Fi, free Parking, Gym, Fitness center, Business meeting rooms, 24-hour front desk, Laundry, etc. Burj Khalifa is just perfect in everything with fantastic services and different cuisines. If you have a good budget, plan a day or two&rsquo;s stay at Burj Khalifa because it is definitely one of the best hotels in Dubai. We&rsquo;ve also included the Burj Khalifa tour in all our Dubai Packages, so if you plan on staying at a different hotel, you&rsquo;ll get to see Burj Khalifa for free anyhow.</p>\r\n\r\n<p>Hotel check-in time: 14:00 hours and check-out time: 12:00 noon. The charge is approx: INR 2,12,329 per night.</p>\r\n\r\n<p>Places nearby: Dubai Fountain, The Dubai Mall</p>\r\n\r\n<p>Distance from airport &ndash; 6km&nbsp;</p>\r\n\r\n<p><strong>MARINE BEACH RESORT &amp; SPA</strong></p>\r\n\r\n<p>Creds: Instagram/@dubaimarinebeachresort</p>\r\n\r\n<p>Marine beach resort is close to Jumeirah Beach. Their elegant rooms have free wifi, television with flat screens, open balconies, and terraces. Their upgraded rooms have many more facilities like an attached swimming pool, jacuzzi, beachside or city side views from the rooms, etc. If you want to entice your dinner, you can dine at the Italian restaurant, visit the shisha cafe, or enjoy the evening with live music shows within the hotel. Moreover, the hotel has multiple indoor and outdoor pools, and they organize pool parties very frequently. At last, if you feel like relaxing you can hit the spa within the hotel. This is one of the coolest resorts in Dubai where you can spend your time and have a wonderful stay.&nbsp;</p>\r\n\r\n<p>Nearby places-Burj Khalifa, The Dubai, Dubai International Airport</p>\r\n\r\n<p>Distance from airport- 130km, 15 minutes</p>\r\n\r\n<p><strong>TAJ DUBAI&nbsp;</strong></p>\r\n\r\n<p>Taj Dubai is one of the famous hotels in Dubai with its fantastic ambiance. It is one of the renowned hotels in Dubai.&nbsp; They have luxury upgraded rooms free wifi, flatscreen tv&rsquo;s, open balconies, and long terraces. You can find a lot of variety in cuisines in Taj with some of the best Dubai Specialities. They also give pick and drop facility with a town visit. There are an outdoor pool, a gym, and a spa as well. Their family suites include living areas, minibars, and advanced toilets. It is a perfect resort to stay and have quality time and fun in Taj.&nbsp;</p>\r\n\r\n<p>Nearby Places:&nbsp; Burj Khalifa, The Dubai Mall, Dubai Fountain</p>\r\n\r\n<p>Distance from the airport- 12km, 8mins</p>\r\n\r\n<p><strong>PALAZZO VERSACE</strong></p>\r\n\r\n<p>Pic Creds: Instagram/travel4senses_</p>\r\n\r\n<p>Palazzo Versace is another top-rated five-star hotel with unique architecture, free parking, an outdoor pool, and picture-perfect ambiance. Guests are highly satisfied with the management and its services. A vital number of restaurants and clubs are available. For nightlife, this lavish hotel is an awesome place to experience it.</p>\r\n\r\n<p>Places nearby- The Dubai Mall, Burj Khalifa</p>\r\n\r\n<p>Distance from airport-12km, 8min</p>\r\n\r\n<p><strong>THE RETREAT PALM</strong></p>\r\n\r\n<p>Pic Creds: Instagram/poehali_s_nami_travel_agency</p>\r\n\r\n<p>Another luxurious 5-star hotel with basic facilities of the private suite with private pool, cinema, gym, and bar. Guests are fascinated with balconies and rooftop parties in the hotel and it also includes a spa, outdoor infinity bar with plus restaurants.&nbsp; For a fun time experience, this hotel is going to go on your list.</p>\r\n\r\n<p>Places nearby- Ski Dubai, Burj Al- Arab</p>\r\n\r\n<p>Distance from airport- 39km, 33min</p>\r\n\r\n<p><strong>ATLANTIS, THE PALM</strong></p>\r\n\r\n<p>Atlantis, the palm is a well-known five-star hotel popularly known for its marine lifestyle experience. The hotel is surrounded by an island giving &ldquo;island view&rdquo; to the guests and in the upgraded room there is the availability of aquariums varying in sizes. Dining services are properly managed by the staff and are rated in terms of reviews, 4.7 stars out of 5 stars which signifies that it is regularly visited hotel by tourists especially the Indians tourists stay the most in the hotel. Visiting the Atlantis Palm or just getting pictures of the hotel from a distance is a popular activity in Dubai.</p>\r\n\r\n<p>Nearby places- Burj Khalifa, The Lost Chamber Aquarium</p>\r\n\r\n<p>Distance from the airport-29min, 37km</p>\r\n\r\n<p><strong>BULGARI HOTEL &amp; RESORTS</strong></p>\r\n\r\n<p>Pic Creds: Instagram/beingaudreyindubai</p>\r\n\r\n<p>Bulgari Hotel is another 5-star hotel with top reviews and ranks popular among tourists. There are three restaurants in the hotel with Italian dining options. There are sleek bars and other numbers of bars giving aura to nightlife with basic five-star amenities like a private lounge with kitchenettes, bar, and pool. If you want to stay in a villa, this is the best resort having three master bedrooms in it. Other satisfying facilities are that the rooms have private balconies.</p>\r\n\r\n<p>Nearby places- Dubai Mall, Jumeirah beach</p>\r\n\r\n<p>Distance from airport- 19km, 21min</p>\r\n\r\n<p><strong>HABTOOR PALACE</strong></p>\r\n\r\n<p>Pic Creds: Instagram/habtoorpalace</p>\r\n\r\n<p>Habtoor Palace is another sophisticated five-star hotel with a grand entrance and tinted gold pattern giving into-scenic look with Arabian architecture style. Basic amenities are available in the hotel like free wifi, private rooms with a private pool, luxuriously furnished beds, and furniture. This hotel is perfect for Instagram posts as the white interior gives the outcome of picture-perfect looks. For business purposes, there are seven meeting rooms in the hotel.</p>\r\n\r\n<p>Nearby Places- The Dubai Fountain, Burj Khalifa</p>\r\n\r\n<p>Distance from airport- 17min, 18km</p>\r\n\r\n<p><strong>HOTEL RAFFLES</strong></p>\r\n\r\n<p>Creds: Instagram/@luxurytravelbylisa</p>\r\n\r\n<p>Hotel Raffles is another top-rated hotel and it is called &ldquo;raffle&rdquo; due to its pyramid shape which looks perfect and suits the best-built building on the outskirts of the hotel. The hotel has attractive charm and space with every room from ceilings to bottom with windows. The basic amenities of the hotel are free wifi, a private room with a pool, spa, and gym. The dinning of the hotel provides the option of Portuguese and Italian,</p>\r\n\r\n<p>Places nearby- Citibank Branch, The Dubai Mall</p>\r\n\r\n<p>Distance from airport- 8min, 6km</p>\r\n\r\n<p><strong>JUMEIRAH MINA A&rsquo;SALM</strong></p>\r\n\r\n<p>Creds: Instagram/thenewgirldubai</p>\r\n\r\n<p>Another five-star hotel gives the experience of a luxurious lifestyle and with its brand style rooms, it attracts lots of Arabians all over the world and amenities like marble bathrooms with rainfall showers, sea views from the balconies, free wifi with club quarters, and com[limentary breakfast and dining.&nbsp;</p>\r\n\r\n<p>Places nearby- Burj Al-Adab, Wild Wadi Waterpark</p>\r\n\r\n<p>Distance from Airport- 21km, 18min</p>\r\n\r\n<p>By now you have a lot of hotel options for Dubai. So we wish you all the best for your trip to Dubai, we hope you have a lot of fun. However, if you want to go on the cheapest yet most luxurious trip to Dubai, check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Honeymoon Packages</a>&nbsp;and&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages.</a>&nbsp;Moreover, we cover airfare, hotel, airport transfers, visa, sightseeing, and a lot more.</p>',NULL,'2021-03-17 13:54:01','2021-03-17 13:54:01',NULL,1,'',0,0,'Best Hotels In Dubai For Couples','Dubai offers a luxurious life to everyone. There\'s so much luxury it\'s hard to find the right hotel, but you can ead about the best hotels in Dubai here.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(26,'Travel Tips & Official Guidelines for Dubai after Covid-19','travel-tips-official-guidelines-for-dubai-after-covid-19','1617776770_blog.jpg','1645695970.jpg',NULL,'Aniket Agarwal','2020-09-18',NULL,NULL,NULL,'<p style=\"text-align: justify; \">The enchanting city of Dubai is always on a traveler’s mind. We are especially attracted to the charm, luxury, relaxation, and cheap jewelry shopping that Dubai offers. However, with Covid-19 affecting global travel, every traveler is disappointed, sitting at home, dreaming of travel. Now that Dubai is open to travel, we know you are more than eager to get on to that flight and be on your way to explore the city. But of course, we need to be cautious and safety, health should be our top priority. In this blog, we will help you with the latest travel guidelines that you need to follow, to have a safe and stress-free trip to Dubai. And we would just like to add that we at ineedtrip are offering Dubai Packages after following all the necessary guidelines from the Dubai and Indian government.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What are the official guidelines from Dubai?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Before we talk about the tips and things you can do to have a safe trip, we should first take note of the official guidelines. Dubai was opened for tourists on 7th July 2020 and since then many tourists have been planning to visit the place. To make sure both the locals and tourists are safe, the Dubai government has laid out some guidelines.</p>\r\n\r\n<p style=\"text-align: justify;\">1. The first and foremost requirement for tourists to travel to Dubai is to present a negative PCR test. PCR stands for Polymerise Chain Reaction and you’ll be only permitted to Dubai if you present a negative test of the same. Keep in mind, an antibody test or a test taken at home will not be considered valid.</p>\r\n\r\n<p style=\"text-align: justify; \">2. The test and report both should be only from an ICMR approved laboratory and the report shouldn’t be any older than any 96 hours.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">3. A thermal test upon arrival is mandatory.</p>\r\n\r\n<p style=\"text-align: justify;\">4. Passengers might have to go through another PCR test upon arrival and will have to stay in the hotel until the report comes out negative.</p>\r\n\r\n<p style=\"text-align: justify;\">5. In the unforeseen circumstance of a tourist’s report coming positive, he/she will be quarantined for 14 days and all expenses shall be borne by him/her or by the insurer.</p>\r\n\r\n<p style=\"text-align: justify;\">6. You must follow social distancing norms, wear masks, and wash hands regularly.</p>\r\n\r\n<p style=\"text-align: justify;\">7. One must also complete the Health Declaration Form before departing to Dubai.</p>\r\n\r\n<p style=\"text-align: justify;\">8. You must also download the COVID-19 DXB app before stepping out of the Dubai airport.</p>\r\n\r\n<p style=\"text-align: justify;\">These are the main guidelines by the Dubai government to ensure all tourists have a safe trip.</p>\r\n\r\n<p style=\"text-align: justify;\">If you need help in planning a trip to Dubai, check out our guide on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\">how to plan the perfect trip to Dubai.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Official guidelines for returning back to India</strong></p>\r\n\r\n<p style=\"text-align: justify;\">While we hope that your trip to Dubai is completely safe and full of fun, you must keep in mind the guidelines put up by the Ministry of Home Affairs of India. As per the revised guidelines, any traveler returning from a foreign trip will have to submit a self-declaration on&nbsp;<a href=\"http://www.newdelhiairport.in/\">www.newdelhiairport.in</a>&nbsp;stating their safe health.&nbsp;Upon arrival, each passenger will have to undergo a thermal test. He/she will also have to quarantine for 14 days.&nbsp;All social distancing guidelines have to be followed. The government officials might ask you to take the Covid-19 test if you show any symptoms.If you want to know what all you can do in Dubai and how you can make your Dubai trip more memorable, read our blog on the<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">&nbsp;</a><a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">must-do activities</a>&nbsp;in Dubai.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What should you do?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">It is given that you will have to follow all these official guidelines. But there’s something else that we can do too:&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">1. Keep sanitizers handy always.</p>\r\n\r\n<p style=\"text-align: justify;\">2. Maintain social distancing.</p>\r\n\r\n<p style=\"text-align: justify;\">3. Wear gloves where possible.</p>\r\n\r\n<p style=\"text-align: justify;\">4. Wear face masks.</p>\r\n\r\n<p style=\"text-align: justify;\">We have to start living with Covid-19 and fight it by following these measures. There’s still uncertainty over a vaccine so this should be the new normal for us. Apart from that, enjoy your trip to the fullest, capture precious moments, and lay down on the beach. We at ineedtrip are willing to be your trip partner to Dubai. Our Dubai honeymoon and&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages&nbsp;</a>are currently being offered at great discounts. We’ll help you with all the necessary guidelines, visa arrangements, flights, hotels, and more. Just get in touch with us&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">here.</a></p>',NULL,'2021-03-17 13:56:57','2021-03-17 13:56:57',NULL,1,'Dubai',0,0,'Guidelines for Dubai after Covid-19, Tips for Travel in Covid-19','In this blog, we will help you with the latest travel guidelines that you need to follow, to have a safe and stress-free trip to Dubai.','Travel Tips & Official Guidelines for Dubai after Covid-19','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(27,'Your purchasing guide at the Dubai Shopping Festival','your-purchasing-guide-at-the-dubai-shopping-festival','1615969766_blog.png','1615969766.png',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">If ultra-luxurious lifestyle, sky high buildings, exquisite tourist attractions weren’t enough, here’s one more reason for you to visit the stunning city of Dubai – The Dubai Shopping Festival. A playground for children, an art gallery for culture seekers and a heaven for shopaholics, the Dubai Shopping Festival, is a jovial place for all kinds of tourists. Take a decent number of leaves before you visit Dubai during the fest, because once you’re here, you wouldn’t want to leave anytime soon.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Travel light, or just don’t carry luggage at all, buy everything new at the festival. Your favourite brands will go on unbelievable discounts, anything from 30% to a whooping 95%. That Louis Vuitton bag, or the Gucci shirt or the Rolex watch you have always dreamed of buying, you can finally buy them here. With this guide, we’ll give you an overview of when, where and what to shop at the DSF. Let’s get going!</span></p><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">When To Visit</b></h5><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Although Dubai is a fun and happy place year around, January is when the magic of Dubai Shopping Festival happens. The festival starts from the last week of December and generally runs till the 1st week of February. If you want to grab on the best merchandise, we suggest you plan on welcoming the new year in Dubai.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">In the initial days, you will get the best quality, designs and the most popular items on huge discounts. Although many people find the last weeks to be cheaper but you won’t get too many options to choose from like in the initial weeks.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">So our take is that you keep checking for the official dates and plan on spending more time and less money in Dubai.&nbsp;</span></p><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Where To Shop</b></h5><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Here comes the best part and we didn’t reveal the location intentionally. It’s EVERYWHERE! Yes, the Dubai Shopping Festival isn’t something that’s organized at a particular place or ground, the whole city is a part of it. From local street stores to high end brand stores in malls, everyone puts in the best decoration and discount to attract customers. “It’s really crazy out there. The atmosphere, the discounts and the options, everything is just unbelievable”, these are the words of one of our customers who booked the Dubai Holiday Package with us to visit the DSF.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The whole city’s atmosphere is quite entertaining, you’ll find street shows, live music performances, play areas for children and much more. To top it all, if you visit Dubai during DSF you can also witness the beauty of the Global Village in Dubai. The global village is where you’ll find over 100 countries presenting their culture, cuisine and apparel to you. It’s a great place to get your hands on some international handicrafts. We got two main places where you can shop till you drop.</span></p><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Dubai Mall</b></h5><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-22046\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e-160x160.jpg\" alt=\"dubai shoppping festival\" width=\"850\" height=\"572\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e-640x431.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e-768x517.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e-320x215.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e-600x404.jpg 600w, https://www.ineedtrip.com/wp-content/uploads/2020/04/dubaiblog2e.jpg 1024w\" sizes=\"(max-width: 850px) 100vw, 850px\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-width: initial; border-style: none; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The world’s largest mall offers over 1500 shops to broaden your search for the right item. You’ll find almost each and every brand within the mall, it’s more like a mini city in itself. The mall has theatres, food courts, the Underwater Zoo, Ski Dubai and a lot more to do besides shopping. But, since we’re here for shopping let’s talk about that. Like we said, you’ll find over 1500 shops each offering mouth-watering discounts and something unique that’ll make you want to step in.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">It’s safe to say that a complete tour of the Dubai Mall during the Dubai Shopping Festival would mean exhausting the shopping budget completely. The place has everything from Clothes to cosmetics, apparels, luggage, home decor, grooming, electronics etc. If you don’t want to spend much time travelling around, looking for places to shop, the Dubai Mall is the place for you. With&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">Dubai Holiday Packages</a>&nbsp;from ineedtrip, you can not only shop your pockets out, you will also get to explore the nearby attractions like the Dubai fountain, Burj Khalifa and more. Visiting the Dubai Mall is anyway one of the must-do activities in Dubai, so shopping or no shopping, you have to go here.</span></p><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Souks</b></h5><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><a href=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1.jpg\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\"><img class=\"alignnone wp-image-22629\" src=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-160x160.jpg\" alt=\"dubai shopping festival\" width=\"850\" height=\"567\" srcset=\"https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-640x427.jpg 640w, https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-768x512.jpg 768w, https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-800x533.jpg 800w, https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-320x213.jpg 320w, https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1-600x400.jpg 600w, https://www.ineedtrip.com/wp-content/uploads/2020/07/Dubai-Gold-Souq-1.jpg 1024w\" sizes=\"(max-width: 850px) 100vw, 850px\" style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px auto; background-repeat: no-repeat; border-width: initial; border-style: none; border-radius: 0px; box-shadow: none; text-align: center; width: auto !important;\"></a></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Ahh! The best place to experience the culture of Dubai and testing your bargaining skills. There are four souks in Dubai, namely the Gold Souk, Textile Souk, Perfume Souk and the Spice Souk, each offering different luxury. Although the Souks are always bustling with amazing fragrance and lively atmosphere, the shopping experience goes to the next level during the Dubai Shopping Festival. Every shop, vendor in all the four souks puts a discount on his offerings, the place is lit up nicely and you’ll hear vendors calling you out. There’s a fireshow during the weekends in the evenings.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Souks are known for the variety and quality of items and with the DSF, all of these go on huge discounts. The Gold Souk, is the most famous amongst the four souks, here you’ll find a huge variety of gold, silver, imitation jewellery and gemstones. The Perfume souk as the name speaks, will offer you fragrances that you’d want to put on every day. The variety of Rose, Sandal, Lily and other ‘itras’ sold here during the DSF have gained immense popularity. The spice souk is for those who like cooking and dry fruits (a weird combo, we know), during the DSF, the vendors put up a display of the colourful spices they offer and the streets are filled with an enchanting aroma.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The textile souk, without a doubt attracts the most number of tourists, everything from hand made textiles to machine-made clothes including Kashmiri, Pashmina, Silk, Cotton, Wool go on sale during the DSF.&nbsp;</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Souks are the best place to shop once you’re done with branded shopping at the Dubai Mall. Visiting the souks is also one of the top activities in Dubai for tourists.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Need help in planning a trip to Dubai? Read our blog on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">how to plan the perfect Dubai trip from India.</a></strong></p><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Some other places where you can shop during the Dubai Shopping Festival are:</b></h5><ol style=\"outline: 0px; box-sizing: border-box; margin-bottom: 1em; margin-left: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">the Ibn Battuta Mall&nbsp;</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The Global Village</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Al Rigga Street</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Al Fahidi For</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Promenade at Dubai Festival City&nbsp;</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">DSF Desert Camp</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Al Seef Street</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Mall of the Emirates</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Deira City Centre</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Festival Waterfront Centre</span></li><li style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px 0px 0px 0.5em; background-repeat: no-repeat;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Dragon Mart and more.&nbsp;</span></li></ol><h5 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.625em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">What To Shop</b></h5><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">We get it, when everything’s on discount it’s hard to decide what to buy. The discounts during the Dubai Shopping Festival are so alluring that you’ll feel like buying everything you see. H</span><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">ere are a few things you can buy during the fest,&nbsp; make a list or just set a budget.</span></p><h6 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.25em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Apparel</b></h6><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">The first and foremost thing that comes to our mind when we hear “shopping” is clothes. So, apparel should be the first thing on your shopping list. You’ll get brands like Hermes, Versace, Prada, Armani, Ralph Lauren and every brand you could dream of. The best part is that you’ll get a huge variety from each brand and since apparels are the most sought after items, they are offered with up to 90% discount.</span></p><h6 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.25em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Jewellery</b></h6><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Gold is the most sought after item in Dubai, when jewellery is offered duty free, why don’t you fancy yourself with a designer bracelet or locket or maybe something for your partner. Careful, the lucrative prices will make you want to purchase more than the customs limit, don’t fall in that trap.&nbsp;</span></p><h6 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.25em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Gadgets</b></h6><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Apple, Blackberry, Virtu, Dell, Sony and all other big brands make huge sales during the Dubai Shopping Festival, thanks to the duty free option. You can buy anything from smartphones, laptops, hard drives, headphones and more, so it’s time to update your tech stock.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Other items like leather bags, cosmetics, home decor are also sold at decent prices too.</span></p><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><strong style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Shopping is one thing and sightseeing is another, you can read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">top 10 things to do in Dubai</a>&nbsp;if you want your trip to be full of fun.</strong></p><h6 style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px 0px 0.4em; margin-top: 0px; margin-bottom: 0px; background-repeat: no-repeat; font-family: Montserrat; clear: both; line-height: 1.4; font-weight: normal; letter-spacing: -0.05em; font-size: 1.25em; color: rgb(112, 112, 112);\"><b style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">Conclusion</b></h6><p style=\"text-align: justify; outline: 0px; box-sizing: border-box; padding: 0px; margin-bottom: 1em; background-repeat: no-repeat; color: rgb(112, 112, 112); font-family: Roboto, sans-serif; font-size: 16px;\"><span style=\"outline: 0px; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat;\">So, this was your guide to the Dubai shopping festival. Ineedtrip’s Dubai holiday packages will cover your airfare, hotel, sightseeing, breakfast and a lot more. So that you can focus on shopping while we handle all your booking and travel stress. Here’s something more, all our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\" style=\"outline: none; box-sizing: border-box; padding: 0px; margin: 0px; background-repeat: no-repeat; transition: color 200ms ease 0s; color: rgb(25, 118, 188); box-shadow: none;\">Dubai packages</a>&nbsp;are on huge discounts. So book your packages now to save more money for shopping in Dubai.</span></p>',NULL,'2021-03-17 13:59:26','2021-03-17 13:59:26',NULL,1,'',0,1,'The Dubai Shopping Festival','If ultra-luxurious lifestyle, sky high buildings, weren’t enough, here’s one more reason for you to visit Dubai - The Dubai Shopping Festival.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"\"]}'),(28,'Your purchasing guide at the Dubai Shopping Festival','your-purchasing-guide-at-the-dubai-shopping-festival','1617776258_blog.jpg','1640939525.jpg',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p style=\"text-align: justify; \">If ultra-luxurious lifestyle, sky high buildings, exquisite tourist attractions weren’t enough, here’s one more reason for you to visit the stunning city of Dubai – The Dubai Shopping Festival. A playground for children, an art gallery for culture seekers and a heaven for shopaholics, the Dubai Shopping Festival, is a jovial place for all kinds of tourists. Take a decent number of leaves before you visit Dubai during the fest, because once you’re here, you wouldn’t want to leave anytime soon.</p>\r\n\r\n<p style=\"text-align: justify;\">Travel light, or just don’t carry luggage at all, buy everything new at the festival. Your favourite brands will go on unbelievable discounts, anything from 30% to a whooping 95%. That Louis Vuitton bag, or the Gucci shirt or the Rolex watch you have always dreamed of buying, you can finally buy them here. With this guide, we’ll give you an overview of when, where and what to shop at the DSF. Let’s get going!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>When To Visit</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Although Dubai is a fun and happy place year around, January is when the magic of Dubai Shopping Festival happens. The festival starts from the last week of December and generally runs till the 1st week of February. If you want to grab on the best merchandise, we suggest you plan on welcoming the new year in Dubai.&nbsp;In the initial days, you will get the best quality, designs and the most popular items on huge discounts. Although many people find the last weeks to be cheaper but you won’t get too many options to choose from like in the initial weeks.&nbsp;So our take is that you keep checking for the official dates and plan on spending more time and less money in Dubai.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Where To Shop</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Here comes the best part and we didn’t reveal the location intentionally. It’s EVERYWHERE! Yes, the Dubai Shopping Festival isn’t something that’s organized at a particular place or ground, the whole city is a part of it. From local street stores to high end brand stores in malls, everyone puts in the best decoration and discount to attract customers. “It’s really crazy out there.</p>\r\n\r\n<p style=\"text-align: justify;\">The atmosphere, the discounts and the options, everything is just unbelievable”, these are the words of one of our customers who booked the Dubai Holiday Package with us to visit the DSF.&nbsp;The whole city’s atmosphere is quite entertaining, you’ll find street shows, live music performances, play areas for children and much more. To top it all, if you visit Dubai during DSF you can also witness the beauty of the Global Village in Dubai. The global village is where you’ll find over 100 countries presenting their culture, cuisine and apparel to you. It’s a great place to get your hands on some international handicrafts. We got two main places where you can shop till you drop.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>The Dubai Mall</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The world’s largest mall offers over 1500 shops to broaden your search for the right item. You’ll find almost each and every brand within the mall, it’s more like a mini city in itself. The mall has theatres, food courts, the Underwater Zoo, Ski Dubai and a lot more to do besides shopping. But, since we’re here for shopping let’s talk about that. Like we said, you’ll find over 1500 shops each offering mouth-watering discounts and something unique that’ll make you want to step in.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">It’s safe to say that a complete tour of the Dubai Mall during the Dubai Shopping Festival would mean exhausting the shopping budget completely. The place has everything from Clothes to cosmetics, apparels, luggage, home decor, grooming, electronics etc. If you don’t want to spend much time travelling around, looking for places to shop, the Dubai Mall is the place for you. With&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages</a>&nbsp;from ineedtrip, you can not only shop your pockets out, you will also get to explore the nearby attractions like the Dubai fountain, Burj Khalifa and more. Visiting the Dubai Mall is anyway one of the must-do activities in Dubai, so shopping or no shopping, you have to go here.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>The Souks</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Ahh! The best place to experience the culture of Dubai and testing your bargaining skills. There are four souks in Dubai, namely the Gold Souk, Textile Souk, Perfume Souk and the Spice Souk, each offering different luxury. Although the Souks are always bustling with amazing fragrance and lively atmosphere, the shopping experience goes to the next level during the Dubai Shopping Festival. Every shop, vendor in all the four souks puts a discount on his offerings, the place is lit up nicely and you’ll hear vendors calling you out. There’s a fireshow during the weekends in the evenings.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The Souks are known for the variety and quality of items and with the DSF, all of these go on huge discounts. The Gold Souk, is the most famous amongst the four souks, here you’ll find a huge variety of gold, silver, imitation jewellery and gemstones.</p>\r\n\r\n<p style=\"text-align: justify;\">The Perfume souk as the name speaks, will offer you fragrances that you’d want to put on every day. The variety of Rose, Sandal, Lily and other ‘itras’ sold here during the DSF have gained immense popularity. The spice souk is for those who like cooking and dry fruits (a weird combo, we know), during the DSF, the vendors put up a display of the colourful spices they offer and the streets are filled with an enchanting aroma.The textile souk, without a doubt attracts the most number of tourists, everything from hand made textiles to machine-made clothes including Kashmiri, Pashmina, Silk, Cotton, Wool go on sale during the DSF.&nbsp;The Souks are the best place to shop once you’re done with branded shopping at the Dubai Mall. Visiting the souks is also one of the top activities in Dubai for tourists.Need help in planning a trip to Dubai? Read our blog on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\">how to plan the perfect Dubai trip from India.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Some other places where you can shop during the Dubai Shopping Festival are:</strong></p>\r\n\r\n<ol>\r\n	<li style=\"text-align: justify;\">the Ibn Battuta Mall&nbsp;</li>\r\n	<li style=\"text-align: justify;\">The Global Village</li>\r\n	<li style=\"text-align: justify;\">Al Rigga Street</li>\r\n	<li style=\"text-align: justify;\">Al Fahidi For</li>\r\n	<li style=\"text-align: justify;\">Promenade at Dubai Festival City&nbsp;</li>\r\n	<li style=\"text-align: justify;\">DSF Desert Camp</li>\r\n	<li style=\"text-align: justify;\">Al Seef Street</li>\r\n	<li style=\"text-align: justify;\">Mall of the Emirates</li>\r\n	<li style=\"text-align: justify;\">Deira City Centre</li>\r\n	<li style=\"text-align: justify;\">Festival Waterfront Centre</li>\r\n	<li style=\"text-align: justify;\">Dragon Mart and more.&nbsp;</li>\r\n</ol>\r\n\r\n<p style=\"text-align: justify;\"><strong>What To Shop</strong></p>\r\n\r\n<p style=\"text-align: justify;\">We get it, when everything’s on discount it’s hard to decide what to buy. The discounts during the Dubai Shopping Festival are so alluring that you’ll feel like buying everything you see. Here are a few things you can buy during the fest,&nbsp; make a list or just set a budget.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Apparel</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The first and foremost thing that comes to our mind when we hear “shopping” is clothes. So, apparel should be the first thing on your shopping list. You’ll get brands like Hermes, Versace, Prada, Armani, Ralph Lauren and every brand you could dream of. The best part is that you’ll get a huge variety from each brand and since apparels are the most sought after items, they are offered with up to 90% discount.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Jewellery</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Gold is the most sought after item in Dubai, when jewellery is offered duty free, why don’t you fancy yourself with a designer bracelet or locket or maybe something for your partner. Careful, the lucrative prices will make you want to purchase more than the customs limit, don’t fall in that trap.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Gadgets</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Apple, Blackberry, Virtu, Dell, Sony and all other big brands make huge sales during the Dubai Shopping Festival, thanks to the duty free option. You can buy anything from smartphones, laptops, hard drives, headphones and more, so it’s time to update your tech stock.Other items like leather bags, cosmetics, home decor are also sold at decent prices too.Shopping is one thing and sightseeing is another, you can read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">top 10 things to do in Dubai</a>&nbsp;if you want your trip to be full of fun.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Conclusion</strong></p>\r\n\r\n<p style=\"text-align: justify;\">So, this was your guide to the Dubai shopping festival. Ineedtrip’s Dubai holiday packages will cover your airfare, hotel, sightseeing, breakfast and a lot more. So that you can focus on shopping while we handle all your booking and travel stress. Here’s something more, all our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a>&nbsp;are on huge discounts. So book your packages now to save more money for shopping in Dubai.</p>',NULL,'2021-03-17 13:59:27','2021-03-17 13:59:27',NULL,1,'',0,0,'Dubai Shopping Festival, Shopping in Dubai, Dubai Shopping','If ultra-luxurious lifestyle, sky high buildings, weren’t enough, here’s one more reason for you to visit Dubai - The Dubai Shopping Festival.','Your purchasing guide at the Dubai Shopping Festival','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(29,'How To Make the Perfect Dubai Trip Plan From India | ineedtrip','how-to-make-the-perfect-dubai-trip-plan-from-india-ineedtrip','1621511839_blog.webp','1640939712.jpg',NULL,'Aniket Agarwal','2021-04-27',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Dubai’s ultra-luxurious lifestyle and mind-boggling tourist sites attract all sets of tourists all over the globe. Dubai has unique things to offer to family, friends, and even couples (not a popular opinion we know), which makes it a popular holiday and honeymoon destination. Although Dubai has gained immense popularity as a business hub, man-made wonders like the Burj Khalifa, Palm Jumeirah, Dubai Mall have helped it become a tourist hotspot since the past decade.&nbsp; There’s just so much to do in Dubai that you’ll find yourself in a fix if you don’t make a definite&nbsp;Dubai Trip Plan. So, let’s give you a short overview of how you can plan the trip and enjoy stressfully by sticking to it. We’ll also help you with some of the best Dubai Holiday packages at the end of this blog.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Choosing the time of the visit and managing pre-bookings</strong></p>\r\n\r\n<p style=\"text-align: justify; \">To make a perfect&nbsp;Dubai Trip Plan, it is imperative to choose the right time to travel. The first thing to account for is Dubai’s weather. Being located in the Sahara, Dubai has a warm-hot temperature year around. October to May is the winter season and temperature comes down to the mid-20s, so weather-wise it’s the perfect time. The Global Village is also set up during this time of the year itself and that’s an attraction you wouldn’t want to miss. Besides the Global Village, the Dubai shopping festival also takes place during January and February. At the Dubai shopping festival you can get up to 70% discounts on global brands, so one more reason to visit in winter. While traveling around the offseason can turn out to be pocket friendly but you’ll have to compromise on the overall trip experience.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Now coming to the part of the booking, anyone who has an idea of international travel would suggest pre-booking flights. If you book about 3 months before your date of travel, you can save a decent amount of money. Once you’re done with the flights, you’ll have to look for hotel booking and post that VISA management. Is all this sounding hectic and dull? We suggest a better option. You can head over to ineedtrip’s&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages</a>&nbsp;section where we’ve covered airfare, hotels, Visa, and a lot more in a single package. If you compare the cost of inclusions individually, the price of our Dubai packages will make your jaw drop. We’ll handle all your bookings to make sure you can enjoy the trip stress-free and focus on sightseeing and enjoying.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dubai Trip Plan for an exhilarating sightseeing experience</strong></p>\r\n\r\n<p style=\"text-align: justify;\">It might sound easy, “we can go to the Burj Khalifa, the mall and the archipelago of Palm Jumeirah that’s it”, but what after you’re done with all these? To help you have the complete Dubai experience and not miss out on any part of sightseeing we’ve created a 4 day Dubai trip plan for you. You can reduce or extend the number of days and give more time to these activities in Dubai or add some more activities from our list of&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">10 best things to do in Dubai.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Planning to visit Dubai Mall, Burj Khalifa, and Dubai Fountain</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Ideally, people visit Burj Khalifa on their very first day of Sightseeing in Dubai. It doesn’t matter which day you pick from your itinerary to witness the magnificent skyline of Dubai, suggest make sure you visit the Dubai Mall on the same day. The Dubai Mall is in close vicinity with the Burj Khalifa. We suggest that you visit the Burj Khalifa first, go on the 124th floor, be mesmerized by the views, click pictures, and head over to the Dubai Mall. Once you’ve entered the world’s second-largest mall, you can start by having lunch at the food court and then go on a shopping spree. With over 1200 shops for your delight, you can be as picky as you want. Do visit the Underwater Zoo and go skiing at Ski Dubai in Dubai Mall, both of them are prime attractions of Dubai.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">All of this will tire you down and by the time you’re free, it’ll be past 7, the perfect time to visit the Dubai Fountain. In the 5 minute show, water dances on the rhythm of music and lights enhance the beauty of the site. This site will take all the fatigue away and you can head over for dinner to end a wonderful day.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Palm Jumeirah, Beach and Souks</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If you have been amazed by the archipelago of the Palm Jumeirah, here’s the perfect plan. Head out to the islands by taking the metro (you’ll get to see Dubai’s skyline too). Explore the beauty of the islands and then head on to the Jumeirah beach. Go for a swim, lay down for a sunbath, or just play around the white sand and deep blue waters. After changing, head out to the Dubai creek where all the trade-in Dubai happens. The Gold Souk in Dubai is one of the most visited places for shopping. The whole place is filled with multiple shops that offer diverse gold jewelry, ornaments, and more. The other souks are famous for perfumes and textiles, this is the perfect place to explore the culture of Dubai.&nbsp;Want to know about how and what to shop at the souks? Read our guide on&nbsp;<a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">shopping in Dubai.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Adventure sports and Dhow cruise Dinner</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Your Dubai trip plan will be incomplete without adventure. So, here’s the best way to go about some thrill. Take out a day just to have fun, preferably the last day, once you’re done with all the sightseeing. Dubai offers a lot for adrenaline junkies, and skydiving in Dubai is one of the most popular adventure sports. Start in the morning with skydiving, if you’re not up for it, hit the Jumeirah Beach straight away. Flyboarding, parasailing, banana boat, jet ski are some of the sports that you can try out at the beach. Once you’re done with all the sports and have satisfied the hunger for the thrill, time to visit Dubai Marina.&nbsp;At the Dubai Marina, get bookings for a Dhow cruise dinner which starts at 6 PM. The Dhow cruise is a locally made cruise of wood. It’ll take you through the Dubai Creek, while you enjoy the dinner with your friends and family. You can read more about the must-do activities in Dubai in our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">things to do in Dubai.</a></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Desert Safari</strong></p>\r\n\r\n<p style=\"text-align: justify;\">On one of the days, you can plan for a desert safari in the Sahara. When you book a package from ineedtrip, we will take care of all your arrangements. Your tour operator will let you know the timings, and pick you up for a thrilling day. We suggest you keep a day aside especially for desert safari. You’ll get to go dune bashing, camel riding, sandboarding, and a lot more in the Sahara. The safari usually begins in the evening around 4 and ends with a belly dance and delicious Lebanese dinner.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>What does ineedtrip offer?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If you follow the tips mentioned in this blog, you’ll have a trip of a lifetime. To help you make a Dubai trip plan without having to worry about bookings and sightseeing, we offer&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai tour packages</a>. We’ll take care of your airfare, hotel, breakfast, Burj Khalifa tour, desert safari, and even dhow cruise dinner. Check out our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai holiday packages&nbsp;</a>section to find blockbuster deals and discounts.&nbsp;</p>',NULL,'2021-03-17 14:01:12','2021-03-17 14:01:12',NULL,1,'',1,0,'Dubai Trip, Dubai Package, Book Holiday Package Dubai, Dubai Honeymoon Package.','There’s just so much to do in Dubai that you’ll find yourself in a fix if you don’t make a definite Dubai Trip Plan. So, here\'s a little help from our side.','How To Make the Perfect Dubai Trip Plan From India? Book Dubai Trip','[\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(30,'Add thrill to honeymoon try adventure sports in Dubai | ineedtrip','add-thrill-to-honeymoon-try-adventure-sports-in-dubai-ineedtrip','1617775860_blog.jpg','1640940694.jpg',NULL,'Aniket Agarwal','2020-04-20',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Beaches, sand, snow, luxury, Dubai has all one could wish for, while on a honeymoon. But you would have already looked at those “<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">must-do activites in Dubai</a>“, so why don’t we add some adventure to your itinerary. Why do you need adventures on your honeymoon? Until and unless you create memories that you can laugh about in a distant time in the future, it won’t be a “fun” honeymoon. Imagine telling your kids about how scared both of you were while trying ‘skydiving in Dubai’, or while jumping off Burj Khalifa, wouldn’t that hit you with nostalgia? So,&nbsp;let’s have a look at some of the&nbsp;best adventure sports in Dubai, that will keep you off your feet (literally) and keep your adrenaline rushing. Once we’re done with that, we’ll help you with the best&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a>&nbsp;for you.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Burj Khalifa Base Jump</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If viewing Dubai’s skyline from 100 floors above the ground, behind glass is too mainstream for you, why don’t you see it without the glass? Yes, you’re in for an adventure after all. Jump off from the top of Burj Khalifa and witness the stupendous skyline of Dubai while free falling towards the ground. The courage that you’ll have to gather before making the jump is incomparable. This is the first activity in Dubai that you should enroll in and you can do it on the same day of your Burj Khalifa tour with&nbsp;ineedtrip.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Skydiving Over Palm Jumeirah</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Join the league if you’ve ever drooled over the architectural beauty of Palm Jumeirah. This artificial island is designed so magnificently that exploring it has become a popular tourist activity in Dubai. If witnessing the exoticness by foot wasn’t enough, you can take a top view when you skydive over Palm Jumeirah. Imagine jumping out of a plane 15000 ft above the ground, the wind gushing past you and everything looking like a mini lego land. All those dreams where you saw yourself freefalling will come true, except the fact that you’ll be enjoying this particular freefall. As you get closer to the magnificent islands, you will wonder about the symmetric design and fall in love with it.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Shark Diving in Dubai Mall</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Scuba Diving is too mainstream, isn’t it? Let’s try shark diving then, it’s as scary as it sounds. If you and your partner love extreme adventure, then Shark diving is the perfect sport for you. Don’t worry, we won’t ask you to dive in the middle of the ocean. In the Dubai Mall at the underwater zoo, you can jump in the 10 million litre water and come face to face with the earth’s deadliest predator.&nbsp;You’ll have to spend around 650 AED to explore the exotic marine life and come close to the tiger sharks. You’ll be doing all of this under expert supervision, but even they can’t guarantee a close encounter with the sharks.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Flyboarding</strong></p>\r\n\r\n<p style=\"text-align: justify;\">It doesn’t look that difficult, but once you get on that board, you’ll know that reality is totally different. Flyboarding is our personal favorite because you can literally have the feel of flying over water. The speed of water will be over 100 kph and you’ll be flying about 15-20 feet above the ground. With proper balancing, you can imagine yourself flying around in IRON MAN’s suit. Careful though, you might fall in the water at a very fast speed if you’re unable to maintain the balancing as told by the instructor.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Dune Bashing</strong></p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Visiting Dubai and not paying the Sahara a visit? That would be unjust. Any blog about adventure sports in Dubai would be incomplete without Dune Bashing. If you’ve always wanted to ride a Quad Bike or drive around the sand in a SUV as shown in the movies, this is for you. You can sit behind the wheels of a luxury SUV and drive down those dunes like in the FAST &amp; FURIOUS movies. The movement will make your stomach churn and might cause you dizziness. But if you like that frizzly feeling in your stomach, you wouldn’t want to stop driving around.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Once you’re done with all that adventure, you can take a camel ride in the evening to relax and witness the marvelous sunset over the shifting dunes.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">So, to add some thrill to your honeymoon and get past the boring itinerary, this was our blog on the best adventure sports in Dubai. If you want to do all this at the cheapest price possible, ineedtrip’s&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai packages</a>&nbsp;are made for you. With our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai honeymoon packages</a>&nbsp;and&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages</a>, you’ll get the best deals on hotels, and local sightseeing. We have some more surprises waiting for you, why don’t you have a look here.&nbsp;</p>',NULL,'2021-03-17 14:03:21','2021-03-17 14:03:21',NULL,1,'Dubai',0,0,'Adventure Sports in Dubai, Dubai Package, Holiday Package Dubai, Honeymoon Package Dubai.','Why don’t we add some adventure to your honeymoon itinerary? Let’s have a look at some of the best adventure sports in Dubai, that will keep you enthralled.','Add Thrill to Honeymoon try Adventure Sports in Dubai  | Dubai Honeymoon','[\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"22434, 22702, 24614, 22909, 22820, 24534, 22707, 24480\"]}'),(31,'DUBAI Top 10 Things To Do In Dubai For Couples - Ineedtrip','dubai-top-10-things-to-do-in-dubai-for-couples-ineedtrip','1617775577_blog.jpg','1645695612.jpg',NULL,'Aniket Agarwal','2020-04-14',NULL,NULL,NULL,'<p>If there&rsquo;s one city that offers luxury for all and is truly an all-in-one travel destination, it&rsquo;s Dubai. With an exquisite skyline, alluring beaches, and an ultra-modern lifestyle, Dubai is the &lsquo;Kohinoor&rsquo; of the Sahara desert. The reason for its immense popularity among honeymooners is because Dubai offers the perfect combo of water, sand, and snow. How? You can go for a relaxing swim at the Jumeirah beach, go for dune bashing in the Sahara and play with snowballs at Ski Dubai.&nbsp;In this blog, we&rsquo;ll tell you the top&nbsp;<strong>10 things to do in Dubai on your honeymoon trip</strong>. If you plan nicely, you can do all these things within a five day trip to the Emirate city. We&rsquo;re sure after reading this blog, you would want to plan your trip asap. To ensure a great trip&nbsp;<strong>ineedtrip</strong>&nbsp;has given links to exclusive&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\"><strong>Dubai honeymoon packages</strong></a>&nbsp;and&nbsp;<strong><a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Holiday Packages</a></strong>&nbsp;only for you.&nbsp;</p>\r\n\r\n<p>Let&rsquo;s begin!</p>\r\n\r\n<p><strong>Seeing Dubai from the top of Burj Khalifa</strong></p>\r\n\r\n<p>Burj Khalifa has to be at the top spot (pun intended), every tourist that visits Dubai has this activity in his/her itinerary. The spectacular skyline of Dubai from the 124th floor of Burj Khalifa will make you wonder how someone could build such a modern city in the middle of a desert. But how is it a couple activity? Imagine standing at the top of one of the tallest buildings in the world while looking down at the magnificent city with your partner, doesn&rsquo;t that excite you?&nbsp; Bonus: If either of you is scared of heights, you&rsquo;ll be holding each other very tightly, the moment you look down, you&rsquo;ll have goosebumps.&nbsp;One more thing, if you plan your honeymoon to Dubai with&nbsp;<strong>ineedtrip</strong>, you&rsquo;ll be able to get to Burj Khalifa free as it&rsquo;s included in all of the Dubai packages.&nbsp;</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Be Awestruck by Dubai&rsquo;s skyline, Get pictures, take the Burj Khalifa tour</p>\r\n\r\n<p><strong>How to reach:</strong>&nbsp;Is that even a question? Cab/Metro/Taxi, everything will take you there.</p>\r\n\r\n<p><strong>Skydiving over Palm Jumeirah</strong></p>\r\n\r\n<p>Heard about the human-made island of Dubai, the Palm Jumeirah? Why don&rsquo;t you take a top view of the splendid island before you go down to take the tour on foot? Skydiving in Dubai is considered to be one of the best adventure sports in the Emirates. And diving over the Jumeirah will be a once in a lifetime experience. If you&rsquo;re someone who loves adventure sports and skydiving has been one of your dream adventures, then this is the perfect place to strike it off from the bucket list. Do note that this is one of the must-must do activities in Dubai.</p>\r\n\r\n<p>After the dive, when you need some time to relax, you can either hit the Jumeirah beach or visit the aquaventure waterpark at Atlantis if you&rsquo;re looking for some more adventure.</p>\r\n\r\n<p><strong>Things to do</strong>: After the dive, take the Palm cruise tour, Aquaventure waterpark.&nbsp;</p>\r\n\r\n<p><strong>How to reach</strong>: Get to the Internet City or Nakheel metro station and take a cab from there or reach the Damac metro station and take the tram to Palm Jumeirah.</p>\r\n\r\n<p><strong>Playing with snow at Ski Dubai</strong>.</p>\r\n\r\n<p>We told you that Dubai offers sand, water, and snow all in one place, right? Here&rsquo;s your chance to a snowy getaway. Ski Dubai is much more than a skiing slope, it&rsquo;s home to 10s of exhilarating snow activities. It is one of the biggest snow parks in the world where you can try activities like skiing, zorbing, swimming with the penguins, and much more. Play in the snow, lie down to make butterflies or maybe make a snowman there are a lot of activities to do if you&rsquo;re not up for skiing. Here&rsquo;s the best part, remember bumping cars? You&rsquo;ll get to relive your childhood with a twist, at Ski Dubai, you can take the wheel at Ice Bumping cars and enjoy your heart out. This is one of the best activity in Dubai for people traveling with family.</p>\r\n\r\n<p>There, there, don&rsquo;t get all mushy over those childhood memories. Visiting Skii Dubai is one of the best things to do in Dubai for couples.</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Besides playing with the snow? Ice bumper cars, skiing, zorbing, zip-lining, pictures with penguins</p>\r\n\r\n<p><strong>How to reach</strong>: Take the metro till the Mall of Emirates station and then follow the signboards</p>\r\n\r\n<p><strong>Shopping at the world&rsquo;s biggest mall</strong></p>\r\n\r\n<p>The Dubai Mall is the biggest mall in the world. It&rsquo;s so vast that it&rsquo;ll take a week to explore each and every section. With over 1000 shops to buy from, the place is heaven for shopaholics. Even if you don&rsquo;t want to go shopping, there are a lot of things to do here, and a tour of Dubai Mall will leave you wondering about the crazy ideas architects come up with. Couples always visit &lsquo;Hysteria,&rsquo; a scary house built within the Dubai Mall to witness ultimate horror and experience what being haunted feels like.This place will truly test your bond, will you run from the ghosts or will you protect your partner and make sure they feel secure? Walk-in scared, holding hands and come out hugging and laughing at the scary traps.</p>\r\n\r\n<p><strong>Things to do</strong>: 4 out of 10 things in this blog are located here, so that&rsquo;ll be all</p>\r\n\r\n<p><strong>How to reach</strong>: Take the metro to the &ldquo;Dubai Mall&rsquo; station</p>\r\n\r\n<p><strong>Witnessing Earth&rsquo;s diverse Marine life at the Underwater Zoo</strong></p>\r\n\r\n<p>The underwater zoo and aquarium in Dubai require no introduction. With 10s of activities to do, this is the best place to witness the exotic marine life of Earth. You would see whales, tiger sharks, turtles and over 140 species of fishes here, your visit to this place will be full of awestruck moments and unbelievable sights. If that&rsquo;s not enough, you and your partner can go for shark diving and come face to face with the ultimate predator on Earth. You can go for Cage Snorkeling if you don&rsquo;t want to take the risk of getting mauled.</p>\r\n\r\n<p>You&rsquo;ll enter the 10 million liter tank in a cage wearing your snorkeling gear, you&rsquo;ll be as close to the sharks and other fishes as you would while diving, but since you&rsquo;ll be in a cage, it will be safer.</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Shark Feeding, Shark Diving, Cage Snorkeling&nbsp;</p>\r\n\r\n<p><strong>How to reach:</strong>&nbsp;Take the metro to the &ldquo;Dubai Mall&rsquo; station</p>\r\n\r\n<p><strong>Going for Sahara Safari and Dune Bashing</strong></p>\r\n\r\n<p>Besides the electrifying nightlife, luxurious hotels, and sky-touching buildings, Dubai offers an exquisite getaway to the Sahara.Desert chases are frequent in action and thriller movies, but what if you get to see and feel what the actors do while moving up and down the dunes in superfast SUVs. You can go for a hot balloon ride to have a top view of Dubai or maybe take a camel ride to explore the Sahara. With ineedtrip&rsquo;s Dubai honeymoon packages, you&rsquo;ll get to experience the thrill of dune bashing and desert safari for free.&nbsp;</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Dune bashing, Quad bike riding, Sandboarding, Camel Riding</p>\r\n\r\n<p><strong>How to reach</strong>: You don&rsquo;t have to worry about it, all of the Dubai packages at ineedtrip include desert safari</p>\r\n\r\n<p><strong>Trying watersports and swimming at Jumeirah Beach.</strong></p>\r\n\r\n<p>A beach, finally! Now that you&rsquo;ve had the feels of visiting Manali (at ski Dubai) and Jaisalmer (at Sahara safari), it&rsquo;s time to visit a beach place. The Jumeirah beach attracts a lot of crowds, thanks to its white sand and clear waters. You can go for a swim with your partner on the spotless beach and lay down on the beach to soak in the sun later. The place is perfect for a long evening stroll after a day full of water sports. Watersports! You have to try fly fishing, as weird as the name sounds you&rsquo;ll be strapped to a big E shaped inflatable tied to a speedboat. It&rsquo;s like parasailing, but the fun part is that unlike parasailing, you wouldn&rsquo;t know which direction the speedboat is headed, the excitement will keep you enthralled.</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Flyfishing, Flyboarding, Diving Parasailing, Wakeboarding and much more</p>\r\n\r\n<p><strong>How to reach</strong>: Take the metro up to Emirates Tower station and catch a taxi from there</p>\r\n\r\n<p><strong>Taking a tour of the Bollywood Park</strong></p>\r\n\r\n<p>Are you a Bollywood fan? Do you want to shoot some dacoits with Jai and Veeru? At Bollywood park, you&rsquo;ll get to see Salman Bhai (duplicate) beating the life out of goons to rescue his girlfriend. Take the ride to catch Don in a 3D tunnel or watch a spectacular dance at the set of MughaleAzam. If you ever felt like being a director, you can create your own trailer of the movie &ldquo;Zindagi Na Milegi Dobara&rdquo;. you can cast your partner as the lead of the story if you want.&nbsp;</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Take all the 3D, and 4D rides, Motiongate park, and Legoland are nearby</p>\r\n\r\n<p><strong>How to reach:</strong>&nbsp;Take the red line metro, get off at the last stop and take a taxi to Dubai Parks and Resorts</p>\r\n\r\n<p><strong>Experiencing the culture of over 100 countries at the Global Village</strong></p>\r\n\r\n<p>To visit the global village, you will have to travel to Dubai between October and April. If you plan your honeymoon during that time, the Global Village is the best place to visit in Dubai. You&rsquo;ll get to see and experience the culture of over 100 countries, their local dance, food, music, and much more. This particular place requires at least two days to be explored thoroughly. By visiting just Dubai, you&rsquo;ll be kind of traveling to 100 countries. When people ask, &ldquo;where did you go for the honeymoon?&rdquo;, you can say world tour.&nbsp;&nbsp;</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Attending Live concerts, trying local cuisines, shopping local art and visiting the circus</p>\r\n\r\n<p><strong>How to reach:</strong>&nbsp;Public buses, cab or taxi, there&rsquo;s no direct rail route</p>\r\n\r\n<p><strong>The Dubai Fountain</strong></p>\r\n\r\n<p>Have you watched the movie Ocean&rsquo;s Eleven? The Dubai Fountain is much bigger than the one shown in that movie. It is the best place to be after a long day of shopping at the Dubai Mall or Dubai Souks. Each show at the fountain lasts for 4-5 minutes, and there are multiple shows from 6 PM to 11 PM. There won&rsquo;t be any second when the music, the lights, and the rhythm of the water. The Dubai Fountain is entirely free. You can stay as long as you want and watch as many shows as you wish till 11 PM.</p>\r\n\r\n<p><strong>Things to do:</strong>&nbsp;Just enjoy the music and the light show</p>\r\n\r\n<p><strong>How to reach:</strong>&nbsp;You just have to get to the Dubai Mall as we mentioned above</p>\r\n\r\n<p>If you plan to visit around Jan-Feb, you can experience the Dubai Shopping Festival as well. If you want to know more about it, read our blog on a&nbsp;<a href=\"https://www.ineedtrip.com/your-purchasing-guide-at-the-dubai-shopping-festival/\">guide to shopping at the Dubai Shopping Festival.</a></p>\r\n\r\n<p><strong>Final Words</strong></p>\r\n\r\n<p>These are the top 10 activities for couples in Dubai. If you&rsquo;ve made up your mind to travel to Dubai and do all these activities, here&rsquo;s our&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">offer.</a></p>\r\n\r\n<p>Check out our Dubai honeymoon packages section to claim extraordinary discounts and get to customize your own package.</p>\r\n\r\n<p>With ineedtrip, you can relax and enjoy the honeymoon, while we take care of your hotel and travel arrangements. Our<a href=\"https://www.ineedtrip.com/dubai-packages/\">&nbsp;Dubai honeymoon packages</a>&nbsp;will take you on the tour of Burj Khalifa and get you to a thrilling desert safari. We&rsquo;ll also arrange a dinner on the dhow cruise to make your honeymoon more memorable.&nbsp;</p>\r\n\r\n<p>Let&rsquo;s go forward with customizing your&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">package.</a></p>',NULL,'2021-03-17 14:05:34','2021-03-17 14:05:34',NULL,1,'',0,0,'Things to do in Dubai for couples','If there’s one place that\'s an all-in-one travel destination, it’s Dubai. Here\'s ineedtrip\'s list of the top 10 things to do in Dubai for couples.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(32,'Dubai - One Of The Most Searched Tourist Destinations In The World','dubai-one-of-the-most-searched-tourist-destinations-in-the-world','1617713962_blog.jpg','1645695433.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>We would have loved to see your reaction when we told you Dubai had no zip codes till 2015. The city that is one of the most searched tourist destinations for holiday and honeymoon, that very city which hosts uncountable movie shoots, trade fairs, expos and much more DID NOT HAVE&nbsp;ADDRESSES UNTIL 2015.&nbsp;&nbsp;Sounds unbelievable right? It is true, Dubai had No addresses, zip codes and postal system until 2015.&nbsp;But then how would people deliver something?&rsquo;, well, the majority of directions would go like &ldquo;behind that black-colored building, the third house with a cruizer parked outside&rdquo;, which sounds a lot like our own country. The government finally launched a system called&nbsp;<strong>Makani</strong>, by which they assigned a 10 digit code to all buildings.</p>\r\n\r\n<p>Addresses or no addresses the fact is that Dubai was and is the best all-in-one holiday destination in the world.&nbsp;Why do people love Dubai so much, and how come it is one of the most searched tourist destinations?&nbsp;Dubai caters to all sorts of tourists, whether it&rsquo;s people looking for adventure, luxury, beaches or the desert for dune bashing or camel rides. There are a lot of must-do activities in Dubai and they can take a good amount of time of your trip.</p>\r\n\r\n<p><strong>What makes Dubai one of the most searched tourist destinations?</strong></p>\r\n\r\n<p>The cloud touching skyscrapers and the ultimate glimpse of luxury that Dubai offers, has led it to become one of the most search tourist destinations around the world. Dubai is globally known for its diverse beauty. The city truly offers an all-in-one experience in terms of tourist attractions. Some tourists visit the place just to see the extensive skyline. The Burj Khalifa, Burj Al Arab and the biggest man-made island in the world, the Palm Jumeirah are the pearls of Dubai.&nbsp;<em>We know your next question, &ldquo;but why should I visit the place?&rdquo;</em></p>\r\n\r\n<p>Why? Because you&rsquo;ll get a once in a lifetime experience of the class, beauty and authentic culture of the gulf. &ldquo;That&rsquo;s okay, but what else?&rdquo; The place which was once considered to be just a business destination now offers an exquisite experience to travelers around the world. If you love adventure, Dubai should definitely be on your bucket list. Imagine skydiving in Dubai and looking at the dazzling Palm Jumeirah from 15000 feet above the ground. Or go for dune bashing in the Sahara desert or maybe trying water sports at the Jumeirah beach.&nbsp;Before you start putting together a holiday plan to Dubai, just a gentle reminder that&nbsp;ineedtrip&nbsp;offers customized Dubai holiday packages. WITH CRAZIEST DEALS and UNMATCHABLE PRICE we make sure you experience every ounce of beauty that Dubai has to offer &amp; get the best Dubai Package out there.&nbsp;</p>\r\n\r\n<p>Watched &lsquo;Tom Cruise&rsquo;, climbing Burj Khalifa in the movie &lsquo;MI4&rsquo;? Why don&rsquo;t you take a tour of the hotel. Go to the top floor and have a look at the magnificent skyline of Dubai. (We&rsquo;ll get you there for free,&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">book now</a>).&nbsp;Or maybe go for that romantic dinner on a cruise that you have always dreamed about (ineedtrip covers this too). If you love shopping, go shop your pockets out at the world&rsquo;s largest mall.&nbsp;If you feel like reading more about these, read our blog on the<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">&nbsp;top 10 things to do in Dubai.</a></p>\r\n\r\n<p><strong>What&rsquo;s more?</strong></p>\r\n\r\n<p>You can see the world&rsquo;s biggest underwater aquarium and also go for a desert safari in Sahara and roll down those sand dunes. If you love snow, Dubai&rsquo;s got that covered too, you can go skiing (skills don&rsquo;t matter, just enjoy the ambiance *winks*) at &lsquo;Ski Dubai&rsquo; named as the world&rsquo;s best indoor ski place for 3 years in a row.&nbsp;Want someone to help you plan the perfect Dubai trip? Read our blog on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\">how to make the perfect Dubai trip plan from India</a>&nbsp;on your own!</p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p>Dubai offers a combo of calmness and thrill for its tourists. If you want to experience water, sand, and snow all in one place and also get to shop and eat at the world&rsquo;s finest malls and restaurants, Dubai&rsquo;s the place for you. It has so much to offer that even a month&rsquo;s visit doesn&rsquo;t guarantee that you visit each tourist location of the place. It might sound too overwhelming and costly but with honeymoon and holiday packages from ineedtrip, you will get all of this at crazy discounts. Just go ahead and check&nbsp;<a href=\"https://www.ineedtrip.com/dubai-packages/\">our prices and package inclusions</a>, we&rsquo;re sure you won&rsquo;t have to think twice before planning a trip to Dubai.&nbsp;&nbsp;</p>',NULL,'2021-03-17 14:07:28','2021-03-17 14:07:28',NULL,1,'',0,0,'most searched tourist destinations in the world.','Did you know Dubai had no addresses or zip codes 5 years backl? It\'s hard to believe for one of the most searched tourist destinations in the world.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(33,'Where are the world\'s so-called glowing beaches','where-are-the-world-s-so-called-glowing-beaches','1617713000_blog.jpg','1645691879.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>Like us, you might have seen those pictures of &lsquo;glowing beaches&rsquo; on the internet quite a few times now. If not, you can check them out within this blog. This post mentions some of the best beaches in the world where all you beach lovers can feel the cool breeze. Where you can listen to the relaxing sound of waves. The sparkling blue water right beneath your feet will be like a cherry on the top of a cake.&nbsp;&nbsp;Before we get to the good part, a little insight into what makes these beaches glow?&nbsp;</p>\r\n\r\n<p>So, what&rsquo;s the deal with these &lsquo;glowing beaches&rsquo;? How come the water glows, neon blue? We could say that there&rsquo;s some &lsquo;blue magic&rsquo; going on in the waters. But &lsquo;blue magic&rsquo; would be a catchy tag to the actual process called &lsquo;Bioluminescence.&rsquo; Bio&hellip;, what?&nbsp;As Shakespeare said, &lsquo;What&rsquo;s in a name?&rsquo;, we won&rsquo;t bother with the terminology here, let&rsquo;s get straight to the locations.</p>\r\n\r\n<h2><strong>Where are the world&#39;s so-called &#39;glowing beaches&#39;?</strong></h2>\r\n\r\n<p>Does this image look edited? IT&rsquo;S NOT!</p>\r\n\r\n<p>We know you can&rsquo;t hold the excitement to get a complete list of these beautiful beaches. We also know, that once you get the list, you&rsquo;ll plan a holiday trip to one of them.&nbsp;</p>\r\n\r\n<p>You ready? Here we go!&nbsp;</p>\r\n\r\n<p>So, there are more than 15 places around the world that are host to these magnificent bioluminescent beaches or &lsquo;glowing beaches&rsquo;. The list includes the likes of Japan, USA, Australia, New Zealand, and Puerto Rico among others. But these are no match to the two other destinations that we have described here.</p>\r\n\r\n<p>So before you plan a trip to any of these places, read below, we have SOMETHING SPECIAL for you. We at ineedtrip can plan a customized honeymoon or holiday tour package for you. We will take you to 2 of the most fantastic beach destinations around the world that are home to such bioluminescent beaches. Why only these 2? Because we Indians, dream about both these destinations (well, at least most of us do). And they would be incredibly budget-friendly when compared to others. You won&rsquo;t have to travel to the USA or New Zealand or other &lsquo;big&rsquo; (in terms of currency) countries and put a hole in your pocket to see that sight.&nbsp;</p>\r\n\r\n<p><strong>Reethi Beach, Maldives</strong></p>\r\n\r\n<h2><strong>Where are the world&#39;s so-called &#39;glowing beaches&#39;?</strong></h2>\r\n\r\n<p>Image Credits: https://rove.me/</p>\r\n\r\n<p>The Maldives, yes! Any list of the best beach destinations around the world will be incomplete if it doesn&rsquo;t have the Maldives on the list. With the white sand beaches, vibrant corals, clear waters, and some stunning treks to hike, Maldives is truly a wonderful place to visit for your honeymoon or holiday. &ldquo;Where is the glowing beach?&rdquo; you might ask, it is located on Fonimagoodhoo Island in the Maldives.&nbsp;</p>\r\n\r\n<p>Reethi Beach or the &lsquo; glowing beach&rsquo;, offers a truly mesmerizing sight. The beach is calm with white sand and turquoise blue water in the day and sparkling neon blue lights on no-moon nights. Already imagining yourself taking pictures? Book a customized holiday package to Maldives with ineedtrip and get amazing discounts! You can sit there and think about other such wonders of nature.</p>\r\n\r\n<p>Wish to know more about Maldives? Read our blog on the 5 Best Places to Visit in Maldives.</p>\r\n\r\n<p><strong>Padangbai Beach, Bali</strong></p>\r\n\r\n<p>Image Credits: https://www.thisiscolossal.com/</p>\r\n\r\n<p>It had to be here! Bali is a literal dream for all beach lovers and probably the best romantic getaway in the world. Bali is so beautiful that we have people traveling every year to the same place. Most of the photos of those jaw-dropping beaches that you see on social platforms are of beaches located in Bali.&nbsp; With turquoise-blue waters and beaches with diverse corals, this place is the gem of Indonesia.</p>\r\n\r\n<p>Padangbai beach, located in the Port City-Padangbai, is a bioluminescent beach and is home to a magnificent sight at night.&nbsp;But what&rsquo;s so good about this one? You can visit the glittering waters AT NIGHT on a boat. You can talk to the local fisherman out there, or take a night ferry to one of the close-by islands. Still not satisfied? You can even take a night dive at the site and immerse in the blue lights. When you come out, your diving gears will be glowing courtesy &lsquo;phytoplankton.&rsquo;&nbsp;Is Bali on the list of your must-visit international destinations? Well, you got one more reason to choose Bali as your next travel destination. We have got some amazing deals for you if you&rsquo;re planning to visit the place. If not, our customized holiday packages to Bali will definitely convince you.</p>\r\n\r\n<p>If you want to know more about things to do in Bali, read our blog on the 7 Best Places to Visit in Bali.</p>\r\n\r\n<p>Okay, so now you know where these &lsquo;glowing beaches&rsquo; are located. You also know which ones you should visit to keep the budget in check. And that SOMETHING SPECIAL we talked about earlier? We at ineedtrip have customized some amazing Bali and Honeymoon Packages for you. They are loaded with offers and incredible deals that you&rsquo;ll not find anywhere else. What are you waiting for?&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-17 20:48:19','2021-03-17 20:48:19',NULL,1,'',0,0,'Where are the world\'s so-called glowing beaches','Like us, you too might have seen those pictures of ‘glowing beaches\' on the internet quite a few times now, if not, check them out within this blog.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(34,'Best Travel Destination In The World With World\'s Third Weakest Currency','best-travel-destination-in-the-world-with-world-s-third-weakest-currency','1617712814_blog.jpg','1615996985.png',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>How surprised would you be, if we told you that out of all places, BALI has one of the weakest currencies in the world&rsquo;. The place that&rsquo;s on the bucket list of every beach lover. The place that is without a doubt the&nbsp;<strong>best travel destination</strong>&nbsp;in the world, has such cheap currency! Quite shocking right? Want to know another fact? 80% of Bali&rsquo;s economy is dependent on tourism. Yes, no kidding, most of its income is generated from hotels, sightseeing, and other activities of the tourism industry. So, let&rsquo;s discuss, what this means for you and how you can benefit from this currency difference. You&rsquo;ll also get the hacks to complete a&nbsp;Bali trip&nbsp;in the cheapest way possible with<strong>&nbsp;ineedtrip</strong>.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<h3><strong>How rich you&rsquo;ll feel in the world&rsquo;s best travel destination?</strong></h3>\r\n\r\n<p>Super rich. Ever wondered how the Americans feel when they visit India? You&rsquo;ll feel richer, as 1 Indian Rupee will get you 196 Indonesian Rupiah. This means if you take 10000 Rs along, you will have a whopping 19 lakh 60 thousand IDR. Okay, so that&rsquo;s about how rich you&rsquo;ll feel. But does that currency difference mean that you can travel around Bali with a few hundred rupees? Nope, sorry to break your heart, but since you&rsquo;re so rich there, you&rsquo;ll be paying hefty amounts too! How much? Let&rsquo;s have a look.</p>\r\n\r\n<h3><strong>Visit every attraction within a tight budget!</strong></h3>\r\n\r\n<p>Let&rsquo;s be honest, you have seen countless images of Bali and you haven&rsquo;t been able to stop yourself from drooling over those spectacular beaches. Do you want to visit those white-sandy beaches with lush greenery and dive into those turquoise blue waters to see the vibrant coral? Or maybe you also want to visit the cultural heritage and do some fun adventure sports, but you&rsquo;re worried about the budget. Well, here&rsquo;s good news,&nbsp;<strong>ineedtrip</strong>&nbsp;offers you the best holiday packages to Bali with the cheapest prices and an amazing itinerary.&nbsp;</p>\r\n\r\n<p>If you want to know more about the places and the budget first, let&rsquo;s go straight to it.</p>\r\n\r\n<p><strong>Kelingking Beach</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>You have probably seen this picture multiple times on Instagram or Facebook. This t-rex jaw shaped cliff is located at the Kelingking beach, which is one of the must-visit beaches in the world&rsquo;s best travel destination. Besides this view from the top, you can go down to the beach to dive in those big waves and experience the pristine white sand of the beach.&nbsp;</p>\r\n\r\n<p><strong>Mount Batur</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>You&rsquo;ll probably be wondering, why we have mentioned a mountain when there are so many beaches in Bali. Well, Mount Batur offers such mesmerizing sunrise that people trek to the top on their very first morning in Bali. Your Instagram stories of the Bali trip would be incomplete if you miss this one.</p>\r\n\r\n<p><strong>Sekumpul Waterfalls</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Sekumpul Waterfalls are the cluster of seven waterfalls hidden in a lush green forest. You will have to take a 1-hour ride to visit this hidden gem and make sure to pay for parking only at the central parking and get yourself a guide, to help you walk down the steep path.&nbsp;</p>\r\n\r\n<p>You can also visit other places like the Uluwatu temple or the Monkey Forest in Ubud. All the traveling and entry tickets to certain places will cost you around 1,000,000 IDR around Rs 5000. So, you&rsquo;ll be visiting almost every tourist attraction in Bali within Rs 5000, given that you rent a vehicle for 3-4 days which will cost you Rs 3000 at tops.</p>\r\n\r\n<p>Food for two will cost you maximum Rs 1500 (given you don&rsquo;t fancy yourself to some big restaurant or hotel) and other local travel can be done within Rs 5000. So if you plan a trip for 3 days, the complete trip cost including hotel should be around Rs 30000 per person (excluding flight cost).<br />\r\n<br />\r\nREAD:&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\">7 BEST PLACES TO VISIT IN BALI</a></p>\r\n\r\n<p>Now, that the budget is in line, the question is, do you want to enjoy the place, or keep checking your budget and making note of the expenses every minute. If you want your Bali trip to be adventurous, fun and stress-free, head on to<strong>&nbsp;ineedtrip</strong>&lsquo;s&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\"><strong>customized holiday</strong>&nbsp;and&nbsp;<strong>honeymoon packages</strong></a>&nbsp;section right now! You can pick from the available options or customize the whole package according to your needs. You won&rsquo;t get such cheap prices anywhere else, if you do, don&rsquo;t forget to match the itinerary!</p>\r\n\r\n<p><em>Till next time!</em></p>\r\n\r\n<p>&nbsp;</p>\r\n',NULL,'2021-03-17 21:33:05','2021-03-17 21:33:05',NULL,1,'',0,0,'Best Travel Destination In The World With World Third Weakest Currency','Bali is the best travel destination for exotic beaches, turquoise waters, vibrant corals and lush green forests for honeymooner\'s and holiday\'s','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(35,'7 Best Places To Visit in Bali For Honeymoon','7-best-places-to-visit-in-bali-for-honeymoon','1617711854_blog.jpg','1645690193.jpg',NULL,'Aniket Agarwal','2020-04-08',NULL,NULL,NULL,'<p style=\"text-align: justify; \">If you are looking for an exotic destination for the first trip with your partner, Bali is the place to hit. We’ll take you on a virtual tour with this blog on the&nbsp;best places to visit in Bali&nbsp;by ineedtrip. Within the 17000 islands of Indonesia, Bali is the most famous one, and it has every reason to be. With an abundance of glittering beaches and lush green forests, Bali offers an escapade like none other. Your honeymoon should be such that it creates lifelong memories of romance, adventure, and bonding. The exciting nightlife, picturesque attractions, and delicious food that Bali offers are unmatchable by any other beach destination.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify; \">Bali attracts thousands of tourists every year, and even after that, there is no disturbance of peace and privacy. With beaches so silent where you can sit and listen to waves crashing or to beaches where you can experience electrifying parties, Bali is truly a paradise for couples and beach lovers. If you are having any second thoughts about<strong>&nbsp;</strong>Bali as a honeymoon destination, this blog will change your mind. And you’ll get a chance to choose from the most exclusive<strong>&nbsp;</strong>Bali honeymoon packages&nbsp;by&nbsp;ineedtrip.&nbsp;</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>The Best Time to Visit Bali</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Bali is a happening place year-round, but you would want to go at a time where you can enjoy the real beauty and exquisiteness of Bali.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Weather Wise</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Since it’s close to the equator, the place has a tropical climate, and only two main seasons, the rainy season and the dry season. So, the ideal time to visit the site is between March and September, it rains in the other months, and you won’t be able to enjoy the beaches (what’s Bali without those?). The weather around these months is warm with less humidity, and it’s best to go for activities like Scuba diving and snorkeling.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Crowd Wise</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Need not remind you, this will be a honeymoon trip, so you’ll be looking forward to visiting at a time when the place is less crowded and has pleasant weather. Bali is flooded with tourists in July and August and the holidays, including Easter and Christmas. So, if you want cheap hotels and beaches with fewer crowds, you should plan a trip between March-June or September.</p>\r\n\r\n<p style=\"text-align: justify;\">If you want to check some pre-designed packages, keeping in mind both the crowd and weather, explore our <b><a href=\"https://www.ineedtrip.com/tour-destination/bali/\">honeymoon packages to Bali</a></b>.</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>How many days should you be staying to visit these 7 best places for couples in Bali?</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Your honeymoon trip ideally should consist of at least five days. By five days, we mean days of actual stay (excluding travel time). For a place like Bali, even one month isn’t enough; you will feel that your trip ended before even starting.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Bali has so much to offer that one trip isn’t enough, still, with a lot of effort and reviews from customers, we have managed to pin down the seven best places to visit in Bali for honeymoon. To visit these places, you need to plan a stay of at least 4 days in Bali, where you’ll be exploring some of them in a single day and allotting a full day to the others. Keep in mind that this is the shortest time that you’ll have to stay in Bali to get around these places. If you have more time in your hand, we would recommend a stay of 7-8 days.&nbsp;</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>How much money would you need to get around these best places to visit in Bali for your honeymoon?</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">The budget totally depends on your choice of lifestyle in Bali. Since the currency of Indonesia is one of the weakest, you’ll feel super-rich while exchanging it for the rupee, but once you get there, you’ll understand that the prices have been adjusted according to the currency. Most of the places that we have mentioned are free to enter and explore, so you’ll only be spending money to get to these places.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">The glorious Nusa Islands and the Gili Islands are a bit far from Bali, so you’ll be taking speed boats to get there, and you’ll also be taking a guide to go hiking Mount Batur. And there’s also the fact that you’re on a honeymoon, so you’ll want to keep your partner as comfortable as you can and probably wouldn’t want to be frugal on your very first trip as a married couple.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">A total of Rs 25000 per person will get you on and off both the islands, a trek to Mount Batur with a guide, and local travel to other destinations.&nbsp;</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Mount Batur</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">A mountain as the first place to visit on a beach destination? Bali, has many surprises to offer and this is one of those, Mount Batur is not just a mountain, it’s an active Volcano. The place is famous for its breathtaking sunrise, and people feel rejuvenated once they reach the top. If you want to test your strengths and want to start your trip with tranquility, Mount Batur should be the first place you visit on your&nbsp;honeymoon to Bali.<strong>&nbsp;</strong>The view will be so pleasing that you’ll want to hold your partner and hope that the moment never ends. After the sunrise, you can wander around the crater of the Volcano, feed some monkeys, and come down to take a bath in the hot springs. (Ask your driver to take you there).</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Nearby things to do</strong>: Wander around the Volcano Crater, Hot Springs</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong>&nbsp;You will have to take a bus or book a taxi around 2 AM, to drop you off at the parking point of Mount Batur. You will then hike for 1.5-2 hours to reach the top before sunrise.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to carry:</strong>&nbsp;Courage<strong>,&nbsp;</strong>Flashlight, Hiking Shoes, Rain Jacket, Snacks</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Nusa Islands</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Finally, a beach destination, this would have excited you, right? The picture that you see above is of the famous t-rex cliff that attracts millions of tourists. The place in the picture is the Kelingking beach located on the Nusa Penida, one of the three Nusa Islands. You’ll find this place in everyone’s list of&nbsp;<em>best places to visit in Bali for a honeymoon</em>. Nusa Islands are famous for the crystal clear water and the white sandy beaches.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">They say that the sand is so white that it sparkles (metaphor obviously). There are caves down at this beach, where you can sit to get some shade or eat your snacks. You won’t find it too crowded, as the walk down to the beach is on a steep pathway, but it’s worth the risk. The less crowded beaches, turquoise blue waters, and the serene environment make Nusa Islands the perfect place for couples to spend their day time. Ineedtrip also recommends that you try snorkeling here as these islands are hotspots for snorkeling with&nbsp;<em>Manta Rays.</em>&nbsp;Here are the&nbsp;<a href=\"https://www.ineedtrip.com/top-7-things-to-do-in-nusa-penida-for-couples/\">Top 7 things to do in Nusa Penida&nbsp;</a>if you feel like exploring the island.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:&nbsp;</strong>Kelingking viewpoint and Beach, Snorkeling, Crystal Bay, Devil’s Tears</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:&nbsp;</strong>Speed boats or local boats from ‘Sanur’ in Bali. Journey time 1-2 hours</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Uluwatu Temple Cliff</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">The Uluwatu Temple offers a mixed feeling of blood-rush and calmness altogether. The temple’s divineness will soothe your mind while the sound of waves crashing against the cliff at the bottom will give you goosebumps. As you can see in the picture, the temple is located at the edge of a 70 m high cliff, and the view from the edge is worth dying for (figuratively). A forest surrounds the path to the temple, and tens of monkeys will greet you on your way to the cliff.&nbsp;You can stand hand-in-hand and look down at the blue waves striking the naturally crafted boulders and imagine a beautiful future that lies ahead for both of you. You can also go to Uluwatu Beach to surf (if you know how to), or you can just stay here till the evening to see the sun setting down the peninsula.&nbsp;<br></p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Nearby things to do:</strong>&nbsp;Visit the Uluwatu Temple and cliff, catch the sunset Single fin beach.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:&nbsp;</strong>There is no public transport to get here, so you’ll have to book a cab.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to carry:&nbsp;</strong>Excitement<strong>&nbsp;and&nbsp;</strong>Beachwear, if you plan to swim.</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Gili Islands</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Gili Islands have the clearest waters among all the nearby islands in Bali. The water has a unique greenish-blue tint, and you can clearly see the sea bed below your feet. There are a lot of activities for you to explore as a couple, like getting on to water swings, capturing sunsets, or going for scuba diving. Wait, did we tell you that Gili Islands offer the best scuba diving experience? Once you dive underwater, you will witness strategically placed sculptures that are now home to vibrant marine life. The picture above would be giving you an idea of the peace and tranquility that you’ll get at that place. And once you feel that you’ve had too much alone time, you can hit the night parties on these islands, we’ve heard they last till 6 in the morning.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do</strong>: Snorkeling at Gili Meno, Scuba Diving, Capturing Sunsets</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong>&nbsp;Take a speedboat from Bali (2 hours), or travel to Lombok on a ferry and then take a boat to Gili.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to carry:</strong>&nbsp;Enthusiasm and Beachwear</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Tegalalang Rice Terrace</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Look at the greenery in this picture, doesn’t that excite you? The Tegalalang rice fields in Ubud are the perfect place for a couple to hang out by nature and spend a day bonding. You can fly high on the naturally built swings or learn about Bali’s farming culture. The strategically casted stairs and the greenery around them are perfect for taking out that DSLR or to get some Instagram pictures. Besides visiting this heavenly place, you can also take an hour’s drive further to visit the&nbsp;Sekumpul Waterfalls<strong>,</strong> which are a cluster of seven waterfalls. Both of these places can be visited on the same day. And&nbsp;ineedtrip&nbsp;recommends that you take the Sekumpul waterfall trek and go all the way down where the refreshing waters meet the land. Take a bath, get some pictures around, and don’t forget to tag us on your Facebook and insta!&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Nearby things to do:&nbsp;</strong>Tour of Ubud Monkey Forest, Goa Gajah</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:&nbsp;</strong>It’s a central town, so either catch a bus or book a taxi.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to carry:</strong>&nbsp;As per the convenience</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Kuta</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">If you’re up for some fun and adventure, we suggest you visit waterbom Bali. It’s kind of an adventure park where you can go for some water rides and chill out in the pool. Kuta is perfect if you finally want to be a part of some crowd and enjoy the culture of Bali. You can visit Kuta Square to get some souvenirs and to buy some gifts for your partner. Kuta is a very happening place, so giving Kuta Beach a visit in the evening, you’ll find people lying out on bean bags under colorfully lit umbrellas. If you missed out partying on the Gili Islands, Kuta is the place for you. The atmosphere around Kuta is quite electrifying, and we bet you got some cool moves to show off to your partner.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:</strong>&nbsp;Visiting Kuta Beach, Kuta Square</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:&nbsp;</strong>10 km ride on Cab or bus from airport&nbsp;</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Lovina Beach</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">Okay, this might be an unpopular opinion, but Lovina Beach is one of the&nbsp;<strong><em>best places to visit in Bali on honeymoon.&nbsp;</em></strong>Unlike what Bali is most visited for (the white sandy beaches), Lovina beach is one of those unique beaches with black sand, thanks to the volcanic activity. And no black sand doesn’t mean the beach is dirty, the sand is just painted black by nature. You should visit this place before you go to the white sandy beaches, only then the contrast of the beaches in Bali will truly mesmerize you.&nbsp;Lovina Beach is perfect for a stroll down the shore with your partner during sunset or to go for dolphin spotting. Yessss, how can we forget that, if you’ve only seen dolphins doing tricks on the TV, you should get up early and get here around 6 am to see some live action. Hop on a boat that’ll take you in the middle of the ocean to watch dolphins jumping in-out of water, and doing tricks by your boat without any external influence.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:</strong>&nbsp;Dolphin Spotting, Water sports</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach</strong>: Cab or public transport from Kuta (2 hours drive)</p>\r\n\r\n<h3 style=\"text-align: justify;\"><strong>Conclusion</strong></h3>\r\n\r\n<p style=\"text-align: justify;\">With all these fantastic places to visit, it’s safe to say that Bali as a honeymoon destination is the best choice. You will create a lifetime of memories and create moments that you can talk over a hundred times. Bali is a place that’ll help you rediscover yourself and build a bond so strong that it challenges Fevicol. If you have made up your mind, here are some&nbsp;<a href=\"https://www.ineedtrip.com/bali-packages/\">Bali honeymoon packages</a>&nbsp;by Ineedtrip that ensure the best prices and top-notch itinerary.</p>\r\n\r\n<p style=\"text-align: justify;\">That’s all, folks!</p>',NULL,'2021-03-17 21:48:23','2021-03-17 21:48:23',NULL,1,'',0,0,'Bali For Honeymoon, Bali Honeymoon Package, Honeymoon Package, Bali Tour, Best Places to Visit in Bali, Visit Bali','If you are looking for an exotic destination for the first trip with your partner, Bali is waiting. Here\'s a list of the best places to visit in Bali','Best Places To Visit in Bali For Honeymoon | Bali Honeymoon Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(36,'5 best places to shop in Mauritius','5-best-places-to-shop-in-mauritius','1617711469_blog.jpg','1645690027.jpg',NULL,'Aniket Agarwal','2020-10-28',NULL,NULL,NULL,'<p>Mauritius the beautiful island country is a good place to shop as well. Once you are done having fun around the beaches and the&nbsp;<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">must-visit places in Mauaritus</a>&nbsp;you can relax and go for some shopping. Mauritius has many shopping malls starting from small street side shops to big outlets, you will find everything over here. You will get a lot of variety of things which will make your shopping experience more enjoyable. With this blog we will help you with the best places to shop in Mauritius.</p>\r\n\r\n<p><strong>CENTRE COMMERCIAL PHOENIX</strong></p>\r\n\r\n<p>It is one of the best shopping complexes in Mauritius. You will get a complete variety of eatables, clothing, electronics,footwears, accessories, statues, home decor and more. As you can see, this is one of those places where you will find everthing. There are near about 100 outlets where you will find top most international and local brands at very convinient prices. The Phoenix Mall should definitely be on your list of the best places to shop in Mauritius.</p>\r\n\r\n<p><strong>QUATRE BORNES MARKET</strong></p>\r\n\r\n<p>Quatre bornes market is best known for it&rsquo;s textiles industry. You can shop out a variety of vibrant apparels made up of premium textiles. Here you can also shop kitchen cloths and many home decors items with a huge variety and at very reasonable prices. This market is open 2 days in a week and is held every Sunday and Thursday, so can you plan to visit according to your schedule. It is really worth it to visit the place if you are a textile lover. It is quite crowded with locals and tourists as it is a weekly market. If you are looking for the best places to shop in Mauritius, it is worth it to shop from here!</p>\r\n\r\n<p><strong>FLACQ MARKET</strong></p>\r\n\r\n<p>Flazcq market is one of the oldest and reputed markets in Mauritius with a big open airy dome -like structure. The market is full of colorful stalls that add to the beauty of the ambience. It is a market with where you can find a lot of variety of clothes, apparels, accessories, footwears and many more items. Here you will find aroma of different spices filling up the place. Flacq market is a complete street market where you will find all varieties of whatever you can think of. This place is definitely one of the best places to shop in Mauritius.</p>\r\n\r\n<p><strong>MAHEBOURG MARKET</strong></p>\r\n\r\n<p>Mahebourg market is a market which is open for 1 day in a week and that is Monday. The Market is all about bargaining, so you should step out with your bargaining skills at the top. Here you will get all sought of varieties of Mauritius souvenirs, handicrafts, apparels, footwears, accessories and many more vibrant colourful things.<br />\r\nYou can find a variety of Indian and chinese electronics over there which is useful for home decors. Many tourists purchase silk cloths and textiles as you&rsquo;ll find a fabulous collection of silk clothing here.</p>\r\n\r\n<p><strong>BAGATELLE MALL</strong></p>\r\n\r\n<p>Bagatelle mall is one of the most convenient malls to shop in Mauritius as it has many retail outlets as well as high end brands so here you will find a huge variety of brands here. You can find a lot of eateries as well. There are about 155 brands outlets available in this mall so you will find a high variety of clothes, accessories, footwears etc. It is one of the most popular and easily reachable places in Mauritius. This place is best if you want to go for window shopping. No need to buy anything just enjoy the beauty of this place, have lunch at the cafes, try out small activities like chair massage, etc. and go back home (only if you don&rsquo;t want to shop).</p>\r\n\r\n<p>So now you have an idea of the best places to shop in Mauritius. You can either visit all these places or select a couple of them according to your itinerary. If you need help in planning your trip to Mauritius, check out our&nbsp;<a href=\"https://www.ineedtrip.com/mauritius-packages/\">packages</a>&nbsp;or contact us straight away. Hope your trip is full of enjoyment and fun activities.</p>',NULL,'2021-03-18 11:55:42','2021-03-18 11:55:42',NULL,1,'',0,0,'Some of the places to shop in Mauritius','Mauritius is a lively destination with mindblowing beaches, the place has many shopping hubs too. Here is the list of the best places to shop in Mauritius.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(37,'5 Best Restaurants In Mauritius ','5-best-restaurants-in-mauritius-','1617711116_blog.jpg','1645689466.jpg',NULL,'Aniket Agarwal','2020-10-27',NULL,NULL,NULL,'<p>Apart from the beautiful beaches, places, colorful corals, Mauritius has gained popularity for its traditional cuisines as well. Mauritius has plenty of amazing dining options that can make this place a food lover&rsquo;s heaven. The beautiful island offers a good mix of Indian, African, meditation, and French&nbsp;cuisines. Mauritius offers both, decent places to dine in with your partner and street food to treat hunger on the go.</p>\r\n\r\n<p>Like the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-things-to-do-in-maldives-for-honeymoon/\">Maldives</a>, you&rsquo;ll find a lot of restaurants using coconut oil to cook food (it tastes good). If you want to know more about the<a href=\"https://www.ineedtrip.com/5-must-try-dishes-in-mauritius/\">&nbsp;best food to try in Mauritius</a>, you can read our blog. But for now, we are going to name the 5 best restaurants in Mauritius to dine with your partner.</p>\r\n\r\n<p><strong>ESCALE CREOLE</strong></p>\r\n\r\n<p><strong>Escale Creole is a popular restaurant in Mauritius that serves the most amazing food and has a simple, raw ambiance. It&rsquo;s not one of those fancy restaurants, the restaurant-cafe has a lot of greenery and has that raw-Mauritius&nbsp;feel. Escale Creole is perfect for a decent lunch. The restaurant serves you the best Mauritian cuisines, is vegetarian friendly and you can find other international cuisines as well. They serve best with their wild deer salami, salted fish with cabbage, and sausage stew. This restaurant has a combo of mother-daughter duo highly involved in the kitchen. So, if you are planning to eat out in Mauritius, Escale Creole is one of the best restaurants in Mauritius.</strong></p>\r\n\r\n<p><strong>LE CHAMAREL RESTAURANT</strong></p>\r\n\r\n<p><strong>Le Chamarel as the name suggests is located in the Chamarel district that is home to the&nbsp;<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">Seven Colored Earth</a>&nbsp;as well. This restaurant has everything that one would want. Le Chamarel has an amazing ambiance with sparkling lagoons, bordered by dark green forests that are home to deers, monkeys and rare birds. The restaurant is also famous for its aromatic coffee that they make from their own plantation.</strong></p>\r\n\r\n<p><strong>Le charamel is best for a sunny al fresco lunch with stunning views. Although this restaurant is open for lunch every day, it is only open for dinner upon request (upon 50 people). It specializes in Mauritian, seafood, and some European dishes. As you can see in the picture, the cliff setting with a wide beach view, lightings, make it perfect for a romantic dinner.</strong></p>\r\n\r\n<p><strong>So if you are planning to have a romantic dinner with your loved one then le charmel is one of the best restaurants in Mauritius.</strong></p>\r\n\r\n<p><strong>LE FLAMBOYANT RESTAURANT</strong></p>\r\n\r\n<p><strong>Le flamboyant is famous for its unique ambiance. It is renowned as one of the most unique restaurants with an exclusive dining area in the middle of a pool. If you feel like dressing up and going on that special dinner that this can be one of the best choices. The restaurant is known for its French, Mauritian cuisines that are made by famous chefs. This is one of the great places to dine with your loved one, it has some special zest of vegetarian cuisine as well. So if you are looking for some good food with amazing views Le Flamboyant is one of the best restaurants in Mauritius.</strong></p>\r\n\r\n<p><strong>MON PLAiSIR RESTAURANT</strong></p>\r\n\r\n<p><strong>If you are looking out to have a glimpse of some old-world colonial charm through its design, this is the ideal restaurant for you. Mon Plaisir is one of the famous restaurants of a sugar beach resort with an open-air poolside theme. This is one of the amazing restaurants famous for buffet meals with Continental and Thematic Buffet with many more options. This beautiful restaurant will just take your heart away. It is just the perfect destination to dine out with your loved one.</strong></p>\r\n\r\n<p><strong>SAFRAN RESTAURANT</strong></p>\r\n\r\n<p><strong>Safran restaurant is one of the best restaurants famous for its Indian cuisine. So if you are looking for Indian pure veg restaurants in Mauritius this is the best option. Its interior is just amazingly designed in dome style with a wooden ceiling and their design is the major highlight of this place. It is the best place to dine out with your partner with the option of live cooking. Here you can find a lot of cuisines with delicious dishes.&nbsp;</strong></p>\r\n\r\n<p><strong>If you are looking for Mauritius honeymoon packages you can head on to our packages section.</strong></p>',NULL,'2021-03-18 12:04:00','2021-03-18 12:04:00',NULL,1,'',0,0,'Some of the restaurants to eat from in Mauritius','With this blog on the 5 best restaurants to visit in Mauritius we\'ll make your \'romantic dinner booking\' easy. Read and do leave your comments!','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(38,'5 Must Try Dishes In Mauritius For Couples','5-must-try-dishes-in-mauritius-for-couples','1617710423_blog.jpg','1645686133.jpg',NULL,'Aniket Agarwal','2020-10-21',NULL,NULL,NULL,'<p>Mauritius is a beautiful island country located in the Indian ocean. It&rsquo;s famous for its beaches, lagoons, and crystal clear blue waters. There are a lot of things that you can do besides swimming in the turquoise blue waters, which you can read about&nbsp;<a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\">here.</a>&nbsp;However, in this blog, we&rsquo;ll talk about the must-try dishes in Mauritius. Trust us, you don&rsquo;t just want to want to miss out on Mauritius&rsquo;s delicacies. You will find a large variety of food items in Mauritius.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Curries</strong></p>\r\n\r\n<p><strong>Curries are one of the most popular dishes in India and so it happens in Mauritius as well. No Indian would want to miss having a taste of curry in Mauritius. One of the most famous curries in Mauritius is Creole Curry, it has a sizzling flavor of Garlic, onion, turmeric, and the aroma of curry leaves. Curry in Mauritius is mostly served with bread and rice and you can also have spicy chutney with curry. There&rsquo;s no particular spot to try curry in Mauritius, you&rsquo;ll get a lot of variety all over the place. So who would not love to have some Indian taste in an outside country?&nbsp;</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>Sea Food</strong></p>\r\n\r\n<p><strong>How can you not have seafood when you&rsquo;re visiting an island like Mauritius? You can have delicious crab curry, coriander, chili fish, and fried squid in Mauritius. The perfect blend of fried, roasted seafood with salt gives a unique taste to the seafood in Mauritius. Where to try? Anywhere. Most shacks on the beaches, restaurants serve seafood in Mauritius. If you want to go for a budget-friendly option you can try the seafood at shacks and if you&rsquo;re up for a fancy dining experience visit a restaurant. However, the most amazing seafood you can try is in the streets of Mauritius. Seafood is definitely on the list of must try dishes in Mauritius.</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>Bol Renverse</strong></p>\r\n\r\n<p><strong>Any Biryani lovers out there? You&#39;ll love this dish, even if you don&rsquo;t like biryani, you must try this. (but who doesn&rsquo;t like biryani?). Bol Renverse is a type of biryani that has a fried egg, chicken, or seafood as per your preference with some fresh vegetables, spices, and of course boiled rice.&nbsp;The dish is prepared with fried eggs placed in a bowl, after that fried veggies with chicken are added to the bowl and at last the cooked rice is added and then the dish is served hot. You can find this dish in most of the restaurants as this is a signature dish of Mauritius and Bol Renverse would be present on every list of must try dishes in Mauritius.&nbsp;</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>Boulettes</strong></p>\r\n\r\n<p><strong>Boulettes is one most amazing dishes in Mauritius. The name is weird we admit and people often mistake it for roulette but it&rsquo;s not a gamble trust us. You might have tried a different version of this dish with a different name in India, but the exquisite taste of Mauritius will get you asking for recipe. When some dim sum is served with the tempting flavor of bouillon it is called Boulettes. Boulettes are made up of fresh meat, fish, pork, or some fresh vegetables so you will find a huge variety of Boulettes in Mauritius. This is the perfect dish for all and you must have it in Mauritius.</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>Coconut Cakes</strong></p>\r\n\r\n<p><strong>Time for some dessert!</strong></p>\r\n\r\n<p><strong>The people in Mauritius love coconuts and that&rsquo;s why you&rsquo;ll find coconut water, coconut chutney, coconut Cookies, &amp; amazing coconut cakes in Mauritius. Coconut cakes in Mauritius are made of fresh grated coconuts and sugar and are a delicious dessert. Tomato is another name given to the coconut cakes, but don&rsquo;t worry there&rsquo;s no connection to tomatoes. Do tell us how was it once you&rsquo;re back from the trip.</strong></p>\r\n\r\n<p><strong>After reading this blog, you will not find any difficulty what food to have in&nbsp; Mauritius. The sizzling food of Mauritius will make you fall in love with the place, besides the beaches of course, and you will love it for Sure. If you&rsquo;re looking for the cheapest holiday and honeymoon packages for Mauritius, head out to our&nbsp;<a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius packages</a>&nbsp;section. You&rsquo;ll find pre-designed packages and an option to customize your own package. We promise to be there with you for support 24&times;7.&nbsp;</strong></p>',NULL,'2021-03-18 12:09:15','2021-03-18 12:09:15',NULL,1,'',0,0,'Some dishes to try in Mauritius for couples','Mauritius, the dream destination for honeymooners, offers some mouth-watering dishes. Read this blog to know about the 5 must try dishes in Mauritius.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(39,'5 Best Beaches In Mauritius for Couples','5-best-beaches-in-mauritius-for-couples','1617708892_blog.jpg','1645685311.jpg',NULL,'Aniket Agarwal','2020-10-20',NULL,NULL,NULL,'<p>Mauritius is one of the best places in the world for people who love clear waters and tranquility. Surrounded by beautiful beaches and lagoons, Mauritius rejuvenates everyone with a different sense of tourism.&nbsp; The place will make you fall in love with its sunsets and sparkling beaches. Mauritius has many mindboggling sightseeing attractions including the<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">&nbsp;seven-colored earth</a>&nbsp;and the<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">&nbsp;underwater waterfall</a>. But, for now, we&rsquo;re going to talk about the 5 best beaches to visit in Mauritius for couples.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>ILE AUX CERFS BEACH</strong></p>\r\n\r\n<p><strong>Ile aux cerfs is one of the most amazing islands in Mauritius, where you can just spend your day trying out some amazing water activities. You can hang just relax under the sun and enjoy the peaceful environment. This beautiful beach has some small stalls which have some local stuff like jewelry made of pearls and you can have some local food items as well. If you are a water sporty person, looking out for snorkeling and scuba diving, this beach is perfect for you to spend some good time and try out some adventures.</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>TAMARIN BEACH -BLACK SAND BEACH</strong></p>\r\n\r\n<p><strong>Tamarin Beach is located in Tamarin village of Mauritius and it is said to be one of the most beautiful beaches in Mauritius surrounded by hills. It is also known as &ldquo;Surfer Beach&rdquo;. JIt is also known as the black river on the west coast. There are many famous surfing spots where you can try out professional surfing. You can enjoy the waves for surfing and sea bathing as well. Tamarin Beach is surely a peaceful beach with its natural beauty and it&rsquo;s one of the perfect beaches and best for the people who love nature.</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>GRAND BAY PUBLIC BEACH</strong></p>\r\n\r\n<p><strong>Grand Bay Public Beach is one of the most crowded and happening beaches in Mauritius located near Grand bay coastal village. It has sparkling blue water with wide lagoons. It is a fantastic tourist spot where you can find ample of activities to have fun. Here you can enjoy the fun of boating and catamaran activities. You must not miss it if you love to do some enthusiastic water activities. Here you will find a lot of eateries nearby the resort. It is an amazing beach to spend your day over and enjoy your time; perfect for honeymooners.&nbsp;</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>GRIS GRIS BEACH</strong></p>\r\n\r\n<p><strong>It is located in the southern part of Mauritius which has a special rock formation and beautifying greenery. You can have a lovely time over there or just have a simple walk and feel the freshness of Mauritius. It is an ideal spot for tourists just because of its natural beauty. This beach is just amazing to give you freshness and scenic beauty. This beach is perfect for people who love nature and want to have some refreshing environment.&nbsp;</strong></p>\r\n\r\n<p><strong>&nbsp;</strong></p>\r\n\r\n<p><strong>FLIC EN FLAC BEACH</strong></p>\r\n\r\n<p><strong>The Flic en Flac beach is one of the longest and most popular beaches in Mauritius. It has a lovely lagoon surrounded by coral reefs with lovely views and famous for sunset points. Flic En Flac beach is one of the best beaches in Mauritius beach for swimming and snorkeling. You can just sit and relax and have a peaceful time over there.&nbsp;</strong></p>\r\n\r\n<p><strong>By now we hope you know about the best beaches in Mauritius, there are of course many other beaches but we believe these are truly the best. If you want to go on a luxurious honeymoon to Mauritius without worrying about the budget, head on to our&nbsp;<a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius honeymoon packages</a>&nbsp;section. We&rsquo;ve got some blockbuster deals for you, if you like participating in travel contests do check out our&nbsp;<a href=\"https://www.instagram.com/i_need_trip/\">Instagram handle.&nbsp;</a></strong></p>',NULL,'2021-03-18 12:12:24','2021-03-18 12:12:24',NULL,1,'',0,0,'Some best beaches in Mauritius for couples','This blog will help you with the 5 Best beaches in Mauritius &amp; what to do there. We\'ll also tell you what makes these beaches the best beaches in Mauritius.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(40,'Best Places to Visit & Things To Do In Mauritius & Maldives After COVID19','best-places-to-visit-things-to-do-in-mauritius-maldives-after-covid19','1617706837_blog.jpg','1645684633.jpg',NULL,'Aniket Agarwal','2020-07-24',NULL,NULL,NULL,'<p>Planning a trip can be exciting and daunting at the same time, especially if you are planning your honeymoon. Honeymoon after Covid-19 is going to be momentous for you as well as your partner. Not only is it going to be the beginning of a new chapter in your individual lives, but it will also be a new chapter for the tourism industry after the pandemic.&nbsp;Since, you would want to visit places that are safe, less crowded, and are perfect for couples, planning your honeymoon to Mauritius or Maldives is the best option for you. These islands have a lot to offer, and you are going to cherish each and every moment.&nbsp;Mauritius and Maldives are filled with scenic beauties. The combination of blue-green and white is not only going to keep you refreshed but happy throughout the trip. So if you are wondering about the things to do in Mauritius or in Maldives, then take a look below. Here&rsquo;s a bonus: We&rsquo;ll also slip in details of the best&nbsp;<a href=\"https://www.ineedtrip.com/maldives-packages/\">honeymoon packages</a>&nbsp;offered by us for both these destinations.</p>\r\n\r\n<p><strong>Best places to visit &amp; things to do in Mauritius</strong></p>\r\n\r\n<p><strong>Le Morne Brabant</strong></p>\r\n\r\n<p>If you are looking for a place to spend some private time with each other, then Le Morne Brabant is the place for you. Le Morne is covered with mountain ranges that are spread over an area of about 12 hectares. Located in the southernmost area of the island, Le Morne Brabant is one of the most romantic regions of Mauritius. Here&rsquo;s the cherry on top! If you hike the Le Morne Mormont, you can get a glimpse of the world-famous &ldquo;Underwater Waterfall&rdquo;. Haven&rsquo;t heard of it? Read more about it in our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">Underwater Waterfall in Mauritius.</a></p>\r\n\r\n<p><strong>Bathe In Chamarel Waterfall</strong></p>\r\n\r\n<p>Formed by the St Denis river, the Chamarel waterfall is the natural pool of Mauritius. The sight is so pleasing that you are going to fall in love with the place instantly&mdash;there is a shallow pool at the bottom of the waterfall where couples can have a romantic time bathing in the heavenly waters. To reach the base of the waterfall, you will have to hike down for an hour or so, but it&rsquo;s totally worth it and the scene is pure bliss. Chamarel has one more beautiful sight, known as the Seven-Colored Earth, it&rsquo;s just as amazing as the name. Read more about the&nbsp;<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">Seven-Colored Earth, here.</a></p>\r\n\r\n<p><strong>Horse ride with your partner?</strong></p>\r\n\r\n<p>Mauritius is filled with beautiful and breath-taking scenic mountain ranges. The most popular thing for the tourists in these islets is horse riding. Take the best riding excursions and enjoy yourself with your partner as your bond grows stronger.&nbsp; By the end of the trip, you can have an intimate dinner with your better half.</p>\r\n\r\n<p><strong>Riambel Beach</strong></p>\r\n\r\n<p>One of the best beaches on the southern coast, Riambel Beach, is a place that is famous for its sunset. You can take long walks to explore the village since it is an isolated beach. It&rsquo;s still away from all the tourists and is unexploited. You can enjoy a good swim with your partner without any disturbance. Now that you are aware of the certain things that you can do with your partner in Mauritius, let us take a look at that romantic night out.</p>\r\n\r\n<p><strong>Romantic night with your partner</strong></p>\r\n\r\n<p>Located towards the northern part of the Grand Baie, Cap Malheureux, is the best place to spend a romantic evening with your partner. This beautiful place is surrounded by beach island, a little village that will add all the sweetness to your time. Sit with your partner and enjoy the sunset, maybe slip in a bottle of champagne to celebrate the future.</p>\r\n\r\n<p>We haven&rsquo;t mentioned some of the overcrowded but popular places if you want to read more about them, check out&nbsp;this&nbsp;<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">blog.&nbsp;</a>If Mauritius has excited you, have a look at the<a href=\"https://www.ineedtrip.com/mauritius-packages/\">&nbsp;best&nbsp;</a>honeymoon packages for Mauritius&nbsp;by ineedtrip.</p>\r\n\r\n<p><strong>Our top packages include:</strong></p>\r\n\r\n<p>6 Nights In a 4 Star Hotel</p>\r\n\r\n<p>Daily Breakfasts</p>\r\n\r\n<p>6 Dinners</p>\r\n\r\n<p>Full Day ile Aux Cerf tour</p>\r\n\r\n<p>Water Activities including Pedal Boats, Kayaks, Lasers, Glass bottom Boats etc.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Best places to visit &amp; things to do in Maldives:&nbsp;</strong></p>\r\n\r\n<p><strong>Diving:</strong></p>\r\n\r\n<p>One of the most exciting things to do in the Maldives is scuba diving with your partner. If you and your better half enjoy adventure sports, then a dive amidst the reefs and crystal clear water will be refreshing. Scuba diving is the best way to bond with your partner and deepen your connection. You can also opt for snorkeling and enjoy the view of all the colorful water life.</p>\r\n\r\n<p><strong>Island Hopping:</strong></p>\r\n\r\n<p>The Maldives is filled with beautiful islands that are oh so tempting. Moreover, Maldives has about 80 beautiful islands filled with luxurious resorts, and they are the best tourist spots. If you want to have some leisure time with your partner, then island hopping is the best option. You can enjoy paradise, hop from one view to another, and soak in the beauty of Maldives.&nbsp;&nbsp;</p>\r\n\r\n<p><strong>Romantic Massage: Pamper Yourselves</strong></p>\r\n\r\n<p>One of the best places in the Maldives for spending time with your partner is massage parlors. Opt for a couple&rsquo;s massage, and you are good to go.&nbsp; Enjoy the sandy beaches and indulge in a couple&rsquo;s massage, and both of you will have the best time of your life. This experience will not only refresh you but take away all the fatigue post all that adventure sport.</p>\r\n\r\n<p><strong>Underwater Snooze: Aquarium Restaurant</strong></p>\r\n\r\n<p>Ithaa Underwater Aquarium restaurant is yet another one of the best things in the Maldives. Plan a date with your loved one and enjoy your meal surrounded by the aquarium. The hotel also has the provision of transforming the space into a bedroom so that you can have a romantic time with your partner. The restaurant makes sure that the couple is served with champagne and breakfast in the morning.</p>\r\n\r\n<p><strong>Submarine Ride: Whale Submarine</strong></p>\r\n\r\n<p>Whale submarine is another adventurous way of spending time with your better half. All you have to do is the book for the whale submarine at your resort, and you are good to go. You will be able to see sharks, shipwrecks, corals, and a lot more while sitting in a submarine that looks like the biggest mammal on earth.</p>\r\n\r\n<p><strong>Bioluminescent Beach Maldives</strong></p>\r\n\r\n<p>If you are a nature lover and love to see nature&rsquo;s charm, then the Bioluminescent beach is the one for you. It&rsquo;s a science fiction meets fairyland kind of view. You and your partner will instantly fall in love with the place. This is the best thing to do in the Maldives if you are on a honeymoon.</p>\r\n\r\n<p><strong>Private Yacht</strong></p>\r\n\r\n<p>A private yacht although costly but will allow you to spend some alone time with your partner and let you enjoy the blue waters in each other&rsquo;s company. If you are looking for options that allow you to spend the maximum amount of time with your partner, then a private yacht would be the best thing to book.&nbsp;</p>\r\n\r\n<p><strong>Banana reef</strong></p>\r\n\r\n<p>The first dive site of Maldives, Banana Reef, is a place that is famous for its landscapes, overhangs, cliffs and also the underwater experience it provides. If you and your partner are adventurous and love to have a colorful water experience, then visiting Banana reef is a must. Use a reputable tour group, and you are good to go.</p>\r\n\r\n<p>These are a few recommendations that you can try out on your trip to Mauritius and Maldives if you want to read more about Maldives,&nbsp;visit our&nbsp;<a href=\"https://www.ineedtrip.com/5-best-places-to-visit-in-maldives-for-honeymoon/\">blog</a>.</p>\r\n\r\n<p>We&rsquo;re sorry! We missed out on mentioning the best places to shop in Maldives. Fret not, you can about them in our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-places-to-shop-in-maldives/\">5 best places to shop in Maldives.</a> We offer the best&nbsp;<a href=\"https://www.ineedtrip.com/maldives-packages/\">honeymoon packages</a>&nbsp;to both these destinations. We believe that a honeymoon is a once in a lifetime affair and we do everything to help you make it memorable. And in that quest, we offer complete customization of packages, blockbuster deals and extensive customer support. Check out our&nbsp;website&nbsp;for details.</p>\r\n\r\n<p>Honeymoons are a way for the couple to spend time with each other and get to know each other. Visiting a place that will help them in understanding the nuances of life and companionship is very important, and both countries mentioned above will help them do so. Spend time with each other, click loads of pictures, because these memories are going to stay with you forever.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 12:25:39','2021-03-18 12:25:39',NULL,1,'',0,0,'Some places and things to visit and do in Mauritius and Maldives','If you are wondering about the things to do in Mauritius or in Maldives, the combination of blue-green and white is going to keep you refreshed.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(41,'5 Safest and Best Honeymoon Destinations From India','5-safest-and-best-honeymoon-destinations-from-india','1621511807_blog.webp','1644499395.jpg',NULL,'Aniket Agarwal','2020-07-22',NULL,NULL,NULL,'<p>Weddings and honeymoons are things that are always in demand. Many people dream of getting married and spend most of their time thinking about marriage preparations. In that planning, honeymoon plays a big part. Booking the best romantic destination for &lsquo;the honeymoon is mandatory because this part of your journey should be perfect without any troubles. Safety will always be a priority post the COVID-19 crisis and people will be looking for destinations that are safe, less crowded, and clean. Now that you&rsquo;ve landed here, we believe, either you or someone close to you wants to know about the safest and best honeymoon destinations from India.&nbsp;</p>\r\n\r\n<p>In this blog by ineedtrip, we have handpicked five safest and best honeymoon destinations from India to make&nbsp;your trip pleasant and colorful. Moreover, at the end of the blog, we&rsquo;ll also help you with the links to our best packages for each of these destinations.</p>\r\n\r\n<p>Bali</p>\r\n\r\n<p>Mauritius</p>\r\n\r\n<p>Maldives</p>\r\n\r\n<p>Singapore</p>\r\n\r\n<p>Dubai</p>\r\n\r\n<p><strong>Bali&nbsp;</strong></p>\r\n\r\n<p>Bali is an Indonesian island famous for forested volcanic mountains, coral reefs, iconic rice paddies, and beaches. If you and your better half-dream of an exotic and magical honeymoon, Bali will suit you perfectly.&nbsp;Bali&rsquo;s natural beauty combined with rich cultural offerings has made it one of the best honeymoon destinations from India. In addition to that, active nightlife has made it one of the best honeymoon destinations from India.If newly married couples want privacy, there are plenty of gorgeous places where couples can peacefully spend their time.&nbsp;</p>\r\n\r\n<p>Uluwatu in Bali, has top ratings as one of the most beautiful places in Bali. Above all, you can visit the temple Uluwatu and watch Kekac dance (included in all packages by ineedtrip), after which you can attend the Saturday night party at the beach. Other highlights of Bali include enjoying a traditional lunch in Kintamani and getting blessings from Goa Gajah temple. A romantic walk by the broken beach during sunset is one of the best things that every couple should try in Bali. You can visit Tanah lot temple and do beach hopping in Canggu.</p>\r\n\r\n<p>There are some traditional spots where everyone can go and see old things. If you&rsquo;re a fan of greenery and challenges, you can hike Mount Batur. If you&rsquo;re a beach lover, the Nusa Islands are probably the best place to start your trip from, many beaches from these islands rank in the list of top 50 beaches in the world. Check out our Bali Honeymoon packages for a cheap and safe visit to Bali under a decent budget. Read more about Bali in this blog on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-bali-for-honeymoon/\">7 best places to visit in Bali.</a></p>\r\n\r\n<p>How to reach Bali?</p>\r\n\r\n<p>By flight you can land in Ngurah International airport, which is located in south Kutta district and is 13 km away from Denpasar, capital of Bali. You can also take a bus from Indonesia, but you&rsquo;ll have to travel by bus for more than 24 hours.&nbsp;Bali&rsquo;s best time is June or September because of the climatic change that occurs at that time. Visiting Bali in May, June, and October might help you save some money.</p>\r\n\r\n<p><strong>Mauritius&nbsp;</strong></p>\r\n\r\n<p>Located in the Indian Ocean, Mauritius is popularly called Paradise Island. Powdery white sand with ethereal beaches defines Mauritius. Places in Mauritius are genuinely romantic, and hence, it has become a go-to destination for newly married couples.It has both adventurous places and places of a visual treat, that couples can encounter while exploring the country. All the world-famous water sports, restaurants, clubs and trendy bars are there in Mauritius.&nbsp;&nbsp;The average temperature ranges from 20 and 28 degrees C. Temperature falls in winter, but there won&rsquo;t be a drastic change in climatic conditions. Midnight candle dinner at the white shore with your loved one will make your trip complete. If you wish to engage in adventurous activities, try beach hopping.&nbsp;Another romantic thing to do would be done in Mauritius is hiring a car for long rides. This island consists of public roadways and excellent motorways for long drives by the blue waters and sunset.&nbsp;If you want to go out shopping, Grand Baie Bazaar, Goodlands, and Quatre bones are the famous shopping places in Mauritius. The&nbsp;seven-colored earth, a wonder of its own is located in the southern part of Mauritius, this place beside the&nbsp;underwater waterfall&nbsp;attracts photographers and nature enthusiasts from all over the world.</p>\r\n\r\n<p>Read more about the&nbsp;best things to do in Mauritius&nbsp;<a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\">here.</a></p>\r\n\r\n<p>How to reach Mauritius?</p>\r\n\r\n<p>You can reach Mauritius by air. Sir Seewoosagur Ramgoolam International airport is located in the city of Port Louis, which is 48 km away from the central city.&nbsp;</p>\r\n\r\n<p>&nbsp;<strong>Maldives</strong></p>\r\n\r\n<p>Visiting the Maldives with your loved ones will fulfill your dream of visiting heaven (everyone wants to know what heaven looks like right?). You can go through lots of new experiences with your partner on your honeymoon trip.</p>\r\n\r\n<p>Exploring a titillating destination with your loved one will relieve you from stress. One exciting thing to do in Maldives is experimental diving, especially for honeymoon couples who will get enough moments to deepen their love strings. You will have a visual treat deep inside the water by seeing colorful fishes, turtles, dolphins, and more.</p>\r\n\r\n<p>There are plenty of spas to make your day refreshing and energetic. Maldives Rangali restaurant is a popular place to stay amongst honeymoon couples. The room will change to a romantic bedroom from a restaurant. You will be served champagne along with a delicious breakfast. Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-places-to-shop-in-maldives/\">best places to visit in Maldives</a>&nbsp;to plan your trip and our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/5-best-things-to-do-in-maldives-for-honeymoon/\">best things-to-do in Maldives</a>&nbsp;to know how you can spend your day having fun.</p>\r\n\r\n<p>How to reach the Maldives?</p>\r\n\r\n<p>(Male international airport) is the main airport that connects the Maldives to countries like India, China, and Srilanka. Direct flights are available from Dubai.</p>\r\n\r\n<p><strong>Singapore</strong></p>\r\n\r\n<p>Located in SouthEast Asia, Singapore is filled with different sightseeing experiences most of which are artificial.Singapore is also called an island country, and as a honeymoon destination, it disappoints none.There are so many places that newly married couples can visit to create cherish-able moments. Changi coastal point is one of the romantic places in Singapore for newlywed couples. This place is famous for the stunning views of the sea, offshore kalongs, and boats. It is popularly known as Romance 101. Ritz- Carlton is famously known for its view of Marina Bay and Singapore skyline. Bukit Batok is a famous place for taking post-wedding photography. The beautifully landscaped view has made this place famous for wedding photography.If you want to find more about the<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">&nbsp;must visit places in Singapore</a>, read our blog. Oh, and did we mention the beaches of&nbsp;<a href=\"https://www.ineedtrip.com/to-do-on-sentosa-island-tour/\">Sentosa</a>? Sentosa is an artificial island created by Singapore itself, that has white sandy beaches and more adventures. If you&rsquo;re into Hollywood, you can visit the universal studios and if you want to try your hands on safe skydiving then help yourself with&nbsp;<a href=\"https://www.ineedtrip.com/skydiving-in-singapore-sep-skydive-without-jumping-from-a-plane-oh-yes/\">indoor skydiving at ifly Singapore.&nbsp;</a></p>\r\n\r\n<p>How to reach Singapore?</p>\r\n\r\n<p>Changi Airport is one of the best-connected airports all over Asia, and it is an important hub for international aviation. Singapore is connected to Malaysia, Kuala Lumpur, Johor Bahru, through the train.</p>\r\n\r\n<p><strong>Dubai</strong></p>\r\n\r\n<p>Dubai is popular for its luxury shopping and ultra-modern buildings. Despite being a business hub, it is a perfect place for couples on honeymoon. Just imagine dining with your partner on a cruise through the waters of Dubai marina.&nbsp;Dubai consists of lots of cruises in which Alexander Dhow is one such Cruise where you can have romantic dining with your loved one. A live singer and a dancer will be on board who will entertain the whole crew.&nbsp; They serve an extensive buffet to treat your appetite. Dhow cruise experience is one of the best things in Dubai on the honeymoon. Moreover, if you feel like touching the sky, a hot air balloon ride is an adventure you wouldn&rsquo;t want to miss. You do know that we are not mentioning the obvious Burj Khalifa, Dubai Mall, Palm Jumeirah, and others right? If you want to read about them, you can visit our&nbsp;<a href=\"https://www.ineedtrip.com/top-10-things-to-do-in-dubai-for-couples/\">blog here.</a> Other things that are to be seen in Dubai are safari and some different cruises, and you can also rent a Limo in Dubai for travel, which will be an excellent experience for you. Traveling to the golden desert in Dubai will make your stomach churn. You can have a great experience in seaplane flight.</p>\r\n\r\n<p>How to reach Dubai?</p>\r\n\r\n<p>Dubai International Airport is the only busiest airport in the United Arab Emirates. You can travel by bus after reaching all the other emirates. However, Oman is the only way to enter Dubai without a permit they will be charging only 3000 Omani Rial. Last but not the least, if you need help in planning a Dubai trip, you can read our blog on&nbsp;<a href=\"https://www.ineedtrip.com/how-to-make-the-perfect-dubai-trip-plan-from-india/\">how to make the perfect Dubai trip plan.</a></p>\r\n\r\n<p>The best part. As promised earlier, here we are with the best part of this blog, the packages. Above all, Ineedtrip offers customized honeymoon tour packages for all the above-mentioned destinations. Here are the links to the packages.</p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/bali-packages/\">Bali Honeymoon packages</a></p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore Honeymoon Packages</a></p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/maldives-packages/\">Maldives Honeymoon Packages</a></p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius Honeymoon Packages</a></p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/dubai-packages/\">Dubai Honeymoon Packages</a></p>\r\n\r\n<p>All our packages have a long list of inclusions and their design promotes safety. You can compare the price of our packages with any other tour operator of your choice, you won&rsquo;t find the same list of inclusions under such a decent price. Moreover, we&rsquo;ll make sure you spend the entire time joyously, and just in case there&rsquo;s confusion, we&rsquo;ll be there for you 24/7 for assistance. So, what are you waiting for? Check out our package section and customize your own package to one of these safest and best honeymoon destinations from India.</p>',NULL,'2021-03-18 12:30:46','2021-03-18 12:30:46',NULL,1,'',1,0,'Some of the safest and best honeymoon destinations from India','In this blog by ineedtrip, we have handpicked five safest and best honeymoon destinations from India to make your trip pleasant and colorful.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(42,'Can you believe there\'s an Underwater Waterfall in Mauritius?','can-you-believe-there-s-an-underwater-waterfall-in-mauritius-','1617628159_blog.jpg','1644497374.jpg',NULL,'Aniket Agarwal','2020-07-15',NULL,NULL,NULL,'<p>Sounds strange and quite fascinating right? Mauritius, the heaven of the earth as quoted by Mark Twain, has a wonder that baffles everyone. Before we get into the details of the underwater waterfall, let&rsquo;s first talk over the beauty of Mauritius.</p>\r\n\r\n<p>Looks like the almighty gave special time while designing the island of Mauritius. The pristine beaches, blue waters, marine life, mountain cliffs and everything about the place is just perfect. We don&rsquo;t think there&rsquo;s a place in Mauritius that &ldquo;isn&rsquo;t good&rdquo;. Famous for the picturesque beaches and lively corals, Mauritius gives a unique sense of completeness. It&rsquo;s like you have arrived at a place that offers the fun of both worlds. The silent beaches during sunrise are perfect for meditation and the electrifying nightlife is worth sacrificing a night&rsquo;s sleep. Mauritius offers thrilling watersports and many brilliant destinations to leave you awestruck, to read more about the best places to visit here. And once those places make you want to pack your bags, remember that ineedtrip is here to help you plan a stress-free trip.&nbsp;</p>\r\n\r\n<p>Let&rsquo;s address the monster in the room now!&nbsp;</p>\r\n\r\n<p><strong>Where is the Underwater Waterfall located?</strong></p>\r\n\r\n<p>The underwater waterfall is located right beside the monolith Le Morne Brabant in Mauritius. Glad you asked! The Le Morne Brabant is a mountain that has a history of its own. Slaves during the colonial era took refuge at this place and formed settlements at the caves and summit of this mammoth mountain. Since, those times this place has become a symbol of freedom, sacrifice, and struggle of the place.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>If you want to take in the best views of the underwater waterfall, hike to the top of the Le Morne Brabant. The hiking experience will be unique in itself, hire a guide, who will not only guide you throughout the hike but also show you the historic caves located all over the Le Morne Brabant.</p>\r\n\r\n<p><strong>What&rsquo;s the mystery?</strong></p>\r\n\r\n<p>The illusion is truly startling if you see it from the Le Morne Brabant or with a helicopter ride. It looks like the water is dropping down to thousands of feet below just beside the land. However, it&rsquo;s just an illusion. Why did we call it an illusion? Because, &lsquo;the truth sometimes lies far behind the naked eye&rsquo;. What we see is an underwater waterfall, but the actual magic is created by the sand. You see, the land beside the shelf that Mauritius lies upon is about 150 m deep, but at this place, the depth suddenly shifts from 150 m to over a thousand meters. The sand on the shores naturally washes with the waves and falls into this depth, creating an illusion of the underwater waterfall. So that&rsquo;s the mystery.</p>\r\n\r\n<p>There&rsquo;s another such mysterious location in Mauritius that is popularly called &ldquo;<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">seven-colored earth</a>&rdquo; and you can read more about it by clicking on the link.</p>\r\n\r\n<p><strong>What else?</strong></p>\r\n\r\n<p>Although it&rsquo;s an illusion, this sight is something everyone should see once in their lifetime. Besides the underwater waterfall, Mauritius is home to many wonders like the Seven colored Earth, the Charamel waterfall, etc. The place is lively and famous as a scuba diving and snorkeling destination.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>If the pictures in this blog have excited you and have given you one more reason to plan a trip to Mauritius. Here&rsquo;s the deal! We at ineedtrip will help you take a complete tour of Mauritius at an<a href=\"https://www.ineedtrip.com/mauritius-packages/\">&nbsp;unbelievable price</a>&nbsp;and list of inclusions. Our<a href=\"https://www.ineedtrip.com/mauritius-packages/\">&nbsp;pre-designed packages</a>&nbsp;are made by experts who know the place in and out and know what are the&nbsp;<a href=\"https://www.ineedtrip.com/top-3-unique-things-to-do-in-mauritius-after-covid-19/\">things to do</a>&nbsp;and<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">&nbsp;places to visit.</a></p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 12:35:54','2021-03-18 12:35:54',NULL,1,'',0,0,'Underwater waterfall in Mauritius','Sounds strange &amp; quite fascinating right? Mauritius, the heaven of the earth as quoted by Mark Twain, has the Underwater Waterfall. that baffles everyone.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(43,'Top 3 unique things to do in Mauritius after Covid-19','top-3-unique-things-to-do-in-mauritius-after-covid-19','1617626867_blog.jpg','1644497103.jpg',NULL,'Aniket Agarwal','2020-05-04',NULL,NULL,NULL,'<p>The whole world has come to a standstill after the reports of COVID-19 outspread. All of us have played a significant role in controlling the disease by staying at home and helping people virtually. This pandemic made us realize how tiny we are in comparison to nature&rsquo;s wildness and vividness. A single disease bought even the top nations down on their knees. But there&rsquo;s a lighter and brighter side to all of this. Nature reflourished the forests, the air, the beaches, and everything else with beauty. Once the dust settles and we&rsquo;re ready for the dawn, all of us would want to cherish the natural beauty Earth has presented us with. To witness this beauty with peace and a little fun, we suggest you visit Mauritius after COVID-19.&nbsp;To cheer you up and give you a virtual tour of Mauritius, we at ineedtrip made a list of the amazing things you can do in Mauritius after COVID-19. Let&rsquo;s Begin.</p>\r\n\r\n<p><strong>Hiking the Le Mourne Brabant to see the Underwater Waterfall</strong></p>\r\n\r\n<p>Did you see the image? Doesn&rsquo;t the site look mesmerizing? This picture is taken from a satellite. What you&rsquo;re seeing is popularly known as the underwater waterfall of Mauritius. However, this is an architectural wonder created by nature itself, it&rsquo;s not a waterfall, it&rsquo;s an illusion. The depth of the sea bed all around the island of Mauritius is between 100-150 meters. But, at this particular point, the sea bed suddenly steps down to thousands of meters. The sand at the shore and the average depth falls into this break of levels because of the underlying current of water. This phenomenon creates the illusion of an underwater waterfall.&nbsp; You can read more about the&nbsp;<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">underwater waterfall here.</a></p>\r\n\r\n<p>Now, coming to the hiking part, the Le Mourne Brabant is located near the underwater waterfall. Declared as a UNESCO world heritage site, the cliff and the caves at this place were used by slaves during the 18th and 19th centuries to hide and take shelter. We advise you to take a guide who&rsquo;ll help you cover the 3-4 hours hike with lots of inputs about the history of the place. The hike is challenging, fun, and adventurous, the views from the top are stunning and you can get a partial glimpse of the underwater waterfall.&nbsp;If you want to know about the beaches and other stuff that everyone does you can visit our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">best places</a>&nbsp;to visit in Mauritius.</p>\r\n\r\n<p><strong>Visiting the 7 Colored Earth and The Chamarel Waterfalls</strong></p>\r\n\r\n<p>The Seven Coloured Earths is a truly unique attraction that&rsquo;ll make you believe that sand doesn&rsquo;t have only one color. The dunes are surrounded by lush green forests that add to the beauty of the scenery. Created from volcanic activity, the different colors blue, red, yellow, green, violet, purple, and of course brown, shine bright when sunlight hits them. There&rsquo;s also a mystery to the place, even if you mix the different colored sand, it&rsquo;ll separate automatically in its own spectrum.</p>\r\n\r\n<p>This place is best to take out the camera, the bright colors and a big smile will make for a good Instagram post. The Chamarel Waterfalls, where the water drops from over 100 meters are close by and perfect for a relaxing swim. Take a taxi to get there and begin a 3-hour hike down to the base of the waterfall. The sight is truly awe-inspiring and the cool sprinklers and breeze at the bottom will make you forget about all your worries. If you want to relax and take in the splendid beauty of nature, this is the place for you.&nbsp;We&rsquo;ve also written a separate blog on the seven-colored earth, you can&nbsp;<a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">read more about it here.</a></p>\r\n\r\n<p><strong>Driving the underwater Sub-scooter&nbsp;</strong></p>\r\n\r\n<p>This is exclusive to Singapore experience. If you&rsquo;re scared or not really a fan of scuba diving you can try out this unique sub-scooter. As you might have already guessed by the name, it&rsquo;s a combination of Submarine and a scooter. You&rsquo;ll get to watch the rich corals and have a close look at the diverse marine life up close safely. It does look like a sewing machine from a distance, but the complex design helps 2 people ride together. It&rsquo;s fun and quite enthralling to ride on the sub-scooter but sadly if you&rsquo;re taller than 2 meters, it&rsquo;s not for you. The sub-scooters are operated in the North of Mauritius about 2kms from the Grand Bale. The whole duration of the ride is about 2 hours but it&rsquo;s a little costly. You&rsquo;ll have to pay 90 Euros per person to ride the&nbsp;Scooter together with your partner. Trust us, it&rsquo;s TOTALLY WORTH IT!&nbsp;If you want to find out about the best places to visit in Mauritius,&nbsp;<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">read our blog here.</a></p>\r\n\r\n<p>We&rsquo;ve fought together in this time of crisis, and the Sun will shine brighter once again. To help you explore Mauritius after COVID-19, we at ineedtrip have some amazing&nbsp;<a href=\"https://www.ineedtrip.com/mauritius-packages/\">Mauritius packages</a>&nbsp;for you. With a big list of inclusions and unbelievable discounts, we aim to make your getaway fun and stress-free. To have a look at our packages or customize your own, visit here.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 12:38:57','2021-03-18 12:38:57',NULL,1,'',0,0,'Unique things to do in Mauritius','All of us want to cherish the natural beauty Earth has presented us with, to do that, we suggest you visit Mauritius after COVID-19','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(44,'How To Plan A Honeymoon Trip To Mauritius From India?','how-to-plan-a-honeymoon-trip-to-mauritius-from-india-','1617624730_blog.jpg','1644246825.jpg',NULL,'Aniket Agarwal','2020-04-21',NULL,NULL,NULL,'<p>Great Choice! Mauritius is perfect for a honeymoon. We&rsquo;re glad that you&rsquo;ve landed here, we&rsquo;ll help you plan a honeymoon trip to Mauritius. We have answered all the when&rsquo;s and how&rsquo;s here. Before we dive into the how-to plan a honeymoon trip to Mauritius part, here&rsquo;s a little info about Mauritius.</p>\r\n\r\n<p>The stunning beaches and the perfect blend of blue-green make Mauritius a heavenly honeymoon destination. Mauritius offers stunning blue waters, splendid white beaches, profound greenery, diverse marine life, and an extravagant nightlife to its visitors. Some tourists visit Mauritius just to witness the unique wildlife. Mauritius is home to pink pigeons, tortoises, whales, sharks, manta rays and many other animal species. The place offers a big mix of both romantic and adventurous activities for couples.</p>\r\n\r\n<p>Without further wait, let&rsquo;s go through the things that&rsquo;ll help you make a perfect plan for the Mauritius trip.</p>\r\n\r\n<p><strong>When to travel to Mauritius from India?</strong></p>\r\n\r\n<p><strong>Mauritius is a tourist hotspot year-round thanks to its tropical weather. However, the best time to visit Mauritius is between May and October as it&rsquo;s less humid. The summer and rainy season lie between November and April, with February being the hottest. July and August are the coldest months when you won&rsquo;t even be needing ACs. Most tourists prefer visiting during the summers when watersports are booming and they can relax on the lively beaches.</strong></p>\r\n\r\n<p><strong>But, we Indians want to travel to a destination, where we don&rsquo;t have to face the extreme heat, right? Mauritius is perfect because our summers and Mauritius&rsquo; winters occur at the same time. A trip in June/July or August would not only turn out to be great weather-wise but economically too. The winters in Mauritius comparatively attract lesser tourists and everything runs on discounted prices. If you&rsquo;re planning to visit with the &ldquo;Mrs&rdquo;, winters will be the ideal time as it&rsquo;s less crowded and you&rsquo;ll get more privacy.</strong></p>\r\n\r\n<p><strong>Visa Handling</strong></p>\r\n\r\n<p><strong>Visas and passports are mandatory for international trips and we stress too much over them. Thankfully Mauritius grants Visa on arrival for Indians, so you don&rsquo;t have too much to worry about on that end. However, make sure that your passport is valid for at least 6 months from the date of arrival in Mauritius. Take note of all the other mandates like hotel bookings, return flights, etc. from their official site and carry the documents accordingly.</strong></p>\r\n\r\n<p><strong>How to handle bookings and returns?</strong></p>\r\n\r\n<p><strong>Book your flights from Mumbai if possible, most of the other airports have connecting flights only. The distance between Mumbai and Mauritius is approximately 4690 km and it&rsquo;ll take just 6 hours to reach there in a direct flight. You can also travel to Mauritius on a ship if you&rsquo;ve got the time and budget. Now, that you know how you can reach there let&rsquo;s get to the booking part.</strong></p>\r\n\r\n<p><strong>Money saved, is money earned, right? So make sure that you book flights at least 3-4 months before the trip month. Early booking will get your tickets at discounted prices and you can even reschedule in case of emergencies. We highly advise you to book everything that can be, like a hotel, tour, activity, etc. If you pre-book everything, you&rsquo;ll have a plan that you can stick to and you don&rsquo;t have to waste time deciding your itinerary every day.&nbsp;</strong></p>\r\n\r\n<p><strong>With Mauritius honeymoon packages by ineedtrip, your stay will be luxurious and fulfilling. We&rsquo;ll take care of your breakfast and dinner so that you don&rsquo;t have to look for restaurants every day. We&rsquo;ll take you on certain local tours and get you enrolled in some fun watersports. Package booking will take off most of the staying and eating burden off your shoulders. Now, you will just have to plan on local commutes and sightseeing. Let&rsquo;s talk about that.&nbsp;</strong></p>\r\n\r\n<p><strong>Local transportation in Mauritius and dinner date?</strong></p>\r\n\r\n<p><strong>Local transportation is important when you step out for sightseeing. Thankfully, local transportation in Mauritius has great connectivity and is easily available. If you want to experience the culture, meet the locals and travel local style you can take the bus. If you want a more private option, plan to travel around on rented bikes. Make sure to drive safely and take taxis when you&rsquo;ve had a little too much after those late-night parties.&nbsp;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Although every moment on the honeymoon is romantic, that special dinner date has its own charm. For that special dinner, suit up and rent a luxury car to travel to the dinner destination (a speed boat or a beach would be perfect). You can add in some music and wine to seize the moment.&nbsp;</strong></p>\r\n\r\n<p><strong>How to plan sightseeing and other activities?</strong></p>\r\n\r\n<p><strong>Choosing between places to visit and places to skip can be daunting. You wouldn&rsquo;t want to miss out on the most popular sites, and neither would you want to miss out on activities that could be more fun. We&rsquo;ve mentioned a few places here, and how much time each would need to be explored. You can allot trip days to these places and add some other romantic or adventure activity to complete the day.</strong></p>\r\n\r\n<p><strong>Ile Aux Cerfs: This is the best place to visit on your trip to Mauritius. The blue waters and white beaches will leave you awe-stunned. With Mauritius honeymoon packages by ineedtrip, you&rsquo;ll get a full-day excursion to this beautiful island.&nbsp;</strong></p>\r\n\r\n<p><strong><a href=\"https://www.ineedtrip.com/theres-another-earth-you-probably-havent-heard-about-and-its-called-the-seven-colored-earth/\">Seven Colored Earth:</a>&nbsp;The majestic beauty of this place is unavailable. As the name suggests, the place has multi-colored dunes, all-natural. The different colored sand separates itself even when mixed thoroughly. You can go for the Chamarel Waterfalls trek on the same day.</strong></p>\r\n\r\n<p><strong>Pamplemousses Botanical Garden: With over 650 species of plants and trees to explore, this place is best to explore nature&rsquo;s beauty. You can go for that special dinner date after a tour of this place or maybe go for a late-night party.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>These are some of the many places you can choose to tour around depending on your stay. If you want to know more, check out our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">best places to visit in Mauritius.&nbsp;</a></strong></p>\r\n\r\n<p><strong>Summing it up</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>So, this was a short guide on how you can plan a honeymoon trip to Mauritius from India. You can take the tips mentioned here and make a list of things to do. Now, that you know everything about your trip, why don&rsquo;t you head over to our Mauritius honeymoon packages? We&rsquo;ve some mind-blowing discounts that you wouldn&rsquo;t want to miss. Our list of inclusions will make your jaw drop. We bet you won&rsquo;t be able to stop imagining yourself chilling in Mauritius. Let&rsquo;s get there&nbsp;<a href=\"https://www.ineedtrip.com/mauritius-packages-limited/\">now</a>!</strong></p>',NULL,'2021-03-18 12:42:00','2021-03-18 12:42:00',NULL,1,'',0,0,'Planning a honeymoon trip to Mauritius from India','Great Choice! We’re glad that you’ve chosen Mauritius, we’ll help you plan a honeymoon trip to Mauritius in the perfect & easiest way.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(45,'Top 5 places To Visit In Mauritius For Honeymoon','top-5-places-to-visit-in-mauritius-for-honeymoon','1617622473_blog.jpg','1628483060.jpg',NULL,'Aniket Agarwal','2020-04-15',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Mauritius is a dream destination for people who love beaches and lush green landscapes. Located in the Indian Ocean, Mauritius offers an island experience like no other. The tropical climate, picturesque coastline, blue lagoons, and lively reefs make it a perfect honeymoon destination. Thanks to the scenic beauty and the amount of adventure the island offers, Mauritius attracts tourists from all around the world. If you’re confused between Mauritius and other destinations like Bali or Maldives for a honeymoon, this blog on the&nbsp;5 best places to visit in Mauritius for honeymoon&nbsp;will make you forget the others. We’ll not only take you through a virtual tour of the places, but we’ll also help you with some crazy deals on the best&nbsp;<strong><a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">Mauritius honeymoon packages</a>&nbsp;</strong>from&nbsp;ineedtrip. If you’re planning a honeymoon trip to Mauritius, you’re in for a lot of fun surprises and adventures. Mauritius is as vibrant as a rainbow. The place offers so many unique experiences that for once, you’ll feel pity for people who say Mauritius is just another beach destination.</p>\r\n\r\n<p style=\"text-align: justify; \"><strong>Ile Aux Cerfs</strong></p>\r\n\r\n<p style=\"text-align: justify; \">We’ll start off with the best, Ile Aux Cerfs is an island that you would not want to miss out on your <a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">trip to Mauritius</a>. If you want to see some lively coral, dive in the crystal clear waters and lay down on the white sand, Ile Aux Cerfs is the place for you. Ile Aux cerfs has a diverse marine life. If you’ve been planning to go scuba diving or snorkeling, you should head straight ahead to this island on the very first day. You can also enjoy other water sports like parasailing or underwater sea walk. Ile Aux Cerfs is that one-stop destination for couples who want privacy with amazing surroundings. This is the best place to visit in Mauritius for honeymoon.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>Things to do:&nbsp;</strong></strong>Snorkeling, Scuba Diving, Parasailing, Undersea Walk</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>How to reach:&nbsp;</strong></strong>A boat taxi from&nbsp;Trou d’eau Douce will take 30 minutes to get you there. The ride will cost Rs 400 – Rs 500 per person.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Chamarel Waterfalls</strong></p>\r\n\r\n<p style=\"text-align: justify;\">With a height similar to the Statue of Liberty, the Chamarel Waterfalls is a spectacular destination for couples. The lush green forests and the cool breeze will make you lose yourself in the vicinity of the waterfalls. You can do a number of activities here including Abseiling. What’s that? You can hike down to the bottom of the waterfalls and take some amazing pictures to post on your Instagram. And no, sadly you’ll not get to bathe there, did you forget the water falls from a height of 100 meters!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>Things to do:&nbsp;</strong></strong>Hiking, Photography, Visiting the seven-colored earth</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>How to reach:</strong>&nbsp;</strong>Hire a taxi or cab to get there or take a guided tour</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Seven Colored Earth</strong></p>\r\n\r\n<p style=\"text-align: justify;\">You probably have looked at an image of this place while surfing on Instagram. We call it the eighth wonder of the world, the place has multicolored dunes and it looks like someone took the colors from a rainbow and painted them here (remember the Mauritius-Rainbow reference we made earlier?). This oddly mesmerizing site will make you wonder about the other artistic endeavors of mother nature. It’s the perfect place to get some pictures and reflect upon your colorful life ahead as a couple. You’ll find the Seven Colored Earth on every list of places to visit in Mauritius for honeymoon.</p>\r\n\r\n<p style=\"text-align: justify; \">We like this place so much that we have written a separate blog on it, you can&nbsp;<b><a href=\"https://www.ineedtrip.com/seven-colored-earth-a-true-wonder-of-our-solar-system/\">read it here</a></b>.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>Things to do:&nbsp;</strong></strong>Visit Chamarel waterfall, Curious Corner of Chamarel</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>How to reach:</strong>&nbsp;</strong>When you book the cab to get to Chamarel waterfalls, ask the driver to take you here. Seven colored earth is just 1.7 km from Chamarel waterfalls.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Pereybere beach</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The Pereybere beach is the perfect beach for couples looking to go for a swim in the deep blue waters of the Indian Ocean. The beach has no stones or corals so you can swim bare feet. And the water there is calm, so no huge waves to scare you off. The white sand and clean shore are perfect for a hand-in-hand evening stroll with your partner. There are many coconut trees offering shade to people who want to lay down for a nap on the beach and soak in the beauty of Mauritius. You should visit in the evening to catch the sunset and go crazy at night partying with the locals in an electrifying atmosphere.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>Things to do:&nbsp;</strong></strong>Windsurfing, night parties, and deep-sea fishing</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>How to reach:&nbsp;</strong></strong>You can get here using public transport. If you want privacy you can take a cab but that’ll be more costly</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Pamplemousses botanical garden</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Visiting a botanical garden on a honeymoon might not sound fun, but the reality is totally opposite. Your tour of the Pamplemousses botanical garden will be full of eye-popping views and jaw-dropping scenery. The garden has over 650 varieties of plants including more than 83 varieties of palm trees. Walking around nature is never disappointing, a tour of this place after a night party at the Pereybere beach is perfect for detoxing.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>Things to do:</strong>&nbsp;</strong>Explore the gardens and eat at the famous Chez Tante Athalie</p>\r\n\r\n<p style=\"text-align: justify;\"><strong><strong>How to reach:</strong>&nbsp;</strong>The place is located in Port Louis and you can easily catch a bus to get there</p>\r\n\r\n<p style=\"text-align: justify;\">Here’s a bonus place – “<a href=\"https://www.ineedtrip.com/can-you-believe-there-s-an-underwater-waterfall-in-mauritius-/\">underwater waterfall</a>“, read more about it by clicking on the link.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Conclusion</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Mauritius is the best destination for people who want to go to a place where they can have fun around beaches and get enrolled in adventure sports. The people in Mauritius don’t make you feel like you’re far from home and the overall experience of a honeymoon in Mauritius is quite enriching. If you want to explore the diversity of Mauritius, the above mentioned 5 best places in Mauritius for honeymoon should be on your list of must-do things.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify; \">Now that we are here, why don’t you customize a Mauritius honeymoon package for yourself?&nbsp; Or you can choose from ineedtrip’s custom-designed honeymoon packages to get some crazy deals and discounts. Come, let’s book a&nbsp;package&nbsp;for you.</p>\r\n\r\n<p style=\"text-align: justify; \">This was our list of best places to visit in <b><a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">Mauritius for honeymoon</a></b>. If you have any more places you would like us to add, tell us about them.</p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;</p>',NULL,'2021-03-18 12:47:10','2021-03-18 12:47:10',NULL,1,'',0,0,'Book Honeymoon Package, Honeymoon Package Mauritius, Mauritius Package, Trip To Mauritius.','Mauritius is a dream destination for beach and greenery lovers. Here\'s ineedtrip\'s list of top 5 places to visit in Mauritius for Honeymoon.','Places to visit in Mauritius for honeymoon | Mauritius Honeymoon Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(46,'Seven Colored Earth | A True Wonder Of Our Solar System','seven-colored-earth-a-true-wonder-of-our-solar-system','1617621570_blog.jpg','1644245825.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>What if we told you that there exists another earth called &lsquo;the seven colored earth&rsquo;, which is just as beautiful as the one we live on?&nbsp;<em>Where is it? Is it in our own galaxy, or is it far away?</em>&nbsp; Answer to these and many similar questions is, that to visit The Seven Colored Earth, you won&rsquo;t even have to leave this &lsquo;Earth,&rsquo;&nbsp;<em>sounds confusing?</em>&nbsp;Let&rsquo;s clear it up.&nbsp;</p>\r\n\r\n<p>At some point in our lives, we all have just wandered about the beauty that nature withholds, and this &lsquo;another Earth&rsquo; or &lsquo;The Seven Colored Earth&rsquo; is one of those nature&rsquo;s wonders. It&rsquo;s not another planet; it&rsquo;s a place which you can visit if you plan a trip to Mauritius (all the more reason to visit it). This &lsquo;Seven Colored Earth,&rsquo; is located in the Chamarel Plains in south-western Mauritius. But you didn&rsquo;t come this far just to know that, did you? Let&rsquo;s take a virtual tour of the place through this blog.</p>\r\n\r\n<p><strong>What&rsquo;s so special about this Seven Colored Earth?</strong></p>\r\n\r\n<p>By the looks of it, you&rsquo;ll feel like someone splashed multiple colors and played &ldquo;<strong><em>holi</em></strong>&rdquo; here. Thanks to the volcanic activity that took place some hundred years back, these magnificent dunes are now a huge tourist attraction in Mauritius. And there&rsquo;s a strange fact that often bewilders people visiting here, it rains a lot in Mauritius, and these are dunes, still, the formation doesn&rsquo;t erode, quite fascinating, don&rsquo;t you think?. Also, they are so majestic that if you pick sand from all these colors, mix it, it&rsquo;ll separate and form different color layers. (Kinda spooky!). Want to visit the place? We&rsquo;ll take you there in no time! Get to our&nbsp;customized holiday &amp; honeymoon packages&nbsp;section now to find the best deals to visit Mauritius. Wait, there&rsquo;s more scroll down!</p>\r\n\r\n<p>There&rsquo;s another wonder in Mauritius and it is popularly known as the underwater waterfall. Hey! We didn&rsquo;t name them, You can read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/can-you-believe-theres-an-underwater-waterfall-in-mauritius/\">underwater waterfall</a>&nbsp;to know more about the wonder. Here&rsquo;s a picture for you to gaze upon</p>\r\n\r\n<p><strong>Mauritius as a tourist destination!</strong></p>\r\n\r\n<p>The place is a favorite honeymoon destination worldwide, and we cannot be surprised,&nbsp;</p>\r\n\r\n<p>Mauritius doesn&rsquo;t need an introduction; the place has exquisite beaches that offer unmatchable peace and adventure. The tropical climate, blue lagoons, and beaches with white sand give a spectacular view of nature&rsquo;s glory in real sense. Those pictures of crystal blue beaches and corals of Mauritius that you have been seeing are all true.</p>\r\n\r\n<p>Why don&rsquo;t you read our blog on the<a href=\"https://www.ineedtrip.com/top-5-places-to-visit-in-mauritius-for-honeymoon/\">&nbsp;5 best places to visit in Mauritius</a>&nbsp;to find more about the beauty of Mauritius? It&rsquo;s not just a honeymoon destination, if you are planning an international trip with your friends or family and want some adventure, Mauritius should be on the top of your list. You can go scuba diving, snorkeling to see the vibrant coral or go for extreme activities like skydiving, kitesurfing. If all of this is already exciting, you, we have some crazy deals waiting, let&rsquo;s quickly get a customized plan for you!&nbsp;</p>\r\n\r\n<p><a href=\"https://www.ineedtrip.com/mauritius-packages/\">Customize now.</a></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 12:51:02','2021-03-18 12:51:02',NULL,1,'',0,0,'Colored Earth - True wonder of our Solar System','What if we told you that there exists another earth called \'seven colored earth\', which is just as beautiful as the one we live on? Where is it?','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(47,'5 best places to shop in Singapore','5-best-places-to-shop-in-singapore','1617621205_blog.jpg','1644245148.jpg',NULL,'Aniket Agarwal','2020-10-22',NULL,NULL,NULL,'<p>A trip cannot end without shopping whether it&rsquo;s a honeymoon trip or a family trip. Everyone is a shopaholic to some extent and when it comes to places like Singapore you just can&rsquo;t keep your pockets full. Singapore is famous for being super clean, its greenery makes it more beautiful and it is a systemized city in many ways. It is the land of many beautiful attractions and of course, shopping malls. Singapore is also called the land of malls, and you will be in love with the malls like Ion Orchard, Vivo city, Paragon mall. But that&rsquo;s not all, other than malls, there are many markets that offer all sorts of items on sale. So here in this blog, you will get to know the best places to shop in Singapore, you can get those souvenirs or clothes or anything for that matter from these places.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Orchard Road</strong></p>\r\n\r\n<p>Orchard Road is the most famous market in Singapore. The place is also popularly known as the main street for all shopping malls. It is full of tourists as well as locals, throughout the day. Orchard road is full of retail shops, discount outlets, boutiques, along with luxury hotels and malls. From apparel to electronic items, food items, housewares, and others, you&rsquo;ll find everything here. The sidewalks are always lively with artists performing throughout the day.&nbsp;From chilling out in the market to shopping in malls you will get everything you want over here. There are many popular malls on orchard road like Ion Orchard, Paragon Shopping Central, Orchard Central.</p>\r\n\r\n<p>To get to the orchard road you just need a taxi. If we talk about the timings most markets are open from 10 am and close by 10 am.&nbsp; All in all, Orchard road is a complete market for all types of shopping with any range starting from retail outlets to malls.</p>\r\n\r\n<p><strong>Marina Bay</strong></p>\r\n\r\n<p>Marina Bay is one of the poshest areas in Singapore, that includes luxury hotels, malls, and many more places. It is known as the most renowned attraction in Singapore. There are many shows and exhibitions held in the famous theatre in marina bay known as Esplanade theatre. Marina bay has a decent bunch of malls and is one of the best places for shopping in Singapore. From local brands to international, you&rsquo;ll find everything here, even names you might haven&rsquo;t heard of. Everything here can be discovered and you will not think twice about the prices as well as you will get a wide range so it will be worth it to shop for it. Marina Bay is located in the central area of Singapore. If we talk about the timings mostly malls open from 10 am to 10:30 pm and it can be extended by 11:30 pm on weekends. Marina bay is such a sweet spot that it makes its place on both of our lists on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">7 best places to visit in Singapore</a>&nbsp;and the&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">10 best things to do in Singapore.</a>&nbsp;The Marina Bay Sands, that&rsquo;s visible in this picture is an amazing restaurant and you must dine there at least once on your trip. If you need help on the&nbsp;<a href=\"https://www.ineedtrip.com/top-5-must-try-dishes-in-singapore/\">must-try dishes in Singapore</a>, we&rsquo;ve got that covered too.</p>\r\n\r\n<p><strong>Chinatown</strong></p>\r\n\r\n<p>This is one of the amazing markets in Singapore and yeah we can call it a typical street shopping so almost everyone is a street shopaholic lover. You will be in love with this market and you can buy apparel, spices, souvenirs. Chinatown can be called one of the cheap markets in Singapore. Whether we can say it is a street market so it is not less than other markets as you will find a huge variety over here. If we talk about the prices you will be super excited when you will look into their prices and there is no need for draining energy in bargaining as you will be fully satisfied with the prices. In Chinatown, there are many famous places like Buddha Tooth Relic Temple, Singapore city gallery, and many more. iF you are a fan of in budget shopping, this is one of the best places to shop in Singapore.</p>\r\n\r\n<p><strong>Bugis Street</strong></p>\r\n\r\n<p>Bugis street is one of the cheapest markets in Singapore and you will find a huge variety over here. The place has a very happening market crowded with locals and many tourists. It is located between Little India in the north and Marina Bay in the south. It is one of those markets where you can get everything at a very low price. You can buy jewelry, cosmetics, clothes, electronics, home appliances, footwear, accessories, chocolates, and many more things. So Bugis Street is a complete market to shop anything you wish to. There are about 800 stalls in Bugis Street so you easily spend hours shopping and investing time in having some good food items and lovely shopping.</p>\r\n\r\n<p><strong>Little India</strong></p>\r\n\r\n<p>Little India is one of the colorful and vibrant shopping centers in Singapore. The easy connectivity of lanes can make your walking and shopping both fantastic. Little India is a must-visit for every tourist to shop to the fullest of his or her heart. You can find a variety of spices, saris, even sari fabrics, jewelry, clothes at a very good budget and with a huge variety. There is a Mustafa market in Little India which is open for 24 hours while the other shops close by 10 pm.</p>\r\n\r\n<p>Now that you have an idea of where to shop and what to shop in Singapore. We hope your trip is full of fun and you enjoy your shopping to the fullest. These are the 5 best places to shop in Singapore which will get you almost everything. If you want to book packages to Singapore, you can check out our&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore holiday and honeymoon packages.</a></p>\r\n\r\n<p>Pro Tip: You need to be very careful in Singapore regarding rules and regulations as it is a very well-maintained city and if you will not follow the rules then they would charge a fine so you need to follow that.</p>',NULL,'2021-03-18 13:01:28','2021-03-18 13:01:28',NULL,1,'',0,0,'Best places to shop in Singapore','If youre looking for best places to shop in Singapore to get your hands on international apparel or maybe souveneirs for back home, read this blog','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(48,'7 Best Places to Visit In Singapore For 2021','7-best-places-to-visit-in-singapore-for-2021','1617620835_blog.jpg','1644245118.jpg',NULL,'Aniket Agarwal','2020-09-22',NULL,NULL,NULL,'<p>Singapore, the island nation, is evolving and offering all the latest exhilarations and prospects to travelers across the globe. This Asian country showcases the right blend of natural beauties and human- wonders. It is breathtakingly beautiful, amazingly entertaining, and features a myriad of vibrant beaches, classy restaurants, and more.&nbsp;Lion City also represents a vibrant history and culture and is one of the perfect destinations in the globe irrespective of the age group and preferences. The illumining streets and the towers are the best in Singapore at night. And the city offers a delightful experience to engrave in your heart &amp; mind. If you are planning a visit and looking for the&nbsp;7 best places to visit in Singapore&nbsp;or looking for some inspiration to impress your other half then here we are with an exciting guide.</p>\r\n\r\n<p>Singapore is truly the best man-made wonderland on earth; it guarantees you the utmost pleasure and temptation not only during your visit but also for years to come. Its astounding edifices, multicultural aspects, and vibrant night culture undoubtedly offer a much-needed respite to the couples. It is one of the best places for honeymooners thanks to serene beaches and picturesque landscapes.&nbsp;</p>\r\n\r\n<p>Let&rsquo;s explore the best places in Singapore and brew up your romance while experiencing the special moments in your life. Here&rsquo;s an advance bonus! Once you&rsquo;re done with this blog you can read our blog on the<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">&nbsp;top 10 things to do in Singapore as well.</a></p>\r\n\r\n<p><strong>The Changi Point Coastal Walk</strong></p>\r\n\r\n<p>Walking across the sea alongside your other half is mesmeric, isn&rsquo;t it!&nbsp;The Changi Point Coastal Walk stretching out around 2.2 Km along the shore is mainly a waterfront stroll located on 6 Changi Village road. Usually, there are seven entry points to witness all the natural beauties at its best, so you can stroll along with your partner and let the refreshing breeze kissing both of you and whisper in your ears.&nbsp;The Changi Point Coastal Walk is divided into six sections like Kelong Walk, Cliff Walk, Sunset Walk, Sailing Point Walk, Beach Walk, and more. Among these, the Sailing Point Walk is the longest walk that you will find right next to the Changi Sailing Club. This place is not one of the most common ones but is definitely one if the best places to visit in Singapore.</p>\r\n\r\n<p>Apart from a romantic walk, you can also explore the sea by the bumboats and experience a delightful sunset at Sunset walk point. The sunset here is stunning the fall of the sun alongside the vibrant sea creates a picturesque moment, especially for the newlyweds. It stimulates both of them to fall in love again and again in the backdrops of a delightful panorama.&nbsp;</p>\r\n\r\n<p>It is not the end; the Changi Point Coastal walk turns livelier in the dark as the pathway shines with the coloured lights and adds a romantic vibe to make your day. During the day, you can also explore the heritage trees as well as lush green all around and capture some of the candid moments.&nbsp;A little walk, along with some t&ecirc;te-&agrave;-t&ecirc;tes with your loved one, is stimulating under the influence of the vibrant sea and a soothing environment. So Changi Point Coastal walk is a must-see place with your better half which you can admire and get lost in its exquisiteness.&nbsp;</p>\r\n\r\n<p>Location:&nbsp;6 Changi Village Rd, Singapore</p>\r\n\r\n<p>Operation: 24 hours</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>The Gardens by the Bay</strong></p>\r\n\r\n<p>Singapore, the city of lights and wonders, doesn&rsquo;t leave any chances to escalate your romance and fondness, and the Gardens By The Bay is the essence of love and amazement. Once you step into the Gardens By the Bay, you get astounded by this artificial creation.&nbsp;Enter into the wonder hand in hand with your spouse through the Flower Dome and embrace a completely different climate. Keep in mind, Singapore is all about the surprises and miracles, and the Gardens By the Bay is the right illustration.&nbsp;</p>\r\n\r\n<p>Simply put it is a contemporary indoor garden that is way beyond the natural gardens and houses lots of exotic plants across the globe. It is one of the perfect places for the couples to spend quality time being together while admiring the serenity, tall structures and mesmerizing lightings all around.&nbsp;The Garden by The Bay is not a regular garden but a thoughtful design of some innovative minds. It includes some of the native plants along with exotic yet deserted plants brought from every corner of the world. the aroma of those exotic flowers blended with attention-grabbing lights and the aspect of water-conserving supertrees will stun you and your loved one for sure.&nbsp;&nbsp;</p>\r\n\r\n<p>If you need seclusion from the hustle-bustle of this vibrant city, then get lost with the splendors of Gardens by the Bay right opposite to Marina Bay Sands. Here you can simply walk around and fill your heart and mind with refreshing air and romantic ambiance.&nbsp;The Gardens by the Bay is a futuristic park and the much-needed ingredient for the green environment at this time. But getting into this Garden is not only about exploring the exotic plants and architecture, but also a fine-dining on one of the tallest trees. So ultimately, the Garden by the Bay is worth visiting for all the compelling reasons. This is one of those places that you will find on every list of the best places to visit in Singapore.</p>\r\n\r\n<p>Location:&nbsp;18 Marina Gardens Dr, Singapore</p>\r\n\r\n<p>Operation: 5AM- 2 AM</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Bukit Batok Town Park</strong></p>\r\n\r\n<p>Love or affection inevitably finds its way and solitude is the best option for all these aspects of life. So how about romancing or even a date amidst nature, greenery and more! If you need a place to enrich your romance quotient, there is no better place than Bukit Batok Town Park.&nbsp;</p>\r\n\r\n<p>It is also famous as the Little Guilin and one of the most explored hangouts by the couples. It is a paradise for the photo-enthusiasts and who eat-love-pray the selfie. Apart from capturing some beautiful moments, you can enjoy the tranquil lake, beautiful forest and picturesque vista all around.&nbsp;&nbsp;</p>\r\n\r\n<p>Location:&nbsp;Bukit Batok East Avenue 5, Singapore</p>\r\n\r\n<p>Operation: 24 hours</p>\r\n\r\n<p>Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">10 best things to-do in Singapore</a>&nbsp;to find more about how to make most of your trip.</p>\r\n\r\n<p><strong>Singapore Flyer</strong></p>\r\n\r\n<p>The London Eye is momentous; it is the epitome of Britain, just like Big Ben and Buckingham Palace. Still, the Singapore Flyer is the right answer to the 360-observation wheel. It is more exciting, stunning, and almost reaching the sky.&nbsp;Singapore Flyer offers an unforgettable experience, the scenic beauty of the city from the height, and even some parts of Malaysia and Indonesia during good weather. It also instigates an elation that is impossible to portray but only to feel being together with your spouse.&nbsp;</p>\r\n\r\n<p>It&rsquo;s all about taking selfies and opens up a diversified option of fine-dining and cocktails in the clouds. So, embrace the gifts of human breakthroughs high in the sky with your loved one for a romantic adventure.&nbsp;Remember, there will be a no evening like in a Singapore Flyer along with delicious &amp; authentic Asian cuisines along with mesmerizing views all around. Plan a perfect date with your significant other to inscribe the most treasured moments.</p>\r\n\r\n<p>Location:&nbsp;30 Raffles Avenue</p>\r\n\r\n<p>Operation: 8.30 AM- 10.30 PM</p>\r\n\r\n<p><strong>Cable Car Ride, Mount Faber</strong></p>\r\n\r\n<p>Surprise your spouse with the panoramic vista of the Lion city from Mount Faber, the hill-top park. It is a perfect getaway to spend some pleasant time at the outskirt of the city. This 105-meter peak features all the surprising elements of the world. It features an unbelievable thrilling cable car ride, great views of the Island nation, multiple dining, entertaining mediums, and more.&nbsp;</p>\r\n\r\n<p>&nbsp;Mount Faber is one of the best hill-top tourist destinations in Singapore, where you can explore the bars, the eateries amongst the lush greenery. So when you plan an outing to Mount Faber, then don&rsquo;t miss fine dining in a cable car. It is truly an out-of-this-world experience and uplifts your spirit to start a new life. This offers you one of the finest ways to stare into the night sky being at the top of the world and enjoy some delicious cuisines. For Mount Faber, you can take a cable car from Sentosa or else from HarbourFront MRT Station.&nbsp;</p>\r\n\r\n<p>Location:&nbsp;Junction of Kampong Bahru Road and, Telok Blangah Rd, Singapore</p>\r\n\r\n<p>Operation: 24 Hours&nbsp;</p>\r\n\r\n<p><strong><strong>&nbsp;</strong></strong></p>\r\n\r\n<p><strong>Marina Bay Sands</strong></p>\r\n\r\n<p>The Marina Bay Sands secures a place ion the category of&nbsp;7 best places to visit in Singapore&nbsp;for all the valid reasons. Although most of the sites in this island nation are quite difficult to sidestep, the Marina Bay Sands is exceptional.&nbsp;It is a sight to behold for hours, and for honeymooners it is resplendent and a bliss. The Marina Bay Sands offers exclusive laser light shows along with an exhibition of water jets. The perfect blends of light and water escalate your mood for an ideal evening with your significant other.&nbsp;Furthermore, the lasers, fire geysers, and sparkling lights along with a perfect backdrop of the city from the Marina Bay Sands initiate an ideal date for you. It is the epitome of a romantic evening owing to a vibrant atmosphere, when the sun calls it a day.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Want to know what to eat in Singapore? Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/top-5-must-try-dishes-in-singapore/\">5 must-try dishes in Singapore.</a></p>\r\n\r\n<p>The class apart premium tourist destination cuddles you to set your mood for an enlivening moment. Here you both can soothe your body and mind at the generous spas. Calm your nerves down at the infinity pools and dine at some of the prominent restaurants.&nbsp;The list doesn&rsquo;t end here; there are hundreds of things to do at Marina Bay Sands with have the best feelings ever with your spouse. When you are at this marvelous structure, don&rsquo;t miss a glimpse of the sunset while enjoying a couple of drinks. So, organize a perfect setting for a date with your loved one and get yourself indulged in the starry sky and lively music to shift your gear for a romantic voyage at the height.</p>\r\n\r\n<p>Location:&nbsp;10 Bayfront Ave, Singapore</p>\r\n\r\n<p><strong>Sentosa Island</strong></p>\r\n\r\n<p>Singapore is incomplete without the Sentosa Island so as your trip, it makes you fall in love again and again. If you are there with your spouse, then ensure a manifold in your excitements. It is one of the perfect destinations to get entertained, and exploring the pristine beaches.</p>\r\n\r\n<p>Sentosa Island is a void without Merlion, a statue with the head of a lion and body of a fish. It signifies the culture and history of Singapore. Ride on the escalator to reach the top of the statue and behold the outstanding view of the city.&nbsp;It is also one of the most happening islands near Singapore which house some of the iconic sightseeing locations. These locations include Universal Studios, Siloso Beach, Underwater World Aquarium, and more.&nbsp;Get on those water rides and roller-coaster rides with your partner and release not only adrenaline but also anxiety. You can also head towards the restaurants for romantic dining.&nbsp;</p>\r\n\r\n<p>We like Sentosa Island so much that we&rsquo;ve written a separate blog dedicated to it, it goes by, faboulous&nbsp;<a href=\"https://www.ineedtrip.com/to-do-on-sentosa-island-tour/\">things to do on Sentosa Island tour.</a></p>\r\n\r\n<p>We hope as of now you have had a thorough look at the<strong>&nbsp;</strong>7 best places to visit in Singapore. Now get down to the planning and execution phase for crafting a special voyage. Singapore has a lot to offer especially for the honeymooners. You can also explore Yueh Hai Ching temple a UNESCO heritage site to seek a blessing for life. We at ineedtrip can help you with the best&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">honeymoon and holiday tour packages for Singapore</a>. Our package prices beat our peers by a huge difference and our list of inclusions is very long. Check out&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">our packages here</a>&nbsp;for more details.</p>',NULL,'2021-03-18 13:06:22','2021-03-18 13:06:22',NULL,1,'',0,0,'Best places to visit in Singapore','Singapore is one of the best destinations in the world for honeymoon & family trips. With this blog you\'ll find out the best places to visit in Singapore','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(49,'Top 5 Must-Try Dishes In Singapore','top-5-must-try-dishes-in-singapore','1617618796_blog.jpg','1644490838.jpg',NULL,'Aniket Agarwal','2020-09-18',NULL,NULL,NULL,'<p>The city of hearts, with a roaring lion, Singapore, offers amazing views and a leap into the world&rsquo;s finest modern architecture. From Gardens by the bay to the Marina Bay Sands, from Clarks Quay to the artificial Sentosa Island, Singapore shows you the true potential of man&rsquo;s creativity.&nbsp; When you are planning a trip to Singapore, even the thought of trying Singapore&rsquo;s delicacies makes your mouth watery. Food is something you eat at least twice a day and since you&rsquo;re in Singapore, why not try some local dishes? So, here in this blog, you will get to know about the 5 must-try dishes on your Singapore trip.</p>\r\n\r\n<p><strong>Roti Prata &amp; Murtabak</strong></p>\r\n\r\n<p><strong>Roti Murtabak is an awesome vegetarian dish in Singapore. It is just another version of Pizza. It is a dough of plain flour, butter, and eggs tossed with the crispy flavor. You can have it with curry which adds a spicy flavor to it or you can have it with condensed milk, or chocolate delight. If you want a heavy meal, you can try the stuffed Murtabak which is available in 3 variants,&nbsp; soybean/chicken or mutton. You can try out this dish in Singapore and I am sure you will love the light taste of roti prata in Singapore style.&nbsp;</strong></p>\r\n\r\n<p><strong>ROJAK</strong></p>\r\n\r\n<p><strong>If you are health conscious and want to try some healthy and tasty food rojak is the best option to have in Singapore. Rojak is made up of fresh fruits and vegetables which is mixed with some sweet, sour, little spicy, and some tamarind sauce. Rojak is made live on the spot so you can go for whichever vegetables and fruits you want in your dish and you can also pick up a vegetarian sauce.&nbsp; Prawn paste is another option if you want to try something different. So go out for rojak and try out some freshness of fruits and vegetables of Singapore in the form of rojak meal. Rojak is a personal favorite and one of the must try dishes in Singapore.</strong></p>\r\n\r\n<p><strong>WONTON MEE</strong></p>\r\n\r\n<p>Wonton mee is a Singaporean noodles dish. Everyone loves noodles. As in India, everyone loves to have zinc of Chinese noodles we must say this is the perfect dish for all. This Singaporean version of noodles are eaten with the dry noodles along with a yummy light sauce, some pork, and some wonton dumplings filled with pork served with a hot bowl of soup. So it is an amazing dish to have in Singapore and try a new version of noodles with a different taste.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>LAKSA</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Laksa is one of the famous and most common dishes in Singapore. It is a combo of Chinese and Malay flavors mixed with other ingredients in one platter. It is a meal of rice noodles with some vegetables and some gravy or curry and some portion of proteins. In Singapore, you will find a variety in Laksa and there are many specific laska restaurants that offer different flavors. It is definitely one of the must-try dishes in Singapore.&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Hainanese Chicken Rice</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Hainanese chicken rice is another one of the mouth-watering dishes in Singapore. How can you not have rice in your meal? They cook steamed rice with chicken stock in this combo. This is an all-time dish but best when you want to have a heavy meal. It is a delicious dish with a sizzling aroma and the quality of chicken stock is very different than what we have here.&nbsp;</p>\r\n\r\n<p>Want to know about the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">7 best places to visit in Singapore</a>? Read our blog!</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>After reading this blog we hope this will surely help you find the top 5 must-try dishes in Singapore. You can try out these delicious dishes on your trip, but wait! Do you know about the<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">&nbsp;top 10 things to do in Singapore</a>? If not, you can check out our blog&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">here.</a>&nbsp;What&rsquo;s more? We at ineedtrip offer both holiday and honeymoon packages for Singapore at unbeatable prices. Our list of inclusions will make you want to book the packages instantly and you&rsquo;re most welcomed to do that. Check them out&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">here.</a></p>',NULL,'2021-03-18 13:18:47','2021-03-18 13:18:47',NULL,1,'',0,0,'Dishes to try in Singapore','Singapore offers such vast flavors of delicacies it is hard to decide what to eat, so to help you out, here\'s your list of the must try dishes in Singapore','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(50,'A short guide to a Singapore Malaysia Honeymoon Tour','a-short-guide-to-a-singapore-malaysia-honeymoon-tour','1617618372_blog.jpg','1643983545.jpg',NULL,'Aniket Agarwal','2020-07-16',NULL,NULL,NULL,'<p>Why settle for 1 when you can hit 2 amazing destinations in a decent budget. The Singapore Malaysia honeymoon tour is one of the most sought after honeymoon combos in the world. By combining the luxury of Singapore and the raw, adventurous tourism of Malaysia, you can step out expecting a prodigious Honeymoon. We too have countless other beach destinations, but Singapore, Malaysia combo offers something far beyond. We&rsquo;ll give you a brief overview of the classic how, when, and what&rsquo;s of the combo. Whether it&rsquo;s white-sand beaches, deep blue waters, ultra-luxurious nightlife, blood-pumping watersports, or adventurous hikes, the Malaysia-Singapore Combo offers every delight for an ever-active tourist. With honeymoon packages at ineedtrip, you&rsquo;ll get to explore the countries in and out and build memories that last forever.&nbsp;</p>\r\n\r\n<p>Without further ado let&rsquo;s get started with your guide to the Singapore Malaysia Honeymoon Tour</p>\r\n\r\n<p><strong>When to visit?</strong></p>\r\n\r\n<p>The best time to visit Singapore and Malaysia is between February and April. The temperature around this time is warm and you can enjoy sightseeing with ease. Although you would hear that July to September is a good time, according to us it probably isn&rsquo;t. Singapore in particular is very busy during that time because of the GrandPrix. If you want a 4-month window it would be good to visit between November and February.&nbsp;</p>\r\n\r\n<p><strong>Which place to visit first?</strong></p>\r\n\r\n<p><strong>There&rsquo;s no particular sequence as such, we&rsquo;ll help you with 2 options, you can choose whichever you like.</strong></p>\r\n\r\n<p>Budget first</p>\r\n\r\n<ul>\r\n	<li>&nbsp;</li>\r\n</ul>\r\n\r\n<p><strong>If you want to focus a bit more on a budget then we suggest you visit Malaysia first. The flights to Malaysia from India are cheaper in comparison to Singapore. Stay there for 2-3 days and then take a bus to Singapore.</strong></p>\r\n\r\n<p>Luxury first</p>\r\n\r\n<ul>\r\n	<li>&nbsp;</li>\r\n</ul>\r\n\r\n<p><strong>If you want to start your trip with luxury then head to Singapore first. Yes, Malaysia is luxurious too, but comparing it to Singapore would be unjust. So, if budget is not an issue go to Singapore, enjoy the majestic city with ineedtrip&rsquo;s Singapore honeymoon packages and then head over to Malaysia via a flight or bus.</strong></p>\r\n\r\n<p><strong>Also, make sure you book well in advance, the flights, in particular, can eat a decent chunk of your budget. If you want to pre-plan a perfect you can customize your honeymoon package here.</strong></p>\r\n\r\n<p><strong>Ideal stay?</strong></p>\r\n\r\n<p><strong>5-6 days, 3 days in Singapore, and 2 days in Malaysia, should be enough given you are not lazy.</strong></p>\r\n\r\n<p><strong>Top Places to Visit</strong></p>\r\n\r\n<p><strong>Okay, this is the best part of this guide on the Singapore Malaysia Honeymoon Tour. Both these locations offer so many tourist hotspots and activities that it&rsquo;s very challenging to make a list of the &ldquo;must-dos&rdquo;. Nevertheless, we have noted down some of the best places you can visit to make the most of the trip. Here we go:</strong></p>\r\n\r\n<h3>Starting with Singapore</h3>\r\n\r\n<h3>Sentosa Island</h3>\r\n\r\n<p>An island located on the southern coast of Singapore, Sentosa was formerly known as Pulau Blakang Mati. Sentosa Island is separated from the main island of Singapore by a channel of water. You can reach Sentosa island either by a causeway or by taking a cable car. Sentosa island is famous for universal studios, Sentosa 4D Adventureland, etc.</p>\r\n\r\n<p>Marina Bay Sands</p>\r\n\r\n<p>Marina bay sands is a resort which is situated in front of the marina bay in Singapore. The Marina bay sands have the most expensive standalone casino. a theater, celebrity chef restaurants, a mall, it hosts art-science exhibits and lastly, it has two floating crystal pavilions. The reason why it is famous among tourists is because of its infinity swimming pool.</p>\r\n\r\n<p>Gardens By the Bay</p>\r\n\r\n<p>A nature park which spans on about 250 acres of land in the central area of Singapore, the gardens by the bay is situated adjacent to the Marina Reservoir. The gardens by the bay have three waterfront gardens famously known as Marina south, marina east Bay Central Garden. The gardens by the bay host the largest glass greenhouse in the world.</p>\r\n\r\n<p>Night Zoo</p>\r\n\r\n<p>The world&rsquo;s largest nocturnal zoo, the Night zoo is one amongst the most popular tourist spot in Singapore. There are about 900 animals in the zoo which represent the 100 species and out of these 100 species, 41% of the species are threatened species. There are six geographical zones in the zoo named Indian subcontinent, marshland, Himalayan foothills, equatorial Africa, Asian riverine forest, Nepalese river valley, and lastly Burmese river valley.&nbsp;</p>\r\n\r\n<p>Clarks Quay</p>\r\n\r\n<p>A historical riverside which is located in the Singapore river planning area Clarke Quay is situated in the mouth of the Singapore River as well as boat quay. It is a street that houses fashion brands and boutique restaurants.</p>\r\n\r\n<p>You can read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">7 Best Places to visit in SIngapore</a>&nbsp;to know more about sightseeing or another blog on the&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">top 10 things to do in Singapore</a>&nbsp;to know more about the fun part.</p>\r\n\r\n<h3>Malaysia</h3>\r\n\r\n<h3>Petronas Towers</h3>\r\n\r\n<p>Also known as Petronas twin towers or Menara Berkembar Petronas, the towers are twin skyscrapers that are situated in Kuala Lumpur. They are the largest twin towers in the world and are a landmark of the Kuala Lumpur. These twin towers are made of reinforced concrete and steel and glass facade. The spectacular view of the city from the bridge of the Petronas tower will make you want to stay there forever.</p>\r\n\r\n<p>Melaka</p>\r\n\r\n<p>Declared as a world heritage site by UNESCO, Melaka is home to colonial architecture, churches, funky street arts, and fort remains. The site is often visited by tourists wanting to visit a site that&rsquo;s &lsquo;different from beaches&rsquo; and offers a look down the history of Malaysia. If you are into historical monuments and sketching, Melaka or Malacca is worth visiting.&nbsp;</p>\r\n\r\n<p>Redang Island</p>\r\n\r\n<p>Located on the east coast of the Terengganu in Malaysia, the Redang Island is the best place to visit in Malaysia on your Singapore Malaysia Honeymoon tour, if you want a place to dive in the blue waters. The place has over 20 diving sites and is considered as one of the best diving sites in the world. You will find more than 80% of all the species in the &lsquo;coral triangle&rsquo; formed between the Philippines, Papua New Guinea, and Indonesia. The place is also a great spot for snorkeling and you can swim around turtles (they are in abundance here) and later on visit the Marine park on the island.&nbsp;</p>\r\n\r\n<p>Penang Hill</p>\r\n\r\n<p>Located in the Malacca district of Malaysia, Penang Hill is a 2732 feet high hill, which is very popular amongst tourists because of the sight from the top. You can reach the top either by hiking or taking the train, which by the way runs on the world&rsquo;s steepest tunnel track. You can stay at the hill till the sunset and view the splendid city of Penang post dark.</p>\r\n\r\n<p>Batu Caves</p>\r\n\r\n<p>Dedicated to Lord Murugan, Batu caves is a very popular Hindu Shrine in Malaysia. After visiting all the fun places and completing most of your adventure in Malaysia, go seek blessing as a couple at the Batu Caves. The place is made up of limestone and there are three main caves in particular.</p>\r\n\r\n<p><strong>Things to do</strong></p>\r\n\r\n<p>When you are visiting two stupendous destinations like Singapore and Malaysia together, that too with ineedtrip, there&rsquo;s a lot for you to do. Here&rsquo;s a shortlist of the best things to do on the Singapore Malaysia honeymoon tour.</p>\r\n\r\n<p><strong>Singapore</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Indoor skydiving</p>\r\n\r\n<p>Yes, you read that right. If you have always wanted to jump out of a plane from 15000 ft but have been scared to do so, iFly Singapore offers an experience like none other. They have tunnels built in such a way that even though you&rsquo;ll be floating just about 1 meter above the ground, you&rsquo;ll get the complete feeling of a freefall of a 15000 ft dive. This is one adventurous activity that you and your better half, have to try together on the Singapore Malaysia Honeymoon Tour. You can read more about it here.&nbsp;</p>\r\n\r\n<p>Night Safari</p>\r\n\r\n<p>The night safari in Singapore is one of its kind. We have all been to zoos of multiple cities, but have you ever visited the animals in their natural habitat in the dark? The night safari zoo in Singapore is such artistically designed that it creates a perfect natural habitat for the animals. You can witness animals like tiger, elephant, lion, etc. during the night.</p>\r\n\r\n<p>Romantic Dinner</p>\r\n\r\n<p>Something quite obvious probably, but it has to be on the list. What would a honeymoon be, without a perfect romantic dinner with your partner on the decks of Marina Bay? Bond over, talk about the future while witnessing the splendid skyline of Singapore.</p>\r\n\r\n<p><strong>Malaysia</strong></p>\r\n\r\n<p>Scuba Diving/Snorkeling</p>\r\n\r\n<ul>\r\n	<li>&nbsp;</li>\r\n</ul>\r\n\r\n<p><strong>Malaysia has many popular diving sites, like Redang Island. The place has an abundance of marine life and lively corals. The crystal clear blue water attracts several marine species and the superb water clarity makes Malaysia the perfect diving, snorkeling site.</strong></p>\r\n\r\n<p>Shopping</p>\r\n\r\n<ul>\r\n	<li>&nbsp;</li>\r\n</ul>\r\n\r\n<p><strong>Of course, we could have mentioned shopping in Singapore too, but in Malaysia, the currency factor is a big support. If you shop in You&rsquo;ll be paying double the amount you pay in Malaysia. So, shop your heart out in this beautiful paradise of earth.</strong></p>\r\n\r\n<p>Watersports, Hiking</p>\r\n\r\n<ul>\r\n	<li>&nbsp;</li>\r\n</ul>\r\n\r\n<p><strong>You can enroll yourself in tons of watersports in Malaysia to get that adventure hunger satisfied. You can do anything from parasailing, scuba diving, wakeboarding, kayaking, and more. The best part? You can also go hiking in Malaysia. Believe it or not, but the place famous for its beaches also has ample hiking opportunities, the Penang hill in particular. If mountains, high sunrises and clouds excite you, Malaysia won&rsquo;t disappoint you!</strong></p>\r\n\r\n<p><strong>Conclusion</strong></p>\r\n\r\n<p><strong>We hope we covered most of the things you would need to plan a perfect Singapore Malaysia Honeymoon tour. If you follow this guide, your honeymoon would be full of adventure, thrill, and bonding. We at ineedtrip can help you make this dream trip stress free for you. We have designed our honeymoon packages in such a way that you get to experience everything and have fun all along the trip. To know more, check out our&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore honeymoon packages</a>&nbsp;now. We have some mind-blowing deals, discounts, and pre-designed packages waiting for you.</strong></p>\r\n\r\n<p><strong>Check them out now!</strong></p>\r\n\r\n<p><br />\r\n&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 13:25:46','2021-03-18 13:25:46',NULL,1,'',1,0,'Singapore - Malaysia honeymoon tour guide','Why settle for 1 when you can hit 2 amazing destinations in a decent budget. The Singapore Malaysia honeymoon tour is one of the best combos in the world','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(51,'Fabulous Things to do on Sentosa Island Tour','fabulous-things-to-do-on-sentosa-island-tour','1617612362_blog.jpg','1643982628.jpg',NULL,'Aniket Agarwal','2020-05-01',NULL,NULL,NULL,'<p><em>Singapore&rsquo;s charm is one of its kind. The luxurious lifestyle and unique tourist attractions make it the perfect destination for the newlyweds. But the Sentosa Island of Singapore is where all the primary action happens. It might sound unbelievable but a decent number of tourists skip Singapore and plan a sole Sentosa Island Tour. With all due respect, Singapore is an amazing city but to get hold of beaches, adventure sports, and all-day fun, Sentosa Island is the place to hit. Without further ado, we&rsquo;ll let you in on our quick guide to the fabulous things you can do on your Sentosa Island Tour. Now, we&rsquo;re not suggesting that you skip Singapore, you might be able to do all these things in a single day. However, to do something and to enjoy something is totally different. If you want to know about the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">best places to visit in Singapore,</a>&nbsp;then read our blog&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">here.&nbsp;</a></em></p>\r\n\r\n<p><strong>Enjoying the beaches on Sentosa</strong></p>\r\n\r\n<p><strong>Everyone loves beaches, don&rsquo;t you? Sentosa has three beaches, namely the Siloso, Palawan, and Tanjong Beach. Our favorite is the Siloso beach, now don&rsquo;t be mistaken, all of them offer splendid beauty and alluringly blue waters. However, Siloso offers something more, the right kind of calm within a crowd. If you want to enter the most popular beach Siloso in style, you can go ziplining 450 meters from the mega-adventure park. Siloso is a lively beach with a decent number of shacks, restaurants, and bars. It is also the best place to try kayaking, skimboarding, and other light water sports.&nbsp;</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Visiting the SEA Aquarium</strong></p>\r\n\r\n<p><strong>The SEA aquarium located on Sentosa Island is one of its kind and the best part of the Sentosa Island Tour. With over a hundred thousand species of marine life, it offers spectacular sights of our tremendous ecosystem. Sharks, octopuses, dolphins, and seahorses are among the top attractions of the Sea aquarium. The large touch tanks and overhead tunnels, will get you up and close to the life that we don&rsquo;t see very often. We suggest you visit the place to cool off after a wild night party at the Siloso beach or maybe the day after the visit to Adventure Cove Waterpark.&nbsp;</strong></p>\r\n\r\n<p><strong>Indoor Skydiving at iFLY</strong></p>\r\n\r\n<p><strong>Have you ever pondered over the thrill of skydiving but the sheer risk has stopped you from trying it? Then, Indoor skydiving is one of the perfect things to do in Singapore for you. The activity is as interesting as the name. At iFly on Sentosa Island, you can get the complete experience of skydiving without any risk. You&rsquo;ll be taken in a tunnel with an instructor. Within the tunnel, the air pressure and speed will make you float, and it&rsquo;s so expertly designed, that the tunnel and time duration will give the experience of a skydiving freefall from 15000 feet. The time taken for each dive is about 1:30 which includes gearing up, training, and the actual dive. One person can opt for multiple dive sessions. A dive costs you around $80, which if you ask us isn&rsquo;t much considering you get the complete skydiving experience.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Taking a tour of the Universal Studios</strong></p>\r\n\r\n<p><strong>No one misses out the Universal Studios, it&rsquo;s the most loved part of the Sentosa Island Tour. The Universal Studios on Sentosa offers multiple rides, attractions and over 23 shows (including 3D) to entertain you throughout the day. Featured rides like the Battle Galactica and Transformers attract people the most. Your tour of the Universal studios will be like stepping into a lot of Hollywood movies altogether. You can also get pictures with your favorite characters while you explore the streets of the studio. There are many restaurants and cafes within the studio so if you get tired you can satisfy the hunger within HOLLYWOOD (figuratively).</strong></p>\r\n\r\n<p><strong>Now, the best part, if you want to explore Sentosa and the beauty of Singapore, ineedtrip has some exciting&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">packages</a>&nbsp;for you. With our packages, you&rsquo;ll get the best deals and itineraries for your Singapore and Sentosa Island tour. We even have the option for customization, if you want to add or change one of our pre-planned packages. To have a look at them, you can visit them here.</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><br />\r\n&nbsp;</p>',NULL,'2021-03-18 13:29:30','2021-03-18 13:29:30',NULL,1,'',0,0,'Fab things to do on Sentosa Island','Sentosa Island of Singapore is where the action happens. With this blog, we\'ll guide to the fabulous things you can do on your Sentosa Island Tour','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(52,'How to go on a honeymoon to Singapore in a decent budget?','how-to-go-on-a-honeymoon-to-singapore-in-a-decent-budget-','1617613831_blog.jpg','1643982115.jpg',NULL,'Aniket Agarwal','2020-04-17',NULL,NULL,NULL,'<p>Yes, you read that right. We&rsquo;ve created a short guide to help you explore and go on a&nbsp;<strong>honeymoon to Singapore in a decent budget</strong>. Don&rsquo;t worry, we won&rsquo;t ask you to backpack or be frugal. You can enjoy as much as you want if you follow the simple tips mentioned in this blog.&nbsp;The beauty of Singapore attracts millions of tourists every year around the globe. Although there&rsquo;s a common notion that Singapore doesn&rsquo;t have too much to offer for couples, we beg to differ.&nbsp;</p>\r\n\r\n<p><em>Here&rsquo;s what Singapore offers:</em></p>\r\n\r\n<p><em>1. Spectacular views from the observation deck of Marina Bay Sands.</em></p>\r\n\r\n<p><em>2. Relaxing atmosphere at Gardens by the Bay.</em></p>\r\n\r\n<p><em>3. Exhilarating nightlife at Clarke Quay.</em></p>\r\n\r\n<p><em>4. Stunning blue waters and immaculate beaches at the Sentosa Islands.</em></p>\r\n\r\n<p><em>5. Fun activities at Universal Studios.</em></p>\r\n\r\n<p><em>6.&nbsp; Awe-inspiring marine life at the S.E.A Aquarium and heart-stopping adventure sports in Sentosa.</em></p>\r\n\r\n<p>Let&rsquo;s kickstart with the things you must do to keep the budget in check.</p>\r\n\r\n<p><strong>You must book a package to go on a honeymoon to Singapore in a decent budget?</strong></p>\r\n\r\n<p>In order to keep the hotel and local sightseeing costs at a minimum, it&rsquo;s best to book a tour package. Booking a tour package ensures that you don&rsquo;t have to worry about the cost of a hotel &amp; one meal.</p>\r\n\r\n<p>If you book Singapore Honeymoon Package from ineedtrip, you&rsquo;ll save a lot on sightseeing costs. Our package includes a night safari, Panoramic City drive, Full day excursion to Universal Studios, and a tour of the Sentosa Island. If you&rsquo;ve read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">10 best things to do in Singapore</a>, you would know that the package covers most of the activities and famous tourist spots of Singapore.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>So, in order to spend less on hotels, food, and sightseeing it&rsquo;s advisable that you book a package.</p>\r\n\r\n<p><strong>You must use Local Transport</strong></p>\r\n\r\n<p>You can travel in taxis and cabs when you&rsquo;re tired after a long day out, but when you begin your day it&rsquo;s best to take public transport like the metro or bus. You&rsquo;ll not only get to see the mind-boggling infrastructure of this first world country, but you&rsquo;ll also be saving a lot on the travel cost.&nbsp;</p>\r\n\r\n<p>Get yourself and your partner a Singapore tourist pass (costs between $20-$25 per person) to get unlimited rides in public transport for 3 days. It sounds expensive but it&rsquo;s worth the cost. If you travel in cabs or taxis, you&rsquo;ll end up spending a huge chunk of your money just getting from one point to another. Don&rsquo;t you want to go for that special dinner date?</p>\r\n\r\n<p><strong>You should stick to mid-sized restaurants</strong></p>\r\n\r\n<p>We know you want to eat in high-end ultra-luxurious hotels, but we&rsquo;d rather ask you to save that money for shopping. Trust us, you don&rsquo;t want to miss out on the huge discounts on your favorite international brands. Coming back to the point, yes try eating more at the mid-sized not too fancy restaurants during day time. You&rsquo;ll get to experience the true taste of Singapore&rsquo;s delicacies without spending much of the food budget.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>If you manage to eat as we said, you should be able to have a fancy romantic dinner on a cruise with a bottle of wine and some music. It sounds expensive, but it&rsquo;ll be affordable since you&rsquo;d be saving a lot on your daily food cost.&nbsp;</p>\r\n\r\n<p><strong>Add some adventure sports</strong></p>\r\n\r\n<p>You&rsquo;ve been a good reader, so here&rsquo;s your reward, if things go as planned and you stick to strict budgets (just a few cheat moments), you would be able to try some adventure sports in Singapore.&nbsp;</p>\r\n\r\n<p>Our top three recommended activities are Indoor Skydiving, Indoor Surfing, Scuba Diving. The cost per person will vary between $50 to $100, so you can plan according to the budget in hand after shopping.&nbsp;&nbsp;</p>\r\n\r\n<p>So, that was a blog on&nbsp;<strong>honeymoon to Singapore in a decent budget</strong>. If you follow all these tips, you will complete the trip within a decent budget and create memories that&rsquo;ll last for a lifetime.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>Now that you&rsquo;re all set why don&rsquo;t you head over to our&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore Honeymoon Packages</a>&nbsp;section? We have some crazy deals and discounts tailored just for you.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 13:33:06','2021-03-18 13:33:06',NULL,1,'',0,0,'Going on honeymoon to Singapore in a decent budget','ineedtrip has created a short guide to help you explore and go on a honeymoon to Singapore in a decent budget. Don’t worry, we won’t ask you to backpack','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(53,'The 10 Best Things To Do In Singapore','the-10-best-things-to-do-in-singapore','1643805337_blog.jpg','1643805337.jpg',NULL,'Aniket Agarwal','2020-04-14',NULL,NULL,NULL,'<p><em>Singapore is undoubtedly one of the hottest travel destinations among the youth. Singapore is that all-in-one happy place just like Dubai. All-in-one means a place that offers alluring beaches, crazy night-parties, mind-boggling adventure sports, and some majestic tourist attractions. It doesn&rsquo;t matter who you go with, friends, family or your partner, Singapore&rsquo;s charms gratifies everyone.&nbsp;</em></p>\r\n\r\n<p>In this blog, you&rsquo;ll be taking a virtual tour of Singapore, and you&rsquo;ll also get to know the 10 best things to do in Singapore. You&rsquo;ll also get a link to get yourself some exciting deals from ineedtrip for a Singapore trip.</p>\r\n\r\n<h2><strong>Indoor Skydiving at iFlySingapore</strong></h2>\r\n\r\n<p>Indoor skydiving should definitely be at the top of your list. If you too have imagined yourself skydiving with your friends while watching &ldquo;Zindagi Na Milegi Dobara&rdquo;, and you&rsquo;re scared just like &ldquo;Imran&rdquo;, ifly is made for you. You will get to experience the complete thrill of skydiving with zero risks. We are in love with this place, so much that we&rsquo;ve written a separate blog on this, it goes by &lsquo;<a href=\"https://www.ineedtrip.com/skydiving-in-singapore-sep-skydive-without-jumping-from-a-plane-oh-yes/\">Skydiving in Singapore&rsquo;</a>.</p>\r\n\r\n<p>Best time to Visit:&nbsp;Anytime</p>\r\n\r\n<p>Cost:&nbsp;89$-$300 per person.</p>\r\n\r\n<h2><strong>Taking a tour of the Universal Studios</strong></h2>\r\n\r\n<p>Who doesn&rsquo;t want to spend a day around their favorite movie characters? Universal Studios, located on the Sentosa Island in Singapore, offers you a chance to dive back into childhood and explore over 10 movie-based theme parks. You&rsquo;ll find thrilling rides, amazing shows and some delicious food here. Just like Disneyland, no moment at Universal Studios is &lsquo;not fun&rsquo;. Almost all the pre-planned&nbsp;Singapore honeymoon packages&nbsp;at ineedtrip include a tour of Universal Studios, Singapore.</p>\r\n\r\n<p>Best time to Visit: Anytime</p>\r\n\r\n<p>Cost: Price varies age-wise &ndash; $41-$79</p>\r\n\r\n<h2><strong>Visiting the S.E.A. aquarium</strong></h2>\r\n\r\n<p>If you want to witness marine life diversity, this is the place to be. See the picture above? You will be walking like that on pathways, and above your head, you&rsquo;ll get to see over 800 species of marine life. Besides sharks, whales you&rsquo;ll also get to see the Manta Rays and Dolphins which are the top attractions of the place. This place is also located on Sentosa and since we at ineedtrip want to help you visit as many places as possible, we&rsquo;ve included a tour to Sentosa Island within all the&nbsp;Singapore honeymoon packages.&nbsp;</p>\r\n\r\n<p>Best time to Visit: Weekdays between 10:00 AM &ndash; 12:00 PM</p>\r\n\r\n<p>Cost: $41 per person</p>\r\n\r\n<h2><strong>Stepping in the wild at the world&rsquo;s first night zoo</strong></h2>\r\n\r\n<p>We&rsquo;ve all visited zoos in our city/state, then what&rsquo;s so different about this one? Well, the &lsquo;Night Safari&rsquo;, in Singapore is a nocturnal zoo. You&rsquo;ll be taking a night tour to see over 100 species of animals, living in their natural habitat. The wildlife park has a quirky design; all the boundaries, lights, wires are placed in such a systematic way that they look like a part of the surroundings. You can either walk on the pre-designed pathway or take the tram to get a complete tour.</p>\r\n\r\n<p>Timings: 7:15 PM-11 PM</p>\r\n\r\n<p>Best time to visit:&nbsp;Anytime</p>\r\n\r\n<p>Cost:&nbsp;$40 (for kids), $57 (for adults)</p>\r\n\r\n<h2><strong>Scuba Diving at Sentosa Island</strong></h2>\r\n\r\n<p>If you&rsquo;re on honeymoon, diving is one of the&nbsp;best things to do in Singapore for couples.&nbsp;There are 5 different beaches, where you can dive to see lively and vivid coral reefs. While&nbsp;scuba diving in Singapore,&nbsp;you will get to see multiple species of fishes, turtles, seahorses, colorful nudibranchs and even sharks (hope you see them from a decent distance).</p>\r\n\r\n<p>Best time to Dive: January to April</p>\r\n\r\n<p>Cost:&nbsp;$300-$600</p>\r\n\r\n<h2><strong>See Singapore from the deck of Marina Bay Sands</strong></h2>\r\n\r\n<p>The epicenter of Singapore&rsquo;s city tourism is Marina Bay. The district has museums, malls, tourist attractions like Gardens By The Bay and the Marina Bay Sands hotel. What you must do is, get yourself tickets of the Marina Bay Sands Skypark observation deck. Once you&rsquo;re up there, you will be able to see the spectacular skyline of Singapore along with a top view of the majestic Gardens By The Bay.</p>\r\n\r\n<p>Best time to visit:&nbsp;Visit in the evening around sunset for a picturesque view.</p>\r\n\r\n<p>Cost:&nbsp;Marina Bay is free to visit, but if you wish to go to the observation deck, it will cost you $20 per person.</p>\r\n\r\n<h2><strong>Gardens by the Bay</strong></h2>\r\n\r\n<p>These Gardens are home to over 15 lakh plants and 3 domes, each offering a unique insight into nature&rsquo;s beauty. Out of the 3 domes, one which is the most famous among couples is the flower dome. You see those three tower-like structures in this image? They are called Supertrees, and there are a total of 18 supertrees within the supertree grove. These supertrees offer a top view of the Gardens by the Bay and the Marina Bay. They provide shade to people visiting in the day, and at night they come alive with music and delightful display of lights.</p>\r\n\r\n<p>Best time to visit:&nbsp;Between 5 Pm to 8 Pm</p>\r\n\r\n<p>Cost:&nbsp;Entrance to the gardens and supertree grove is free. To visit the domes, you will have to pay a fee of $28 per person.</p>\r\n\r\n<h2><strong>Hitting the beaches on Sentosa Island</strong></h2>\r\n\r\n<p>These Gardens are home to over 15 lakh plants and 3 domes, each offering a unique insight into nature&rsquo;s beauty. Out of the 3 domes, one which is the most famous among couples is the flower dome. You see those three tower-like structures in this image? They are called Supertrees, and there are a total of 18 supertrees within the supertree grove. These supertrees offer a top view of the Gardens by the Bay and the Marina Bay. They provide shade to people visiting in the day, and at night they come alive with music and delightful display of lights.</p>\r\n\r\n<p>Best time to visit:&nbsp;October-December</p>\r\n\r\n<p>Cost:&nbsp;Free</p>\r\n\r\n<p><strong>Go Clubbing</strong></p>\r\n\r\n<p>Clarke Quay, is the hub for nightlife in Singapore. Even if you don&rsquo;t feel like partying, the atmosphere here will exhilarate you. The place has many pubs and restaurants with loud music, live bands, and karaoke. Get yourself some shots at the Chupitos Shots Bar, or go bar-hopping, to make the most of the night, but make sure that you don&rsquo;t get sloshed.</p>\r\n\r\n<p>Best time to visit:&nbsp;Night</p>\r\n\r\n<p>Cost: $100-$500</p>\r\n\r\n<h2><strong>Visiting Chinatown for Shopping</strong></h2>\r\n\r\n<p>There&rsquo;s a golden rule for every traveller, &lsquo;the trip must end with shopping&rsquo;. You would definitely want to get your hands on to some cheap souvenirs or &lsquo;Made in China&rsquo; items at Chinatown. The place has a different aura all together, vendors calling you out to check their items, sweet smell of food cooked by the street, and a huge variety of things to choose from, all of this will make you want to stay there forever.</p>\r\n\r\n<p>Best time to visit: Anytime</p>\r\n\r\n<p>Cost:&nbsp;Depends on your budget.</p>\r\n\r\n<p><strong>Read our blog on the&nbsp;<a href=\"https://www.ineedtrip.com/7-best-places-to-visit-in-singapore/\">must-visit places in Singapore</a>&nbsp;to know more about your sightseeing options.</strong></p>\r\n\r\n<p><strong>Now that, you know what about the best things to do in Singapore, why not have a look at the best Singapore tour packages? We at ineedtrip offer customized holiday and honeymoon packages, where you can make an itinerary of your choice and your budget. You can build yourself the cheapest&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore tour packages</a>&nbsp;and what&rsquo;s best? We&rsquo;ll even give you some exciting offers!</strong></p>\r\n\r\n<p><strong><a href=\"https://www.ineedtrip.com/singapore-packages/\">Customize now.</a></strong></p>\r\n\r\n<p>&nbsp;</p>',NULL,'2021-03-18 13:39:50','2021-03-18 13:39:50',NULL,1,'',0,0,'Best things to do in Singapore','Singapore is undoubtedly the best place for travel around the world. We\'ve created a list of the 10 best things to do in Singapore. Come have a look!','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(54,'Skydiving in Singapore | Skydiving without jumping from a plane? Oh! YES','skydiving-in-singapore-skydiving-without-jumping-from-a-plane-oh!-yes','1617611211_blog.jpg','1643804970.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p>It sounds absurd, yes, but it is totally possible to experience skydiving in Singapore, without jumping from an aircraft. How, you ask? You&rsquo;ll first have to board a plane. No, not to jump out of it, but to travel to the location where you&rsquo;ll be diving i.e.&nbsp;Singapore.</p>\r\n\r\n<p>Besides its beaches, luxury and shopping fests, Singapore is a dream place for adventure lovers too. You can try adventure sports like driving a sports car on an F1 track, reverse bungy jumping or this special SKYDIVING.&nbsp;</p>\r\n\r\n<p>Let&rsquo;s get into the details of that skydiving escapade that we&rsquo;ve mentioned.</p>\r\n\r\n<p><strong>Where to experience skydiving in Singapore?</strong></p>\r\n\r\n<p>To experience this unique skydiving in Singapore, you will have to head over to iflyworld at&nbsp;<strong>Sentosa Island</strong>.</p>\r\n\r\n<p>&nbsp;iFlyworld offers indoor skydiving where you&rsquo;ll get all the feels of skydiving. The most surprising fact? You&rsquo;ll be flying at about 5 feet above the ground.&nbsp;</p>\r\n\r\n<p>The entire flight session lasts for one and a half hours, and they&rsquo;ll even train you before your flight.<em>&nbsp;How will you fly?</em>&nbsp;Well, they have an inbuilt wind tunnel, which has air gushing in and out at a fast pace, making you float in the air. As per the reviews by people who have visited Singapore, with our&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\"><strong>Singapore holiday packages</strong></a>, the freefall experience is very similar to diving from a plane 13000 feet above the ground. The best part? It&rsquo;s in SINGAPORE and it&rsquo;s completely safe.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>How much does it cost?</strong></p>\r\n\r\n<p><strong>Before you finalize your trip based on the prices, we&rsquo;ll give you two more reasons to visit the&nbsp;<strong>Sentosa Island</strong>.</strong></p>\r\n\r\n<p><br />\r\n<strong><strong>1. S.E.A Aquarium</strong>: One of the largest Sea aquariums around the world, and probably the best part of the tour, this underwater aquarium in Singapore will let you witness over 100,000 marine animals, some so beautiful that you won&rsquo;t be able to stop gazing. </strong></p>\r\n\r\n<p><strong>2.<strong>Universal Studios</strong>: YESSS! You will be visiting multiple theme parks and thrilling rides within the studio that&rsquo;ll hit you with nostalgia. Battle Galactica and Transformers the ride, are some of the best theme-based rides around the world. If you are a movie lover, there won&rsquo;t be a single second where you don&rsquo;t enjoy it!</strong></p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>Are you already imagining yourself in Singapore? Before you go searching for Singapore tour packages, do have a look at&nbsp;<strong>ineedtrip&rsquo;s</strong>&nbsp;customized holiday and honeymoon packages. We&rsquo;ll not only take you to&nbsp;<strong>Sentosa Island</strong>&nbsp;but also give you a complete tour of Singapore.&nbsp;</strong></p>\r\n\r\n<p><strong>Want to know more about Singapore? Visit this blog on&nbsp;<a href=\"https://www.ineedtrip.com/the-10-best-things-to-do-in-singapore/\">Top 10 Must-do activities in Singapore.&nbsp;</a></strong></p>\r\n\r\n<p><strong>Coming back to the question, the price! Indoor&nbsp;<strong>skydiving in Singapore</strong>&nbsp;will cost you between $89 to $299 (Rs 6300-Rs 20000). This amount is very low in comparison to the cost of actual skydiving which is around Rs 7500 to Rs 28000 globally.&nbsp;</strong></p>\r\n\r\n<p><strong>Even with that cost, this indoor skydiving experience is something that you must not miss out on. If you&rsquo;re worried about the budget, we&lsquo;ve got you covered. We&rsquo;ll take you to Singapore with the best itinerary and lowest prices. Check out our customized&nbsp;<a href=\"https://www.ineedtrip.com/singapore-packages/\">Singapore holiday packages</a>, you won&rsquo;t get such crazy deals anywhere else!</strong></p>\r\n\r\n<p><strong>See ya later, folks!</strong></p>',NULL,'2021-03-18 13:44:44','2021-03-18 13:44:44',NULL,1,'',0,0,'Skydiving in Singapore without jumping from a plane','It sounds absurd, yes, but it is totally possible to experience skydiving in Singapore, without having to jump from an aircraft. How, you ask? Let\'s see','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(55,'How to choose the best honeymoon package to Maldives','how-to-choose-the-best-honeymoon-package-to-maldives','1617610579_blog.jpg','1643804462.jpg',NULL,'Aniket Agarwal','2021-02-05',NULL,NULL,NULL,'<p>Talking about a destination or the perfect spot for a honeymoon, Maldives is what instantly comes to one&rsquo;s mind. If you are on the lookout for the best honeymoon package to Maldives, then you are in the right place. The Maldives is a place that pops in your head whenever you think of a romantic place with overwater villas, the sea that does not seem to end, sunsets that are dreamy, and services that are considered to be the best.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>The Maldives tops the list of everyone&rsquo;s go-to honeymoon destination, and no-one can doubt that as the place is simply magical. If you tapped on this article, we are sure that you must be wondering about the best honeymoon package to Maldives. Talking about the packages and booking your honeymoon trip, several things need to be considered before you plan the perfect trip of your life.Careful planning needs to take place in order to ensure that you have the best and the most romantic time during your stay.</p>\r\n\r\n<p>best honeymoon packages to Maldives Pic Creds: Instagram/@katharina_fenners.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p>What else? Weddings are not all fun and games. A lot of effort goes into the plan of a wedding, and it is also very overwhelming to go through with it. We know how hectic it can get, and hence, we understand your need to plan a honeymoon that allows you to chill, relax, and enjoy quality time with your partner. The Maldives makes for an incredible honeymoon spot because the place is peaceful, calm, and simply magical. However, it can be a task to find the perfect resort, plan your days, the timing, budget, and various other factors. In this article, we are here to help you find the best honeymoon package to Maldives. We will help you out in every possible way, and we will also ensure that we guide you to find the right package depending upon your budget, the timing, and all the other vital factors that need to be considered. Now that we have your utmost attention, let&rsquo;s get started, shall we?</p>\r\n\r\n<h2><strong>When Is The Best Time To Take A Trip To The Maldives? </strong></h2>\r\n\r\n<p>The Maldives is a place that has a very tropical climate at all times. This beautiful place with soft sand and the beachy wave is touching your feet, the sun shining and smiling, and the perfect water is what will make your Maldives trip the best. November to April From November to April, the season is the best time to visit Maldives. It is considered to be the perfect time to book your honeymoon as the weather is pleasant. Most of the attractions of the place are also functioning at this time of the year. If you are planning to go on your honeymoon between November and April, you should ensure that you plan it and book your packages beforehand. Last-minute bookings might not be possible, and opting for packages will also ensure that you get a good deal. May to October Talking about this time of the year, the Maldives is quite rainy, as it is the rainy season from May to October. This is the time when the place experiences quite heavy torrential rainfalls, and not many attractions and activities are operational during these months. However, this time of the year is great for those who want to grab amazing deals and honeymoon packages in terms of money. If you are on a budget, you should definitely choose a honeymoon package to the Maldives during this time of the year.</p>\r\n\r\n<h2><strong>The Best Maldives Honeymoon Packages: Consider Your Budget honeymoon to maldives.</strong></h2>\r\n\r\n<p>Not everyone affords a luxurious stay, and hence, everyone has a budget planned for their honeymoon. When it comes to choosing packages, you can get your hands on both luxurious high-end packages as well as budget-friendly packages that won&rsquo;t be too heavy on your pocket. A Luxurious Stay If budget is not an issue for you, then you can choose this best honeymoon package to Maldives by choosing this package you can enjoy the luxuries of a resort, get your hands on the water villas, and much more. A luxurious stay might be a little heavy on your pocket, but it will be worth every penny. A Budget-friendly Stay If you are on a budget, you can still get your hands on the best honeymoon package to Maldives by choosing budget-friendly packages. You might have to back down from a few luxurious attractions, but you will still get to enjoy the beauty and the grace of the Maldives, and that is really the best part. ineedtrip:</p>\r\n\r\n<h2><strong>The Best Company To Opt For Planning The Best Package For Your Honeymoon To Maldives</strong></h2>\r\n\r\n<p>ineedtrip is the best travel company that will help you every step of the way. From selecting the prices of your honeymoon package, a variety of packages to choose from, and customization according to your needs, ineedtrip is a company that you can rely on. The best part about our operations is that we provide 24&times;7 support, and we have discounts running year around. Final Words From scuba diving to snorkeling, from sightseeing to enjoying the sea, plan a trip with ineedtrip, and grab the best honeymoon package deal to plan your trip to the Maldives. The Maldives is simply a beautiful and picturesque place and ineedtrip will make it a point to help you choose the right honeymoon package with your partner.</p>',NULL,'2021-03-18 20:10:48','2021-03-18 20:10:48',NULL,1,'',0,0,'How to choose the best honeymoon package to Maldives','If you are looking for packages that can help you enjoy the trip and make the most of the trip. Here\'s how to choose the best honeymoon package to Maldives.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(56,'How to Plan a Dinner Date on Honeymoon in Maldives','how-to-plan-a-dinner-date-on-honeymoon-in-maldives','1617610296_blog.jpg','1643803984.jpg',NULL,'Aniket Agarwal','2021-01-12',NULL,NULL,NULL,'<p>Magnificent blue waters, enticing beaches formed by the little granules of white sand, resorts providing a one-of-a-kind experience. There are a lot of beautiful reasons why the Maldives is preferred by tourists, especially for couples looking for a romantic experience. Now you can&rsquo;t miss going on a romantic date for your partner on a honeymoon, can you?</p>\r\n\r\n<p>Today, via this article, we&rsquo;ll tell you how to go about planning a dinner date on honeymoon in Maldives. Without any further ado, let&rsquo;s jump right into it! honeymoon to maldives Best time to plan a honeymoon in Maldives. With a tropical climate and an average temperature of 25-30 C, Maldives can be visited at any time of the year. But December to April is generally considered to be the perfect time to visit this beautiful land, as the rains have subsided by then and there are very few episodes of rain you might encounter (if at all). Plan Your Honeymoon as early as possible Honeymoon in Maldives is a literal dream, so it makes sense that it is one of the most popular tourist destinations on the globe.</p>\r\n\r\n<p>And this is precisely why you must search for hotels and resorts as soon as possible because the best of the rooms and locations are quickly booked up. Or you can book your Maldives honeymoon package with us and we&rsquo;ll handle everything. Planning for the date There are a wide variety of dining options for you to choose from when you begin planning the date on honeymoon in Maldives. Here are some of the options which you can consider and choose from depending on your preferences and budget:</p>\r\n\r\n<h2><strong>Piano Deck Dining date on honeymoon in Maldives </strong></h2>\r\n\r\n<p>Pic Creds: Instagram/@tide.maldives</p>\r\n\r\n<p>Water all around, you with your partner on a wooden deck, hand in hand: dining experiences can&rsquo;t get any more romantic, can they? Well, this is possible at Baros Maldives, a boutique hotel which would undoubtedly provide you with an experience you&rsquo;ll never forget.</p>\r\n\r\n<h2><strong>Treetop Dining Pic Creds:</strong></h2>\r\n\r\n<h3>Instagram/@waldorfastoriamaldives At the Waldorf Astoria Maldives Ithaafushi, you don&rsquo;t just get luxury; you get a unique experience that you can&rsquo;t find anywhere else. And one of their more popular settings is dining in a treehouse. Explore the calm and serenity of nature while looking into each other&rsquo;s eyes in a surreal atmosphere. This will probably be the best setup for a date on honeymoon in Maldives. Underwater Dining best restaurants in Maldives Dining in the company of fishes and oysters? That does sound like the plot of some animated sci-fi movie, right? But it is possible in the Maldives! There are multiple underground restaurants in the Maldives that provide you with unparalleled services and a memory you&rsquo;ll never be able to forget. So if you&rsquo;re planning to have a honeymoon in Maldives, you must not miss out on this exciting endeavour for your date night.</h3>\r\n\r\n<h2><strong>The Majestic Gardens at Soneva Fushi Pic Creds:</strong></h2>\r\n\r\n<p>Instagram/@katharina_fenners One of its kind, Soneva Fushi has made a separate name for itself, thanks to its luxurious private villas, a stretch of beach to enjoy for yourself, gorgeous gardens, and all of this on a desert island! There&rsquo;s an open-air lounge, there&rsquo;s lots of wine, there are homemade chocolate and icecream, innumerable dining options, and more. Combining the classic tale of Daniel Defoe&rsquo;s Robinson Crusoe with exquisite splendor, Soneva Fushi is something you simply can&rsquo;t miss. Floating Breakfasts date on honeymoon in Maldives.</p>\r\n\r\n<p>Pic Creds: Instagram/@chandravillas</p>\r\n\r\n<p>Have a laid-back, chilled morning date (and by that we mean, a romantic breakfast because why remain restricted to dinners, eh?) at the island resort Amilla Fushi with a concept that is as interesting as it is unique! They serve these in the pool, in the overwater houses, and the residences and you can enjoy a lovely breakfast with your partner here. Private Destination Dining date on honeymoon in Maldives.</p>\r\n\r\n<p>Pic Creds: Instagram/@tuideutschland</p>\r\n\r\n<p>At Huvafen Fushi, an adults-only island, you get to enjoy staying at some of the most modern and mesmerizing villas. You also get to dine at a private table partially submerged in water. Just the two of you, without a care of anything in the world.</p>\r\n\r\n<p>Why ineedtrip&rsquo;s honeymoon packages? Planning, searching, further planning, and managing: and still you can&rsquo;t be sure of getting a tour devoid of any troubles. What is it that you want? A happy honeymoon in Maldives, with happy memories to relish and cherish, or a journey that is full of problems? The answer is obviously the former, right? This is why you must look into ineedtrip&rsquo;s customized honeymoon packages. Our packages take over the responsibilities of planning and managing the trip according to your preferences and restraints. With multiple budget-friendly options to choose from, ineedtrip is that one-stop for all your needs and wishes. For the dream honeymoon in Maldives, ineedtrip&rsquo;s honeymoon packages are the best!</p>',NULL,'2021-03-18 20:17:00','2021-03-18 20:17:00',NULL,1,'',0,0,'Dinner Date on Honeymoon in Maldives','Magnificent blue waters, enticing beaches formed by the little granules of white sand, resorts providing a one-of-a-kind experience. There are a lot of','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(57,'5 Best Offbeat Tours for Traveling to Maldives on Honeymoon','5-best-offbeat-tours-for-traveling-to-maldives-on-honeymoon','1617608414_blog.jpg','1643801934.jpg',NULL,'Aniket Agarwal','2021-01-11',NULL,NULL,NULL,'<p><strong>Maldives:</strong></p>\r\n\r\n<p>The mere mention of the name evokes beauty, freshness, and adventure in one&rsquo;s mind. And why not? The country offers gorgeous beaches, stunning clear waters, sparkling sand, peaceful palm trees, serene blue skies, diverse marine life, and much, much more. It&rsquo;s like a little piece of paradise on the earth. Known for being one of the most romantic places on this planet, the Maldives is quite popular among couples looking for a suitable honeymoon location to travel to. And therefore, traveling to Maldives on honeymoon is something many, many couples plan for. But is that what you want too? The same old touring a place, clicking some pictures and coming back? Where&rsquo;s the fun in all that? Why not explore a bit, do some unusual activities together as a couple which would further serve to increase the dynamics between you two. Piqued? Keep reading the article where we show you some of the most offbeat things to do in the Maldives on honeymoon.</p>\r\n\r\n<p><strong>The Best Time to Travel to the Maldives</strong></p>\r\n\r\n<p>While this beautiful country observes sunny days and a warm climate throughout the year, it does have a dry and a wet season. The best time to visit the Maldives is generally between November and April, as this is the time with minimum levels of precipitation and mostly warm weather. But since this is also the busiest season for the tourism industry in the Maldives, you&rsquo;ll observe higher prices than usual. If you choose to travel between May and October, you&rsquo;ll see cheaper accommodation and lower prices in general. But you&rsquo;ll also have to face strong winds and constant rains throughout the day. Best Offbeat Tours for Travelling to Maldives on Honeymoon There can be a wide variety of things you can try out when you&rsquo;re traveling to Maldives on honeymoon, from dining in seclusion to going on a fishing trip to visiting a historical site. Here are the top 5 offbeat tours you can take on your tour to the Maldives:</p>\r\n\r\n<p><strong>Try Your Hand at Snorkeling</strong></p>\r\n\r\n<p>For the unaware, snorkeling refers to the activity of swimming on a body of water or through it while wearing a diving mask, fins, and a snorkel [a breathing tube]. One of the most unusual and fun ways to spend your honeymoons, snorkeling is full of fun and adventure. Viewing the marine life at such close proximity is something you&rsquo;ll cherish for the rest of your life. Most of the resorts in the Maldives have their own private reefs which means you don&rsquo;t have to go anywhere and you can snorkel around to your heart&rsquo;s content. The reef fish often surrounds the humans snorkeling around and it&rsquo;s a visual treat with a blast of colors around you. Not just that, you can often come across small sharks (they won&rsquo;t eat you, don&rsquo;t worry!), turtles, and a wide variety of marine life so closely and vividly. It&rsquo;s fascinating to say the very least. Even if you just put on a mask, and lay somewhere, the fishes will come to you. It&rsquo;s an experience you&rsquo;ll never ever forget and to say it&rsquo;s an activity which everyone must try their hands on is stating the obvious.</p>\r\n\r\n<p><strong>For the History Lover in You</strong></p>\r\n\r\n<p>If you are a couple who loves roaming in the ancient alleyways of history, the Maldives offers several attractions that will surely amaze you. Old Friday Mosque: Also known as the Hukuru Miskiy, this is one of the oldest mosques in the Maldives and its majestic nature and atmosphere is something every tourist admires. It has gorgeous coral engravings and it also has been listed as a UNESCO heritage site.</p>\r\n\r\n<p><strong>Utheemu</strong>:</p>\r\n\r\n<p>If you&rsquo;re interested in the history of the Maldives, you simply can&rsquo;t afford to miss visiting this place. The very famous Sultan Mohamed Thakurufaanu was born here, known for his bravado against the Portuguese invaders, and plays a major role in the history of the Maldives. National Museum of Maldives: No historical tour is complete without visiting a museum and it&rsquo;s absolutely true in this case as well. This stunning place brings to you the entire history of the region in one place. The Museum is built in a palace and therefore, the museum is as fascinating as the different items being displayed in it.</p>\r\n\r\n<p><strong>Mulee aage</strong>:</p>\r\n\r\n<p>Once the Sultan&rsquo;s palace, Muleeaage is now the president&rsquo;s residence, which means you aren&rsquo;t allowed to enter it. That shouldn&rsquo;t stop you from visiting the place and admiring its beauty! For the history lovers traveling to the Maldives on honeymoon, these sites are something which must not be missed at any cost. Visit a Local Island maldives on honeymoon There are many, many, many islands across the Maldives and you can arrange a trip to one of those islands that have been kept for the tourists. Visiting one of these islands gives you a glimpse into the life of Maldivian culture. Many of these islands are inhabited by folks who still live with the very basic of amenities, the same way their ancestors used to, several hundred and thousands of years ago. It&rsquo;s an enlightening experience and you get to feel the soul of this country up close. You get to watch their routine, their different activities like the way they catch and dry their fishes, or how they build their boats. Not just that, you and your partner will have shared memories to smile and laugh over years from now.</p>\r\n\r\n<p><strong>Fishing in the Maldives</strong></p>\r\n\r\n<p>maldives on honeymoon What better way to spend a different honeymoon in the Maldives than sitting side by side, patiently, as you wait for a fish to catch your bait. There are multiple fishing experiences here that you can try out for yourself: Night Fishing: Leave your resort at sunset and ride the Dhoni, the traditional transport medium in the Maldives, and get ready to catch a wide variety of fishes like snappers, jacks, and emperors. Shore Fishing: With so many species roaming around, you&rsquo;ll easily get to catch some fishes from small groupers to breams and jacks. Jigging: This is mainly used in sportfishing and you get mostly the same fishes as with shore fishing along with tunas, amberjacks, and barracudas. Several folks book liveaboards for 7 days to try and catch the majestic big GT.</p>\r\n\r\n<p><strong>Enjoy a secluded experience with your partner </strong></p>\r\n\r\n<p>Pic Creds: atmosphere-kanifushi The vast number of resorts that the Maldives has means you always get to choose which type of experience you want. If you&rsquo;re traveling to Maldives on honeymoon, it doesn&rsquo;t necessitate that you travel and explore all day long. Sometimes, holding hands and gazing at each other holds more mystery and excitement than a full day&rsquo;s frenzied activity. At the Maldives, you can experience some of the finest culinary experiences at the most unlikely of locations (there&rsquo;s even an underground restaurant!). Not just that, some resorts can arrange expeditions to secluded islands where you can enjoy each other&rsquo;s company without any interruptions whatsoever. Depending on the resort you&rsquo;re living in, there are spas, there are underground wine cellars, there are private islands, and so much more.</p>\r\n\r\n<p>There&rsquo;s everything for everyone in this gorgeous country and is definitely the best place for your perfect honeymoon! Why You Must Purchase ineedtrip&rsquo;s Honeymoon Packages It can be quite overwhelming and confusing when you get down to it. From planning to choosing the right resort and restaurant, while also managing your budget: it can all get very daunting and messy sooner than you spell Honeymoon. Choosing one of our multiple packages makes sure that you get to choose what you want however you want it, with the help of our years of experience. We accommodate all types of budget plans and any customization which you might be looking for. And not only that, but we also make sure, at every step of your journey, that you get to extract the most out of your experience, without any hassles whatsoever. Hence if you&rsquo;re traveling to Maldives on honeymoon, you must try out our Maldives honeymoon packages that are here to make your simpler and fun!</p>',NULL,'2021-03-18 20:23:50','2021-03-18 20:23:50',NULL,1,'',0,0,'Best Offbeat Tours for Traveling to Maldives on Honeymoon','Let\'s set aside the boring &quot;must-dos&quot; and explore Maldives to the fullest. Check out this blog on the best offbeat tours in Maldives on honeymoon.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(58,'5 Best Restaurants in Maldives - Updated for 2021','5-best-restaurants-in-maldives-updated-for-2021','1617607507_blog.jpg','1643801766.jpg',NULL,'Aniket Agarwal','2021-01-11',NULL,NULL,NULL,'<p>Maldives is one of the most trending tourist places. The island is a tropical nation in the Indian Ocean, which is surrounded by more than 1000 coral islands, and is known for its beaches, islands, busy markets, and much more. The Maldives is no less in restaurants, there are many popular restaurants in the Maldives that serve some of the best cuisines in the world. Every restaurant in Maldives offers a unique ambiance and a different taste to the most popular dishes. We get it, when there&rsquo;s so much variety and so much goodness out there, it&rsquo;s difficult to choose the place to eat at. So here in this blog, we will help you with the 5 best restaurants in Maldives where you can savour your taste buds.</p>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<p><strong>CONRAD MALDIVES RANGALI ISLAND</strong> &nbsp;(Underwater Dining) Pic Creds: Instagram/@zorymory Conrad</p>\r\n\r\n<p>Maldives Rangali Island offers exclusive dining and is considered to be the first underwater dining restaurant in Maldives. They have an amazing ambiance, the wooden floor creates a perfect contrast with the ocean&rsquo;s turquoise-colored water and the off-white furniture. Overall, the place feels like a fairy dream coming to life. About the food? Their European cuisines have made them very popular amongst tourists and the best of their menu is lobster and champagne. But it doesn&rsquo;t mean they don&rsquo;t offer a dive in Maldives&rsquo; authentic taste, you&rsquo;ll also find the most popular Maldivian dishes on their menu. Conrad Maldives is also considered to be one of the best resorts with large rooms, villas, and water sports. However, their main highlight is underwater dining which makes this restaurant one of the best restaurants in Maldives.</p>\r\n\r\n<p><strong>SEA HOUSE</strong> &ndash; Maldives Tripadvisor/Tiffany Y</p>\r\n\r\n<p>Sea House in Maldives is considered to be one of the best restaurants in Maldives for couples. This is a perfect place to dine with your partner and spend quality time. This restaurant gives an amazing experience with a seaside view and mouth-watering food. They use Maldivian spices in all of their dishes and you will get an authentic taste/blend of Maldives in all the local and international cuisines. Head towards the Sea House Restaurant to enjoy a lunch by a seaside view or book the corner seat and go for a dinner date.</p>\r\n\r\n<p><strong>THE SPICE</strong> (Atmosphere &ndash; Kanifushi) Pic Creds: atmosphere-kanifushi</p>\r\n\r\n<p>This is one of the poshest restaurants in Maldives located on the Kanifushi island. The restaurant is a part of the atmosphere island resort that offers luxury to a whole another level. The Spice Restaurant has a beautiful and elegant ambiance with outdoor sitting. With the front water view of the Indian ocean and mesmerizing sunset view, The Spice is definitely worth visiting. The restaurant boasts itself as one offering &lsquo;all you can eat&rsquo; breakfast, lunch, dinner buffets. So, if you&rsquo;ve had a long day without much food, you know what place to hit ;).</p>\r\n\r\n<p><strong>REETHI RESTAURANT</strong> Pic Creds: Instagram/@ahusan_shareef</p>\r\n\r\n<p>As you can see in the picture above, Reethi is more of a traditional restaurant. It is one of the finest restaurants for an all dressed, sophisticated dinner date. The restaurant offers tempting dishes with stunning surroundings and has the concept of an open kitchen with floor to ceiling glass screens, enabling guests to see the work of celebrity chefs. You&rsquo;ll find the dishes loaded with their Asia &ndash; pacific Mediterian flavors. They have theme-based servings, like on Monday the restaurant serves its best Italian dishes. On Fridays, they go for Indian cuisines with a tandoor, Maldivian spices curry. However, for the rest of the week, they go for a la carte. If you are a big foodie and want some amazing food, Reethi is one of the best restaurants in Maldives for you.</p>\r\n\r\n<p><strong>MUKARA RESTAURANT</strong>&nbsp;&ndash; Mirhi Island Tripadvisor/Tiffany Y</p>\r\n\r\n<p>Many restaurants in Maldives sit over water, but Muraka is exceptional. It has the most creative and luxurious setting, an open floor section providing a window to the sea with beautiful views. You can find creativity in their food as well, besides the superb taste, they have an outstanding presentation for all their dishes. Although their cuisine mainly includes grill and seafood, you can also try out their Maldivian cuisines and vegetarian food. We bet you can spend a complete day here. Conclusion Now that we&rsquo;re done with the list of the 5 best restaurants in Maldives for you, let&rsquo;s get to the real deal. Do you want to enjoy your trip to the fullest? Without stressing over your stay and sightseeing? Of course, you do! Just get on to our Maldives Packages to book the cheapest tour packages to Maldives. You can also customize the package completely, so what are you waiting for? We&rsquo;ve got limited packages, book yours now!</p>',NULL,'2021-03-18 20:52:48','2021-03-18 20:52:48',NULL,1,'',0,0,'Best Restaurants in Maldives - Updated for 2021','Maldives has so much unique taste and so many luxurious restaurants, it gets difficult to choose. So, here is the list of 5 best restaurants in Maldives.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(59,'Top 5 Must Try Dishes in Maldives','top-5-must-try-dishes-in-maldives','1617604743_blog.jpg','1643617455.jpg',NULL,'Aniket Agarwal','2020-12-11',NULL,NULL,NULL,'<p>Maldives! Ah! The heaven on earth. Although it attracts tourists year around the year 2020 has got something special. Even with the Covid-19 lockdown, the global problems, everything, the beauty of Maldives couldn&rsquo;t stop people from visiting the place. Now that things are almost normal, Maldives is seeing many celebrities doing circles of the amazing destination. About Maldives? Maldives doesn&rsquo;t need any introduction and we&rsquo;ll go out of words if we start describing its beauty. Many people are only known about the beauty of Maldives but we can say that Maldives is just A1 in all the things whether it is its places, resorts and of course the most importantly food. While we&rsquo;ve talked about sightseeing, activities, resorts in other blogs, today we&rsquo;ll talk about the must try dishes in Maldives. Without further ado let&rsquo;s start with the list of the delicaices that&rsquo;ll make your mouth watery.</p>\r\n\r\n<p><strong>MALDIVIAN VEGETABLE CURRY</strong> must try dishes in Maldives Pic Creds: Instagram/@nomadic_chefs</p>\r\n\r\n<p>Just like the Indian curry, Maldives too has its own curry, popular as the Maldivian vegetable curry. Maldives where you will find a lot of seafood has this gem of a veggie dish that people often miss out. Maldivian curry is also known as Tharukaaree Riha, and as you can guess by the name, the curry is full of mixed vegetables like carrot, beans, pumpkin, potato, along with some tempting aroma of curry leaves, pandan leaves and is served hot. This is the perfect meal for all vegans visiting the Maldives and one of the must-try dishes in Maldives if you&rsquo;re one of the brick and bones one.</p>\r\n\r\n<p><strong>GARUDHIYA</strong> must try dishes in Maldives Image Creds: Instagram/@off_toseetheworld</p>\r\n\r\n<p>This is one of the traditional dishes in Maldives. Garudhiya or Garudiya is one of the simplest dishes you can try in Maldives. It It is a fish soup made up of the freshness of sea fish along with water and some salt. The dish is very light on your stomach and well, perfect for breakfast after a heavy party night. Garudhiya is the best option for fish lovers. It is served hot with some lime, chili, and onions. A perfect healthy, light and tasty meal for all our fish eating friends out there. Garudhiya is definitely one of the must try dishes in Maldives.</p>\r\n\r\n<p><strong>BOSHI MASHUNI</strong> must try dishes in Maldives Pic Creds: Insta/@thetravelbugindia</p>\r\n\r\n<p>Boshi Mashuni is also one of the most healthy dishes in Maldives. Why are we focusing on healthy dishes so much? We know you&rsquo;ll be partying there and your stomach has to be light both before and after the madness. Boshi Mashuni is a salad purely made up of fresh banana flowers, fresh coconut along with the juicy flavor of cucumber, turmeric, cumin seeds and to add up some more aroma, fresh curry leaves. Boshi Mashuni ranks high on the list of must-try dishes in the Maldives and you just cannot afford to miss this dish. You can also add up some Maldivian spices as per your preference.</p>\r\n\r\n<p><strong>SAAGU BONDIBAI</strong> Pic Creds: Instagram/@fiya101</p>\r\n\r\n<p>If you&rsquo;re looking to add some sweetness to your cuisine, this is the perfect dish for you. The dish somewhat looks and tastes like our &ldquo;desi kheer&rsquo; but has certain twists. Saagu or sabudana is a popular ingredient that adds up to many meals in the Maldives and is used to create this dish too. Saagu bondibai is a pudding made up of warmed coconut milk, some fresh condensed milk, a little flavor of cardamom and a rose that makes the flavor more tasty and aromatic. It is one of the most delicious dishes which will make your mood and day sweetened.</p>\r\n\r\n<p><strong>FISH CURRY</strong> must try dishes in Maldives Pic Creds: therawtextures</p>\r\n\r\n<p>Being an island with such pretty waters, Maldives obviously has cuisines that are heavy on fishes. We talked about the vegetable at the start and now we&rsquo;ll talk about Fish curry. This dish is creamy, juicy, spicy, and has an amazing flavor of coconut oil, which you will love for sure. You can try out specialties of fish like yellowfin tuna, bigeye scads, little tunny and many more, there you can have a lot of variety in fish. You can try out fish curry with some boiled rice too. Now that you&rsquo;ver read this blog, you know about the dishes that you cannot miss. This blog will be very helpful to decide your meals in advance and you won&rsquo;t have to do the &ldquo;pass the menu &ndash; you decide&rsquo; thing. Well, if you&rsquo;re looking someone to help you with Maldives honeymoon packages or maldives packages for families, head on to our packages section. We&rsquo;ve got some amazing deals and discounts running year around!</p>',NULL,'2021-03-18 21:00:53','2021-03-18 21:00:53',NULL,1,'',0,0,'Must Try Dishes in Maldives','If you are looking for food options to try in Maldives, we\'re here to help you out. With this blog you\'ll find out about the must try dishes in Maldives','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(60,'16 Best Honeymoon Packages for Maldives ','16-best-honeymoon-packages-for-maldives-','1617457448_blog.jpg','1643799928.jpg',NULL,'Aniket Agarwal','2020-12-09',NULL,NULL,NULL,'<p>The Maldives, located on the Chagos-Laccadive Ridge, is undoubtedly a honeymooner&rsquo;s paradise and truly the emblem of romance, exotic beaches, and awe-inspiring adventures. Being a string of coral atolls in the Indian Ocean, Maldives is a tropical paradise. So, if you want to have a dreamier honeymoon by stepping into the white sand, walk alongside your partner, then the Maldives is right for you. But we all know Maldives is a spectacular destination, what couples mostly struggle about is choosing the right honeymoon package for Maldives, so we decided to help you out. We&rsquo;ve created this blog that as 16 of the best honeymoon packages to Maldives, you can check them out by clicking the link at the end of the blog.</p>\r\n\r\n<p><strong>Best time to visit Maldives</strong></p>\r\n\r\n<p>Starting from the month November to March is the preferable time for visiting the Maldives; however, you can arrange your trip around the year based on your requirements as the southwestern Asian country has a lot to offer. However, months like January, February, and March offer a dry climate, which is quite suitable for the newlyweds to experience different shades of the Maldives; we provide various honeymoon packages for the Maldives for couples. The Maldives in the Month of March The temperature lies at an average of 31 degrees C, which is good to spend quality time on the Maldives&rsquo; tranquil beaches for the honeymooners. Moreover, you may get a respite from the sun due to a possible shower. The month of March is great for diving and snorkeling due to better visibility and climate. It is also the onset of surfing activities. So, you can enjoy your time and go through a sure shot adrenaline rush. Let&rsquo;s help you explore the list of packages so that you can make the best move to celebrate the best moments of your life according to your budget and preferences.</p>\r\n\r\n<p>Pic Creds: Instagram/@goglobal_pakistan1</p>\r\n\r\n<p><strong>03 Nights &amp; 04 Days</strong></p>\r\n\r\n<p>Amazing Maldives Holiday Package Fun Island Resort (3star) with Beach Front Room Meal Plan- Full Board (Breakfast, Lunch, Dinner) Transfer by Speed Boat INR 35,750 inclusive of all taxes per adult on Double Sharing Basis Sun Island Resort (4 stars) with Superior Beach Bungalow Meal Plan- Full Board (Breakfast, Lunch, Dinner) Package includes return airport transfer by domestic flight &amp; Speedboat.</p>\r\n\r\n<p><strong>Package Cost</strong>: INR 46,250 inclusive of all taxes per adult on a double sharing basis Paradise Island Resort (4star) in Superior Beach Bungalow Meal Plan- Full Board (Breakfast, Lunch, Dinner) Package includes Return Airport Transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:&nbsp;</strong>INR 48,500 inclusive of all taxes Per Adult on Double Sharing Basis Medhufushi Island Resort (5star) in Beach Villas Meal Plan- Half Board (Breakfast, Dinner) The Maldives in the Month of April The Maldives, the paradise for the honeymooners in April, is hot but endurable, even it is pleasing, and it curtains the dry season in the Maldives and sets the stage for the wet season. April is comparatively humid however good for diving, so get out of your comfort zone and make most of your time right after your nuptials. Pic Creds: Instagram/@warmwelcomemag Land .</p>\r\n\r\n<p><strong>Package Cost:</strong> 42,500 inclusive of all taxes per adult on a double sharing basis Sun Island Resort (4 stars) with Superior Beach Bungalow Meal Plan- Full Board (Breakfast, Lunch, Dinner) Package includes return airport transfer by domestic flight &amp; Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 39,250 inclusive of all taxes per adult on a double sharing basis Paradise Island Resort (4star) in Superior Beach Bungalow Meal Plan- Full Board (Breakfast, Lunch, Dinner) Package includes Return Airport Transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 42,500 inclusive of all taxes per adult on a double sharing basis Medhufushi Island Resort (5star) in Beach Villas Meal Plan- Half Board (Breakfast, Dinner) Return Airport Transfer by Speedboat .</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 49,500 inclusive of all taxes per adult on Double sharing basis Sheraton Maldives Full Moon Resort &amp; Spa (5Star) in Deluxe Room Meal Plan- Half Board (Breakfast, Dinner) Return airport transfer by Speedboat Maldives in the Month of May May, in Maldives is the dawn of the rainy season, although the sun remains functional although the month. The maximum temperature stays around 31 degrees C and there is a high risk of storms and showers all through the day. Owing to the plankton in the water the visibility for diving reduces, however for the wedding couples it is a delightful affair to spend time being on their resorts and know each other before instigating a tremendous conjugal life. Moreover, it is the holy month of Ramazan and you can explore the site in a completely different way with vibrancy all-over. Pic Creds: Instagram/@brilliance_tour Land</p>\r\n\r\n<p><strong>Package Cost:</strong> 27,500 inclusive of all taxes per adult on double sharing basis ADAARAN SELECT HUDHURANFUSHI (4 star) 03 nights in Beach Villas Meal Plan- Full Board (Breakfast, Lunch, Dinner) Return Airport Transfer by Domestic Flight &amp; Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 36,750 inclusive of all taxes per adult on double sharing basis PARADISE ISLAND RESORT (4 star) 3 nights in Superior Beach Bungalow Meal Plan- Full Board (Breakfast, Lunch, Dinner) Return Airport Transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 29,250 inclusive of all taxes per adult on double sharing basis Medhufushi Island Resort (5star) in Beach Villas Meal Plan- Half Board (Breakfast, Dinner) Return Airport Transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 44,250 inclusive of all taxes per adult on double sharing basis Sheraton Maldives Full Moon Resort &amp; Spa (5Star) in Deluxe Room Meal Plan- Half Board (Breakfast, Dinner) Return airport transfer by Speedboat Maldives in the Month of June June is the best month for couples who have a desire to celebrate their new-fangled life on a budget. In this month you can avail the best deals and offer on honeymoon packages for Maldives for couples. The month brings in a high chance of downpouring however you can spend most of the time keeping yourself busy in your resort&rsquo;s numerous facilities. It is also the best time to go diving for witnessing whale sharks although the visibility remains low. Pic Creds: Instagram/@perfectlittlegetaways</p>\r\n\r\n<p><strong>Land Package Cost:</strong> 27,500 inclusive of all taxes per adult on double sharing basis</p>\r\n\r\n<p><strong>ADAARAN SELECT HUDHURANFUSHI</strong></p>\r\n\r\n<p>(4 star) 03 nights in Beach Villas Meal Plan- Full Board (Breakfast, Lunch, Dinner) Return Airport Transfer by Domestic Flight &amp; Speedboat.</p>\r\n\r\n<p><strong>Package cost:</strong> INR 36,750 inclusive of all taxes per adult on double sharing basis Paradise Island Resort (5star) 3 nights in Superior Beach Bungalow Meal plan- Full Board (Breakfast, Lunch, Dinner) Return airport transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 29,250 inclusive of all taxes Per adult on double sharing basis Medhufushi Island Resort (5star) in Beach Villas Meal Plan- Half Board (Breakfast, Dinner) Return Airport Transfer by Speedboat.</p>\r\n\r\n<p><strong>Package Cost:</strong> INR 44,250 inclusive of all taxes per adult on double sharing basis Sheraton Maldives Full Moon Resort &amp; Spa (5Star) in Deluxe Room Meal Plan- Half Board (Breakfast, Dinner) Return airport transfer by Speedboat All the above packages are tailored made for your convenience so that you can accumulate the best of the memories and cherish them forever. So, you can choose any of these best honeymoon packages for Maldives according to your suitability and budget. Wish to have a closer look? Check out the packages here.</p>',NULL,'2021-03-18 21:05:48','2021-03-18 21:05:48',NULL,1,'',0,0,'Best Honeymoon Packages for Maldives','When it comes to visitng Maldives with your partner, the package choice bewilders us, here\'s a list of best honeymoon packages for Maldives to help you','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(61,'Top 5 Luxury Resorts in Maldives for Couples ','top-5-luxury-resorts-in-maldives-for-couples-','1617457331_blog.jpg','1643802292.jpg',NULL,'Aniket Agarwal','2020-12-02',NULL,NULL,NULL,'<p>There are so many destinations one can explore like, Paris, France; New York, New York; Rome, Italy; Cancun, Mexico; Miami, Florida; Orlando, Florida; Myrtle Beach, South Carolina. All of these places are glorious and truly the wonders of nature, but there is no match for a mesmerising combination of Purest blue water and clean white sand beaches, lush palm trees and luxury resorts in Maldives. Known for the exquisite luxury resorts in Maldives, it is an excellent place to visit for Pleasure, relaxing after a business trip or for mixing both business and pleasure. Maldives comprises of many islands and beaches. This place can be called as Tropicae Caelum that translates from Latin to &ldquo;Tropical Heaven&rdquo; in English. Spotted on the map where the Indian Ocean is exactly south of Sri Lanka.</p>\r\n\r\n<p>There are about 1,192 number of coral islands included along with numerous luxury resorts in Maldives Travelling is defined as being shipped off from one place to another. This is exactly what traveling does to a person. It shifts one from a place and state of mind to another place and state. &ldquo;Life is either a daring adventure or nothing at all&rdquo; - Helen Keller. There are so many places where you can stay for your trip to the Maldives and luxury resorts in Maldives. For your ease and complete guidance, here are some pointers about luxury resorts in Maldives. Some of the best and most memorable trips with the best luxury resorts in Maldives for you to escape from the hectic and tiresome routine of daily life and get your adventure on.</p>\r\n\r\n<p><strong>Fun Island Resort luxury resorts in Maldives</strong> Pic Creds: Instagram/@goglobal_pakistan1</p>\r\n\r\n<p>&ldquo;Because there&rsquo;s nothing more beautiful than the way the ocean refuses to stop kissing the shoreline, no matter how many times it&rsquo;s sent away&rdquo; &ndash; Sarah Kay Taking about luxury resorts in Maldives there is this one at the perfect distance from the beach, this resort has so much to offer from beautiful beach bungalows to small cute huts and rooms. There is a Disco for dancing with an extreme variety of drinks to a wide range of cuisines to indulge and just get lost in the taste. Get vitamin D and energy, bathing in nature&rsquo;s light, and then put that energy to good use by dancing on the floor of our disco with your BFF or just BF. Our spa can cleanse you for life with its rejuvenating treatments being perfect for you to get rid of all the toxicity, impurities, and pollution of big cities. So, give it a try at this resort and many other luxury resorts in the Maldives.</p>\r\n\r\n<p><strong>Sun Island Resort luxury resorts in Maldives</strong> Pic Creds: Instagram/@denvbg47</p>\r\n\r\n<p>&ldquo;Take only memories, leave only Footprints&rdquo; &ndash; Chief Seattle With a 4.7 rating and gleaming reviews when you google the title &ldquo;Sun Island Resort&rdquo; it tells you a lot about the kind of place this among luxury resorts in Maldives is. So go jet skiing in the water or swing in your hammock lazily listening to your favorite song and get washed away with golden sunlight into the serene world of dreams. There are about 462 fully furnished and equipped rooms offering all the needed amenities and the most cooperative staff. This luxury resort in Maldives has a buffet and also &agrave; la carte restaurants about four of them. You need Italian or Chinese they can provide all of the dishes and much more. So, plan a trip to visit this and any of the other luxury resorts in Maldives.</p>\r\n\r\n<p><strong>Medhufushi Island Resort luxury resorts in Maldives </strong>Pic Creds: Instagram/@perfectlittlegetaways</p>\r\n\r\n<p>I followed my heart, and it led me to the beach &ndash; Unknown Come on out with your partner and enjoy the best luxury resort in Maldives with its private beach and 112 rooms, each one with furnished patios, DVD players, coffee makers, and 24/7 room service. Each room is fully air-conditioned with partially open bathrooms. These bathrooms have shown and tub combination with toiletries, hairdryers, and even bathrobes. Taking a shower was never been this fun before!. This certainly gives it an edge over other luxury resorts in Maldives. After an excellent shower, eat your favorite dishes at any one of the two amazing restaurants with a diversity of dishes. Just like other luxury resorts of the Maldives, this one has a spa and with that, an outdoor pool and a fitness center are among other recreational activities truly competent among the luxury resorts in Maldives.</p>\r\n\r\n<p><strong>Sheraton Maldives full moon hotel &amp; spa</strong> Pic Creds: Instagram/@warmwelcomemag&nbsp;</p>\r\n\r\n<p>The sea, once it casts its spell, holds one in its net of wonder forever - Jacques Yves Cousteau An amazing place with so much to explore along with lavish rooms with scenic ocean view there are many different places within walking distance of this resort I.e. Full Moon beach at just 1 minute or walk, Banana Reef Dive site at a 10-minute walk, Hulhumale beach at 4 minutes drive. Along with individual rooms there are majestic Water suites, A two-bedroom presidential suite. Other than that there are Ocean Pool Villa, Beachfront Cottage, and Water bungalow with pool just to name a few. Along with its very own spa with trained masseuses, therapists, aestheticians, nail technicians, and assistants. Goes without saying, one of the best luxury resorts in Maldives.</p>\r\n\r\n<p><strong>Paradise Island Resort </strong>Pic Creds: Instagram/@brilliance_tour</p>\r\n\r\n<p>To escape and sit quietly on the beach &mdash; that&rsquo;s my idea of paradise - Emilia Wickstead As the name suggests it truly is a paradise! With lush green palm trees surrounding the resorts and beach sand between your feet having a therapeutic effect. It offers many Private villas and bungalows for you to enjoy your holidays in. Paradise Island resort is 20 minutes of a Speed boat ride away from Mal&eacute; International Airport. So you can enjoy yourself while leaving as well. A mandatory pick up is also provided when you arrive at the airport, of course, you&rsquo;ll have to pay for it when you arrive at the resort. This resort has 4 amazing restaurants and a spa. Housekeeping is also provided 24/7. A great option among many luxury resorts in Maldives. To sum up the above discussion, We offer the best Maldives packages to these amazing luxury resorts in Maldives that have so much to offer. You won&rsquo;t be disappointed a bit if not thankful that you chose to spend that vacation money you were stacking your saving jar with. It&rsquo;s time you get out of being locked in your home and get the adventure groove on with us. Best places and best packages an amazing combination leading to the best place in the world with so many options to explore and choose from the luxury resorts in Maldives.</p>',NULL,'2021-03-18 21:11:08','2021-03-18 21:11:08',NULL,1,'',0,0,'Luxury Resorts in Maldives for Couples','Maldives offers an unprecendented view into the beauty of the earth and these luxury resorts in Maldives definietely add to the overall tour experience.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(62,'5 Top Resorts in Maldives For Couples ','5-top-resorts-in-maldives-for-couples-','1617456874_blog.jpg','1643802657.jpg',NULL,'Aniket Agarwal','2020-11-18',NULL,NULL,NULL,'<p>Maldives is a paradise for beach lovers and it truly brings the saying &ldquo;live life king size&rdquo; to life. With countless beaches, calm waters, a diverse marine life, Maldives offers serenity like no other destination. However, when you are planning for a trip, the first thing that comes to mind is a comfortable place to stay. You&rsquo;ll just drool over the pictures of the resorts we&rsquo;ve mentioned in this blog. But, it doesn&rsquo;t end here, the whole place is full of exotic views, scenery. Maldives is one of our favorite destinations and we&rsquo;ve written multiple blogs describing its beauty. For starters, if you want to read about the best places to visit in Maldives, you can check out our blog section. As of now, in this blog, we will let you know about the top resorts in Maldives that offer the best deals and a superb stay.</p>\r\n\r\n<p>OLHUVELI BEACH AND SPA RESORT top resorts in Maldives Pic Creds: Instagram/@julia_chan78 The design and look of the Oluhuveli resort might not look comforting, but the stay is definitely luxurious. With traditional hut shaped rooms, the exterior of the Oluhuveli resort looks quite interesting. But don&rsquo;t be fooled, it ranks high on both the lists, luxury resorts in Maldives and top resorts in Maldives. The resort offers spacious rooms with free wifi, a mini-refrigerator, coffee makers, an open terrace, and a private pool. The most luxurious rooms offer living rooms, hot tubs, jacuzzis, and more. The water around this resort is crystal clear and you could go for a quick dive straight from your room. The staff is very courteous and makes the stay quite pleasant. You can have a special romantic dinner by the beach setup as well. The resort even offers a lot of watersport activities for you to try together, like kitesurfing, parasailing, and more. This place is priced very decently and you can get there through a speed boat in 45 minutes. Avg Price Per Night: INR 11,000 Per Person. Distance From Airport: 40 kms. Nearby Attractions: Biyadoo Islands Accepted currencies:</p>\r\n\r\n<p>USD, MVR SHERATON MALDIVES FULL MOON RESORT &amp; SPA top resorts in maldives Pic Creds: Instagram/warmwelcomemag . Sheraton Maldives Full Moon Resort is situated on a private island covered by tropical lagoons. There are around 176 guest rooms, luxury rooms with mesmerizing villas with an open terrace with wide outdoor living areas. The resort is located just 6 km away from Velena International Airport and 9kms from the male city center. Once you confirm your booking, the resort management will pre-book complimentary airport transfers for you. Sheraton Maldives full moon resort has all types of rooms with a variety of villages, cottages, and that too at compatible prices. There are options to customize your package as per your preference. We&rsquo;ve heard a lot (only good) about their food as well. If you want to relax, have a little fun, and spend most of your time gazing at the transparent waters, this is your ideal resort. They also have some of the finest wines, so if you&rsquo;re up for some romantic dinners, they&rsquo;ll not disappoint. Definitely one of the top resorts in the Maldives for couples. Avg Price Per Night: INR 22,000 Per Person. Distance From Airport: 6 km. Nearby Attractions: Hukuru Miskiiy (Old Friday Mosque), Manta Point Accepted currencies:</p>\r\n\r\n<p>USD, MVR VARU BY ATMOSPHERE RESORT top resorts in Maldives Pic Creds: Instagram/@mari_happytravel Varu by atmosphere resort is the perfect resort for honeymooners. It is a 40 minutes speed boat ride from the Male international airport that&rsquo;ll get you to this wonder. The Varu Resort as you can see in the picture above has amazing rooms, villas, cottages with mini-refrigerators provided in the room along with unlimited tea and coffee. You will find a lot of options in fresh seafood with unlimited cocktails and refreshing juices. A private swimming pool and an open living area make this place ideal for people who like to gaze at the stars. You can also get private spa treatments at your villa. You can even indulge in the complimentary water activities that&rsquo;ll add some spice and fun to your trip. In terms of price, food, stay Varu Resort is the top resort in the Maldives. Avg Price Per Night: INR 25,000 Per Person. Distance From Airport: 38 km. Nearby Attractions: Manta Point Accepted currencies:</p>\r\n\r\n<p>USD, MVR CENTARA RAS FUSHI RESORT &amp; SPA Pic Creds: Instagram/@maldivesmagical Just look at the picture for a while and imagine sitting on those lounge chairs or at the edge of the platform. Although most resorts on our list can be booked for a family too, Centara Ras Fushi Resort is particularly made for couples only. It is just a 20-minute speed boat ride from Velana International airport. Centara has many luxurious rooms, villas, cottages with a beachfront and swimming pools at the top of the villa. Their super rooms have many facilities like mini-refrigerators, minibars, complimentary cocktails, tea, and coffee making facilities. There is an outdoor pool, boutique, some refreshing spa activities, a dive centre, and a gym with pool activities. Centara Ras Fushi Resort is the best option for adults with great services 24/7. Avg Price Per Night: INR 18,000 Per Person. Distance From Airport: 12 km. Nearby Attractions: Manta Point Accepted currencies:</p>\r\n\r\n<p>USD, MVR GILI LANKAFUSHI RESORT top resorts in Maldives Pic Creds: Instagram/@travelpicbank Gili Lankafushi resort is located on a private island and undoubtedly ranks at the top of the list of top luxury resorts in Maldives. A stay at this luxurious resort starts from INR 100000 and there&rsquo;s no upper capping. With super wide rooms, open airy villas featured with natural materials, wooden floors, free wifi, lounges, cycling, you&rsquo;ll get a 5-star treatment here. The atmosphere at the night gets electrifying as the resort organizes parties in the evening. Beachfront dining options with Japanese cuisines, local seafood is also available and is of course a must-try. You can rejuvenate with a refreshing spa as well. This is one of the most happening resorts you will find in the Maldives. Avg Price Per Night: INR 1,18,000 Per Person. Distance From Airport: 11 km. Nearby Attractions: Manta Point, Hulhumale Mosque, Banana Reef, Hulhumale Beach Accepted currencies: USD, MVR Now that you know about the top resorts in Maldives, why not book a Maldives honeymoon package? We offer the best deals and we can get you a booking at your favourite resort within minutes. What&rsquo;s more? We&rsquo;ll cover activities as a part of your package as well. You can customize it completely. Check it out now!</p>',NULL,'2021-03-18 21:16:15','2021-03-18 21:16:15',NULL,1,'',0,0,'Top Resorts in Maldives For Couples','Maldives, the heaven for adults has a lot of resorts that offer mindblowing stays. Here is the list of the top resorts in Maldives. Check em\' out.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(63,'Five Best Beaches In Maldives For Couples','five-best-beaches-in-maldives-for-couples','1617456560_blog.jpg','1629352020.jpg',NULL,'Aniket Agarwal','2020-10-30',NULL,NULL,NULL,'<p style=\"text-align: justify; \">The vast number of islands comprising of colossal and crystal clear beaches makes the Maldives a major tourist hotspot, especially for honeymooners. Maldives has become a major attraction point for couples over the last 5 years. But you probably know that already, so here’s a quirky fact about the <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives\">Maldives islands</a></b>, the beach resorts also welcome unmarried couples (so if you plan to hit the place with your girlfriend, you sure can). There are a lot of small islands, beaches in the Maldives, but how many of them can you or should you visit? Although the choice is completely yours, we’re here to help you with the 5 best beaches in the Maldives for couples. LILY BEACH best beaches in Maldives for couples Pic Creds: Instagram/@lilybeachresortmaldives Located on Huvahendhoo island, this beach has crystal clear waters and some amazing resorts nearby.</p>\r\n\r\n<p style=\"text-align: justify; \">Lily Beach is a part of the Lily Beach Resort in the Maldives which is considered to be one of the most luxurious resorts in Maldives. Moreover, Lily Beach Resort is an award-winning oceanfront beach resort as it has dynamic facilities like an open-air bathroom, Jacuzzi, water villa, and so on. The amenities in the beach resorts suit best to have a quality fun time with your partner. This beach is definitely one of the best beaches in Maldives, if you’re looking to have fun with your partner alongside the beach. Location Activities To-Do Huvahendhoo island Alifu Dhaalu Atoll Fishing Water sports Sunset cruise Massage.</p>\r\n\r\n<p style=\"text-align: justify;\"><b>DHIGURAH BEACH best beaches in Maldives Pic Creds:</b> Instagram/@nylund_emma Dhigurah Beach, is another perfect romantic gateway for couples that is especially infamous for whale sharks and of course snorkeling trips. Being a bit far from the Maldives island, this beach is very less crowded and perfect for couples who want privacy and peace. The beach looks like a desert beach but has ample greenery in the surroundings. Dhigurah Beach is also home to many resorts that offer delicious seafood, candlelight dinners, drinks on the go, and water sports. To reach the beach, you’ll have to take a speedboat from Maldives. Location Activities To-Do Popular resorts on the beach Dhigurah Sunbathing Spa Bike tour, couple massage, and walking tours Dhigurah Retreat Beach Dhigurah Beach Inn Long Beach Dhigurashu.</p>\r\n\r\n<p style=\"text-align: justify;\"><b>Thun’di KURUMBA BEACH best beaches in maldives Pic Creds:</b> Instagram/@travel_izzpiration This beach is just 10 minutes away from the airport and Male city and the Kurumba Beach Resort offers the best hospitality to couples. You can either swim in the blue waters, freshwater pools in the resort, or go for the Dhivehi Beys Spa treatment. The greenery of coconut trees, light sun, and transparent water make it an ideal place for couples who want to relax after a long trip. Location Activities To-Do Facilities available on beach resorts 4km away from Ibrahim International Airport Jet skiing Banana boating and night snorkeling Kayaking and fun tubing Minibar plus tea and coffee makers Open-air bathrooms with sea view .</p>\r\n\r\n<p style=\"text-align: justify;\"><b>THE HULHUMALE BEACH Pic Creds:</b> Instagram/@nattey7 One of the most prominent beaches of all in the Maldives which gives the most beautiful vibes, thanks to its white sand and crystal clear blue water. If you want to soak in the beauty of sunsets in Maldives, this is the place to be at. We’ve also covered this beach in the blog, ‘5 best places to visit in Maldives‘, so can guess the beauty of it. Hulhumale beach is on the list of every person who travels to Maldives, and you should add it to your list. If you’re looking to stay there for a night or more, the best hotels and resorts on the beach are Huvan beach hotel, Island Beach house, and so on. Location Activities To-Do Facilities available on the beach Hulhumale, Near Handy industries Couple massage Snorkeling Deluxe rooms Laundry &amp; room services Excursions are available .</p>\r\n\r\n<p style=\"text-align: justify;\"><b>THE MALE ARTIFICIAL BEACH best beaches in maldives Pic Creds:</b> tripadvisor Last but not the least, the artificial beach is another popular beach on the island and popularly known as “manmade heaven”. Yes, it is a man-made beach but offers a spectacular view of both sunrise and sunset. Being an artificial beach, the risk of high tide is little to none, so you can swim freely. Location Activities To-Do Nearby Places to visit North Male Atoll Couple workout before the sunrise Water sports Salt Cafe &amp; Restaurant The Lagoon There are countless other beaches in Maldives and we cannot cover them all in this blog, but these 5 are definitely the best beaches in Maldives for couples. If you are planning a <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives\">trip to Maldives</a></b>, do check out our Maldives honeymoon packages section, you’ll find the best prices, and resorts there. Let’s get booking!</p>',NULL,'2021-03-18 21:21:12','2021-03-18 21:21:12',NULL,1,'',0,0,'Best Beaches In Maldives For Couples','','Five Best Beaches In Maldives For Couples | Maldives Package','[\"139\",\"138\",\"137\",\"136\",\"47\",\"46\",\"39\"]',1,'{\"blogdetailTitle\":[\"\",\"\"],\"BlogDescription\":[\"\",\"\"],\"images\":[\"\"],\"detailPackages\":[\"\",\"27082, 27081, 27075, 27074, 25189, 25187, 25156\"]}'),(64,'Latest Travel Guidelines For Maldives During COVID-19','latest-travel-guidelines-for-maldives-during-covid-19','1621511776_blog.webp','1629352340.jpg',NULL,'Aniket Agarwal','2020-09-24',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Maldives is the best place to enjoy your vacation. The country is filled with palm trees, white sandy beaches, turquoise sea, blue lagoons, and picturesque marine life. Maldives seems to be a dream come true for most of the tourists. Separated into islands and surrounded by lagoons the beautiful country is also called ‘the tropical paradise’ by the people living in the country. We know you want to go out ASAP and you’re waiting for COVID19 to slow down. Here’s good news! The Maldives is open to tourists and with this blog we will help you with the latest travel guidelines for Maldives. The country is covered with sea all around and it consists of over five thousand coral reefs and fishes. A beach in the vaadhoo island of Maldives glows at night, providing a mesmerizing scenery even after the sunset. The glowing effect is the outcome of the natural phenomena known as bioluminescence. Isn’t it awesome? Yes, then have a quick visit to relax at the mesmerizing island. Whether you’re planning for a relaxing vacation or a bit of adventure, Maldives is a suitable destination. You can do anything from snorkeling, water flying, fun tubing, paragliding, surfing, fishing, getting a spa treatment, visit local islands, visit Male, and enjoy the villas. What more? You can admire the mesmerizing sunset and get a chance to have your lunch right on the waters.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>GUIDELINES FOR YOUR TRIP FROM INDIA TO MALDIVES</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The COVID-19 pandemic has brought the whole world onto its knees and the recovery rate has been sliding up at the slowest speed. Well, despite the pandemic, many places are opening up by following the government guidelines. Here is the list of latest travel guidelines for <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives\">Maldives Trip</a></b>.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>FREE TOURIST VISA FOR 30 DAYS </strong></p>\r\n\r\n<p style=\"text-align: justify;\">After being closed to the outsiders for over 3 months, the country is now welcoming tourists. A 30 days free visa is being provided by the Maldivian government for all the travelers. However, a negative PCR test is mandatory for all travelers.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>UPON ARRIVING MALDIVES </strong></p>\r\n\r\n<p style=\"text-align: justify;\">Upon arrival, travelers do not need to undergo quarantine, measures as you will be providing PCR test results. However, all travelers should download a contact tracing app i.e., TraceEkee to allow the Maldivian authority to trace any possibility of virus infection. Only a few authorized resorts are open to help keep track of the tourists in case of any widespread. In case if the Maldivian authority finds a tourist with infection, the patient will be isolated and all measures to stop the spread will be taken.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>COMPULSORY PCR TEST</strong></p>\r\n\r\n<p style=\"text-align: justify;\">As of now, over 50 resorts in total have been opened in the Maldives. The Maldivian government has issued a ‘Safe Tourism License’ to accredit tourist facilities in the resort that follows the COVID rules. The facilities such as accessing suggestions from doctors, stocking up the required protective equipment, and many more have been made in the resorts. Besides, the resorts in the tropical country will request the guests to produce a negative PCR original certificate to let them in. If the guests do not have a PCR certificate, they are requested to be tested at the airport. In case a guest gets positive in COVID, the guest is isolated providing the required treatment.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>ISLAND HOPPING IS PERMITTED</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The ministry of tourism in the Maldives have permitted island hoping for the tourists but with the strict entry restrictions. The tourists who like to go for the island hopping needs to get permission to stay in more than 2 resorts from the ministry of tourism. Every resort must be free from COVID for about 28 days to make sure that guests stay safe.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>GUIDELINES ON LEAVING THE MALDIVES</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Below are the few guidelines that are needed to be followed by the tourists before returning to India. If you do not have any symptoms of COVID-19, a simple PCR test is just required before coming back to India so that you will have no need to be quarantined. However, if you appear to have COVID-19 symptoms then take the PCR test and consult a doctor in the Maldives. If you get positive results in the COVID test then you are to inform the resort you stayed in the Maldives.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>HIRE THE TRAVEL AGENCY</strong></p>\r\n\r\n<p style=\"text-align: justify;\">So these were the latest travel guidelines for Maldives. Are you planning to visit a tropical country? If yes, we at ineedtrip are the best travel agency for you. We’ll make sure you have a safe, secure, and fun <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives\">T</a><a href=\"https://www.ineedtrip.com/tour-destination/maldives\">rip to Maldives</a></b>. Budget? We’ve got the cheapest packages. Sightseeing? We’ll cover that too with the customization option. Flights? We can help you with those too. So what more do you need? Pack on your bags because we are going on a vacation of a lifetime. Drop us a hi through this page and we’ll get back to you ASAP!</p>',NULL,'2021-03-18 21:27:00','2021-03-18 21:27:00',NULL,1,'',0,0,'Maldives Package, Maldives Tour, Maldives Trip, Maldives Honeymoon Package.','Here\'s good news! The Maldives is open to tourists and with this blog we will help you with the latest travel guidelines for Maldives.','Latest Travel Guidelines For Maldives During COVID-19','[\"139\",\"138\",\"137\",\"136\",\"31\",\"30\",\"29\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"24759, 24757, 24748, 24730, 27082\"]}'),(65,'5 Best Places To Shop In Maldives','5-best-places-to-shop-in-maldives','1621511741_blog.webp','1629346637.jpg',NULL,'Aniket Agarwal','2020-08-24',NULL,NULL,NULL,'<p style=\"text-align: justify; \">A trip cannot end without shopping, especially if you are visiting a place like the Maldives. Somewhere down the road, everyone is a shopping freak and everyone wants to bring back happy memories from a trip. The Maldives is a place where you will find a string of islands full of water sports activities, nature, and a peaceful environment. When the place is that good, how can you miss out on souvenirs? With this blog on the 5 best places to shop in Maldives, we’ll not only help you with the best spots, but we also help you with the things to shop there. The island may not have shopping malls but it includes many small shops, street shopping, high-end boutiques that will fulfill your needs. These spots will introduce you to the culture of the island as well. The Maldives is famous for its beauty, clean environment, fresh air, blue waters, and of course white beaches. If you wish to read more about the best places to visit in Maldives you can read our blog here, or if you’re looking for a complete guide, read this one.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>MALE LOCAL MARKET</strong></p>\r\n\r\n<p style=\"text-align: justify; \">The male locale market is one of the most crowded street markets in Maldives. A street shop lover will enjoy this market to the fullest. There are a huge number of stalls which attract all tourists and locals to visit there. Within these wide variety of stalls you can buy fruits, local handicrafts, gifts, accessories, home decors, and some Maldives special traditional showpieces. It is a very pleasant market where you can just relax and do some chilled out shopping. You can enjoy good traditional food at the local cafes and bring some great Maldivian souvenirs back with yourself. The Male Local market is definitely one of the best places to shop in Maldives. Photo Creds: Instagram/cryptonomadian</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>MAJEEDHEE MAGU MARKET&nbsp; &nbsp;</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Majeedhee Magu Market is a splashing street local market where you can shop a variety of things. A bargainer’s heaven, this is a market where you will find everything, it is a complete market under one roof. You can find items like clothes, accessories, electronics, apparel, food items, local cosmetics, and much more to shop. Once you’re tired of shopping you can either fancy yourself with beverages at the cafes nearby or try Maldivian cuisine at restaurants like the Shawarma. So if you’re short on time and looking for a place that has it all, the Majeedhee Magu is the best place to shop in Maldives for you.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>CHAANDHANEE MAGU MARKET</strong> best places to shop in maldives Photo Cred: instagram/buddys.insta</p>\r\n\r\n<p style=\"text-align: justify;\">Chaandhanee Magu market is popular by the name of “Singapore bazaar”. As the name suggests, here you will find a huge variety of Singapore stuff starting from apparel, accessories, electronics, scarves, cosmetics, and more. You can find a variety of local and imported items mainly from Singapore. For a minute you’ll feel like you’re shopping in Singapore itself. The place is a great mix of items from both the Maldivian tradition and the Singapore-Malaysian region.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>CENTRO MALL</strong> best places to shop in Maldives</p>\r\n\r\n<p style=\"text-align: justify;\">There are not many malls and supermarkets in the Maldives, but located in the Huvandhumaa Hingu, lies the Centro mall where you can find some luxurious brand items on sale. If you are brand conscious and used too to malls, this is the perfect place where you can shop some good brand items of apparel, accessories, Maldivian souvenirs, footwear, and more.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>OEVAALI ART SHOP</strong></p>\r\n\r\n<p style=\"text-align: justify;\">The Oevaali Art Shop is one of the most renowned, traditional, and old shops located in the Bodufungadu Magu region in the Maldives. Here you will find a wide range of paintings, sculptures, items made out of shells, and coconuts. As mentioned above, the shop is one of the most renowned places to shop in Maldives and its products are guaranteed to be 100% Maldivian. Although items can be on the expensive side, the quality and appearance of items sold at this place are spectacular. So, this is one of the best places to shop in Maldives for art lovers who just love the naturality of the product. Now after reading this blog we hope you will surely get an idea of what to shop and where to shop in the Maldives. However, we still haven’t shared the best part of your trip to Maldives with you yet. You see, we at Ineedtrip offer <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives holiday</a></b> and honeymoon packages at prices that will make your jaw drop. Moreover, the list of inclusions will make you want to book them straight away. After all, we would want your trip to be full of fun, excitement, and stress-free. You can check out our <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives packages</a></b> here.</p>',NULL,'2021-03-18 21:38:35','2021-03-18 21:38:35',NULL,1,'',0,0,'Shop In Maldives, Best Shop In Maldives, Malls in Maldives, Maldives Malls.','With this blog on the 5 best places to shop in Maldives, we\'ll not only help you with the best spots, but we also help you with the things to shop there.','Best Places To Shop In Maldives | Maldives Shopping Mall','[\"139\",\"138\",\"137\",\"136\",\"47\",\"46\",\"36\",\"35\",\"31\",\"30\",\"29\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25189, 25187, 24835, 24831, 24759, 24757, 24748\"]}'),(66,'Best Places to Visit & Things To Do In Mauritius & Maldives After COVID19','best-places-to-visit-things-to-do-in-mauritius-maldives-after-covid19','1616084099_blog.png','1616084099.png',NULL,'Aniket Agarwal','2020-07-24',NULL,NULL,NULL,'Planning a trip can be exciting and daunting at the same time, especially if you are planning your honeymoon. Honeymoon after Covid-19 is going to be momentous for you as well as your partner. Not only is it going to be the beginning of a new chapter in your individual lives, but it will also be a new chapter for the tourism industry after the pandemic. Since, you would want to visit places that are safe, less crowded, and are perfect for couples, planning your honeymoon to Mauritius or Maldives is the best option for you. These islands have a lot to offer, and you are going to cherish each and every moment. Mauritius and Maldives are filled with scenic beauties. The combination of blue-green and white is not only going to keep you refreshed but happy throughout the trip. So if you are wondering about the things to do in Mauritius or in Maldives, then take a look below. Here’s a bonus: We’ll also slip in details of the best honeymoon packages offered by us for both these destinations.\r\n\r\nBest places to visit & things to do in Mauritius\r\n Le Morne Brabant\r\nthings to do in Mauritius\r\n\r\nIf you are looking for a place to spend some private time with each other, then Le Morne Brabant is the place for you. Le Morne is covered with mountain ranges that are spread over an area of about 12 hectares. Located in the southernmost area of the island, Le Morne Brabant is one of the most romantic regions of Mauritius. Here’s the cherry on top! If you hike the Le Morne Mormont, you can get a glimpse of the world-famous “Underwater Waterfall”. Haven’t heard of it? Read more about it in our blog on the Underwater Waterfall in Mauritius.\r\n\r\n2. Bathe In Chamarel Waterfall\r\nthings to do in Mauritius\r\n\r\nFormed by the St Denis river, the Chamarel waterfall is the natural pool of Mauritius. The sight is so pleasing that you are going to fall in love with the place instantly—there is a shallow pool at the bottom of the waterfall where couples can have a romantic time bathing in the heavenly waters. To reach the base of the waterfall, you will have to hike down for an hour or so, but it’s totally worth it and the scene is pure bliss.\r\n\r\nChamarel has one more beautiful sight, known as the Seven-Colored Earth, it’s just as amazing as the name. Read more about the Seven-Colored Earth, here.\r\n\r\n3. Horse ride with your partner?\r\nthings to do in mauritius\r\n\r\nMauritius is filled with beautiful and breath-taking scenic mountain ranges. The most popular thing for the tourists in these islets is horse riding. Take the best riding excursions and enjoy yourself with your partner as your bond grows stronger.  By the end of the trip, you can have an intimate dinner with your better half.\r\n\r\n4. Riambel Beach\r\nthings to do in mauritius\r\n\r\nOne of the best beaches on the southern coast, Riambel Beach, is a place that is famous for its sunset. You can take long walks to explore the village since it is an isolated beach. It’s still away from all the tourists and is unexploited. You can enjoy a good swim with your partner without any disturbance. Now that you are aware of the certain things that you can do with your partner in Mauritius, let us take a look at that romantic night out.\r\n\r\n5. Romantic night with your partner\r\nthings to do in mauritius\r\nPic Creds: https://www.flickr.com/photos/intentional_accident/\r\nLocated towards the northern part of the Grand Baie, Cap Malheureux, is the best place to spend a romantic evening with your partner. This beautiful place is surrounded by beach island, a little village that will add all the sweetness to your time. Sit with your partner and enjoy the sunset, maybe slip in a bottle of champagne to celebrate the future.\r\n\r\nWe haven’t mentioned some of the overcrowded but popular places if you want to read more about them, check out this blog. If Mauritius has excited you, have a look at the best honeymoon packages for Mauritius by ineedtrip.\r\n\r\nOur top packages include:\r\n\r\n6 Nights In a 4 Star Hotel\r\nDaily Breakfasts\r\n6 Dinners\r\nFull Day ile Aux Cerf tour\r\nWater Activities including Pedal Boats, Kayaks, Lasers, Glass bottom Boats etc.\r\n \r\nBest places to visit & things to do in Maldives\r\nDiving:\r\nthings to do in mauritius\r\n\r\nOne of the most exciting things to do in the Maldives is scuba diving with your partner. If you and your better half enjoy adventure sports, then a dive amidst the reefs and crystal clear water will be refreshing. Scuba diving is the best way to bond with your partner and deepen your connection. You can also opt for snorkeling and enjoy the view of all the colorful water life.\r\n\r\n2. Island Hopping:\r\nthings to do in Maldives\r\n\r\nThe Maldives is filled with beautiful islands that are oh so tempting. Moreover, Maldives has about 80 beautiful islands filled with luxurious resorts, and they are the best tourist spots. If you want to have some leisure time with your partner, then island hopping is the best option. You can enjoy paradise, hop from one view to another, and soak in the beauty of Maldives.  \r\n\r\n3. Romantic Massage: Pamper Yourselves\r\n\r\n\r\nOne of the best places in the Maldives for spending time with your partner is massage parlors. Opt for a couple’s massage, and you are good to go.  Enjoy the sandy beaches and indulge in a couple’s massage, and both of you will have the best time of your life. This experience will not only refresh you but take away all the fatigue post all that adventure sport.\r\n\r\n4. Underwater Snooze: Aquarium Restaurant\r\n\r\n\r\nIthaa Underwater Aquarium restaurant is yet another one of the best things in the Maldives. Plan a date with your loved one and enjoy your meal surrounded by the aquarium. The hotel also has the provision of transforming the space into a bedroom so that you can have a romantic time with your partner. The restaurant makes sure that the couple is served with champagne and breakfast in the morning.\r\n\r\n5. Submarine Ride: Whale Submarine\r\n\r\nPic creds; Instagram/\r\ncruisemaldives_backpackers\r\nWhale submarine is another adventurous way of spending time with your better half. All you have to do is the book for the whale submarine at your resort, and you are good to go. You will be able to see sharks, shipwrecks, corals, and a lot more while sitting in a submarine that looks like the biggest mammal on earth.\r\n\r\n6. Bioluminescent Beach Maldives\r\n\r\n\r\nIf you are a nature lover and love to see nature’s charm, then the Bioluminescent beach is the one for you. It’s a science fiction meets fairyland kind of view. You and your partner will instantly fall in love with the place. This is the best thing to do in the Maldives if you are on a honeymoon.\r\n\r\n7. Private Yacht\r\n\r\n\r\nA private yacht although costly but will allow you to spend some alone time with your partner and let you enjoy the blue waters in each other’s company. If you are looking for options that allow you to spend the maximum amount of time with your partner, then a private yacht would be the best thing to book. \r\n\r\n8. Banana reef\r\nbest places to visit in maldives\r\n\r\nThe first dive site of Maldives, Banana Reef, is a place that is famous for its landscapes, overhangs, cliffs and also the underwater experience it provides. If you and your partner are adventurous and love to have a colorful water experience, then visiting Banana reef is a must. Use a reputable tour group, and you are good to go.\r\n\r\nThese are a few recommendations that you can try out on your trip to Mauritius and Maldives if you want to read more about Maldives, visit our blog.\r\n\r\nWe’re sorry! We missed out on mentioning the best places to shop in Maldives. Fret not, you can about them in our blog on the 5 best places to shop in Maldives.\r\n\r\nWe offer the best honeymoon packages to both these destinations. We believe that a honeymoon is a once in a lifetime affair and we do everything to help you make it memorable. And in that quest, we offer complete customization of packages, blockbuster deals and extensive customer support. Check out our website for details.\r\n\r\nHoneymoons are a way for the couple to spend time with each other and get to know each other. Visiting a place that will help them in understanding the nuances of life and companionship is very important, and both countries mentioned above will help them do so. Spend time with each other, click loads of pictures, because these memories are going to stay with you forever.\r\n\r\n',NULL,'2021-03-18 21:44:59','2021-03-18 21:44:59',NULL,1,'',0,1,'Places to Visit & Things To Do In Mauritius & Maldives After COVID19','If you are wondering about the things to do in Mauritius or in Maldives, the combination of blue-green and white is going to keep you refreshed &amp; happy.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"\"]}'),(67,'5 Best Things To Do In The Maldives For Honeymoon','5-best-things-to-do-in-the-maldives-for-honeymoon','1617452813_blog.jpg','1629346806.jpg',NULL,'Aniket Agarwal','2020-07-02',NULL,NULL,NULL,'<p style=\"text-align: justify; \"><font face=\"Helvetica\">Wedding, and the honeymoon, both are truly once-in-a-lifetime affairs, hence you should put all your heart and mind to make them spectacular, and to celebrate the essence of these occasions no destination is better than the Maldives. The elongated and sun-kissed white sand shorelines, turquoise blue waters, exquisite beaches, and dense forests precisely characterise the country. The Maldives is all about a rendezvous with mother nature with all the grandeur, and for this reason, it is constantly in the bucket list of honeymooners across the world. From astounding panoramas to scrumptious foods and Man made waterside bungalows to a romantic candlelit dinner right on the water, there are a hundred things to do in Maldives, the Manhattan of Indian Ocean.</font></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">If you are also captivated with the amazing shades of blues, vibrant marine life, over water bungalows, underwater dining, then you should plan for the Maldives to experience the things in reality. The south-Asian country is not only popular for its serene beaches and ample water-related sports, but it also houses a vibrant culture of Buddhist and Islam. If you are overwhelmed with so many things to do in Maldives, and unable to figure out what to do being a honeymooner, then fret not.</font></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">We at ineedtrip, are here to advise you on the 5 best things to do in the Maldives for the perfect honeymoon with your companion, which will be stimulating and cherished for eternity. Post this blog we’ll also give you a short overview of our <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives honeymoon packages</a></b> and the amazing features the hold!</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong style=\"font-family: Helvetica;\">Book an Underwater Bungalow</strong><span style=\"font-family: Helvetica;\">&nbsp;Pic Cred: Conradmaldives</span><br></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">Visiting the Maldives is null and void if you’d miss a few days stay in an underwater bungalow, as it is one of the best things to do in Maldives for sure. Forget about sea-view villas or forest-view, these are long forgotten in the tropical paradise, Maldives. If you ever dreamt of living right under the water and add its vibes in your romance then come to the Maldives, it is the only place that fulfils your dreams. You will unquestionably love your stay amidst nature’s best location and enjoy its breath-taking views. All the bungalows offer you world-class amenities and all the essentials to make your stay stamped on your memory. So, embrace your partner and submit to an amorous moment within the blues and greens of the Indian Ocean.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Dinner on the Beach&nbsp;</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">A candlelight dinner is the essence of romance and ardor, it never goes out of fashion for sure. There’s no better way to rejoice your newly married life under the stars, a serene environment right beside the Indian ocean, and accompanying the resonance of the waves in between your tête-à-tête. The starlit sky right after the sunset, some luscious cuisines along with a bottle of champagne, a dreamlike surrounding can surely amaze both of you. Beachside Movie things to do in maldives Fondling your partner and watching your favourite movie right on the white-sand beaches isn’t a sensational idea! but as you know Maldives is the abode of fairy-tales and marvels, there are lots of resorts in the Maldives organises such arrangements for the honeymooners. Nestling in each other’s arm and lying on the beach under the starry sky is a passionate affair for sure. It can be the outset for some intimate moments and bring both of you much closer.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\"><strong>A Romantic Walk at the Glowing Beach</strong>&nbsp;</font></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">When the Sun waves off his hands and calls it’s a day, it’s the time to go for a romantic walk on the shoreline of Vaadhoo Island. If you want to catch a glimpse of one of the most enchanting things in your life and looking for the best things to do in Maldives then here it is. At Vaadhoo Island you will see that the beach glows with blue sparkling lights. The glow occurs due to the bio-luminescent plankton who floats in large quantities near the beach and responsible for the emanation. It is a natural phenomenon known as Bio luminescence and there’s nothing strange in this although there are lots of myths. Still, let’s come out of all this as romance is not all the science only but the feeling, imagine you and your better half around these twinkling blue lights. It is truly a sight to behold forever and you should not miss this one during your <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">honeymoon in the Maldives</a></b>. For better sighting, you should plan your visit to Reethi Beach, Veligandu Beach, and mostly in between the months of late June to August. You can read more about “glowing beaches’ in our blog on the “where are the world’s so called glowing beaches?“.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\"><strong>Satisfy Your Taste-bud at Underwater Restaurant</strong>&nbsp;</font></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">The world is a wonderland, and the Maldives, the romantic paradise of the Indian ocean is the best example of it. If you are in the Maldives with your spouse then choose Ithaa a submerged restaurant without failing. It is a one-of-its-kind restaurant in the world that offers you an enchanting way to enjoy marine life along with mouth-watering cuisines. The Ithaa submerged restaurant belongs to the Rangali Island resort and a pictorial treat to your eye and a nice blend of elegance and mystery. Dining here is one of the most romantic as well as exhilarating things to do in Maldives for sure, so be on your toes and make your reservation in advance to awestruck your significant other as the restaurant can only accommodate up to 14 persons. Above all, if you want to add a little bit of buzz in your itinerary then you can plan a day trip to Male and make yourself immersed with localities and their rich culture and history. Hence plan your honeymoon to the Maldives, and explore this paradise on earth without escaping the best things to do and strengthen your love and affection for eternity. This blog was about things to do, if you want to know about the best places to visit in Maldives, read our blog here.</font></p>\r\n\r\n<p style=\"text-align: justify; \"><strong><font face=\"Helvetica\">Conclusion</font></strong></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">The Maldives, the island country entices you to walk on the white sand and explore its pristine beaches alongside your other half far from the hullabaloos. Honeymoon in the Maldives is the perfect destination to instigate a new journey and take your intimacy to the zenith. Now, coming to ineedtrip’s packages, we have designed some amazing <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives honeymoon packages</a></b> for you, with a long list of inclusions and exciting itineraries to make your honeymoon a memorable one. We even have an option of package customisation, we understand you might want to add certain things to the package and you can use this option to do that. Our deals and discounts will make you want to book your packages instantly. So, what are you waiting for? Let’s get booking instantly!</font></p>',NULL,'2021-03-18 21:58:31','2021-03-18 21:58:31',NULL,1,'',0,0,'Book Honeymoon Package Maldives, Maldives Package, Maldives Tour Package, Honeymoon Tour package','If you are overwhelmed with so many things to do in Maldives, and unable to figure out what to do being a honeymooner, then fret not, just read this blog.','Best Things To Do In The Maldives For Honeymoon | Maldives Honeymoon Package','[\"139\",\"138\",\"137\",\"136\",\"50\",\"49\",\"47\",\"46\",\"36\",\"31\",\"29\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(68,'Which is The Safest Place For Honeymoon After Coronavirus Crisis? ','which-is-the-safest-place-for-honeymoon-after-coronavirus-crisis-','1617451599_blog.jpg','1629352551.jpg',NULL,'Aniket Agarwal','2020-04-23',NULL,NULL,NULL,'<p style=\"text-align: justify; \">The COVID-19 has had a huge impact on our daily lives. Our beloved shops, restaurants, malls everything has been shut down temporarily, but the industry that has suffered the most from this is the tourism industry. We know you might have planned for that special trip to Bali or Mauritius or Singapore, but all in vain. Seriously, why eat bats? We’ll not go in moral questioning and start with the answer to the question you’ve asked. Since, almost every country on the globe has COVID infected patients, the safest place for honeymoon after coronavirus would be a destination that has the lowest number of cases. Now, you wouldn’t want to go on a honeymoon to countries like North Korea right? From the list of most popular honeymoon destinations, Maldives is the country with the least number of COVID cases. According to the data by WHO, as of today, Maldives has reported a total of 23 cases out of which 16 have recovered. The government of Maldives is working 24*7 to ensure that the island-country has no more cases and can be opened for tourism once the global crisis ends. So, besides the exotic beaches, tropical climate, and electrifying nightlife you have one more reason to visit the Maldives. After all of this ends, you will find it quite relaxing to finally be out somewhere, laying down on the beach, cool breeze gushing past your cheeks, life will be joyful once again. Why Maldives, other than it being the safest place for honeymoon after coronavirus crisis? Why Maldives, should not even be a question. Have you never come across the stunning pictures of deep blue lagoons and pristine beaches with overhanging palm trees? Let’s give you a quick overview of what all you can do in Maldives. Hit the alluring beaches Beaches of the Hulhumale island and Bandos Island in Maldives are the top hotspots for swimming and relaxing on the white sand. The splendid view of the turquoise blue waters and white sand will make your jaw drop. The Hulhumale beach, in particular, is globally famous for swimming. The glaring water at this beach is shallow and the reef about 100 meters from the shores stops big waves. If you’ve only watched dolphins on TV, now’s the time to get some live action. Along with a magnificent sunset at the Hulhumale Beach, you can witness dolphins playing along with your speedboat, jumping in and out of the water. Explore the marine life safest place for honeymoon After Coronavirus crisis Amid this lockdown and summers, we can’t stop the urge to go swimming, can you? Imagine swimming and diving in the calm blue waters of Maldives and witnessing the diverse marine life. With vibrant lively corals, over 100 species of fishes and other marine life, Scuba diving and Snorkeling are must-dos in the Maldives. The Banana Reef in Maldives is famous across the globe for being a great diving spot. You’ll truly be surprised to see the amount of diverse colorful life, caves, and underwater cliffs in Maldives. Exploring marine life is a top activity for honeymooners to try out together. Go for adventure sports safest place for honeymoon After Coronavirus crisis Adventure and thrill always help people bond and a honeymoon without them wouldn’t be much of a fun. Being an Island-country, Maldives offers a lot of water sports. Parasailing, banana boat ride, and jet ski are top sports for couples to try out together. Besides these, you can also go for flyboarding, kitesurfing, wakeboarding but all these sports require skills and training, so if you have time to spare, you can learn and then go for them. The crystal clear and blue waters in Maldives, make water sport a lot more exciting, Romantic dinners, spa dates, and more safest place for honeymoon After Coronavirus crisis Probably the best place to go on that dream dinner date with your partner. You have multiple options, you can either go on a beach or a cruise. Book an exclusive dinner on a cruize where you’ll be served food with wine and live band to perform for you. Or go for a candlelight beach dinner, a table set up at the shore, balloons tied to your chairs, candles buried around your table &amp; chairs, and a bottle of wine. You can go for a nice walk after a satisfying dinner. Once you’re done with the dinner date, you can go for a spa date in Male to rejuvenate yourself. Shop at the local markets to get your hands on handicrafts, souvenirs, and some local textiles. This blog of course is a short one considering there are so many places to visit and things to do in Maldives, you can read our blogs on Maldives to know more about what Maldives offers. Conclusion According to the team at ineedtrip, Maldives will be the safest honeymoon destination after this coronavirus crisis. Till further announcements, follow all the rules, stay inside, and keep social distancing. The sun will shine brighter soon and you’ll go on that dream honeymoon. Let’s fight against this together! If you want to pre-book Maldives honeymoon packages, you can head over to our booking section right away.</p>',NULL,'2021-03-18 22:06:04','2021-03-18 22:06:04',NULL,1,'',0,0,'Safest Place For Honeymoon,  Coronavirus Crisis, Honeymoon Places','Almost every country on the globe has COVID infected patients. The safest place for honeymoon after coronavirus is hard to find, but we\'ve done it for you.','Which is The Safest Place For Honeymoon After Coronavirus Crisis?','[\"47\",\"46\",\"39\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(69,'5 Best Places To Visit In Maldives For Honeymoon','5-best-places-to-visit-in-maldives-for-honeymoon','1621511708_blog.webp','1629346769.jpg',NULL,'Aniket Agarwal','2020-04-08',NULL,NULL,NULL,'<p style=\"text-align: justify; \">The luxurious lifestyle, unrivaled beaches, and extreme water sports make Maldives the perfect destination for honeymooners. With over 1200 islands and 26 atolls, Maldives guarantees an adventurous trip to its visitors. The island-country has an exhilarating atmosphere year-round and being an island that offers a good number of watersports activities, most of the adrenaline junkies visit between November and March as that’s the dry season.</p>\r\n\r\n<p style=\"text-align: justify; \">This blog on the best places to visit in Maldives will take you on a virtual tour of stupendous island. After going through this blog, we bet you won’t be able to name even one island on the globe that matches the beauty of Maldives. We’ll not only tell you the 5 best places to visit in Maldives on honeymoon, but we’ll also share some exciting info about the other things you can do around these places and how to get there. To top it all, we’ll even direct you to some exciting deals on <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Honeymoon</a></b> packages by ineedtrip. Hulhumale Beach best places to visit in Maldives The Maldives is a beach destination, so we’ll start and end with BEACH PLACES ONLY.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>The Hulhumale beach</strong>&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Located on Hulhumale Island and is famous amongst tourists for being a watersport hub, but it’s a lot more than that. The beach has a long stretch of white sand and crystal clear shallow waters. Thanks to the reef about 100 meters from the shore, no huge waves are hitting the beach. You can go for a quick swim (avoid bikinis, it’s banned here) or lay down on the white sand under the palm trees. You should plan to visit around the evening to witness a breathtaking sunset and go for a long walk on the shore. If you and your partner are up for some adrenaline boost, you can try out water sports here (after all, that’s what this beach is famous for). To go snorkeling, you’ll have to make your way past the reef to the drop point (the instructor will tell you), and once you’re in the water, you’ll see a mesmerizing sight of baby sharks (harmless), turtles, manta rays and many fishes who’ve made the reef their home. If you like beaches, read our blog on the 5 best beaches to visit in the Maldives.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do</strong>: Dolphin Watching, Water Sports, Diving, Snorkeling</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong> Hulhumale is easily accessible so you can get there by local bus or private taxi Bandos Island best places to visit in maldives If you love white sand beaches and glaring waters, you’ll fall in love with the Bandos Island. The white sand beaches are a great contrast to the lush green forests, and it feels like someone played very nicely with colors. It’s a small island located just 5 miles from Male, the capital of Maldives. The island is so small that you could circle around the island on foot in less than a couple of hours. But why is it a must-visit place for couples? Because you’ll get privacy. We know that couples want to visit places that are less crowded (at least in the day) so that they can spend some quality time together around the natural beauty of mother earth. You must try parasailing here, they launch two people together, so it’ll be something that both of you can do together. Did you know, with iNeedtrip, you can customize your <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">honeymoon package to Maldives</a></b>? Click here to customize now.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:</strong> Wakeboarding, Parasailing, Snorkeling</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong> You can get a private speedboat from Male to visit this island Banana Reef best places to visit in maldives The Banana Reef is undoubtedly one of the best places to visit in Maldives for diving. The colorful coral, deep-sea caves, and exotic marine life will blow away your mind. It would be unjust if you travel to Maldives and don’t go scuba diving in the Banana Reef. The water here is clear, and the visibility is quite good compared to other diving sites in Maldives. A lot of our travelers have told us that once they dived in, they didn’t want to come out. It’s the perfect place to explore the underwater world and witness the beauty that lies beyond our scope of imagination. Scuba Diving is a great activity to bond together, you’ll be expressing yourself without words, and you’ll have to understand their emotions with just signs.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do</strong>: Scuba Diving, Canoe Ride</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong> It lies in the North Male Atoll, you can get there by a speedboat or a seaplane Maafushi The picture above might make you feel like this is a big island, but the truth, however, is that Maafushi has an area of just five sq kms. The island is one of the most popular ones amongst tourists, and it’s not just because of the snowy white beaches. Being a small island, Maafushi offers a lot of activities for couples, like dolphin watching. Can you picturize a better moment than standing hand-in-hand with your partner, watching dolphins doing tricks in &amp; out of the water, people cheering, and the sun setting down? Well, we can’t. If you want to get some tan and flaunt your beach body, you can go to the bikini beach, or if you’ve never gone for a sandbank trip, you might as well go for it here. You’ll be taken to a sandbank on a speedboat where you can witness the stunning sight of greenish-blue waters mixing up together to give a beautiful tint. Don’t forget to carry the camera and do take a swim in the blue lagoons.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:</strong> Hit the bikini beach, Night fishing, Dolphin Safari</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to Reach: </strong>45 minutes speed boat ride from Male Male best places to visit in maldives Male is the capital of Maldives, and it will be the first place that you’ll be visiting in Maldives. Although we’ve kept this gem at the end of the list of the 5 best places to visit in Maldives for honeymoon, you can make it the very first place to visit. Why has it been included in this list? Male offers tons of couple activities that the other islands in Maldives don’t, and even if they do, the charges are very high. You can go for a couple massage, candlelight dinner, or get some local textile and souvenirs from the Male local market. It’s the perfect place to travel around after you’ve spent most of your trip romancing.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Things to do:</strong> Visiting Artificial beach, Sultan park, male local market</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to reach:</strong> Your flight will land here, so just book the tour. To visit all these places and do all the activities mentioned under the ‘things to do’ tab, you should plan a trip of at least six days. You can check out <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives honeymoon packages</a></b> by ineedtrip or customize your package to save thousands! Here’s the list of the 5 best things to do in Maldives for couples.</p>\r\n\r\n<p style=\"text-align: justify;\">What’s the best time to explore the best places to visit in Maldives? We’ve mostly mentioned beaches here, so any time other than the rainy months will do. However, if you and your partner want to add some adventure to the honeymoon trip, you should go between December and February. The water is comparatively calm, and you’ll find plenty of watersports to enroll in. The underwater clarity is excellent around these months, so the diving experience will be stunning. Have all these wonderful locations excited you? Let ineedtrip help you plan the perfect honeymoon so that you can enjoy and build memories without stressing over things like hotel bookings, food, and transfers. We are currently offering Maldives honeymoon packages at unbelievable prices, and we have a few surprises for you too, why don’t you check them out here. If you want to have a look at the official website of Maldives, visit here.</p>',NULL,'2021-03-18 22:23:24','2021-03-18 22:23:24',NULL,1,'',0,0,'Book Honeymoon Package Maldives, Maldives Package, Maldives Tour Package, Honeymoon Tour package','The luxurious lifestyle &amp unrivaled beaches make Maldives the perfect destination for honeymooners. Here\'s a list of the 5 best places to visit in Maldives.','Best Places To Visit In Maldives For Honeymoon | Maldives Honeymoon','[\"30\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"24757,24730\"]}'),(70,'10 Best Restaurants in Dubai for Couples','10-best-restaurants-in-dubai-for-couples','1621511661_blog.webp','1629347717.jpg',NULL,'Aniket Agarwal','2020-12-03',NULL,NULL,NULL,'<p style=\"text-align: justify; \"><font face=\"Helvetica\">The year 2020 has really been a challenge for most of us and we cannot wait to go back to normal. When we talk about life before the Covid-19 pandemic, we cannot help but think about traveling and exploring new places. The tourism industry has been worse hit because the world dealt with the virus by quarantining and social distancing, both of which are the polar opposites of what we know as travel. Fortunately, we can say that the worst is over and that we are slowly but gradually going back to the life we lived. Among many other things, the worldwide lockdown and self-quarantine have been a huge challenge to the lovers who stay away, many who stay oceans apart.</font></p>\r\n\r\n<p style=\"text-align: justify; \"><font face=\"Helvetica\">With the situation getting better, the distance is decreasing and lovers are reuniting after months. And what other than traveling the world says “I love you” more? And which place can be better than the renowned luxurious restaurants in Dubai for a date with your better half? Seriously, we cannot think of anything more beautiful than the view of the setting Sun from a high rooftop, while you sip on some vintage wine while talking about the simpler and beautiful parts of each other’s lives. And if you are planning to propose to them, think no more because Dubai, its ambiance, aura, and vibe fit just perfectly to this grand gesture. We know how important and special it is and thus, we have curated a list of Dubai’s best venues that can provide you with global food, mesmerizing views, priceless experiences, and one of class hospitality. Here are the ten best restaurants in Dubai you should make a point not to miss especially with the love of your life.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Falcon Oasis Floating Restaurant</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">This restaurant located in Al Fahidi Souk will provide you with a once in a lifetime opportunity. Its grandeur and the spectacular view of the water and the city at the same time will surely make you speak the words of love. The cruise might need some time to get used to but once you align yourself with the beautiful rhythm of the waves, you will not want to be anywhere else at the moment. Falcon Oasis serves a wide range of dishes among which you should try out the Butter Chicken Curry and Arabic Bread. Cost for two – AED 190, $52 (without alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Marina Social</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">Marina Social is a concept designed by the famous Michelin star British chef who describes it as a little pocket of London in the heart of Dubai. If you are looking for a candlelight dinner in Dubai, this is the perfect place for you. They have a British-Mediterranean menu and the one dish that tops everything is their famous Beef Wellington with Cheesy chips. They also have an open kitchen which will allow you to catch a glimpse of the chefs at work with whom you can interact as well. Cost for two – AED 382, $104 (Without alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Level 43 Sky Lounge </font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">This restaurant which is located in the Trade centre region has an open rooftop which provides for a beautiful panoramic view of the city. Take your loved one for a romantic date to this restaurant and try out their rib-eye steak which is the dish most in demand. Cost for two- AED 450, $123 (With Alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Eauzone</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">The Eauzone is a beachside restaurant that is one of the best restaurants in Dubai, where you can spend a romantic evening while enjoying the view of the sunset, right there at the beach. The location is easily accessible and noticeable. Enjoy a laid back evening and spend some much needed quality private time with your partner. They specialize in Thai, Japanese and Asian cuisine and while there try out their Salmon with Mashed Potatoes. Cost for two – AED 560, USD 152 (Without Alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Hakkasan</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">As the name suggests, Hakkasan is a Chinese restaurant located in the Emirates Tower center. There is something about authentic Chinese food that has bonded lovers, friends, and families over the years and we are sure this restaurant will prove itself in the area. If you want to add a spark to your evening, just book a table in the terrace seating area which is surrounded by the greens. This is the best restaurant in Dubai which serves Black Cod with Black truffle, a dish that you cannot afford to miss at any cost. They are also well known for their collection of wine and the creation of cocktails that compliments the food and elevates your overall experience. Cost for two – AED 600, USD 163 (with alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Karma Kafe</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">This restaurant has a wonderful location and more than that it has the Burj Khalifa in the background. We recommend you to get a seat on the terrace area which will provide you with the best ambiance. This place is glamorous and always has a happy vibe which is often facilitated with live music by troops from around the world. This is easily one of the best restaurants in Dubai where you can groove to the music, cacophony, and glitter while sipping on a cocktail. They serve Asian food and Sushi is their area of specialization and while at it do not forget to try their Fried Calamari. Cost for two – AED 430, USD117 (with alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">The Shore </font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">If you are looking to spend a cozy day by the beach with your loved one, look no further as The Shore provides you with just that. Located on the Al-Qasr beach, you can enjoy the magnificent view of the Dubai Marina, Palm Island, and the Jumeirah coastline from the cozy shades of The Shore. Pull up a chair and enjoy your choice of Mexican platter against the picturesque view. The outdoor seating offers a view of Atlantis beach. Add a cocktail to your order and you are set for a perfect evening with your loved one at The Shore, one of the best restaurants in Dubai. The restaurant provides impeccable service and a variety of Mexican delicacies, but the Nachos, Char-grilled Boston Lobster, and the Quesadillas are among the must-try dishes coupled with a range of their signature cocktails. Cost for two: USD 140, AED 520 (with alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Shades</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">If you are looking for a place to surprise your partner with a romantic dinner date, this is your place. Located at the Dubai Marina, Shades provides a stunning look of the city skyline. The place has a stylish and chic décor that engrosses you into enjoying an elegant and intimate dinner date with your loved one. The menu offers a variety of Mediterranean flavors. You can also try out their range of Arabic and Asian delicacies from the Mazina where your food will be prepared in front of you. Try out their rejuvenating beverages along with Frutti Di Mare and Shish Taouk which is on their must-try list. Cost for two: USD 135, AED 485 (with alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">The Beach Bar &amp; Grill</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">An array of palm trees swaying alongside the blue waters of the beach is what you will be looking at from The Beach Bar &amp; Grill. Located at Al Sufouh Road, One &amp; Only Royal Mirage, this is a great place to visit if you want to feel the salty breeze on your face and enjoy the soothing sound of the waves rolling in the background. This restaurant can turn your day around with its refreshing vibe. The place offers an informal courtyard setting and you can enjoy a perfect open-deck candlelight dinner date with your bae. If you are here, try out their variety of seafood grilled dishes especially their Grilled Octopus and Mozzarella Burrata Cost for two: USD 125, AED 450 (without alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Iris </font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">Located on the 27th floor of the Dubai Oberoi, this place offers the best rooftop experience you can seek. This pace is also a good option if you are looking for an affordable romantic experience. Iris has a cozy setting with comfy chairs set against the stunning cityscape that it overlooks. The special takeaway is that you can enjoy a feel of the tropical rainforests with a skyscraper at this restaurant. Try out their amazing international dishes, especially the Grilled Basil Crusted Scottish Salmon if you are here with your partner. Pair it with a classic cocktail and you have a perfect and affordable evening. Cost for two: USD 92-95, AED 340 (without alcohol)</font></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">We sincerely hope that you will choose the most suitable among these best restaurants in Dubai and make a memorable evening out of it. At ineedtrip, we provide you with the best packages to Dubai and make sure that your stay here is something to recall years from now. We are dedicated to providing the best services and assure you that we leave out nothing of the much-acclaimed “Dubai Experience” while organizing the packages. So the next time you are here, and we hope that is soon, we will be glad to arrange your holiday for you and your lover.</font></p><p style=\"text-align: justify;\"><font face=\"Helvetica\"><b>Falcon Oasis Floating Restaurant</b></font></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\">This restaurant located in Al Fahidi Souk will provide you with a once in a lifetime opportunity. Its grandeur and the spectacular view of the water and the city at the same time will surely make you speak the words of love. The cruise might need some time to get used to but once you align yourself with the beautiful rhythm of the waves, you will not want to be anywhere else at the moment. Falcon Oasis serves a wide range of dishes among which you should try out the Butter Chicken Curry and Arabic Bread. Cost for two – AED 190, $52 (without alcohol)</span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\"><b>Marina Social</b></span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\">Marina Social is a concept designed by the famous Michelin star British chef who describes it as a little pocket of London in the heart of Dubai. If you are looking for a candlelight dinner in Dubai, this is the perfect place for you. They have a British-Mediterranean menu and the one dish that tops everything is their famous Beef Wellington with Cheesy chips. They also have an open kitchen which will allow you to catch a glimpse of the chefs at work with whom you can interact as well. Cost for two – AED 382, $104 (Without alcohol)</span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\"><b>Level 43 Sky Lounge</b></span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\">This restaurant which is located in the Trade centre region has an open rooftop which provides for a beautiful panoramic view of the city. Take your loved one for a romantic date to this restaurant and try out their rib-eye steak which is the dish most in demand. Cost for two- AED 450, $123 (With Alcohol)</span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\"><b>The Beach Bar &amp; Grill</b></span><br></p><p style=\"text-align: justify;\"><span style=\"font-family: Helvetica;\">An array of palm trees swaying alongside the blue waters of the beach is what you will be looking at from The Beach Bar &amp; Grill. Located at Al Sufouh Road, One &amp; Only Royal Mirage, this is a great place to visit if you want to feel the salty breeze on your face and enjoy the soothing sound of the waves rolling in the background. This restaurant can turn your day around with its refreshing vibe. The place offers an informal courtyard setting and you can enjoy a perfect open-deck candlelight dinner date with your bae. If you are here, try out their variety of seafood grilled dishes especially their Grilled Octopus and Mozzarella Burrata Cost for two: USD 125, AED 450 (without alcohol)</span><br></p>',NULL,'2021-03-19 10:39:40','2021-03-19 10:39:40',NULL,1,'',0,0,'Best restaurants in Dubai for couples','The year 2020 has really been a challenge for most of us and we cannot wait to go back to normal. When we talk about life before the Covid-19 pandemic, we','10 Best Restaurants in Dubai for Couples | Dubai Tour','[\"39\",\"34\",\"28\",\"26\",\"25\",\"24\",\"21\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\",\"\",\"\",\"\"],\"BlogDescription\":[\"<div style=\\\"text-align: justify;\\\"><br><\\/div>\",\"<div style=\\\"text-align: justify;\\\"><br><\\/div>\",\"<div style=\\\"text-align: justify;\\\"><br><\\/div>\",\"<div style=\\\"text-align: justify;\\\"><br><\\/div>\"],\"images\":[\"\"],\"detailPackages\":[\"\",\"\",\"\",\"25156, 24820, 24818, 24814, 24735, 24614, 24614\"]}'),(71,'A Guide To The Cheapest Yet Luxurious Honeymoon To Bali','a-guide-to-the-cheapest-yet-luxurious-honeymoon-to-bali','1621511611_blog.webp','1629351381.jpg',NULL,'Aniket Agarwal','2020-04-16',NULL,NULL,NULL,'<p style=\"text-align: justify; \">There’s no other place that can beat a luxurious honeymoon to Bali. The picturesque beaches, turquoise blue waters, contrasting landscape and unmatchable hospitality of Bali need no introduction. Imagine yourself driving around in luxury cars, staying at the most comforting hotels, trying out all the famous dishes and getting enrolled in extreme watersports, does all this make you feel like packing bags? Once you read this guide, you’ll know a ballpark figure of the amount you’ll be spending on the cheapest yet luxurious honeymoon to Bali. Ineedtrip will also offer you <b><a href=\"https://www.ineedtrip.com/tour-destination/bali\">Bali honeymoon packages</a></b> at super-crazy deals and mouth-watering discounts. Here’s a list of the topics that you’ll be reading about in this guide</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to Handle Visa?</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Everyone hates the Visa process. The charges, the time, everything seems to be too frustrating. Well, here’s good news, Visa for Bali is free! Yes, you read that right. Indonesia offers a free Visa on arrival to Indians for 30 days but of course with certain conditions. To take the benefits of a free Visa you’ll have to make sure that your passport is valid for at least 6 months from the date you arrive in Bali. You’ll also have to present your hotel booking and return flight details to the local personnel. Once your documents are verified you’ll get a Visa Exemption Stamp. So, the cost of the very first thing you need to travel to an international destination is zero.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>When to Book Flights?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">You want to go for a luxurious honeymoon right? So it would be wise to save as much as possible on flights, the more you save, the more things you’ll be able to add to your itinerary. So, a big question, when should you book the flight? The ideal time to visit Bali is between March to October, but if you want to take advantage of the flight discounts and Bali’s cool weather, it’s best if you plan between April and June. Book your flight at least 4 months in advance of your trip, you’ll get cheaper prices and more offers.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>How to get around?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Once you’ve settled in the 4-star luxurious hotel offered under ineedtrip’s Bali honeymoon packages, it’s time to rent a luxurious car. You’re in for a luxurious honeymoon right? So, we’ll not even discuss local transportation. You’re in for a luxurious honeymoon to Bali right? For the first day or dinner date, you can rent cars like the Mercedes Benz C Class, E Class, Maserati, Porsche, etc. For the second and third day, you should rent a motorbike to get around nearby places and breathe the fresh air of Bali. The landscape is exceptional and the roads are a little bumpy (perfect for a bike tour with your partner). And for the remaining days, you can travel around in a cab and taxi. You’ll be spending around Rs 20000 on travel (for both)</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Where and What to eat?</strong></p>\r\n\r\n<p style=\"text-align: justify;\">If you’re a food lover just like us, you’ve got to try these mouthwatering local dishes in Bali. Bali caters to both vegetarians and non-vegetarians, the dishes are so delicious that you’ll be asking the chefs to write down the recipes. To experience the local food and with luxury try these dishes at the restaurants we’ve mentioned.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Babi Guling:</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Pork is stuffed with local herbs and spices and is roasted for hours to bring out the flavors. It is served with crispy pork skin, rice, and pork sausage. That’s a lot of pork!</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Where to Eat: Warung Babi Guling Pak Malen Nasi Goreng:</strong></p>\r\n\r\n<p style=\"text-align: justify;\">This is the most favorite dish among the Balinese people, they eat it for breakfast, lunch, dinner all. Fried Rice is served with fried egg, prawn, dried shallots, pickles and a lot more stuff. Where to Eat: Warung Mina Seminyak Vegetarians fear not, here are the dishes for you.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Gado Gado:</strong></p>\r\n\r\n<p style=\"text-align: justify;\">Veggies like carrots, lettuce and more are dipped in peanut sauce to be served with boiled egg on the top. The best dish to cool off from the tropical weather of Bali. (If you don’t eat eggs, you can simply ask them to omit it)</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Where to Eat: Made’s Warung/ Chez Gado Gado Restaurant Murtabak:</strong></p>\r\n\r\n<p style=\"text-align: justify;\">A very thick pancake that’s as soft as cheesecake. This is a perfect dessert (or breakfast if you’ve got a sweet tooth) for a dinner date. You can also eat it as the main dish if you’ve had your share of spicy food in Bali. Where to Eat: Bridges Bali Expected Cost (for Both): Rs 8000 You can read more about the must-try dishes here. How much will sightseeing cost? Bali offers some magnificent sites for nature lovers. The white sandy beaches with waters so clear that you can see the sea bed and the lush green forests which create an eye-pleasing contrasting landscape make Bali the top choice for honeymooners.</p>\r\n\r\n<p style=\"text-align: justify;\">Bali has so many places to explore that you’ll be overwhelmed. So, how should you pick out of these places? What are the places that you should visit and what are the ones that you can afford missing?</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Must-Visit</strong></p>\r\n\r\n<p style=\"text-align: justify;\">1) Uluwatu Temple cliff</p>\r\n\r\n<p style=\"text-align: justify;\">2) Tanah Lot</p>\r\n\r\n<p style=\"text-align: justify;\">3) Gili Islands</p>\r\n\r\n<p style=\"text-align: justify;\">4) Nusa Islands (Kelingking beach particularly)</p>\r\n\r\n<p style=\"text-align: justify;\">5) Lovina Beach</p>\r\n\r\n<p style=\"text-align: justify;\">6) Mount Batur</p>\r\n\r\n<p style=\"text-align: justify;\">7) Sekumpul Waterfalls Can be missed out (only if you’re short on time)</p>\r\n\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">1) Waterbom Bali (adventure park)</p>\r\n\r\n<p style=\"text-align: justify;\">2) Bali Zoo</p>\r\n\r\n<p style=\"text-align: justify;\">3) Goa Gajah</p>\r\n\r\n<p style=\"text-align: justify;\">4) Git Git Waterfalls</p>\r\n\r\n<p style=\"text-align: justify;\">5) Sacred Monkey Forest</p>\r\n\r\n<p style=\"text-align: justify;\">6) Sanur</p>\r\n\r\n<p style=\"text-align: justify;\">Ineedtrip will take you on a tour of most of the places mentioned under the must-visit tab, and for the remaining places you should expect spending around Rs 10K (parking fees/entry fees/guides etc.) Here’s our blog on the 7 best places to visit in Bali. This blog has all the must-visit places mentioned above and we’ve tried our best to describe them in detail. Must try water-sports What fun would a honeymoon be if you don’t add some adventure to it. Bali offers some breathtaking adventure sports that’ll keep your adrenaline pumped up. The crystal clear and shallow waters around certain beaches are great for snorkeling. You can go for snorkeling and scuba diving at Tulamben to explore the shipwrecks of the USAT Liberty. There are 10s of adventure sports that you have to try out like parasailing, kitesurfing, flyboarding and more. On second thought, you should dedicate a complete day for adventure sports. But what you must not miss out is the Flyfish. This is a unique adventure sport where you and your partner will be strapped to an E-shaped inflatable kite (more like a boat) and pulled with a speedboat, you’ll be flying high in the sky with your back towards the speedboat so you’ll have no clue where it might turn next. This adventure sport has been recommended by most of our customers and they said: “it looked fun at first but once you’re up in the air you’ll be screaming at the top of your voice.” In total all these water sport activities will cost you around Rs 10000 for two.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Bonus Honeymoon Activities</strong></p>\r\n\r\n<p style=\"text-align: justify;\">What else can you do to spice things up? Luxurious activities that’ll help you bond more? Couple massages and Dinner on cruise. Couple massages are best to rejuvenate and detox from the stress of the outer world. Both of you can enjoy a massage together and when you come out you’ll feel a lot lighter and romantic A dinner date on a cruise is a perfect setting for a budding romance. Music, dance, and wine is a combo that’ll make both of you pour your heart out to each other. Ineedtrip’s Exclusive Offers Now that you know the secrets of a luxurious yet cheapest honeymoon to Bali, why don’t we put a cherry on the top of the cake? With ineedtrip’s luxurious Bali honeymoon packages you’ll get to visit the most exotic places in Bali and experience a trip like no other. We have topped our best honeymoon package with a stay in 4 star villa with pool, water sport activities including parasailing, jet ski, banana boat ride, a romantic dinner on a beach, romantic dinner on a cruise, Tanah Lot temple tour, Uluwatu temple tour, Gili Islands excursion tour and a lot of honeymoon freebies. If all this excites you, let’s start with customizing your <b><a href=\"https://www.ineedtrip.com/tour-destination/bali\">Bali Package</a></b> right now!</p>',NULL,'2021-03-19 11:06:31','2021-03-19 11:06:31',NULL,1,'',1,0,'cheapest and luxurious honeymoon to Bali, Bali Tours, Bali Package, Honeymoon in Bali, Bali Honeymoon.','Here\'s your guide to the cheapest yet most luxurious honeymoon to Bali. With this guide you\'ll spend your honeymoon with royalty and utmost pleasure','A Guide To The Cheapest Yet Luxurious Honeymoon To Bali | Bali Honeymoon Package','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(72,'Best Travel Destination In The World With World\'s Third Weakest Currency','best-travel-destination-in-the-world-with-world-s-third-weakest-currency','1621511000_blog.webp','1629351688.jpg',NULL,'Aniket Agarwal','2020-04-03',NULL,NULL,NULL,'<p style=\"text-align: justify; \">How surprised would you be, if we told you that out of all places, BALI has one of the weakest currencies in the world’. The place that’s on the bucket list of every beach lover. The place that is without a doubt the best travel destination in the world, has such cheap currency! Quite shocking right? Want to know another fact?</p>\r\n\r\n<p style=\"text-align: justify; \">80% of Bali’s economy is dependent on tourism. Yes, no kidding, most of its income is generated from hotels, sightseeing, and other activities of the tourism industry. So, let’s discuss, what this means for you and how you can benefit from this currency difference. You’ll also get the hacks to complete a Bali trip in the cheapest way possible with ineedtrip. How rich you’ll feel in the world’s best travel destination? Super rich. Ever wondered how the Americans feel when they visit India? You’ll feel richer, as 1 Indian Rupee will get you 196 Indonesian Rupiah. This means if you take 10000 Rs along, you will have a whopping 19 lakh 60 thousand IDR.&nbsp;</p>\r\n\r\n<p style=\"text-align: justify;\">Okay, so that’s about how rich you’ll feel. But does that currency difference mean that you can travel around Bali with a few hundred rupees? Nope, sorry to break your heart, but since you’re so rich there, you’ll be paying hefty amounts too! How much?</p>\r\n\r\n<p style=\"text-align: justify;\">Let’s have a look. Visit every attraction within a tight budget! Let’s be honest, you have seen countless images of Bali and you haven’t been able to stop yourself from drooling over those spectacular beaches. Do you want to visit those white-sandy beaches with lush greenery and dive into those turquoise blue waters to see the vibrant coral? Or maybe you also want to visit the cultural heritage and do some fun adventure sports, but you’re worried about the budget.</p>\r\n\r\n<p style=\"text-align: justify;\">Well, here’s good news, ineedtrip offers you the best holiday packages to Bali with the cheapest prices and an amazing itinerary. If you want to know more about the places and the budget first, let’s go straight to it.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Kelingking Beach</strong></p>\r\n\r\n<p style=\"text-align: justify;\">You have probably seen this picture multiple times on Instagram or Facebook. This t-rex jaw shaped cliff is located at the Kelingking beach, which is one of the must-visit beaches in the world’s best travel destination. Besides this view from the top, you can go down to the beach to dive in those big waves and experience the pristine white sand of the beach.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Mount Batur</strong></p>\r\n\r\n<p style=\"text-align: justify; \">You’ll probably be wondering, why we have mentioned a mountain when there are so many beaches in Bali. Well, Mount Batur offers such mesmerizing sunrise that people trek to the top on their very first morning in Bali. Your Instagram stories of the <b><a href=\"https://www.ineedtrip.com/tour-destination/bali\">Bali trip</a></b> would be incomplete if you miss this one.</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>Sekumpul Waterfalls</strong></p>\r\n\r\n<p style=\"text-align: justify; \">Sekumpul Waterfalls are the cluster of seven waterfalls hidden in a lush green forest. You will have to take a 1-hour ride to visit this hidden gem and make sure to pay for parking only at the central parking and get yourself a guide, to help you walk down the steep path.</p>\r\n\r\n<p style=\"text-align: justify;\">You can also visit other places like the Uluwatu temple or the Monkey Forest in Ubud. All the traveling and entry tickets to certain places will cost you around 1,000,000 IDR around Rs 5000. So, you’ll be visiting almost every tourist attraction in Bali within Rs 5000, given that you rent a vehicle for 3-4 days which will cost you Rs 3000 at tops. Food for two will cost you maximum Rs 1500 (given you don’t fancy yourself to some big restaurant or hotel) and other local travel can be done within Rs 5000. So if you plan a trip for 3 days, the complete trip cost including hotel should be around Rs 30000 per person (excluding flight cost).</p>\r\n\r\n<p style=\"text-align: justify;\"><strong>READ: 7 BEST PLACES TO VISIT IN BALI </strong></p>\r\n\r\n<p style=\"text-align: justify; \">Now, that the budget is in line, the question is, do you want to enjoy the place, or keep checking your budget and making note of the expenses every minute. If you want your <b><a href=\"https://www.ineedtrip.com/tour-destination/bali\">Bali trip</a></b> to be adventurous, fun and stress-free, head on to ineedtrip‘s customized holiday and honeymoon packages section right now! You can pick from the available options or customize the whole package according to your needs. You won’t get such cheap prices anywhere else, if you do, don’t forget to match the itinerary! Till next time!</p>',NULL,'2021-03-19 11:38:57','2021-03-19 11:38:57',NULL,1,'',1,0,'Bali Package, Bali Tour Package, Bali Package from India, Bali Honeymoon Package.','Bali is the best travel destination for exotic beaches, turquoise waters, vibrant corals and lush green forests for honeymooner\'s and holiday\'s','Best travel destination with world\'s third weakest currency','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(73,'A Guide On Planning A Trip To Maldives From India','a-guide-on-planning-a-trip-to-maldives-from-india','1621509172_blog.webp','1629350936.jpg',NULL,'Aniket Agarwal','2020-04-22',NULL,NULL,NULL,'<p style=\"text-align: justify; \"><font face=\"Helvetica\">The serene beauty of Maldives attracts tourists from all over the globe. The startling beaches, lofty palms, deep blue water, and an exciting underwater life makes the whole experience an unforgettable one. Although it’s a popular honeymoon destination, people do visit Maldives with families. The first thing to do before planning a trip to Maldives is to search for tourist hotspots. But there’s a big question mark on what to do next after imagining ourselves at those places. How can I get there? How much would it cost me? What should I Pack? Are some of the questions we Indians can’t stop thinking about, after reading those travel blogs. With this blog, we’ve tried addressing most of the queries that arise when planning a trip to Maldives. Let’s begin. Choose the right time to travel to Maldives from India The most important thing when planning a trip to Maldives is choosing the right time to visit the place.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Best time to visit Maldives</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">There are 2 dominant seasons in Maldives, the rainy season and the dry season. The rainy season starts in May and lasts till October. If you visit during the rainy season you won’t be able to do much except drinking, scuba diving and sleeping in your resort. The dry season lasts from November till April and is the best time to visit Maldives. Although you have a 6-month window, it would be wise to plan in either November or in March/April, why? Because December to February is peak season with Christmas and winter vacations. The right time will also depend on your free time. You don’t want to take too many leaves and be overwhelmed with work when you join back. December will be costly, but if you plan around a weekend including Christmas, it would be a satisfying experience.</font></p>\r\n\r\n<p style=\"text-align: justify; \"><strong><font face=\"Helvetica\">Visa Bookings</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">The first and foremost question for an international trip, how to handle Visa? Luckily you don’t have to pay a single dime for a Visa when traveling to Maldives. To strengthen bilateral bonds with India, Maldives offers a free 30 days Visa on arrival for Indian citizens. Define a budget and carry Maldivian Rufiyaa The local currency as you would have guessed by the title is Maldivian Rufiyaa (Rf) and you’ll have to spend INR 5 to get 1 Rf. Since our currency is a bit at the lower side when compared to Rf, we have to give more focus to the budget. Maldives offers so many things to do that if you don’t work on a predefined budget, you might end up spending double what you thought. The first thing you’ll have to decide is the number of days of your trip. An ideal stay should be around 5 days, but you can adjust according to your itinerary. We’ll give you an approx cost per day including food, local travel, so you can add accordingly. If you eat out at mid-sized restaurants you would be spending around Rs 1000 per person on food every day. You would save on traveling if you rent a 2 wheeler to travel locally, the fuel and rent will cost you around Rs 800 per day. It would be safe to keep the per day travel budget to Rs 1000 as you might have to take an occasional ferry to commute between islands.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Defining the budget</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">Now, that you know the per-day cost, it would be easier to define a budget. You should also have a look at the last section where we’ve mentioned sightseeing and adventure sport costs. Hey, don’t forget to the additional expense of shopping. You wouldn’t want to miss out on collecting souveniers right? Here is the list of the 5 best places to shop in Maldives, just to help you plan out. Pro Tip: Always carry the local currency in a decent amount (at least 500 Rf per person), it would make small purchases like water, snacks much easier. Give advance bookings a priority when planning a trip to Maldives To have a stress free trip to Maldives, you must take bookings seriously. You’ll have to take care of a lot of bookings like flights, hotels, packages, etc, so it’s wise to make a checklist.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">While planning a trip to Maldives, giving advance bookings a priority because hotel and flight prices shoot up to 30% during the peak time. Make sure that you book flights at least 6 months before your travel month. The advance flight booking will help you get discounts and save a lot on travel costs. It also gets very difficult to choose the right location to stay and to choose the right hotel, if you haven’t ever visited a place. We advise you to book a <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives tour package</a></b> from one of the ineedtrip’s pre-designed packages that include world-class hotels with perfect locations. With our tour packages, you won’t have to worry about your stay, airport transfer, breakfast and much more. You can completely focus on sightseeing and adventure activities. Make a list of must-visit places and must-do activities.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><strong><font face=\"Helvetica\">Best places to visit in Maldives</font></strong></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">Okay, this title is probably everyone’s favorite. Make sure that you have a list of the best places to visit in Maldives and must-do activities. When we plan a trip, it’s essential to decide the places worth visiting and places you can skip. Maldives has so many wonderful attractions that if you don’t plan an itinerary, you will end up wasting a lot of time deciding which place to visit. Here’s a suggested list of places to visit and things to do on your <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">trip to Maldives</a></b>. If you want to know about these places in detail you can visit our blog on the 5 best places to visit in Maldives.</font></p>\r\n\r\n<p style=\"text-align: justify;\"><font face=\"Helvetica\">We’ve recommended places considering you are traveling to Maldives on honeymoon. You can skip spa dates and romantic dinners to add more adventure sports to your trip if you’re traveling with family. Also, note that you can try these activities at other places too, we’ve created this list based on our customer reviews. If you want to try local dishes it would be wise to search for restaurants that are near to your hotel. You wouldn’t want to travel a lot with a full belly in the hot weather. Now that we’ve guided you on how to plan a trip to Maldives from India, why don’t we offer you something more? You can head over to our Maldives packages section and have a look at the mindblowing prices and luxurious hotels. With ineedtrip you will get the most enriching experience of Maldives and we’re sure we’ll become your lifelong travel partner. We hope with this blog your trip planning gets much easier and you have a stupendous <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives trip</a></b>. Don’t forget to tell us about it, when you get back.</font></p>',NULL,'2021-03-19 11:42:15','2021-03-19 11:42:15',NULL,1,'',1,0,'Maldives Package, Honeymoon Package Maldives, Maldives Tours, Best Maldives Package, Book Maldives Package.','This guide on planning a trip to Maldives will help you enjoy your heart out in Maldives without stressing over bookings, travel, sightseeing and more','A Guide On Planning A Trip To Maldives From India | Trip to Maldives','[\"139\",\"138\",\"137\",\"136\",\"123\",\"36\",\"31\",\"30\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25218, 25187, 27082, 27081, 27075, 27074\"]}'),(74,'10 Best places to visit in Goa for Honeymoon','10-best-places-to-visit-in-goa-for-honeymoon','1623663327_blog.jpg','1629346847.jpg',NULL,'Aniket Agarwal','2021-03-10',NULL,NULL,NULL,'<span id=\"docs-internal-guid-6dec8526-7fff-71fd-c06e-c532e9cb993c\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 12pt; white-space: pre-wrap; text-align: left;\">Are you in search of a destination that can provide the perfect combination of fun and solitude? Look no further! Plan a Goan romantic honeymoon and enjoy the wide range of places that the beach heaven can offer.&nbsp;</span><br></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Here, you and your partner have the opportunity to capture electrifying moments and make them unforgettable memories of a lifetime. Irrespective of your traveling palate, Goa will undoubtedly take your breath away.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If you and your partner are history buffs, then the ancient cathedrals and the Portuguese-inspired buildings will mesmerize you. However, if you have a romantic soul, numerous gorgeous beaches, and a candle-light dinner at the shacks overlooking the Arabian Sea is perfect for you to get cozy with your partner. Now, if you want to experience the infamous nightlife of Goa, you can cherry-pick the best bars and nightclubs.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Top ten places to visit in Goa for the honeymoon!</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The plethora of places might cause confusion and dampen your honeymoon excitement. That is why in an effort to help you out, we have made a list of the ten best places that you can visit to make irreplaceable memories.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Velsao Beach</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Located in close proximity to the Cansaulim village in South Goa, Velsao Beach is the perfect place to start off your honeymoon. With a tranquil ambiance and seclusion from the hyper-energetic crowd, the beach offers you the opportunity to capture some cozy moments.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Sit underneath the silvery sand and enjoy the sea breezes while the palm trees sway along with the tune of nature. The gentle waves coupled with the serene atmosphere create the perfect setting to whisper sweet nothings to your partner.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">However, the beach also has some restaurants and shacks that offer delectable local cuisine. You can enjoy privacy while having a marvelous time with your partner.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Did you know that the sunsets here are absolutely gorgeous? Wait till the sun sets and watch in absolute awe as different hues dance across the sky and create ethereal magic. It’s these moments that will make your honeymoon all the more memorable.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If you want to try some adventure, Velsao Beach will not disappoint you. Here, you can experience snorkeling along with picturesque boat rides with your partner.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Dudhsagar Waterfalls</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Did you know that Dudhsagar Waterfalls mean “the sea of milk”? Well, the cascade of gushing water from an altitude of approximately 1071 feet does have the ethereal appearance of milk streaming down. The scenic visual is so mesmerizing that you can’t help but admire this natural beauty with your partner.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The panoramic drive from Goa to this ethereal waterfall stretches for about 60 km. Even the journey is filled with dense green forests that lure you into a fascinating magical world.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Located within the Bhagwan Mahavir Wildlife Sanctuary in Sonaulim, the place offers an incredible mix of adventure and serenity. You can’t help but feel trepidation while looking forward to admiring the beauty of nature. The four-tiered waterfall surrounded by lush deciduous forest is a marvelous sight. Moreover, the rich biodiversity of the surrounding area is simply astounding.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If possible, try to visit the Dudhsagar Waterfalls in the monsoon. The rains amplify the beauty of the fall a thousandfold. Hold hands with your partner while you view the beautiful waterfall and the panoramic visuals enveloping it.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Calangute Beach</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">One of the most popular places to visit in Goa for all honeymooners is Calangute Beach. Dubbed as the \"Queen of Beaches\", the site offers serenity, thrill, and unadulterated fun. Regardless of your inner spirit, you will find Calangute Beach to be a memorable experience with your partner.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If you share a deep passion for admiring nature with your partner, Calangute Beach is an excellent choice. Surrounded by impeccably astonishing landscapes, lush greenery, and the turquoise water of the magnificent Arabian Sea, you can hold hands and stroll along the beach.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Moreover, you can also wait back till sunset and watch as the gorgeous sun sets amidst the scintillating backdrop of the ethereal beauty. It is the perfect place to forge a stronger bond with your partner, away from the chaotic buzz of the city.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">But are you seeking fun, adventure, and thrill? Don\'t worry! In Calangute Beach, you and your better half can partake in a wide variety of adventurous water sports such as banana boat rides, parasailing, bumper ride, and Jet Ski.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">You can also check out the vibrant markets along Calangute Beach. Here, you will find almost everything – junk jewelry, pawn items, trinkets, and clothes. It is the perfect place to shop for some much-needed souvenirs.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">After relaxing on the beach, you can explore Calangute and visit the various attraction sites. These include Aguada Fort, St. Alex Church, Our Lady of Piety, Kerkar Art Gallery, etc.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Grand Island</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Goa is one of those few places that are blessed with islands. Embarking on an island tour with your beloved will be the experience of a lifetime. One of the most sought-after and popular islands that you can explore is the Grand Island.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Accessible only by ferry, it gives you the perfect opportunity to spend some cozy moments while admiring the picturesque beauty of nature around.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Do you and your partner share a love for thrill and adventure? Well, then the Grand Island will definitely fulfill your fantasies. Famous for being one of the most top-rated snorkeling destinations, you can explore the magnificent beauty of the world under water with your partner.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Some of the most gorgeous diving spots include Suzy\'s Wreck, Bounty Bay, Shelter Cove, and Sail Rock. Moreover, you can also spot cute dolphins as you traverse the ethereal Arabian Sea on your way to the island. Once you embark on the island, you will be greeted with spice plantations and unparalleled scenic visuals.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Sinquerim Fort</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Constructed in the year 1612, the Sinquerim Fort is an architectural brilliance. Overlooking the charming Sinquerim Beach, the fort bisects it and extends to the majestic Arabian Sea. Actually, an extension of the Aguada fort, the Sinquerim Fort, has significant historical importance.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The fort was built with the intent to defend Goa against the Marathas and the Dutches. Moreover, it was also a reference point for the ships merging from Europe with goods.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If you are not a fan of the overly-crowded tourist places, this is the perfect destination to have some alone time with your beloved. You can hold hands while watching the most mesmerizing sunset amidst the backdrop of the fort.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">However, the beach is not devoid of fun and adventure. Here, you will come across several tour operators who conduct numerous water sports. For instance, you and your partner can try out paragliding or opt for the thrill-inducing jet ski ridings. Moreover, you can also opt for dolphin tours.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Pequeno Island</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Does the notion of exploring an offbeat island with your better half excite you? If you have wanted to check off that adventure from your bucket list for a long time, visit Pequeno Island.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">You can gain access to the island by embarking on a ferry ride from Baina Beach in Vasco Da Gama. When you traverse the majestic Arabian Sea, you can’t help but be in awe of the ravishing beauty of nature.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">When you get off the island, the sparse population and solitude will immediately make you fall in love with it. You can have some cozy moments with your partner and explore the luxuriant greenery of the island.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Boasting of a small rocky beach and tranquil atmosphere, the name of the island literally translates to “Small Island” in Portuguese. Moreover, if you are eager to have some adventurous memories, you can opt for snorkeling.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Whether you stroll along the island, explore or participate in adventure sports activities, the beach offers privacy to the honeymooners.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Fort Tiracol</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Built in the 17th century by the Raja of&nbsp;Sawantwadi, the Fort Tiracol is a magnificent example of architectural ingenuity. Eventually, the fort became an integral part of the maritime defenses of the Portuguese invaders. It is located near the Tiracol village and is named after the Tiracol River upon which the constriction is done.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">You can reach this magnanimous fort from Querim via a ferry. It is without a doubt that the fort has been a spectacular witness to numerous wars and battles in the long-forgotten era. However, it still stands, indicating that it has withstood the passage of time eloquently.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Recently, a portion of Fort Tiracol has been renovated to design an exclusive heritage accommodation. Here, you can stay for your honeymoon and relax amidst the peaceful ambiance and exhilarating beauty of nature.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">After visiting the fort, you can explore the surrounding areas and admire the lush greenery that enhances the appeal of this place. Moreover, you can also visit the nearby Tiracol village and apprehend more about the local culture.&nbsp;</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"8\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Tuscany Gardens</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Want to plan a romantic candle-light dinner for your better half? Book a table at the Tuscany Gardens and make unforgettable memories with the love of your life.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Tuscany Gardens has two outlets – one is in Candolim, North Goa, and the other is in Panjim, South Goa. Moreover, you can also choose between outdoor or indoor seating.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Regardless of where you book a table, the romantic ambiance coupled with lush greenery will absolutely make you fall in love with the place.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">With adequate privacy, a dreamy atmosphere, and romantic lighting, it is the perfect mood to make your partner feel special. Moreover, the restaurant boasts of offering \"unpretentious\" Italian food items. With a combination of fresh local produce and imported ingredients, the chefs here make delectable food.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The menu here consists of starters, pasta, risotto, salads, pizzeria, main courses, and desserts. If you and your partner love Italian cuisine, then the food here will simply excite your taste buds.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Make sure that you check out the timings of the outlets and book in advance to surprise your beloved!</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"9\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Waterfront Terrace &amp; Bar</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">A dining restaurant of the Goa Marriott Resort &amp; Spa, the Waterfront Terrace &amp; Bar offers a romantic view, where the sky appears to meet the sea.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Touted as one of the most romantic restaurants in Goa, the Waterfront Terrace &amp; Bar comes with lavish buffet spreads, exotic dishes, and an ethereal view of the seaside. The open-air eatery provides the perfect opportunity to have some cozy conversation with your partner under the stars. You can\'t help but fall in love with the place!</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Located in Miramar Beach, this beautiful restaurant comes with international cuisine. Here, you can expand your taste palate and explore different food items. The most exciting aspect is the changing of the menu according to special occasions and seasons.&nbsp;&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">However, remember to make prior reservations to avoid hassle!</span></p><ol style=\"margin-bottom: 0px; padding-inline-start: 48px;\" start=\"10\"><li dir=\"ltr\" style=\"list-style-type: decimal; font-size: 12pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\" role=\"presentation\"><span style=\"font-size: 12pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Tito’s Bar and Club</b></span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Want to dance all night and grove to the music with your partner? Let your wild side loose and enjoy the exotic nightlife of Goa in Tito\'s Bar and Club. It is one of the most sought-after party destinations in North Goa. Located in close proximity to Baga Beach, Tito\'s Lane is famous for the high number of restaurants and clubs.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Theme-based nights, unique cocktails, and a large dance floor make Tito\'s Bar and Club an enticing place. The dance floor here is comparable to a movie set, and the open-air restaurant dials up the charm of the venue exponentially.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Though a little more expensive than other places, the club boasts of a private enclosure on the second level. With a strict dress code and a substantial entry fee, you can expect to have a wild night with your better half!</span></p><div style=\"text-align: justify;\"><br></div><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">These are the top ten places that you can visit in Goa for your honeymoon. However, there are many other places that you can explore. It doesn\'t matter if you love solitude or parties - Goa can satisfy all your traveling cravings with ease.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size: 12pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Now that you know about these places, the only thing left to do is to book your tickets, pack your bags, and jet-set your way to Goa. Just remember to make loads of memories to cherish the most crucial part of your life – the honeymoon!</span></p><div style=\"text-align: justify;\"><br></div></span>',NULL,'2021-04-12 14:25:26','2021-04-12 14:25:26',NULL,1,'',0,0,'best places to visit in Goa','If you\'re looking for the best places to visit in Goa, you\'ve arrived at the right spot. We\'ll help you with the best and most unique spots in Goa.','10 Best places to visit in Goa for Honeymoon | Honeymoon Package','[\"85\",\"84\",\"83\",\"82\",\"81\",\"80\",\"79\",\"78\",\"77\",\"76\",\"75\",\"74\",\"70\",\"69\",\"68\",\"67\",\"66\",\"65\",\"64\",\"62\",\"61\",\"58\",\"57\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"23058, 23092, 23065, 23053, 22815, 23208, 23189\"]}'),(75,'10 Best places to visit in Uttarakhand','10-best-places-to-visit-in-uttarakhand','1623157622_blog.jpg','1629347333.jpg',NULL,'Aniket Agarwal','2021-04-01',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"text-align: justify; line-height: 1.2; border-bottom: 1pt solid rgb(79, 129, 189); margin-top: 0pt; margin-bottom: 15pt; padding: 0pt 0pt 4pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Uttarakhand \'Dev Bhoomi\' cuddled in the lap of the Himalayas is an abundance of fascinating occasion objections in India. The spots to visit in Uttarakhand range from slope stations, special first nightspots, journey destinations, stunning magnificence, brave encounters, and tranquil ashrams. An occasion outing to the mountain state is an ideal mélange of unwinding, mysticism, and experience. You can discover individuals of all age bunches occupied with something or the other here. Whatever appeals you to this spot, be it the confidence in God or a brave rush, you can\'t miss spending your get-aways at these top objections of Uttarakhand.</span><br></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. Auli&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">For those searching for winter excursions in India that offer eye-popping perspectives on the mountains shrouded in a cover of thick snow and various slant rooftop resorts, Auli is perhaps the most ideal alternative. A famous skiing objective in Uttarakhand. Auli is one such spot where you can jump into a melange of snow sports and adventure for a trip in Gurson Bugyal. Auli gives an ideal spot to winter family occasions in Uttarakhand and furthermore is a serious decent special first-night objective. Throughout your colder time of year occasion in Auli, you can ride Asia\'s longest link/seat vehicle that begins from Joshimath to Auli and the other way around. There are a few best places to visit in winter close to Auli like Joshimath and Trishul Peak. Vansh Narayan Kalpeshwar, known for valley and caverns is likewise another site to visit.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Jaunty Grant Airport is the nearest air terminal situated in Dehradun a ways off of 277 from Auli. Haridwar is the nearest railroad station situated close to Rishikesh a ways off of 292 km from Auli. Neighborhood transports and taxicabs both government and private are accessible from Dehradun, Haridwar, and Rishikesh to Auli by means of public thruway 07.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The best season to visit Auli is all consistently. The vacation spot in Auli is Snow Skiing and is best from November to March. May to November offers a cool and wonderful environment and the correct period to spend loosening up minutes on the outside. December to February is snowbound and crisp.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Auli has a progression of noteworthy hotels that offer every single essential convenience and agreeable rooms to the visitors. You can likewise discover quarters in some of the lodgings making it a spending plan cordial objective in Uttarakhand.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2. Munsiyari&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Where time stops, where the magnificence catches the eyes of the spectator, and where one can\'t resist the urge to fall head over heels in love, Munsiyari is one more excellent skiing objective in Uttarakhand. This humble community in Kumaon Hills is generally known for its wonderful climate during summer and rumored to be where a thick layer of snow covers the slope station during the winter season. It offers an invigorating climate, a few sensational attractions, and a calm mumble of twist, no big surprise it is labeled as Uttarakhand\'s own special Kashmir. The famous vacation destinations in Munsiyari in and around are Birthi Falls (35 km), Kalamuni Top (14 km), and where an antiquated Kali sanctuary is found; two freshwater lakes – Thamri Kund and Maheshwari Kund. There additionally exists a boiling water regular spring, Madkot. Munsiyari is ideal for the family relaxes and can be considered as a top special first-night escape in Uttarakhand.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Step by step instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Munsiyari is an exceptionally lengthy drive from Delhi and a break venture at Vijaypur, Chaukori or Almora is prudent. In the event that you are going by open vehicle, you may take a transport from Anand Vihar ISBT to Almora and afterward another transport to Munsiyari. One can likewise take a transport from Pithoragarh, which is 135 km from Munsiyari.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The months March-June and mid-September-October are ideal for visiting Munsiyari. The days at that point are charming with bright temperatures in the reach 25-30 degrees range with cooler evenings. This period is likewise ideal for traveling in the close by mountains.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Auli has a progression of noteworthy retreats that offer every single essential convenience and agreeable rooms to the visitors. You can likewise discover dorms in some of the inns making it a financial plan cordial objective in Uttarakhand.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3. Mussoorie&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Generally known as the \'sovereign of the slopes\', Mussoorie is the pride of Uttarakhand Tourism industry and a critical wellspring of income for the state. Amazing grand excellence of Mussoorie constrains the voyagers to acknowledge reality that nature has painted the material of this astonishing place of interest with sheer fixation. Settled in the midst of the undulating Himalayan reaches, this locale appears to be a home of harmony. The normal elevation of Mussoorie is 1,880 m while the most noteworthy pinnacle is more than 2,290m high making it a heaven for the daredevils. Walk to June and September to November is the best an ideal opportunity to visit this mind blowing spot.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The most effective method to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dehradun Railway Station, situated around a day and a half away fills in as the closest rail line station to Mussoorie. Number of trains from all over of urban communities including Delhi, Kolkata, Jammu and Amritsar serve Dehradun city. In the wake of arriving at Dehradun via train, guests can board neighborhood taxis or transports for Mussoorie.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The long periods of April, May and June witness the pinnacle season inferable from the lovely environment while those anticipating see snowfall should visit Mussoorie during winters. August-September: Mussoorie ordinarily sees substantial precipitation during the storm season.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4. Chopta&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">For an ideal escape and for those needing a little odd retreat in the slopes encompassed by high field, you can come vacay in probably the best spot, Chopta. This objective is acquiring a standing for being one of the top travel objections in the state. It can, indeed, be called one of the diamonds Uttarakhand forces that is honored with rich greenery, regular qualities and is likewise a beginning stage to different journeying places. A visit here during winters can likewise be liked by globe-trotters who are intrigued to go on a colder time of year journey. The two well known journeying places in Chopta are Tungnath and Chandrashila.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Step by step instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chipper Grant Airport is the nearest air terminal situated in Dehradun a ways off of 178 km from Chopta. Haridwar and Rishikesh are the nearest rail line station situated a good ways off of187 km from Chopta. You can get a lot of neighborhood and private transports and cabs utilizing to Chopta from urban communities like Uttarkashi, Rishikesh, Haridwar, Rudraprayag, and Pauri.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chopta has nature camps, extravagance resorts and spending inn. You can get all around kept up rooms with pleasant offices and conveniences.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5. Rishikesh&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A spot loaded with a blend of assortments of activities and see, Rishikesh is a necessary piece of Uttarakhand the travel industry. This spot is known as the doorway to the Garhwal Himalayas making it a conspicuous stop while making a beeline for the mountains. Here, you can look for gift in the journey destinations and furthermore visit numerous ashram around, gain proficiency for certain new stretches with yoga meetings and furthermore visit the notable didgeridoo creator in Rishikesh.. Other than that, there are numerous different spots you can visit close by like Rajaji National Park, Neelkanth Mahadev Temple, Narendra Nagar and Haridwar.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The most effective method to Reach</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Carefree Grant air terminal situated at Dehradun is the nearest air terminal to Rishikesh a ways off of 35 km. Rishikesh has a rail line station, in any case, Haridwar is more helpful since it is very much associated from other significant urban communities. There are a lot of private and government transports that handle back and forth administrations to Rishikesh from the significant north Indian states, Dehradun and Haridwar.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\" id=\"docs-internal-guid-9b1d39b4-7fff-4a5c-932e-422d538f5793\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">From financial plan to extravagance, Rishikesh offers various lodgings and resorts. You can likewise discover visitor houses and lodgings for hikers.</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6. Harsil&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Situated in the lap of nature, Harsil is a lovely Garhwal Himalayan objective that splendidly shows green valleys and wandering knolls in the mid year yet in winter,s it turns into a fantasy land by being canvassed in layers and layers of snow. It is an ideal heaven for single and tranquility looking for voyagers, and is an ideal spot to just come and unwind in the midst of nature in their delightful mountain resorts. One can\'t avoid the red beams of the sun, the tweeting of birds and the wide scope of snow, feeling invigorated as of now?&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The most effective method to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The nearest air terminal to Harsil is Jolly Grant at Dehradun situated a good ways off of 253 km. Haridwar and Rishikesh are the two nearest air terminals for Harsil a ways off of 268 km. Private and neighborhood run transports and taxicabs are accessible from the stations to arrive at Harsil by means of public interstate 34.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Harsil has various retreats and lodgings offering opulent rooms with all around kept up offices to the visitors.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7. Corbett National Park&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Where you can not exclusively be unified with nature yet in addition appreciate the quality of untamed life, Corbett National Park is unquestionably a spot to visit during winter in Uttarakhand. In this season, you will invest plentiful energy in the wild by going for safari into the thick backwoods in their a large number, as every one of them stay open (Corbett is shut from June to the long stretch of September). Indeed, during your untamed life get-away in Corbett, you can appreciate relaxing in the warm sun at resorts that are set right external the public park. Also, on the off chance that you are okay with birdwatching, there can\'t be any preferable time over winter to spot uncommon and transient birds. A stay in a portion of the hotels that offer good conveniences will likewise make your vacation productive.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Pantnagar air terminal situated a good ways off of 123 km from Corbett National Park is the nearest air terminal. Ramnagar is the nearest rail route station from Corbett National Park a ways off of 12 km.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Corbett has numerous untamed life resorts and inns offering elegant administrations and agreeable rooms. You can likewise remain in wilderness resorts around the public park.</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8. Khirsu&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Its undulating glades that get canvassed in snow, riveting feeling and old world appeal make one need to pick this spot for a restoring excursion in winter. Situated in the Pauri Garhwal region, this praiseworthy village called Khirsu is one of the unconventional spots that can make an ideal occasion objective, particularly during winters, as it is viewed as the best an ideal opportunity to visit for nature darlings. You can come take a dunk in this heartfelt escape that will make you begin to look all starry eyed at its excellence in winter in a flash.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Step by step instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sprightly Grant Airport in Dehradun is the nearest air terminal to Khirsu found 145 km away. There are two rail route station near Khirsu, Kotdwar (115 km) and Rishikesh (132 km). There are no immediate vehicles to Khirsu except for it is very much associated from places like Kotdwara, New Tehri, Devprayag and Rudraprayag.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Khirsu has resorts, visitor houses, wood bungalows, and spending inns. You can choose your decision of convenience and comfort and spend a quiet, created winter occasion in Khirsu.&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">9. Nainital&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Nainital is an incredible spot to see snowfall, however, popularized massively, the appeal of this spot never goes downhill and it stays one of the top travel industry spots of Uttarakhand. Its shining lake encompassed by high mountains is frequently a group pulling factor, heartfelt boat rides anybody on a chilly day? Additionally, winters also draw out the magnificence and appeal in Nainital. Here, it isn\'t only the lake where you can push… line… column your boat yet in addition you can visit some vacationer places like Snow-View, China top, Tiffin Top, Cave Garden, Nainital Zoo and Tibetan Market, and furthermore ride the streetcar breaking the fog that comes in your manner. To get the best out of Nainital, make a point to visit during January.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Instructions to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Pantnagar Airport is the nearest air terminal to arrive at Nainital, found 67 km away. Haldwani and Kathgodam are two railroad stations for individuals making a trip to Nainital that is found 40 km. Neighborhood and private taxicabs and transports handle on customary premises from Haldwani, Kathgodam, and Pantnagar to Nainital.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A wide scope of lodgings going from extravagance to spending plan can be found in Nainital offering encouraging conveniences and room administrations with a lovely sight to moan!&nbsp;</span></p><h1 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 24pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#366091;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10. Ranikhet&nbsp;</span></h1><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">\'Star look under the dim blue sky in Ranikhet.\' If you are visiting during winter, this famous escape will invite you with snow all over, it is likewise an acceptable spot for nature tours. This cantonment town situated in Uttarakhand\'s Almora region is generally visited by families and couples, notwithstanding, you may even see a few hikers lautering around the town. Here, the travelers enjoy long strolls visiting neighborhood vacation spots, and furthermore participate in some mainstream the travel industry exercises like experience sports.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The most effective method to Reach:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The nearest air terminal to Ranikhet is situated in Pantnagar a good way off of 109 km. Haldwani and Kathgodam are two railroad stations close to Ranikhet found 82 km. Transports are accessible till Almora from that point you can recruit a taxi to Ranikhet.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay:&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Ranikhet has various agreeable retreats, motels, and lodgings, offering offices that will make your visit agreeable.</span></p><p></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 10pt;\"><br></p><div style=\"text-align: justify;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><span style=\"border:none;display:inline-block;overflow:hidden;width:624px;height:291px;\"><br></span></span></div>',NULL,'2021-04-20 11:50:07','2021-04-20 11:50:07',NULL,1,'',0,0,'best places to visit in Uttarakhand','If you are looking for the best places to visit in Uttarakhand this is your place to be. We have mentioned everything you are looking for.','10 Best places to visit in Uttarakhand | Tour To Uttarakhand','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(76,'10 Best Places to Visit in Himachal on Honeymoon','10-best-places-to-visit-in-himachal-on-honeymoon','1623664125_blog.jpg','1629283186.jpg',NULL,'Aniket Agarwal','2021-04-05',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">After the wedding ceremony, the next thing on\r\nthe agenda for the wedded couple is to go to a honeymoon destination. It gives\r\nthem the chance to spend time getting to know each other and make romantic\r\nmemories. Here, choosing the right spot can improve the entire experience\r\nhighly for both partners. In India, one good place to consider is the northern\r\nIndian state of Himachal Pradesh.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Situated in the Himalayas, there are many\r\nscenic small mountain towns in this region. The place is an ideal spot for a\r\nsoothing honeymoon experience as well, with multiple Buddhist monasteries and\r\nsuch to see. Plus, for the adventure-lovers, there is much to do as well, like\r\nskiing and trekking.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Overall, if you choose this land for your\r\nhoneymoon period, you would have an enjoyable time indeed.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">There are many best places to visit in\r\nHimachal with your new life partner as well. The following are ten of such\r\nareas you can go to and begin the next phase of your life strongly.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;mso-outline-level:3;vertical-align:\r\nbaseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>1. Shimla&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">One of the best places to go to in the\r\nHimachal Pradesh that one should consider is the popularly coined \"Queen\r\nof Hill Stations\". Indeed, Shimla is a wonderful hill station in the\r\nregion with stunning surroundings and a picturesque town. Without a doubt, it\r\nis a popular choice for honeymoon goers due to the dreamy views all\r\naround.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">The place is full of forests with pine trees\r\nand thick deodar trees; overall; it gives an earthy tranquil look to the area.\r\nMoreover, there is much to do here as well. You can take a ride on a toy train\r\nfrom Shimla all the way to Kalka, roam around Mall Road, or visit the stunning\r\nShimla Ridge. Plus, there is the Jakhoo temple of Lord Hanuman as well at this\r\nspot. Indeed, you can go hiking here with your lovely companion.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>: </b>You can go\r\nto Shimla via the Jubbarhatti Airport, which is approximately 23 kilometres\r\naway. There is a small railway station only 1 kilometer away from the\r\ntown.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Visit spots\r\nlike Lakkar Bazaar, Mall Road, Shimla Ridge, State Museum, and Jakhoo Temple.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:\r\n</b>Winter months<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nRs. 12,000-75,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-left:.75pt;text-align:justify;mso-outline-level:\r\n3;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>2. Chail&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">One of the best places to visit in Himachal<b>\r\n</b>is the town of Chail. Indeed, it is a wonderful honeymoon spot as well, and\r\nyou can enjoy the lush greenery and tranquil surroundings properly. It is not\r\nfar from Shimla either; Chail is located around 60 km away.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">There are a lot of interesting things you can\r\ndo at Chail. There are cottages you can stay at which would further enhance the\r\nromantic feel of your experience. Many people go horse-riding at this spot or\r\nsimply go for a walk through this \"Lover\'s Hill\". With snow-capped\r\nmountains as the backdrop and lush greenery all around, this visit would give\r\nyou a peaceful feeling.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Plus, you can go sightseeing at lots of\r\ninteresting places here as well. Some of them include the Chail Wildlife\r\nSanctuary, Sigh Baba Ka Mandir, Sadhupul Lake, and Maharaja\'s Palace.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b>\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">One of the\r\nways to reach Chail is through the Himalayan Expressway that connects to\r\nChandigarh and Delhi. Also, people can travel to Kalka by train and reach Chail\r\nvia road.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Hiking,\r\nWalking, a day trip to Shimla, or visiting Kufri.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b>\r\nWinter months<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>\r\n</b>Rs. 15,000-50,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;mso-outline-level:3;vertical-align:\r\nbaseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>3. Kullu-Manali&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Again, the region of Kullu-Manali is another\r\ngood place to go for the honeymoon. This area is suitable for both\r\nadventure-loving couples and those who want to spend a romantic sightseeing\r\nexperience. The two spots together include a lot of fascinating draws for the\r\nvisitors. With stunning vistas and a view of the River Beas, one can enjoy the\r\nbeauty of the area properly as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">You can go for an excursion to the Naggar\r\nvillage or the Manikaran hot springs. Plus, spots like Vashisht hot water\r\nsprings, Hadimba Temple and Bijli Mahadev Temple make this one of the<b> </b>best\r\nplaces to visit in Himachal<b> </b>as well. Additionally, there is the opportunity\r\nto go river-rafting through the daring rapids of River Beas. The Rohtang Pass\r\nis not very far from this area either.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"> One can\r\nreach this region via the Jogindernagar railway station or the Bhuntar Airport.\r\n&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b> Rafting\r\nover the River Beas, zip-lining and parasailing at Solang Valley, visiting\r\nRohtang Pass, excursions to Manikaran, travel through the Mall Road, Snow\r\nPoint, Naggar Castle, Sightseeing the Rahalla Falls, Naggar Castle, and\r\npartying.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nSpring and Winter months<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget: </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Rs.\r\n12,000-75,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-left:.75pt;text-align:justify;mso-outline-level:\r\n3;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>4. Chamba&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Chamba is another of the<b> </b>best places to\r\nvisit in Himachal<b>,</b> due to its beautiful views and comfortable climate.\r\nSituated at the banks of the River Ravi, this town has many interesting spots\r\nwithin its borders.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">You can go visit the exciting markets and see\r\nthe locals going about with their regular activities. Plus, the old town is\r\nfull of multiple temples and a museum as well, detailing many stories and items\r\nof the past. If that is something that interests you, you should go to these\r\nspots for sure.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Plus, there is Chowgan as well, which is a\r\nhuge field that is a good spot for festivals, local games, and picnics.\r\nOverall, the entire area is peaceful, and you would surely enjoy spending some\r\nquiet time with your loved one here.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b> </b>People can\r\nenter Chamba via the airport at Kangra\'s Gaggal region, which is around 170\r\nkilometres away. By rail, the closest spot is Pathankot, which is 118\r\nkilometers away.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"> Snow-based\r\nactivities, tourist activities like horse riding, zorbing, hiking, sightseeing,\r\nwalking, visiting Khajjiar Lake, Dhauladhar, and Satdhara Falls.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nSpring and Winter months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>\r\n</b>Rs. 15,000-40,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify;mso-outline-level:3;vertical-align:\r\nbaseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>5. Mandi&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">One of the best places to visit in Himachal\r\nis Mandi. This temple town is full of around 81 temples within its lands. For\r\nthose who enjoy watching the old-school structures at the destinations they go\r\nto, this is a commendable choice. Besides that, travel and adventure lovers can\r\ngo for multiple excursion plans at this spot as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Moreover, there are many gorgeous natural\r\nspots to visit here as well, like Prashar Lake or Barot Valley. If you want a\r\npeaceful time to spend with your partner on your honeymoon, you cannot go wrong\r\nwith this choice.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b>\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">The closest\r\nairport to Mandi is Bhuntar Airport, which is around 31 kilometers out of the\r\ntown. The Summer Hill Railway Station is 71 kilometers away from the\r\nMandi.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b> People can\r\ngo visit the multiple temples in the town, like the Bhima Kali Temple. Wildlife\r\nsightseeing at the Shikari Devi Sanctuary. Roam around the lakeside of Rewalsar\r\nLake or Prashar Lake. Sightseeing at the Barot Valley.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nWinter months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Approximate\r\nBudget</span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b>\r\nRs. 11,000- 30,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>6. Dalhousie&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">If you are thinking about honeymooning in\r\nHimachal Pradesh, you can give Dalhousie a try. Located on the Dhauladhar\r\nRanges, this place has amazing weather, beautiful views, and pine-covered\r\nvalleys. Plus, the mountains at the backdrop certainly add to its overall\r\nattraction.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">In the morning, you can admire the view of the\r\nsun rays painting a gorgeous sight of golden hue across the mountainous\r\npanorama. Later, you and your loved one can go sightseeing around the Thandi\r\nSadak or go for a trek at the Panch Pulla Waterfalls. The old-world Chamunda\r\nDevi temple or the picturesque Khajjiar Lake are other good options to visit\r\nhere as well.&nbsp;&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b> One can go\r\nto Dalhousie via the Chandigarh airport which is just 70 kilometres away. Plus,\r\nthe nearest railway station is at Sonwara.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b> Sightseeing\r\nthe Chamunda Devi Temple or Khajjiar Lake, wildlife view at the Kalatop\r\nWildlife Sanctuary, hikes, and walks.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit: </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Spring\r\nand Winter months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nRs. 15,000-40,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>7. Khajjiar&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">One of the best places to visit in Himachal\r\nis the Khajjiar valley, which is another area with an amazing tranquil\r\nambiance. It is situated in the Dhauladhar Mountains and falls between the\r\nplaces of Dalhousie and Dharamshala. Compared to the other spots on this list,\r\nthe traffic to this area is very small-scale. So, if you are looking to spend\r\nsome quiet private time with your newlywed, this is one honeymoon you do not\r\nwant to miss.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">From the Khajjiar Grounds to the Khajjiar\r\nLake, everything that this area has to offer is peaceful and naturally\r\nstunning. Plus, you can go for a trek or engage in fun activities like wildlife\r\nsafari, zorbing, or paragliding as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b>\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Take a train\r\nheaded for Pathankot and take a taxi from there to Dalhousie-Khajjiar. Buses\r\nare available from Chandigarh and Delhi for Dalhousie; upon reaching, take a\r\ntaxi to Khajjiar.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do: </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Visit Golden\r\nDevi Temple or Khajji Nag Temple, a safari at the Kalatop Wildlife Sanctuary,\r\n14 km long Khajjiar trek, zorbing or paragliding, Go for a walk along the\r\nKhajjiar Lake.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b>\r\nSpring or Winter months.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nRs. 15,000-40,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>8. Dharamshala&nbsp;</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">A common name among the top destinations in\r\nHimachal Pradesh for honeymoons is none other than Dharamshala. You can go to\r\nthe upper parts of this hill station if you are looking for a peaceful time\r\nwith your love interest. In contrast, the lower area has more people; you can\r\nroam around with the locals to learn their culture more clearly here.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Buddhist influence is very strong in this\r\nland, in the aspects of their culture and food. Plus, the area itself is\r\nstunning as well; you can enjoy astonishing views of the snow-capped mountain\r\npeaks and lush greenery.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b> The HPTDC\r\nand HRTC Volvo services connect Dharamshala to Chandigarh and Delhi. Flights go\r\nto this region at the Dharamshala airport.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>: </b>Visit to\r\nthe monasteries, witness Tibetan cuisine and culture, walks, treks, hikes, and\r\nsightseeing Bhagsu Temple, Namgyal Monastery, and more.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nSpring or Winter months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Rs.\r\n15,000-75,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>9. Solang\r\nValley<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">One of the best places to visit in Himacha<b>l\r\n</b>is the Solang Valley, which is just some distance away from Manali. Couples\r\ncan opt for this place for their honeymoon plans and there is much to enjoy\r\nhere as well. For example, visitors can opt for adventure activities like\r\nskiing or paragliding. Plus, there are some towns and places around the area,\r\nlike the Rohtang Pass, that you can visit as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b>\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">One can visit\r\nManali and then go to Solang Valley just 16 kilometres away via road. You can\r\nget a taxi as well from the taxi stop at Manali.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Shopping,\r\nsightseeing, hikes, treks, visiting the Rohtang Pass or Naggar Castle close by,\r\nparagliding, rafting, gondola ride, walks, and snow activities.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>:</b>\r\nSpring and Winter months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate Budget:\r\n</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Rs.\r\n20,000-50,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>10. Kasauli&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">Last but not the least, Kasauli is another of\r\nthe <b>Best Places to visit in Himachal.</b> This quaint hill town has\r\nold-school structures present that are reminiscent of the past British Raj\r\nperiod in India. You and your partner can view these spots and enjoy the\r\ngorgeous natural surroundings as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify\"><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\">The forest area is full of oak, chestnut, and\r\npine trees and the overall weather here is cool and comfortable. Here, you can\r\ntake your newly-wed for a walk along Gilbert Lane or explore locations like the\r\nKasauli Brewery. Plus, there is an area for visitors to go for paragliding, and\r\nyou can opt for that as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to Reach:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"> Take the\r\nroad route from Chandigarh or Delhi via the Himalayan Expressway.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>What to do: </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Stroll around\r\nMall Road or Lover\'s Lane, go for paragliding, beer-tasting at the Kasauli\r\nBrewery, shopping, and hiking.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Best Time to\r\nVisit:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Early\r\nSpring, Winter, or late Autumn months&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:6.0pt;margin-right:0in;margin-bottom:12.0pt;\r\nmargin-left:0in;text-align:justify;vertical-align:baseline\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Approximate\r\nBudget:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">\r\nRs. 15,000- 50,000<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:13.0pt;margin-right:0in;margin-bottom:\r\n13.0pt;margin-left:0in;text-align:justify;mso-outline-level:2\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Conclusion&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"margin-top:13.0pt;margin-right:0in;margin-bottom:\r\n13.0pt;margin-left:0in;text-align:justify;mso-outline-level:2\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">All in all,\r\nthere are many interesting places to go to in Himachal Pradesh for a honeymoon.\r\nThe hill stations and small towns here are wholesome and peaceful, and the\r\natmosphere is always comfortable. Choose a time that is suitable for you both\r\nclose to the date of your wedding ceremony. Thereafter, you can book your trip\r\nto the chosen location.&nbsp;</span></p>',NULL,'2021-04-20 12:09:44','2021-04-20 12:09:44',NULL,1,'',0,0,'best places to visit in Himachal','Here\'s your list of the 10 best places to visit in Himachal for honeymoon. If you\'re a fan of hilly regions, Himachal has got a lot for you!','','[\"107\",\"98\",\"87\"]',1,'{\"blogdetailTitle\":[\"10 Best Places to Visit in Himachal on Honeymoon\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25064, 25015, 25390\\t\"]}'),(77,'10 Best Places to visit in Kerala for Honeymoon','10-best-places-to-visit-in-kerala-for-honeymoon','1623157542_blog.jpg','1629283815.jpg',NULL,'Aniket Agarwal','2021-03-15',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Unending coconut\r\nGrover, relaxing beaches, misty hills, and serene backwaters are some of the\r\nglimpses of God\'s own country, popularly known as Kerala. It is one of the\r\nexotic destinations for newlyweds. The state is surrounded by lush scenic\r\ngreenery and serene backwaters. This ideal setting ranks Kerala as one of the\r\nbest destinations for honeymoon places in India. Couples usually dream of spending\r\na few days or months of their wedding in complete bliss. Kerala, the coastal\r\nparadise, has always been one of the best honeymoon destinations in the country\r\nfor couples to step into a whole new phase of their life.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Best\r\nTime to visit Kerala:</b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Months\r\nfrom September to March, i.e., the winter season is considered the best for\r\nbooking your Kerala destinations. The Time allows the visitors to explore the\r\npleasant weather and comfortable climate with low humidity. If you love to\r\nexamine spicy plantations, tranquil canals, and enchanting lagoons, winter is\r\nyour perfect Time. Summer months like May and April allow visitors to visit\r\nWayanad and Munnar. And if you are looking forward to seeing Kerala for\r\nAyurveda, you can prefer the monsoon season, i.e., July and August.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">The\r\nnewlywed\'s prefer the winter season that starts from September to March, as the\r\nideal time to visit Kerala to enjoy beautiful landscapes with pleasant weather.\r\nNovember to February is the Best Time for visiting the backwaters in the\r\nstate.&nbsp;</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Things to do:</b></span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Kerala\r\nhas a unique culture. You will find the rural areas still holding on to their\r\nage-old customs while the urban areas are catching up with other modern metro\r\ncities. There\'s something on offer for all types of travelers in Kerala.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Best\r\nPlaces to visit Kerala for Honeymoon:</b></span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Wayanad:</b>\r\n</span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">The\r\nverdant hill station of India is located quite close to the Kozhikode\r\nseashores. Surrounded by western ghats, it is covered by green mountains and is\r\na natural hub for varied varieties of fauna, flora, and flourishing vegetation.\r\nFilled with wildlife sanctuaries, lakes, and waterfalls allows the couples to\r\nspend a unique and romantic time with their partner. The place is quite\r\nenchanting and also offers the perfect climate and scenery to enjoy your\r\nhoneymoon.</span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Wayanad\r\nis quite popular among the tourists as it is a strategic place for travelers\r\nwho like to travel for convenience from various traveler locations like\r\nBangalore, Ooty, Coorg, Kannur, and Mysore. For nature lovers, the Wayanad is a\r\nplace of thick forests and deep valleys covered with eco-friendly eco-cliffs\r\nmaking it an abode for people spending their secluded Time with their\r\npartners.&nbsp;</span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">The\r\ncouple visiting Wayanad likes to spend their whole days hiking up the misty\r\nterrains and spending their time in a gratifying wildlife safari.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Top\r\nAttractions to visit in Wayanad:</b></span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"> Chembra Peak,\r\nBandipur National Park, Edakkal Caves, and Thirunelli Temple.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Nearby\r\nAirport:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\"> If you plan to visit the Wayanad via flight, the nearest\r\nairport is just 100 km away, known as Karipur International Airport.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Things\r\nto do on your romantic gateway to Wayanad:</b></span><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Enjoy\r\nwildlife&nbsp;</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Visit caves and\r\nlakes</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Waterfalls</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Trekking</span></i>&nbsp;</li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Munnar:\r\n</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">One\r\nof the Keralite towns, i.e., filled with green-lush tea plantations and\r\nentertain visitors all around the year. For Honeymooners, Munnar offers many\r\noptions, including Blossom International Park and Pothamedu View Point. Both of\r\nthese locations are considered the most beautiful part of the city. If you love\r\nwildlife, then Carmelagiri Elephant Park and riding with gigantic mammals like\r\nMalabar Royals can be of interest to you.&nbsp;</span><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">The\r\nbotanical gardens and horticultural collective are another piece of beautiful\r\nMunnar that can interest you if you love flowers. A fantastic trek to\r\nMeesapulimala is quite daring as well as unique for you. The tranquility of the\r\natmosphere and ideal environment with fragrant air will make it a wonderful\r\nexperience for couples.</span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Nearby\r\nRailway Station and Airport: </b></span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Aluva and Cochin\r\nInternational Airport</span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Places\r\nto visit:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\">Pothamedu, Eravikulam National Park, and Mattupetty Indo</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Things\r\nto do in Munnar:</b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Trekking</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Stay in a\r\ntreehouse</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Strolling\r\naround tea gardens</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Visiting\r\nwaterfalls</span></i><span style=\"font-family: &quot;Calibri Light&quot;, sans-serif; font-size: 12pt;\">&nbsp;</span></li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Alleppey:</b>\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">The\r\nAlleppey is one of Kerala\'s destinations and will allow you aboard a cruise for\r\nbackwaters to pass you through the canals and winding through rivulet. The\r\njourney is quite relaxing and is best enjoyed with your partner in crime. Also,\r\nthe place serves as a host of many temples and churches that you would like to\r\nexplore. Marari Beach is known for its beach spas in the city. And if you want\r\nto visit royalty, then you can try soaking up the grandeur of Krishnapuram\r\nPalace comprising Lord Ganesha mural of 49-square-meter.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Book\r\nyour stay in luxury beach cottages, allowing visitors to feel dazzling lights\r\nin Marari Beach and outstanding food with the personal privacy you would like\r\nto explore on your honeymoon.</span><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><b>Places to visit: </b>Alleppey Beach, Revi Karunakaran Museum, Marari Beach,\r\nKuttanad Backwaters, and St. Andrew\'s Basilica Arthunkal.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best\r\nTime for visiting Alleppey:</b> </span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">October to February</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Things\r\nto do:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Snake boat race</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Ayurvedic\r\ntherapies</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Visiting beach</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Houseboat tour</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><br></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Marari\r\nBeach: </b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">Known for its turquoise blue water, the destination is right by\r\nthe sun and is said to attract a lot of honeymooners and also seasoned\r\ntravellers. Place is one of the best delights to enjoy at Malabar Coat, it is\r\nknown for scene beauty. Situated about 11km from the Alleppey city the beach is\r\none of the hotspots for the fishing activities and also derives its name from a\r\nlocal village Maraikulum.</span><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><br></span></b></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Private\r\nCottages at a decent budget can be explored at Marari Beach, especially if you\r\nlike swimming in vast pools. Private pools are a privilege in the beach\r\ncottages as you can enjoy your secluded Time with your partner here and play\r\nindoor games, and enjoy in bathtubs and pools.</span><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Location:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Situated\r\nat the North of Alleppey&nbsp;</span><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best\r\nTime to visit: </b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\">You can visit from late December\r\nto March.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Places\r\nto visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">St Francis\r\nChurch</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Dutch Palace</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Mararikulam\r\nShiva Temple</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify;\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">How\r\nto reach Marari Beach?</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"color: rgb(14, 16, 26); font-family: &quot;Calibri Light&quot;, sans-serif; font-size: 12pt;\">The\r\nbeach is situated at about 16kms from the Alappuzha town and can be reached via\r\ncabs and auto-rickshaws. There are state run buses too for helping tourists to\r\nreach out for the buses. Nearest railway station is just 5 kms from the place\r\nand is known as Marari.</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><br><b>\r\nKovalam : </b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\">Also known as \"Paradise of South,\" the Kovalam is the\r\nideal town in the Arabian Sea coastlines. It is best known for its pristine\r\nbeaches and the low tidal waves where the tourists can enjoy surfing,\r\nmotorboat, and wood riding. Kovalam, the beach touch is a must-visit for water\r\nlovers, the beaches are known as Lighthouse Beach, Samudra Beach, and Hawa\r\nbeach together forms a fantastic rocky crescent. Filled with coconut palms, the\r\ncity attracts the most crowds and can mesmerize honeymooners with its wildlife.\r\nAfter a full-night party, you would love an Ayurvedic beach massage at the\r\nbeach clinics.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Well-known\r\nfor:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\">Shopping and Ayurvedic Massages</span><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Nearest Airport:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Can\r\nbe reached within 10km from Trivandrum International Airport</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Things\r\nto do:</b></span><br></p><ol><li style=\"text-align: justify;\"><span style=\"color: rgb(14, 16, 26); font-family: &quot;Calibri Light&quot;, sans-serif; font-size: 12pt;\">Water sports</span><br></li><li style=\"text-align: justify; vertical-align: baseline;\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Attend Cultural programs</span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></li><li style=\"text-align: justify; vertical-align: baseline;\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Swimming and Sunbathing</span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></li><li style=\"text-align: justify; vertical-align: baseline;\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Ayurvedic massages</span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></li></ol><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Right\r\nTime to visit the Kovalam: </span></b><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">September to\r\nMarch</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Poovar\r\nIsland: </b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">Situated near Poovar and nestled in the Southern tip of the\r\nTrivandrum city, the Poovar island carries tranquility and serenity in itself.\r\nThe town offers floating cottages with their bathroom, massage parlors, and\r\nkitchens. If you love to wander on land or want to engage in sightseeing\r\nalongside the water, the Poovar island covers it all. The island consists of\r\nwaterfalls, local handicrafts, and much more for couples who would love to\r\nvisit Kerala for their honeymoon.&nbsp;</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">Everyone must have\r\nheard about the boat races; they are held on Poovar island. The best part about\r\nPoovar Island is that it allows you to wander around the sea, beach, and river.\r\nUndoubtedly it is an enchanting escape and a wonderful getaway. Also well-known\r\nfor its backwaters and beaches, apart from the natural beauty, couples can\r\nenjoy luxury lodgings.&nbsp;</span><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best Time to visit: </b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\">October to March</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Places\r\nto see:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">The Fishing\r\nVillage</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Thirparappu\r\nFalls</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Vizhinjam</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Thirparappu\r\nFalls</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><br><b>\r\nThings to do:</b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Wander around\r\nthe beaches</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Hover with a\r\ncruise in backwaters</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Indulge in\r\nAyurvedic therapies</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Vagamon:</b></span><span style=\"font-weight: bold; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif;\"> </span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">If\r\nyou plan to celebrate your honeymoon in isolation and amidst cold mountain air,\r\nvelvet lawns, and grassy hills, the Vagamon is your place. The scenic beauty of\r\nthe city attracts more crowds than any other place. Comprising\r\nenvironment-friendly paddy fields stretch beyond the mountains and return with\r\neven more. Enjoy the sunset above the environment-friendly meadows to see the\r\nshades of culture alongside the Thangal hills, Murugan hills, etc.</span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">The\r\nplace is famous among the tourists as it offers activities like paragliding,\r\ntrekking, and rock climbing. Cycling across the mountain is one of the\r\ninteresting activities that can allow the visitors to participate to have a\r\nbetter feel. AASTA or Adventure Sports and Sustainable Tourism Academy and\r\nKerala Tourism Department celebrate a famous International Paragliding festival\r\nevery year in the city which is quite famous among the locals and tourists.</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Nearby Railway\r\nstation and Airport:</b> </span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\">Kottayam and Cochin\r\nInternational Airport</span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best\r\nTime to Visit: </b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\">Throughout the year</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><b>Nearby Airport:</b> Cochin International Airport</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Athirapally:\r\n</b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">The\r\nvillage is situated in central Kerala and is one of the untouched tourist\r\ndestinations. The treehouse resort is worth visiting and has been shot in many\r\nmovies too. It provides unequaled sights and echoes of the captivating falls\r\nand allows you to live in isolation of forests. You can enjoy sunsets and\r\nadmire gorgeous waterfalls lying in the treehouse resort room. Swimming is\r\nanother sport that you can enjoy here with your partner, with the surrounding\r\nwaterfalls and watching the setting sun.&nbsp;</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"color: rgb(14, 16, 26); font-family: &quot;Calibri Light&quot;, sans-serif; font-size: 12pt;\">The\r\nplace every year attracts thousands of visitors who love to visit Athirapally\r\nwaterfalls also referred to as “Niagara falls of India”. These falls are the\r\nlargest waterfalls of Kerala and are located 60km from Thrissur.</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best\r\nTime to visit:</b> </span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\">You can visit throughout the\r\nyear</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Places\r\nto visit:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Charpa falls</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Vadakkumnathan\r\nTemple</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Athirapally\r\nfalls</span></i><i><span style=\"font-size:\r\n12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>How to reach?</b></span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">As\r\nthey are located in Thrissur district, Athirapally can be reached by state-run\r\nbuses starting from Kochi. The place can be reached by three different routes\r\nvia Chalakudy, Valparai, and Angamaly.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Bekal:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\">For\r\ncouples who would like to stay away from crowds and spend some valuable time,\r\nthe Bekal is one of the best destinations to choose from amongst many. The town\r\nis known for its natural charm and is quite famous for its tranquil backwaters,\r\nold forts, and untouched serene beaches.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"color: rgb(14, 16, 26); font-family: &quot;Calibri Light&quot;, sans-serif; font-size: 12pt;\">The\r\nNithyananda Ashram caves is one of the hotspots for tourists known for the set\r\nof 45 caves. The city engulfed winding streams, clear water, and hills, making\r\nyour vacation unique and enchanting for both of you. If you are considering\r\nKerala as your honeymoon destination, then Bekal is worth giving a thought to.</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Nearby\r\nAirport:</b></span><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"> The airport is located about 50km away from\r\nBekal and is known as Mangalore Domestic Airport.</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Famous\r\nfor:</b> </span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\">Payaswini, Bekal Fort, and Chandragiri Fort</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Things\r\nto do:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><ol><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Historical\r\nmonuments exploration</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Sandy shores</span></i><i><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li><li style=\"text-align: justify; vertical-align: baseline;\"><i><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Ayurvedic\r\ntherapies</span></i><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;color:#0E101A\"><o:p></o:p></span></i></li></ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Varkala: </b></span><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">Also known as \"Hidden gems of Kerala\", the place is\r\none of the country\'s coastal towns situated in the state\'s southern space.\r\nFamous for its cliff shacks, hippie culture, and serving excellent seafood can\r\nenjoy global music by the seaside. For visiting Varkala, you should carry\r\nenough antacids with you. Else you can end up overeating in the city. It is one\r\nof the famous coastal towns that is known for its seafood reigns. The\r\nThiruvambadi beach is the black sand beach and allows you to experience\r\nnumerous water sports to enjoy your Varkala days with your partners in crime.</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best\r\nTime to visit: </b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\">October to February</span><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Nearby\r\nAirport:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin;\r\ncolor:#0E101A\"> Airport is just 36 km away from Varkala and is known as\r\nTrivandrum International Airport</span><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p dir=\"ltr\" style=\"line-height: 1.2; margin-top: 0pt; margin-bottom: 0pt;\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;</span></p><p></p>',NULL,'2021-04-20 12:23:08','2021-04-20 12:23:08',NULL,1,'',0,0,'best places to visit in Kerala, kerala package, tour package kerala, kerala honeymoon package, kerala trip','If Kerala is on your mind then this blog is for you! Check out the 10 best places to visit in Kerala for your honeymoon.','10 Best Places to visit in Kerala for Honeymoon','[\"96\",\"7\",\"4\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25037, 23713, 23759\"]}'),(78,'10 Best Places to Visit in NorthEast','10-best-places-to-visit-in-northeast','1623157507_blog.jpg','1629285519.jpg',NULL,'Aniket Agarwal','2021-04-06',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Are you looking for the most satisfactory places to travel in the northeast for a honeymoon? Look no more because we have made a list of the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">10 best places for a honeymoon in 2021</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. We have collected all details regarding places to travel. </span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">If you want to spend some time with your partner in a cozy place. Then your choice is perfect as the northeastern part of India. Here, you get beauty and solitude mixed in a perfect blend. You even get a combination of elegant and adventurous voyages depending on your choice.&nbsp;</span><br></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Do you prefer dwelling in luxurious resorts? Ain\'t no need to worry because we got you covered. While you want to spend time with your partner, it is best to explore a world of gorgeous panoramas.&nbsp;</span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Do you hate sitting idle, even when on vacation? Then, walk around the towns full of magnificence and grace that comes naturally. You would find many such places in the list of towns we\'ve created.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Do you wish to have a honeymoon that you remember for your whole life? Then, you should choose a location that gives you memories to cherish. You can choose the locations perfect for trekking if you like an adventure. This would make you closer to your partner as well and you would get quality time in a stunning environment.&nbsp;</span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">The North-East is a perfect place for newly-wed couples. Here you would get to know your partner, as well as to enjoy their company in a quiet habitat. And if you want to spice up your relationship with a second honeymoon, you would get the best places for a second honeymoon here.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Our list contains the most exotic, romantic, authentic, adventurous, out-of-world, and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">all-inclusive honeymoon destinations</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> of the North-Eastern part of the country and they also have been counted as the best in the whole of India. The list also contains the best places for a honeymoon on a budget if you have a rigid allowance.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. Shillong</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The capital of Meghalaya is the fairest of all the spots as well as a personal favorite on the list. This spot gains attraction from all kinds of tourists. Be it adventure preferring soul, or silence loving soul the capital welcomes all.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cozy and hazy mornings make the grace of </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Indian Scotland</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> much more gorgeous. You can boat in </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Umiam lake</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, visit </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Nohkalikai Falls</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, Kayak in </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kynshi</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, fish in the </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dawki</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> river, and try local cuisine.&nbsp;</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Lake Haydari</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> park has quite many adventures to offer. The </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Elephant falls</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> offers the most impressive arena to enjoy. You can take a walk around the city. Because the atmosphere here is adequate most of the time, you would enjoy the trip around town even on foot.&nbsp;</span></p><p style=\"text-align: justify;\"><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The famous cuisines are available at any local motels or restaurants. Mainly you would find </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Khasis cuisines</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Tibetan cuisines</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, and local influenced Christian cuisines.</span><br></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2. Guwahati</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Looking for the most romantic place where you can lock hands with your spouse? Guwahati welcomes you. Because of the cold climate of the capital of Assam, it is the best and a favorite getaway for couples.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The city offers you famous temples, cruise sailing, Wildlife tours, shopping, and picnic at the zoo. The most famous thing in the city is to travel to the temples and shrines.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The temples like </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kamakhya Temple</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Navagraha Temples</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Umananda Temple</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> serve as the most beautiful sites of the city. Being at the top of the hill Kamakhya Temple presents the most spectacular views.&nbsp;</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Built-in the 18th century the pilgrim called Navagraha Temple is an astronomical center. It is one of the best places in Guwahati to explore. The Umananda Temple has the most beautiful engravings in the whole North-Eastern region. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Not only pilgrims are special here, but the city has so much more to offer you. If you have no fear of water then just enjoy the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">boat ride</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> in Umananda Temple. Although, boat rides are completely safe even if you have fear of water.&nbsp;</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Book a </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">cruise</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> in the river </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Brahmaputra</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. The vastness of Brahmaputra will take your breath away. Tour the wildlife of the city. The rich flora and fauna would win your heart. If you visit a new place and do not bring a souvenir, the trip is incomplete. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">So, you must plan to visit the street markets of the city. Planning a picnic in the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">zoo</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> and </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">botanical</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">gardens</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> would make your trip the best one of life. Here you would find the species, which you can not find anywhere else.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3. Darjeeling</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Although Darjeeling is famous all over the world, it is not outdated yet. It attracts visitors from around the world. You would find it busy during the vacation season. Yet, a trip to the city situated in West Bengal with tea gardens is worthwhile.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Ever heard of the famous </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Batasia Loop</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">? Now go visit it. Here you can ride a </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Toy Train</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> around an ecological garden. The ride would also exhibit the beauty of Darjeeling and the peaks of </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kanchenjunga</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.&nbsp;</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">You can visit Peace Pagoda and the Japanese Temple in </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Jalapahar</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. You can visit the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Rock garden</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, which is also known as Barbotey Garden. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Nightingale Park</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> is one of the most renown place to plan a picnic. Visit the observatory hill and </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Padmaja Naidu Zoological Park</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Plan a shopping trip to Nehru Market. Here you can find every kind of item. You can find all kinds of tea here. Speaking of tea, without visiting the tea valley your trip to Darjeeling would be incomplete. So, plan to visit </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Happy Valley Tea Estate</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> immediately. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Cable Car Ride of Darjeeling should be on your \"must-to-do list\", once you reach Darjeeling. You can add a visit to river Teesta to the adventure list. River Rafting in Teesta would become a lifetime experience for you. Enjoying the taste of the street food of Darjeeling, like </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Thukpa</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Momos</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, etc should be top priority in your list.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4. Ziro Valley</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Situated in Arunachal Pradesh, Ziro valley does not have a lot of visitors. The same reason is a boon. If all you want to have is your spouse and solitude with you, Ziro valley would give it to you. Being Nominated to the world heritage site has now made the valley famous.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visit </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Talley valley</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, a wildlife sanctuary with the least human intervention. You can trek and hike in Midey, which is popular for its pine trees. You can pay a visit to the beautiful research center, </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tipi Orchid Research Centre</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The Valley has a cave temple named </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Meghna cave temple</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. Dating back to 5000 years, it was founded in 1962. You can also visit a ridge named </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Khile Pankh</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. After all of the hardship performed for climbing the ridge, you would be gifted by the beautiful views of </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Himalayan tops</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">.&nbsp;</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">A trekking trip to </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Dolo Mando</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> would be great with your partner. Make sure to visit Hapoli</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">which is visible from the hill, after trekking. Or you can visit the twin hill </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Diployang</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> and </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Maniipolyang</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> famous for the grassland views.&nbsp;</span></p><p style=\"text-align: justify;\"><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">After all the adventure, make sure to visit the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Pine grove</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> and </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Bamboo grove</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> in the Ziro Valley. Once you\'re done with Pine and Bamboo grove, move towards </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Tarin Fish farm</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. The farm is used to breed high-altitude fishes.</span><br></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5. Tawang</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Another destination situated in Arunachal Pradesh that is one of the best places for honeymoon couples during summer is Tawang.&nbsp;</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tawang Monastery</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> is located in the center of the city and could be reached from anywhere in the city. Situated in the Tawang river valley the monastery is the largest in India. </span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">The best thing to love about the monastery is its library. Although the library isn\'t a place you would want to take your spouse, but you can take a tour of 65 residential structures. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Take a road trip in </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Sela pass</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. It is the only road that connects Tawang to the country. So wait no more and start the road trip. You would find the best scenic views of Sela lake and many other lakes from the pass. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Tibetan Settlement Market</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> is a place where you can buy various kinds of items related to Chinese and Buddhist culture. The most famous of them are the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Chinese crockery</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> and religious items of Buddhist culture.</span></p><p style=\"text-align: justify;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Relish the local cuisine. The market is the place where you can also eat local cuisine. </span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">So, you must try a few local cuisines to remember the taste of Arunachal.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6. Gangtok</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Believe me when I say there\'s nothing like Gangtok in the whole world. The out-of-world valley can pose as a dream world for love birds all over the country. The capital city of Sikkim would make your honeymoon all dreamy and exciting.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you want to enjoy the adventure with your soulmate, must try </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paragliding</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> in Gangtok. This is a popular activity to be done in the city. If you do not prefer to take any big risk at the first time then go </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">trekking</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">The city has various trails where you can trek. If not trekking then take a </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">cycle tour</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. The Valley has a rich amount of flora and fauna which is worth exploring. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">If you want to keep all the adventure at bay and just enjoy the silence while spending quality time with your partner. Then, you can pay a picnic visit to </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Seven Sisters Waterfall</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Want a bit of an extra peaceful place to visit? Then, pay a visit to the </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Namgyal Institute of Tibetology</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The place is not only for touring, but you can also learn the peace and spirituality of Buddhist culture. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Travel plans are incomplete without a road trip. And If you are one of those who believe this, then you owe a road trip to </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">NathuLa Pass</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. The pass is part of the ancient Silk Road and connects India and China. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Don\'t forget to take a </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Yak Safari</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. Which would double your fun. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">MG Marg</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> is the best place in the city for shopping and dining.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7. Haflong</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If I can sum up Haflong in one word I would say \"</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">delightful</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">\". Once you see the splendid scene of Assamese city you would lose your breath for sure.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The town is full of genuine elegance. The town has every natural thing to offer. You can enjoy the beautiful Sunsets, by </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Lake Haflong</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The town also has to offer a beautiful waterfall named </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Panimoor</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Visit </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Jatinga</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">, and if you plan to go during August and November you can attend the mysterious phenomenon of birds committing suicide. Not interested in experiencing the strange phenomenon. Then you can observe the beautiful migratory birds. </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">One notable place to visit is the </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Borail wildlife sanctuary</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">. The city offers paragliding, trekking, and shopping. The markets have antiques made of </span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">bamboo</span><span style=\"background-color: transparent; font-size: 11pt; font-family: Arial; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8. Kaziranga</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Besides the Natural park, Kaziranga is also famous for its </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">coffee</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">tea plantation</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The best holiday gateway can prove itself as one of the best places for a honeymoon as well.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can enjoy the </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Elephant safari</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Jeep safari</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">bird watching</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. You can visit </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Orchid Park</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kakochang waterfall</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tea Estate</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The most exciting thing about Kaziranga is </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Boat Safari</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The safari would give you a chance to watch </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Gangetic Dolphins</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">9. Majuli</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">An incredible Island in the sturdy </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Brahmaputra</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> river, </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Majuli</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> is the largest river island in the entire world.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Never miss a </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">sunset</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> or </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">sunrise</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> in Majuli. Every one of them is different from the earlier one. You can give a chance to the </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">country boat ride</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Enjoy the countryside of the Island. Spend some time with craftsmen of </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Samaguri Satra</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-left: 36pt; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10. Lachung</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you and your spouse are feeling done with the toxic atmosphere of cities and can handle the hardships of a small town for a few days. Then, Lachung is something you should give a try to, for sure.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to do</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Trek in </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Yumthang valley</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Enjoy nature at </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Rhododendron sanctuary</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Trekking at </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Zero point</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Spend some time in </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Gurudongmar Lake</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Travel to </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Naga Falls</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> and </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bhim Nala</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Trek to </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mount Katao</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> and visit </span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chungthang Mandir</span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. </span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Whether you choose to go for a simple honeymoon or an adventurous one or want to spend time in cities or villages, make sure your partner wants the same as well. A honeymoon should be memorable for both partners. So before finalizing anything must ask your partner. If it is a gift from you then keep in mind what your partner can handle and what they cannot. </span><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">By keeping this tiny thing in your mind you can make your honeymoon best for both of you guys.</span></p><p><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><br></div></p>',NULL,'2021-04-20 13:17:27','2021-04-20 13:17:27',NULL,1,'',0,0,'best places to visit in northeast','Do you want to find out the best places to visit in the northeast? This blog will help you with all the details you must know before visiting northeast.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(79,'10 Best Places to Visit in Andaman','10-best-places-to-visit-in-andaman','1623157481_blog.jpg','1629277257.jpg',NULL,'Aniket Agarwal','2021-04-12',NULL,NULL,NULL,'<span id=\"docs-internal-guid-b26c6c57-7fff-7092-4f78-9f7af595272f\"><font face=\"Arial\"><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Traveling is one of the best\r\nthings to do for a lot of people around the world. Not only does it give people\r\nthe chance to see the world, but also relax in new surroundings. Some even use\r\ntraveling as a way to find themselves away from their busy lives.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Indeed, many beautiful places\r\naround the world appeal to different people. Beaches and natural landscapes are\r\none of the most popular options for travelers. Are you interested in that as\r\nwell? If so, the&nbsp;<b><a href=\"https://www.ineedtrip.com/tour-destination/andaman-and-nicobar-islands/\">Andaman Islands</a></b>,\r\nwhich along with its sister islands of Nicobar, is one of the most stunning\r\nareas.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Situated in the Bay of Bengal, the\r\narea boasts gorgeous exotic beaches and natural flora all around. For visitors,\r\nthere are many places to see and the ocean views are incredible. If that is\r\nsomething that interests you, here are the 10 best places to visit in\r\nAndaman.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>1. Havelock\r\nIsland&nbsp;</b></span><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">One of the top spots in Andaman\r\nthat many visitors enjoy is the area known as Havelock Island. Indeed, for\r\nadventure lovers and water-sport enthusiasts, this is one of the best spots.\r\nOverall, there are many reasons why it is popular among visitors.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Travelers who go to this area fall\r\nin love with the views of the ocean all around. However, it is the trips into\r\nthe waters that add an extra layer of fun to the memory. Indeed, Havelock\r\nIsland is known for snorkeling and scuba diving opportunities. Thus, if you\r\nwish to enjoy this experience, you can give this place a shot!&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">For a scuba diving experience\r\nespecially, the best place to go to is the Barefoot Scuba Resort. There are\r\nprofessional instructors here who would help you train for scuba diving if you\r\nare a novice. Also, long-time scuba divers can have a fun time at this\r\nresort.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Overall, if that is something you\r\nwish to try, definitely add this to your list.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>&nbsp;</b>It is\r\n70 km away from Port Blair; you can take a ferry from there. It takes 2.5 hours\r\nvia public ferry services but 90 minutes approximately via private AC\r\nferries.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Water sports,\r\nBeach hopping&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: 15pt; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>2. Radhanagar Beach&nbsp;</b></span><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">When talking about the best places\r\nto visit in Andaman, it is worth mentioning Radhanagar Beach. It is one of the\r\nbest spots in Andaman, not to mention it ranks among the best beaches in Asia.\r\nSo, you can surely expect a wonderful experience when you visit the\r\nbeach.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">It is not far from Havelock Island\r\nand you can visit the spot if you are already are there. The coastline of this\r\nbeach is in a crescent-like shape, with breathtaking turquoise waters all\r\naround. The sand is soft against the bare feet and comfortable, which many\r\nvisitors adore.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Indeed, the landscape here is\r\nbreathtaking to look at, especially if you are there with a special someone.\r\nPlus, you can enjoy many fun activities here as well if you like different\r\nwater sports. If you planning to go to Andaman, do make sure to travel\r\nhere.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">The distance\r\nbetween Radhanagar Beach and Havelock Island is approximately 12 km. You can\r\ntake a government boat from the island to the beach or directly go from Port\r\nBlair.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to Do:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">&nbsp;Snorkeling, Canoeing,\r\nKayaking, Scuba Diving&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>3. Neil Island&nbsp;</b></span><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:major-latin;\r\nmso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">For a fun-filled experience, Neil\r\nIsland is one of the best places to<b>&nbsp;<a href=\"https://www.ineedtrip.com/tour-destination/andaman-and-nicobar-islands/\">visit in Andaman</a></b>. This majestic\r\nbay area is a common spot for water-sport lovers to flock to, and for seeing\r\nthe beautiful marine life. You can opt for fun activities like scuba diving and\r\nsnorkeling here as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">One of the best beaches in this\r\narea is Laxmanpur Beach, which lies just 2km north of the island. This a\r\nsecluded spot and the water here is shallow. If you enjoy snorkeling, you can\r\ntry it here to see the beautiful underwater life. From corals to ornamental\r\nswarms of fish, the experience is a sight to behold!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Speaking of sights, a notable\r\nmention is the attractive Howrah Bridge, a natural formation in Neil Island.\r\nFor a fun time seeing marine life in all its glory, this spot is must visit.\r\nYou can view species like octopus and crabs here as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><b>&nbsp;</b>The\r\nbest route to this island is a ferry ride from Port Blair, which is just 42 km\r\naway.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to Do:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Water sports, snorkelling, scuba\r\ndiving, beach hopping<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>4. Ross Island&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Also known as Netaji Shubhash\r\nChandra Bose Island, the Ross Island is worth entering the list of best places\r\nto visit in Andaman. Here, tourists can enjoy the gorgeous natural wilderness.\r\nFull of thick palm trees and coconut trees, the area is a beachy\r\nparadise.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Also, you can catch a glimpse of\r\nmany peacocks and deer in their natural habitat. Besides that, the island has\r\nold-school machine-gun nests and British architecture here as well. One of the\r\nnotable spots is the circular lighthouse which is 10 meters high.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">While this is a top attraction for\r\nmultiple travelers to Andaman, it is important to mention that it has zero\r\nhuman habitation. Those who go to Ross Island can stay awhile for an experience\r\nof Andaman history and natural beauty.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;Visitors\r\ncan take governmental boats from Port Blair to this island. Central Port Blair\r\nis just 3 km away.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to Do:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">&nbsp;Visiting beaches, museums,\r\nand parks.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>5. Mouth Harriet</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">One of the interesting activities\r\ntourists love taking part in is trekking. For that, one of the&nbsp;<b>best\r\nplaces to visit in Andaman</b>&nbsp;is Mount Harriet. The train stretches from\r\nMount Harriet 16 km away to Madhuban. For fitness enthusiasts and tourists\r\nlooking for some fun, this is an adventure worth going for.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">More than the destination,\r\ntourists enjoy the journey even more. Indeed, the trek route is surrounded all\r\naround with beautiful natural scenery of exotic plants and flowers. Plus, the\r\nnatural animal inhabitants live comfortably in their home-place and are visible\r\nto the trekkers.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">One exciting option you can try\r\nhere is the elephant safari to see the forest around Mount Harriet. Certainly,\r\nthis is a fun way to sight-see the spot on your vacation.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">This is\r\npresent in the Hope Town location in Port Blair.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Adventure\r\nsports, nature walks, elephant safari&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>6. Vijaynagar Beach&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Another of the top locations in\r\nthe&nbsp;<b><a href=\"https://www.ineedtrip.com/tour-destination/andaman-and-nicobar-islands/\">Islands of Andaman</a>&nbsp;</b>is Vijaynagar Beach. In fact, it is\r\nrated as the fifth-best beach in the region. If you are looking to spend a\r\nquiet and peaceful time during your vacation, this serene landscape is worth\r\nvisiting.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Of course, the scenic views are\r\nanother draw of this mesmerizing spot. The beach is clean and comfortable to\r\nwalk around on. Plus, the view of the beach from the coast is breathtaking, to\r\nsay the least.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">A lot of the visitors to this spot\r\nstick around for hours to see the sunset over the horizon. Also, the sun-rise\r\nview is calming and surreal as well. It is definitely a sight worth taking many\r\npictures of. Not to mention, you can sit on the beach and sunbathing after a\r\nfun swim.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Water sports are not commonly\r\norganized at this seaside spot. But, you would still get to enjoy a lot of fun\r\nactivities to engage in.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;Visitors\r\nto this spot can take a ferry ride from Port Blair to Havelock Island. This\r\nbeach is present close by.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Beach hiking,\r\nbird-watching, snorkeling, swimming, fishing, wildlife photography<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>7. Barren Island&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">This site is home to one of the\r\nactive volcanoes around the world and is the only one in Southeastern Asia. The\r\narea got its name&nbsp; \'barren\' due to the lack of human settlements in the\r\nspot. The volcanic eruptions here make it hard for people to inhabit the land.\r\nHowever, that does not stop travelers from visiting the island for sightseeing.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">While you would barely see any\r\nhumans here, the animal life on the island is comfortably settled. In fact, you\r\ncan see many varieties of animal species in the region.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">For the tourists, there are\r\nparticular activities to participate in as well. So, you would surely have a\r\nnice time when visiting this island.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;It is\r\nlocated 143 km away from Port Blair. The best way to reach the spot is via the\r\nsea route. The government makes provisions for the journey.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to Do:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><b>&nbsp;</b>Sightseeing<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>8. North Bay Island&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">In terms of attractions to see and\r\nthe best places to visit in Andaman, the North Bay Island deserves a mention.\r\nThere are gorgeous corals visible in the bay region and extend across the\r\noverall coastline. Scuba divers especially would have a fun time diving into\r\nthe water to catch sight of the stunning marine creatures.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Species like clownfish, stonefish,\r\nand lobsters are common in these waters. So, for both new divers and\r\nprofessional-level ones, this is a sight to behold. You can enjoy multiple fun\r\nactivities here, like snorkeling, sea walking, and more other aquatic\r\nsports.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">For those who want to spend\r\nleisure time, you can have a good time sunbathing at the seaside as well. Plus,\r\nthere is a fun option available here for tourists to opt for, called a glass\r\nboat ride. Tourists enjoy the deep-sea semi-submarine ride to see the variety\r\nof creatures living deep in the waters.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">All in all, this is an interesting\r\nexperience that you must try if you go to the Andaman Islands.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;you can\r\ntake a boat to this island from the Phoenix Jetty of the Port Blair region. Overall,\r\nthe distance is not very far. It would take around 20 minutes to reach the\r\nisland this way.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Snorkeling,\r\nscuba diving, deep-sea diving, sight-seeing, swimming<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>9. Jolly Buoy Island&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">When you planning a trip, many\r\npeople would tell you this is one of the best places to visit in Andaman.\r\nIndeed, they are right. The sandy white beach is comfortable to walk around on\r\nand the scenic views are stunning as well. If you are looking for a laid-back\r\nexperience for your trip, this spot is a must-visit.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Besides that, you can opt for\r\nexciting water-related activities as well. For example, the underwater corals\r\nare breathtaking to look at. So, you can try out snorkeling in the waters.\r\nHere, it is important to mention that Jolly Buoy Island is essentially a\r\nno-plastic zone. So, if have any such items with you would have to leave them\r\nall at Wandoor Beach.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">&nbsp;you can\r\ntake a boat ride from Port Blair to this island. It is only 30 km away.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Sunbathing,\r\nSnorkeling, glass-bottom boat ride<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom: 8pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>10. Baratang Island</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">Last but not the least, one of the\r\nbest places to visit in Andaman as per many travel enthusiasts is Baratang\r\nIsland. You can go to the secluded beach that is available at this spot and see\r\nother unique and attractive sights. For example, there are many limestone\r\ncaves, mud volcanoes, and mangrove creeks present here as well.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">However, before you can go to the\r\ncaves, you have to get express permission from the Andaman Forest Department.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">If you are interested in seeing\r\nand learning about the tribal communities in Andaman, this is a good spot for\r\nthat. This would add a sense of thrill to the trip since the tribal inhabitants\r\nstill live there. Plus, you can go to the archipelago area of Baratang Island\r\nto see the natural exotic lifestyle of a different culture.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>How to\r\nReach/Location:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">It is just\r\n150 km to the north of Port Blair and is accessible via ferry services.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; vertical-align: baseline;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Things to\r\nDo:&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\">Sightseeing,\r\ncave exploration, nature walls<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 13pt 0in; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif;\"><b>Conclusion&nbsp;</b></span><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 13pt 0in; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">All in all, visitors planning a\r\ntrip to the islands of this infamous part of southeast Asia can enjoy a lot.\r\nYou would get to see many stunning views of the land and take part in multiple\r\nfun activities. Many of these places are fun to visit throughout the year,\r\nalthough some areas are best for particular months.&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-theme-font:major-latin\">However, whichever dates you\r\nchoose for the visit, make sure that you follow the governmental rules well.\r\nThe regulations are in place for tourist safety; so, research on what to expect\r\nbeforehand. Overall, you would have a fun experience in Andaman, which location\r\nyou choose.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin: 6pt 0in 12pt 0.25in; text-align: justify; line-height: normal; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:\r\nmajor-latin;mso-hansi-theme-font:major-latin;mso-bidi-theme-font:major-latin\"><o:p>&nbsp;</o:p></span></p></font></span>',NULL,'2021-04-21 19:37:13','2021-04-21 19:37:13',NULL,1,'',1,0,'Best Places to Visit in Andaman, Andaman Tour, Andaman Trip, Trip To Andaman, Andaman Holidays','Andaman has got one of the most charming beaches in the Indian subcontinent and here are the best places to visit in Andaman for honeymoon.','10 Best Places to Visit in Andaman | Andaman Packages','[\"149\",\"148\",\"147\",\"146\",\"145\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"27355, 27352, 27349, 27346, 27331\"]}'),(80,'10 Best Places to Visit In Seychelles','10-best-places-to-visit-in-seychelles','1623658670_blog.jpg','1629285557.jpg',NULL,'Aniket Agarwal','2021-04-16',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The world is full of gorgeous landscapes, from stunning mountains to human-made city skylines. While different people have varying tastes when it comes to locations, one area that surely appeals to many are oceanic views. Case in point, the island group of Seychelles, off the Kenyan coast of Africa.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This archipelago nation sits atop the Indian ocean and is home to multiple plants and animals, both land and water. Overall, the stunning landscape includes 115 islets, coral atolls, and cays. Not to mention, the beaches of this archipelago nation are of diverse types. But all of them carry a distinct attractiveness about them. While there are many</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">best places to visit in Seychelles, </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">you should plan your itinerary properly.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are wondering what places you should check out, here is a list of the top ten Seychelles spots. Read on and begin planning your trip dates around these stunning locations.&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">La Digue Island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This island is the fourth biggest island found in the Seychelles region. Frankly, its one of the obvious option you should add to your trip schedule as soon as possible.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This island showcases the natural beauty of the coastal lifestyle in such a thoughtful manner. The gorgeous beaches with fresh white sand under your feet will make for a comfortable experience when you reach here. The beaches themselves are stunning to look a, with granite rock outcrops splattered around the coast. It adds a sense of unique yet calming aura to the area, which travelers enjoy immensely.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Besides the beachy lifestyle, which surely is your main focus, the civilization here is worth checking out. For one thing, people travel around on oxcarts or bicycles here. So, if escaping the dull and fast city life is your goal from the vacation, this island is a lovely respite.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are many attractions to see at the la Digue island as well. First, go to the L’Union Estate, where you can roam around the traditional vanilla plantation and copra factory. Plus, the Veuve Nature Reserve is a good option if you enjoy watching exotic species in their habitat. Here, the one you would see is the black paradise flycatcher, an endangered bird species.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Other adventurous options you can opt for here are rock climbing or diving activities. Also, you can take a hike along the La Pass to Grand Anse Trail for a fun-filled sightseeing opportunity.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Sightseeing, wildlife, photography, and trekking</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Morne Seychelles National Park&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the best places to visit in Seychelles is this national park region on the island of Mahe. Indeed, the whole park takes up over 20% of the overall and is aptly touted as Seychelles\'s largest one. Overall, the spot is a favorite destination for many tourists and locals who enjoy natural views.</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There is a chain of mountains that is present within the forested region. Here, the highest peak reaches up to 905 meters and is the namesake of this park. Overall, the stunning point looks over the area of Victoria.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are one of those people who enjoy hiking a lot, there are multiple trails that you can go on. One marked trail starts from the Danzil village and reaches up towards the park. It moves through plantations and gives a view of Mahe Island\'s southwest side the further up you go.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Besides that, you can take a hike along the Morne Blanc trail and see the underlying summit area is all its glory. Afterward, if you travel within the park towards the west, you would come across the Port Launay Marine and Baie Ternay parks.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you enjoy watching the wildlife types in an area that you visit, you would appreciate this trip highly. There are many types of birds available here, like the bulbul, Seychelles scops-owl, and sunbird.</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Photography, wildlife&nbsp;</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mahe Island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When you plan a trip to this area, you would hear about many of the best places to visit in Seychelles. Here, one name that is worth remembering is the Mahe Island. This place is one of the most popular spots for tourists and locals.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are around 65 beaches scattered around the coastline of this island. Plus, you can view the mountainous panorama of the Seychelles peaks. Of curse, the thick forests are not attractive in their rights, with diverse exotic fauna and flora.</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the stunning factors about visiting Seychelles is the pink sands at some parts of its beaches. Plus, the granite boulders at the sides are worth checking out as well. Especially when the seawater laps against its structure, creating beautiful imagery.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Certainly, Mahe Island gives off a very romantic vibe. If that is what your trip is for, you and your partner will make wonderful memories together.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Sightseeing, bird-watching, sunbathing, photography, snorkeling</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Moyenne Island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Nother of the best places to visit in Seychelles is Moyenne Island. This area is full of old-school ruins and leftover pirate groves. So, if you are a fan of historic artifacts and stories, this is a must-visit!</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Not to mention, the island is the home place of giant tortoises who live and roam around freely here. It is situated slightly off the coast of Mahe Island.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Previously, there was no human habitation on this island. Until, in the latter end of the 1960s, a Yorkshire editor bought the land and lived there till 2021. While it is still not a place many people can call home, Moyenne Island does bring many customers. It is a natural reserve that is the main spot for multiple types of trees like mango, mahogany, and palm trees. Also, there are </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">16,000 different t</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">ypes of plants here as well.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are visiting with your family, the little ones would surely enjoy seeing the stunning tortoises. Plus, you would get the chance to feed food to these tortoises as well. There are some old-school buildings here as well, as the church of saints. The locals believe in some of the paranormal stories of such spots. Indeed, you would have a fun time listing to those stories.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do- Photography, wildlife, sightseeing</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Aldabra Atoll&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The attraction about this spot is that the Aldabra Atoll is the biggest raised coral atoll in the world. Thus, UNESCO has even ranked it as one of the World Heritage Sites.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Four channels connect to the lagoon in the middle. Through these channels, the lagoon fills up and even empties at least twice each day. Therefore, you can see the mushroom-shaped pinnacles when the water recedes, which are called champignons.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are multiple types of aquatic animals that you can see in this area, like the manta rays and tiger sharks. These usually stay near the shallow areas. Besides that, you can see many types of birds here as well. Some of the notable mentions are red-footed boobies, Aldabra sacred ibis, dimorphic egrets, Malagasy Kestrel, white-throated rail, and many more.</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Plus, you would get to see many Giant Tortoises here as well; there are approximately 200,000 of them in Aldabra alone.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Wildlife, Sightseeing, Photography</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bird Island</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Much like a land mostly for tortoises, in Seychelles, there is a land of birds. Indeed, Bird Island home to many migratory sooty terms. These go up in number, reaching 1,500,000 counts between the mating season.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Thus, if you like bird-watching or wildlife photography, this is one sight you should not miss. This land was originally known as Iles Aux Vaches and is the residence of many species now.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This place hosts many other wildlife creatures as well. Those include ground doves, noddy and fairy terms, mynas, cardinals, plovers, and crested terms. You can also go to the Seychelles bank close to this island for fishing. To reach here, you can take a half an hour flight from Mahe.</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do- Photography, wildlife, bird-watching&nbsp;</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Beau Vallon Beach&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> best places to visit in Seychelles </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">is Beau Vallon Beach. Compared to other options, it is more of a commercial beach that visitors enjoy going to. Some of the fun water sports you can enjoy here include water skiing and jet skiing. This place is also wonderful for sightseeing, especially with the stunning Silhouette Island so close by.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The area itself is very calming, and you would have a fun time there with your friends and travel partners. There are many resorts in the region for those who want to relax in the lap of luxury on their trip.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do- Photography, sightseeing&nbsp;</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"8\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Fregate island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is one of the best places to visit in Seychelles, and there are various reasons why. First of all, you would get to take part in many aquatic and adventure sports here. From yachting to scuba diving and even snorkeling, there is not much you cannot do at this spot.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The island essentially a private spot, and those who stay here can enjoy a fun and intimate time amidst nature. One of the main draws of this island is the Anse Victorin Beach. Certainly, it is a stunning place to visit, and you can make loads of memories at this spot.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do- Water Sports, Photography, Sightseeing</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"9\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Silhouette Island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Another of the natural beauties of this land is the Sillhouette Island. It is the home of many wild animals and plant life, and there are many caves at this spot. Some of the species you would get to see here are skinks, turtles, chameleons, geckos, and multiple birds.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visitors enjoy multiple activities here as well, like snorkeling and swimming. They certainly add to the experience in a very pleasant manner. For nature lovers who enjoy exploring the lands they go to, there are beautiful trekking trails at this spot.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You and your partners can go around this spot or walk along the different walking trails present here. Also, there are trekking routes available as well if you are more of an adventure lover. The island is made of granite with some portions of volcanic syenite as well. The inside area of this island is a national park. If you wish, you can go and visit that area.</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Photography, wildlife, trekking, hiking&nbsp;</span></p></li></ul><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"10\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:13.5pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cousin Island&nbsp;</span></h3></li></ol><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There is much to do and see on this island. Indeed, it is one of the best places to visit in Seychelles. There is a national reserve here called the Cousin Island Special Reserve. The institution is tasked to guard the rare Seychelles warbler bird.</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Here, other endangered bird species are also kept in protection. Not to mention, this carbon-neutral nature reserve, the first of its kind, is a mating site as well. Especially, it is the mating spot for the endangered species of the hawksbill turtle.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is not far from Praslin Island. So, if you reach that area, you can easily launch a trip to the reserve from the island. Most tours that are already organized for visitors take 5 minutes to complete. You would learn more about the ecology of the place and learn about the different species that live here. For a fun time, this surely is one trip you should not miss when you reach Seychelles.&nbsp;</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things to Do: Sunbathing, photography, wildlife&nbsp;</span></p></li></ul><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:18pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When should you visit Seychelles?&nbsp;</span></h2><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">All in all, there are many places you can see in Seychelles, and the climate is more or less comfortable throughout the time. So, whenever you reach, you would like the weather. However, for particular activities, some months are better than others. These include:</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bird-watching- </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">April to October&nbsp;</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sailing</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">- All the time&nbsp;</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Surfing</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">- Ma to September&nbsp;</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Snorkeling-</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> October-November and April-May are the best periods</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:12pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Diving</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">- September to November; March to May</span></p></li></ul><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:18pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Conclusion&nbsp;</span></h2><p><span id=\"docs-internal-guid-ee2adb86-7fff-4fe0-2439-20858ef1d0fa\"></span></p><p dir=\"ltr\" style=\"line-height:1.3800000000000001;margin-top:6pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Overall, there are many places to go to and many things to see in the beautiful nation of Seychelles. Plan your trip properly and take the items that you would need to this spot.</span></p>',NULL,'2021-04-21 22:13:20','2021-04-21 22:13:20',NULL,1,'',0,0,'best places to visit in Seychelles','There are so many places to visit in Seychelles that it\'s very hard to make a shortlist but we\'ve managed to make a list of the 10 best places to visit in Seychelles for you.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(81,'10 BEST THINGS TO DO IN HIMACHAL','10-best-things-to-do-in-himachal','1623148925_blog.jpg','1629285581.jpg',NULL,'Aniket Agarwal','2021-04-22',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Himachal, also known as the land of snow, is the home to the largest glacier in India. It has got its name from the words, “Hima” &amp; “Anchal” which means “snow” &amp; “lap”, which is no coincidence as the state lies in the lap of Himalayan range. Besides its breathtaking serene beauty, stunning rivers, lush valleys, Himachal has a lot of adventurous activities to offer like river rafting, paragliding, ice-skiing, trekking, etc. What better place to build memories with your partner amidst the majestic hills. Exploring the views holding hands, cable car rides, romantic dinner dates are the few highlights. Here are the list of 10 best things to do in Himachal.</span><br></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">River Rafting</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you’re a water-sports lover like us, the white water River rafting or river rafting&nbsp; is known to be one of the best things to do in himachal. We’re so in love with this sport and we’re sure once you do it, you will be too. The snow-fed rivers in the upper himalayas are said to be the best for river rafting in our country. No matter how many times you’ve done it before, it will be as thrilling as it was for the first time. You will feel an adrenaline rush in your veins &amp; every muscle in your body as the raft rushes along with the strong river flows &amp; water splashing over your face.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Rafting has different difficulty levels depending upon the experience the rider holds. But this doesn’t mean that it is a sport restricted for swimmers. Non- swimmers can also experience this sport in the places where guided rafting is conducted. The river Sutlej at Tattapani near Shimla, the Ravi near Chamba, the Beas river near kullu offers you tremendous river rafting opportunities. If you’re in for more challenging &amp; daring rapids, the Chandrabhaga (Chenab) in Lahaul is a good option. The beas near Kullu offers a great thrilling experience in a ride of 20kms stretch with extreme white water rapids.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The best time for river rafting is in spring and summers. This sport takes a break during some portions of monsoon due to heavy rains &amp; tides and in winter due to frozen water bodies in some of the areas.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Varies from INR 500 to INR 1000 per person.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: March to early June.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paragliding</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Have you ever wondered what it would be like to fly like a bird in the sky? When we were kids, at least for once we all would have worn a cape pretending to be superman flying in the sky, jumping from beds or some height just to have that feeling. We may not have natural wings but Paragliding is perhaps an activity closest to where you can experience flying freely like a bird in the air.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paragliding in Himachal can be mesmerising with the view of snow capped mountains, the lush green valleys, the cool &amp; refreshing breeze blowing on your face, the sound of the wind &amp; gurgling rivers, all at once like never before. It is a never to be forgotten experience.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The it-place for paragliding in himachal is Bir-billing. It is known as the Paragliding Capital of india. Now as the government of Himachal has launched a new scheme, “Nai Raahein, Nai Manzilein” to explore possibilities in unexplored areas, there has been many new sites established like Pandhara in Kullu, Chohla Indru Nag in Kangra, Darouta to Lahra in Chamba, Prashar in Mandi, Tikkar &amp; Junga in Shimla. Tourists can also experience paragliding in Solang valley near Manali.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Cost of paragliding starts from INR 2000.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: between March to May and October to November.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Trekking</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Trekking is the best thing to do in Himachal if you’re a nature lover and love walking through the trails. Himachal offers a great opportunity for the trekkers to choose their way, be it for camping or hotels or even for markets. For people who can’t go for longer treks but want to have this experience, these short treks to market or to your accommodation can be an alternative.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Himachal offers many more adventurous day treks like Triund trek, Hampta Pass trek, Kheerganga trek, Pin Parvati trek, Prashar Lake trek, Chanderkhani Pass trek. After completing the trek you can also stay there in tents and enjoy the bonfire and camping experience. These treks take you through forests and across rivers which gives you a pleasant and soothing feeling.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Carry water or snacks if required and do not forget to wear comfortable shoes. If the paths are rugged something with good grip is recommended.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Trekking packages start from INR 3000.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: Throughout the year.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Skiing</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The best thing to do in himachal when you\'re with your partner is to go out and have some fun. Skiing can lighten up your mood and bring closeness between you two. You will feel the snow beneath your feet and the wind blowing on your face as you slide down the hill.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Skiing is operational only during winter seasons, from November to Early March. This state has a number of places where skiing is organised. Many skiing spots provide packages too which are inclusive of accommodations and meals. Kufri, Narkanda, Solang valley, Rohtang Pass are the few locations where skiing is organised. Kufri is said to be the Skier’s Paradise and the winter sports capital of India. The town also hosts a winter sports festival around the month of February.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Even If you’re not much into skiing you can do sledge riding or play in the snow.&nbsp;</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Skiing starts at INR 300 per person per hour.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: November to February.&nbsp;</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing with your partner can be very romantic. Himachal has a lot to offer when it comes to nature. The meaning of the word Himachal is adequate to give you an idea of what to expect here. As himachal is situated in the lap of himalayas, scenic river valleys are the attraction to the state. Surrounded by the majestic snow covered mountains, the beauty of himachal is beyond imagination.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Major attractions here are Manali, a hot-spot for family vacations and honeymoons; Kullu, often heard with manali, yet another tourists spot on the banks of river Beas; Kasol, on the banks of parvati river famous for scenic waterfalls and undisturbed trekking routes; Chalal, known for its trance and psychedelic rave parties; trek to village Malana, famous for Malana Cream (cannabis); Chamba, Dharamshala, Mcleodganj and many others.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Packages start from INR 5000.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: Throughout the year.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Camping</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Camping &amp; bonfire under the starry night can be very fascinating. One of the best things to do in Himachal is to have the experience of camping. The stars which are not clearly seen at night from our cities due to pollution can be seen at campsites in Himachal. If you love anything or everything about stars or into astrophysics, this can be a mesmerising view. You can even carry a telescope with you and read the position of stars. Relishing the cold night under the stars, having dinner near a bonfire, spending the night in the tents and waking up to the mystic view of the mountains and the lush valleys is the most romantic thing you can do with your partner.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Along with the accommodation &amp; catering services and facilities, many campsites offer a variety of activities as well, like fishing, hiking, skiing, rafting, etc. Campsites near Kasol, Tosh, Jibhi, Waichin, Triund, Kheerganga are the hot-spots for tourists.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Packages start from INR 2000.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: Throughout the year.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dinner Date</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sometimes what words can’t express, gestures do. Planning a romantic dinner date for your partner isn’t as difficult as it sounds. What can be more romantic than having dinner with the love of your life under the light of the moon? River flowing underneath, wind blowing through your hair, music touching your soul, a long romantic walk after dinner and falling in love with each other again under the starry sky. Feels good, isn’t it? Can it be more romantic? No, right? When merely just thinking about being in this moment makes chills run down your spine, just imagine how it would feel like when your fantasies will come to life.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The cafes on Mall road of Manali is the best place to plan a date night if you’re looking for something sophisticated and well planned. But if you’re seeking isolation from the city, we would recommend you Parvati Valley or Jibhi valley where the lodges and the campsites also offer honeymoon packages which include dinner dates.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: approx INR 1500 for two.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: Throughout the year.</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"8\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bike ride &amp; road trip to spiti</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It’s no lie that every traveler dreams of going on a road trip to spiti. Why? Because Spiti is wonderful, it\'s serene, it’s stunning. Nested between Tibet and India, this cold deserted mountain valley has a unique vibe. It\'s hard not to fall in love with this place. Spiti, being one of the Himachal\'s valleys, is nothing alike. It is the most bizzare place to see in himachal. Spiti is not only known for its scenic views and its mesmerising beauty but these mighty mountains have always been counted as life-giving, where the seeker found peace and solace. Spiti is a mixture of both traditional history and modern world. Novelist Rudyard Kipling defines Spiti as a world within a world, a place where God lives.&nbsp;&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tabo monasteries, Kye monasteries, Chandratal, Kazo, Kibber are the highlights of the valley.&nbsp;</span></p><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost: Packages starts from INR 15000</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: March to June &amp; September to mid-October</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"9\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kullu dussehra</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Who doesn’t enjoy a carnival? Yes, you heard me right. A Carnival, where you can enjoy several cultural events and activities amidst huge feast stalls, clothes and antiques on sale, souvenirs for you to take home.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kullu-Dussehra is a wonderful source of entertainment. The special thing about this event is that it starts in Kullu when the festival ends in the other parts of the country i.e. from the tenth day of the rising moon, which we call as “Vijay Dashmi”, and continues for the next seven days. A week-long festival celebrated in the month of August has now become a major attraction for tourists in Himachal Pradesh. More than 5 lakhs people around the globe visit the fair. The raths are decorated &amp; prepared for the gaily attired idol of RaghunathJi for the rally where it is pulled by the devotees along with drums, trumpets &amp; people dancing in front. People also carry the idols from their home on their heads in the rally. The traditional dance of the locals “Natti”, also known as the moonlight dance, is performed in the night by the local villagers. On the last day of the fair, devotees collect a pile of wood and set it to fire to mark the destruction of Lanka. They also follow a tradition of Bali where A fish, a lamb, a rooster, a buffalo &amp; a crab are sacrificed in this fire.&nbsp;</span></p><p><b style=\"font-weight:normal;\"><br></b></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"10\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Explore the markets &amp; street food</span></p></li></ol><p><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the best things to do in himachal is to explore the market. Wander the streets, try himalayan food and shop unique pahari outfits. You can spend a good quality time wandering and exploring the markets with your loved one. The different cities are popular for different items. From handicrafts to clothes to different kinds of fruits and vegetables, there is no such thing you won\'t find in Himachal.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Lakkar Bazar in Shimla, the star attraction of the state, is famous for antique decor items which are very much liked by the tourists. These wooden pieces are popular for circuitous carvings and are sold here at very economical rates.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you’re a shopaholic like us, The Mall Road in Manali is a delight for you. You can pick up souvenirs from here or gifts for your friends and family. You will see plenty of shops with&nbsp; good quality hand-knitted sweaters, pashmina shawls, sarees, scarves, caps, boots, etc. Mall Road is not just a flea market but also a hub to food stalls, cafes and bars. You will get a huge variety of delicious food there. Do not forget to try the Trout fish, if you’re a non-vegetarian.</span></p><p></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mcleodganj, as you all know, is all about Tibetian culture. The best thing to find in the markets here are the artefacts and fragrances from Kotwali Bazaar. Prayer wheels, singing bowls &amp; perfumes are the highest selling products in this market. Besides the shopping items these markets are also famous for their street foods. Do not miss a chance to hog on the street food while you scroll through the markets. Pahari food can be a treat to your stomach. You won’t find more delicious momos anywhere else.&nbsp;</span></p><div><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></div>',NULL,'2021-04-29 21:47:39','2021-04-29 21:47:39',NULL,1,'',0,0,'things to do in himachal','Looking for the things to do i Himachal? This blog is for you! Check out what this beautiful destination offers to you as couples.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25064,24741,25015\"]}');
INSERT INTO `tbl_travelogues` VALUES (82,'10 Best things to do in Seychelles','10-best-things-to-do-in-seychelles','1623148014_blog.jpg','1629285623.jpg',NULL,'Aniket Agarwal','2021-05-04',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"text-align: left; line-height: 1.38; background-color: rgb(255, 255, 255); margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 18pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 12pt; white-space: pre-wrap; text-align: justify;\">Seychelles is popular for combining its charming islands in the waters of the Indian Ocean, off East Africa. The waters display a spectacular spectrum of blues, greens and everything in between. You’ll often find yourself resistant to get out of the water and leave the beach. The sandy beaches, cerulean waters, and rich, varied marine life exist in Seychelles\' stunning coral reefs. Being the capital city of Seychelles, Mahe is the place to visit to explore and enjoy a truly unforgettable experience in Creole culture. It is packed with breath-taking white beaches, lush greenery, and gorgeous towering mountains.</span><br></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The magical city of Seychelles is well and truly one of the world’s most beautiful destinations. It is an island paradise in every sense of the word, ideal for honeymoon couples looking for an unforgettable vacation filled with relaxation and romance. Seychelles is an archipelago country consisting of 115 tiny islands spreading across the vast Indian Ocean. It is versatile in terms of its beauty, starting from the magnificent Morne Blanc mountain to the white-sand beach of Anse Volbert, from the Victoria Market’s colourful atmosphere to Seychelles. It has plenty to offer. So consider yourself lucky enough if you manage to visit these islands of pure tropical bliss.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are confused and wondering what fun things to do in Seychelles that you cannot miss, this is the right place. Here is a list of the top 10 things to do in Seychelles. Although it is not easy and cheap to plan a vacation to Seychelles, the trip will certainly be worth it without regrets.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Explore the local markets</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Seychelles is very popular for its local markets. The most famous market is the Sir Selwyn Selwyn Clarke Market in its capital, Victoria. It is more common as the </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Victoria Market</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. The liveliness of the market signifies it as the true heart of the capital and displays a harmonious blend of the old and new Seychellois way of life. The people of Seychelles always love to share their enthusiasm and passion for local Creole food and culture.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The local vendors offer everything at unbelievable prices. The market provides several souvenir stalls scattered throughout the market with sarongs, flavoured oils and art. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Here you will get printed t-shirts, necklaces as well. In case you feel hungry after shopping and bargaining throughout the day, you will find some local street shops offering authentic dishes for you to enjoy the Creole culture. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The market is open Monday to Saturday from 4 am to 5 pm. The other markets in Seychelles worth mentioning are </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Victoria Bazaar, open</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> every Friday on Market Street, and the </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bazar Labrin</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> on Beau Vallon beach, open every Wednesday and on the last Saturday of each month</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visit Praslin Island</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Praslin is observed as the most beautiful island in Seychelles. It is abundant in dense vegetation, lush coconut groves and six endemic palm species, the famous being the strange-looking coco de mer. Undoubtedly, Praslin is a tropical delight for tourists and visitors. The Praslin Island also offers snorkelling among living corals with a variety of 900 species of fish. You can also go swimming at Anse Lazio, which is ranked among the world’s best beaches. The combination of the natural blue waters, the amazing, great waves, the luscious vegetation and the granite boulders contribute to its appeal. However, it is the long stretch of white sandy shoreline which makes the beach so famous.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">On the other side of </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Praslin Island, one can find a long stretch of soft blond sand that merges with crystal-clear waters in dreamy shades of blue. Takamaka trees and coconut palms surround the beach perimeter, providing patches of shade for relaxing. The hungry bathers can refuel at restaurants on both ends of the beach as well. The best time to visit Praslin Island is during the early morning or late afternoon when most tour buses have left. Then, you can visit the Fond Ferdinand Nature Reserve or the Praslin National Park for a little adventure, which will take you through the native flora and fauna of Seychelles. Besides, it would help if you also enjoyed the local cuisine at some of the best restaurants like Coco Rogue, Breeze Garden, Les Rochers, La Pirogue, Les Lauriers Buffet, and Bonbon Plume.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Explore the Vallée de Mai</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Vallée de Mai is a splendid nature reserve and one of the prestigious UNESCO World Heritage Sites. It is located on the island of Praslin. It is the home to the remains of Seychelles’ original palm jungles. This historic reserve has also been described as the ‘Garden of Eden’ as it is the home to over 4,000 trees of the legendary Coco de Mer. An afternoon in this magical forest allows you to lazily lounge in the green glow of the palm trees, which can also be seen in Seychelles.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The female tree produces a heart-shaped fruit similar to the shape of a woman’s pelvic region, having the largest and the heaviest seeds in the world. You can also explore some unique birds, such as the Seychellois bulbul and the rare black parrot in the Vallée de Mai. The nature reserve is open daily from 8:30 am to 4:30 pm. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The plantations here also offer three hiking trails and many sub-trails and guided walks for an amazing hiking experience. All three trails are equally exciting things to do in Seychelles</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">most suitable for February.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Boat trip around the islands</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You cannot regret going on an island-hopping boat trip. So, this is a must-do activity if you have enough time and money. With tourists and visitors lacking enough time, multiple boat companies offer full-day packages, including lunch. These packages also include a boat trip to islands such as Cousin Island, Curieuse Island and St Pierre. The price usually starts at around £130 per person. However, for those who have enough time, we highly recommend choosing certain islands and spreading the trip over a few days amongst them to explore and get a feel of each of them. The main three islands are known for their unique features. Cousin Island is packed with diverse wildlife. Curieuse Island is popular for its magnificent mango forests, while St Pierre is popular for its amazing snorkelling spots.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Hike along trails on Mahé Island</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mahé is the largest island of the Seychelles. Mahé Island is home to some truly beautiful nature trails, displaying blissful scenes of a wide variety of vibrant wildlife and stunning scenic beauty. The easiest of the islands’ trails for hiking is the </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Copolia Trail</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, found in the Morne Seychellois National Park and is 500m above sea level. It usually includes a 2-hour hike with some steep sections. The </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Morne Blanc Trail </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">is another one-of-a-kind hiking trail with views well worth its challenging nature, and the trail takes roughly 45 minutes each way. Finally, you can visit the </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Anse</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Major trail</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">if you are interested in seeing some amazing rock formations. This trail is relatively easy and takes around an hour and a half.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It also offers the only way to get to Anse Major beach on foot. The major attraction of Mahé island is the Creole culture, especially the cuisine. We highly recommend you enjoy the sunset on the beach of enchanting Anse Soleil Bay. You can visit the Craft Village to admire the Victoria clock tower and explore Mahe’s lively Creole culture. You can try the Glacis Trois Freres Trail for off-beat trail routes, where the endpoint stops at three large granite rocks. It will take you to the highest point on the island through rough roads bordered by trees on both sides. If you are looking for some heavenly experience, no other trail can be as memorable as the Vallée de Mai trail. The park is an earthly replica of the Garden of Eden and has three different hiking trails that will help you cover the entire island.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visit La Digue\'s coconut plantation</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 10pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can explore the L’Union Estate farm on La Digue island, which acts as a \'theme park\' for Seychellois\'s history. In this section of Seychelles, coconut production is sustainable and well-managed. This enables the visitors to see an ox-powered oil extraction machine, the historic Old Plantation House, vanilla plantations, a colonial-era graveyard, a boatyard and a tortoise pen. You can rent a bicycle and explore the farm and then head to the famous Anse Source d’Argent beach, which is just as stunning.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 10pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">At the beach, you can order a piña colada and enjoy the ash-grey boulders line and distinguish the teal-coloured waters making for breath-taking scenery. Exploring the vintage plantation house of La Digue is one of the most popular and considered as one of the best things to do in Seychelles. It is spread over sprawling 300 hectares of land. It is now considered a national monument that is showcasing cultural and historical significance. The plantation house is open from</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7 am to 5 pm, and the price is about 7.5$ per person.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 10pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;padding:0pt 0pt 10pt 0pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Meet some of the world’s giant tortoises</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A trip to Seychelles is incomplete without seeing some of the world’s giant tortoises. These gentle giants are a delight and pleasure to meet and can be found on either the Curieuse Island or the Cousin Island. Curieuse</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#333333;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Island was once known as Île Rouge due to its russet-toned earth. It is now home to a breeding program for giant tortoises that roam freely around the sandy coves.</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The only other place these giant tortoises exist and can be found is in the Galapagos Islands. You can take a quick boat ride to Curieuse Island from Praslin Island. You will then have to hike your way to a conservation and rehabilitation centre to find these tortoises with shells the size of bathtubs. You can also see more tortoises on Cousin Island and the coral atoll called Aldabra. However, the atoll is more remote and requires booking in advance.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Enjoy the local cuisine takeaway of Creole Culture</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are an abundance of Creole takeaway stands on any of the Seychellois islands. It just never fails to disappoint and is one of the best ways to try the local cuisine. The most well-known and popular and common dishes are a box stuffed with rice, guaranteed fresh seafood and green papaya. Owing to the island\'s colonial history, many of the country\'s population is of Indian descent. It indicates that the local cuisine is a delightful and delicious mixture of diverse cultures. The Indian seafood throughout the island is very popular, the primary attraction being the octopus chapati which is worth searching for. The rule of thumb out here in Seychelles is to stick to seafood rather than meat, which is always guaranteed to be fresh.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It, too, comes under the top things to do in Seychelles. First, you can go for a city tour and taste the street food from the local stalls all across the different islands. The globally famous takeaway stalls include the Jules Take Away in Mahe, the Copper Pot in Mahe, the Coco Rouge in Baie Sainte Anne, and the Gala Takeaway in La Digue. Fish here is served in charred coconut shells as it emanates a smokiness that enhances the taste of the grilled fish. Banana is also a famous ingredient in the Creole local cuisine, which is why you need to try it out at the earliest. Here, one will get 23 species of fruit and hence having a banana dish is a must. You must also try the traditional salad dish called Satini, which is a bit spicy but heavenly for your taste buds.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">9. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Go island hopping in Seychelles</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The beaches in Seychelles are arguably some of the best in the world. Each island is dashed with spectacular coasts and alcoves. However, most of the islands’ most attractive beaches are near the resorts. These include the Anse Georgette beach on Praslin island near the Constance Lemuria resort and Anse Lazio beach near the Raffles resort. The Anse Georgette beach has the most beautiful characteristic granite boulders with luxurious stretches of white sand.&nbsp; Whereas the Anse Lazio is known for the more powerful waves and terrific sunsets. You can visit La Digue where you will come across the Anse Source d’Argent and Anse Cocos.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">On the other hand, if you visit Mahé, you will come across Anse Intendance, Beau Vallon, Anse Louis, Petite Anse. A visit to any of these beaches will make you fall in love with Seychelles immediately. The only and the best way to explore all the beauty of these heavenly tropics is to go island hopping around Seychelles. You also have the option to visit the three main islands of Mahe, La Digue and Praslin, as well as take wonderful day trips to the surrounding, smaller islands of Seychelles. Lying on sandy beaches, swimming in the warm waters and enjoying a range of water sports is easily one of the best things to do in Seychelles.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Helicopter Ride across the heavenly Archipelago</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Island hopping across islands can be fun. However, the thought of a helicopter ride over the islands is a whole new experience. The best way to enjoy and explore the unbelievable scenes of the heavenly Archipelago is by taking a helicopter tour over the pristine islands in the Indian Ocean. You can experience these exotic islands from the sky in the most surreal way.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It offers another level of fun. This way, you can </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Spot the entire archipelago spread in the vast Indian Ocean. Seychelles is usually crowded and jam-packed because it is a spectacular place attracting travellers with its unique charm and natural assets. Therefore, a helicopter ride could be the best possible way to enjoy Seychelles. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The helicopter ride can be quite expensive. The cost can be expected to be INR 30,000 for a 15-minute ride.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Conclusion</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">:</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Seychelles is primarily famous for its beaches. The islands are packed with soft, white shorelines designed with beautiful granite boulders and flanked by the warm, clear Indian Ocean. The best part about Seychellois beaches is that even the most popular stretches of sand are never crowded. A trip to Curieuse Island could be ideal if you do not mind the company of critters. You can always soak up the sun alongside giant tortoises or swim through the warm giant waves off the Beau Vallon coast for a fishy encounter.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Once you are tired of the sand, the sea, and the sun, you also have the option to cool down in the shade at the Seychelles National Botanical Gardens on Mahé or stretch your legs in Praslin\'s Vallée de Mai</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> as well</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. </span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Se</span><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">ychelles is not just all about its beaches. It has a lot more to explore, discover and enjoy. The best things to do in Seychelles include diving deep into the ocean with aquatic friends to having a romantic dinner on the beach. This beautiful island hosts various indoor and outdoor activities to keep travelers from around the world busy and entertained.</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;text-align: justify;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p><span id=\"docs-internal-guid-4b5391eb-7fff-51cf-94f3-901057483533\"><br><br></span></p>',NULL,'2021-05-05 23:13:49','2021-05-05 23:13:49',NULL,1,'',0,0,'things to do in Seychelles','If you are looking for the best things to do in Seychelles for couples, this blog is for you. Find out more than just scubadiving and snorkeling.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(83,'Top 10 Beaches to visit in Goa for couples','top-10-beaches-to-visit-in-goa-for-couples','1694415583_blog.webp','1694415583.webp',NULL,'Aniket Agarwal','2021-05-13',NULL,NULL,NULL,'<div style=\"text-align: justify;\">A travelogue for the best tour of Goa and its gleaming beachside areas. Whether you go to the Agonda fishing village or popular beach spots like Palolem, you would find much to appreciate in Goa.</div><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Aptly termed as the \"sunshine state\" of India, Goa is a primary travel destination for many individuals looking for a relaxing and fun-filled vacation. Whether you like the excitement of parties or the serenity of lounging on the beachside, there is much to do here. The coastline of this region stretches for 105 km and is home to many idyllic beaches. Indeed, there is a laid-back and stress-free aura around these spots, which prompts every visitor to let down their defences and, simply put, relax.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Hence, if relieving stress is your main intention, you cannot go wrong with a visit to this scenic state. In fact, it is home to some of the cleanest beaches throughout India and boasts of many ecologically vibrant areas as well.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">For a better travelling experience, we have created a list of top Goan Gplaces that you must go to for a fun-filled adventure. So, take out your bandanas and sunscreen and begin planning your trip to these top </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10 best beaches in Goa.</span></p><h2 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 18pt; margin-bottom: 6pt;\"><span style=\"font-size:16pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">What makes Goa the Best?</span></h2><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Truth be told, there are many reasons why Goa is one of the best vacation spots in the entire country of India, and perhaps even the Asian continent. The place is full of tranquil beaches, visual natural landscapes, bustling bazaars, interesting food types, and hardcore nightlife. So, whatever travellers fancy (food, relaxing, etc.) for the day or whomever they go with (alone or with a partner), Goa has something for everyone.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">To note, those who prefer learning the historic past and significance of an area would also find Goa interesting. Indeed, there are many spots that highlight the rich history of its people over several centuries. Here, you would get to see and observe particular areas with Indian and Portuguese influences. However, the main draw for tourists is the </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">best beaches in Goa</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, and ten of them are mentioned below.</span></p><h2 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 18pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Cambria, serif; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">North Goa</span></h2><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Ashwem Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Located in the Mandrem coastal village, this beach is a popular but secluded spot in Goa. Generally, not a lot of people flock to this beach, even during the peak season. So, if you want a quieter and peaceful experience, Ashwem Beach is a good choice. A notable point about this beach is the presence of olive ridley turtles in the area. Unfortunately, though, they only appear during particular periods.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: The Goa International Airport is just 53-54 km away from this beach. The total time to move from one spot to the other is 1-2 hours approximately.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: Sightseeing, Relaxing, Parasailing, Sun-bathing&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Baga Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Baga beach is just 2 km away from Calangute Beach and is a well-known spot on its own. Many tourists choose to reside in the beach huts or luxury resorts with a visually pleasing landscape. In particular ways, it holds particular similarities with its namesake, Baga Creek, which lies near the beach end that touches the Arabian Sea.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">From pubs to fun-filled clubs, the younger visitors enjoy their trip highly. Other than that, you can go for water sport options like parasailing, jet skis, speed boat riding, and banana boat riding.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: It takes around 1-2 hours to reach the nearest airport, which is the Goa International Airport. It is just 41-42 km away.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: motorboat rides,dolphin rides, jet skis, diving, and spa visits</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Vagator Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Location-wise, Vagator Beach resides just 9 km away from the Goan city of Mapusa. Appearance-wise, the beach looks a lot like a crescent moon, with a white sandy surface and black rocks.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Another beautiful element about this spot is, of course, the lush greenery that supports the beach. You can go on the cliffside that overlooks the ocean as well and notice a stunning landscape. Not to mention, there is much to enjoy about the locality here as well, like nightlife, shopping, luxury resorts, musical celebrations, and water sport activities.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Overall, locals divide the beach into Small Vagator and Big Vagator; both are equally beautiful and have fun activities to offer.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: The Goa International Airport lies 43-44 km from this Beach, and you can take 1-2 hours to reach there.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: Shopping, parties,and Water Sports.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Arambol Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is one of the most popular </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">best beaches in Goa</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. So, it is almost important not to mention the option in this list. Stretching over sixteen kilometers along the coast, you would notice cliffs on both sides as well. When you visit, you will notice men and women in colorful clothing and fancy hats.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Also highlighting the vintage feel, the huts and clubs here play common 80\'s songs at this spot. Regardless, it is a fun activity to partake in to experience Goa\'s hippie culture and nightlife. Moreover, you would notice a marketplace near the beach alongside a freshwater lake.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach:</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The distance between Goa International Airport and Arambol Beach is approximately 55-60 km. Similarly, the time difference is 1-2 hours, at most.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: shopping, surfing, and food.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Miramar Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This beach is easily one of the most well-known and</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> best beaches in Goa.</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> It is not far from the capital city of Panjim, approximately3 hours. You would certainly get to see a lot here, like the view of Mandovi River mixing into the Arabian Sea.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Plus, if you wish, you can go for a river cruise and have a fun and adrenaline-rushing casino experience. Overall, getting to enjoy such activities and the calm moments at the golden Miramar beach are both equally sweet experiences.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: With a 28-29 kms distance between Goa International Airport and this beach, you can reach the area in around 50-55 minutes.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: bar-hopping, water sports, and food</span></p><h2 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 18pt; margin-bottom: 6pt;\"><span style=\"font-size: 16pt; font-family: Cambria, serif; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\">South Goa</span></h2><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Hollant Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This beach is not far from Vasco city or the Bogmalo beach, which lies just 7 kms away. The water here notices low currents; thus, you can easily and safely swim in these shallow waters.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">While the area is comparatively isolated, it is still one of the most gorgeous locations in Goa. You would have to hire a car to visit the beach. After visiting, you can go for some fun water-based activities or enjoy the view of the picturesque sunset.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach: </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This beach is very close to the main Goa International Airport; approximately 4-5 km. So, you can easily reach here within 10-15 minutes roughly.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do:</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kayaking, Diving, and Parasailing.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Velsao Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This area is one of the </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">best beaches in Goa, </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">specifically the Southern Goa region. With scenic appealing surroundings and shiny starfish and sea-shells on the beach, you would like the visual delight of the area. Also, there are luxury resorts and relaxing spa destinations to have fun at here as well.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">To be fair, the area is more solitary than social; so, if you want to spend a quiet time away from society, Velsao Beach is a good choice. Notably, if you visit the beach during January, you can go to the Chapel of Nuestra Señora de las Curas for the Feast&nbsp;of&nbsp;Epiphany celebrations. Here, both the tourists and the locals get to experience a fun and cultural side of Goa.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: With just a distance of 10-11 kms, it would take you only 15-20 minutes to reach Goa International Airport from Velsao Beach or vice versa.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do: </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Shopping, Diving, and Parasailing.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"8\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Palolem Beach&nbsp;</span></p></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This South Goan beach is essentially the tip of this side and is around 25 kms away from the town of Margao. There are many interesting cafes and restaurants in the area that serve many local and multi-cultural delicacies. Therefore, the beachside is reasonably popular with tourists, besides the many water sport opportunities one can experience here as well. For example, the popular aquatic activities to do here are windsurfing or paragliding.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Moreover, you can plan a hike to one of the islands in the vicinity of the beach or choose to canoe there. Or, you can simply go to the Isla de Los Monos in this area and have a relaxing time to yourself. To note, Palolem Beach is a popular honeymoon destination; you can choose this spot if that is the purpose of your trip.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach: </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Situated around 60-62 km from the Goa International Airport, it takes 1.2 hours to reach Palolem Beach or the opposite.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do:</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> shopping, party, food, water sports, and diving</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"9\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bogmalo Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bogmalo beach was not always a tourist beach spot in Goa; previously, it was a coastal fishing village. With close proximity to the airports and the increasing tourism industry in Goa, many people frequent this beach. However, it is important to mention that the local livelihood here is still fishing for many citizens.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">While you can enjoy the stunning sunset at the sea\'s horizon here, you would get the chance to interact with the local culture as well.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach: </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can reach the Bogmalo beach from the Goa International Airport in 10-15 minutes. The distance between them is around 4-5 km.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do:</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Water sports, Bar hopping,and food.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"10\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;margin-left: -18pt;padding-left: 3.25pt;\" aria-level=\"1\"><h3 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 16pt; margin-bottom: 4pt;\" role=\"presentation\"><span style=\"font-size:13.999999999999998pt;font-family:Cambria,serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Majorda Beach</span></h3></li></ol><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Last but not the least, one of the</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> best beaches in Goa </span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">is Majorda beach in South Goa. It is visually appealing with soft and clear white sand, shining blue waters, and palm tree tops all around. The area here is very soothing and gentle; plus, not a lot of tourists congest the beach.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, if you want to spend some solitary moments, this is a good spot to visit.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How to Reach</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: With just a 17-18 km distance between the Goa International Airport and Majorda beach, it would take you only 30-35 minutes to reach either spot.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Activities to do:</span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> skiing, surfing, shopping, snorkeling, and water sports.</span></p><h2 dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 18pt; margin-bottom: 6pt;\"><span style=\"font-size:16pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Final Words: To visit or not to visit?</span></h2><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you ask us, we would surely admit that Goa is one of the vacation spots you should not miss. From multiple exciting activities to enjoy to stunning areas to see, there is no limit to how good the experience here can be.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, if you want to travel for the fun, the history, or just relaxation, Goa delivers on all fronts. The beaches mentioned are just some of the best spots that would improve your overall Goan experience. Thus, carefully consider your options and add one or more into your itinerary.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 6pt; margin-bottom: 12pt;\"><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Book best </span><span style=\"font-size: 12pt; font-family: Cambria, serif; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b><a href=\"https://www.ineedtrip.com/tour-destination/goa/\">Goa Honeymoon Package</a></b></span><span style=\"font-size:12pt;font-family:Cambria,serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> with us at affordable rates.</span></p>',NULL,'2021-05-15 21:19:40','2021-05-15 21:19:40',NULL,1,'',0,0,'Beaches to Visit in Goa, Goa Package, Book Goa Tours, Best Beaches in Goa, Goa Honeymoon package.','If you\'re looking for the list of the best beaches to visit in Goa for couples, this blog is for you. Check out the party spots, swimming spots, sports beaches, and more.','Top 10 Beaches to visit in Goa for couples | Best Beaches to Visit in Goa','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"0_1694415583_0.jpg\"],\"detailPackages\":[\"23226, 23231, 23236, 23241, 23246, 23253\"]}'),(84,'Top 10 Things To Do in Goa for Couples','top-10-things-to-do-in-goa-for-couples','1623661656_blog.jpg','1643286901.jpg',NULL,'Aniket Agarwal','2021-05-17',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:12pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Hey! You\'re finally here, this must mean you have finally made a plan to visit Goa, we can\'t be more excited to have you here. Goa, has so many beautiful beaches, vibrant nightlife and so much to do, that you\'ll lose yourself in the enthralling life of Goa. But before we dive into the list of things to do in Goa, let\'s go through some briefs about Goa\'s location and lifestyle. </span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is a state at India’s southwest coast that is part of the Konkan area separated from the Deccan highlands by the Western Ghats. It is bordered on the north by Maharashtra and on the east and south by Karnataka, with the Arabian Sea defining its western shore. It is India’s smallest state in terms of land area and the fourth-smallest in terms of population. The state’s capital is Panaji, and its major city is Vasco da Gama.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The tourist industry in Goa is mostly centered on the coastal areas, with less activity inland. In 2010, more than 2 million visitors were estimated to have visited Goa, with over 1.2 million of them coming from outside the country. As of 2013, Goa was a popular party destination for Indian and international travelers with minimal funds, notably Britons and Russians. The state hoped that by making modifications, it would be able to attract a more affluent populace.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is ranked 6th in National Geographic Travel’s Top 10 Nightlife Cities in the World. Chronicle, Mambos, and Sinq are among Goa’s most popular nightclubs. In CNN Travel’s Top 20 Beaches in Asia, Palolem’s Patnem beach came in third.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Because of its white-sand beaches, bustling nightlife, places of religion, and World Heritage-listed architecture, the state attracts a considerable number of foreign and local tourists each year; and offers a number of </span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">things to do in Goa</span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Because it is located on the Western Ghats range, a biodiversity hotspot, it boasts diverse flora and fauna.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Top 10 things to do in Goa</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is the ideal Indian vacation destination since it offers all of life’s joys in one location. This lovely city on India’s western coast is home to several tourist attractions. Goa is also called the “Pearl of the Orient” and “Tourist Paradise” for this reason. Besides, the stare is also known as India’s “beach capital,” and thus has a lot to offer the visitors.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">In Goa, there is something for everyone. Its beaches, rich trees, rivers, and islands will appeal to nature lovers. The many churches and forts of Goa will delight cultural buffs. You will like the seafood and Konkani cuisine if you are a foodie. For those seeking excitement, there is snorkeling, diving, paragliding, and go-karting. The waterparks will be a hit with the kids. You may also witness dolphins and birds by taking a sea or river tour. Goa also offers several lovely marketplaces where you may buy a variety of unusual items and gifts to take home.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Nature lovers, adventurous individuals, photographers, and nightlife enthusiasts will find Goa to be a kind of heaven. You may spend your vacation in Goa in any way you like. Spend a quiet vacation doing nothing or a busy vacation eating, drinking, partying, and sightseeing.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Beach is a must-see</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa attracts a large number of tourists who like spending time on the beaches because of its sun-kissed and extensive lengths of silvery beaches. From north to south, Goa has a plethora of stunning beaches. You won’t be able to see them all, so choose wisely. The beaches in North Goa are livelier, with more activities, parties, and shopping.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The beaches in the south are calmer and more relaxing. In the south, there is also more natural beauty. Relax in a hut on the beach, have a massage, eat and drink. Palolem Beach is Goa’s most popular beach. Even though there are shacks and cottages on the beach, it was and continues to be popular. This lovely beach has long been loved.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">At the beaches, there is, of course, swimming. But keep in mind that many Goa beaches have rocks. Also, be aware of riptides. The most popular beaches have lifeguards, although not all of them. In Goa, you may also go deep-sea fishing. The morning air is mild and calm, which is ideal for windsurfing or parasailing. You may go boating at any time of day. As a result, these sports energize and delight individuals during their holiday, making it unforgettable.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Go to a waterfall</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tourists flock to Goa because of its waterfalls. Dudhsagar Falls, with a height of 1,017 feet, is one of Goa’s most famous waterfalls. It is one of the attractions that you should not miss while visiting this location. The Arvalem Falls, with a height of 164 feet and a lovely park, is well-known in Goa.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Three beautiful waterfalls make up the Tilari Waterfalls. Although it is located near Belgaum and is a long journey from Goa, it is nevertheless regarded as one of the great Goa waterfalls. There are so many green forests here that the ambiance is almost heavenly, and it hasn\'t been well prepared for visitors. So be cautious if you go, and remember to bring some water with you to remain hydrated.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Depending on where you want to go and how much money you have, you can go to any of them. Kesarval Falls is unique among waterfalls in that it has therapeutic characteristics. The finest </span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">things to do in Goa</span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> is to go see these amazing falls. The waterfalls’ scenery and mood are quite breathtaking.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Take a Shopping Trip</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is well-known for its retail opportunities. Nobody misses out on Goa’s shopping, which includes apparel, shell works, fashion items, and handicrafts. As a result, you and your loved ones will never be without something.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It’s a good idea to carry something that proves you’re from Goa with you when you leave friends and family at home. Calangute Market Square, Anjuna Flea Market, Mapusa Market, Panjim Market, and others are popular shopping sites for all of these items.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Shopping in Goa is one of the most enjoyable activities to do in. When visiting the city, don’t forget to bring some extra cash with you for shopping. You might not be able to go shopping unless you set aside money for it. With shopping malls brimming with excellent goods, there’s a lot you can get. All you need is some free time to roam around and buy.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Wildlife Sanctuary is worth a visit</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cotigao Animal Sanctuary is a lovely area for the environment and wildlife enthusiasts to explore. It may be found 9 kilometers south of Palolem. Leopards, gaurs, sambars, and spotted deer are the most common animals found in this secluded sanctuary. Monkeys, birds, snakes, and frogs are among the many other species that may be found here.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Bhagwan Mahavir Wildlife Sanctuary, which is located near Molem, is a must-see. Wildlife enthusiasts and photographers will like it. Here, in the heart of Mother Nature, nature enthusiasts can find some tranquility. As one of Goa’s best wildlife reserves, you may observe significant wild creatures like the panther and sloth bear, as well as mice and other species. Visitors will be captivated by the variety of birds and beautiful flora and animals.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bondla Wildlife Sanctuary is the smallest of Goa’s wildlife sanctuaries, yet it is unquestionably one of the best for various reasons. It is an outstanding jungle resort with Eco-Tourism cottages in the Ponda region, making it nothing short of a paradise for nature enthusiasts who may stay and explore the incredibly beautiful but diverse animals. You will get the opportunity to view Indian Bison, Sambar Deer, Indian Peafowl, Malabar Giant Squirrel, a variety of deer, and snakes, among other animal species.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Old Forts to Visit</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Portuguese used to control Goa. As a result, you can see Portuguese buildings and architectural influences across the city. In the region, you may come across several old yet lovely designs. Goa’s architecture is a mix of Goan, Ottoman, and Portuguese influences. Many churches and residences show a prominent feature of the Portuguese style of architecture due to Portuguese control and governance for four centuries.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Though modern temple design is an amalgamation of traditional Goan temple design with Dravidian, Hemadpanthi, Islamic, and Portuguese architecture, Goan Hindu dwellings exhibit little Portuguese influence. The Aguada Fort, Chapora Fort, Terekhol Fort, and Cabo Fort are the most well-known historical sites in Goa. Each of these structures has an own personality to offer you.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Just make sure you set aside some time for each one. Almost the majority of these forts are located along the seashore. These forts were once used to house captives, store enormous ship tanks, and so on. Paying a visit to these historical forts is a terrific way to have a first-hand experience of each of them.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Eat mouth-watering meals and enjoy the drinks</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is at its best when it comes to serving delectable cuisine. In Goa, you must try the local cuisine. We may satiate our appetite at a variety of eateries, food vendors, and street corners. The finest </span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">things to do in Goa</span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> is to savor the delectable cuisine. Just make sure you’re having fun while eating any of these delights. The region is known for having some of the world’s tastiest and most delectable cuisines.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are several locations where you may enjoy some of the tastiest and most delectable cuisines. Some of the meals served in Goa are an excellent opportunity to immerse yourself in the local culture. The finest venues to acquire some of these meals will be recommended by your local tour guide and a travel agency. If you’re a vegetarian, you’re in even better shape. The majority of Indians are vegetarians, therefore there are many vegetarian cuisines to choose from.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Feni is Goa’s most popular alcoholic beverage; cashew feni is manufactured from the fermentation of cashew tree fruit, while coconut feni is manufactured from toddy palm sap. Urrak is another indigenous alcoholic beverage made from cashews. It is worth trying.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Have a good day exploring adventurous activities</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa can provide you with thrilling and exciting water rides if you are a thrill-seeker. The vast choice of daring water sports that draw swarms of tourists from all over the world each year is one of Goa’s main attractions. Almost everywhere in Goa, there are a variety of water sports to select from.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Surfing, water scooters, scuba diving, water skiing, snorkeling, dinghy sailing, jet-skiing, boogie boarding, and deep-sea fishing, as well as parasailing, windsurfing, speed boat, and banana boat excursions, are all popular activities for visitors to this gorgeous and vibrant location. Water sports are typically closed during the rainy season because they are too dangerous.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paragliding is a thrilling and exciting activity for adrenaline seekers. Paragliding is available at Arambol beach in north Goa for 3,000 INR per hour. There are also journeys with a shorter time. After some basic lessons and a safety check, take off and glide softly up into the sky, assisted, of course, by your instructor. The flight will take off from a cliff between the beaches of Arambol and Harmal. View stunning views of the sea, cliffs, beach, and Goa countryside.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Take an interest in the culture</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dekhnni, Fugdi, Corridinho, Mando, Dulpod, and Fado are traditional Goan art forms. Tiatr is a popular social event among Goan Catholics (Teatro). Music is ingrained in Goan homes as a result of its Portuguese heritage. It is well acknowledged that Goans are born with musical and athletic abilities. Most Catholic religious and social occasions include the use of Western musical instruments such as the piano, guitars, and violins.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Natak, Bhajan, and Kirtan are popular among Hindus in Goa. Mogubai Kurdikar, Kishori Amonkar, Kesarbai Kerkar, Jitendra Abhisheki, and Pandit Prabhakar Karekar are just a few of the great Indian classical vocalists from Goa. Goa is also recognized for being the birthplace of Goa trance.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Apart from tourist attractions, list of </span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">things to do in Goa</span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> involves the most thrilling experiences that includes fairs and festivals. Christians are the majority in Goa. Some Hindu festivals, on the other hand, enhance Goa tourism. When it comes to festivals, Goa has a lot to offer visitors.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa Carnival, Sunburn Festival, Christmas, and Sao Joao Festival, among others, are well-known fairs and festivals. As you have a deeper knowledge of the locals, you can participate in any of them. These events will also aid in your understanding of the local culture.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the distinctive elements of Goan villages is the bar culture, where a local bar acts as a gathering place for locals to unwind. Goa also boasts a thriving wine industry.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Look for places to worship</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa, as is well known, is a mostly Christian city. There are several gorgeous churches to see while in the city. As a result, you will not miss an opportunity to contact your creator while learning about people\'s way of life. UNESCO has designated several of these churches as world-historic monuments.&nbsp;&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The churches’ architectural styles are reminiscent of bygone eras. Se Cathedral Church, Basilica of Bom Jesus, St. Cajetan Church, and others are well-known churches in Goa. Plan to visit one or two churches to have a better understanding of Goa’s history and religion. Certain of these churches are rather old, dating back to the 15th century in some cases.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When you arrive at these cathedrals, you will be surrounded by a large number of other visitors. If you’re lucky, you might be able to catch up on prayer sessions and even join them. As a result, don’t expect to be the only one exploring the region. These churches and temples have a great deal of Indian heritage. They contain vital knowledge and lead to ancient India, as well as providing excellent spiritual nutrition.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Try your luck in casinos</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Gambling is permitted in only one state in India: Goa. Roulette, slots machines, Indian Flush, poker, blackjack, baccarat, and more games are available to play. There includes live music and dancing, Russian dancers, stand-up comedy presentations, and children’s amusement zones. Some of the most well-known brands are Deltin Royale, Casino Paradise, Deltin Jaqk, Casino Carnival, Casino Pearl, Casino Pride, and Casino Paradise.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The casinos are open all year, although the winter months are the most popular. The majority of them are on-board casinos. Casino games are also available at a few land-based private resorts.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Further, Goa is known for its casino cruises, you may enjoy being in a casino. Machine-operated casinos are becoming increasingly popular in Goa. Men are the majority of those who frequent these casinos. Although gambling is not very popular in India, Goa features several onshore and offshore casinos for travelers who wish to try their luck.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Conclusion</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Despite its modest size, the state is one of India’s wealthiest, owing in major part to tourism. More than 80 miles of coastline and India’s most sophisticated mass-market tourism business are the main attractions: Indian culture is given a Goan twist, and unusual foreign habits are tolerated more freely in Goa than elsewhere in India. However, if you dig a little deeper, you’ll discover a wealth of culture and history, as well as some seductively accessible nature.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The top ten </span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">things to do in Goa</span><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> while you visit are listed above. So, for a wonderful and opulent vacation, choose a fantastic India trip. Plan your schedule wisely so that you may see as much of Goa as possible. You’ll realize that Goa has a lot to offer you. For the ideal experience, you’ll need to set aside adequate time and money.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#0e101a;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:12pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:12pt;\"><span id=\"docs-internal-guid-fcacb130-7fff-2008-5cc2-c24f7fd3a457\"></span><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">\r\n</span></p>',NULL,'2021-05-26 11:09:13','2021-05-26 11:09:13',NULL,1,'',0,0,'things to do in Goa','Looking for the top things to do in Goa? Your search ends here. Read this blog to know where\'s the fun and the party hotspots.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(85,'Best Beaches to Visit in Andaman','best-beaches-to-visit-in-andaman','1623144967_blog.jpg','1628764555.jpg',NULL,'Aniket Agarwal','2021-05-21',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify;line-height:\r\nnormal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;color:#0E101A\">Andaman, the city of\r\nbeaches, has the most serene, composed, and tranquil beaches which will soothe\r\nyour mind and rejuvenate your soul.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify;line-height:\r\nnormal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;color:#0E101A\">Your search for the\r\nbest beaches to visit in Andaman will conclude at Andaman as it is known to be\r\nthe most charming place one can ever visit. The city is well known for\r\nhoneymooners and remains packed with tourists during the peak season. Reposeful\r\nbeaches in and around the city of Andaman make it a perfect place to visit.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Among many beaches in Andaman, one of the most\r\npopular and most clean beaches is the Radhanagar beach which is situated on\r\nHavelock Island. This beach is known for having various water and other\r\nactivities such as scuba diving, paragliding, swimming, snorkeling, fishing,\r\nand others.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Another beach located in the city of Havelock\r\nis the Elephant beach which can be endeavored by a 30-minute trek via jungle or\r\nthrough a boat ride. This beach is known for marine biodiversity, exotic coral\r\nreefs, and many more exciting pursuits.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">So, till now you might be thrilled and want to\r\nexplore this amazing place all by yourself. Of course, you should. This is just\r\nthe beginning. We have many more interesting facts and places to share with you\r\nso that you can know this pleasant place more comprehensively before your\r\nvisit.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">So, what are we waiting for?</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Let’s move on!</span><span style=\"font-size:\r\n9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">1.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Radhanagar Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">So, beginning with the best beaches to visit\r\nin Andaman, Radhanagar beach which is located on Havelock Island is a perfect\r\ndestination for you to spend time with your loved ones. There’s a point in life\r\nwhen you tend to feel like escaping to a holiday-like destination and hence the\r\nshining sands, extravagant palm green trees, turquoise water bays and casual\r\nwalks with your special someone makes this beach a worthy visit place.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach has been granted the title of\r\nAsia’s best beach along with the 7th best beach in the world. It is one of the\r\nmost spectacular beaches in the world and is hugged by coconut and pine trees.\r\nThis beach is full of relaxation and peace for visitors.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best Time to reach Radhanagar Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach is ideally good for those who are\r\nunderwater divers and in search of good weather for enjoying water activities.\r\nSo, a good time to visit this beach is between March to May as, during these,\r\nthe weather conditions are not too harsh and hot so the temperature remains\r\nfavorable.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">2.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Kala Patthar Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Your&nbsp;<b><a href=\"https://www.ineedtrip.com/tour-destination/andaman-and-nicobar-islands/\">tour to Andaman</a></b>&nbsp;would\r\nbe partial if you do not plan to visit Kala Patthar beach, located in the\r\nHavelock Islands in Andaman. People come here in search of peace and harmony.\r\nThe quietness of this place makes it a good fit for introspection.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach has a contrast of two colors, black\r\nand white, with having white sandy shores along with black boulders, it is a\r\nperfect scene of tranquility.</span><span style=\"font-size:9.0pt;font-family:\r\n&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:\r\n&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Moreover, if you are here with your family,\r\nyou can plan a picnic by the shores of this forsaken beautiful island.\r\nRejuvenate your soul, far away from the crowd, feel the eye-pleasing panoramic\r\nillustration and witness this mesmerizing feeling.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Kala Patthar beach is a perfect beach\r\nespecially for nature lovers or admirers, exhausted souls, and tourists.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">For those who want peace all alone with\r\nthemselves and follow the path of self-discovery, this beach is just like a\r\nsecond home.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best time to visit Kala Patthar Beach</b></span><span style=\"font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">The best month to visit this serene beach is\r\nin the spring season. Usually between February to March and October to\r\nNovember. Why? Because during these months the temperature usually sticks\r\nbetween 20-30 degrees Celsius which is a pleasant one to explore the beauty of\r\nthe place.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Also, the beach is neither so hot nor so cold\r\nduring these months, the weather remains crisper, calmer and perfect for having\r\na relaxed holiday.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">It is to be noted, to avoid travel to this\r\nplace from July to September as the waves are menacing during this time. Due to\r\nviscous weather conditioners, flights may get canceled, road services may get\r\nblocked so you ultimately be wrecked somewhere.</span><span style=\"font-size:\r\n9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">3.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Elephant Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Another famous beach located in Havelock\r\nIsland is Elephant beach. This beach just takes 20 minutes to reach by ferry.\r\nThis beach is completely away from man-generated pollution and is tidy enough\r\nto fall in love with its crystal clean shores.</span><span style=\"font-size:\r\n9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach doesn’t stay open or accessible for\r\nthe whole day long so it is advised to plan your visit in the first half of the\r\nday to spend more and more time on the charming sandy shores.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">You must enjoy all the activities which this\r\nbeach has to offer. It includes water sports for water babies (for which\r\nAndaman is famous), swimming, kayaking, and fishing. It also has accessibility\r\nto underwater activities so that you can be a part of deep-sea life and look\r\naround coral reefs, colorful fishes, turtles, and many more such creatures.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best Time to visit Elephant Beach</b></span><span style=\"font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">The best time to visit this beach comes in\r\nsummers and winters. So, if you are someone who loves chilly weather and foggy\r\ndays, the months of November to March would be an ideal time for your visit.\r\nHowever, if you feel like seeing this pleasant city in the golden sun, then you\r\ncan opt to visit from April to June.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">4.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Chidiya Tapu Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">If you are a bird lover and love to observe\r\ndifferent varieties of birds, Chidiya Tapu Beach is especially for you. This\r\nbeach is a place like heaven for bird lovers and hence birds from different\r\nplaces migrate here, creating a temp for the visitors.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">These birds cover the sky with their beautiful\r\nfurs creating a design in the sky, a treat to the eyes.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach has a rich and alluring underwater\r\nsea life-giving an ultimate sporting option to sports lovers. From scuba diving\r\nto getting caught in the whirlpool of colorful fishes, this beach proves to be\r\na divine tourist destination.</span><span style=\"font-size:9.0pt;font-family:\r\n&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:\r\n&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Now, coming to those who do not know how to\r\nswim. The island has an option of beach walking and playing non-sea sports like\r\nbeach ball, volleyball, and others giving an ultimate option to everyone.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best Time to Visit Chidiya Tapu Beach</b></span><span style=\"font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">An ideal time to visit this beach is in\r\nOctober to April as around these, the island remains in a pleasant mood and\r\nenjoyable.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">It is recommended not to visit this beach\r\nduring hot summers, mainly between May to July as the sand turns balmy and due\r\nto harsh weather conditions, roads are empty and the birds and other animals\r\nretreat to their jungles in search of cool weather.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">5.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Wandoor Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This beach is located near Port Blair and is\r\namong one of the most beautiful beaches in Andaman. This beach is known for its\r\nquietness, calmness, and tranquility. It offers a serene environment along with\r\ncrisp sounds of pristine waters.</span><span style=\"font-size:9.0pt;font-family:\r\n&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:\r\n&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">It is a good place if you are planning for a\r\nsunbath or craving for a swim day. The clear blue water under the open sky\r\nmakes it a perfect swimming destination.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Along with that if you love marine life, head\r\ntowards Mahatma Gandhi Marine National Park, which is situated right along with\r\nthe beach. This is a man-made destination that has a wide variety of maritime\r\ncreatures for you to glance at. The vibrant colored starfishes, along with\r\ncrocodiles and turtles make it a perfect hub for marine lovers.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Enjoy relaxing weather with adventurous rides\r\nand flavorful dishes along with the beach.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best time to visit Wandoor Beach</b></span><span style=\"font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">One of the best beaches to visit in Andaman is\r\nthe Wandoor beach. It is a place which can be visited round the year as this\r\ndestination is filled with mild temperatures so there are no such harsh weather\r\nconditions over here.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">However, during the monsoon season between\r\nJune to September, the place witness’s heavy rainfall, so if you can avoid it\r\nduring these months, it would be a nice idea.</span><span style=\"font-size:\r\n9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Other than that, the temperature remains\r\nfavorable during the summer season, between March to May, which makes it among\r\nthe best beaches to visit in Andaman.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">During the winter season, the temperature\r\nfalls between 15-34 degrees Celsius which is neither extreme cold nor extremely\r\nhot, so visiting this beach from October to February would be a good idea.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">6.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Lalaji Bay Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">The pride of Andaman, Lalaji Bay beach is situated\r\non the coast of the Island. It is gathered with lush greens along with peaceful\r\nvibes, making it a gorgeous destination to visit. For those, who love to be\r\naround the crowd and enjoy the activities with different people, Lalaji Bay\r\nbeach is especially for them.</span><span style=\"font-size:9.0pt;font-family:\r\n&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:\r\n&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">You will get to view attractive carroty\r\nsunsets and dolphins heading back to the sea, which is a perfect treat to the\r\neyes.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">You can trek or even hire dunghi which make\r\ntheir way through the dense jungles to set foot on the beach.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">There are numerous activities here on this\r\nbeach including, swimming, snorkeling for the ones who are on their adventure\r\ntrip. You can hold on to a sunbathing chair and glance at the waves crashing on\r\neach other. Various activities here along with natural views keeps one busy and\r\noccupied.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">However, you might face difficulty in finding\r\neateries over here as there are limited food stalls at this beach. So, make\r\nsure you bring your food here or do not come empty stomach here.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:-.25in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Best\r\ntime to visit Lalaji Bay beach</b></span><span style=\"font-size:10.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">The temperature here at this beach is\r\ncompletely amusing. During the summer season, between April to June, it ranges\r\nbetween 25 to 35 degrees Celsius.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">During the monsoonal season, from July to\r\nSeptember, the area gets reasonable showers making it a great destination for\r\nholidaying.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">7.</span></b><span style=\"font-size:12.0pt;\r\nfont-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#0E101A\">&nbsp; &nbsp; &nbsp;&nbsp;<b>Vijay Nagar Beach</b></span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">If there’s a heaven on this planet, it’s\r\nnowhere else than the Vijay Nagar beach which is situated in the Andaman.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This is a place where you can witness the\r\nbackwoods of the miraculous sunrise and sunsets. This beach is not crowded at\r\nall, you will only see some solo trippers with tanned faces and backpacks on\r\ntheir shoulders, who came here to establish a direct connection with heaven.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">This place is a divine destination to sit\r\nback, read a book, nap and give your soul a powerful retreat.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size: 12pt; font-family: &quot;Calibri Light&quot;, sans-serif; color: rgb(14, 16, 26);\"><b>Best time to visit Vijay Nagar Beach</b></span><span style=\"font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;color:#ED3237\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">So, we’ve gathered an itemization of the\r\nprevailing weather conditions in the area so that you choose the right time to\r\nembark on this beautiful destination.</span><span style=\"font-size:9.0pt;\r\nfont-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">During the months of March-May, the climatic\r\nconditions are neither too hot nor too humid. This is the perfect time to enjoy\r\nwater activities.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">During monsoon, that is between June to\r\nSeptember, the temperature remains substantial. However, adventurous activities\r\nare on hold during these months to avoid any kind of mis-happenings.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Therefore, an ideal time to revive this\r\nbeautiful destination is during the winter season, between November to\r\nFebruary. During these months, almost all the water activities are on their\r\nfunction and it is also a romantic cadence for honeymoon couples.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><b><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">Final Takeaway</span></b><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">If you are in search of a relaxing vacation\r\nand looking to escape from the monotonous stressful life, Andaman Beaches would\r\nsurely give you a wholesome treat with pleasurable evenings, deep-sea clean\r\nwater swimming, and exotic experience with birds’ whispers. The serene and\r\nrelaxed environment would be pleasing and at the same time, exciting for the\r\neyes.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">So, with this, we’ve arrived at the end of\r\nthis content. We hope to have served you with everything related to this\r\ncontent.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-top:12.0pt;margin-right:0in;margin-bottom:\r\n12.0pt;margin-left:0in;text-align:justify;line-height:normal\"><span style=\"font-size:12.0pt;font-family:&quot;Calibri Light&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:\r\n&quot;Times New Roman&quot;;color:#0E101A\">We will be back with more such interesting\r\ntopics.</span><span style=\"font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;\r\nmso-fareast-font-family:&quot;Times New Roman&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;text-align:justify;line-height:\r\nnormal\"><br></p><p></p><p></p>',NULL,'2021-05-26 19:05:35','2021-05-26 19:05:35',NULL,1,'',0,0,'Best Beaches to Visit in Andaman, Andaman Tour, Andaman Package, Book Andaman Package, Tour To Andaman.','Looking for the best beaches to visit in Andaman? Your search ends here. This blog has the list of best beaches to swim, sunbath, enroll in watersports & more.','Best Beaches to Visit in Andaman | Andaman Island','[\"149\",\"148\",\"147\",\"146\",\"145\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"27355, 27352, 27349, 27346, 27331\"]}'),(86,'10 best things to do in Uttarakhand','10-best-things-to-do-in-uttarakhand','1623661777_blog.jpg','1628764375.jpg',NULL,'Aniket Agarwal','2021-05-28',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Uttarakhand is nature\'s best work. The beauty and serenity of this place compel tourists to plan a tour here at least once in a lifetime. The site comprises an array of different activities including, adventure, spiritual, inner healing, romantic spots, which makes it a must-visit place for adventurers. People usually refer to Uttarakhand as \"Devbhoomi\" as it comprises spiritual places of Hindu pilgrimage such as Haridwar and Rishikesh.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you ready to explore these beautiful places in detail?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Yes?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Then what are we waiting for?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Let\'s get started!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Now, Let\'s gear up to know the 10 best things to do in Uttarakhand:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1.&nbsp; &nbsp; &nbsp; River Rafting in Rishikesh</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you an adventure baby? Well, if your answer is Yes, then surely this place is just for you.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Adventurers and Rishikesh have a golden bond. Those who love to enjoy adventurous activities choose to visit Rishikesh. Why? Because, this place is full of water and other physical activities that can boost up your adrenaline rush. It is one of the most popular adventure destinations in India. So, if you are visiting Uttarakhand, do not skip going to Rishikesh; otherwise, you\'ll miss a chance to glimpse the charm of the Himalayan foothills.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The main activity which is carried in this city is River Rafting. Normally, around three stretches of river are open for the rafting activity, ranging from 9 km to 26 km area. So, if you are an adventure baby and willing to try the hardcore adventure, Rishikesh is surely your place.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">People visiting Rishikesh either are pilgrims or tourists who would love to explore the adventurous side of the city.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">However, the most preferred rafting route is from Rishikesh to Brahmpuri, which is just 9 km long and the shortest route available. A large number of people prefer this route as it consists of amazing abodes of beautiful scenes.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The next famous route is from Rishikesh to Shivpuri, which is 15 km long. Plus, if you are a pro adventurer and want to add an extra thrill to your rafting experience, you must opt for the longest route starting from Rishikesh to the Marine Drive route is 25 km long.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">What is an Ideal time for Rafting?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">All the seasons except the monsoon season ( from June to September), are best for gaining rafting experience.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">During Monsoon, the waves are at a peak which can be risky, so ideal months of rafting lie between February to May, and in the winters, October and November witness the highest number of rafters.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Cost of Rafting</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The cost of Rafting might range between INR 500 to INR 3000, depending upon the season and other parameters.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2.&nbsp; &nbsp; &nbsp; Jim Corbett National Park</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the oldest parks in India is the Jim Corbett National Park, which is nestled in the foothills of the Himalayan ranges. This place offers exotic flora and fauna which is why tourists love to explore this happy place. Along with that, tigers and leopards are the main attraction of this place, so your kids can enjoy and have fun at this destination. One who visits this city always comes to this place to witness the natural habitat as it\'s one of the best things to do in Uttarakhand.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Jim Corbett National Park was established in 1936, and it was anciently known as the Hailey National Park, but later the name got changed. This park is largely famous as it has the Royal Tiger of Bengal to witness its densely populated habitat.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The exact location of the park is alongside the Ramganga River in Northern India. The total number of species surrounding the park is somewhere around 600. The park is spread across a large area of 500 sq km and under different terrains. The existence of luxurious resorts around the park makes your stay comfortable.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Another main attraction to visit Jim Corbett National Park is the Jungle Safari. Tourists need to book the safari ride previously for any zones they would like to visit, among Bijrani, Jhirna, Dhikala, Dhela, and Durgadevi. Pre-booking the Safari is a must so that you don\'t miss out on the fun due to the non-availability of tickets at the same time. There are two-time slots assigned to Safari, mainly the Early morning Safari and the Evening Safari. Why? Because tigers are most active during this period and go out searching for food during these hours of the day. However, the jungle safari\'s prices may vary for Indians as well as for foreigners.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">What is the most suitable time to visit Jim Corbett National Park?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Depending upon your purpose of visit, there are certain time frames for different activities. If you plan your visit to the park for sighting tigers, summers would be an ideal season for your visit. On the other hand, if the purpose of your visit to this park is to sight birds, winters would be the perfect time to visit. Apart from this, visitors can plan their holiday during the monsoon season too as it\'s pleasant out here.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.&nbsp; &nbsp; &nbsp; Tiffin Top, Nainital</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Among various spots in Nainital, Uttarakhand, this spot is the most loved spot by tourists. As the name suggests, tiffin top means that people usually come here to have their food or have a small picnic outing with their family. It is a crowded place in the peak season. Kids can play games like badminton, football, and other sports here in this park while enjoying the stunning view of the Kumaon hills.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, if you are searching for some good places from the picnic point of view, then Tiffin Top is your destination.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit Tiffin Top</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">An ideal time to visit the Tiffin top is during favourable climatic conditions. There\'s no such restriction in visiting this place.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4.&nbsp; &nbsp; &nbsp; Kempty Falls, Mussoorie</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you looking around for some fun in the water? Eh! Head towards Kempty Falls, a waterfall that is most popular in the state of Uttarakhand. Tourists visiting Mussoorie always strike this vibrant place as it is the most prominent waterfall in India. This waterfall is edged with a high mountain cliff. This is a pristine waterfall that is present in Mussoorie. It is mainly located at the Dehradun highway and presents a beautiful cascade of water that looks like that of a milky way galaxy when it falls from a height of 40 feet. Kempty fall is surrounded by high mountain peaks and is nestled at over 4500 ft above sea level.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The view present here around this waterfall is serene and panoramic. Do not forget to take your lenses to capture the mesmerizing view of nature. People usually visit this fall for swimming and chilling as the pond at the bottom of the waterfall is an excellent spot for these activities.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kempty Falls is located at a distance of 30 minutes from the city of Mussoorie, so you\'ll have to hire a private taxi or book a bus to reach this destination. The journey from the hotel room to kempty falls is itself a fantastic treat as it includes lush green sceneries with an amazing jungle view.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Also, if you plan to swim or take a quick bath at the kempty falls, you don\'t have to worry about where to change your clothes after a bath. Many changing rooms and washrooms are made available to the general public to avoid any inconvenience to the tourists.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">· What\'s the ideal time to visit Kempty Falls?</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Of course, the ideal and the best time to visit damp places is during the summer season between March and June as the weather is favourable and you can easily enjoy swimming activities here. Also, avoid going here in the monsoon season as the flow of water might be heavy, proving to be risky.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; Cost of Ticket</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">No entry tickets</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; Daily Timings to visit</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Between 08:00 am to 05:00 pm.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5.&nbsp; &nbsp; &nbsp; Sonprayag</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you on a spiritual visit and searching for the famous holy places to visit in Uttarakhand? En route towards Kedarnath Dham comes Sonprayag, which is located between Gaurikund and Rudraprayag. Sonprayag is a wonderful place, and people believe that just a dip in the water can lead them to the doors of Moksha. So, you can surely head towards this place and offer your prayers to this divine destination.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6.&nbsp; &nbsp; &nbsp; Valley of flowers</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Valley of flowers is located in the city of Uttarakhand and is famous for its floral diversity. So, you can surely plan a day here. As the name suggests, the Valley of flowers, it\'s completely like that of a valley with the accomplishment of beautiful flowers around. Photo freaks or photojournalists usually visit this place to capture the tranquillity of the site. It is mainly located in the Chamoli district of Uttarakhand, and we are sure that these things to do in Uttarakhand would make you realize why this place is like a dream destination for all.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Uttarakhand is regarded as the Dev Bhoomi, or the land of Gods, as it is famous for its Char Dham Yatra consisting, Gangotri, Yamunotri, Badrinath, and Kedarnath.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This place is home to around 500 varieties of flowers that engages everyone in love for nature.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The quality of flowers has attained this destination to a status of a National Park and made it a UNESCO World Heritage Site.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit Valley of Flowers</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Valley of flowers is all surrounded and covered by snowfall at the end of May. So, from May end till the September end, it is an ideal time here.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Also, please note that the authorities placed some restrictions for setting a temporary or a permanent camp. However, you can trek here for as long as you want.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7.&nbsp; &nbsp; &nbsp; Neelkanth Mahadev Temple, Rishiksh</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Rishikesh is well known for its many famous activities; it is a divine destination and consists of the famous Neelkanth Mahadev Temple. It is located at a distance of 32 km away from the city of Rishikesh. It witnesses large crowd gatherings at the time of Shivratri when thousands of followers gather here to offer their prayers.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit Mahadev Temple</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The temple remains open throughout the year as people come here to offer their respect to God. However, it is feasible to visit this temple at the time of Shivratri.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">8.&nbsp; &nbsp; &nbsp; Camping in Kaudiyala</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Rishikesh is an amazing adventurous destination with thrilling activities such as river rafting, bungee jumping, rock climbing, rappelling. Moreover, one should not miss the chance of camping in Kaudiyala. Amidst the beautiful Himalayan ranges, it is a complete dose of adventure which cannot be explained in words. Unlike Haridwar, Rishikesh is a place that has camping activities, and Kaudiyala is among one of them. Lush greens surround this place with a thick and dense forest area which may be your next selfie destination.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">However, if you are travelling towards Kedarnath, you must travel via Kaudiyala as it is in between your passage.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are spending a night in the camps of Kaudiyala, just not forget to set up a bonfire, which is a must when you\'re camping.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit Kaudiyala</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The best time to visit Kaudiyala for camping is between February to May and September to November to attain a lifetime experience with the same. However, if you want to visit Kaudiyala in the monsoon season, you can, but only if you are among those thrilling enthusiasts who wish to explore nature with wild adventure.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">9.&nbsp; &nbsp; &nbsp; Skiing in Auli</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Do you want a vacation full of snow-capped peaks and perfect selfie spots with an overwhelming destination that can absorb your stress and heal your soul at the same time? Well, if your answer is Yes, Auli is the perfect place to head to. Auli is a beautiful and serene hill station in the Chamoli district and has the best things to do in Uttarakhand. The beautiful hill station of Auli is surrounded by the dense tropical forests of Deodar and Oak. Cool-weather is surrounded at this place for a whole year. The site offers a panoramic view of the spectacular Himalayan view like Nanda Devi, Dunagiri, and others. This hill station is not so crowded, and hence it is one of the less explored hill stations of the country.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Skiing is the famous adventure sport of this place and is the dream location for beginners to start their journey.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Along with skiing, many other adventure sports such as rope lift, snowball fights, cable car rides, and others.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit Auli</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Though Auli can be visited throughout the year, the best time to visit Auli is between May to November as, during these months, the climate is cool and pleasant for tourists.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">10.&nbsp; High Altitude Zoo, Nainital</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Have you ever seen a tiger roaring from near? No, right? Plan your visit to Nainital Zoo, also known as the High Altitude Zoo. It was established in 1984 and is located on the Sher ka Danda hill in Tallital, Nainital. This is the most loved tourist spot by the visitors as it is the home to many endangered species. Usually, the ones who have come here to holiday with their families are the ones who mainly visit the zoo. Why? Because children love to visit zoos and glance at their favourite animals. Kids have learned about various animals in their school\'s books, so they are curious to see those animals closely.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">·&nbsp; &nbsp; &nbsp; &nbsp; The ideal time to visit the High-Altitude Zoo</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The zoo is closed only on Mondays. Rest from Tuesday to Sunday; it is open from 10:00 am to 4:30 pm.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Final Takeaway</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Owing to this beautiful tourist destination, we have come to the end of this article. We discussed everything essential from a tourist point of view as some people head to this place for multitudinous adventure activities while others search for heaven or Moksha. This divine destination comprises a mixture of ethnicity and thrill.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Uttarakhand is a place for people of all age groups. Kids can enjoy themselves in the zoo, whereas, those who want some thrilling adventure can pack their bags and move to this city to explore varieties of rides. Along with that, this is the divine destination of the Country, so pilgrims from all over the World come to this place to offer their prayers to God.</span></p><p><span id=\"docs-internal-guid-44e3e080-7fff-3bb5-bf9f-d5d89cc5040f\"></span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Uttarakhand promises you a plethora of thrilling yet harmonious activities for you, awaiting!</span></p>',NULL,'2021-06-02 22:17:49','2021-06-02 22:17:49',NULL,1,'',0,0,'things to do in Uttarakhand','Want to know what all you can do in Dev Bhoomi Uttarakhand? FInd out in this blog to the best things to do in Uttarakhand.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(87,'Top 7 Dishes to try in Goa','top-7-dishes-to-try-in-goa','1625841655_blog.jpg','1628764302.jpg',NULL,'Aniket Agarwal','2021-06-03',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Top 7 Dishes to try in Goa</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Goa is a beautiful tourist place that never fails to stun its visitors. This small town is tucked away on the west coast of India along the seashore of the Arabian Sea. One of the amazing things about the place is its wide range of spices that turn any dish into the most lovable dish. In fact, this is the main reason why tons of people get attracted to the place.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The history behind such diversity in cuisine is that over 500 years ago, some Portuguese sailed to this area and converted it into the motherland of varieties of spices. Thus, in Goa, you can literally get delicious spicy dishes with an Indian touch to them along with Mellow European influencers.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Not many are aware that Goa is a world-famous tourist destination not just because of the location but also for the delicious seafood cuisines. So, you can get several varieties of items of Prawns, lobsters, mussels, ladyfish, oysters, clams, and crabs, which you will not get enough of. Truly, the versatility in the Goa dishes is what makes the place more interesting and flavorful.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you planning to travel to Goa? If you are, then there are some cuisines in Goa that you should not miss out on. For example, the specialty of Goa like Pork Vindaloo, Coconut Prawn Curry, Sorpotel, etc. There are many others that are discussed in detail below.</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;Top 7 dishes to try out in Goa&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Coconut Prawn Curry</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a special, highly satisfying dish and is extremely mouthwatering. As per the name sounds, this dish is just like that. It includes freshly steamed prawns and coconut water which is added to the dish at last. The color of this dish is really attractive, and it has a creamy texture. Moreover, it is served in a beautiful bowl, \"Kadai,\" and beautifully garnished with some fresh coriander leaves. This is a really flavorful and colorful dish which you must try.&nbsp;&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Pork Vindaloo</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Vindaloo curry is a common and most famous form of dish found in Goa. The name Vindaloo is derived from a Portuguese dish name \'Carne de Vinho e albos’, commonly known as Vinegar and Garlic. This dish requires any meat tossed with wine and garlic and eventually topped with some spices. The spices of this dish are prepared by mixing the chilies, garlic, vinegar with other herbs. This mixture has to be stored overnight, and then only it will release its aroma and essence.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chicken Cafreal</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chicken Cafreal is also another favorite Goan dish. This is quite famous as those who have a seafood allergy prefer this. The color of this dish is greenish, and another specialty of this dish includes an immense amount of flavors and species, making it a mouthwatering dish. In addition, there are whole spices, along with herbs and green chilies. The chicken of this dish is dipped in pre-made spices and is simply fried. This goes very well with salads and drinks.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Xacuti Chicken</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This dish is another Portuguese-influenced dish that is also very famous on the beaches of Goa. The dish contains some special herbs that include Poppy seeds and Kashmiri red chilies. It is a plain curry dish, and the curry includes potatoes, onions, coconuts, chilies containing other varieties of spices. The Kashmir red chilies are added to this dish to add color and spicy flavor in this dish. Most of the tourists find this a very attractive dish and thus it is quite a popular dish in Goa.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sorpotel</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a famous traditional Goan food, and the term soro is derived from a \'Konkani\' word which means liquor or alcohol. Sorpotel is also commonly known as Sarapatel, is the most demanded food of Goa. Several ingredients are used to make this delicious, mouthwatering dish. Moreover, the main ingredients are pork, beef, and meat liver. The fat of the meat is fried, and the meat is pre-boiled. This dish further includes Onions, garlic, and several other spices, which is gradually added to the main ingredients. You can consume this anytime, but normally a person prefers this as a breakfast platter.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Shark Ambot Tik</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Ambot means sour and spicy. This dish is exactly the same as its name suggests. It is a sour and spicy dish and one of the most flavored dishes available in Goa. Shark Ambot Tik is a Portuguese-influenced dish and is also quite famous in the whole Goa. This dish is mainly created with the help of shark fish which is the main ingredient of this dish. The flavors of this dish are so vibrant, along with the rich aroma. Thus, the platter not only looks divine but smells divine too. Plus, the shark fish is well cooked with onions and tomatoes.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\" role=\"presentation\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bebinca</span></p></li></ol><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">In the previous dishes, you have seen all heavy, spicy famous platters. But here, we have covered a famous Goan dessert commonly known as Bebinca. This dessert is loved by almost everyone and is the highly demanded desert of Goa. Well, dessert is something that everyone gets attracted to, and this platter is capable of blowing anyone\'s mind. This is a multilayered cake made from coconut milk, sugar, eggs, and flour. Also, it has a very beautiful coconut flavor. This cake needs a lot of hard work as the baking of the cake is done layer by layer before lining. Moreover, the middle layers are caramelized sugar layers that add a hell of many kicks to the dish.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Conclusion</span></p><p dir=\"ltr\" style=\"line-height:1.2;margin-top:14pt;margin-bottom:14pt;\"><span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You already know that Goa is a beautiful place with amazing views including various adventure sports. Also, this is an attractive tourist spot. So it is natural, several tourists will visit the place every year. But now you know that the food quality is also enough to attract tourists towards this destination. There are several things that you can try, and the price is super affordable. So, if you plan to visit this beautiful place, you can think of trying the above-mentioned dishes and enjoy the trip without the fear of missing out on the specialties.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span id=\"docs-internal-guid-028682e5-7fff-2d20-8ea3-3d09a1c5138b\"><br><br></span></p>',NULL,'2021-06-09 23:40:49','2021-06-09 23:40:49',NULL,1,'',0,0,'best dishes to try in Goa','Looking for delicacies to try in Goa? Check out this blog on the best dishes to try in Goa.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(88,'Top 7 things to do in Kerala','top-7-things-to-do-in-kerala','1625836860_blog.jpg','1628764151.jpg',NULL,'Aniket Agarwal','2021-06-08',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Kerala, situated in South India is among the most popular places in India. It is famous for coconut trees, beautiful landscape views with a wide variety of flora and fauna, romantic cruise rides, some great beaches and much more that make this city a great place to visit. Today we are going to have a quick tour of the city of Kerala. We are going to enhance everything which the city is famous for so that it becomes easier for you to locate each and everything out there.</span><br></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b><br></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Are you Ready?</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, buckle up your shoes and let’s get started!</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. &nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Munnar: Mainly famous for Tea Vegetation</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you a tea-lover? Or do you want to witness the processing of tea and taste out your favorite tea right from the tea grounds? Well, if your answer is Yes, Munnar is a must-visit place for you. If you are in the city of Kerala, visit Munnar which is just 3 hours away from Kochi.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The specialty of the place is Tea cultivation. Go through the hills of Munnar to witness the Tea Museum which is the main attraction of the place. It will give you a lifetime experience of how tea is planted, cultivated, and processed. We are sure you would surely like the Tea journey if you are an ultimate tea-sipper.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The place is also an ideal destination for shopaholics. Not only tea, the city of Munnar includes an ultimate collection of tea and spices.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">In need of some good hygienic spices like ginger, clove, pepper, or anything? Visit Munnar-the city of Tea while on your trip to Kerala.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Best time to visit Munnar:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> November to February</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">2. &nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Shikara Rides at Alleppey</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Do you want to enjoy a peaceful time with your loved ones? Away from the hustle and bustle of your everyday life. Shikara rides in Alleppey are the ultimate escape for you. From the birds chirruping to looking at the pine trees and coconut trees from the shikara boat; this place is more focused on providing you a peaceful and calm environment.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Alleppey is around 4 hours away from the city of Thiruvananthapuram and offers great and charming views with an array of birds, lush green gardens, and high mountain peaks.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are willing to enjoy a longer ride, double-deck boats are the best option.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b><br></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Cost of the ride:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Rs 600 per hour</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b><br></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Best Time to Visit: </b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">November to February</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3.&nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;Kathakali Performance at Kerala Kathakali Centre</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Your visit to the city of Kerala would not be complete until and unless you become a part of the Kerala Kathakali Centre. This place has so much to offer including classical dance performances and many more activities. Classical dance forms are a pride symbol for the nation and this center keeps in mind the modesty of the folks it is offering.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Upon visiting this place, you will be overwhelmed by the stunning dance performances with heart-winning costumes, eye movements, expressions. </span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">These golden qualities make this place worth visiting.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Kerala Kathakali Centre Timings:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Dance performances begin from 5:00 p.m.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Entry Fees:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Remains between Rs. 250- Rs 350 depending upon the performance</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">4.&nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;Indulge in an Ayurvedic Therapy</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are on your trip to enjoy the peace and rejuvenate your soul, undertaking an ayurvedic treatment would be an ideal choice. Why? Because, it opens up the pores of your mind, heals your soul, and keeps you happy.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are many resorts situated in Kerala which not only help you to cure your soul but also help you to mend your mind. These days we all are juggling from a hard time. So, taking this kind of session would help your body to be renewed.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Best Time to visit:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Depends on your visit to Kerala</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">5. &nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Acknowledge the Local Craft at Iringal Crafts Village</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Iringal Crafts Village is located on the banks of the river Chaliyae. All the artists and craftspeople create their modeling and display them before the shopaholics. Tourists like you, visit their shops, choose from a variety of products and buy them. This is the only means of living for the craftsmen of Iringal.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It would be a great move if you buy their products as it will only help them for their survival.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">6. &nbsp; </span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paragliding at Vagamon</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Vegamon is a famous destination in Kerala. Mostly visited by adventurers, a place which is filled with greens and breath-taking views of the hills. If you want to explore the whole city from a bird’s eye view, paragliding at Vagamon would be an eventual way out for you.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are afraid of this kind of adventurous activity, take some courage out and try it as it can become a lifetime memory for you.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Ticket Price:</b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> Rs 3500 per person (approx.)</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7.</span><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> &nbsp; Stay in a Treehouse in Wayanad</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Are you on your trip to fulfill your bucket list? Add one more artifact into it. That’s the stay in a treehouse. This would be a pleasurable stay for you especially when you’re on a romantic trip with your partner.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Make nature your best friend here and enjoy fun activities like rappelling, rock climbing. Just grab this opportunity before someone steals it away from you.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Tariff for stay: </b></span><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Stay starts from Rs 10000 (approx.)</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:13.999999999999998pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Final Takeaway</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, we’ve arrived at the end of this blog. We hope that you got all the information before your trip and you would have found that useful.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Plan your trip wisely. Explore the best and make the most out of your trip.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Hope you enjoy your trip.</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Happy Trippin!!</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><br></div><div style=\"text-align: justify;\"><br></div></p>',NULL,'2021-06-09 23:50:57','2021-06-09 23:50:57',NULL,1,'',0,0,'things to do in Kerala','Looking for the things to do in Kerala? Check out this blog to find out what all Kerala has to offer.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(89,'Top 7 Dishes to try in Kerala','top-7-dishes-to-try-in-kerala','1625835880_blog.jpg','1628764742.jpg',NULL,'Aniket Agarwal','2021-06-15',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Foreign influence on the cuisine of Kerala is marked, with each religion&nbsp; from Muslims to Syrian Christians developing their own cuisine and style of preparation. The Moplah cuisine of the Malabar region has a distinct flavour, borrowed from the traders who regularly visited the region. Kerala cuisine has an abundance of coconut, rice, tapioca and spices like black pepper, cloves, cinnamon and ginger. The Portuguese introduced cassava, now widely eaten in Kerala. The region is also famous for its Sadhya, served at the Hindu festival Onam and consisting of boiled rice and a host of vegetarian dishes on a banana leaf. Kerala cuisine also features a lot of sea food like fish, prawns, mussels and crabs because of its long coastline.</span></p><p style=\"text-align: justify;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\">Don’t leave Kerala without trying…</span><br></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Puttu and kadala curry</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b><br></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b style=\"\"><i>Puttu rice cake and Kadala curry with poppadoms on a table</i></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a breakfast staple eaten all over the state. Puttu is a cylindrical steamed rice cake cooked in a mould with grated coconut. It’s usually served with kadala curry, a dish of black chickpeas made with shallots, spices and coconut milk, that can also be served with ripe bananas and grated coconut.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Appam with stew</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Appam is a Keralan staple made from fermented rice flour and coconut milk. It’s similar to a thin pancake with crispy edges. These crepe-like bowls are made from fermented rice flour, coconut milk, coconut water and a little sugar. Ishtu or stew is a derivative of the European stew and consists of coconut milk, cinnamon, cloves and shallots, eaten with appams. The stew may also feature mango pieces, vegetables, chicken or lamb. The addition of aromatic whole spices, ginger and fresh coconut milk enhance the natural flavor of the vegetables. The crucial ingredient is fresh coconut milk, which lends a sweet flavor.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Karimeen pollichathu (fish)</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is one of Kerala’s traditional delicacies. Karimeen or pearl spot fish is a speckled fish commonly found in the backwaters of this state. This is traditionally a Syrian Christian delicacy but has become part of Kerala’s rich cuisine. Pearl spot fish is marinated in a mixture of lemon juice, red chillies, and other ingredients, wrapped and baked in plantain leaves, giving it a unique flavour.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Malabar Parotta with Kerala beef curry</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Malabar Parotta flatbread topped with beef curry, next to diced vegetables and bowl of beef curry</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Layered flat bread that originated in the Malabar region called Parotta is made by kneading maida (plain flour), egg (in some recipes), oil or ghee and water. The dough is beaten and later shaped into a spiral with thin layers. The ball is rolled flat and roasted into a Parotta with ghee. This is then eaten with beef curry – pieces of beef simmered in a curry made with tomatoes, onions, garlic and spices like bay leaves, cinnamon, cardamom, cloves, black peppercorns and star anise.&nbsp;</span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">&nbsp;</span></p><p style=\"text-align: justify;\"><span style=\"background-color: transparent; font-family: Arial; font-size: 11pt; white-space: pre-wrap;\"><b>Erissery or pumpkin and lentil curry</b></span><br></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a popular curry in Kerala, made from either raw plantains or sliced yams. It also usually includes slightly sweet pumpkin that has been boiled in water with salt, chillies or pepper, dried lentils, grated coconut, turmeric powder, cumin seeds and garlic, served on a bed of rice. It appears on most menus at religious festivals like Onam.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Palada payasam (dessert)</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A sweet rice kheer prepared with palada is a delicacy made in almost all Kerala households during the festival of Onam and many other special occasions. There are many variations of it, however, the traditional recipe uses only basic ingredients like rice ada, milk, sugar and ghee. Rice ada is easily available in Indian Kerala grocery stores.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Kerala prawn curry (chemmeen curry)&nbsp;</b></span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b style=\"\"><i>Kerala prawn curry in a wide pan, topped with coriander</i></b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a signature dish of the state – a prawn curry from the Malabar region made with a blend of fenugreek, black mustard and fennel seeds, coconut milk and green chilli. It also includes a special ingredient called kudampuli (also known as brindleberry) to give it a sour taste, plus it uses marinated prawns, drumsticks and raw mango to give it a spicy, tangy flavour.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Try making your own Keralan prawn curry</b></span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Thalassery biriyani</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A rice biriyani is the most common dish of the Muslim community. Thalassery sea port was a centre for the export of spices where European, Arab and Malabar cultures came together and influenced the cuisine. Thalassery biriyani uses a unique, fragrant, small-grained, thin rice variety named kaima. The biriyani masala and cooked rice are arranged in layers inside the dish. Meat is cooked with the masala on a low heat and layered with rice before the lid of the container is sealed with dough. Hot coal or charcoal is then placed above the lid.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Try making your own version of biriyani</b></span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Fish moilee</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A famous Keralan fish stew made with coconut milk, which is a typical Syrian Christian delicacy. The curry is usually prepared in a traditional manchatti (earthen vessel) and stews lightly fried fish in coconut milk, and spices like turmeric, pepper, cinnamon and cloves along with fresh green chillies to give it a tangy taste. The fish (usually kingfish or seer fish) is marinated with oil, turmeric, red chili powder, lemon juice and salt for 30 minutes before being used in the curry.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Arial; color: rgb(0, 0, 0); background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><b>Banana fritters (dessert)</b></span></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Pazham pori or Ethakka appam are juicy banana fritters tha feature as a traditional tea time snack. They’re available throughout Kerala and are simply ripe bananas coated with plain flour and deep-fried in oil.</span></p><p style=\"text-align: justify;\"><b style=\"font-weight:normal;\"><br></b></p><p dir=\"ltr\" style=\"text-align: justify; line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Have you sampled authentic South Indian cuisine? We’d love to hear your foodie experiences. We have lots more for gourmet globetrotters in our travel section.</span></p><p style=\"text-align: justify;\"><br></p>',NULL,'2021-06-17 00:44:42','2021-06-17 00:44:42',NULL,1,'',0,0,'','','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(90,'Top 7 Dishes To try In Uttarakhand','top-7-dishes-to-try-in-uttarakhand','1625831574_blog.jpg','1628764242.jpg',NULL,'Aniket Agarwal','2021-06-22',NULL,NULL,NULL,'<p><em style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">Indian Cuisines are famous worldwide for the special blend of spices and mouth-watering flavours. The delicious flavours attract people from all over the world. People often visit India to experience the taste of such aromas. Uttarakhand is one such state in India that serves you up with that extra – delicious to creative savoury which must be appreciated for its amazing delicacies to subtle flavours.<span id=\"more-414186\" style=\"box-sizing: border-box;\"></span>Uttarakhand is famous for the perfect use of the Panch Phoron or the five spices plus other spices varieties.&nbsp;<span style=\"box-sizing: border-box;\">Uttarakhand Cuisine</span>&nbsp;proffers a highly tempting blend of the piquant spices with their ultra-fine aromatic flavours. While having a joyful trip to the famous hill stations of Uttarakhand, you will eventually be welcomed with the aromatic flavours of the famous Panch Phoron plus rest spices in recipes you taste and feel their presence in the&nbsp;<span style=\"box-sizing: border-box;\">traditional food of Uttarakhand</span>&nbsp;that have attained global popularity.</em></p><p><em style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></em></p><p><em style=\"box-sizing: border-box;\"><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Kafuli – Mouthwatering Dish</span></font></em></p><p><em style=\"box-sizing: border-box;\"><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\">Taste the famous blend of green leafy vegetables in the form of Kafuli which is the most&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\">traditional food of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\">&nbsp;from the Pahari cuisine. It is offered to all guests and is loved by the Pahari inhabitants as much as travellers seeking to taste something unique. It is an amalgamation of green leafy vegetables which is a rich source of healthy nutrients. Two main ingredients which are essentially required to prepare such dishes are Spinach and Fenugreek Leaves. Both are added together and cooked in the pot followed by salt and spices. Kafuli is popularly known as the&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\">State Food of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\">. It is served with the gravy made out of the paste of rice or wheat and water.</span></em></p><p><em style=\"box-sizing: border-box;\"><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; font-style: normal;\"><br></span></em></p><p><span style=\"box-sizing: border-box;\"><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Phaanu – Lip-smacking Delicious</span></font></span></p><p><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">Considered another most&nbsp;</span><strong style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; box-sizing: border-box;\">popular food of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">, Phaanu is the complex of different varieties of lentils. It is prepared by mixing lentils soaked overnight in water. It appears to be as a type of soupy meal. It is consumed primarily with rice. Phaanu will definitely create a spell on your taste buds.</span></p><p><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></span></p><p><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Baadi – Traditional Food</span></font></p><p><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">Baadi remains the most&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">popular food of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">. It is not only famous for its delicious taste but also it carries all the nutritional elements essential for the human body. Indeed, it is a combination of taste and nutrition and so is it considered as best traditional Food of Garhwal region in Uttarakhand. Prepared from the black coloured kwada ka aata, it is best served with Phaanu.</span></p><p><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></span></p><p><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Kandalee Ka Saag – Must Try Dish</span></font></p><p><strong style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; box-sizing: border-box;\">Uttarakhand Cuisine</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;</span><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">meticulously chooses the delights taste buds to make the most use of the available resources in the state. What if you are getting splendid flavours and all essential nutrients in the same delicacy! Yes, Kandalee Ka Saag offers altogether the piquant aromatic spices and proper vitamins essential for your immune system. Major ingredients of it impart the taste and flavour to almost all</span><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;</span><strong style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px; box-sizing: border-box;\">food items of the Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;</span><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">that include the leafy vegetable and major local spices. Kandalee Ka Saag is a green leafy veggie prepared just like other green vegetable dishes. However, its main ingredient Bichhu Ghas makes it different from the rest similar dishes.</span></p><div><br></div><h4><span style=\"font-weight: normal;\">Chainsoo – Delicious</span></h4><div><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">One of the most popular recipes in the Garhwal region namely Chainsoo is prepared from the Urad Dal. A popular&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">Uttarakhand Cuisine</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;will definitely contain the bulk of protein and essential nutrients. Chainsoo due to its higher protein content might take some time to digest but still, this delicious savour deserves a try! Toasting the lentils initially and then making a fine paste out of it is a foremost step to prepare this delicacy. You enjoy the aromatic flavour of this&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">famous food of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;especially because of its unique cooking method of keeping that in an iron kadai on slow flame.</span></div><div><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></span></div><div><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></span></div><div><div style=\"\"><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Dubuk – Tasty Meal</span></font></div><div style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">If you have to pick the tastiest meal out of all the delicious dishes and the perfect&nbsp;<strong style=\"box-sizing: border-box;\">state food of Uttarakhand</strong>, then give a try to Dubuk. Enjoying the title of one of this most&nbsp;<strong style=\"box-sizing: border-box;\">popular food Of the Uttarakhand</strong>, Dubuk is helpful for your stomach and can be easily assimilated. It is ideally served with rice and Bhang Ki Chutney making it subtle in taste and carrying a twist of Tang too. To prepare it, Bhat Ki Dal or Arhar Ki Dal is converted into fine paste followed by its slow cooking in a kadhai. It is commendable, especially during wintertime. Dubuk lovers reap the benefits of its mesmerising taste throughout the year</div><div style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></div><div style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></div><div style=\"\"><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">Aloo Gutook – Excite Your Palate</span></font></div><div style=\"\"><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">Aaloo Gutook is a purely mesmerising recipe from the famous&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">cuisine of Uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;similar to its people—simple yet incredible one. It is specially made on all occasions like birthdays and family functions. This popular&nbsp;</span><strong style=\"box-sizing: border-box; font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">food of uttarakhand</strong><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\">&nbsp;entices everyone just to savour it. Undoubtedly, it can be declared as a regional food of Kumaon yet becomes the food for the heart when served with the Bhang ki chutney, Pooris and famous Kumaon Raita. Every house in Uttarakhand has its own way to make it yet all of them maintain amazing delicacy. Prepared with the steamed potatoes and garnished by red chillies and coriander leaves, this dish at least deserves a try during a trip to this state.</span></div><div style=\"\"><span style=\"font-family: Verdana, arial, Geneva, sans-serif; font-size: 14px;\"><br></span></div><div style=\"\"><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\">While travelling to Uttarakhand, you should have a well-planned itinerary where to go and what to explore. But don’t forget the amazing dishes from Uttarakhand cuisine to make your travel experience worthwhile and get to know the Pahadi culture better!</span></font><br><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\"><br></span></font><br></div><br></div><p><font face=\"Verdana, arial, Geneva, sans-serif\"><span style=\"font-size: 14px;\"><br></span></font><br></p><div><br></div><p><span style=\"box-sizing: border-box;\"><br></span><br></p>',NULL,'2021-06-28 22:15:06','2021-06-28 22:15:06',NULL,1,'',0,0,'dishes to try in Uttarakhand','Want to know what dishes to try in Uttarakhand? What\'s that one lip-smacking dish that you\'ll want the recipe for? Check out the blog.','','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(91,'Top 7 Dishes to try in Himachal','top-7-dishes-to-try-in-himachal','1625829236_blog.jpg','1628764857.jpg',NULL,'Aniket Agarwal','2021-06-28',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Himachali cooking, especially non-vegetarian is more of red meat and wheat bread with plenty of sweet smelling thick saucy gravies that make the base of several dishes. As of now the popular dumplings or steamed momos are tourists’ favorite as they are now open to taste some of these lip-smacking foods you have to try while in Himachal Pradesh.</p><p style=\"text-align: justify; \"><b>1. Chana Madra</b><br></p><p style=\"text-align: justify;\">It consists chickpeas soaked mostly overnight and vegetables which is seasoned with spices and cooked in oil. A lot of other spices go in and make it a tangy dish. The Madra dish that comes from Himachal’s Chamba district showcases the culture of the state. It is also served to guests at various ceremonies and celebrations.</p><p style=\"text-align: justify; \"><b>2. Dhaam</b><br></p><p style=\"text-align: justify;\">This is specifically prepared during celebrations and festivals and is found at Chamba and Manali in Himachal Pradesh. It is prepared with nutrition and health in mind using best ingredients. It includes rice, curd, rajma and lentils and flavored with jaggery and boor ki kadi. Moreover, only specialized chefs called ‘botis’ make the dish as it is a delicacy.</p><p style=\"text-align: justify; \"><b>3. Tudkiya Bhath</b><br></p><p style=\"text-align: justify;\">This delicious rice dish consists of Pulao prepared in a unique style of cooking with spice, lentils, a variety of vegetables, onions and potatoes and curd. It gives such a delectable taste so a dash of lemon juice and garlic sauce gives it an extra kick. The Tudkiya Bath is mostly found in places of Chamba district of Himachal Pradesh.</p><p style=\"text-align: justify; \"><b>4. Bhey</b><br></p><p style=\"text-align: justify;\">The Himachali people enjoy this food that is a lotus step made in a spicy flavor. It is mostly found in almost all the kitchens of the locals. Locally called Bhey it the basis of the dish is the lotus stems that are sliced thinly and prepared with onions and ginger garlic with flour made from grams and this creates a unique lip-smacking dish to eat.</p><p style=\"text-align: justify; \"><b>5. Chha Gosht</b><br></p><p style=\"text-align: justify;\">If you are wondering that all of the above dishes are only vegetarian then this one will surely make you happy. The delectable non-vegetarian dish is a traditional delicacy of Himachal Pradesh. It is made by lamb marinated in special way and the preparation is done in a unique way with yogurt, gram flour and different spices and masala. The thick gravy that is the curry in which the meat soaks and then it is consumed. It is one of the best non-vegetarian dishes of Himachal Pradesh. It is more found in the district of Chamba.</p><p style=\"text-align: justify; \"><b>6. Siddu</b><br></p><p style=\"text-align: justify; \">The side dish in this state is prepared from wheat flour and is served alongside the non-vegetarian dishes of mutton or vegetables. It is an elaborate preparation and takes time and lot of effort. However, the taste is very delectable and worth the effort of preparation. The flour is left for 4 – 5 hours and then filled with fat and roasted on the direct flame for half cooked flavor. It is believed that the half cooked preparation will help the nutrients to stay and so this is considered very nutritious. Sidu is found especially in Kullu in many local eateries for tourists to taste authentic Himachali cuisine.</p><p style=\"text-align: justify; \"><b>7. Babru</b><br></p><p style=\"text-align: justify; \">The Kachoris are found in various parts of North India. But in this state they have given a new twist to this popular snack. Black gram paste is stuffed into the dough to get a special flat bread called Babru. The delectable crispy bite is served with tamarind chutney and generally served alongside the Chana Madra dish and makes a very healthy snack. This is one of the tourists’ favorite that is found in Shimla, the capital city of Himachal Pradesh.</p><p style=\"text-align: justify; \">Explore Best <b><a href=\"https://www.ineedtrip.com/tour-destination/himachal-pradesh/\">Himachal Pradesh Tour Package</a></b> With Ineedtrip.com</p>',NULL,'2021-06-28 22:43:08','2021-06-28 22:43:08',NULL,1,'',0,0,'Traditional Food of Himachal, Himachal Dishes, Recipes of Himachal Pradesh, Himachal Traditional Food.','Want to know what dishes to try in Himachal? Read this blog to find out what the hills in Himachal has to offer your taste buds.','','[\"110\",\"98\",\"87\",\"53\"]',1,'{\"blogdetailTitle\":[\"Top 7 Dishes to try in Himachal | Traditional Food of Himachal | Best Recipes\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"25064, 25015, 25390, 25348\"]}'),(92,'Goa, the Most Happening Place In India! Why Is It Worth Exploring?','goa-the-most-happening-place-in-india!-why-is-it-worth-exploring-','1627925249_blog.jpg','1628764913.jpg',NULL,'Manjeet Thakur','2021-08-01',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \"><font face=\"Arial\">Goa is one of the hotspots for all whether it is a honeymoon, family\r\ntrip, or vacation, Goa is full of all the fun activities. Goa is all about\r\nsprawling beaches, buzzing bazaars, casinos, fantastic nightlife, mesmerizing\r\ndestinations, street shopping, dry fruits are one of the specialties.<br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Goa has all the amazing activities which you can enjoy: fantastic\r\nbeaches, water sports, Dolphin spotting, mouthwatering seafood like cashew\r\nnuts, sausages, feni (a specialty of Goa), and much more, Trance parties and headphone\r\nparties, bike rentals, casinos, and much more. So here in this blog, we will\r\nlet you know must-visit places in Goa. With the <b><a href=\"https://www.ineedtrip.com/tour-destination/goa/\">Goa Holiday Package</a></b>, enjoy\r\na hassle free journey.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><span style=\"font-size: 12pt; line-height: 115%;\">Places to Visit in Goa</span></b><br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>Tito’s Lane</i></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Tito’s Street is one of the best party places in Goa. So if you love\r\nto be at parties and are a party animal, head towards Tito\'s Street. Tito\r\nStreet is one of the best clubs in Goa with its top-notch services. This club\r\nattracts the crowd with its amazing location and with stunning ambiance. The\r\nground floor is for dancing people and a separate section for couple dance. The\r\nfirst floor is for the people who want to sit and enjoy seeing the crowd and\r\nenjoy their food. Whether it\'s off or on season, Tito place is always on the\r\ntop for party people. <o:p></o:p></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>DudhSagar Waterfalls</i></b><br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">This is one of the most beautiful waterfalls which is located on the\r\nGoa - Karnataka border. It is one of the tallest waterfalls in India and is\r\nlocated on the Mandovi River. The Dudhsagar trek inside the park is closed to\r\nthe public but still, you can do trekking from Kulem. Reaching the waterfall\r\nwill not be an easy task but it will be worth it once you reach and adore the\r\nmesmerizing beauty.<br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>Church</i></b><br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">This is one of the most renowned sightseeing places in Goa. It is one of\r\nthe most devotional and people from all over the globe visit it for the pure\r\nand peaceful spirituality it has. They have devotees from all over the world.\r\nThis church is a white gorgeous church with a multicolored interior that\r\nimparts peace. This church is best in the month of December followed by\r\nChristmas and New Year and Immaculate Conception day is also celebrated on the\r\n8th of December. This is a must-visit place in Goa and you will be all at\r\npeace.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">For a blissful vacation, choose from a wide range of <b style=\"\"><a href=\"https://www.ineedtrip.com/tour-destination/goa/\">Goa holiday</a></b> packages.<br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>Casino Cruise</i></b><br></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Casino Cruise in Goa is a must-visit, at a basic level it is a\r\nrestaurant but with this, it also offers royal casino features in Vegas style\r\nentertainment. The ship goes around many rivers in Goa and has a posh ambiance\r\nwith top-notch furnishings.&nbsp;&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">It is just like clubs but instead of DJ and party music, you can enjoy\r\ncasinos and low music. There are also playrooms if you want to take children\r\nalong. If your luck charms, then you might get rich from casinos. There are\r\nbeautiful views and fine dining options you can find out there. So surely you\r\ncannot miss the casino life of Goa.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>Breathtaking beaches</i></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">From North to South of Goa for every five minutes of travel, you will\r\nfind a new beach. Not only beaches, you will see the shacks with delicious\r\nseafood to offer. Goa is nothing without its beaches. Beaches add life to Goa\r\nand make it a popular reason for people to visit it.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">There’s something about Goa, to explore within your budget go for the <b><a href=\"https://www.ineedtrip.com/tour-destination/goa/\">Goa tour package</a></b>.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">The Food that’ll blow your mind</font></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">We just can’t live without amazing food can we? Goa’s got a different\r\nsense of taste and you must try the local dishes, mind you, they might taste\r\nsomewhat different than what you are accustomed to. Here are the dishes:&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Feni</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Chana Madra is one of the special cuisines in Goa Pradesh that comes\r\nfrom Goa’s Chamba district culture. Madra consists of chickpeas that are soaked\r\novernight and many vegetables cooked in oil with lots of different Goai spices.\r\nIt gives a zesty flavor of home food of Goa; it is served with rice or Chapati.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>Goan Fish Curry</i></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">This is considered one of the healthiest dishes in Goa with lots of\r\nnutrition and a mix of a lot of ingredients. It includes rice, rajma, and curd,\r\nlentils with a touch of jaggery and boor ki kadhi. Only a specialized chef can\r\nmake this dish named as boti’s which gives a proper Goan taste. This dish is\r\nespecially found in Chamba and Goa.<i>&nbsp;</i></font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Bebinca</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Babru is a Goan version of Kachori. These are found in the states of\r\nNorth India. It is made of black gram paste which is stuffed into the dough to\r\nget a special flatbread “babru”. Babru is a delicious dish that is served with\r\ntamarind chutney, ketchup, or sweet imli chutney.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Prawns Xeque Xeque</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Siddu is the famous dish of Kullu and Goa. It is a side dish which is\r\nmade up of wheat flour. It is a preparation that takes a lot of time and\r\neffort. The flour is left for 4-5 hours and roasted on direct flame. It is\r\nhalf-cooked. It is believed that half-cooked dishes will help hold the\r\nnutrients.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Don’t wait to try out these delicious dishes! Check out <b>Goa holiday</b> packages.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><span style=\"font-size: 12pt; line-height: 115%;\">Places to shop in Goa</span></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Whether it’s a trip or a casual Sunday outing, we just can’t help\r\nourselves from getting a thing or two, right? And if you are on your honeymoon\r\ntour to Goa with a lot of time to spare, if you book Goa honeymoon packages\r\nwith ineedtrip, you must visit these shopping hubs.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Flea Market at Anjuna Beach</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Anjuna Flea Market is the most popular flea market in Goa. Here you\r\ncan buy all types of clothes, home decor, Indian range of spices and also\r\nmusical instruments. You can enjoy a wide variety of street food. This is the\r\nperfect place for street shopping, enjoy your time here and bring some Goa\r\nsouvenirs for yourself and families as well.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Baga Calagunte Road</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">This is one of the best streets shopping for summer clothes. You can\r\nfind a huge variety of clothes like shorts, dresses, jewellery, swimwear,\r\nantique pieces and even furniture. Do not forget to upgrade your bargaining\r\nskills, bargaining is most important to shop in Calagunte road.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">Mackie’s Night Bazaar</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">This is one of the most amazing experiences of shopping and especially\r\nat night. Here you can buy products at a very cheap price. Whether it is\r\nhandbags, footwear, clothes, home decors, antiques or Goa souvenirs, Goa has it\r\nall. You can take along a lot of things with yourself and this market will just\r\nmake your mood more shopaholic.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">There are countless other shopping hubs in Goa that include the famous\r\nMall Road of Goa as well. But you can only shop from these places if you visit\r\nthem right? So, here, check out our <b>Goa\r\ntours</b> and Goa honeymoon packages that are currently being offered at huge\r\ndiscounts.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size: 12pt; line-height: 115%;\"><font face=\"Arial\">Transport? What should you choose?</font></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">The choice depends on the duration of your trip and the places you want\r\nto cover. If you are booking an all inclusive package, then you will get a\r\nshared bus or private car that’ll take you everywhere. If not, then well,\r\nyou’ve got to consider some scenarios.</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i><font face=\"Arial\">If you are visiting one or two places:</font></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">It’s best to travel by train wherever you can, if not train then bus.\r\nBoth options will be cheaper than a private car (unless you book a <b>Goa tour package</b> with ‘I Need Trip’).\r\nOnce you’ve reached your destination, you can either rent a bike (if you’re a\r\ncouple) or rent a car to travel around nearby places of interest. Just make\r\nsure you rent a bike only if you have experience driving at hill stations.&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><i>If you are visiting more than two places:</i></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">It’s best to get a rental car if it’s more than two places that you\r\nplan on visiting. If you choose to travel by bus or train not only will you be\r\ntired, but hiring a taxi every time for local sightseeing wouldn’t be budget\r\nfriendly either. So, best get a car and be clear about all charges including\r\nholding charges, driver fees, and tolls (if any).&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\"><b><span style=\"font-size: 12pt; line-height: 115%;\">Why wait?</span></b>&nbsp;</font></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><font face=\"Arial\">Goa’s got that charm that’ll let the party animal out in you. It gives\r\nthe best of both to tourists, a party heaven and a peaceful destination. A <b><a href=\"https://www.ineedtrip.com/tour-destination/goa/\">Goa tour package</a></b> can make it possible….<o:p></o:p></font></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><br></p>',NULL,'2021-08-02 22:57:29','2021-08-02 22:57:29',NULL,1,'',0,0,'Goa Package, Tour package Goa, Goa Honeymoon Package, Honeymoon Package Goa, Book Goa Package.','Goa is one of the hotspots for all whether it is a honeymoon, family trip, or vacation, Goa is full of all the fun activities. Goa is all about sprawling beaches, buzzing bazaars, casinos, fantastic nightlife, mesmerizing destinations, street shopping, dry fruits are one of the specialties.','Goa, the Most Happening Place In India! Why Is It Worth Exploring?','[\"85\",\"84\",\"83\",\"82\",\"81\",\"80\",\"79\",\"78\",\"77\",\"76\",\"75\",\"74\",\"70\",\"69\",\"68\",\"67\",\"66\",\"65\",\"64\",\"63\",\"62\",\"61\",\"58\",\"57\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"23058, 23092, 23065, 23053, 22815, 23208\"]}'),(93,'Top 12 Thrilling Options to Satiate Your Thirst In Leh, Ladakh','top-12-thrilling-options-to-satiate-your-thirst-in-leh-ladakh','1632752727_blog.webp','1632752727.webp',NULL,'Manjeet Thakur','2021-08-12',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Ladakh is one of the top destinations in\r\nIndia which is pretty much on every voyager’s bucket list and is a fantasy\r\ndestination which will stay in his mind forever! Ladakh\'s grand and untouched\r\nbeauty is one which enthralls every traveler visiting this spot, furthermore\r\nwanting them yearning for additional.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Pump up your\r\nadrenaline rush, best adventurous sports in Leh, Ladakh<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Rocky Mountains enhance the scenic beauty for\r\nwhat it\'s worth while the powerful Indus River which flows through the deep\r\nvalleys and dramatic mountains will make you adore this spot over and over\r\nagain. Need to know what Ladakh is renowned for? <b>Leh Ladakh tour </b>to enjoy the best!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Aside from the spiritual monasteries and\r\naudacious bike trips, adventure sports are another jewel of this frigid\r\nparadise. But every activity permitted here depends upon the months and its\r\nweather condition. So significantly relying on the climate you can engage in\r\nthe activities in Leh, Ladakh. Be it frigid chilly winds or the rough\r\nterritories of the Himalayas, Leh Ladakh has adequate exciting alternatives to\r\nsatiate your hunger for adrenaline kicks. Test the adventure in you with our <b><a href=\"https://www.ineedtrip.com/tour-destination/leh/\">Leh Ladakh tour</a> </b>packages! <b>&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Here are some of the top adventurous\r\nactivities in Ladakh, making it one of the top destinations to visit in India\r\nfor the adrenaline junkies!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>1. Camping\r\nunder the star-lit sky <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Hope for nothing better than camping under\r\nthe stargazing skies on your vacation in Ladakh. The unparalleled scene of\r\ngrand fruitless mountains make for the ideal foundation and the high lakes make\r\nthe ideal stance for partaking in the best camping activity in Ladakh. There\r\nare two sorts of camping that one can appreciate enormously in Ladakh-\r\nrecreation camping and adventure camping. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for camping in Ladakh: </i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo9;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Zanskar Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo9;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Tso Moriri</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo9;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Pangong Tso</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo9;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Thiksey</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l1 level1 lfo9;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Hunder Village</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l1 level1 lfo9;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Nubra Valley</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best time for camping in Ladakh:</b> June to\r\nSeptember. Go for the <b><a href=\"https://www.ineedtrip.com/tour-destination/leh/\">Leh Ladakh package</a>\r\n</b>for the best camping experience.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>2. Trekking\r\nin the rugged mountains &amp; jaw-dropping landscapes<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The radiant mountains and stunning scenery\r\nmake trekking in Ladakh perhaps the most exciting encounters for any sort of\r\nvoyager. Wrapping the path in the freezing cold of the area and strolling over\r\nthe frozen water bodies upgrades the fervor of covering the trips here. This\r\nspot holds unmatched excellence with huge loads of snow-cleaned tops, ancient\r\nmonasteries, and alluring panorama that you will not see elsewhere. From simple\r\nto amazingly troublesome, treks in Ladakh oblige individuals of a wide range of\r\nwellness levels. View the stunning landscape on foot with our perfectly\r\ndesigned <b>Leh Ladakh package.<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best places for trekking in Ladakh: </b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Chadar Trek</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Snow Leopard Trek</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Markha Valley Trek</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Lamayuru to Alchi Trek </span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Lamayuru to Chilling Trek</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Stok Kangri Trek</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Ripchar Valley Trek</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l8 level1 lfo10;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Padum to Darcha Trek</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l8 level1 lfo10;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">&amp; many more.</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best time for trekking in Ladakh:</b>\r\nSeptember-October is the best time for trekking and exploring the trekking\r\nroutes on foot. <b>Leh Ladakh tour </b>for\r\nthe spine chilling treks!<b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>3. River\r\nrafting through the mesmerizing rivers<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">River rafting is one of the adventurous\r\nactivities in Ladakh. If you want to take pleasure in the scenic views of the\r\nmountains while sprouting through the waters, then river rafting in Zanskar\r\nRiver and Indus River is the ideal testing sport you need to enjoy. Indus River\r\nupholds Grade 1 to Grade 5 which is great for novices just as experts. Witness\r\nthe grand view of the monasteries above and slopes as you pontoon your way\r\nthrough the entrancing stream with our </span><a href=\"https://www.ineedtrip.com/tour-destination/leh/\"><b>Ladakh tour</b></a><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b></b>.<b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for river rafting:</i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l6 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Saspol-Khaltsey</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l6 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Kharu-Spituk</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l6 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Phey -Saspol</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l6 level1 lfo4;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Phey-Nimmo route</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l6 level1 lfo4;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Upshi-Kharu route</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Best time:</span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>June\r\nto October<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>4. Mountain\r\nbiking (mountain cycling)<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Mountain Biking is the ideal sport for each\r\ndaredevil who loves to enjoy a daring excursion through the rough slopes,\r\nextraordinary territories, steep roads thus considerably more. Many motor\r\nbikers run to Leh Ladakh consistently to feel the ethereal beauty of this spot.\r\nIt\'s on you to choose what sort of excursion you would incline toward- long or\r\nshort. <b>Leh Ladakh package </b>for an\r\namazing adventurous trip!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for mountain biking:&nbsp; </i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Pangong lake shores</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Along the banks of Zanskar or Indus River</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Leh to Zingchem</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\">Zingchen<span style=\"color:black\"> to Skiu </span><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Diskit Monastery</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Khardung La</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Nubra Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Thiksey Monastery</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l0 level1 lfo3;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Spituk Monastery</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l0 level1 lfo3;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">&amp; more. </span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Best time:</span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;Mid-June\r\nto Mid-September<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>5. The\r\nBactrian camel safari&nbsp;<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">This oversimplified experience can be\r\naccomplished through camel rides in Leh, Ladakh. It is an astounding encounter\r\nto ride a double-humped camel across striking routes of Leh, Ladakh. Ride\r\nthrough the high mountains of Leh, Ladakh to get the real experience.&nbsp; <b>Leh\r\nLadakh tour</b> packages to experience something unique, something exciting!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for camel safari:&nbsp;&nbsp; </i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l7 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Nubra Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l7 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Dixit</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l7 level1 lfo1;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Hunder&nbsp;Valley</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l7 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">&amp; more.</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;June\r\nto Mid September<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>6. Quad\r\nBiking<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Many experienced aficionados are attracted to\r\nLadakh for this stand-out activity. Ride an ATV in one of the most elevated\r\nmotorable roads. Get set go for quad biking in Nubra Valley and wonder about\r\nseeing the most stunning views. The confound ways will challenge the adrenaline\r\nsurge in you- each daredevil ought to be a part of this experience sports to\r\nextinguish their hunger for an exciting encounter.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><i><b>Best Places for quad biking: </b></i><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l9 level1 lfo5;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Nubra Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l9 level1 lfo5;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Magnetic Hill</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Best time:</span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>April-Mid\r\nOctober<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>7. Ice\r\nSkating/Ice Hockey<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Ice Hockey in Leh, Ladakh is also named as\r\nSkinny and Pond Hockey, partake in the genuine rush of skating in the open air\r\non natural ice. It is perhaps the most famous adventure sport in Leh, Ladakh.\r\nMany campsites offer ice skating and ice hockey activities as the region\r\nfreezes during winter season and turns out to be perfect for this game. <b>Ladakh tour </b>offers you the best\r\nactivities here!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best place for ice hockey:</b> Karzoo Ice Hockey\r\nRink<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>Mid-November\r\nto January<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>8. Jeep\r\nsafari<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Ladakh has endless spots to explore, from\r\nancient monasteries to high passes. The glorious ambiance with an assortment of\r\nsights and sounds it offers to add further to the fervor of visiting Ladakh.\r\nWhat\'s more, what better way could it be to partake than undertaking a Jeep\r\nSafari. Opt for the <b><a href=\"https://www.ineedtrip.com/tour-destination/leh/\">Ladakh package</a> </b>for\r\nthe best jeep safari experience.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for jeep safari:&nbsp; </i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo6;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Pangong Lake</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo6;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Nubra Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo6;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Manali-Leh Highway</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo6;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Dah Hanu</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l4 level1 lfo6;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Tso Moriri lake.</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l4 level1 lfo6;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Zanskar and Suru Valley</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;June-Mid\r\nOctober<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>9. Archery<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Being a part of the traditional sport Archery\r\nwhich is organized in the National Archery Stadium, it holds a unique\r\nsignificance in the core of Leh Ladakh\'s identity, culture, and tradition. They\r\nlead different archery competitions throughout the midyear months; as the local\r\ngame of Leh Ladakh it shows how people are profoundly pulled with their\r\nflamboyance for contest and skill. They have their own set of rules and\r\nregulations, which makes it seriously more intriguing. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best place for Archery: </b>National Archery\r\nStadium, Leh, Ladakh<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>Summer\r\nmonths<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>10. Rock\r\nclimbing<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">With regards to adventure activities in Leh\r\nLadakh, rock climbing is one of the most recommended. You will get the\r\nopportunity to test your limits to climb on the strenuous path of Himalayan and\r\nKarakoram ranges. Prior to beginning the undertaking, you may need to get the\r\nvital clothing, tools, and different things. Additionally, letting you get\r\naccustomed to the mountains of Leh, Ladakh. Sounds thrilling, right? Go for the\r\n<b>Leh Ladakh package</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><i><b>Best places for rock climbing:&nbsp; </b></i><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo7;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Stok-Kangri</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo7;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Nun Kun</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo7;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Chamser</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo7;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Lungser Kangri</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l2 level1 lfo7;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Markha Valley with Stok Kangri</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l2 level1 lfo7;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">&amp; more.</span><span style=\"font-size:12.0pt;line-height:\r\n     115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; color: rgb(77, 81, 86); background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"> </span><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\nmajor-latin\">Mid-May to mid-October<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>11.\r\nParagliding, fly around like a bird<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Quite possibly the most enchanting adventure\r\nsport in Leh Ladakh is paragliding, one of the most daring activities and only\r\nfor ones with a valiant heart. In this activity, you will be honored with a\r\n10,000 foot view of the pleasant snow covered mountains and pinnacles. A tip,\r\nremember to take your camera along to record the most awe-inspiring scenic\r\nviews of Leh with our exclusive <b>Leh\r\nLadakh tour</b> packages. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><i><b>Best place for paragliding:&nbsp; </b></i><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l3 level1 lfo8;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Sakti-Tagar below Changla Pass</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l3 level1 lfo8;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">Khardung ranges&nbsp;</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Best time:</b> May to July<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>12. Motor\r\nbiking in Ladakh<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Experience the glee of riding through the\r\nhighest passes of the world. Ride your monster through the rugged mountain\r\ntracks while partaking in the astounding terrains of the region. This is\r\nunquestionably going to be one amazing ride. It doesn\'t make any difference\r\nwhether you are an adventurous person or somebody who loves to travel with\r\ntheir group for the experience, Leh-<b>Ladakh\r\ntour</b> will certainly astonish you.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b><i>Best places for motor biking:</i></b><o:p></o:p></span></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l5 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin;color:black\">Leh-Pangong-Leh</span><span style=\"font-size:\r\n     12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:\r\n     major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"margin-bottom:0in;margin-bottom:.0001pt;text-align:\r\n     justify;mso-list:l5 level1 lfo2;border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;\r\n     mso-border-shadow:yes\"><span style=\"font-size:12.0pt;line-height:115%;\r\n     font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\n     major-latin\">Leh-KhardungLa-Nubra<span style=\"color:black\"> valley-Leh</span><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"text-align:justify;mso-list:l5 level1 lfo2;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin;\r\n     color:black\">&amp; many more</span><span style=\"font-size:12.0pt;\r\n     line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\n     mso-hansi-theme-font:major-latin\"><o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Best time:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> Mid-June to\r\nMid-October<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Pick your\r\nfavorite season &amp; enjoy the beauty of Ladakh</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The tough valley of Leh-Ladakh is no match to\r\ndifferent spots as an optimal spot for the daring enthusiasts out there.\r\nFavored by high elevation ranges, gigantic lakes, picturesque paths, profound\r\nvalleys and high passes, this area sets up a stage for an incredible assortment\r\nof adrenaline siphoning activity. You can enjoy many adventure activities here.\r\nThese adventure sports in Leh Ladakh are exactly what you need to get a true\r\nadrenaline surge.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>But wait a\r\nminute, confused? How to visit the best places &amp; also enjoy adventurous\r\nactivities in Leh Ladakh?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">If you want to go on a <b>Ladakh tour</b>, then it is important to choose an exclusive <b>Leh Ladakh tour</b> package. These tours\r\nare affordable as well as expensive. If you want to explore everything and\r\nenjoy the adventure activities they are expensive. ‘I Need Trip’ provides <b>Leh Ladakh tour</b> packages, according to\r\nyour convenience. <o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Opting for a <b><a href=\"https://www.ineedtrip.com/tour-destination/leh/\">Ladakh package</a></b> for your upcoming trip can help you save money. It\r\ncosts you less than travelling on your own. ‘I Need Trip’ will deal better with\r\nairlines and hotels and other activities. With a <b>Leh Ladakh package </b>there<b> </b>is\r\na higher possibility of covering all the places within a short period of time.\r\nDon’t forget to count on the number of adventurous sports as well!<o:p></o:p></span></p>',NULL,'2021-08-17 08:51:42','2021-08-17 08:51:42',NULL,1,'',0,0,'','','','[\"135\",\"134\",\"132\",\"131\",\"130\",\"95\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"24889, 24931, 26969, 26994, 25051\"]}'),(94,'Honeymoon Escape to the Maldives & We Can’t Stop Gushing the Reasons','honeymoon-escape-to-the-maldives-we-can’t-stop-gushing-the-reasons','1632752252_blog.webp','1632752084.webp',NULL,'Manjeet Thakur','2021-08-16',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">So, you’ve decided that Maldives will be your\r\nhoneymoon location, bravo! You are off to create a lot of memories. Let’s start\r\nwith some facts about your honeymoon destination. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Located in the Indian Ocean, The Republic of\r\nMaldives is the perfect place for a honeymoon destination. The collection of\r\nover 1,192&nbsp;islands that the Maldives offers is a vast array of serene\r\nbeauty and is home to over 187 species of coral reefs. The exquisiteness of the\r\nlocation is such that the Maldives was awarded the <b><a href=\"https://www.ineedtrip.com/10-best-places-to-visit-in-himachal-on-honeymoon/\">Best Honeymoon Destination</a></b> of the Indian Ocean Award in 2019,\r\nbeating both Mauritius and Seychelles. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Maldives\r\nhoneymoon packages</span></b><span style=\"font-size:12.0pt;line-height:115%;\r\nfont-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\nmajor-latin\"> are one of the most searched tour packages in the last couple of\r\nyears. The best time to visit the Maldives is between November and April and\r\nthe weather there is mostly warm year round.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>I’ve heard a\r\nlot about beaches in Maldives, which ones are the best? <o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">You had to, the water there is so clean and\r\nclear that you can actually see the seabed straight through, imagine standing\r\nin the water, looking down and staring at the vibrant coral. There is a common\r\nsaying amongst the people who have traveled to the Maldives, “<i>It’s a place that has 2 worlds, one on the\r\nland and one underwater”</i>. Enjoy your </span><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\"><b>Maldives trip</b></a><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b></b> to the fullest.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The uniqueness of Maldives is that it is not\r\njust one single place; it’s an assortment of over 1190 islands and 22 atolls,\r\neach brilliantly crafted by Mother Nature. The team of experts at iNeedtrip has\r\ndesigned all the <b>Maldives holiday\r\npackages</b> in such a way that you get to experience every facet that the\r\nlocation has to offer, from glaring white beaches to stellar coral reefs.\r\nMaldives’ group of islands has hundreds of beaches to visit. <b><i>The most popular\r\nof them are:</i></b><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l1 level1 lfo4;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Hulhumale\r\nBeach</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l1 level1 lfo4;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Veligandu\r\nIsland Beach</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l1 level1 lfo4;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Bandos\r\nMaldives</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l1 level1 lfo4;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">The\r\nGlowing beach</span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:.75in;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l1 level1 lfo4;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">&amp;\r\nmore</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Are there\r\nany fun activities that I can enjoy with my partner?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Taking a <b>Maldives\r\nhoneymoon package</b> and not getting yourself enrolled in adventurous activities\r\nwith your better half would be unjust. Here are some most popular activities\r\nthat can be done in the Maldives:<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l0 level1 lfo3;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Snorkeling &amp; Diving</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l0 level1 lfo3;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Dolphin, Whale Spotting</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l0 level1 lfo3;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Underwater\r\nspa date</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l0 level1 lfo3;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Flyboarding<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:.75in;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l0 level1 lfo3;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">&amp; more<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>How will I\r\ntravel around?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Even though you will get options like private\r\nyachts, seaplanes, and speedboats to choose from, the economical ones are the\r\nmore enjoyable ones. In major cities like Malé and Addu City, taxi and bus\r\nservices are easily available. Islands in the Maldives can be discovered on\r\nfoot (the hand in hand walk, during sunset, that you have been watching in\r\nmovies), or on a bicycle to ride along the coastline. <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Travel to different islands can be done by\r\ntaking cheap ferry rides or the ‘Dhoni’ (a local boat). If you want to know\r\nabout this in detail you can visit our blog that has everything from fair to\r\navailability. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">P.S. You\r\nwill get to ride on a speedboat in all the </span></i><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\"><b>Maldives holiday packages</b></a><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b></b> by iNeedtrip<o:p></o:p></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>It’s my\r\nhoneymoon, what should I order for the candlelight dinner?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">You can always go with classic Italian or\r\nFrench cuisines on that special dinner date, but trying the local dishes will\r\nbe more fun. The key ingredients in the local food of Maldives are Coconut and\r\nTuna. You will find the true taste of Maldives in some of these famous dishes:<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Garudhiya:</b> It’s one of the most basic and\r\ntraditional Maldivian dishes. If you miss out on this one, we would say you’ve\r\nnot tried the local food. The bouillon of this dish is made from Tuna found in\r\nfreshwaters in the Maldives. It is a soupy dish which is eaten with rice or\r\nroshi (Maldivian chapati). <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Masroshi:</b> This dish is prepared by making <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">dough</span> using flour, oil and\r\nwater and then they stuff it with smoked Tuna, grated coconut, onions, hot\r\npepper, garlic and lime. It looks like our parathas but is far more superior.\r\nYou have to try this one.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Mas Riha:</b> As we mentioned in the first line,\r\nthe Maldivians love coconut and tuna. They make this dish by cooking Skipjack\r\nTuna in a curry with onions, spices, and water and serve it mostly with rice.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>But hey! We\r\nare vegetarians, what about us?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">We know how it is, for our vegetarian friends\r\nout there, the first thing that pops in your mind while planning an\r\ninternational trip, is the food. Is veg food easily available? Are there any\r\nfamous dishes for vegetarians?&nbsp; <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Although there are no such signature\r\nvegetarian dishes in the Maldives, you will get plenty of veg options\r\neverywhere you go, the hotels and restaurants will even cook vegetarian food\r\nespecially for you. Some of the best restaurants for vegetarians are:<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l2 level1 lfo2;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Atmosphere Kanifushi</span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l2 level1 lfo2;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Belle Amie Bistro</span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:.75in;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l2 level1 lfo2;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Bombay Darbar</span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">\r\n</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>There must\r\nbe local markets for shopping, right?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Yes. Of course! A <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives honeymoon</a></b> would be incomplete if you don’t go shopping\r\ntogether, whether to get souvenirs or to get some locally made garments. Here\r\nare some of the best places to shop in the Maldives:<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l3 level1 lfo1;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\">Male\r\nLocal Market<o:p></o:p></span></p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-top:0in;margin-right:0in;\r\nmargin-bottom:0in;margin-left:.75in;margin-bottom:.0001pt;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l3 level1 lfo1;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Majeedhee Magu</span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><o:p></o:p></span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:.75in;mso-add-space:auto;\r\ntext-align:justify;text-indent:-.25in;mso-list:l3 level1 lfo1;border:none;\r\nmso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:yes\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Chaandhanee Magu</span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>What are my\r\ncurrency options? What’s the exchange rate?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">All this shopping, outdoor activities, food,\r\nis going to cost money, here’s a quick overview on currency and exchange rate\r\nin the Maldives.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The local currency of the Maldives is the\r\nMaldivian rufiyaa (Rf), the exchange rate on the date this article is written\r\nis INR 4.633 = 1 Rf. Ideally you won’t have to use much of the local currency,\r\nbills in resorts and most restaurants in the Maldives can be settled in US\r\nDollars but for us that too would be a problem. So, it is a common practice\r\namongst people travelling to the Maldives for their honeymoon to get INR\r\nexchanged to US Dollars here itself. <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Since you are traveling with iNeedtrip made <b>Maldives honeymoon packages</b>, in most\r\ncases you would be spending money only on food that you eat outside the resort,\r\nor for shopping and adventure sports.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">A dinner for two on average will cost you\r\nanywhere <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">from </span>$60-$100\r\ndepending on the type of restaurant you visit, shopping however is cheap and\r\nyou won’t be spending much on that. <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">It’s safe to carry over $1000, if you are\r\ntraveling for 4 days and won’t go berserk on the adventure part of the trip. It\r\nis also advised that you do not convert much of the <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">Indian</span> currency to the Rf because you will\r\nnot be allowed to convert the remaining INR back again. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Why </b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>iNeedtrip</b><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>? <o:p></o:p></b></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">If you are planning to visit a place that has\r\nserene beauty and utmost peace, Maldives is the place for you. If you want to\r\nread more about the Maldives, visit our blog. You can <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">customize</span> <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives honeymoon packages</a></b> offered by iNeedtrip as per your needs.<o:p></o:p></span></p>',NULL,'2021-08-17 09:08:16','2021-08-17 09:08:16',NULL,1,'',0,0,'Maldives Package, Package To Maldives, Maldives Tour, Maldives Honeymoon, Book Maldives Package.','Maldives honeymoon packages are one of the most searched tour packages in the last couple of years.','Honeymoon Escape to the Maldives & We Can’t Stop Gushing the Reasons','[\"139\",\"138\",\"137\",\"136\",\"123\",\"50\",\"49\",\"47\",\"46\",\"39\",\"36\",\"35\",\"31\",\"30\",\"29\",\"27\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"27082, 27081, 27075, 27074, 27066, 25218, 25212, 25189, 25187, 25156\"]}'),(95,'Dreamlike Picture-Perfect Wedding Destinations in & Around Delhi','dreamlike-picture-perfect-wedding-destinations-in-around-delhi','1635250978_blog.jpg','1632751665.webp',NULL,'Manjeet Thakur','2021-08-17',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>What you need to know about tying the knot in\r\nan ethereal&nbsp;setup<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Have you ever checked out your friend’s\r\nsocial posts full of vacation photos? Though jealous, many times you might have\r\nliked and commented on how the captured moments look amazingly beautiful. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Some months later, you find the perfect way\r\nto surprise your friend, getting hitched in one of the <b>top destination wedding venues</b> with an amalgamation of\r\npicture-perfect&nbsp;location and value-added facilities.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Just like the day you met him, shared your\r\nfirst and the first time you said ‘I love you’, you want your wedding day to be\r\netched in everyone’s memories for a lifetime. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Steal away from the exotic <b>destination wedding venue around Delhi</b>\r\nwithout traveling too far. From Bollywood wedding themes to luxurious\r\nRoyal-style, to something exceptionally magical and romantic with the backdrop\r\nof hills, rivers, forests, and mountains; the right place to celebrate your big\r\nday. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Some <b>destination\r\nwedding</b> venues work with you to create a unique and memorable affair. We\r\nare talking about the feeling of being surrounded by flowers, lights, and\r\nlanterns and so much more to create a fairytale wedding. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">And with that, comes the choice of your <b>destination wedding venue around Delhi </b>that\r\nis truly<b> </b>enthralling. To keep it a\r\nfun-filled hush-hush affair we have traced out the dreamy <b>destination wedding</b> venues. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Getting\r\nhitched in the city capital, Delhi<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Don’t let your dream of getting hitched in a\r\ndestination wedding venue be interrupted by the COVID-pandemic. Get married\r\nwithin a small circle of your family and friends, these amazing locations in\r\nDelhi will provide you a grand wedding experience. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>The Heritage Village Resort &amp; Spa&nbsp; <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Take your vows in a Rajasthani style haveli,\r\nlocated on the NH8 highway. Far from the helter-skelter city life, yet not too\r\nfar away from central Delhi, its location makes it the perfect <b>destination wedding venue around Delhi. </b>It\r\nneeds no introduction that it holds for a signature wedding. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">It comprises an array of facilities like a\r\nspa, wellness retreat center, kids club, multiple restaurants, bar, and other\r\nexciting activities to entertain you and your guests. This resort is also dog\r\nand cat-friendly, you don’t have to leave your pets behind. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">With unique wedding decorations, this\r\nlocation can actually do wonders as one of the stunning <b>destination wedding</b> venues!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;NH8,\r\nManesar, Gurugram, Haryana<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>Rs\r\n5,600 onwards<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>The Westin Resort<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Enveloped in lush greenery, the Westin Resort\r\nis a fabulous place to hold a destination wedding. An amazing way to trick the\r\nchaotic city life to host an elegant wedding in a big dramatic ballroom or\r\neye-catching green luxuriant gardens, this place is honestly one of the <b>top destination wedding venues </b>near\r\nDelhi.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> The Westin\r\nResort, Sohna road, Haryana<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;Rs\r\n8,099 onwards<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>The Umrao&nbsp;<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">With breathtaking architecture, gorgeous\r\nexterior and interior designs, and beautiful lawns, the Umrao will definitely\r\nmake you go crazy to want to have your destination wedding here if you cannot\r\ntravel out of the city due to the current COVID-pandemic situation. What’s on\r\nthe plate? It offers posh rooms, an outdoor swimming pool, a spa and much more\r\nfor you. One of the <b>top destination\r\nwedding venues </b>near Delhi you can rely on.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> National\r\nHighway 48, Samalkha, Rajokri Rd, Block- D, New Delhi <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b>&nbsp;</b>Rs\r\n2,500 onwards<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Why is a\r\nwild wedding at Jim Corbett a great idea?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Are you dreaming of a secluded and wild\r\nbackdrop <b>destination wedding in hills</b>\r\nthat don’t compromise on luxury? How about an adventurous wedding in Jim\r\nCorbett National Park? Located only a few miles away from Delhi, this place is\r\nabuzz with some of the wild wedding venues. Top <b>destination wedding in Jim Corbett</b> and around in Uttarakhand you\r\nare scouting for is here, tucked in this lush green wilderness. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>La Perle River Resorts, Ramnagar, Uttarakhand<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Situated in a serene location on the banks of\r\nthe River Kosi, the La Perle River Resorts in Ramnagar, Uttarakhand was opened\r\nin 2004 spread over a sprawling area of 4.5 acres of land amidst verdant green\r\nforests. Well-maintained gardens and mango orchards give the perfect touch to\r\nthis resort. <b>Jim Corbett La Perle River\r\nResort</b> is a <i>top</i> wedding\r\ndestination amidst the wilderness.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">With all the luxurious facilities available\r\non your platter, it is surely one of the best jungle theme properties to let\r\nyou chill out and relax. This&nbsp;<b>Jim Corbett Resort</b>&nbsp;<span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">is located only 6 km away from Ramnagar, this resort is\r\nloved by guests for its connectivity and great location, right at the heart of\r\nthe wilderness with the Koshi River flowing in the backdrop.&nbsp; <o:p></o:p></span></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">To make it more exciting, this resort has\r\nthree party lawns. One party lawn is located in the middle of the mango\r\norchards that add the jungle vibes to your event. The second one is located by\r\nthe pool to let you enjoy pool parties. The third is located near the riverside\r\nthat is the Koshi River. This venue is a complete package of bonfires,\r\nbreakfast, lunch, and dinner as per the requirements of the guests. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Sounds exhilarating right? Plan your dream <b>destination wedding in Jim Corbett </b>in\r\nan adventurous way, yet in luxury. Take your vows near the Koshi River; let\r\nyour guests enjoy dinner near the bonfire. Plan your bachelorette party near\r\nthe poolside. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Surely, you have heard it all; don’t miss\r\nthis chance to accomplish your dream destination wedding in<b> Jim Corbett La Perle River Resort</b>. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> La Perle\r\nRiver Resorts, 6 km away from Ramnagar, Uttarakhand<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">\r\nRs. 10000/- onwards<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>The Den Corbett Resort, Ranikhet Rd,\r\nUttarakhand<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Situated in Ranikhet Rd, Uttarakhand in the\r\nmidst of a forest reserve with a grand view of the hills and the forests. The<b> </b>Den Corbett Resort could be the ideal\r\nplace for you for a forest mystical <b>destination\r\nwedding in Jim Corbett</b>. Varied facilities and arrangements are available\r\naccording to your requirement and choice of your wedding theme.&nbsp;&nbsp; <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The venue comes with added adventurous\r\nactivities like nature walks, camping, bird watching, forest safari, and much more.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Where:</span></b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"><b> </b>The Den\r\nCorbett Resort, Kumeria Reserve Forest, Ranikhet Road, Uttarakhand<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> Rs. 6000/-\r\nonwards <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">For further information about the <b>Jim</b> <b>Corbett destination wedding cost</b> get in touch with ‘I Need Trip’.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Divine ways\r\nof tying the knot at Mukteshwar<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">An epic destination for those who wish to\r\nhave a destination wedding in a serene way surrounded by lush green forests and\r\nmountains. <b>Destination wedding in the\r\nmountains</b> adds charm to your wedding. The majestic hill ambiance of\r\nMukteshwar offers easy access to mountains, forests, and other astonishing\r\nlocations to capture every moment. Get a chance to tie the knot with the one\r\nyou love like the unified bond of Lord Shiva and Goddess Parvati in the sacred\r\nland of Mukteshwar. Here’s your chance to tie the knot in the <b>top wedding destination</b> in Mukteshwar.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Digantaa Resort, Mukteshwar, Uttarakhand<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">With the growing demands in urban lifestyle,\r\nDigantaa Resort seeks to cater to every need of the guests. Located near\r\nDhanachuli, Mukteshwar, Uttarakhand, this unique place comprises all the\r\nfacilities that one looks forward to. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The wooden-style cottages provide a luxurious\r\nand comfortable living experience. The cottage rooms overlook the snow-clad\r\nmountains and the flourishing green forests. It is the perfect venue for a <b>destination wedding in Mukteshwar</b>.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">There are around 43 wooden cottages and are\r\nnamed after the Kumaon birds like Magpie, Myna, Yuhina, and Tesia. Interesting\r\nright? The unique way of naming was mainly to connect with nature and the\r\nenvironment of this region.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">It is the only resort that follows the\r\nphilosophy of Ancient Indian Ayurvedic Tradition of Panchmahabhoot Shabd\r\n(Sound), Roop (Vision), Sparsh (Touch), Ras (Taste), and Gandh (Smell).<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Cuddled up in a rich green 10-acre orchard in\r\nthe lap of the mighty Himalayan Mountain region overlooking the snow-covered\r\npeaks and the green forests, the Digantaa Resort welcomes you. If your dream <b>destination wedding</b> is in the foothills\r\nof the Himalayas, connecting to Mother Nature and getting unified with your\r\nbetter half in a divine way, this spot is simply waiting for you. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Where:</b> Digantaa Resort, Dhanachuli,\r\nMukteshwar, Uttarakhand<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\"><b>Price:</b> Rs. 4700/- onwards <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Casa Dream The Resort, Satbunga, Uttarakhand<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">There is something romantic and magical about\r\nthis place. Situated in the beautiful hilltop village town of Satbunga,\r\nMukteshwar, Uttarakhand, Casa Dream The Resort brings in the concept of a\r\nluxurious woody hilltop wedding right below the stars. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Tying your knot on top of a hill right\r\nbeneath the stars is truly an exceptional feeling. The resort has a lawn with\r\nbeautiful flowers and forests surrounding it. With decorated flowers, lamps,\r\nlights and lanterns it truly gives a fairytale woodland feeling. Picture\r\nyourself taking your vows in the daytime and at night enjoy a bonfire and dine\r\nout right below the stars. For a grand unforgettable <b>destination wedding in Mukteshwar</b>, this could be it.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> Satbunga,\r\nBhowali-Ramgarh-Mukteshwar Road, Uttarakhand<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> Rs. 7567/-\r\nonwards<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Tying the\r\nknot the royal way in Jaipur, Rajasthan<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Want to do it the royal way? A destination\r\nwedding in Jaipur is a combination of the castle, vintage architecture, and\r\ntraditional Rajasthani attire. Dress like the beautiful Princess Jodhabai like\r\nin the Bollywood movie Jodha Akbar. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Beautiful landscape with grand palaces,\r\ntemples, and walled gardens, this is definitely one of the <b>top destination wedding venues</b>, not far from Delhi to fulfill your\r\ndream <b>destination wedding</b>. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">As you wander around to take your wedding\r\nphotos, Jaipur is surely going to give you a glimpse of history. It is the\r\nideal location for couples who want to get wed in a Prince and Princess style-\r\nthe Rajasthani Royal way. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">But can’t decide on a historic venue with\r\nample palaces around, we have rounded two luxurious destinations within your\r\nreach. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Neemrana Fort Palace, Delhi - Jaipur\r\nExpressway, Neemrana, Rajasthan<o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Only a few kilometers away and close to\r\nJaipur, this grandiose fort is a prominent fort for couples who want to get\r\nhitched in a palace. This fort is located on a hill and has lawns in the form\r\nof hanging gardens. With its architectural designs with the backdrop of\r\ndeserted hills and vegetative growth, organizing a <b>destination wedding</b> here would be dreamlike. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Also, offers post-wedding activities like\r\ncultural performances, camel cart ride, vintage car ride, and even a gripping\r\nzip lining tour. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Crash in to enjoy this mesmerizing\r\nexperience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\"> Neemrana\r\nFort Palace, Delhi-Jaipur Expressway, Neemrana, Rajasthan<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;Rs\r\n5,400 onwards <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i style=\"\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Rambagh Palace, Jaipur, Rajasthan <o:p></o:p></b></span></i></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Most talk of the town destination wedding\r\nvenue that has been popular for a couple of decades now. So what’s making this\r\nplace in the news? The famous Hollywood celebrity couple Katy Perry and Russel\r\nBrand got engaged here. Also, the movie ‘Lamhe’ starring Sridevi and Anil\r\nKapoor was shot in this location. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Don’t you want to feel like a celebrity and a\r\nprincess? Get hitched in this <b>destination\r\nwedding venue around Delhi</b>, located in Rambagh, Jaipur. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Where:&nbsp;</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Rambagh,\r\nBhawani Singh Rd, Jaipur, Rajasthan <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Price for\r\none night:</b></span><span style=\"font-size:12.0pt;line-height:115%;font-family:\r\n&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">&nbsp;Rs.\r\n30000/- onwards&nbsp; <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>Why </b></span><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>iNeedtrip</b><span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><b>? <o:p></o:p></b></span></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">If y<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">ou are planning </span>for a destination wedding that has serene beauty\r\nand utmost peace, <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">spellbinding\r\nwedding destinations in and around Delhi </span>is the place for you. If <span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\">you want to </span>know more in\r\ndetail about the destination wedding venues, you can get in touch with\r\niNeedtrip as per your needs.<span style=\"background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial;\"><o:p></o:p></span></span></p>',NULL,'2021-08-17 09:42:46','2021-08-17 09:42:46',NULL,1,'',0,0,'Perfect Wedding Destinations, Wedding Destinations, Destination Wedding Venue, Top Wedding Destination','To keep it a fun-filled hush-hush affair we have traced out the dreamy destination wedding venues.','Dreamlike Picture-Perfect Wedding Destinations in & Around Delhi','[\"152\",\"151\",\"150\",\"122\",\"121\",\"120\",\"119\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(96,'An Exhilarating Trip Through The 7 Tals of Nainital','an-exhilarating-trip-through-the-7-tals-of-nainital','1635237780_blog.jpg','1632751555.webp',NULL,'Manjeet Thakur','2021-09-01',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The foremost thing that strikes our mind when\r\nsomebody says Nainital, is its Lakes! Also, did you know it takes its name from\r\nLake Naini, which is one of the well-known lakes in Nainital. It is nothing\r\nunexpected that the lakes in Nainital are the main attraction sites for the\r\ntourists! In case you are hoping to spend some hush-hush moments and simply\r\nlazing around, Nainital is the ideal spot to make a beeline for.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">There are many vacation spots in Nainital\r\nhowever what stands out enough to be noticed are the lakes that offer an\r\neye-catching sunset view. Why not go to Nainital on a solo trip or for a\r\nvacation with friends and family. Book stunning <b>Nainital Tour&nbsp;Package</b>!&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">During sunset you can enjoy a boat ride along\r\none of the lakes in Nainital or you can simply take a long walk around the\r\nlakes. You can also enjoy waterfalls close to some of these lakes to partake in\r\nthe lush green views of this hill station or you can go trekking in the\r\nmorning. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Naini, Sattal, Sariyatal, Bhimtal are some of\r\nthe well-known beautiful lakes in Nainital that you should visit. Explore all\r\nthe top tourist attractions in Nainital with <b><a href=\"https://www.ineedtrip.com/tour-destination/nainital/\">Nainital Package</a></b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Top Mesmerizing\r\nTals Of Nainital<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b><i>1. Naini\r\nLake</i><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Nainital gets its name from Lake Naini, which\r\nis encircled by seven mountains. This striking lake is in the core of the city\r\nand is, undoubtedly, perhaps the most wonderful lake in Nainital. Go boating\r\nand catch the radiant nightfall here. The perfect Instagram snap-shots you are\r\nhoping to post online!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">You can choose paddle boating or for rowing\r\nthe boat depending on what you prefer to do. Enjoy sitting by the lake and\r\nabsorb the dusk in case you are doubtful of going boating at all. The cool wind\r\naround the lake makes it the ideal spot to take a long stroll in the twilight.\r\nEnsure you plan your outing in the right season, so you are not upset by the\r\nbuzzing throngs of vacationers. Opt for popular&nbsp;<b>Nainital&nbsp;Tour&nbsp;Packages</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><i style=\"\"><b>2. Bhimtal\r\nLake</b></i><b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Bhimtal Lake is situated close to the Bhimtal\r\ntown. It is only 20 km away from Nainital. Encircled by green trees, the shade\r\nof the trees thinks about the water, making it a great picture! Since it isn\'t\r\npretty much as jammed as the other lakes in Nainital, drifting here is\r\npleasurable, and you can enjoy the sunset quietly. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">In case you are in love with the lake, you\r\nare likely to get lost in the sounds of the water as you column the boat and\r\nfeel contented and stress-free. A <b>Nainital\r\ntrip</b> takes you to the charming tourist attraction sites in&nbsp;Nainital.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b><i>3.\r\nNaukuchiatal Lake</i></b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Naukuchiatal Lake is one of the deepest lakes\r\nin Nainital. It is a well-known destination for boating, yachting and\r\ncushioning, and is also visited by bird watchers and nature photographic\r\nartists. Among all lakes in Nainital, Naukuchiatal is important for its\r\nthrilling paragliding facilities. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Naukuchiatal is recognized for leading its\r\nrenowned \' Escape Festival\' in the month of May. Book your <b>Nainital Tour</b>&nbsp;Packages&nbsp;with guaranteed best rate.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><i><b>4. Sattal\r\nLake</b></i><b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Settled in the core of thick oak and fine\r\nforests, Sattal offers a fine understanding into the natural splendor of\r\nNainital. Its name in a real sense means \'The Seven Lakes\'. Sattal Lake is a\r\ncongregation of seven interconnected freshwater lakes. Sattal is perhaps the\r\nmost eminent lake in Nainital for bird watching. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Being mostly unpolluted, the lake is visited\r\nby various transient bird species consistently. The lake is a renowned fishing\r\ndestination. However, visitors are permitted to fish in this lake only after\r\nhaving acquired a license from the authorities. Boating and camping are some of\r\nthe activities conducted in Sattal Lake. Check out exciting deals for your next\r\n<b>Nainital trip</b>!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b><i>5. Khurpatal\r\nLake</i><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Khurpatal probably isn’t one of the famed\r\nlakes in Nainital, however it is unquestionably one that merits visiting.\r\nSituated in the pine, deodar, and cedar forests, the Khurpatal Lake has its own\r\nmagnificence. It is also an extraordinary spot to go for trekking. You can\r\ntravel as far as possible, and the amazing dusk will remove all your weariness\r\naway with its true beauty. The <b><a href=\"https://www.ineedtrip.com/tour-destination/nainital/\">Nainital&nbsp;Tour</a>&nbsp;</b>Packages\r\ncovers all the important destinations.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><i><b>6. Sariyatal</b></i><b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Sariyatal, also known as Saritatal Lake, is\r\nsituated in the core of the city, against the background of the Himalayan\r\nhills. It\'s perhaps the most popular lake in Nainital and is generally humming\r\nwith vacationers. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The Himalayan Botanical Garden is\r\nadditionally nearby and gloats of a Butterfly Park, plant library, and a\r\nherbarium. While the passage to the lake is free, you have to pay a small\r\namount of entry fee if you are clubbing your encounter with that of the\r\nbotanical garden. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Since it is a well-liked place of interest,\r\nthere are many choices for you to gorge on while you enjoy a reprieve. Try\r\nsavoring the local fast food joints and requesting for yourself a cup of tea as\r\nyou watch the sunset, only to let you enjoy its twilight of the region. <b>Nainital&nbsp;Tour&nbsp;Package</b> for an\r\ninteresting trip!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b><i>7. Kamal Tal</i><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">As the name implies, Kamaltal Lake is\r\nwell-known for being home to hordes of lotuses. It is located opposite to\r\nNaukuchiatal and is probably the prettiest lake in Nainital that you can\'t\r\nmiss. Obviously, you should design your outing at the right season to see the\r\nlotuses blossom. You\'ll have the fortune to discover colorful fish in the lake\r\nhere. Getting the nightfall joined with a sight of the lotuses, it is truly\r\ninvaluable!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b><i>So which\r\nlake will you visit first? </i></b></span><span style=\"font-size:12.0pt;line-height:\r\n115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;mso-hansi-theme-font:\r\nmajor-latin\"><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Set up your ideal Nainital itinerary! And\r\nwhile you are at it, here is a wonderful deal on <b><a href=\"https://www.ineedtrip.com/tour-destination/nainital/\">Nainital Tour Package</a></b> with ‘I Need Trip’.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The completely clear waters of the Nainital\r\nlakes are famous for various activities. While the splendid beauty of the wood\r\nclad water bodies offers superb photographic freedoms for the shutterbugs, the\r\nlakes are additionally famous for their bird populace, and are visited by\r\nbirdwatchers from around the world. <o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">The lakes offer a beautiful area for drifting\r\nand yachting. Anglers and fishing lovers incessantly visit the lakes of\r\nNainital for the ample fishing options it offers.&nbsp;<o:p></o:p></span></p>',NULL,'2021-09-17 10:31:28','2021-09-17 10:31:28',NULL,1,'',0,0,'Book Nainital Package, Nainital Packages, Nainital Tour, Package to Nainital, Honeymoon Package Nainital, Holiday Package Nainital.','Naini, Sattal, Sariyatal, Bhimtal are some of the well-known beautiful lakes in Nainital that you should visit. Explore all the top tourist attractions in Nainital with Nainital Package!','An Exhilarating Trip Through The 7 Tals of Nainital','[\"116\",\"115\",\"114\",\"113\",\"110\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"27007, 26979, 26966, 26957, 26920\"]}'),(97,'Devbhoomi Uttarakhand, One of The Most Magical Places To Visit','devbhoomi-uttarakhand-one-of-the-most-magical-places-to-visit','1632746393_blog.webp','1642505096.jpg',NULL,'Manjeet Thakur','2021-09-06',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size:12.0pt;\r\nline-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-fareast-font-family:Calibri;mso-hansi-theme-font:major-latin;mso-bidi-font-family:\r\nCalibri\">Devbhoomi Uttarakhand, or The Land of the Gods, is one of the most\r\nmagical places that are known to mankind. The surreal landscape adorned with\r\nthe magnanimous Himalayas, the holiest of the rivers and the vivid colours of\r\nnature has made Uttarakhand a major attraction for tourists all around the\r\nglobe. On his first visit to this holy land, Mahatma Gandhi had referred to\r\nUttarakhand as ‘the Switzerland of India’ and it is not difficult to guess why.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Whether you’re consumed by wanderlust or you want to attain spiritual\r\nmastery, there is no other place more perfect for you than Uttarakhand. We, at\r\nineedtrip, have designed our&nbsp;</span><span style=\"text-align: left; font-size: 16px;\"><font face=\"Cambria, serif\"><a href=\"https://www.ineedtrip.com/tour-destination/uttarakhand/\"><b>Uttarakhand Tour Packages</b></a>&nbsp;</font></span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">keeping you in mind\r\nand we are confident that a surreal and memorable experience awaits you there\r\nwhich you will cherish for the rest of your life.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Why should you choose Uttarakhand for\r\nyour next vacation?</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The lofty mountains, pristine streams, majestic glaciers and the\r\npicturesque valleys are bound to make you fall in love with the place.\r\nUttarakhand has a long history of pilgrimages and it still attracts religious\r\ntourists to the countless temples and monasteries. The holy land will surprise\r\nyou with unmatchable spiritual and traditional diversity be it the Chardham or\r\nHemkund Sahib Gurudwara. However, the calling is not always spiritual.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Uttarakhand is also known to be the hub of adventure tourism in India.\r\nWhether you want to enjoy trekking, rock climbing, or mountain biking,\r\nUttarakhand has it all. Grab the best Uttarakhand and </span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Nainital Holiday Packages</span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">.</b><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Here are some of the must-visit places in Uttarakhand that you\r\ndefinitely shouldn’t miss!</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Dehradun</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The picturesque location of this capital city surrounded by the\r\nmajestic mountains of Mussoorie makes it a perfect place to begin your\r\nUttarakhand journey with. The city is known for its pleasant climate and the\r\nblue skies. The colonial architecture of the Forest Research Institute is\r\nsomething that you must witness.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The region also serves as a picnic spot for many. The 6-sided Ghanta\r\nGhar clock tower is one of the colonial architecture of the Forest Research\r\nInstitute is something that you must witness. The region also serves as a\r\npicnic spot for many. The 6-sided Ghanta Ghar clock tower is one of the iconic\r\nmonuments of the city.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Rishikesh</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Rishikesh is also considered as ‘the Yoga capital of the world. The\r\nyoga ashrams, grand temples, and architectural marvels make this ancient city a\r\nhub of religious tourism. Rishikesh also became popular globally when The\r\nBeatles visited this spiritual centre in 1968. The place won’t disappoint you\r\nif you’re looking for an adrenaline rush as Rishikesh is also the adventure\r\ncapital of Uttarakhand. You enjoy white water rafting, cliff jumping, kayaking\r\nand many more.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Ranikhet</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This tiny hamlet attracts backpackers from around the world who are\r\nlooking to detoxify their mind. Located in Almora district of Uttarakhand, this\r\nhill station is blessed with unspoiled natural beauty. The British-era stone\r\nbuildings and a number of beautiful temples like Dunagiri Temple and Jhula Devi\r\nTemple in Ranikhet are major attractions for tourists. The tropical weather\r\nexperienced by this hill station makes it a perfect destination for tourists\r\nall year-round.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Auli</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This hill station is located in the Garhwal region of Uttarakhand and\r\nderives its name Auli (meadows) from its characteristic topography. It is\r\nregarded as ‘the skiing capital of India’ and attracts snowfall lovers and\r\nskiing learners equally. Auli offers a panoramic view of the majestic Himalayas\r\nwhich makes it a great honeymoon destination as well. You must not forget to\r\nvisit the beautiful Chattarkund Lake with its crystal-clear blue waters and\r\nstunning watershed.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Mussoorie</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Your trip to Uttarakhand is incomplete until you visit the ‘Queen of\r\nHills’. The great author Ruskin Bond has woven countless tales around this\r\nenchanting town in his immortal books and stories. This hill station is the\r\nultimate choice for honeymoon couples because of its captivating beauty. Plan\r\nyour journey during the winter months if you want to witness snowfall and make\r\nyour trip even more romantic. Some must-see places in Mussoorie are Kempty\r\nfalls, Nag Tibba Trek, Cloud’s End and a ropeway ride to Gun Hill.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Nainital</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Referred to as ‘The City of Lakes’, Nainital gets its identity from\r\nthe awe-inspiring Naini Lake. A boat ride in this lake might be the best way to\r\nwitness the snow-capped mountains that surround this mesmerizing small town.\r\nThe place has pleasant weather throughout the year but the best time to visit\r\nwould be between March and June. You can enjoy authentic Tibetan food and shop\r\nfor woolens, handicrafts and souvenirs in the local shops on Mall Road. Check\r\nout the best </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\"><a href=\"https://www.ineedtrip.com/tour-destination/nainital/\">Nainital Tour Packages</a></b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Are you an adrenaline junkie? Treat\r\nyourself to these fun activities</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Uttarakhand is quite popular among the seekers of thrill. A trip to\r\nparadise would not be over until you experience some chill in your spine by\r\nindulging in adventure sports activities like white-water rafting and\r\nparagliding.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Owing to the topographical variety with its towering mountain peaks,\r\ndeep gorges, and mighty rivers, Uttarakhand stands out as the best destination\r\nfor adventure tourism in India. You can also check out the exciting </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Jim Corbett Jungle Safari</b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Uttarakhand Tour Package</b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">\r\nthat we offer at ineedtrip covers many of these activities so that you have a\r\nmemorable and enthralling experience!</span><br></p><ol style=\"margin-top:0in\" start=\"1\" type=\"1\"><li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Skiing<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">White water\r\n     rafting<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Bungee\r\n     jumping<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri;color:windowtext\">Kayaking</span><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\"><o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Trekking <o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Ziplining <o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Paragliding<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Elephant\r\n     safari<o:p></o:p></span></li>\r\n <li class=\"MsoNormal\" style=\"color:black;text-align:justify;mso-list:l0 level1 lfo1;\r\n     border:none;mso-padding-alt:31.0pt 31.0pt 31.0pt 31.0pt;mso-border-shadow:\r\n     yes\"><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\n     mso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;\r\n     mso-hansi-theme-font:major-latin;mso-bidi-font-family:Calibri\">Jeep safari<o:p></o:p></span></li>\r\n</ol><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The Best </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Jim Corbett Tour\r\nPackage</b><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> is waiting for you for an exciting jeep and elephant safari.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Experience the best authentic dishes\r\nof Uttarakhand</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The traditional cuisine of Uttarakhand is simple to prepare, highly\r\nnutritious and are packed with flavour of the local aromatics from the\r\nmountains. The two distinct regions of Kumaon and Garhwal have their own\r\ndistinctive cultures and culinary traditions which change according to the\r\nchanging seasons. Dubkas with Chholia Rotis are enjoyed in summer while people\r\nprefer Madua Rotis and Til Laddus in winter.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><i><b>Some of the popular dishes that you must try on your visit to\r\nUttarakhand are:</b></i></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Phaanu</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This rather complicated dish is most popular in the Garhwal region.\r\nPhaanu is prepared using a variety of dals (lentils) which are soaked for about\r\n4-6 hours before use. It is essentially a soup that is usually served with\r\nrice. Have a unique experience tasting this authentic dish of Uttarakhand in\r\nyour </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Uttarakhand Tour Package.</b><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Bhang Ki Chutney</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The chutney, prepared from Hemp seeds, gets its tangy taste from\r\ntamarind and it enhances the taste of every other dish with its fresh aroma\r\ndish with its fresh aroma and unique taste that lingers in your mouth for a\r\nwhile. Don’t forget to try the Bhang ki chutney during your </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Nainital trip</b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Kafuli</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This highly nutritious delicacy is a thick gravy preparation which is\r\nmade using leafy vegetables like spinach and fenugreek.</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">&nbsp; </span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Rice paste is added to provide thickness to\r\nthe dish and is garnished with pure ghee and served piping hot.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Kandalee ka Saag</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This popular dish is prepared from leaves of Kandalee, locally known\r\nas Bichhu Ghas as it causes irritation to skin because of the presence of\r\nformic acid. It is very popular among tourists and locals alike.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Urad ke Pakode</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This spiced fritter is prepared using urad dal or split black grams\r\nand is served as snacks or as accompaniments during the main course. These\r\ndeep-fried balls are served hot with chutney and are traditionally served\r\nduring family functions.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Gulgula</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This delectable dessert of Uttarakhand is quite popular as a local\r\nsnack. It is made using jaggery and although it has become quite popular in\r\nmany North Indian cities, it traces its origin to the Garhwal region of\r\nUttarakhand.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\"><b>Singori</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">It is a Kumaoni sweet that is made with Khoya and wrapped in maalu\r\nleaf, which is found on the slopes of Uttarakhand. Singori is very similar to\r\nKalakhand. Grated coconut is also added to the Khoya mixture which gives it a\r\ndistinctive taste.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Rus</b><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Also known as Thhatwani, this popular dish of Kumaon is prepared by\r\nlentils and is highly nutritious yet appetizing. A mixture of various pulses is\r\ncooked on a low flame in an iron vessel and a kind of stock is prepared from\r\nwhich the lentils are removed later. The stock is served in winters with\r\nsteamed rice and bhang ki chutney. </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\">The\r\nUttarakhand tour package</b><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> lets you experience the best dishes.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b style=\"font-family: Cambria, serif; font-size: 12pt;\">Best markets in Uttarakhand: What to\r\nbuy and from which market?</b><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Awaken the shopaholic in you as you will find a lot of unique things\r\nto buy in Uttarakhand, from the traditional to the exotic. Whether you want to\r\nbuy a memorable souvenir or want to explore the handicrafts markets, shopping\r\nwill make your travelling experience even more exciting.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:Calibri\"><b>Paltan Bazar</b></span></i><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This popular market of Dehradun is located near the famous landmark of\r\nDehradun Clock Tower. You can find the much-famed basmati rice, shoes, apparel\r\nand other handloom products at a reasonable rate in this market</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:Calibri\"><b>Mall Road, Nainital</b></span></i><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This busy commercial centre runs beside the Naini Lake. The place is\r\ndotted with hotels, restaurants, and shopping centres, which sell handicrafts,\r\nwooden artefacts and shawls. Do remember that it’s a no parking zone and the\r\nroad is completely closed for vehicles during the peak tourist season. During\r\nyour </span><b style=\"font-family: Cambria, serif; font-size: 12pt;\"><a href=\"https://www.ineedtrip.com/tour-destination/nainital/\">Nainital tour</a></b><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> do remember to\r\nshop here.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:Calibri\"><b>Lal Bagh Market</b></span></i><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This popular market of Almora is a must-visit for tourists who visit\r\nAlmora. You can find everything from copper and brassware to clothes made from\r\nrabbit wool! This is also a perfect place to shop for souvenirs and\r\nhandicrafts.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><i><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:Calibri\"><b>Laxman Jhula Market</b></span></i><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">This marketplace in Rishikesh is the best place to shop at when you’re\r\nin Rishikesh. Primarily, the shops here sell religious artefacts and pooja\r\nessentials like idols of Gods to authentic rudrakshas. There are some shops\r\nthat sell wooden artefacts and jewellery as well.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>When is the best time to visit\r\nUttarakhand?</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">If you want to take part in the Chardham Yatra or try adventure sports\r\nactivities, you may want to plan your vacation in the summer months of March\r\nand April. However, if you want to avoid the peak season rush, then September\r\nand October would be perfect for a cosy vacation.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>When is the best time to experience\r\nsnowfall in Uttarakhand?</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">If you want to catch the snowfall, schedule your visit from December\r\nto mid-February. Auli, being the skiing capital of Uttarakhand, is the primary\r\ndestination for winter tourism as its slopes are blanketed with snow. Other\r\npopular destinations include Mussoorie, Nainital, and Ranikhet. Get the </span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Nainital tour package</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> to experience the\r\nbest vacation.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-size:12.0pt;line-height:115%;font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-fareast-font-family:Calibri;mso-hansi-theme-font:\r\nmajor-latin;mso-bidi-font-family:Calibri\">What language is spoken in\r\nuttarakhand?&nbsp;</span></b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Hindi is the most spoken language in Uttarakhand, although the local\r\nlanguages include Kumaoni, Garhwali, and Jaunsari.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>What is the best way to reach\r\nUttarakhand?<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Tourists usually go to Dehradun first which is in close proximity to\r\nother popular tourist destinations like Rishikesh, Mussoorie, and Haridwar. The\r\nfastest way to reach Dehardun would be by taking a flight from New Delhi to\r\nDehradun. From Dehradun, you can reach anywhere in the state using the bus\r\nservice or by booking a private cab or taxi right outside the Jolly Grant\r\nAirport.</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">&nbsp;</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Uttarakhand tour package</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> will help to fulfill your dream vacation\r\nto explore all the best tourists’ places.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>What should you buy while shopping in\r\nUttarakhand?</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">The popular items to look for are woollens, handicrafts and local\r\nwine. Crafts practised by local tribes including Ringaal and Rambaans, spices,\r\nwooden artefacts and copperware are some unique items to shop for in\r\nUttarakhand.</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-size: 12pt; line-height: 115%; font-family: Cambria, serif;\"><b>Don’t wait! Explore with I Need Trip</b></span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">A trip to the holy land of Uttarakhand is bound to be a spiritual and\r\nfun experience. The&nbsp;</span><span style=\"text-align: left; font-size: 16px;\"><font face=\"Cambria, serif\"><a href=\"https://www.ineedtrip.com/tour-destination/uttarakhand/\"><b>Uttarakhand Tour</b></a>&nbsp;</font></span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Packages</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> offered by ineedtrip provide you the ultimate vacation experience\r\nthat blends elements of cultural tourism and spirituality with enthralling\r\nadventure activities and guarantees you a memorable time of your life.</span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, serif; font-size: 12pt;\">You can easily customize your Uttarakhand Tour Package on our website\r\nin a few simple clicks. You can also check out </span><span style=\"font-family: Cambria, serif; font-size: 12pt;\">Nainital holiday package</span><span style=\"font-family: Cambria, serif; font-size: 12pt;\"> and </span><a href=\"https://www.ineedtrip.com/detail/tour-package-for-jim-corbett-national-park/independence-day-package-la-perle-river-resorts-140-3-27173-1-0.html\"><b>Jim Corbett La Perle Riverside Resort</b></a><b style=\"font-family: Cambria, serif; font-size: 12pt;\"></b><span style=\"font-family: Cambria, serif; font-size: 12pt;\">.</span><br></p>',NULL,'2021-09-17 11:05:44','2021-09-17 11:05:44',NULL,1,'',0,0,'','','','[\"116\",\"115\",\"114\",\"113\",\"110\",\"1\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"23333, 27007, 26979, 26966, 26957, 26920\"]}'),(98,'Reasons to Choose Jim Corbett La Perle River Resort','reasons-to-choose-jim-corbett-la-perle-river-resort','1691410081_blog.jpeg','1632751232.webp',NULL,'Manjeet Thakur','2021-09-19',NULL,NULL,NULL,'<p style=\"text-align: justify; \">La Perle River Resorts is a charming resort situated on the bank of River Kosi. The name La Perle was launched in the year 2004 with. The resort covers an area of around 4.5 acre of land with 19 luxury rooms with breathtaking views. The gardens are all around kept up in Mango Orchards with an ideal blend of wild and nature.</p><p style=\"text-align: justify; \">Jim Corbett La Perle River Resort is among the best wilderness properties with every one of the sumptuous facilities available to let you relax and at the same time enjoy some adventurous and leisure activities. The nearest railway station is Ramnagar which is only 6 km away. Explorers love this Resort for its breathtaking mountain views and river Kosi flowing beside.<br></p><p style=\"text-align: justify; \"><b>Room information about La Perle River Resort</b><br></p><p style=\"text-align: justify; \">Awakening to vistas of dawn, night falls and magnificence of the slopes make it a superb convenience for its explorers. For a reviving weekend escape, look into this alleviating design which is a mix of closeness and isolation. There are 20 Premium rooms and cottages in <b>Jim Corbett La Perle River Resort</b> and are named as Tiger Den cottages, Leopard Lair rooms, and Elephant Park rooms.<br></p><p style=\"text-align: justify; \">All rooms are beautifully designed as the name suggests and have grand views confronting either the garden or the River Kosi. The rooms have air conditioners and all the required modern amenities. Further, the rooms are soundproof, have blackout curtains and offer free newspapers to read.<br></p><p style=\"text-align: justify; \">Jim Corbett La Perle River Resort offers free WiFi and free parking is available. Along with the garden, there are barbecues and picnic areas. Also, a sitting area for the guests, TVs and free toiletries are among different conveniences accessible to guests. You can go for Housekeeping on demand. This accommodation offers separate sitting regions. Washrooms include a shower, slippers and free toiletries. Recreational amenities at the resort include an outdoor swimming pool in the midst of a great view. Kids play area is also available.<br></p><p style=\"text-align: justify; \"><b>Facilities at La Perle River Resorts</b><br></p><p style=\"text-align: justify; \">It provides: Free Parking, Kids Play Area, Entertainment, Indoor &amp; outdoor sports, Restaurant, Dining Area, Barbeque, Bonfire, Conference Room, Business Centre, Banquet, Lawn, Reception, CCTV, Security, Kitchenette, Gym, First-aid Services, Wheelchair, Mail Services, Medical Centre, Doctor on Call, Ticket/Tour Assistance, Bellboy Service, Wake-up Call<br></p><p style=\"text-align: justify; \">Basic facilities in this Jim Corbett Resort: Free Parking, Kitchenette, Air Conditioning, Room Service, Power Backup, Bathroom, Laundry Service, Wi-Fi, Intercom, Housekeeping, Newspaper, Public Restrooms, Swimming Pool<br></p><p style=\"text-align: justify; \"><b>Dining in La Perle River Resort</b><br></p><p style=\"text-align: justify; \">La Perle River Resort has a multi cuisine restaurant which serves healthy continental and savoring Chinese and Indian cuisines. You can also enjoy a candle light dinner near the riverside in this <b><a href=\"https://www.ineedtrip.com/tour-destination/jim-corbett-national-park/\">Jim Corbett Resort</a></b>.<br></p><p style=\"text-align: justify; \"><b>Activities at La Perle River Resorts</b><br></p><ol><li style=\"text-align: justify;\">For the wildlife enthusiasts, Jim Corbett La Perle River Resort can organize a jeep, canter or elephant safari for you in Jim Corbett based on the availability. Also, offers nature walks and long stay Jim Corbett Safari.<br></li><li style=\"text-align: justify;\">Guests can enjoy a bonfire, live music, and fun games.</li><li style=\"text-align: justify;\">Guides are available for local sightseeing in Corbett</li><li style=\"text-align: justify;\">We offer solutions for MICE, DJ, cocktails, safaris and adventure activities for corporate houses.</li><li style=\"text-align: justify;\">Arrangement of candle light dinners, cakes and flowers for honeymooners.</li><li style=\"text-align: justify;\">Indoor game facilities are available like carrom board, chess, cards &amp; darts</li><li style=\"text-align: justify;\">Meditation (on prior booking), special arrangement for live music (on prior booking), outdoor games like badminton, swimming pool and cycling</li><li style=\"text-align: justify;\">If you want a fairytale wedding, La Perle River Resort is one of the best choices for a Destination Wedding in Jim Corbett.</li></ol><p style=\"text-align: justify; \"><b>Adventure Activities to indulge in</b><br></p><ol><li style=\"text-align: justify; \">Jungle Safari (On Prior Booking)<br></li><li style=\"text-align: justify;\">River Crossing</li><li style=\"text-align: justify;\">Trekking (On Prior Booking)</li></ol><p style=\"text-align: justify; \"><b>Jim Corbett Local Sightseeing&nbsp;&nbsp;</b></p><ol><li style=\"text-align: justify; \">Jim Corbett Jungle Safari<br></li><li style=\"text-align: justify;\">Visit to the Garjia Temple</li><li style=\"text-align: justify;\">Visit to the Corbett Water Fall</li><li style=\"text-align: justify;\">Corbett Museum</li><li style=\"text-align: justify;\">Dhangarhi Museum</li><li style=\"text-align: justify;\">Jim Corbett City Ramnagar</li></ol><p style=\"text-align: justify; \"><b>A leisure holiday awaits you....</b></p><p style=\"text-align: justify; \">Pick a room according to your budget. For booking Jim Corbett La Perle River Resort, you can sign on to the site or any renowned travel site. Pick a date and select a room of your choice. Make payment and prepare to stay near Jim Corbett Riverside resort and at the same time explore Jim Corbett national park. Also, organize a Destination Wedding in Jim Corbett!<br></p><p style=\"text-align: justify; \">Jim Corbett La Perle River Resort, situated in the Dhikuli region, is a well known decision for explorers. From here, guests can capitalize on all that Jim Corbett has to bring to the table. With its advantageous location, the property offers access to Jim Corbett’s wilderness. Don’t forget to check out <b>Jim Corbett Destination Wedding Cost</b>, if you want to have a dreamlike wedding!<br></p><p style=\"text-align: justify; \"><b>Jim Corbett La Perle River Resorts Address</b><br></p><p style=\"text-align: justify; \">La Perle River Resorts<br></p><p style=\"text-align: justify; \">Jim Corbett Park</p><p style=\"text-align: justify; \">Village &amp; P.O. Laduachaur</p><p style=\"text-align: justify; \">Ramnagar, District Nainital</p><p style=\"text-align: justify; \">Uttarakhand India</p>',NULL,'2021-09-20 20:30:05','2021-09-20 20:30:05',NULL,1,'',0,0,'Jim Corbett Destination Wedding Cost, Destination Wedding Jim Corbett, Book Jim Corbett La Perle River Resort, La Perle River Resort','La Perle River Resorts is a charming resort situated on the bank of River Kosi. The name La Perle was launched in the year 2004.','Reasons to Choose Jim Corbett La Perle River Resort','[\"144\",\"143\",\"142\",\"140\",\"122\",\"121\",\"120\",\"119\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"27217, 27215, 27208, 27205, 27173, 27038, 27031, 27029, 27026\"]}'),(99,'Best Reasons to Book Flights with ‘I Need Trip’','best-reasons-to-book-flights-with-‘i-need-trip’','1635236970_blog.jpg','1635175515.jpg',NULL,'Manjeet Thakur','2021-10-24',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">For individuals who are enthusiastic about traveling to new\r\ndestinations, exploring must never stop. Yet, to be traveling a lot requires\r\nmoney and one of the significant things that can assist you with saving it is\r\nto reduce your flight expenses. In case you are somebody who needs to travel\r\nconstantly, it\'s basically impossible that you would hang tight for that\r\noff-season or festive season when most airlines offer special fares. In\r\nactuality, you can avail a lot of discounts on your <b><a href=\"https://www.ineedtrip.com/flight\">flight booking</a></b> whenever you want. But you simply need to follow the\r\ntricks to book your flights.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">1. Great flight deal site<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">When searching for <b>flight\r\ndeals</b> and offers you presumably will have the best karma in case you are\r\nflexible with your travel dates. You should be adaptable with options like\r\ndates, airports, and you’re your destination areas. And to track down\r\nincredible flight deals you can use \'I Need Trip\'.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Ineedtrip.com is perhaps the best site out there for\r\navailing of heavily discounted offers and deals. It lists all the major and budget airlines.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">2. Easy to compare &amp; buy flight\r\ntickets<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Most of the travel sites show low flight fares, but as you\r\ncheck out the fare increases with all the additional taxes, etc. Thus, we propose\r\nyou go for search engines like Ineedtrip.com where you can get low flight\r\nfares, and most importantly there isn’t much change in the flight price even\r\nwhen you check out. What you need to do is just compare the airfares of\r\ndifferent airlines. Now go forward to <a href=\"https://www.ineedtrip.com/flight\"><b>book flight tickets</b></a><b> </b>which offer the cheapest airfares.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">3. Option to choose to book on the\r\ncheapest day<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">If you\'re an evening person, this stunt is intended for you.\r\nIf you\'re not, it\'s an ideal opportunity to be one! You inquire: Is it possible\r\nto get cheap flight tickets\r\nthroughout the week? Tragically, no! Concurring to research, if you book your\r\nflight tickets at 12 pm between Mondays to Wednesdays, you can get cheap flight tickets. So, stay alert to\r\nsave more!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">4. Displays the best budget airlines\r\nfirst<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Budget airlines\r\noffer altogether cheap tickets than\r\ntheir full-service partners. However, this accompanies compromises, for\r\nexample, less extra space and no free food or drinks, which incidentally, is\r\ntypically shrouded in your higher-priced ticket with full-service airlines. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Choose the way you want to fly based on your budget!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><span style=\"font-size:12.0pt;line-height:115%\">5. Helps to find the cheapest place\r\nto fly</span></b><br></p><p class=\"MsoNormal\" style=\"text-align: justify;\">If you have already chosen the destination to spend your\r\nvacation or you are searching for the cheapest country to spend your vacation,\r\n\'I Need Trip\' is an incredible site to get the craving for new experiences,\r\nexplore, and save some money. Bounce on this site and enter your flight city,\r\nthen, select a date to fly. <b><span style=\"font-size:12.0pt;line-height:115%\"><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">You can check out the approximate costs of most of the destinations\r\non the site then select the one which best suits your budget. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">6. Don’t wait to book, if you know\r\nwhen you’re traveling<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Airline tickets</b>\r\nrarely get less expensive as your flight date draws near, particularly if you\r\nneed to fly on a specific date. Budget\r\nairlines normally offer low rates as a gauge cost, and as these tickets are\r\nsold out, the last remaining seats rise in cost. If you know when and where\r\nyou\'re going, don\'t lookout for an obscure deal. As a rule, your biggest\r\nsavings come from booking well in advance.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:12.0pt;line-height:115%\">7. Easy to set up price alerts<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">When you visit our pages, do make sure to set fare alerts.\r\nBy doing this, you will become acquainted with the special offers that we are\r\nproviding before they sell out and empower you to book cheap flight tickets. You can likewise follow our pages on Facebook\r\nand Twitter. You can compare our site and site of budget airlines like GoAir,\r\nAirAsia, SpiceJet, and Indigo to check out the offers.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:14.0pt;line-height:115%\">Trending Domestic Destinations &amp;\r\nFlight Booking Offers<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Goa:</b> </i>Goa is cheap,\r\nyet if you wish to visit during their high season, you should book 24 weeks\r\nahead of time. You can save 32 percent on your flight ticket price.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Mumbai:</b> </i>As one of\r\nthe large urban areas in India, tickets to Mumbai can get very costly in case\r\nyou\'re flying from abroad. To stay away from extravagant costs on the <b>airline ticket</b>, decide to book 22 weeks\r\nahead of time and get to save around 41 percent on flight ticket price.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Delhi:</b> </i>The capital\r\nof the country is also comparably costly. Thus, book 23 weeks ahead of time and\r\nget great flight discounts and\r\noffers, you actually save 60 percent on the airline ticket.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Bangalore:</b> </i>Book\r\nyour flight tickets basically 22 weeks ahead of time; you actually save 44\r\npercent on the flight tickets.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:14.0pt;line-height:115%\">Trending International Destinations\r\n&amp; Flight Booking Offers<o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Dubai:</b> </i>The ticket\r\nprices are not extremely high for Dubai; however it changes depending on the\r\npeak season. So, book Dubai flight\r\ntickets at least 14-19 weeks ahead of time; you actually save 22 percent on\r\nthe Dubai flight tickets. <i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><i><b>Maldives:</b> </i>Book\r\nyour Maldives flight tickets well\r\nahead of time to get the best prices. The best month to fly down to Maldives is\r\nfrom November to April. This is also the high tourist season to book flights to Maldives. The climate\r\nis great, radiant, and brilliant for you to travel around the islands.&nbsp;<br></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>London:</b> </i>London is\r\nan extravagant city; you can fly down to London at any time of the year. So,\r\nbooking in advance is very important here. You may need to book 24 months ahead\r\nof time to save around 22 percent on airline tickets.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>New York:</b> </i>The flight prices<b> </b>to New York City are\r\nquite high. Good planning is very important and you might need to book at least\r\none year ahead of time to save around 18 percent on airline tickets.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><i><b>Bali:</b> </i>Want to fly\r\ndown to Bali for your next vacation? Book at least 25 weeks ahead of time and\r\nsave around 51 percent on your flight tickets.<i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><i><b>Bangkok:</b> </i>Bangkok\r\nis one of the budget destinations to explore, however it can cost you more on\r\nyour flight tickets if do not book in advance. So, try to book your tickets 22\r\nweeks in advance if you want to save 44 percent on your flight tickets. <i><o:p></o:p></i></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><span style=\"font-size:14.0pt;line-height:115%\">Want to book your flight tickets? <o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Now it’s possible to book flights at the cheapest fare? For\r\nall you travel aficionados who are consistently in a hurry, we have an offer\r\nfor you that will help you <a href=\"https://www.ineedtrip.com/flight\"><b>book cheap flights</b></a><b></b>. In this way, prepare to travel to any destination without having\r\nto worry to spend more on your airline tickets.<o:p></o:p></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \">Let ‘I Need Trip’ play the trick for you!</p>',NULL,'2021-10-25 20:55:16','2021-10-25 20:55:16',NULL,1,'',0,0,'Flight Tickets, Book Flight, Cheap Tickets Online, Book Online Flight Tickets, Buy Flight Tickets, Ticket Prices, Budget Flight Tickets.','You can avail a lot of discounts on your flight booking whenever you want. But you simply need to follow the tricks to book your flights.','Best Reasons to Book Flights with ‘I Need Trip’ - Book Flight Tickets','[\"174\",\"171\",\"170\",\"28\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"28368, 28186, 28177, 25156, 24735, 24614, 22909\"]}'),(100,'Top Popular Watersports Activities in Maldives You Must Try','top-popular-watersports-activities-in-maldives-you-must-try','1636552354_blog.jpg','1643623793.jpg',NULL,'Manjeet Thakur','2021-11-06',NULL,NULL,NULL,'<p style=\"text-align: justify; \">Maldives is an incredible holiday destination for you to relax and enjoy water sports. In case you\'re uncertain with regards to the choices accessible, you\'ve gone to the perfect spot! We\'ve assembled an extensive rundown of the water sports in the Maldives that you can opt for a remarkable getaway.&nbsp;</p><p style=\"text-align: justify; \">From a romantic backdrop for a honeymoon or beach wedding to a loose and calming environment for a family tour to invigorating choices for adventure, Maldivian Island brings something to the table every individual. The stunning settings of the island, comprising of cold white beaches with turquoise lagoons around them and lavish palm trees make an alleviating picture. An amazing coral garden underneath the Indian Ocean makes the island more excellent. Maldives Tour Package, don\'t miss out on a dream holiday!</p><p style=\"text-align: justify; \"><b>Take your pick!</b></p><p style=\"text-align: justify; \">In addition to these, the island vows to keep you engaged all through your outing alongside giving a relaxed environment. You have unlimited options of water sports to get occupied with. Find a cheap <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Package</a></b>!</p><p style=\"text-align: justify; \"><b>1. Scuba Diving</b></p><p style=\"text-align: justify; \">If you want to try out scuba diving, Maldives sits pretty high on the rundown. The warm, shimmering waters of the Indian Ocean give the ideal conditions to a flourishing underwater world loaded up with marine life including eels, dolphins, turtles, rays, and sharks (the cordial kind). Book your Maldives Honeymoon Package at the best prices!</p><p style=\"text-align: justify; \"><b>2. Catamaran sailing&nbsp;</b></p><p style=\"text-align: justify; \">Let the quiet, lilting waters of the Indian Ocean serenade you as you relax on a glorious catamaran! These sailboats offer you privacy, luxury, and mesmerizing holiday feeling as you unwind with a friend or family member and partake in the dynamite scenes of Maldives. If you watch the sunset on a catamaran, it truly is a different feeling! Check out the popular Maldives Package!</p><p style=\"text-align: justify; \"><b>3. Flyboarding&nbsp;</b></p><p style=\"text-align: justify; \">When you pursue any flyboarding tour in The Maldives, you will have an individual watercraft or PWC to which the water hose is joined to. This PWC moves alongside you and channelizes the seawater through the stream spouts with the goal that you can be moved into the air via the water pressure. Maldives Tours for a thrilling vacation! Maldives Package for an exciting and fun vacation!</p><p style=\"text-align: justify; \"><b>4. Jet Skiing</b></p><p style=\"text-align: justify; \">Jet skiing is accessible on pretty much every various island in The Maldives. You can get the absolute best rates at public islands which are possessed by the local Maldivians. In any case, if you end up having your vacation booked at a private island resort, you can exploit their water sport activities. Kuramathi, Vilamendhoo Island Resort &amp; Spa, and Sun Island Resort &amp; Spa and are only a couple of the innumerable retreats that will cheerfully offer you a fly ski insight. Male and the island of Hulhumalé also have ample activities like jet skiing. Magical holiday experience with Maldives Tours!</p><p style=\"text-align: justify; \"><b>5. Parasailing</b></p><p style=\"text-align: justify; \">For parasailing, you are made to fly with a parachute which is pulled by a high speedboat. The experience is thrilling and amazing to witness the sea below. As you fly above the Maldives Island, see its magnificence, you are stroked by the reviving breeze, making parasailing even more pleasant.&nbsp; Maldives Package for a breathtaking vacation!</p><p style=\"text-align: justify; \"><b>6. Surfing&nbsp;</b></p><p style=\"text-align: justify; \">No beach holiday is thrilling without enjoying surfing! Overwhelm the waves as you ride the sea in the entirety of its magnificence in Maldives. First, try the stand-up paddling and afterward continue to surf. Opt for <a href=\"https://www.tripsgateway.com/holidays/maldives/maldives-tour-packages\">Maldives Tour Package</a> for a soothing vacation!</p><p style=\"text-align: justify; \"><b>7. Fun tube</b></p><p style=\"text-align: justify; \">The tube has fun in its name what more do you want!? This gathering ride comprises a bed-like cylinder where you can sit with your gang, and ride through the dazzling blue ocean! This is the encapsulation of laid-back fun joined with the rush of speed. Try not to pass up these insane water sports in Maldives.</p><p style=\"text-align: justify; \"><b>8. Kayaking&nbsp;</b></p><p style=\"text-align: justify; \">This is one of the most well-known adventure sports in the Maldives, and for a valid justification as well. Discover and experience the shoreline at your own speed as you become a part of the influencing waves, and watch your anxieties dissolve away! Enjoy the most with a perfectly priced <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Honeymoon Package</a></b>!</p><p style=\"text-align: justify; \"><b>9. Snorkeling</b></p><p style=\"text-align: justify; \">If you love wondering about and appreciating the exotic fish, however you\'re not exactly certain enough to go scuba diving, then snorkeling is best for you. All Maldives resorts have snorkeling equipment that is accessible for you to enlist, or on the other hand, if you anticipate doing a great deal of it, you might even need to bring your own set from home. Flippers are additionally given to assist you with swimming out in the sea, however, ensure that you never unintentionally step on any of the living corals as the environment is exceptionally delicate here. Book online Maldives Tour Package!</p><p style=\"text-align: justify; \"><b>10. Kitesurfing&nbsp;</b></p><p style=\"text-align: justify; \">This is twice as exciting as surfing as you have the additional draw of the tropical winds! Experience the sea more than ever as you become one with the waves, and take off into the wake with your strong kite. This can be an incredible entryway sport into surfing also.</p><p style=\"text-align: justify; \">Other important water sports activities include Glass Bottom Boat, Waterskiing, Wakeboarding, and Kneeboarding, underwater scooters, stand-up paddling, fishing, Banana Boating, and so on. Find the best Maldives Tour Package!</p><p style=\"text-align: justify; \"><b>Where to find the watersports operators?</b></p><p style=\"text-align: justify; \">All acclaimed water sports are managed by the resorts so that supporters of the retreat can profit from the facilities presented at an additional charge. This needn\'t bother with you to be a supporter of the resort to benefit the tours; you can opt for their services independently. The areas of the activities are generally fixated on the resort islands that most tour agencies operate from.</p><p style=\"text-align: justify; \">Enjoy the best with <a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Honeymoon</a> Package!</p><div style=\"text-align: justify; \"><br></div>',NULL,'2021-11-10 19:22:35','2021-11-10 19:22:35',NULL,1,'',0,0,'Maldives Package, Book Maldives Tour, Tour Package Maldives, Maldives Holidays, Holiday Package Maldives, Cheap Package Maldives.','Maldives is an incredible holiday destination for you to relax and enjoy water sports. You have unlimited options of water sports to get occupied with. Find a cheap Maldives Package!','Top Popular Watersports Activities in Maldives You Must Try','[\"174\",\"171\",\"170\",\"159\",\"139\",\"138\",\"137\",\"136\",\"123\",\"50\",\"49\",\"47\",\"36\",\"35\",\"31\",\"30\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"28368, 28186, 28177, 27826, 27082, 27081, 27075, 27074, 27066, 25218, 25212, 25189, 25187, 25156, 24835, 24831, 24759, 24748, 24730\"]}'),(101,'Best Spectacular Heritage Hotels in Udaipur for a Royal Stay','best-spectacular-heritage-hotels-in-udaipur-for-a-royal-stay','1636555539_blog.jpg','1636556339.jpg',NULL,'Manjeet Thakur','2021-11-08',NULL,NULL,NULL,'<p>One must have a wish for extravagance to research these heritage hotels in Udaipur! Not all can stay at a place like this, but we should at least enjoy a stay at this place once. These royal residence lodgings are the open door for us to acknowledge what it is to stay in a palace. Make memories with Udaipur Tour Package!</p><p>Anyway, what is best than the \'City of Lakes\' to enjoy a stay at the heritage hotels? Really, we are taking you on a virtual journey through some best heritage properties in Udaipur that are keeping up the show of grand life! With Udaipur, Holiday Packages enjoy the best!</p><p><b>1. Shiv Niwas Palace&nbsp;</b></p><p>Shiv Niwas Palace is one of the top picks in Udaipur. It is a bow-formed palace, built in the mid 20th century, which was the official residence of Maharana Fateh Singhji. Shiv Niwas Palace is recognized by the Department of Tourism, and the Government of India. It has been awarded four times with \'National Tourism Award for the Best Heritage Hotel in Heritage Grand. It partakes in an area near the City Palace of Udaipur, Jagdish Temple, Jagmandir, Bagore Ki Haveli Museum, Srinathji Temple, and Lake Pichola. <a href=\"https://www.tripsgateway.com/holidays/india/udaipur-tour-packages\">Udaipur Package</a> for a royal experience!</p><p><b>2. Taj Fateh Prakash Palace&nbsp;</b></p><p>On the eastern banks of Lake Pichola, Taj Fateh Prakash Palace remains in the entirety of its brilliance. This is a 20th-century heritage hotel, which was constructed by Maharana Fateh Singh. Witness the culture of Rajasthan in the City of Lakes, Udaipur, while disentangling yourself in extravagance at this grand palace hotel. Find Udaipur Holiday Packages for an enthralling experience!</p><p>Offering the delightful vistas of the lake and the powerful Aravalli mountain range, Taj Fateh Prakash Palace is one of the most regularly booked hotels in Udaipur. The fine goods and traditional artifacts that mirror Udaipur\'s style, extravagance, and allure will leave you enchanted. It is outfitted with elegantly given offices and conveniences that change the stay of its visitors into a royal experience. Udaipur Honeymoon Packages for a romantic and royal vacation!</p><p><b>3. Taj Lake Palace</b></p><p>Lake Palace in Udaipur is an awesome eighteenth-century palace. This wonderful landmark floats in the cerulean waters of Pichola Lake. Constructed of white marble, this design wonder is glorious. Held to its unblemished brilliance, the Taj Lake Palace appears as though a fantasy set at the magnificent setting of the Aravallis. The exceptional area and extravagances of Lake Palace are incredible. Its radiant magnificence is enhanced in the interiors. Presently known as the Taj Lake Palace, it is one of the chief heritage hotels in India. The palace has a legacy, stunning magnificence, and the extravagances of one of the most lavish hotels in the country. Udaipur Holiday Packages for a fascinating holiday experience!</p><p><b>4. Jagmandir Island Palace</b><br></p><p>One of the most notable heritage hotels in India, Jagmandir Island Palace is a seventeenth notable design that has been changed over into a heritage hotel, enhanced with each cutting edge elite facility. Ideal for both relaxation and corporate explorers, it is an ideal mix of present-day amenities, great hospitality, and a traditional royal backdrop. It has been a convenient choice for many celebrities from different parts of the world. Udaipur Honeymoon Packages for a romantic and luxury experience!</p><p><b>5. Amet Haveli</b></p><p>Constructed in 1734 by Maharaja Jagat Singh, this 250-year-old haveli is an emblem of the unbelievable golden period of the Mewar dynasty. Including broad stonework, every one of their 20 extravagant rooms comes with private plunge pools, super-advanced facilities, and sight of the Jagdish Temple or Gangaur Ghat. Ambrai Restaurant serves exotic Indian and Western menus with lakeside outdoor seating. Udaipur Package for a fun-filled vacation!</p><p><b>6. Jagat Niwas Palace</b></p><p>With a history tracing all the way back to the seventeenth century, this palace is enhanced with Mewar architecture with great facilities. Their luxury rooms highlight accents of red and brilliant perspectives on the eastern banks of Lake Pichola. They have flamboyant lounges with garden views. A mainland restaurant, a pool, and a smooth bar are accessible. The best <b><a href=\"https://www.ineedtrip.com/tour-destination/udaipur/\">Udaipur Tour package</a></b> is waiting for you!</p><p><b>7. Amritara Gogunda Palace</b></p><p>Initially, a sixteenth-century fortress, this Elysian resort brags of energetic and ethnic stylistic theme rooms and elaborate architecture. They give blue-blooded suites flawless upholstery, business conveniences, and balconies. Visitors can unwind at the outdoor pool and garden. Heavenly international cuisines are accessible at their deck restaurant. They have a beautiful celebration venue with a buffet. Udaipur Holiday Packages for a fascinating and fairytale vacation!</p><p><b>8. RAAS Devigarh</b></p><p>Housed in an eighteenth-century palace, this modern resort is one of Udaipur\'s most exemplary facilities in the Aravalli range. Including dramatic theme style décor all through the property, they have rich facilities like a pool, a business center, and a spa. Rich suites with great stylistic layout and current outfitting make an inviting retreat for visitors. Udaipur Holiday Packages for a relaxing vacation!</p><p><b>9. Kankarwa Haveli</b></p><p>Hit the sweet note of laid-back extravagance during your staycation at this sophisticated palace hotel, constructed by the Mewar rulers in the 18th century. Rich, interestingly themed suites with dynamic tones, scalloped entryways, and crystal fixtures are advertised. High-end suites add lake views and seating spaces. Relish legitimate Rajasthani and Indian cooking styles at their rooftop vegetarian restaurant is simply mesmerizing. Affordable and luxury <b><a href=\"https://www.ineedtrip.com/tour-destination/udaipur/\">Udaipur Tour</a></b> package waits for you!</p><p><br></p>\r\n\r\nOur website has been reviewed and approved by foodndrink.org - <a href=\"https://www.foodndrink.org/General-Food-and-Drink/Travel-Related/C13-85-1-0.htm\">Travel Related Catering Listings</a>',NULL,'2021-11-10 20:15:39','2021-11-10 20:15:39',NULL,1,'',0,0,'Book Udaipur Tour, Tour Package Udaipur, Udaipur Packages, Udaipur Tours, Udaipur Honeymoon Package, Honeymoon Package Udaipur','One must have a wish for extravagance to research these heritage hotels in Udaipur! Not all can stay at a place like this, but we should at least enjoy a stay at this place once.','Best Spectacular Heritage Hotels in Udaipur for a Royal Stay','[\"191\",\"190\",\"189\",\"186\",\"185\",\"184\",\"181\",\"180\",\"124\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"28695, 28690, 28686, 28625, 28622, 28617, 28562, 28550, 25698\"]}'),(102,'The Sea of Stars Beach In Maldives: For What Reason Does The Beach Glows?','the-sea-of-stars-beach-in-maldives:-for-what-reason-does-the-beach-glows-','1651244155_blog.jpg','1651244155.jpg',NULL,'Manjeet Thakur','2022-04-20',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">The Maldives is known for its breathtaking beaches: warm\r\nwhite sand, waves that move back and forth musically and gorgeous blue lagoons.\r\nThis tropical nation comprises of 26 ring-shaped atolls, which in turn\r\ncomprises of more than 1,000 coral islands. While taking a gander at what the\r\nMaldives has to offer, we\'re not astonished it\'s a top holiday or honeymoon destination.\r\nThe glowing beach, known for its widely popular sea of stars, is situated in\r\nthe Vaadhoo Island, one of the islands of Raa Atoll in the Maldives. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">This beguiling island is situated in the north of the\r\nMaldives in the Huvadhu Atoll. During unique times of the year, the island\r\ngives guests a show which is past magnificence, the peculiarity of\r\nbioluminescence. This enlightened peculiarity is delivered by the phytoplankton,\r\na bunch of little marine life creatures which includes organic and organic substances\r\ninvolving solar radiation as a source of energy. <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Packages</a> </b>don\'t miss out on a dream holiday!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Maldives is the home of many islands, including Raa\r\nAtoll. Vaadhoo Island is only one among the many. Vaadhoo Island is a piece of\r\nthe Raa Atoll in the Maldives. It\'s little in populace; however because of the\r\nradiant shine of its currently well known beach, it has turned into a famous\r\nvacationer location inside the island chain.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">In spite of its little size, under 500 inhabitants, this\r\nsmall island has acquired global prevalence in view of the glow. A many\r\nindividuals call it the Sea of Stars due to the blue glow. Before, relatively\r\nfew individuals knew about the glowing beach, it was viewed as the mystery of\r\nthe island. However, presently since the mystery is out, voyagers are arriving\r\nat this area to partake in the amazing perspective. Find affordable <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Package from India</a>!</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>For what reason does\r\nthe beach in the Maldives glows?<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The blue light water you see on the ocean front isn\'t\r\nnevertheless a Bioluminescent Beach Phenomenon. OK, let me separate this for\r\nyou folks when you see the ocean side lit in a blue glow at the dark, it is\r\nknown as the bioluminescent. The glow or the light you see is radiated by the\r\nmarine living creature.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The explanation for this glowing beach in the Maldives is a direct\r\nresult of the sea planktons present in it. These are viewed as the major\r\nmindful animals for this bioluminescent phenomenon. The animals emit light\r\nwhich is just seen in the dark at the evening time. The beach in the Vaadhoo is\r\nloaded up with this light emitted microorganisms and microbes which have the\r\ninherent ability to deliver a vivacious blue glow. This interaction in entire\r\nexemplifies the excellence of the beach and makes an inconceivable situation to\r\nthe guests. Various voyagers from around the world come to specially visit this\r\nspot to encounter this amazing peculiarity. Check out the popular <b>Holiday Package Maldives! <o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>What Makes\r\nBioluminescent Plankton Sparkle?<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Researchers have as of late found that this sort of plankton\r\nglows when they are unsettled - amusing when you consider how relaxing seeing\r\nthe shining waves is in obscurity night. Bioluminescence is used as a\r\nprotection shield to scare away hunters coming towards the animal trying to eat\r\nthe plankton. The little blazes of light disorientate and amaze the hunter.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The cycle of making a bioluminescent light, which is\r\nbasically light delivered inside a living animal, varies between organisms.\r\nSome need a specific food or one more animal for the impact to occur. These\r\nlittle organic entities produce light utilizing a chemical called luciferin. Yet,\r\nthis type of plankton, called dino flagellates, produces luciferin all alone.\r\nThe light the tiny plankton transmits is called cold light; meaning fewer than\r\n20% of the light creates heat.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Immense region of the sea can become populated by glowing plankton\r\nyet the impact is particularly normal in warm-water lagoons that have thin\r\nopenings to the ocean. This causes the plankton to assemble and become caught,\r\nmaking the water become orange.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Where is The Glowing\r\nBeach in the Maldives?<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Arriving at Vaadhoo Island is very easy from Maldives\r\nairport. Above all, if you want to arrive at the Maldives capital city called\r\nMale, Vaadhoo Island is only 8 kilometers from Male. The capital city of\r\nMaldives, Male has an International Airport. The most ideal way to arrive at\r\nVaadhoo is to travel to the Maldives you will reach Male, from that point you\r\ncould take a speedboat ride through which you will arrive at Vaadhoo by 15\r\nminutes. The best chance to observe and partake in the best of the most\r\nsplendid bioluminescent phenomenon in the Maldives is between June and October.\r\n<b>Maldives Honeymoon Package</b> for a\r\nromantic and fun vacation!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Things to do in Vaadhoo\r\nIsland<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Without a doubt, bioluminescence or sea of stars phenomenon\r\nstands apart as the most well known action on Vaadhoo Island. Travelers hurry\r\nto the seashore around evening time to observe gleaming sea shores. Other than\r\nthis peculiar phenomenon, the retreats at the island offer villas and\r\nextravagance services. Here, you will get a valuable chance to absorb and find\r\nout about the Maldivians and their culture on this seldom populated island. Tourists\r\ncan participate in the accompanying different activities to encounter island life.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Swimming<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">You can walk around the beach and leave your footprint on\r\nthe beach. You can swim in the water and bold the sparkling waves lapping the\r\nseashore.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Scuba Diving<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify; \">A reef safeguards the Vaadhoo Island, and the diving sites\r\nrank high among the world\'s best positions. At Maldives Atolls, scuba diving is\r\nan amazing and costly activity. Underwater some larger fish and beautiful reef fish\r\nadventure, and individuals can see them intently.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><i>Kayaking</i></b><br></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Kayaking is one more interesting activity for the guests in\r\nVaadhoo Island. It is entrancing after the dusk since you can observe the\r\nlovely shades on the waves. It additionally empowers us to appreciate the sea\r\nof stars phenomenon after it turns dark. Kayak is a kayak like boat or watercraft,\r\nand individuals impel it with a twofold bladed oar.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Book Your Maldives Trip\r\nToday!<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">As all of you realize the Maldives is a famous romantic honeymoon\r\ndestination to visit in Asia. There are bounty of activities to savor and\r\nastonishing spots to investigate for explorers. You can constantly unwind on\r\nthe beachside around evening time calmly with quiet blue shining waters touching\r\nyour feet, the delight and the vibe of this profound experience must be felt well\r\nas there are no words left to depict this unmatched magnificence.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">As one of the famous tourist destinations on the planet,\r\nthere are a lot of spots to investigate or visit. However, you can constantly\r\npartake in the serene night at the beach. You can just sit and partake in the\r\nview. Or on the other hand you can go for a walk near the ocean, let the water\r\ncontact your feet, and the air touching your face. Magical holiday experience\r\nwith <b><a href=\"https://www.ineedtrip.com/tour-destination/maldives/\">Maldives Holiday Packages</a></b>!<b><o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>So, Where Else Can\r\nYou See Glowing Plankton In The World Other Than In Maldives?<o:p></o:p></b></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \">There are a couple of puts on earth where you get to observe\r\nthis peculiarity, the one which we are centering here is in the Maldives and\r\nother places include Thailand, Jamaica, Australia, San Diego, and Vietnam.<o:p></o:p></p>',NULL,'2022-04-29 20:25:56','2022-04-29 20:25:56',NULL,1,'',0,0,'Maldives Package, Book Maldives Package, Tour Package Maldives, Holiday Package Maldives, Maldives Honeymoon Package, Tour Package Maldives from India','The Maldives is known for its breathtaking beaches: warm white sand, waves that move back and forth musically and gorgeous blue lagoons. ','The Sea of Stars Beach In Maldives: For What Reason Does The Beach Glows?','[\"246\",\"245\",\"244\",\"243\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"31357, 31355, 31133, 31106\"]}'),(103,'Have You Ever Visited Old Dubai? Here’s A Simple Guide','have-you-ever-visited-old-dubai-here’s-a-simple-guide','1651245211_blog.jpg','1651245211.jpg',NULL,'Manjeet Thakur','2022-04-23',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">Dubai is the city that doesn\'t rest since entertainment is\r\naccessible 24 hours 7 days per week. Dubai has a great deal of stupendous\r\nsights yet I have taken the most popular sights that tourists should think\r\nabout visiting. Even though you are visiting for a short time frame, use this guide\r\nas it has the principle destinations that you need to visit.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Dubai is a cosmopolitan center point with residents from\r\naround the world, who have different individual inclinations with regards to\r\nthe best area to call home. While some lean toward regions that highlight\r\nhigh-end accommodation, offering a broad arrangement of luxury villas and apartments,\r\nothers search for regions that are more reasonable and have connections with\r\nthe locale\'s rich social past. <b>Dubai\r\nPackages from India </b>for a breathtaking vacation! Explore the best of Dubai,\r\ndon’t miss out the best tourist spots. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Today, how about we explore Old Dubai!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Exploring Old Dubai<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Dubai is notable for its wonderful and extravagant high-rise\r\nbuildings and its reputation of the art malls, but to find out more about old Dubai,\r\nand to comprehend the reason why it has succeeded, why not visit Old Dubai. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Dubai Creek has divided the city into two main parts:\r\nDeira and Bur Dubai. Bramble Dubai, the historic district, is situated on the\r\nwestern side of the Dubai Creek and Diera.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Global Village Dubai<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Global Village Dubai is professed to be the world\'s most\r\ncritical tourism, leisure and entertainment project of UAE. It is the area\'s\r\nfirst cultural, entertainment, family and shopping destination. Consistently,\r\nthe spot gets 5 million guests over an area of 17,200,000 sq ft. The compound\r\nhas different structures that it captivates the tourists. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Gold Souk<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Gold Souk is a maze of covered walkways. This\r\ntraditional Arabian commercial center has more than 300 jewelry shops. This is\r\nwhere you can purchase adornments at the cheapest rate despite everything\r\nwrangle at a greatly improved cost. The current price of gold is publicized all\r\naround the souk. Regardless of whether you are purchasing, this is an absolute\r\nnecessity Souk in Old Dubai.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Once known as Al Souk al-Kabeer, \"The Big Souk\"\r\nthis is once the biggest and most significant business sectors in Deira. Many\r\nin all actuality do guarantee that it\'s tidied up appearance has detracted from\r\nits appeal, yet it is an amazing spot to meander to see and smell the Herbs in\r\ngeneral and Spices, and to appreciate the astounding textile market.<b> <a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">Dubai Packages from India</a> </b>for a\r\nsoothing vacation!&nbsp;<b><br></b></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><i>Dhow Cruise</i><o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Dhow Cruise is an unquestionable requirement pursues the\r\nindividuals who are interested to the point of knowing the rich legacy of the\r\ncountry. Cruising past the Creek or the Marina, a Dhow cruise features how\r\nfishers would utilize the vessels for fishing and pearl diving. The Dhow cruises\r\nin Dubai open you to the opposite side of this glorious city with a ride\r\nthrough the historical places. It is best capable through a dinner cruise. With\r\na lot of choices available to it, you could investigate the old Dubai creek or\r\nescape on a romantic dinner with your better half. You can either observe the\r\nultra-modern episodes of a Cruise dinner or marvel at seeing nature!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Dubai Creek is a saltwater stream that was so important in Dubai\'s\r\nhistory. The river filled in as a fishing region, a pearling site and a door\r\nfor brokers before oil was found. Presently, Dubai Creek is a top vacation\r\ndestination in Old Dubai. You should take an abra, the old wooden boat at Deira\r\nOld Souk Station. The short boat ride will ship you to the opposite side of the\r\nCreek to Bur Dubai. It is an exceptional encounter. You should take a ride to\r\nknow how it is like to take a boat ride on Deira Creek and see the Old Dubai at\r\nevening time while dining on traditional Emirati fare.<b> </b>Popular<b> <a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">Dubai Honeymoon\r\nPackages from Delhi</a> </b>for a romantic and for a serene holiday experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Al Maktoum House<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Al Maktoum House is a historic building situated in the Al\r\nShindagha Area of the city. Previous home of Dubai\'s then ruler Saeed Bin\r\nMaktoum Al Maktoum, the house was built in 1896 is currently a museum. Guests\r\ncan appreciate and get to be aware of the city and royal family\'s culture and\r\nway of life. It is currently a well known place of interest which dazzles\r\noccupants and guests with its simple yet tremendous height, open regions and\r\nyards, and cooling wind towers. You can track down a ton of old pictures,\r\ndocuments, gems stamps and coins, and enlivening things in this ancient museum.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Bastakiya Quarter<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Bastakiya Quarter is a historical area that lies along\r\nthe bank of the Dubai Creek, and a most loved spot to visit. This is where the\r\nrich vendors resided, and perfectly protected traditional Arabian homes with\r\nbarjeels or wind catchers, are definitely worth seeing. There is a labyrinth of\r\nthe thin back streets in Bastakiya district however a ton of extraordinary\r\nspots, similar to exceptional shops, cafes and art galleries.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b><i>Dubai Museum<o:p></o:p></i></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Settled in the Al-Fahidi Fort, this sublime museum of Dubai\r\nwas worked in 1787 and is the oldest building in the Emirate. Reestablished in\r\nthe year 1971 by the ruler of Dubai and afterward widely redesigned in 1995,\r\ntoday this excellent design houses the city\'s legacy and numerous significant\r\nhistorical events. While the principle point of the museum is to introduce the traditional\r\nlifestyle in the Emirate of Dubai, it additionally features entrancing old\r\nguides of the Emirates and Dubai making sense of the tremendous development of\r\nthe locale after the oil boom.<o:p></o:p></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b><a href=\"https://www.ineedtrip.com/tour-destination/dubai/\">Dubai Packages for\r\ncouple from Delhi</a> </b>for an exotic holiday experience!<o:p></o:p></p>',NULL,'2022-04-29 20:43:32','2022-04-29 20:43:32',NULL,1,'',1,0,'Book Dubai Package, Dubai Package, Holiday Package Dubai, Dubai Tour Package, Honeymoon Package Dubai.','Dubai Packages from India for a breathtaking vacation! Explore the best of Dubai, don’t miss out the best tourist spots.','Have You Ever Visited Old Dubai? Here’s A Simple Guide','[\"28\",\"26\",\"25\",\"24\",\"20\",\"19\",\"5\",\"2\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"22434, 22702, 24480, 22707, 22820, 22909, 24614, 24735\"]}'),(104,'Top Places to Visit in Singapore: South East Asia\'s Hottest Destination','top-places-to-visit-in-singapore:-south-east-asia-s-hottest-destination','1651245629_blog.jpg','1651245629.jpg',NULL,'Manjeet Thakur','2022-04-25',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">There\'s something else to Singapore that initially meets the\r\neye. Singapore is advancing into one of South East Asia\'s hottest destinations.\r\nIt\'s the ideal spot to blend business and happiness.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Marina Bay Sands<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">If the development costs are an explorer\'s sack, they\'ll\r\nthoroughly enjoy seeing the Marina Bay Sands, a resort that cost US$5.7billion\r\nto fabricate, making it the world\'s most costly structure when it opened in\r\n2010. The Marina Bay Sands is a coordinated retreat that has everything: a\r\nluxury hotel, restaurants, an interminable assortment of shops, a convention center\r\nthat is one of the biggest in Asia, theater, an Art Science Museum and other\r\nentertainment centers. It has an indoor skating rink made with engineered ice. <b>Singapore Honeymoon Packages from Delhi</b>\r\nfor romance in style!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Gardens by the Bay<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">This rambling region is spread on 101hectares in focal\r\nSingapore. Gardens by the Bay are man-made unbelievable nature park premises in\r\nthe bay area of Singapore. This mechanical garden is a symbol of Singapore\r\ntravel industry. The vision of Singapore government was to acquire a city\r\ngarden, they needed to make a climate for their residents to live in harmony\r\nand give them better environmental elements to work.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Gardens by the Bay have two conservatory complexes, one is\r\nthe Flower Dome and the other is the Cloud Forest. The Flower Dome is the\r\nworld\'s biggest glass greenhouse, holding the Guinness World Record! In this\r\ninteresting little town, tulips on the top like cupcakes. It is an enormous\r\nregion with a level of 38 Meters and keeps up with the temperature of 23 °C to\r\n25 °C. The Cloud Forest has a cool clammy condition; at the most elevated mark\r\nof the mountain there are vegetables tracked down developing at 2000 meters\r\nover the sea level. Tree top Walk is near the woodland shade and gives you an\r\nelevated perspective. The Crystal Mountain will assist you with knowing the\r\nsignificance of fossils and comprehend our planet\'s past. The cloud walk will\r\nallow you to check different plant species out. The Secret Garden is opened as\r\nof late with 7,000 plants involving in excess of 130 species. <b>Singapore Honeymoon Package</b> for a\r\nblissful holiday experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>The Singapore Flyer<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Singapore Flyer is a goliath Ferris wheel, just with\r\nbenefits, that main beginning with the staggering perspectives underneath. Cars\r\nhold up to 28 individuals as they circle over the city. When it opened in 2008,\r\nit was the highest Ferris wheel on the planet, located at 165 meters (541 feet)\r\nup into the Singaporean sky. <b>Singapore\r\nHoliday Packages</b> for an exciting and thrilling experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">At the flyer, you can get understanding of the technology in\r\nthe driver\'s seat and furthermore get a slip look into the set of experiences\r\nand advancement of Singapore. This ride can brush your insight and accordingly,\r\nit is the best attractions for kids. With early notification, the Flyer can\r\neven carry handicapped visitors in wheelchairs. Situated on Marina Bay, the\r\nFlyer\'s terminal has three floors of restaurants, shops and other services. Try\r\nto visit this spot during your city tour for a stunning perspective neglecting\r\nthe F1track, Gardens by the Bay, perspectives on the horizon and parts of\r\nMalaysia as well as Indonesia.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Relax on Sentosa\r\nIsland<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Sentosa Island is the joy searcher\'s heaven: the home of\r\nbeaches and blue skies. It\'s fundamentally a different universe for those\r\nhoping to get away from the buzzing about of the city. Just a short drive from\r\nthe city, Sentosa Island gives you beaches rather than highways, resorts rather\r\nthan sky high hotels and a more laid back view. The name Sentosa implies\r\nharmony and quietness in Malay - we were unable to say it better ourselves. <b>Singapore Honeymoon Packages from Delhi</b>\r\nfor a unique and charming vacation!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Stargazing at the\r\nScience Centre\'s Observatory Dock<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">It\'s never past the time to learn something about the night\r\nskies. Gaze out into the night sky and wonder about the stars at The Science\r\nCentre\'s Observatory. Singapore\'s situation close to the equator implies that\r\nstargazers can look at heavenly bodies in both the northern and southern\r\nhemispheres. Look at their website and time you visit to harmonize with one of\r\ntheir public discussions. <o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Singapore Botanic Gardens<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The garden contains more than 60,000species of plants and animals,\r\nand is home to the world\'s most memorable youngsters\' nursery. Whoever has\r\nvisited go wild about the tropical greenery of the gardens. Voyagers on a\r\ncareful spending plan will see the value in the Singapore Botanic Gardens as a\r\nlarge part of the gardens are free; there is just a charge for the National\r\nOrchid Garden, the most visited part of the garden. Go for <b>Singapore Honeymoon Package </b>for a romance-filled vacation!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Universal Studios<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Universal Studios is situated in the most exciting spot in\r\nSingapore, Sentosa Island. This is undoubted, perhaps the most ideal getaway\r\nspot for family. Universal Studios is certainly the \'it\' spot to visit for a\r\nsensational outing. Totally stacked with amusement, energy and excitement, here\r\nyou can find various restaurants, cafes and shopping regions to run the\r\ndelectable food.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Singapore Zoo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">A visit to Singapore Zoo will cause a stir to see some\r\nlovely and endangered animals staying within the premises. A cheerful family venue\r\nto visit, Singapore Zoo is probably the best spot to go as it houses more than\r\n300 species that incorporate Koalas, Giraffes, Zebras and White Tigers. The zoo\r\nhas been separated in different zones relying upon the animal\'s habitat. <b>Singapore Holiday Packages </b>for an\r\namazing vacation!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Ocean Aquarium</b><br></p><p class=\"MsoNormal\" style=\"text-align: justify; \">This great SEA Aquarium is situated on Sentosa Island and it\r\nends up being a fascinating spot for both adults and kids. Being one of the\r\nmost amazing family accommodating spots, this scene is home to in excess of\r\n100,000 marine species. One can get an unequaled encounter seeing the\r\nextraordinary marine life like Sharks, bottlenose dolphins, Sting Rays, Turtles\r\nand Coral Reefs.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Night Safari<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Since it opened in 1984, it is one of Singapore\'s top\r\nattractions, with more than 1,000,000 individuals every year partaking in a\r\ncable car ride through seven of the world\'s geographic locales. Guests likewise\r\ncan go for a path stroll to dive more deeply into creature propensities while\r\nanother segment includes a show on the organizations work to protect threatened\r\nspecies through hostage breeding programs. Three restaurants include menus and\r\nentertainment that reflect life in the wilderness or rainforest. Guests or\r\nlocals who love the nightlife however are fed up with the club scene ought to\r\nmake a beeline for Night Safari where nighttime, not party, creatures are in\r\nplain view.<o:p></o:p></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \">For a fascinating vacation, opt for <b>Singapore Holiday Packages!<o:p></o:p></b></p>',NULL,'2022-04-29 20:50:29','2022-04-29 20:50:29',NULL,1,'',0,0,'Book Singapore Honeymoon, Honeymoon Package Singapore, Holiday Package Singapore, Tour Package Singapore, Singapore Package From India.','Singapore is advancing into one of South East Asia\'s hottest destinations. It\'s the ideal spot to blend business and happiness.','Top Places to Visit in Singapore: South East Asia\'s Hottest Destination','[\"251\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"33492\"]}'),(105,'Discover Mauritius: Top Unique Places to Visit That’ll Make You Spellbound','discover-mauritius:-top-unique-places-to-visit-that’ll-make-you-spellbound','1651252176_blog.jpg','1651252176.jpg',NULL,'Manjeet Thakur','2022-04-27',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">Need a break from repetitive routine and travel? What better\r\nmethod for enjoying your vacation with a beverage in your grasp and sea waves\r\ncrashing the shore toward the front? If you are considering visiting Mauritius from\r\nIndia and are confounded about what to explore, we have got you covered! We\'ve listed\r\na rundown of top spots to visit in Mauritius that you can pick from according\r\nto your wish.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Any place your head turns, the beauty of this island nation\r\nnever appears to end! The matchless views, mighty peaks, emerald waters, pristine\r\nbeaches, gushing waterfalls, and rich wildlife are features that you can see,\r\nfeel, and absorb while sending out the best Mauritius vacationer places.<b> <a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">Mauritius Travel Packages</a> </b>is all about\r\nhaving a wonderful experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Chamarel Waterfall<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Visit Chamarel Waterfall, the highest waterfall in\r\nMauritius, and spend some cozy time with your soul mate. It falls from a level\r\nof 100 meters in the village of Chamarel. The village has numerous other\r\nexcellent spots you can cover like seven colored earth and gorges, which is one\r\nof the top spots to find in Mauritius.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Being a tropical island, there are many waterfalls spread\r\nout all over Mauritius that makes for an excellent tourist destination, perhaps\r\nthe main one being the Chamarel Waterfalls. Chamarel, as a town in itself,\r\ndoesn\'t stand apart on the Mauritius tourism map, but it is home to many novel\r\nnormal sights, which makes it an immense vacationer draw. <b><a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">Mauritius Tour Package</a></b> for serene and secluded vacation away from\r\nthe crowd!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Seven Colored Earth Park<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Your Mauritius travel won\'t be completed without a visit to\r\nSeven Colored Earth Park. Come here to see the landscape, which will leave you\r\nstunned and entranced simultaneously. You will be hypnotized by this unique\r\ncreation of God.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Situated in Chamarel, the Terres de 7 Couleurs, or the Seven-Colored\r\nEarth is well known all around the globe for being a staggeringly one of a kind\r\ngeological formation. This well known vacationer center point is much of the\r\ntime the main motivation behind why travelers make a refueling break at\r\nChamarel in any case. A fenced region with kaleidoscopic hills in seven\r\ndistinct shades of violet, red, yellow, purple, green, brown, and blue, the\r\nSeven Colored Earth is one of the most-visited vacationer spot in Mauritius.<b> </b>Don’t you want to spend your time\r\nsomewhere beautiful? Go for<b> Mauritius\r\nTrip</b>!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Black River Gorges National\r\nPark<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Being the largest in the island country of Mauritius, the\r\nBlack River Gorges National Park is the asylum for the expanded wildlife and\r\ntropical rainforests. It is the focal fascination of the vacationers with an\r\nunmatched love for nature and the individuals who have energy for adventure\r\ntreks. Preceding 1994, it was just the hunting ground. Afterward, it was\r\nauthoritatively pronounced by the President of the Republic of Mauritius as a\r\nNational Park and has been accessible for tourists from that point onward. If\r\nyou have any desire to spend your honeymoon time in wild style, visit Black\r\nRiver Gorges National Park. This is one of the most mind-blowing spots to visit\r\nin Mauritius to observe an assortment of greenery. Spot endangered species of\r\nbirds here floating through the delicate air in their environment.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Alexandra Waterfall<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Get elated by the rich green vegetation and the grand\r\nnatural beauty of this waterfall in Mauritius, which is one of the top vacation\r\ndestinations in Mauritius for families. Found 700 meters above sea level;\r\ninvigorate yourself at the Alexandra Waterfall situated in Black River Gorges\r\nNational Park. See the water falling over the unpleasant outcrops and snap\r\npictures with the fall in the foundation.We recommend that you invest quality time\r\nwith family at Plaine Champagne and enjoy yummy Chinese Guava/ Strawberry Guava\r\ncalled \'goyave de chine\'.<b> Mauritius\r\nHoneymoon Package </b>for a romantic and enchanting holiday experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Mauritius Aquarium<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Advance toward Mauritius Aquarium to observe different types\r\nof marine life that are kept in sufficiently bright tanks and pools. Go for a\r\nwalk around the aquarium to observe ocean animals through a glass like the\r\nCrown squirrelfish, the Batfish, butterfly fish, lobsters, crabs, clown fish, and\r\nsubstantially more. Kids will love the movement of fish. &nbsp;<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Casela Nature Park<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Discover the rich wildlife of Mauritius at Casela Nature Park.\r\nStroll around this nature park and spot the lord of the wilderness. Watching\r\nlions examine their direction through the backwoods is an encounter you can\'t\r\nmiss on your family vacation to Mauritius. Don’t wear colorful dress; wear\r\nsomething that blends well in with nature to not draw in animals’ attention.\r\nYou can likewise see a ton of extraordinary plants and flowers and in excess of\r\n1500 assortments of birds. Really, the park has everything that wildlife and\r\nnature lovers could want.<b> <a href=\"https://www.ineedtrip.com/tour-destination/mauritius/\">Mauritius Trip</a>\r\n</b>for a fascinating holiday experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Sir Seewoosagur\r\nRamgoolam Botanical Garden<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">You can see 650 assortments of plants, among which a portion\r\nof the well known ones are lilies, palms, Baobabs, sugarcanes, and so forth.\r\nWalk around the botanical garden and let your kids play around. Enlist a manual\r\nfor gain educated insight about the horticultural wonders of Mauritius. Take\r\nyour kids to this botanical garden previously known as Sir Seewoosagur\r\nRamgoolam Botanical Garden after the Prime Minister of the island nation. It is\r\none of the most visited vacationer places in Mauritius particularly among\r\nfamilies with kids.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Port Louis<o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Port Louis, the capital city of Mauritius, is quite possibly\r\nthe most well known destination to visit in the country. It is a blend of\r\nglamour and charm orchestrating flawlessly with traditions and customs from its\r\n300-year-old past. Port Louis is interesting as far as its blend in culture, tradition\r\nand history. Port Louis, privately articulated as Porlwi, has a few temples, cathedrals\r\nand mosques that speck the town in cultural variety. It is additionally a beach\r\ntown with a plenty of beautiful markets, interesting museums, splendid\r\narchitecture, clamoring restaurants, shocking waterfronts making it a tropical\r\ngetaway destination.<o:p></o:p></p><p style=\"text-align: justify; \">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<b><span style=\"font-size:11.0pt;\r\nline-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;\r\nmso-fareast-font-family:Calibri;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:\r\nminor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;\r\nmso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA\">Mauritius\r\nHoneymoon Package </span></b><span style=\"font-size:11.0pt;line-height:115%;\r\nfont-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:\r\nCalibri;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;\r\nmso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;\r\nmso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA\">for\r\na romantic and luxury experience!<b><br>\r\n<!--[endif]--></b></span></p>',NULL,'2022-04-29 22:39:37','2022-04-29 22:39:37',NULL,1,'',1,0,'Book Mauritius Package, Holiday Package Mauritius, Honeymoon Package Mauritius, Mauritius Travel Package','If you are considering visiting Mauritius from India and are confounded about what to explore, we have got you covered! We\'ve listed a rundown of top spots to visit in Mauritius that you can pick from according to your wish.','Discover Mauritius: Top Unique Places to Visit That’ll Make You Spellbound','[\"250\",\"242\",\"241\",\"240\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"32321, 31090, 31078, 31065\"]}'),(106,'The Best Night Markets in Phuket You Must Definitely Visit','the-best-night-markets-in-phuket-you-must-definitely-visit','1653533460_blog.jpg','1653533460.jpg',NULL,'Manjeet Thakur','2022-05-19',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align: justify; \">The best night markets in Phuket have a special festival\r\nfeel to them, frequently being joined by street performances and music. Local markets\r\nare for the most part a decent put to discover a few extraordinary deals on\r\nsouvenirs and mementos. In any case, why squander an entirely decent beach day?\r\nMeandering around a bustling commercial center under the scorching sun will\r\nhave you soaked in sweat in practically no time.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">That is where night markets enjoy the benefit. Food\r\nmerchants do a roaring trade at Phuket night markets, making them superb spots\r\nto partake in your night feast, experience certified Thai street food, and shop\r\nin cool solace, all simultaneously. These are probably awesome to browse around\r\nthe island. <b>Thailand packages from India</b>\r\nlets you get close to Thailand and know more about this beautiful kingdom.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Phuket Sunday Street Market</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Phuket Walking Street weekend market, also called \'Fat Yai\'\r\nby the locals, is currently the most famous fascination in Phuket City. This\r\nweekend street market was a moment achievement, signifying a requirement for\r\nsomething to occur in Thalang Road, the historical area of town. Night markets\r\nare not new to Phuket City. The old Naka Weekend Market on the edge of the city,\r\nclose to Central Festival, has forever been exceptionally well known, yet the\r\nPhuket Walking Street is more imaginative.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Extending from Thepkasattri Road Phuket Road, all the\r\nSino-Portuguese houses along Thalang Road wear consistently changing color lights\r\nthat add a touch to the festive mood. On each side and in this presently\r\noccupied street, you\'ll find food, drinks and ice creams. Check out the best <b>Thailand packages.</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Chillva Market Phuket</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Chillva Market Phuket is a cool, stylish night market with some\r\ndegree bohemian energy and a noteworthy choice of food and fashion stalls.\r\nPlain to see by the side of Yaowarat Road (which runs by Tesco Lotus, on the\r\nway towards Phuket Town), the market has a particular look made by the\r\nutilization of brilliant steel trailers as shop fronts.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Food sellers make up around the greater part of the stalls\r\nand permanent stores at Chillva Market Phuket. You\'ll find out of control pubs,\r\ncafes, frozen yogurt parlors, and a wide determination of street foods. Costs\r\nare for the most part extremely low. Huge servings from the market\'s more\r\npopular shops seldom surpass several hundred baht. Being tiny, going for a\r\nrelaxed stroll around Chillva Market Phuket won\'t wear you out or take you to\r\nenjoy the nightlife. It\'s ideal to visit after 6pm when the air is cooler and\r\nthe market partakes in a lot more energetic climate. Go for <b>Thailand packages from India</b> for a\r\nhassle-free vacation!<b><o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Phuket Walking Street</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Phuket Walking Street, involving a pleasant part of Phuket\r\nOld Town, is both a cultural attraction and night market. The old\r\nSino-Portuguese houses, which line the 350-meter-long road, are illuminated in\r\nenergetic tones. The space between these structures is loaded with slows down\r\nselling traditional local foods, Thai handicrafts, modern style and keepsakes.\r\nYou\'ll frequently find buskers and entertainers offering engaging interruptions\r\nfrom your retail treatment.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The primary entry of Phuket Walking Street is on the\r\neastern, Phuket Road side of Thalang Road, at which a magnificent wooden\r\nChinese-style gate is introduced. The gate flaunts a sign with \'Lardyai\'\r\nwritten in 3 dialects-Thai, Chinese and English, and is a famous site for\r\nphotography. The bright Sino-Portuguese style house exteriors are upgraded by\r\nthe expansion of variety evolving lights, which likewise make a wonderful\r\nbackground. Enjoy a romantic vacation with <b>Thailand\r\nhoneymoon packages!</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Phuket Indy Night Market</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Phuket Indy Night Market has autonomous dealers\r\n(subsequently the name) rather than commonplace market vendors in Phuket Town.\r\nIt\'s one of Phuket\'s calmer night markets, however exceptionally famous among\r\nyoung Thais for its entertainment and hand crafted snacks. In spite of its\r\nlittle size, Phuket Indy Night Market offers a lovely shopping experience, and\r\nyou\'ll probably have the option to track down something uniquely great at an\r\nextraordinary cost.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Phuket Indy Market is a place locals, particularly teens\r\nand youthful grown-ups - come to have a ball with an engaging blend of sellers,\r\nlive performances and that\'s just the beginning. It\'s hung on 3 nights of the\r\nweek on Dibuk Road and is referred to in Thai as Laad Ploy Khong (\'a market to\r\nrelinquish your products\').<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The thing about this enthusiastic yet moderately obscure\r\nnight market is that it\'s little and clean. It comprises of only 1 path close\r\nby Limelight Avenue Phuket. It requires around 15-20 minutes to explore the\r\nwhole market and it has a cheerful, lighthearted feel to it. Choose <b><a href=\"https://www.ineedtrip.com/tour-destination/phuket/\">Thailand holiday packages</a> </b>for a\r\npeaceful vacation!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Malin Plaza</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Malin Plaza is a new night market at the southern end of\r\nPatong Beach. It succeeded where other night markets fizzled in light of the\r\nfact that they remembered that food is the magnet that makes individuals come\r\nin any case. It applies to shopping centers as well.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Simply stroll around on some random night and perceive how\r\noccupied the market is. Here you can track down loads of nearby food varieties,\r\nnatural products, desserts, bar and bistros; it\'s a decent blend of local markets\r\nand bazaar. You can purchase any fish or fish from one of the market stalls,\r\nand somebody will cook it on the spot. It\'s less expensive, more fun than\r\neating in a restaurant, and you get a touch of silly delight to be nearer to\r\nthe genuine experience. <b>Thailand\r\npackages </b>for a unique experience!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\"><b>Karon Temple Market</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Karon Temple Market just opens two times every week, on\r\nTuesdays and Fridays, and is famous to the point that individuals start to\r\ndesign their evenings around that time. Night markets have forever been famous\r\nin Phuket and Thailand, yet a Temple market sounds a lot more fascinating.\r\nFurthermore, Karon Beach needs attractions, so the fair is dependably a welcome\r\nbreeze of tomfoolery.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">At this night market, you will track down a decent blend of\r\ncheap clothing. A large portion of them are perfect for this heat and humidity:\r\nlight dresses, shorts and those cotton elephant pants so famous with youthful\r\nvoyagers. True to form, you can peruse a ton of T-shirts with a wide range of\r\nmoronic messages imprinted on them, generally senseless stuff to wear on the beach.\r\nCheck out the best <b><a href=\"https://www.ineedtrip.com/tour-destination/phuket/\">Thailand packages\r\nfrom India</a> </b>with invigorating offers.<b><o:p></o:p></b></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Fun Friday Avenue Market</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">Fun Friday Avenue Market is a little end of the week market\r\nspringing up each Friday evening at Boat Avenue while heading to Phuket Laguna.\r\nIt\'s humble in size yet amusing to visit assuming that you are in the Bangtao Beach\r\nregion. Night markets are important for Thailand\'s life, and any place there is\r\na market, there is a good crowd and loads of food!<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">The Fun Friday weekend market adds a daily existence to Boat\r\nAvenue. It\'s no place as large as the well known Phuket Weekend Market of the\r\nChillva Market, yet there is a still very part to find. If your stay is around\r\nBang Tao, you will figure out there isn\'t a lot of nearby life continuing so\r\nthat market is a brilliant expansion. It\'s energetic, bright and a pleasant\r\nmethod for ending your day.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \"><b>Phuket Weekend Market</b><o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify; \">Phuket Weekend Market is the island\'s biggest night market.\r\nIt\'s an interesting tangle of secondhand goods, curios, and souvenirs, as well\r\nas incredible local food to test. Finding something unique and remarkable at\r\nthis night market takes a little constancy, yet there\'s sufficient to look over\r\nso investigation will for the most part be compensated with the best gift.\r\nPhuket Weekend Market can become extremely busy and very stodgy, particularly\r\nin the covered area.<o:p></o:p></p><p class=\"MsoNormal\" style=\"text-align: justify;\">As the single greatest night market in Phuket, it truly\r\nmerits a visit regardless of whether you\'re not anticipating purchasing\r\nanything. If you somehow happened to ask what the response is for sale here,\r\nhow much time you have as the rundown of goods is apparently unending.<o:p></o:p></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: justify; \">Check<b> </b>out<b> </b>the<b> Thailand trip cost from India </b>today<b> </b>for<b> </b>a<b> </b>wonderful<b> </b>vacation! Go for <b>Thailand\r\nhoneymoon packages from Delhi</b> for an exotic experience!<o:p></o:p></p>',NULL,'2022-05-26 08:21:00','2022-05-26 08:21:01',NULL,1,'',0,0,'Thailand package, Book Thailand package, Holiday Package Phuket, Phuket Honeymoon, Honeymoon Package Phuket, Phuket Trip.','Phuket ,Thailand packages from India lets you get close to Thailand and know more about this beautiful kingdom.','The Best Night Markets in Phuket You Must Definitely Visit','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(107,'The Top Places to Visit in Singapore: The Best Kept Places','the-top-places-to-visit-in-singapore:-the-best-kept-places','1710393668_blog.png','1710393668.png',NULL,'Manjeet Thakur','2024-05-30',NULL,NULL,NULL,'<p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\">Singapore\r\nhas an amazing public transportation system that makes touring advantageous and\r\nsimple. Whenever you want to take the metro, you\'ll have no issue speeding\r\nstarting with one section of town then onto the next. English is spoken all\r\nover the place, and signs are in English also. As a matter of fact, Singapore\r\nis one of the simplest and most pleasant nations to explore in Southeast Asia.\r\nFurthermore, if you\'re not comparing prices to local Thailand or Vietnam,\r\nyou\'re in for an exquisite stay. Opt for </span><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Singapore\r\ntour</b></span><b style=\"font-family: Cambria, &quot;serif&quot;;\"> </b><span style=\"font-family: Cambria, &quot;serif&quot;;\">to know more about this culturally rich place!</span><br></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Marina Bay Sands<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The lavish\r\nMarina Bay Sands resort complex incorporates a very good quality luxury hotel,\r\na mall with a channel going through it, the Art Science Museum, and the Marina\r\nBay Sands Sky Park Observation Deck-a vantage point for taking in the whole\r\ncity. The Sky park\'s review deck and infinity pool are tracked down in the boat\r\n(indeed, transport) that tops the hotel. Just lodging visitors are permitted to\r\nmake use of the infinity pool, yet anybody can visit the stunning Observation\r\ndeck. Don’t miss it! <b>Singapore tour\r\npackage </b>for an exciting experience!<b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Gardens by the Bay<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Whenever you\r\nwitness this perfectly planned green space (from the highest point of the\r\nMarina Bay Sands, maybe) you will not have the option to stay behind. Meander\r\nthrough the Bay East Garden, ideal for partaking in the dynamic vegetation and\r\ngetting away from the city clamor briefly.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">You won\'t\r\nhave any desire to miss the Super tree Grove, where you\'ll find a bunch of the\r\nnotable, cutting edge structures intended to fill naturally feasible roles.\r\nThen, at that point, make a beeline for the Cloud Forest Dome to see the\r\nworld\'s tallest indoor waterfall and get familiar with a piece about\r\nbiodiversity. Do check the site for ticket sale prices and visit times. <b>Singapore packages from India </b>for an\r\nenthralling experience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Singapore Botanic Gardens<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Voyagers on\r\na budget will see the value in the Singapore Botanic Gardens as the greater\r\npart of the gardens are free; there is just a charge for the National Orchid Garden,\r\nthe most visited segment of the garden. The garden contains more than 60,000\r\ndifferent species of plants and animals, and is home to the world\'s most memorable\r\nkids\' nursery. Past guests go wild about the tropical vegetation of the gardens.\r\nOpt for <b>Singapore holiday packages </b>for<b> </b>a unique vacation experience!<b><o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Sentosa Island Tourism<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">A minuscule\r\nresort island off the southern shoreline of Singapore, Sentosa Island is home\r\nto themed attractions, sun-washed sea shores, rich rainforests, astonishing\r\nspas and some well-known resort hotels. Loaded with attractions, Sentosa Island\r\nis spotted with all encompassing gardens including a butterfly garden,\r\ncarnivals, a stunning aquarium (Underwater World), beach clubs with lively music,\r\nan ethnic village and the feature of the island, a huge Merlion Statue.\r\nSingapore\'s just safeguarded fort, Fort Siloso, is additionally situated on\r\nSentosa Island. Siloso Beach is for those looking for comfort at the beach with\r\nvolleyball. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Singapore Flyer<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The\r\nSingapore Flyer is a monster Ferris wheel, just with benefits, that main\r\nbeginning with the dazzling perspectives beneath. Cars hold up to 28\r\nindividuals as they circle above the city. At the point when it opened in 2008,\r\nit was the most elevated Ferris wheel in the world, arriving at 165 meters (541\r\nfeet) up into the Singaporean sky. With notification ahead of time, the Flyer\r\ncan oblige crippled visitors in wheelchairs. Situated on Marina Bay, the Flyer\'s\r\nterminal has three floors of restaurants, shops and other services. Experience\r\nthe best <b>Singapore tour!<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Night Safari<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Voyagers who\r\nappreciate nightlife yet are burnt out on the club scene ought to go to Night Safari\r\nwhere nighttime, not party, animals are in plain view. Since it opened in 1984,\r\nit is one of Singapore\'s top attractions, with more than 1,000,000 individuals\r\nevery year partaking in a cable car ride through seven of the world\'s\r\ngeographic locales. Guests likewise can go for a path stroll to dive deeper\r\ninto creature propensities while another part includes a show on the\r\nassociation\'s work to safeguard threatened species through hostage breeding programs.\r\nThree restaurants highlight menus and entertainment that reflect life in the\r\nwilderness or rainforest. Consider <b>Singapore\r\npackages from India </b>for a hassle-free experience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Singapore Zoo<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The\r\nSingapore Zoo is a really great spot. The office is spotless and welcoming, and\r\nthe animals show up very much treated, with a lot of rich vegetation and\r\nnatural surroundings space. The orangutans are especially noteworthy, and\r\nguests can watch as babies and grown-ups the same swing high over their\r\nfoundation and tidbit on natural products. There is likewise an enormous\r\nchimpanzee family, zebras, mole rats, white tigers, meerkats, a komodo dragon, kangaroos,\r\nand numerous different animals. <o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Raffles Hotel Singapore<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Underlying\r\n1887, the property has filled in as a city landmark for well more than a really\r\nlong period and keeps on satisfying its tony notoriety with magnificent food and\r\nservice. The traditional engineering and tropical gardens give a refined\r\nsetting and address one more feature of Singapore\'s shifted and rich history.\r\nThe Raffles Hotel Singapore is situated in the city\'s Colonial District, which\r\nis likewise home to a few other noteworthy locales, and a decent spot to base you\r\nin the city. Here, you\'ll track down the Raffles Landing Site, where Sir Stamford\r\nRaffles, the organizer behind Singapore, is said to have ventured a ground in\r\n1819. Choose <b><a href=\"https://www.ineedtrip.com/tour-destination/singapore/\">Singapore holiday\r\npackages</a> </b>for a unique holiday experience!<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Clarke Quay<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">The center of\r\ncommerce during the nineteenth 100 years, Clarke Quay satisfies its inheritance\r\nas a bustling center point. Today, it has a more cleaned sheen, so in the wake\r\nof a monotonous day of shopping on Orchard Road, guests can cheerfully go to\r\nClarke Quay for a night of waterfront dining and entertainment.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">One of the\r\nkey vacation destinations in Singapore, the quay, at the mouth of the Singapore\r\nRiver, was the city\'s hub of commerce in the late nineteenth hundred years. It\r\nactually hustles and clamors today, however with an alternate sort of trade:\r\nstylish restaurants, unique boutiques, pushcart merchants and then some, all of\r\nwhich mix Asian and European impacts. Once a market, consistently a market,\r\nbesides around evening time when Clarke Quay abounds with stylish nightspots.\r\nGo for <b><a href=\"https://www.ineedtrip.com/tour-destination/singapore/\">Singapore tour\r\npackage</a>!<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Orchard Road<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Orchard Road\r\nis the primary shopping street of Singapore, consistently visited by the locals\r\nas well as foreign tourists. Named after the organic product plantations that\r\nthe street prompted, Orchard Road is flanked by shopping centers, various up market\r\nrestaurants, coffee chains, cafés, nightclubs and hotels. It is likewise the\r\nsite of the official residence of the President of Singapore, the Istana. The\r\nChristmas designs along Orchard are popular and completely ridiculous, with\r\nreindeers romping through palm trees and gingerbread houses finished off with\r\ncounterfeit snow.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family: Cambria, &quot;serif&quot;;\"><b>Universal Studios Singapore<o:p></o:p></b></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;\r\nmso-ascii-theme-font:major-latin;mso-hansi-theme-font:major-latin\">Universal Studios\r\nSingapore possesses 49 sections of land of Resorts World Sentosa. The park is\r\norganized specifically, with every area honoring an area, film, or network\r\nshow. It includes New York City, Hollywood, Madagascar, and an outing back to\r\nAncient Egypt. Fiction-themed regions incorporate Lost World, Shrek\'s Far Far\r\nAway, and Sci-Fi City, where Battle star Galactica-themed dueling roller coasters\r\nand an indoor dark coaster, Revenge of the Mummy, rule the roller coasters.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"text-align:justify\"><b><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">Singapore honeymoon packages from Delhi </span></b><span style=\"font-family:&quot;Cambria&quot;,&quot;serif&quot;;mso-ascii-theme-font:major-latin;\r\nmso-hansi-theme-font:major-latin\">for the best romantic vacation! So, those\r\nnewly married couples choose <b><a href=\"https://www.ineedtrip.com/tour-destination/singapore/\">Singapore\r\nhoneymoon package</a>!</b><o:p></o:p></span></p><p class=\"MsoNormal\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align:justify\"><br></p>',NULL,'2022-05-26 09:35:06','2022-05-26 09:35:06',NULL,1,'',1,0,'Singapore Package, Singapore Honeymoon Package Honeymoon Package Singapore, Singapore Trip','Do check the site for ticket sale prices and visit times. Singapore packages from India for an enthralling experience!','','[\"251\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"33492\"]}');
/*!40000 ALTER TABLE `tbl_travelogues` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-04-16 10:27:38

Youez - 2016 - github.com/yon3zu
LinuXploit